text1
stringlengths 0
536k
| text2
stringlengths 0
536k
| label
int64 0
1
|
---|---|---|
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="const array: Uint8Array = new Float32Array(0);"><pre class="notranslate"><code class="notranslate">const array: Uint8Array = new Float32Array(0);
</code></pre></div>
<p dir="auto">This is difference types, but typescript not see errors =\</p> | <p dir="auto">All typed arrays are assignable in our present dts.</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="let arr = new Uint8Array(20);
let arr2 = new Int16Array(20);
arr = arr2; // Valid."><pre class="notranslate"><span class="pl-k">let</span> <span class="pl-s1">arr</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-smi">Uint8Array</span><span class="pl-kos">(</span><span class="pl-c1">20</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">let</span> <span class="pl-s1">arr2</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-smi">Int16Array</span><span class="pl-kos">(</span><span class="pl-c1">20</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">arr</span> <span class="pl-c1">=</span> <span class="pl-s1">arr2</span><span class="pl-kos">;</span> <span class="pl-c">// Valid.</span></pre></div>
<p dir="auto">The same is true of specific errors:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="let err = new SyntaxError();
let err2 = new RangeError();
err = err2; // Also valid"><pre class="notranslate"><span class="pl-k">let</span> <span class="pl-s1">err</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-smi">SyntaxError</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">err2</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-smi">RangeError</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">err</span> <span class="pl-c1">=</span> <span class="pl-s1">err2</span><span class="pl-kos">;</span> <span class="pl-c">// Also valid</span></pre></div>
<p dir="auto">We should fix this, as both of these sets of types are sets whose members are meant to be distinguished by type rather than by structure. This is really important in the case of typed arrays, as the following happens:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="let arr = new Uint8Array(20);
let arr2 = new Int16Array(20);
arr = arr2; // Valid.
let sliced = arr.slice(0, 10); // Typed as a Uint8Array (really an Int16Array at runtime)"><pre class="notranslate"><span class="pl-k">let</span> <span class="pl-s1">arr</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-smi">Uint8Array</span><span class="pl-kos">(</span><span class="pl-c1">20</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">let</span> <span class="pl-s1">arr2</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-smi">Int16Array</span><span class="pl-kos">(</span><span class="pl-c1">20</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">arr</span> <span class="pl-c1">=</span> <span class="pl-s1">arr2</span><span class="pl-kos">;</span> <span class="pl-c">// Valid.</span>
<span class="pl-k">let</span> <span class="pl-s1">sliced</span> <span class="pl-c1">=</span> <span class="pl-s1">arr</span><span class="pl-kos">.</span><span class="pl-en">slice</span><span class="pl-kos">(</span><span class="pl-c1">0</span><span class="pl-kos">,</span> <span class="pl-c1">10</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Typed as a Uint8Array (really an Int16Array at runtime)</span></pre></div> | 1 |
<p dir="auto">I find that <code class="notranslate">.last()</code> does not perform as expected.</p>
<h4 dir="auto">Example:</h4>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="df = pd.DataFrame([[179293473,'2016-06-01 00:00:03.549745','http://www.dr.dk/nyheder/',39169523],[179293473,'2016-06-01 00:04:22.346018','https://www.information.dk/indland/2016/05/hvert-tredje-offer-naar-anmelde-voldtaegt-tide', 39125224],
[179773461, '2016-06-01 22:13:16.588146', 'https://www.google.dk', 31658124],
[179773461, '2016-06-01 22:14:04.059781', 'https://www.google.dk', 31658124],
[179773461, '2016-06-01 22:16:37.230587', np.nan, 31658124],
[179773461, '2016-06-01 22:23:09.847149', 'https://www.google.dk', 32718401],
[179773461, '2016-06-01 22:23:55.158929', np.nan, 32718401],
[179773461, '2016-06-01 22:27:00.857224', np.nan, 32718401]],
columns=['SessionID', 'PageTime', 'ReferrerURL', 'PageID'])"><pre class="notranslate"><code class="notranslate">df = pd.DataFrame([[179293473,'2016-06-01 00:00:03.549745','http://www.dr.dk/nyheder/',39169523],[179293473,'2016-06-01 00:04:22.346018','https://www.information.dk/indland/2016/05/hvert-tredje-offer-naar-anmelde-voldtaegt-tide', 39125224],
[179773461, '2016-06-01 22:13:16.588146', 'https://www.google.dk', 31658124],
[179773461, '2016-06-01 22:14:04.059781', 'https://www.google.dk', 31658124],
[179773461, '2016-06-01 22:16:37.230587', np.nan, 31658124],
[179773461, '2016-06-01 22:23:09.847149', 'https://www.google.dk', 32718401],
[179773461, '2016-06-01 22:23:55.158929', np.nan, 32718401],
[179773461, '2016-06-01 22:27:00.857224', np.nan, 32718401]],
columns=['SessionID', 'PageTime', 'ReferrerURL', 'PageID'])
</code></pre></div>
<h4 dir="auto">Problem description</h4>
<p dir="auto">When I run:<br>
<code class="notranslate">df.groupby('SessionID').last()</code><br>
I get:</p>
<table role="table">
<thead>
<tr>
<th> SessionID</th>
<th>PageTime</th>
<th>ReferrerURL</th>
<th>PageID</th>
</tr>
</thead>
<tbody>
<tr>
<td>179293473</td>
<td>2016-06-01 00:04:22.346018</td>
<td><a href="https://www.information.dk/indland/2016/05/hve" rel="nofollow">https://www.information.dk/indland/2016/05/hve</a>...</td>
<td>39125224</td>
</tr>
<tr>
<td>179773461</td>
<td>2016-06-01 22:27:00.857224</td>
<td><a href="https://www.google.dk" rel="nofollow">https://www.google.dk</a></td>
<td>32718401</td>
</tr>
</tbody>
</table>
<h4 dir="auto">Expected Output</h4>
<p dir="auto">When, in fact, I was expecting the same result as obtained from:<br>
<code class="notranslate">df.groupby('SessionID').nth(-1)</code></p>
<table role="table">
<thead>
<tr>
<th> SessionID</th>
<th>PageID</th>
<th>PageTime</th>
<th>ReferrerURL</th>
</tr>
</thead>
<tbody>
<tr>
<td>179293473</td>
<td>39125224</td>
<td>2016-06-01 00:04:22.346018</td>
<td><a href="https://www.information.dk/indland/2016/05/hve" rel="nofollow">https://www.information.dk/indland/2016/05/hve</a>...</td>
</tr>
<tr>
<td>179773461</td>
<td>32718401</td>
<td>2016-06-01 22:27:00.857224</td>
<td>NaN</td>
</tr>
</tbody>
</table>
<hr>
<p dir="auto">And while we are at <code class="notranslate">.nth()</code>, why does it mix up my column order?</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.6.4.final.0<br>
python-bits: 64<br>
OS: Windows<br>
OS-release: 10<br>
machine: AMD64<br>
processor: Intel64 Family 6 Model 79 Stepping 1, GenuineIntel<br>
byteorder: little<br>
LC_ALL: None<br>
LANG: None<br>
LOCALE: None.None</p>
<p dir="auto">pandas: 0.22.0<br>
pytest: 3.3.2<br>
pip: 9.0.3<br>
setuptools: 38.4.0<br>
Cython: 0.27.3<br>
numpy: 1.14.0<br>
scipy: 1.0.0<br>
pyarrow: None<br>
xarray: None<br>
IPython: 6.2.1<br>
sphinx: 1.6.6<br>
patsy: 0.5.0<br>
dateutil: 2.6.1<br>
pytz: 2017.3<br>
blosc: None<br>
bottleneck: 1.2.1<br>
tables: 3.4.2<br>
numexpr: 2.6.4<br>
feather: None<br>
matplotlib: 2.1.2<br>
openpyxl: 2.4.10<br>
xlrd: 1.1.0<br>
xlwt: 1.3.0<br>
xlsxwriter: 1.0.2<br>
lxml: 4.1.1<br>
bs4: 4.6.0<br>
html5lib: 1.0.1<br>
sqlalchemy: 1.2.1<br>
pymysql: None<br>
psycopg2: 2.7.4 (dt dec pq3 ext lo64)<br>
jinja2: 2.10<br>
s3fs: None<br>
fastparquet: None<br>
pandas_gbq: None<br>
pandas_datareader: None</p>
</details> | <p dir="auto">This is incorrect, as this is applied column by column (as they are different dtypes)<br>
so <code class="notranslate">_first_compat</code> should first compute the mask then use it.</p>
<p dir="auto">from <a href="http://stackoverflow.com/questions/26108181/selecting-first-row-with-groupby-and-nan-columns" rel="nofollow">SO</a></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [18]: df = pd.DataFrame([{'id':"a",'val':np.nan, 'val2':-1},{'id':"a",'val':'TREE','val2':15}])
In [19]: df
Out[19]:
id val val2
0 a NaN -1
1 a TREE 15
In [20]: df.groupby('id').first()
Out[20]:
val val2
id
a TREE -1"><pre class="notranslate"><code class="notranslate">In [18]: df = pd.DataFrame([{'id':"a",'val':np.nan, 'val2':-1},{'id':"a",'val':'TREE','val2':15}])
In [19]: df
Out[19]:
id val val2
0 a NaN -1
1 a TREE 15
In [20]: df.groupby('id').first()
Out[20]:
val val2
id
a TREE -1
</code></pre></div> | 1 |
<h4 dir="auto">Code Sample, a copy-pastable example if possible</h4>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import pandas as pd
index = pd.timedelta_range('0', periods=4, freq='s')
series = pd.Series(range(4), index=index)
print series
print series.resample('2s', label='left').sum()
print series.resample('2s', label='right').sum()
print series.resample('2s', label='right', closed='right').sum()"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">pandas</span> <span class="pl-k">as</span> <span class="pl-s1">pd</span>
<span class="pl-s1">index</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-en">timedelta_range</span>(<span class="pl-s">'0'</span>, <span class="pl-s1">periods</span><span class="pl-c1">=</span><span class="pl-c1">4</span>, <span class="pl-s1">freq</span><span class="pl-c1">=</span><span class="pl-s">'s'</span>)
<span class="pl-s1">series</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">Series</span>(<span class="pl-en">range</span>(<span class="pl-c1">4</span>), <span class="pl-s1">index</span><span class="pl-c1">=</span><span class="pl-s1">index</span>)
<span class="pl-k">print</span> <span class="pl-s1">series</span>
<span class="pl-k">print</span> <span class="pl-s1">series</span>.<span class="pl-en">resample</span>(<span class="pl-s">'2s'</span>, <span class="pl-s1">label</span><span class="pl-c1">=</span><span class="pl-s">'left'</span>).<span class="pl-en">sum</span>()
<span class="pl-k">print</span> <span class="pl-s1">series</span>.<span class="pl-en">resample</span>(<span class="pl-s">'2s'</span>, <span class="pl-s1">label</span><span class="pl-c1">=</span><span class="pl-s">'right'</span>).<span class="pl-en">sum</span>()
<span class="pl-k">print</span> <span class="pl-s1">series</span>.<span class="pl-en">resample</span>(<span class="pl-s">'2s'</span>, <span class="pl-s1">label</span><span class="pl-c1">=</span><span class="pl-s">'right'</span>, <span class="pl-s1">closed</span><span class="pl-c1">=</span><span class="pl-s">'right'</span>).<span class="pl-en">sum</span>()</pre></div>
<h4 dir="auto">The output</h4>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="00:00:00 0
00:00:01 1
00:00:02 2
00:00:03 3
Freq: S, dtype: int64
00:00:00 1
00:00:02 5
Freq: 2S, dtype: int64
00:00:00 1
00:00:02 5
Freq: 2S, dtype: int64
00:00:00 1
00:00:02 5
Freq: 2S, dtype: int64"><pre class="notranslate"><code class="notranslate">00:00:00 0
00:00:01 1
00:00:02 2
00:00:03 3
Freq: S, dtype: int64
00:00:00 1
00:00:02 5
Freq: 2S, dtype: int64
00:00:00 1
00:00:02 5
Freq: 2S, dtype: int64
00:00:00 1
00:00:02 5
Freq: 2S, dtype: int64
</code></pre></div>
<h4 dir="auto">Problem description</h4>
<p dir="auto">When calling the function resample with a DatetimeIndex works as expected. However, if called with a TimedeltaIndex the options label and closed does not work.</p>
<h4 dir="auto">Expected Output</h4>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="00:00:00 0
00:00:01 1
00:00:02 2
00:00:03 3
Freq: S, dtype: int64
00:00:00 1
00:00:02 5
Freq: 2S, dtype: int64
00:00:02 1
00:00:04 5
Freq: 2S, dtype: int64
00:00:00 0
00:00:02 3
00:00:04 3
Freq: 2S, dtype: int64"><pre class="notranslate"><code class="notranslate">00:00:00 0
00:00:01 1
00:00:02 2
00:00:03 3
Freq: S, dtype: int64
00:00:00 1
00:00:02 5
Freq: 2S, dtype: int64
00:00:02 1
00:00:04 5
Freq: 2S, dtype: int64
00:00:00 0
00:00:02 3
00:00:04 3
Freq: 2S, dtype: int64
</code></pre></div>
<h4 dir="auto">Output of <code class="notranslate">pd.show_versions()</code></h4>
<details>
# Paste the output here pd.show_versions() here
<h2 dir="auto">INSTALLED VERSIONS</h2>
<p dir="auto">commit: None<br>
python: 2.7.6.final.0<br>
python-bits: 64<br>
OS: Linux<br>
OS-release: 3.19.0-74-generic<br>
machine: x86_64<br>
processor: x86_64<br>
byteorder: little<br>
LC_ALL: None<br>
LANG: en_GB.UTF-8<br>
LOCALE: None.None</p>
<p dir="auto">pandas: 0.19.2<br>
nose: 1.3.1<br>
pip: 9.0.1<br>
setuptools: 28.8.0<br>
Cython: 0.24.1<br>
numpy: 1.12.0<br>
scipy: 0.18.1<br>
statsmodels: 0.5.0<br>
xarray: None<br>
IPython: 4.1.2<br>
sphinx: 1.4.6<br>
patsy: 0.4.1<br>
dateutil: 2.6.0<br>
pytz: 2016.10<br>
blosc: None<br>
bottleneck: None<br>
tables: 3.1.1<br>
numexpr: 2.2.2<br>
matplotlib: 1.5.3<br>
openpyxl: 1.7.0<br>
xlrd: 0.9.2<br>
xlwt: 0.7.5<br>
xlsxwriter: None<br>
lxml: None<br>
bs4: 4.2.1<br>
html5lib: 0.999<br>
httplib2: 0.8<br>
apiclient: None<br>
sqlalchemy: None<br>
pymysql: None<br>
psycopg2: 2.4.5 (dt dec mx pq3 ext)<br>
jinja2: 2.8<br>
boto: None<br>
pandas_datareader: None</p>
</details> | <p dir="auto">brought up in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="149449545" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/12925" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/12925/hovercard" href="https://github.com/pandas-dev/pandas/issues/12925">#12925</a><br>
some examples in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="201928041" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/15167" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/15167/hovercard" href="https://github.com/pandas-dev/pandas/issues/15167">#15167</a></p>
<p dir="auto">Resampling fence posts are off when upsampling < 1 Day.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [5]: df = DataFrame(data=[[1, 3], [-5, 10], [0, 0]],index=pd.timedelta_range('00:00:00','00:10:00',freq='5T'))
In [6]: df.resample('1T').asfreq()
Out[6]:
0 1
00:00:00 1.0 3.0
00:01:00 NaN NaN
00:02:00 NaN NaN
00:03:00 NaN NaN
00:04:00 NaN NaN
00:05:00 -5.0 10.0
00:06:00 NaN NaN
00:07:00 NaN NaN
00:08:00 NaN NaN
00:09:00 NaN NaN
In [8]: df.resample('1T').mean()
Out[8]:
0 1
00:00:00 1.0 3.0
00:01:00 NaN NaN
00:02:00 NaN NaN
00:03:00 NaN NaN
00:04:00 NaN NaN
00:05:00 -5.0 10.0
00:06:00 NaN NaN
00:07:00 NaN NaN
00:08:00 NaN NaN
00:09:00 NaN NaN
00:10:00 0.0 0.0"><pre class="notranslate"><code class="notranslate">In [5]: df = DataFrame(data=[[1, 3], [-5, 10], [0, 0]],index=pd.timedelta_range('00:00:00','00:10:00',freq='5T'))
In [6]: df.resample('1T').asfreq()
Out[6]:
0 1
00:00:00 1.0 3.0
00:01:00 NaN NaN
00:02:00 NaN NaN
00:03:00 NaN NaN
00:04:00 NaN NaN
00:05:00 -5.0 10.0
00:06:00 NaN NaN
00:07:00 NaN NaN
00:08:00 NaN NaN
00:09:00 NaN NaN
In [8]: df.resample('1T').mean()
Out[8]:
0 1
00:00:00 1.0 3.0
00:01:00 NaN NaN
00:02:00 NaN NaN
00:03:00 NaN NaN
00:04:00 NaN NaN
00:05:00 -5.0 10.0
00:06:00 NaN NaN
00:07:00 NaN NaN
00:08:00 NaN NaN
00:09:00 NaN NaN
00:10:00 0.0 0.0
</code></pre></div> | 1 |
<p dir="auto">On this page specifically: <a href="https://material-ui-1dab0.firebaseapp.com/customization/themes" rel="nofollow">https://material-ui-1dab0.firebaseapp.com/customization/themes</a>, not the others apparently.</p>
<h3 dir="auto">Versions</h3>
<ul dir="auto">
<li>Material-UI: alpha 17</li>
<li>Browser: Firefox & chrome</li>
</ul> | <p dir="auto">Given a case: I have 2 types of a Button, first one with rounded corners, second one without. Now in case I want all buttons inside of some subtree use the second type, I would want to use the MuiThemeProvider.</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const theme1 = createMuiTheme({
overrides: {
Button: {
root: {
borderRadius: 10
}
}
}
})
const theme2 = createMuiTheme({
overrides: {
Button: {
root: {
borderRadius: 0
}
}
}
})
class Subtree extends Component {
render() {
return (
<ThemeProvider theme={theme2}>
<Button>Click me hard</Button>
</ThemeProvider>
)
}
}
class App extends Component {
render() {
return (
<ThemeProvider theme={theme1}>
<Subtree />
</ThemeProvider>
)
}
}
"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">theme1</span> <span class="pl-c1">=</span> <span class="pl-en">createMuiTheme</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">overrides</span>: <span class="pl-kos">{</span>
<span class="pl-c1">Button</span>: <span class="pl-kos">{</span>
<span class="pl-c1">root</span>: <span class="pl-kos">{</span>
<span class="pl-c1">borderRadius</span>: <span class="pl-c1">10</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-k">const</span> <span class="pl-s1">theme2</span> <span class="pl-c1">=</span> <span class="pl-en">createMuiTheme</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">overrides</span>: <span class="pl-kos">{</span>
<span class="pl-c1">Button</span>: <span class="pl-kos">{</span>
<span class="pl-c1">root</span>: <span class="pl-kos">{</span>
<span class="pl-c1">borderRadius</span>: <span class="pl-c1">0</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-k">class</span> <span class="pl-v">Subtree</span> <span class="pl-k">extends</span> <span class="pl-v">Component</span> <span class="pl-kos">{</span>
<span class="pl-en">render</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-kos">(</span>
<span class="pl-c1"><</span><span class="pl-ent">ThemeProvider</span> <span class="pl-c1">theme</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-s1">theme2</span><span class="pl-kos">}</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-ent">Button</span><span class="pl-c1">></span>Click me hard<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">Button</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">ThemeProvider</span><span class="pl-c1">></span>
<span class="pl-kos">)</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-k">class</span> <span class="pl-v">App</span> <span class="pl-k">extends</span> <span class="pl-v">Component</span> <span class="pl-kos">{</span>
<span class="pl-en">render</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-kos">(</span>
<span class="pl-c1"><</span><span class="pl-ent">ThemeProvider</span> <span class="pl-c1">theme</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-s1">theme1</span><span class="pl-kos">}</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-ent">Subtree</span> <span class="pl-c1">/</span><span class="pl-c1">></span>
<span class="pl-c1"><</span><span class="pl-c1">/</span><span class="pl-ent">ThemeProvider</span><span class="pl-c1">></span>
<span class="pl-kos">)</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">In this case, theme2 will overwrite theme1 style sheet.</p> | 1 |
<p dir="auto">Challenge <a href="https://www.freecodecamp.com/challenges/target-the-parent-of-an-element-using-jquery" rel="nofollow">Target the Parent of an Element Using jQuery</a> has an issue.<br>
User Agent is: <code class="notranslate">Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:48.0) Gecko/20100101 Firefox/48.0</code>.<br>
Please describe how to reproduce this issue, and include links to screenshots if possible.</p>
<p dir="auto">My code:</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="
<script>
$(document).ready(function() {
$("#target1").css("color", "red");
$("#target1").prop("disabled", true);
$("#target4").remove();
$("#target2").appendTo("#right-well");
$("#target5").clone().appendTo("#left-well");
});
</script>
<!-- Only change code above this line. -->
<body>
<div class="container-fluid">
<h3 class="text-primary text-center">jQuery Playground</h3>
<div class="row">
<div class="col-xs-6">
<h4>#left-well</h4>
<div class="well" id="left-well">
<button class="btn btn-default target" id="target1">#target1</button>
<button class="btn btn-default target" id="target2">#target2</button>
<button class="btn btn-default target" id="target3">#target3</button>
</div>
</div>
<div class="col-xs-6">
<h4>#right-well</h4>
<div class="well" id="right-well">
<button class="btn btn-default target" id="target4">#target4</button>
<button class="btn btn-default target" id="target5">#target5</button>
<button class="btn btn-default target" id="target6">#target6</button>
</div>
</div>
</div>
</div>
</body>
"><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">script</span><span class="pl-kos">></span>
<span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-smi">document</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">ready</span><span class="pl-kos">(</span><span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target1"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">css</span><span class="pl-kos">(</span><span class="pl-s">"color"</span><span class="pl-kos">,</span> <span class="pl-s">"red"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target1"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">prop</span><span class="pl-kos">(</span><span class="pl-s">"disabled"</span><span class="pl-kos">,</span> <span class="pl-c1">true</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target4"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">remove</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target2"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">appendTo</span><span class="pl-kos">(</span><span class="pl-s">"#right-well"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target5"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">clone</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">appendTo</span><span class="pl-kos">(</span><span class="pl-s">"#left-well"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos"></</span><span class="pl-ent">script</span><span class="pl-kos">></span>
<span class="pl-c"><!-- Only change code above this line. --></span>
<span class="pl-kos"><</span><span class="pl-ent">body</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">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">h3</span> <span class="pl-c1">class</span>="<span class="pl-s">text-primary text-center</span>"<span class="pl-kos">></span>jQuery Playground<span class="pl-kos"></</span><span class="pl-ent">h3</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-6</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">h4</span><span class="pl-kos">></span>#left-well<span class="pl-kos"></</span><span class="pl-ent">h4</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">well</span>" <span class="pl-c1">id</span>="<span class="pl-s">left-well</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-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target1</span>"<span class="pl-kos">></span>#target1<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">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target2</span>"<span class="pl-kos">></span>#target2<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">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target3</span>"<span class="pl-kos">></span>#target3<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">div</span> <span class="pl-c1">class</span>="<span class="pl-s">col-xs-6</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">h4</span><span class="pl-kos">></span>#right-well<span class="pl-kos"></</span><span class="pl-ent">h4</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">well</span>" <span class="pl-c1">id</span>="<span class="pl-s">right-well</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-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target4</span>"<span class="pl-kos">></span>#target4<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">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target5</span>"<span class="pl-kos">></span>#target5<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">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target6</span>"<span class="pl-kos">></span>#target6<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">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">body</span><span class="pl-kos">></span></pre></div> | <p dir="auto">Challenge <a href="http://www.freecodecamp.com/challenges/waypoint-clone-an-element-using-jquery#?solution=fccss%0A%20%20%24%28document%29.ready%28function%28%29%20%7B%0A%20%20%20%20%24%28%22%23target1%22%29.css%28%22color%22%2C%20%22red%22%29%3B%0A%20%20%20%20%24%28%22%23target1%22%29.prop%28%22disabled%22%2C%20true%29%3B%0A%20%20%20%20%24%28%22%23target4%22%29.remove%28%29%3B%0A%20%20%20%20%24%28%22%23target2%22%29.appendTo%28%22%23right-well%22%29%3B%0A%20%20%20%20%24%28%22%23target5%22%29.clone%28%29.appendTo%28%22%23left-well%22%29%3B%0A%20%20%7D%29%3B%0Afcces%0A%0A%3C!--%20Only%20change%20code%20above%20this%20line.%20--%3E%0A%0A%3Cdiv%20class%3D%22container-fluid%22%3E%0A%20%20%3Ch3%20class%3D%22text-primary%20text-center%22%3EjQuery%20Playground%3C%2Fh3%3E%0A%20%20%3Cdiv%20class%3D%22row%22%3E%0A%20%20%20%20%3Cdiv%20class%3D%22col-xs-6%22%3E%0A%20%20%20%20%20%20%3Ch4%3E%23left-well%3C%2Fh4%3E%0A%20%20%20%20%20%20%3Cdiv%20class%3D%22well%22%20id%3D%22left-well%22%3E%0A%20%20%20%20%20%20%20%20%3Cbutton%20class%3D%22btn%20btn-default%20target%22%20id%3D%22target1%22%3E%23target1%3C%2Fbutton%3E%0A%20%20%20%20%20%20%20%20%3Cbutton%20class%3D%22btn%20btn-default%20target%22%20id%3D%22target2%22%3E%23target2%3C%2Fbutton%3E%0A%20%20%20%20%20%20%20%20%3Cbutton%20class%3D%22btn%20btn-default%20target%22%20id%3D%22target3%22%3E%23target3%3C%2Fbutton%3E%0A%20%20%20%20%20%20%3C%2Fdiv%3E%0A%20%20%20%20%3C%2Fdiv%3E%0A%20%20%20%20%3Cdiv%20class%3D%22col-xs-6%22%3E%0A%20%20%20%20%20%20%3Ch4%3E%23right-well%3C%2Fh4%3E%0A%20%20%20%20%20%20%3Cdiv%20class%3D%22well%22%20id%3D%22right-well%22%3E%0A%20%20%20%20%20%20%20%20%3Cbutton%20class%3D%22btn%20btn-default%20target%22%20id%3D%22target4%22%3E%23target4%3C%2Fbutton%3E%0A%20%20%20%20%20%20%20%20%3Cbutton%20class%3D%22btn%20btn-default%20target%22%20id%3D%22target5%22%3E%23target5%3C%2Fbutton%3E%0A%20%20%20%20%20%20%20%20%3Cbutton%20class%3D%22btn%20btn-default%20target%22%20id%3D%22target6%22%3E%23target6%3C%2Fbutton%3E%0A%20%20%20%20%20%20%3C%2Fdiv%3E%0A%20%20%20%20%3C%2Fdiv%3E%0A%20%20%3C%2Fdiv%3E%0A%3C%2Fdiv%3E%0A" rel="nofollow">Waypoint: Clone an Element Using jQuery</a> has an issue.<br>
User Agent is: <code class="notranslate">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.73 Safari/537.36</code>.<br>
Please describe how to reproduce this issue, and include links to screenshots if possible.</p>
<h2 dir="auto">Issue</h2>
<p dir="auto">I believe I've found bug in the phone simulation in <strong>Waypoint: Clone an Element Using jQuery</strong>:</p>
<p dir="auto">I entered the code to clone <code class="notranslate">target5</code> and append it to <code class="notranslate">left-well</code>, and now I see three <strong>target5</strong> buttons in the phone simulator. FCC says my code is correct and advances me to the next challenge. The following challenges also show three target5 buttons:</p>
<ul dir="auto">
<li>Waypoint: Target the Parent of an Element Using jQuery</li>
<li>Waypoint: Target the Children of an Element Using jQuery</li>
</ul>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/qualitymanifest/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/qualitymanifest">@qualitymanifest</a> confirms this issue on his <strong>Linux</strong> box.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/5673126/11647398/76751658-9d35-11e5-8fcf-112ab89c6920.png"><img src="https://cloud.githubusercontent.com/assets/5673126/11647398/76751658-9d35-11e5-8fcf-112ab89c6920.png" alt="image" style="max-width: 100%;"></a></p>
<h2 dir="auto">My code:</h2>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<script>
$(document).ready(function() {
$("#target1").css("color", "red");
$("#target1").prop("disabled", true);
$("#target4").remove();
$("#target2").appendTo("#right-well");
$("#target5").clone().appendTo("#left-well");
});
</script>
<!-- Only change code above this line. -->
<div class="container-fluid">
<h3 class="text-primary text-center">jQuery Playground</h3>
<div class="row">
<div class="col-xs-6">
<h4>#left-well</h4>
<div class="well" id="left-well">
<button class="btn btn-default target" id="target1">#target1</button>
<button class="btn btn-default target" id="target2">#target2</button>
<button class="btn btn-default target" id="target3">#target3</button>
</div>
</div>
<div class="col-xs-6">
<h4>#right-well</h4>
<div class="well" id="right-well">
<button class="btn btn-default target" id="target4">#target4</button>
<button class="btn btn-default target" id="target5">#target5</button>
<button class="btn btn-default target" id="target6">#target6</button>
</div>
</div>
</div>
</div>
"><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">script</span><span class="pl-kos">></span>
<span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-smi">document</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">ready</span><span class="pl-kos">(</span><span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target1"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">css</span><span class="pl-kos">(</span><span class="pl-s">"color"</span><span class="pl-kos">,</span> <span class="pl-s">"red"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target1"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">prop</span><span class="pl-kos">(</span><span class="pl-s">"disabled"</span><span class="pl-kos">,</span> <span class="pl-c1">true</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target4"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">remove</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target2"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">appendTo</span><span class="pl-kos">(</span><span class="pl-s">"#right-well"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"#target5"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">clone</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">appendTo</span><span class="pl-kos">(</span><span class="pl-s">"#left-well"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos"></</span><span class="pl-ent">script</span><span class="pl-kos">></span>
<span class="pl-c"><!-- Only change code above this line. --></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">h3</span> <span class="pl-c1">class</span>="<span class="pl-s">text-primary text-center</span>"<span class="pl-kos">></span>jQuery Playground<span class="pl-kos"></</span><span class="pl-ent">h3</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-6</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">h4</span><span class="pl-kos">></span>#left-well<span class="pl-kos"></</span><span class="pl-ent">h4</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">well</span>" <span class="pl-c1">id</span>="<span class="pl-s">left-well</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-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target1</span>"<span class="pl-kos">></span>#target1<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">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target2</span>"<span class="pl-kos">></span>#target2<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">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target3</span>"<span class="pl-kos">></span>#target3<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">div</span> <span class="pl-c1">class</span>="<span class="pl-s">col-xs-6</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">h4</span><span class="pl-kos">></span>#right-well<span class="pl-kos"></</span><span class="pl-ent">h4</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">well</span>" <span class="pl-c1">id</span>="<span class="pl-s">right-well</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-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target4</span>"<span class="pl-kos">></span>#target4<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">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target5</span>"<span class="pl-kos">></span>#target5<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">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target6</span>"<span class="pl-kos">></span>#target6<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">div</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">div</span><span class="pl-kos">></span></pre></div> | 1 |
<p dir="auto">I have followed the <a href="https://flutter.io/get-started/codelab/" rel="nofollow">instruction</a> to make flutter app. (stop at list of word pairings tutorial). Next I try building release version of iOS following <a href="https://flutter.io/ios-release/#create-a-build-archive" rel="nofollow">instruction</a>, archives and export from Xcode.</p>
<p dir="auto">The ipa file is 68.9MB, while release version of apk file is 5.5MB. Is this normal?<br>
If the size in not normal, how could I find and fix the issue in iOS?<br>
Appreciate for any helps.</p> | <p dir="auto">With current beta <code class="notranslate">0.8.2</code> and latest <code class="notranslate">dev</code>, <code class="notranslate">flutter build ios --release</code> produces app which is 5 times the size of the app built with <code class="notranslate">0.7.2</code>.</p>
<p dir="auto">with <code class="notranslate">0.7.2</code> the size was around <code class="notranslate">22mb</code><br>
with <code class="notranslate">0.8.2</code> the size is around <code class="notranslate">100mb</code></p>
<p dir="auto">I've tested with basic flutter app by creating new flutter app and building it. Even basic app size is around <code class="notranslate">61mb</code></p>
<h2 dir="auto">Steps to Reproduce</h2>
<ol dir="auto">
<li>Create new flutter app.</li>
<li>Run <code class="notranslate">flutter build ios --release</code></li>
<li>Check the size of the app</li>
</ol>
<h2 dir="auto">Images for reference</h2>
<p dir="auto"><strong><code class="notranslate">aot</code> and <code class="notranslate">app</code> size</strong></p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1260204/46030076-c5636e00-c112-11e8-9862-32a8bfcd0f90.png"><img width="629" alt="screen shot 2018-09-25 at 10 08 37 pm" src="https://user-images.githubusercontent.com/1260204/46030076-c5636e00-c112-11e8-9862-32a8bfcd0f90.png" style="max-width: 100%;"></a></p>
<p dir="auto"><strong>contents of the <code class="notranslate">app</code></strong></p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/1260204/46030083-c98f8b80-c112-11e8-8dc3-dc60cbd0f88d.png"><img width="619" alt="screen shot 2018-09-25 at 10 09 53 pm" src="https://user-images.githubusercontent.com/1260204/46030083-c98f8b80-c112-11e8-8dc3-dc60cbd0f88d.png" style="max-width: 100%;"></a></p>
<h2 dir="auto">Logs</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[✓] Flutter (Channel dev, v0.9.2, on Mac OS X 10.13.2 17C88, locale en-IN)
• Flutter version 0.9.2 at /Users/hari/development/flutter
• Framework revision 85b4670b2a (6 days ago), 2018-09-19 14:59:23 -0700
• Engine revision 2e8e96fad1
• Dart version 2.1.0-dev.4.0.flutter-4eb879133a
[✓] Android toolchain - develop for Android devices (Android SDK 27.0.3)
• Android SDK at /Users/hari/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-27, build-tools 27.0.3
• Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01)
• All Android licenses accepted.
[✓] iOS toolchain - develop for iOS devices (Xcode 9.4.1)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 9.4.1, Build version 9F2000
• ios-deploy 1.9.2
• CocoaPods version 1.5.3
[✓] Android Studio (version 3.1)
• Android Studio at /Applications/Android Studio.app/Contents
• Flutter plugin version 28.0.1
• Dart plugin version 173.4700
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01)
[✓] VS Code (version 1.27.2)
• VS Code at /Applications/Visual Studio Code.app/Contents
• Flutter extension version 2.18.0
[!] Connected devices
! No devices available
! Doctor found issues in 1 category."><pre class="notranslate"><code class="notranslate">[✓] Flutter (Channel dev, v0.9.2, on Mac OS X 10.13.2 17C88, locale en-IN)
• Flutter version 0.9.2 at /Users/hari/development/flutter
• Framework revision 85b4670b2a (6 days ago), 2018-09-19 14:59:23 -0700
• Engine revision 2e8e96fad1
• Dart version 2.1.0-dev.4.0.flutter-4eb879133a
[✓] Android toolchain - develop for Android devices (Android SDK 27.0.3)
• Android SDK at /Users/hari/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-27, build-tools 27.0.3
• Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01)
• All Android licenses accepted.
[✓] iOS toolchain - develop for iOS devices (Xcode 9.4.1)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 9.4.1, Build version 9F2000
• ios-deploy 1.9.2
• CocoaPods version 1.5.3
[✓] Android Studio (version 3.1)
• Android Studio at /Applications/Android Studio.app/Contents
• Flutter plugin version 28.0.1
• Dart plugin version 173.4700
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01)
[✓] VS Code (version 1.27.2)
• VS Code at /Applications/Visual Studio Code.app/Contents
• Flutter extension version 2.18.0
[!] Connected devices
! No devices available
! Doctor found issues in 1 category.
</code></pre></div> | 1 |
<p dir="auto">Hello everyone.</p>
<p dir="auto"><strong>I have an issue to migrate from 0.25 to 0.36 superset</strong></p>
<p dir="auto">I can run it into a new venv with new installation and without to use my postgresql database, but when i try touse my database, I have some errors (new columns)<br>
For example in the dashboard tab<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/46780967/87066830-7ddca200-c213-11ea-87cb-894e40699a0c.png"><img src="https://user-images.githubusercontent.com/46780967/87066830-7ddca200-c213-11ea-87cb-894e40699a0c.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">I can see that this new version use new column for the new features</p>
<p dir="auto">I tried "superset db upgrade" to update model database but i have some errors (see databaseèupgrade.txt file)</p>
<p dir="auto"><a href="https://github.com/apache/incubator-superset/files/4898168/database.upgrade.txt">database upgrade.txt</a></p>
<p dir="auto">Does I need to create a new database and migrate the data manually ?</p>
<p dir="auto">Thanks in advance for your answer.</p> | <p dir="auto">One of the duplicated color theme 'D3 category 10' show as 'Superset_dafault' in meta data</p>
<h4 dir="auto">How to reproduce the bug</h4>
<ol dir="auto">
<li>Go to Dashboard properties</li>
<li>Click on color theme and select D3 category 10 (duplicated, please select each one)</li>
<li>Scroll down to 'Advance'<br>
4.Observe the color_theme in meta data</li>
<li>See error</li>
</ol>
<h3 dir="auto">Expected results</h3>
<p dir="auto">Color theme name in properties will match the meta data color name</p>
<h3 dir="auto">Actual results</h3>
<p dir="auto">One of the duplicated color theme 'D3 category 10' show as 'Superset_dafault' in meta data</p>
<h4 dir="auto">Screenshots</h4>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/81597121/135905089-7a05c2f0-9851-40d1-9fdb-8723995fe9d9.png"><img width="875" alt="Screen Shot 2021-10-04 at 11 27 44 AM" src="https://user-images.githubusercontent.com/81597121/135905089-7a05c2f0-9851-40d1-9fdb-8723995fe9d9.png" style="max-width: 100%;"></a></p>
<p dir="auto">If applicable, add screenshots to help explain your problem.</p>
<h3 dir="auto">Environment</h3>
<p dir="auto">(please complete the following information):</p>
<ul dir="auto">
<li>browser type and version: chrome</li>
<li>superset version: master</li>
<li>python version: <code class="notranslate">python --version</code></li>
<li>node.js version: <code class="notranslate">node -v</code></li>
<li>any feature flags active:</li>
</ul>
<h3 dir="auto">Checklist</h3>
<p dir="auto">Make sure to follow these steps before submitting your issue - thank you!</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have checked the superset logs for python stacktraces and included it here as text if there are any.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have reproduced the issue with at least the latest released version of superset.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the issue tracker for the same issue and I haven't found one similar.</li>
</ul>
<h3 dir="auto">Additional context</h3>
<p dir="auto">Add any other context about the problem here.</p> | 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/JuliaLang/julia/blob/54adf2193a6ea1b10cd1a184a7ba863aa985eede/stdlib/LinearAlgebra/src/matmul.jl#L536">julia/stdlib/LinearAlgebra/src/matmul.jl</a>
</p>
<p class="mb-0 color-fg-muted">
Line 536
in
<a data-pjax="true" class="commit-tease-sha" href="/JuliaLang/julia/commit/54adf2193a6ea1b10cd1a184a7ba863aa985eede">54adf21</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="L536" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="536"></td>
<td id="LC536" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c"><span class="pl-c">#</span> FIXME: This code is completely invalid!!!</span> </td>
</tr>
</tbody></table>
</div>
</div>
<br>
<div class="Box Box--condensed my-2">
<div class="Box-header f6">
<p class="mb-0 text-bold">
<a href="https://github.com/JuliaLang/julia/blob/54adf2193a6ea1b10cd1a184a7ba863aa985eede/stdlib/LinearAlgebra/src/matmul.jl#L558">julia/stdlib/LinearAlgebra/src/matmul.jl</a>
</p>
<p class="mb-0 color-fg-muted">
Line 558
in
<a data-pjax="true" class="commit-tease-sha" href="/JuliaLang/julia/commit/54adf2193a6ea1b10cd1a184a7ba863aa985eede">54adf21</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="L558" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="558"></td>
<td id="LC558" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c"><span class="pl-c">#</span> FIXME: This code is completely invalid!!!</span> </td>
</tr>
</tbody></table>
</div>
</div>
<p></p>
<p dir="auto">I stumbled upon these two comments while perusing the base linalg code. Related statement in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="261178317" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/23914" data-hovercard-type="pull_request" data-hovercard-url="/JuliaLang/julia/pull/23914/hovercard" href="https://github.com/JuliaLang/julia/pull/23914">#23914</a>, where they were introduced:</p>
<blockquote>
<p dir="auto">Also marked a few even more invalid places where managed pointer is passed to unsafe_wrap (the fix for those will be much more involved).</p>
</blockquote>
<p dir="auto">Not terribly reassuring seeing this in production code, so I figured it deserved an open issue.</p> | <p dir="auto">At our centre we've just had a talk about Julia, and many of our users are<br>
interested in starting to experiment with using Julia for some of their<br>
work.</p>
<p dir="auto">I'd love to install Julia system-wide on our cluster to help them get<br>
started (especially since we try to link it with our local fast numerical<br>
libraries), but I'd like to update the package every now and then without<br>
changing it from under them.</p>
<p dir="auto">We usually do this with modules, creating new installation directories for<br>
each "version", and therein lies a bit of a stumbling block; I'd like to be<br>
able to describe which version they're using in a more consistent way than<br>
the build date, or, worse, something like<br>
<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/JuliaLang/julia/commit/27bbad69c94685299c9db525442757934d322fe5/hovercard" href="https://github.com/JuliaLang/julia/commit/27bbad69c94685299c9db525442757934d322fe5"><tt>27bbad6</tt></a>.</p>
<p dir="auto">Is there any near term plans to start having tags for release numbers?</p> | 0 |
<p dir="auto">I can see support for users and different roles in superset. But What I need is, Consider, I have a set of dashboards for finance department. Only that department's members can view the dashboards and for any other departments, it should be restricted.</p>
<p dir="auto">I know we can restrict the dashboard access very easily, But One solution I need is to create a group with all the members I have and to add that group as a single user, while creating Rules and Users in Apache Superset.</p>
<p dir="auto">One alternate solution is to create a Role as we want and add one or more users easily.</p>
<p dir="auto">But adding multiple number of users to multiple number of Roles is pretty difficult (Based on which department they belong to). So that the idea is to create a group for each group of Users and sharing dashboard to that group.</p> | <p dir="auto">I would like to visual only the raw data WITHOUT the need of apply any kind of aggreation, as the data from the table is already pre-computed aggreated metric values.</p>
<h3 dir="auto">Superset version</h3>
<p dir="auto">0.26.3</p>
<h3 dir="auto">Expected results</h3>
<p dir="auto">There shouldn't be aggregation enforced for a metric. There should be an option to display the raw metric WITHOUT any aggreation function</p>
<h3 dir="auto">Actual results</h3>
<p dir="auto">User must select one of six aggreation available in order to visualize data.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/5661982/43691150-763aeea2-98cc-11e8-9efe-a27fc64bc2bd.png"><img src="https://user-images.githubusercontent.com/5661982/43691150-763aeea2-98cc-11e8-9efe-a27fc64bc2bd.png" alt="image" style="max-width: 100%;"></a></p>
<h3 dir="auto">Steps to reproduce</h3>
<ul dir="auto">
<li>Go to <strong>Charts</strong></li>
<li>Create a new Timeseries Line Chart</li>
<li>Under Query section</li>
<li>Configure metric</li>
</ul> | 0 |
<h2 dir="auto">Steps to Reproduce</h2>
<ol dir="auto">
<li>I added the following Firebase dependencies to my Flutter app:</li>
</ol>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" google_sign_in: ^3.0.5
firebase_auth: ^0.5.20
cloud_firestore: ^0.8.0"><pre class="notranslate"><code class="notranslate"> google_sign_in: ^3.0.5
firebase_auth: ^0.5.20
cloud_firestore: ^0.8.0
</code></pre></div>
<ol start="2" dir="auto">
<li>I try to run the app on my iPhone 8 (iOS 12, Xcode Version 10.0 - 10A254a) with either <code class="notranslate">flutter run -verbose</code> or <code class="notranslate">open ios/Runner.xcworkspace</code> and run it from there but always gives me an error. Removing all the Firebase dependencies results in the app running fine, so it's definitely because of the plugins.</li>
<li><em>I have already attempted all the hacks I could find on StackOverflow and Github, from updating the pods and the repo to switching to flutter dev channel. Nothing worked, same error</em>.</li>
<li>Opening the ios project directly in Xcode, I see a bunch of errors like the one below, missing all the header files for Firebase dependencies.</li>
</ol>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/239384/45537815-fcca4480-b80d-11e8-83b8-93f29ef52adb.png"><img width="824" alt="screen shot 2018-09-14 at 11 03 25" src="https://user-images.githubusercontent.com/239384/45537815-fcca4480-b80d-11e8-83b8-93f29ef52adb.png" style="max-width: 100%;"></a></p>
<h2 dir="auto">Logs</h2>
<p dir="auto">From <code class="notranslate">flutter run --verbose</code></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ +35 ms] executing: [/Users/evelina/bin/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +37 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/dev
[ ] executing: [/Users/evelina/bin/flutter/] git rev-parse --abbrev-ref HEAD
[ +10 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] dev
[ ] executing: [/Users/evelina/bin/flutter/] git ls-remote --get-url origin
[ +9 ms] Exit code 0 from: git ls-remote --get-url origin
[ +1 ms] https://github.com/flutter/flutter.git
[ +1 ms] executing: [/Users/evelina/bin/flutter/] git log -n 1 --pretty=format:%H
[ +15 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] 5ab9e70727d858def3a586db7fb98ee580352957
[ ] executing: [/Users/evelina/bin/flutter/] git log -n 1 --pretty=format:%ar
[ +11 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 7 days ago
[ +1 ms] executing: [/Users/evelina/bin/flutter/] git describe --match v*.*.* --first-parent --long --tags
[ +30 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.8.2-0-g5ab9e7072
[ +301 ms] executing: /Users/evelina/Library/Android/sdk/platform-tools/adb devices -l
[ +8 ms] Exit code 0 from: /Users/evelina/Library/Android/sdk/platform-tools/adb devices -l
[ ] List of devices attached
[ +5 ms] executing: idevice_id -h
[ +93 ms] executing: which ideviceinstaller
[ +6 ms] Exit code 0 from: which ideviceinstaller
[ ] /usr/local/bin/ideviceinstaller
[ ] executing: which iproxy
[ +5 ms] Exit code 0 from: which iproxy
[ ] /usr/local/bin/iproxy
[ +5 ms] /usr/bin/xcrun simctl list --json devices
[ +313 ms] Found plugin cloud_firestore at /Users/evelina/bin/flutter/.pub-cache/hosted/pub.dartlang.org/cloud_firestore-0.8.0/
[ +13 ms] Found plugin firebase_auth at /Users/evelina/bin/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.5.20/
[ +2 ms] Found plugin firebase_core at /Users/evelina/bin/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_core-0.2.5/
[ +17 ms] Found plugin google_sign_in at /Users/evelina/bin/flutter/.pub-cache/hosted/pub.dartlang.org/google_sign_in-3.0.5/
[ +85 ms] Found plugin cloud_firestore at /Users/evelina/bin/flutter/.pub-cache/hosted/pub.dartlang.org/cloud_firestore-0.8.0/
[ +4 ms] Found plugin firebase_auth at /Users/evelina/bin/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.5.20/
[ ] Found plugin firebase_core at /Users/evelina/bin/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_core-0.2.5/
[ +6 ms] Found plugin google_sign_in at /Users/evelina/bin/flutter/.pub-cache/hosted/pub.dartlang.org/google_sign_in-3.0.5/
[+1073 ms] Launching lib/main.dart on Evelina’s iPhone in debug mode...
[ +12 ms] executing: /usr/bin/defaults read /Users/evelina/Workspace/Kara/kara_app/ios/Runner/Info CFBundleIdentifier
[ +150 ms] Exit code 0 from: /usr/bin/defaults read /Users/evelina/Workspace/Kara/kara_app/ios/Runner/Info CFBundleIdentifier
[ ] $(PRODUCT_BUNDLE_IDENTIFIER)
[ +9 ms] executing: idevicesyslog
[ +3 ms] Building Runner.app for 502326abfca0b735d166cec0f02048d4f8159946
[ +19 ms] executing: [/Users/evelina/Workspace/Kara/kara_app/ios/] /usr/bin/xcodebuild -list
[+1202 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
[ +3 ms] executing: [/Users/evelina/Workspace/Kara/kara_app/ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/evelina/Workspace/Kara/kara_app/ios/Runner.xcodeproj -target Runner -showBuildSettings
[+1588 ms] Exit code 0 from: /usr/bin/xcodebuild -project /Users/evelina/Workspace/Kara/kara_app/ios/Runner.xcodeproj -target Runner -showBuildSettings
[ ] Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = NO
ALTERNATE_GROUP = staff
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = evelina
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 = armv7 arm64
ARCHS_STANDARD = armv7 arm64
ARCHS_STANDARD_32_64_BIT = armv7 arm64
ARCHS_STANDARD_32_BIT = armv7
ARCHS_STANDARD_64_BIT = arm64
ARCHS_STANDARD_INCLUDING_64_BIT = armv7 arm64
ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
BITCODE_GENERATION_MODE = marker
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios
BUILD_ROOT = /Users/evelina/Workspace/Kara/kara_app/build/ios
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos
CACHE_ROOT = /var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/C/com.apple.DeveloperTools/10.0-10A254a/Xcode
CCHROOT = /var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/C/com.apple.DeveloperTools/10.0-10A254a/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/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Runner.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext
CODE_SIGN_IDENTITY = iPhone Developer
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = NO
COMPILER_INDEX_STORE_ENABLE = Default
COMPOSITE_SDK_DIRS = /Users/evelina/Workspace/Kara/kara_app/build/ios/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Release
CONFIGURATION_BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos
CONFIGURATION_TEMP_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos
CONTENTS_FOLDER_PATH = Runner.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator
CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator12.0
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = arm64
CURRENT_PROJECT_VERSION = 1
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf-with-dsym
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min=
DEPLOYMENT_TARGET_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_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
DERIVED_FILES_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = English
DEVELOPMENT_TEAM = 6H8KL2FTXB
DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DWARF_DSYM_FILE_NAME = Runner.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH = /Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos
EFFECTIVE_PLATFORM_NAME = -iphoneos
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBEDDED_PROFILE_NAME = embedded.mobileprovision
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_NS_ASSERTIONS = NO
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = NO
ENTITLEMENTS_ALLOWED = YES
ENTITLEMENTS_DESTINATION = Signature
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/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/evelina/Workspace/Kara/kara_app
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_MODE = debug
FLUTTER_BUILD_NAME = 1.0.0
FLUTTER_BUILD_NUMBER = 1
FLUTTER_FRAMEWORK_DIR = /Users/evelina/bin/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/evelina/bin/flutter
FLUTTER_TARGET = /Users/evelina/Workspace/Kara/kara_app/lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/BoringSSL" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseAuth" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseCore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseDatabase" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseFirestore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMOAuth2" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMSessionFetcher" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleToolboxForMac" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleUtilities" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Protobuf" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/cloud_firestore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_auth" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_core" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-C++" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-Core" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-ProtoRPC" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-RxLibrary" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/google_sign_in" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/leveldb-library" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/nanopb" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/../.symlinks/flutter/ios" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/FirebaseAnalytics/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/FirebaseInstanceID/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/GoogleAppMeasurement/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/GoogleSignIn/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/BoringSSL" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseAuth" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseCore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseDatabase" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseFirestore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMOAuth2" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMSessionFetcher" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleToolboxForMac" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleUtilities" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Protobuf" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/cloud_firestore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_auth" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_core" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-C++" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-Core" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-ProtoRPC" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-RxLibrary" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/google_sign_in" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/leveldb-library" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/nanopb" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/../.symlinks/flutter/ios" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/FirebaseAnalytics/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/FirebaseInstanceID/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/GoogleAppMeasurement/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/GoogleSignIn/Frameworks" /Users/evelina/Workspace/Kara/kara_app/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_PREPROCESSOR_DEFINITIONS = COCOAPODS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 COCOAPODS=1 COCOAPODS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 COCOAPODS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 COCOAPODS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1
GCC_SYMBOLS_PRIVATE_EXTERN = YES
GCC_THUMB_SUPPORT = YES
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 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
HEADER_SEARCH_PATHS = "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" /Users/evelina/Workspace/Kara/kara_app/ios/Pods/Firebase/CoreOnly/Sources "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" /Users/evelina/Workspace/Kara/kara_app/ios/Pods/Firebase/CoreOnly/Sources /Users/evelina/Workspace/Kara/kara_app/ios/Pods/Firebase/CoreOnly/Sources
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/evelina
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 = evelina
INSTALL_PATH = /Applications
INSTALL_ROOT = /tmp/Runner.dst
IPHONEOS_DEPLOYMENT_TARGET = 8.0
JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
JAVA_ARCHIVE_CLASSES = YES
JAVA_ARCHIVE_TYPE = JAR
JAVA_COMPILER = /usr/bin/javac
JAVA_FOLDER_PATH = Runner.app/Java
JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
JAVA_JAR_FLAGS = cv
JAVA_SOURCE_SUBDIR = .
JAVA_USE_DEPENDENCIES = YES
JAVA_ZIP_FLAGS = -urg
JIKES_DEFAULT_FLAGS = +E +OLDCSO
KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = /Users/evelina/Workspace/Kara/kara_app/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_arm64 =
LINK_FILE_LIST_normal_armv7 =
LINK_WITH_STANDARD_LIBRARIES = YES
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj
LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 17G65
MAC_OS_X_VERSION_ACTUAL = 101306
MAC_OS_X_VERSION_MAJOR = 101300
MAC_OS_X_VERSION_MINOR = 1306
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Runner.app
MODULE_CACHE_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
MTL_ENABLE_DEBUG_INFO = NO
NATIVE_ARCH = armv7
NATIVE_ARCH_32_BIT = i386
NATIVE_ARCH_64_BIT = x86_64
NATIVE_ARCH_ACTUAL = x86_64
NO_COMMON = YES
OBJECT_FILE_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal
OBJROOT = /Users/evelina/Workspace/Kara/kara_app/build/ios
ONLY_ACTIVE_ARCH = NO
OS = MACOS
OSAC = /usr/bin/osacompile
OTHER_CFLAGS = -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/BoringSSL/openssl.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseCore/FirebaseCore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseFirestore/FirebaseFirestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMOAuth2/GTMOAuth2.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleToolboxForMac/GoogleToolboxForMac.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Protobuf/Protobuf.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/cloud_firestore/cloud_firestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_auth/firebase_auth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_core/firebase_core.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-C++/grpcpp.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-Core/grpc.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-ProtoRPC/ProtoRPC.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-RxLibrary/RxLibrary.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC/GRPCClient.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/google_sign_in/google_sign_in.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/nanopb/nanopb.framework/Headers" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/BoringSSL/openssl.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseCore/FirebaseCore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseFirestore/FirebaseFirestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMOAuth2/GTMOAuth2.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleToolboxForMac/GoogleToolboxForMac.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Protobuf/Protobuf.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/cloud_firestore/cloud_firestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_auth/firebase_auth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_core/firebase_core.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-C++/grpcpp.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-Core/grpc.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-ProtoRPC/ProtoRPC.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-RxLibrary/RxLibrary.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC/GRPCClient.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/google_sign_in/google_sign_in.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/nanopb/nanopb.framework/Headers"
OTHER_CPLUSPLUSFLAGS = -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/BoringSSL/openssl.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseCore/FirebaseCore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseFirestore/FirebaseFirestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMOAuth2/GTMOAuth2.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleToolboxForMac/GoogleToolboxForMac.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Protobuf/Protobuf.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/cloud_firestore/cloud_firestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_auth/firebase_auth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_core/firebase_core.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-C++/grpcpp.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-Core/grpc.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-ProtoRPC/ProtoRPC.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-RxLibrary/RxLibrary.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC/GRPCClient.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/google_sign_in/google_sign_in.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/nanopb/nanopb.framework/Headers" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/BoringSSL/openssl.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseCore/FirebaseCore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseFirestore/FirebaseFirestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMOAuth2/GTMOAuth2.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleToolboxForMac/GoogleToolboxForMac.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Protobuf/Protobuf.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/cloud_firestore/cloud_firestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_auth/firebase_auth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_core/firebase_core.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-C++/grpcpp.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-Core/grpc.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-ProtoRPC/ProtoRPC.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-RxLibrary/RxLibrary.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC/GRPCClient.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/google_sign_in/google_sign_in.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/nanopb/nanopb.framework/Headers"
OTHER_LDFLAGS = -ObjC -l"c++" -l"icucore" -l"sqlite3" -l"z" -framework "CFNetwork" -framework "CoreText" -framework "FirebaseAnalytics" -framework "FirebaseAuth" -framework "FirebaseCore" -framework "FirebaseCoreDiagnostics" -framework "FirebaseDatabase" -framework "FirebaseFirestore" -framework "FirebaseInstanceID" -framework "Flutter" -framework "Foundation" -framework "GRPCClient" -framework "GTMOAuth2" -framework "GTMSessionFetcher" -framework "GoogleAppMeasurement" -framework "GoogleSignIn" -framework "GoogleToolboxForMac" -framework "GoogleUtilities" -framework "LocalAuthentication" -framework "MobileCoreServices" -framework "ProtoRPC" -framework "Protobuf" -framework "RxLibrary" -framework "SafariServices" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "cloud_firestore" -framework "firebase_auth" -framework "firebase_core" -framework "google_sign_in" -framework "grpc" -framework "grpcpp" -framework "leveldb" -framework "nanopb" -framework "openssl" -ObjC -l"c++" -l"icucore" -l"sqlite3" -l"z" -framework "CFNetwork" -framework "CoreText" -framework "FirebaseAnalytics" -framework "FirebaseAuth" -framework "FirebaseCore" -framework "FirebaseCoreDiagnostics" -framework "FirebaseDatabase" -framework "FirebaseFirestore" -framework "FirebaseInstanceID" -framework "Flutter" -framework "Foundation" -framework "GRPCClient" -framework "GTMOAuth2" -framework "GTMSessionFetcher" -framework "GoogleAppMeasurement" -framework "GoogleSignIn" -framework "GoogleToolboxForMac" -framework "GoogleUtilities" -framework "LocalAuthentication" -framework "MobileCoreServices" -framework "ProtoRPC" -framework "Protobuf" -framework "RxLibrary" -framework "SafariServices" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "cloud_firestore" -framework "firebase_auth" -framework "firebase_core" -framework "google_sign_in" -framework "grpc" -framework "grpcpp" -framework "leveldb" -framework "nanopb" -framework "openssl"
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/Users/evelina/.nvm/versions/node/v10.1.0/bin:/Users/evelina/bin/flutter/bin:/usr/local/opt/python/libexec/bin:/usr/local/bin:/usr/local/sbin:/Users/evelina/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/evelina/Library/Android/sdk:/Users/evelina/Library/Android/sdk/emulator:/Users/evelina/Library/Android/sdk/build-tools:/Users/evelina/Library/Android/sdk/tools:/Users/evelina/Library/Android/sdk/platform-tools
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/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
PLATFORM_DISPLAY_NAME = iOS
PLATFORM_NAME = iphoneos
PLATFORM_PREFERRED_ARCH = arm64
PLATFORM_PRODUCT_BUILD_VERSION = 16A366
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PODS_BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios
PODS_CONFIGURATION_BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos
PODS_PODFILE_DIR_PATH = /Users/evelina/Workspace/Kara/kara_app/ios/.
PODS_ROOT = /Users/evelina/Workspace/Kara/kara_app/ios/Pods
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = koach.kara
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = /Users/evelina/Workspace/Kara/kara_app/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/DerivedSources
PROJECT_DIR = /Users/evelina/Workspace/Kara/kara_app/ios
PROJECT_FILE_PATH = /Users/evelina/Workspace/Kara/kara_app/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build
PROJECT_TEMP_ROOT = /Users/evelina/Workspace/Kara/kara_app/build/ios
PROVISIONING_PROFILE_REQUIRED = YES
PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
REMOVE_CVS_FROM_RESOURCES = YES
REMOVE_GIT_FROM_RESOURCES = YES
REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
REMOVE_HG_FROM_RESOURCES = YES
REMOVE_SVN_FROM_RESOURCES = YES
RESOURCE_RULES_REQUIRED = YES
REZ_COLLECTOR_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
SDK_DIR_iphoneos12_0 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
SDK_NAME = iphoneos12.0
SDK_NAMES = iphoneos12.0
SDK_PRODUCT_BUILD_VERSION = 16A366
SDK_VERSION = 12.0
SDK_VERSION_ACTUAL = 120000
SDK_VERSION_MAJOR = 120000
SDK_VERSION_MINOR = 000
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/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/SharedPrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/evelina/Workspace/Kara/kara_app/ios
SRCROOT = /Users/evelina/Workspace/Kara/kara_app/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = YES
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphonesimulator iphoneos
SUPPORTS_TEXT_BASED_API = NO
SWIFT_COMPILATION_MODE = wholemodule
SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h
SWIFT_OPTIMIZATION_LEVEL = -O
SWIFT_PLATFORM_TARGET_PREFIX = ios
SWIFT_SWIFT3_OBJC_INFERENCE = On
SWIFT_VERSION = 4.0
SYMROOT = /Users/evelina/Workspace/Kara/kara_app/build/ios
SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
SYSTEM_APPS_DIR = /Applications
SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
SYSTEM_DEMOS_DIR = /Applications/Extras
SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities
SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
SYSTEM_LIBRARY_DIR = /System/Library
TAPI_VERIFY_MODE = ErrorsOnly
TARGETED_DEVICE_FAMILY = 1,2
TARGETNAME = Runner
TARGET_BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILES_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILE_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_ROOT = /Users/evelina/Workspace/Kara/kara_app/build/ios
TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
UID = 501
UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
UNSTRIPPED_PRODUCT = NO
USER = evelina
USER_APPS_DIR = /Users/evelina/Applications
USER_LIBRARY_DIR = /Users/evelina/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
VALIDATE_PRODUCT = YES
VALID_ARCHS = arm64 armv7 armv7s
VERBOSE_PBXCP = NO
VERSIONING_SYSTEM = apple-generic
VERSIONPLIST_PATH = Runner.app/version.plist
VERSION_INFO_BUILDER = evelina
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 = 10A254a
XCODE_VERSION_ACTUAL = 1000
XCODE_VERSION_MAJOR = 1000
XCODE_VERSION_MINOR = 1000
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = arm64
variant = normal
[ +7 ms] Automatically signing iOS for device deployment using specified development team in Xcode project: 6H8KL2FTXB
[ +1 ms] Trying to resolve native pub services.
[ +2 ms] Looking for YAML at 'pubspec.yaml'
[ +1 ms] No services specified in the manifest
[ ] Found 0 service definition(s).
[ ] Copying service frameworks to '/Users/evelina/Workspace/Kara/kara_app/ios/Frameworks'.
[ ] Creating service definitions manifest at '/Users/evelina/Workspace/Kara/kara_app/ios/ServiceDefinitions.json'
[ +49 ms] executing: [/Users/evelina/Workspace/Kara/kara_app/ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/evelina/Workspace/Kara/kara_app/ios/Runner.xcodeproj -target Runner -showBuildSettings
[+1401 ms] Exit code 0 from: /usr/bin/xcodebuild -project /Users/evelina/Workspace/Kara/kara_app/ios/Runner.xcodeproj -target Runner -showBuildSettings
[ ] Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = NO
ALTERNATE_GROUP = staff
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = evelina
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 = armv7 arm64
ARCHS_STANDARD = armv7 arm64
ARCHS_STANDARD_32_64_BIT = armv7 arm64
ARCHS_STANDARD_32_BIT = armv7
ARCHS_STANDARD_64_BIT = arm64
ARCHS_STANDARD_INCLUDING_64_BIT = armv7 arm64
ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
BITCODE_GENERATION_MODE = marker
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios
BUILD_ROOT = /Users/evelina/Workspace/Kara/kara_app/build/ios
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos
CACHE_ROOT = /var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/C/com.apple.DeveloperTools/10.0-10A254a/Xcode
CCHROOT = /var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/C/com.apple.DeveloperTools/10.0-10A254a/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/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Runner.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext
CODE_SIGN_IDENTITY = iPhone Developer
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = NO
COMPILER_INDEX_STORE_ENABLE = Default
COMPOSITE_SDK_DIRS = /Users/evelina/Workspace/Kara/kara_app/build/ios/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Release
CONFIGURATION_BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos
CONFIGURATION_TEMP_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos
CONTENTS_FOLDER_PATH = Runner.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator
CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator12.0
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = arm64
CURRENT_PROJECT_VERSION = 1
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf-with-dsym
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min=
DEPLOYMENT_TARGET_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_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
DERIVED_FILES_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = English
DEVELOPMENT_TEAM = 6H8KL2FTXB
DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DWARF_DSYM_FILE_NAME = Runner.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH = /Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos
EFFECTIVE_PLATFORM_NAME = -iphoneos
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBEDDED_PROFILE_NAME = embedded.mobileprovision
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_NS_ASSERTIONS = NO
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = NO
ENTITLEMENTS_ALLOWED = YES
ENTITLEMENTS_DESTINATION = Signature
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/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/evelina/Workspace/Kara/kara_app
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_MODE = debug
FLUTTER_BUILD_NAME = 1.0.0
FLUTTER_BUILD_NUMBER = 1
FLUTTER_FRAMEWORK_DIR = /Users/evelina/bin/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/evelina/bin/flutter
FLUTTER_TARGET = /Users/evelina/Workspace/Kara/kara_app/lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/BoringSSL" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseAuth" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseCore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseDatabase" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseFirestore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMOAuth2" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMSessionFetcher" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleToolboxForMac" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleUtilities" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Protobuf" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/cloud_firestore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_auth" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_core" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-C++" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-Core" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-ProtoRPC" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-RxLibrary" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/google_sign_in" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/leveldb-library" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/nanopb" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/../.symlinks/flutter/ios" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/FirebaseAnalytics/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/FirebaseInstanceID/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/GoogleAppMeasurement/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/GoogleSignIn/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/BoringSSL" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseAuth" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseCore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseDatabase" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseFirestore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMOAuth2" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMSessionFetcher" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleToolboxForMac" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleUtilities" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Protobuf" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/cloud_firestore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_auth" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_core" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-C++" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-Core" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-ProtoRPC" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-RxLibrary" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/google_sign_in" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/leveldb-library" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/nanopb" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/../.symlinks/flutter/ios" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/FirebaseAnalytics/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/FirebaseInstanceID/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/GoogleAppMeasurement/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/GoogleSignIn/Frameworks" /Users/evelina/Workspace/Kara/kara_app/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_PREPROCESSOR_DEFINITIONS = COCOAPODS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 COCOAPODS=1 COCOAPODS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 COCOAPODS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 COCOAPODS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1
GCC_SYMBOLS_PRIVATE_EXTERN = YES
GCC_THUMB_SUPPORT = YES
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 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
HEADER_SEARCH_PATHS = "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" /Users/evelina/Workspace/Kara/kara_app/ios/Pods/Firebase/CoreOnly/Sources "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" /Users/evelina/Workspace/Kara/kara_app/ios/Pods/Firebase/CoreOnly/Sources /Users/evelina/Workspace/Kara/kara_app/ios/Pods/Firebase/CoreOnly/Sources
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/evelina
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 = evelina
INSTALL_PATH = /Applications
INSTALL_ROOT = /tmp/Runner.dst
IPHONEOS_DEPLOYMENT_TARGET = 8.0
JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
JAVA_ARCHIVE_CLASSES = YES
JAVA_ARCHIVE_TYPE = JAR
JAVA_COMPILER = /usr/bin/javac
JAVA_FOLDER_PATH = Runner.app/Java
JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
JAVA_JAR_FLAGS = cv
JAVA_SOURCE_SUBDIR = .
JAVA_USE_DEPENDENCIES = YES
JAVA_ZIP_FLAGS = -urg
JIKES_DEFAULT_FLAGS = +E +OLDCSO
KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = /Users/evelina/Workspace/Kara/kara_app/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_arm64 =
LINK_FILE_LIST_normal_armv7 =
LINK_WITH_STANDARD_LIBRARIES = YES
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj
LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 17G65
MAC_OS_X_VERSION_ACTUAL = 101306
MAC_OS_X_VERSION_MAJOR = 101300
MAC_OS_X_VERSION_MINOR = 1306
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Runner.app
MODULE_CACHE_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
MTL_ENABLE_DEBUG_INFO = NO
NATIVE_ARCH = armv7
NATIVE_ARCH_32_BIT = i386
NATIVE_ARCH_64_BIT = x86_64
NATIVE_ARCH_ACTUAL = x86_64
NO_COMMON = YES
OBJECT_FILE_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal
OBJROOT = /Users/evelina/Workspace/Kara/kara_app/build/ios
ONLY_ACTIVE_ARCH = NO
OS = MACOS
OSAC = /usr/bin/osacompile
OTHER_CFLAGS = -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/BoringSSL/openssl.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseCore/FirebaseCore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseFirestore/FirebaseFirestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMOAuth2/GTMOAuth2.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleToolboxForMac/GoogleToolboxForMac.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Protobuf/Protobuf.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/cloud_firestore/cloud_firestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_auth/firebase_auth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_core/firebase_core.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-C++/grpcpp.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-Core/grpc.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-ProtoRPC/ProtoRPC.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-RxLibrary/RxLibrary.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC/GRPCClient.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/google_sign_in/google_sign_in.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/nanopb/nanopb.framework/Headers" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/BoringSSL/openssl.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseCore/FirebaseCore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseFirestore/FirebaseFirestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMOAuth2/GTMOAuth2.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleToolboxForMac/GoogleToolboxForMac.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Protobuf/Protobuf.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/cloud_firestore/cloud_firestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_auth/firebase_auth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_core/firebase_core.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-C++/grpcpp.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-Core/grpc.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-ProtoRPC/ProtoRPC.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-RxLibrary/RxLibrary.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC/GRPCClient.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/google_sign_in/google_sign_in.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/nanopb/nanopb.framework/Headers"
OTHER_CPLUSPLUSFLAGS = -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/BoringSSL/openssl.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseCore/FirebaseCore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseFirestore/FirebaseFirestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMOAuth2/GTMOAuth2.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleToolboxForMac/GoogleToolboxForMac.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Protobuf/Protobuf.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/cloud_firestore/cloud_firestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_auth/firebase_auth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_core/firebase_core.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-C++/grpcpp.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-Core/grpc.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-ProtoRPC/ProtoRPC.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-RxLibrary/RxLibrary.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC/GRPCClient.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/google_sign_in/google_sign_in.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/nanopb/nanopb.framework/Headers" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/BoringSSL/openssl.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseCore/FirebaseCore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseFirestore/FirebaseFirestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMOAuth2/GTMOAuth2.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleToolboxForMac/GoogleToolboxForMac.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Protobuf/Protobuf.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/cloud_firestore/cloud_firestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_auth/firebase_auth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_core/firebase_core.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-C++/grpcpp.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-Core/grpc.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-ProtoRPC/ProtoRPC.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-RxLibrary/RxLibrary.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC/GRPCClient.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/google_sign_in/google_sign_in.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/nanopb/nanopb.framework/Headers"
OTHER_LDFLAGS = -ObjC -l"c++" -l"icucore" -l"sqlite3" -l"z" -framework "CFNetwork" -framework "CoreText" -framework "FirebaseAnalytics" -framework "FirebaseAuth" -framework "FirebaseCore" -framework "FirebaseCoreDiagnostics" -framework "FirebaseDatabase" -framework "FirebaseFirestore" -framework "FirebaseInstanceID" -framework "Flutter" -framework "Foundation" -framework "GRPCClient" -framework "GTMOAuth2" -framework "GTMSessionFetcher" -framework "GoogleAppMeasurement" -framework "GoogleSignIn" -framework "GoogleToolboxForMac" -framework "GoogleUtilities" -framework "LocalAuthentication" -framework "MobileCoreServices" -framework "ProtoRPC" -framework "Protobuf" -framework "RxLibrary" -framework "SafariServices" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "cloud_firestore" -framework "firebase_auth" -framework "firebase_core" -framework "google_sign_in" -framework "grpc" -framework "grpcpp" -framework "leveldb" -framework "nanopb" -framework "openssl" -ObjC -l"c++" -l"icucore" -l"sqlite3" -l"z" -framework "CFNetwork" -framework "CoreText" -framework "FirebaseAnalytics" -framework "FirebaseAuth" -framework "FirebaseCore" -framework "FirebaseCoreDiagnostics" -framework "FirebaseDatabase" -framework "FirebaseFirestore" -framework "FirebaseInstanceID" -framework "Flutter" -framework "Foundation" -framework "GRPCClient" -framework "GTMOAuth2" -framework "GTMSessionFetcher" -framework "GoogleAppMeasurement" -framework "GoogleSignIn" -framework "GoogleToolboxForMac" -framework "GoogleUtilities" -framework "LocalAuthentication" -framework "MobileCoreServices" -framework "ProtoRPC" -framework "Protobuf" -framework "RxLibrary" -framework "SafariServices" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "cloud_firestore" -framework "firebase_auth" -framework "firebase_core" -framework "google_sign_in" -framework "grpc" -framework "grpcpp" -framework "leveldb" -framework "nanopb" -framework "openssl"
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/Users/evelina/.nvm/versions/node/v10.1.0/bin:/Users/evelina/bin/flutter/bin:/usr/local/opt/python/libexec/bin:/usr/local/bin:/usr/local/sbin:/Users/evelina/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/evelina/Library/Android/sdk:/Users/evelina/Library/Android/sdk/emulator:/Users/evelina/Library/Android/sdk/build-tools:/Users/evelina/Library/Android/sdk/tools:/Users/evelina/Library/Android/sdk/platform-tools
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/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
PLATFORM_DISPLAY_NAME = iOS
PLATFORM_NAME = iphoneos
PLATFORM_PREFERRED_ARCH = arm64
PLATFORM_PRODUCT_BUILD_VERSION = 16A366
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PODS_BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios
PODS_CONFIGURATION_BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos
PODS_PODFILE_DIR_PATH = /Users/evelina/Workspace/Kara/kara_app/ios/.
PODS_ROOT = /Users/evelina/Workspace/Kara/kara_app/ios/Pods
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = koach.kara
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = /Users/evelina/Workspace/Kara/kara_app/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/DerivedSources
PROJECT_DIR = /Users/evelina/Workspace/Kara/kara_app/ios
PROJECT_FILE_PATH = /Users/evelina/Workspace/Kara/kara_app/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build
PROJECT_TEMP_ROOT = /Users/evelina/Workspace/Kara/kara_app/build/ios
PROVISIONING_PROFILE_REQUIRED = YES
PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
REMOVE_CVS_FROM_RESOURCES = YES
REMOVE_GIT_FROM_RESOURCES = YES
REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
REMOVE_HG_FROM_RESOURCES = YES
REMOVE_SVN_FROM_RESOURCES = YES
RESOURCE_RULES_REQUIRED = YES
REZ_COLLECTOR_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
SDK_DIR_iphoneos12_0 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
SDK_NAME = iphoneos12.0
SDK_NAMES = iphoneos12.0
SDK_PRODUCT_BUILD_VERSION = 16A366
SDK_VERSION = 12.0
SDK_VERSION_ACTUAL = 120000
SDK_VERSION_MAJOR = 120000
SDK_VERSION_MINOR = 000
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/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/SharedPrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/evelina/Workspace/Kara/kara_app/ios
SRCROOT = /Users/evelina/Workspace/Kara/kara_app/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = YES
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphonesimulator iphoneos
SUPPORTS_TEXT_BASED_API = NO
SWIFT_COMPILATION_MODE = wholemodule
SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h
SWIFT_OPTIMIZATION_LEVEL = -O
SWIFT_PLATFORM_TARGET_PREFIX = ios
SWIFT_SWIFT3_OBJC_INFERENCE = On
SWIFT_VERSION = 4.0
SYMROOT = /Users/evelina/Workspace/Kara/kara_app/build/ios
SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
SYSTEM_APPS_DIR = /Applications
SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
SYSTEM_DEMOS_DIR = /Applications/Extras
SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities
SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
SYSTEM_LIBRARY_DIR = /System/Library
TAPI_VERIFY_MODE = ErrorsOnly
TARGETED_DEVICE_FAMILY = 1,2
TARGETNAME = Runner
TARGET_BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILES_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILE_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_ROOT = /Users/evelina/Workspace/Kara/kara_app/build/ios
TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
UID = 501
UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
UNSTRIPPED_PRODUCT = NO
USER = evelina
USER_APPS_DIR = /Users/evelina/Applications
USER_LIBRARY_DIR = /Users/evelina/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
VALIDATE_PRODUCT = YES
VALID_ARCHS = arm64 armv7 armv7s
VERBOSE_PBXCP = NO
VERSIONING_SYSTEM = apple-generic
VERSIONPLIST_PATH = Runner.app/version.plist
VERSION_INFO_BUILDER = evelina
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 = 10A254a
XCODE_VERSION_ACTUAL = 1000
XCODE_VERSION_MAJOR = 1000
XCODE_VERSION_MINOR = 1000
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = arm64
variant = normal
[ +10 ms] executing: pod --version
[+1255 ms] 1.6.0.beta.1
[ +3 ms] Running pod install...
[+12086 ms] Running pod install... (completed)
[ ] CocoaPods' output:
↳
[ ] Preparing
Analyzing dependencies
Inspecting targets to integrate
Using `ARCHS` setting to build architectures of target `Pods-Runner`: (``)
Finding Podfile changes
- Flutter
- cloud_firestore
- firebase_auth
- firebase_core
- google_sign_in
Fetching external sources
-> Fetching podspec for `Flutter` from `.symlinks/flutter/ios`
-> Fetching podspec for `cloud_firestore` from `.symlinks/plugins/cloud_firestore/ios`
-> Fetching podspec for `firebase_auth` from `.symlinks/plugins/firebase_auth/ios`
-> Fetching podspec for `firebase_core` from `.symlinks/plugins/firebase_core/ios`
-> Fetching podspec for `google_sign_in` from `.symlinks/plugins/google_sign_in/ios`
Resolving dependencies of `Podfile`
Comparing resolved specification to the sandbox manifest
- BoringSSL
- Firebase
- FirebaseAnalytics
- FirebaseAuth
- FirebaseAuthInterop
- FirebaseCore
- FirebaseDatabase
- FirebaseFirestore
- FirebaseInstanceID
- Flutter
- GTMOAuth2
- GTMSessionFetcher
- GoogleAppMeasurement
- GoogleSignIn
- GoogleToolboxForMac
- GoogleUtilities
- Protobuf
- cloud_firestore
- firebase_auth
- firebase_core
- gRPC
- gRPC-C++
- gRPC-Core
- gRPC-ProtoRPC
- gRPC-RxLibrary
- google_sign_in
- leveldb-library
- nanopb
Downloading dependencies
-> Using BoringSSL (10.0.6)
-> Using Firebase (5.8.0)
-> Using FirebaseAnalytics (5.1.2)
-> Using FirebaseAuth (5.0.4)
-> Using FirebaseAuthInterop (1.0.0)
-> Using FirebaseCore (5.1.3)
-> Using FirebaseDatabase (5.0.3)
-> Using FirebaseFirestore (0.13.3)
-> Using FirebaseInstanceID (3.2.1)
-> Using Flutter (1.0.0)
-> Using GTMOAuth2 (1.1.6)
-> Using GTMSessionFetcher (1.2.0)
-> Using GoogleAppMeasurement (5.1.2)
-> Using GoogleSignIn (4.2.0)
-> Using GoogleToolboxForMac (2.1.4)
-> Using GoogleUtilities (5.2.3)
-> Using Protobuf (3.6.1)
-> Using cloud_firestore (0.0.1)
-> Using firebase_auth (0.0.1)
-> Using firebase_core (0.0.1)
-> Using gRPC (1.14.0)
-> Using gRPC-C++ (0.0.3)
-> Using gRPC-Core (1.14.0)
-> Using gRPC-ProtoRPC (1.14.0)
-> Using gRPC-RxLibrary (1.14.0)
-> Using google_sign_in (0.0.1)
-> Using leveldb-library (1.20)
-> Using nanopb (0.3.8)
- Running pre install hooks
Generating Pods project
- Creating Pods project
- Adding source files to Pods project
- Adding frameworks to Pods project
- Adding libraries to Pods project
- Adding resources to Pods project
- Adding development pod helper files to Pods project
- Linking headers
- Installing targets
- Installing target `BoringSSL` iOS 8.0
- Copying module map file to `Pods/Target Support Files/BoringSSL/BoringSSL.modulemap`
- Generating Info.plist file at `Pods/Target Support Files/BoringSSL/BoringSSL-Info.plist`
- Generating dummy source at `Pods/Target Support Files/BoringSSL/BoringSSL-dummy.m`
- Installing target `Firebase` iOS 8.0
- Installing target `FirebaseAnalytics` iOS 8.0
- Installing target `FirebaseAuth` iOS 8.0
- Generating module map file at `Pods/Target Support Files/FirebaseAuth/FirebaseAuth.modulemap`
- Generating umbrella header at `Pods/Target Support Files/FirebaseAuth/FirebaseAuth-umbrella.h`
- Generating dummy source at `Pods/Target Support Files/FirebaseAuth/FirebaseAuth-dummy.m`
- Installing target `FirebaseAuthInterop` iOS 8.0
- Installing target `FirebaseCore` iOS 8.0
- Generating module map file at `Pods/Target Support Files/FirebaseCore/FirebaseCore.modulemap`
- Generating umbrella header at `Pods/Target Support Files/FirebaseCore/FirebaseCore-umbrella.h`
- Generating dummy source at `Pods/Target Support Files/FirebaseCore/FirebaseCore-dummy.m`
- Installing target `FirebaseDatabase` iOS 8.0
- Generating module map file at `Pods/Target Support Files/FirebaseDatabase/FirebaseDatabase.modulemap`
- Generating umbrella header at `Pods/Target Support Files/FirebaseDatabase/FirebaseDatabase-umbrella.h`
- Generating dummy source at `Pods/Target Support Files/FirebaseDatabase/FirebaseDatabase-dummy.m`
- Installing target `FirebaseFirestore` iOS 8.0
- Generating module map file at `Pods/Target Support Files/FirebaseFirestore/FirebaseFirestore.modulemap`
- Generating umbrella header at `Pods/Target Support Files/FirebaseFirestore/FirebaseFirestore-umbrella.h`
- Generating dummy source at `Pods/Target Support Files/FirebaseFirestore/FirebaseFirestore-dummy.m`
- Installing target `FirebaseInstanceID` iOS 8.0
- Installing target `Flutter` iOS 8.0
- Installing target `GTMOAuth2` iOS 8.0
- Generating module map file at `Pods/Target Support Files/GTMOAuth2/GTMOAuth2.modulemap`
- Generating umbrella header at `Pods/Target Support Files/GTMOAuth2/GTMOAuth2-umbrella.h`
- Generating Info.plist file at `Pods/Target Support Files/GTMOAuth2/GTMOAuth2-Info.plist`
- Generating dummy source at `Pods/Target Support Files/GTMOAuth2/GTMOAuth2-dummy.m`
- Installing target `GTMSessionFetcher` iOS 8.0
- Generating module map file at `Pods/Target Support Files/GTMSessionFetcher/GTMSessionFetcher.modulemap`
- Generating umbrella header at `Pods/Target Support Files/GTMSessionFetcher/GTMSessionFetcher-umbrella.h`
- Generating Info.plist file at `Pods/Target Support Files/GTMSessionFetcher/GTMSessionFetcher-Info.plist`
- Generating dummy source at `Pods/Target Support Files/GTMSessionFetcher/GTMSessionFetcher-dummy.m`
- Installing target `GoogleAppMeasurement` iOS 8.0
- Installing target `GoogleSignIn` iOS 8.0
- Installing target `GoogleToolboxForMac` iOS 8.0
- Generating module map file at `Pods/Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap`
- Generating umbrella header at `Pods/Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-umbrella.h`
- Generating Info.plist file at `Pods/Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-Info.plist`
- Generating dummy source at `Pods/Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-dummy.m`
- Installing target `GoogleUtilities` iOS 8.0
- Generating module map file at `Pods/Target Support Files/GoogleUtilities/GoogleUtilities.modulemap`
- Generating umbrella header at `Pods/Target Support Files/GoogleUtilities/GoogleUtilities-umbrella.h`
- Generating Info.plist file at `Pods/Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist`
- Generating dummy source at `Pods/Target Support Files/GoogleUtilities/GoogleUtilities-dummy.m`
- Installing target `Protobuf` iOS 8.0
- Generating module map file at `Pods/Target Support Files/Protobuf/Protobuf.modulemap`
- Generating umbrella header at `Pods/Target Support Files/Protobuf/Protobuf-umbrella.h`
- Generating Info.plist file at `Pods/Target Support Files/Protobuf/Protobuf-Info.plist`
- Generating dummy source at `Pods/Target Support Files/Protobuf/Protobuf-dummy.m`
- Installing target `cloud_firestore` iOS 8.0
- Generating module map file at `Pods/Target Support Files/cloud_firestore/cloud_firestore.modulemap`
- Generating umbrella header at `Pods/Target Support Files/cloud_firestore/cloud_firestore-umbrella.h`
- Generating dummy source at `Pods/Target Support Files/cloud_firestore/cloud_firestore-dummy.m`
- Installing target `firebase_auth` iOS 8.0
- Generating module map file at `Pods/Target Support Files/firebase_auth/firebase_auth.modulemap`
- Generating umbrella header at `Pods/Target Support Files/firebase_auth/firebase_auth-umbrella.h`
- Generating dummy source at `Pods/Target Support Files/firebase_auth/firebase_auth-dummy.m`
- Installing target `firebase_core` iOS 8.0
- Generating module map file at `Pods/Target Support Files/firebase_core/firebase_core.modulemap`
- Generating umbrella header at `Pods/Target Support Files/firebase_core/firebase_core-umbrella.h`
- Generating dummy source at `Pods/Target Support Files/firebase_core/firebase_core-dummy.m`
- Installing target `gRPC` iOS 8.0
- Generating Info.plist file at `Pods/Target Support Files/gRPC/ResourceBundle-gRPCCertificates-gRPC-Info.plist`
- Generating module map file at `Pods/Target Support Files/gRPC/gRPC.modulemap`
- Generating umbrella header at `Pods/Target Support Files/gRPC/gRPC-umbrella.h`
- Generating Info.plist file at `Pods/Target Support Files/gRPC/gRPC-Info.plist`
- Generating dummy source at `Pods/Target Support Files/gRPC/gRPC-dummy.m`
- Installing target `gRPC-C++` iOS 8.0
- Generating module map file at `Pods/Target Support Files/gRPC-C++/gRPC-C++.modulemap`
- Generating umbrella header at `Pods/Target Support Files/gRPC-C++/gRPC-C++-umbrella.h`
- Generating Info.plist file at `Pods/Target Support Files/gRPC-C++/gRPC-C++-Info.plist`
- Generating dummy source at `Pods/Target Support Files/gRPC-C++/gRPC-C++-dummy.m`
- Installing target `gRPC-Core` iOS 8.0
- Copying module map file to `Pods/Target Support Files/gRPC-Core/gRPC-Core.modulemap`
- Generating Info.plist file at `Pods/Target Support Files/gRPC-Core/gRPC-Core-Info.plist`
- Generating dummy source at `Pods/Target Support Files/gRPC-Core/gRPC-Core-dummy.m`
- Installing target `gRPC-ProtoRPC` iOS 8.0
- Generating module map file at `Pods/Target Support Files/gRPC-ProtoRPC/gRPC-ProtoRPC.modulemap`
- Generating umbrella header at `Pods/Target Support Files/gRPC-ProtoRPC/gRPC-ProtoRPC-umbrella.h`
- Generating Info.plist file at `Pods/Target Support Files/gRPC-ProtoRPC/gRPC-ProtoRPC-Info.plist`
- Generating dummy source at `Pods/Target Support Files/gRPC-ProtoRPC/gRPC-ProtoRPC-dummy.m`
- Installing target `gRPC-RxLibrary` iOS 8.0
- Generating module map file at `Pods/Target Support Files/gRPC-RxLibrary/gRPC-RxLibrary.modulemap`
- Generating umbrella header at `Pods/Target Support Files/gRPC-RxLibrary/gRPC-RxLibrary-umbrella.h`
- Generating Info.plist file at `Pods/Target Support Files/gRPC-RxLibrary/gRPC-RxLibrary-Info.plist`
- Generating dummy source at `Pods/Target Support Files/gRPC-RxLibrary/gRPC-RxLibrary-dummy.m`
- Installing target `google_sign_in` iOS 8.0
- Generating module map file at `Pods/Target Support Files/google_sign_in/google_sign_in.modulemap`
- Generating umbrella header at `Pods/Target Support Files/google_sign_in/google_sign_in-umbrella.h`
- Generating dummy source at `Pods/Target Support Files/google_sign_in/google_sign_in-dummy.m`
- Installing target `leveldb-library` iOS 8.0
- Generating module map file at `Pods/Target Support Files/leveldb-library/leveldb-library.modulemap`
- Generating umbrella header at `Pods/Target Support Files/leveldb-library/leveldb-library-umbrella.h`
- Generating Info.plist file at `Pods/Target Support Files/leveldb-library/leveldb-library-Info.plist`
- Generating dummy source at `Pods/Target Support Files/leveldb-library/leveldb-library-dummy.m`
- Installing target `nanopb` iOS 8.0
- Generating module map file at `Pods/Target Support Files/nanopb/nanopb.modulemap`
- Generating umbrella header at `Pods/Target Support Files/nanopb/nanopb-umbrella.h`
- Generating Info.plist file at `Pods/Target Support Files/nanopb/nanopb-Info.plist`
- Generating dummy source at `Pods/Target Support Files/nanopb/nanopb-dummy.m`
- Installing target `Pods-Runner` iOS 8.0
- Generating Info.plist file at `Pods/Target Support Files/Pods-Runner/Pods-Runner-Info.plist`
- Generating module map file at `Pods/Target Support Files/Pods-Runner/Pods-Runner.modulemap`
- Generating umbrella header at `Pods/Target Support Files/Pods-Runner/Pods-Runner-umbrella.h`
- Generating dummy source at `Pods/Target Support Files/Pods-Runner/Pods-Runner-dummy.m`
- Running post install hooks
- Podfile
- Writing Xcode project file to `Pods/Pods.xcodeproj`
- Generating deterministic UUIDs
- Writing Lockfile in `Podfile.lock`
- Writing Manifest in `Pods/Manifest.lock`
Integrating client project
Integrating target `Pods-Runner` (`Runner.xcodeproj` project)
- Running post install hooks
- cocoapods-stats from `/Library/Ruby/Gems/2.3.0/gems/cocoapods-stats-1.0.0/lib/cocoapods_plugin.rb`
-> Pod installation complete! There are 5 dependencies from the Podfile and 28 total pods installed.
[ +1 ms] Error output from CocoaPods:
↳
[ ]
[!] Automatically assigning platform `ios` with version `8.0` on target `Runner` because no platform was specified. Please specify a platform for this target in your Podfile. See `https://guides.cocoapods.org/syntax/podfile.html#platform`.
[ +21 ms] executing: mkfifo /var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/T/flutter_build_log_pipe.8b6480/pipe_to_stdout
[ +7 ms] Exit code 0 from: mkfifo /var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/T/flutter_build_log_pipe.8b6480/pipe_to_stdout
[ +2 ms] Starting Xcode build...
[ ] executing: [/Users/evelina/Workspace/Kara/kara_app/ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/evelina/Workspace/Kara/kara_app/build/ios -sdk iphoneos SCRIPT_OUTPUT_STREAM_FILE=/var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/T/flutter_build_log_pipe.8b6480/pipe_to_stdout
[+6140 ms] Build settings from command line:
BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/T/flutter_build_log_pipe.8b6480/pipe_to_stdout
SDKROOT = iphoneos12.0
VERBOSE_SCRIPT_LOGGING = YES
note: Using new build system
note: Planning build
note: Constructing build description
Build system information
error: Multiple commands produce '/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework':
1) Target 'Runner' has copy command from '/Users/evelina/Workspace/Kara/kara_app/ios/Flutter/Flutter.framework' to '/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework'
2) That command depends on command in Target 'Runner': script phase “[CP] Embed Pods Frameworks”
Build system information
warning: The use of Swift 3 @objc inference in Swift 4 mode is deprecated. Please address deprecated @objc inference warnings, test your code with “Use of deprecated Swift 3 @objc inference” logging enabled, and then disable inference by changing the "Swift 3 @objc Inference" build setting to "Default" for the "Runner" target. (in target 'Runner')
Build system information
warning: The use of Swift 3 @objc inference in Swift 4 mode is deprecated. Please address deprecated @objc inference warnings, test your code with “Use of deprecated Swift 3 @objc inference” logging enabled, and then disable inference by changing the "Swift 3 @objc Inference" build setting to "Default" for the "Runner" target. (in target 'Runner')
Build system information
warning: ignoring duplicated output file: '/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework' (in target 'Runner')
2018-09-14 11:07:18.963 xcodebuild[22448:108490] DTDeviceKit: deviceType from d3cb15d54e8f368847a8923f7c6e8846531bdf97 was NULL
2018-09-14 11:07:18.963 xcodebuild[22448:108490] DTDeviceKit: deviceType from d3cb15d54e8f368847a8923f7c6e8846531bdf97 was NULL
2018-09-14 11:07:18.963 xcodebuild[22448:108490] iPhoneSupport: 📱<DVTiOSDevice (0x7fa6db79e360), Evelina’s iPhone, iPhone, 12.0 (16A366), 502326abfca0b735d166cec0f02048d4f8159946> unable to mount DeveloperDiskImage (Error Domain=com.apple.dtdevicekit Code=601 "Could not find platform" UserInfo={NSLocalizedDescription=Could not find platform})
2018-09-14 11:07:19.066 xcodebuild[22448:108474] [MT] DTDeviceKit: deviceType from d3cb15d54e8f368847a8923f7c6e8846531bdf97 was NULL
2018-09-14 11:07:19.070 xcodebuild[22448:108474] [MT] DTDeviceKit: deviceType from d3cb15d54e8f368847a8923f7c6e8846531bdf97 was NULL
** BUILD FAILED **
[ +1 ms] Starting Xcode build... (completed)
[ +11 ms] Xcode build done.
[ ] executing: [/Users/evelina/Workspace/Kara/kara_app/ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/evelina/Workspace/Kara/kara_app/build/ios -sdk iphoneos SCRIPT_OUTPUT_STREAM_FILE=/var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/T/flutter_build_log_pipe.8b6480/pipe_to_stdout -showBuildSettings
[+1689 ms] Exit code 0 from: /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/evelina/Workspace/Kara/kara_app/build/ios -sdk iphoneos SCRIPT_OUTPUT_STREAM_FILE=/var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/T/flutter_build_log_pipe.8b6480/pipe_to_stdout -showBuildSettings
[ ] Build settings from command line:
BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/T/flutter_build_log_pipe.8b6480/pipe_to_stdout
SDKROOT = iphoneos12.0
VERBOSE_SCRIPT_LOGGING = YES
Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = NO
ALTERNATE_GROUP = staff
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = evelina
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = NO
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
APPLE_INTERNAL_DIR = /AppleInternal
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
APPLICATION_EXTENSION_API_ONLY = NO
APPLY_RULES_IN_COPY_FILES = NO
ARCHS = arm64
ARCHS_STANDARD = armv7 arm64
ARCHS_STANDARD_32_64_BIT = armv7 arm64
ARCHS_STANDARD_32_BIT = armv7
ARCHS_STANDARD_64_BIT = arm64
ARCHS_STANDARD_INCLUDING_64_BIT = armv7 arm64
ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
BITCODE_GENERATION_MODE = marker
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios
BUILD_ROOT = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Products
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos
CACHE_ROOT = /var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/C/com.apple.DeveloperTools/10.0-10A254a/Xcode
CCHROOT = /var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/C/com.apple.DeveloperTools/10.0-10A254a/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/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/Runner.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext
CODE_SIGN_IDENTITY = iPhone Developer
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = NO
COMPILER_INDEX_STORE_ENABLE = Default
COMPOSITE_SDK_DIRS = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Debug
CONFIGURATION_BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos
CONFIGURATION_TEMP_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos
CONTENTS_FOLDER_PATH = Runner.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator
CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator12.0
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = arm64
CURRENT_PROJECT_VERSION = 1
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min=
DEPLOYMENT_TARGET_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_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
DERIVED_FILES_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = English
DEVELOPMENT_TEAM = 6H8KL2FTXB
DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DWARF_DSYM_FILE_NAME = Runner.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH = /Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos
EFFECTIVE_PLATFORM_NAME = -iphoneos
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBEDDED_PROFILE_NAME = embedded.mobileprovision
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = YES
ENTITLEMENTS_ALLOWED = YES
ENTITLEMENTS_DESTINATION = Signature
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/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/evelina/Workspace/Kara/kara_app
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_MODE = debug
FLUTTER_BUILD_NAME = 1.0.0
FLUTTER_BUILD_NUMBER = 1
FLUTTER_FRAMEWORK_DIR = /Users/evelina/bin/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/evelina/bin/flutter
FLUTTER_TARGET = /Users/evelina/Workspace/Kara/kara_app/lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/BoringSSL" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseAuth" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseCore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseDatabase" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseFirestore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GTMOAuth2" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GTMSessionFetcher" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GoogleToolboxForMac" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GoogleUtilities" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/Protobuf" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/cloud_firestore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/firebase_auth" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/firebase_core" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-C++" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-Core" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-ProtoRPC" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-RxLibrary" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/google_sign_in" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/leveldb-library" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/nanopb" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/../.symlinks/flutter/ios" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/FirebaseAnalytics/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/FirebaseInstanceID/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/GoogleAppMeasurement/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/GoogleSignIn/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/BoringSSL" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseAuth" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseCore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseDatabase" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseFirestore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GTMOAuth2" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GTMSessionFetcher" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GoogleToolboxForMac" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GoogleUtilities" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/Protobuf" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/cloud_firestore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/firebase_auth" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/firebase_core" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-C++" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-Core" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-ProtoRPC" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-RxLibrary" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/google_sign_in" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/leveldb-library" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/nanopb" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/../.symlinks/flutter/ios" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/FirebaseAnalytics/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/FirebaseInstanceID/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/GoogleAppMeasurement/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/GoogleSignIn/Frameworks" /Users/evelina/Workspace/Kara/kara_app/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_OPTIMIZATION_LEVEL = 0
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1 COCOAPODS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 COCOAPODS=1 DEBUG=1 COCOAPODS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 DEBUG=1 COCOAPODS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 DEBUG=1 COCOAPODS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1
GCC_SYMBOLS_PRIVATE_EXTERN = NO
GCC_THUMB_SUPPORT = YES
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 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
HEADER_SEARCH_PATHS = "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" /Users/evelina/Workspace/Kara/kara_app/ios/Pods/Firebase/CoreOnly/Sources "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" /Users/evelina/Workspace/Kara/kara_app/ios/Pods/Firebase/CoreOnly/Sources /Users/evelina/Workspace/Kara/kara_app/ios/Pods/Firebase/CoreOnly/Sources
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/evelina
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 = evelina
INSTALL_PATH = /Applications
INSTALL_ROOT = /tmp/Runner.dst
IPHONEOS_DEPLOYMENT_TARGET = 8.0
JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
JAVA_ARCHIVE_CLASSES = YES
JAVA_ARCHIVE_TYPE = JAR
JAVA_COMPILER = /usr/bin/javac
JAVA_FOLDER_PATH = Runner.app/Java
JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
JAVA_JAR_FLAGS = cv
JAVA_SOURCE_SUBDIR = .
JAVA_USE_DEPENDENCIES = YES
JAVA_ZIP_FLAGS = -urg
JIKES_DEFAULT_FLAGS = +E +OLDCSO
KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = /Users/evelina/Workspace/Kara/kara_app/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_arm64 =
LINK_WITH_STANDARD_LIBRARIES = YES
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj
LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 17G65
MAC_OS_X_VERSION_ACTUAL = 101306
MAC_OS_X_VERSION_MAJOR = 101300
MAC_OS_X_VERSION_MINOR = 1306
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/Runner.app
MODULE_CACHE_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
MTL_ENABLE_DEBUG_INFO = YES
NATIVE_ARCH = armv7
NATIVE_ARCH_32_BIT = i386
NATIVE_ARCH_64_BIT = x86_64
NATIVE_ARCH_ACTUAL = x86_64
NO_COMMON = YES
OBJECT_FILE_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal
OBJROOT = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex
ONLY_ACTIVE_ARCH = YES
OS = MACOS
OSAC = /usr/bin/osacompile
OTHER_CFLAGS = -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/BoringSSL/openssl.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseCore/FirebaseCore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseFirestore/FirebaseFirestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GTMOAuth2/GTMOAuth2.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GoogleToolboxForMac/GoogleToolboxForMac.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/Protobuf/Protobuf.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/cloud_firestore/cloud_firestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/firebase_auth/firebase_auth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/firebase_core/firebase_core.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-C++/grpcpp.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-Core/grpc.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-ProtoRPC/ProtoRPC.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-RxLibrary/RxLibrary.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC/GRPCClient.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/google_sign_in/google_sign_in.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/leveldb-library/leveldb.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/nanopb/nanopb.framework/Headers" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/BoringSSL/openssl.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseCore/FirebaseCore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseFirestore/FirebaseFirestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GTMOAuth2/GTMOAuth2.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GoogleToolboxForMac/GoogleToolboxForMac.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/Protobuf/Protobuf.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/cloud_firestore/cloud_firestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/firebase_auth/firebase_auth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/firebase_core/firebase_core.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-C++/grpcpp.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-Core/grpc.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-ProtoRPC/ProtoRPC.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-RxLibrary/RxLibrary.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC/GRPCClient.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/google_sign_in/google_sign_in.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/leveldb-library/leveldb.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/nanopb/nanopb.framework/Headers"
OTHER_CPLUSPLUSFLAGS = -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/BoringSSL/openssl.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseCore/FirebaseCore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseFirestore/FirebaseFirestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GTMOAuth2/GTMOAuth2.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GoogleToolboxForMac/GoogleToolboxForMac.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/Protobuf/Protobuf.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/cloud_firestore/cloud_firestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/firebase_auth/firebase_auth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/firebase_core/firebase_core.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-C++/grpcpp.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-Core/grpc.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-ProtoRPC/ProtoRPC.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-RxLibrary/RxLibrary.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC/GRPCClient.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/google_sign_in/google_sign_in.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/leveldb-library/leveldb.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/nanopb/nanopb.framework/Headers" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/BoringSSL/openssl.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseCore/FirebaseCore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseFirestore/FirebaseFirestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GTMOAuth2/GTMOAuth2.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GoogleToolboxForMac/GoogleToolboxForMac.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/Protobuf/Protobuf.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/cloud_firestore/cloud_firestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/firebase_auth/firebase_auth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/firebase_core/firebase_core.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-C++/grpcpp.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-Core/grpc.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-ProtoRPC/ProtoRPC.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-RxLibrary/RxLibrary.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC/GRPCClient.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/google_sign_in/google_sign_in.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/leveldb-library/leveldb.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/nanopb/nanopb.framework/Headers"
OTHER_LDFLAGS = -ObjC -l"c++" -l"icucore" -l"sqlite3" -l"z" -framework "CFNetwork" -framework "CoreText" -framework "FirebaseAnalytics" -framework "FirebaseAuth" -framework "FirebaseCore" -framework "FirebaseCoreDiagnostics" -framework "FirebaseDatabase" -framework "FirebaseFirestore" -framework "FirebaseInstanceID" -framework "Flutter" -framework "Foundation" -framework "GRPCClient" -framework "GTMOAuth2" -framework "GTMSessionFetcher" -framework "GoogleAppMeasurement" -framework "GoogleSignIn" -framework "GoogleToolboxForMac" -framework "GoogleUtilities" -framework "LocalAuthentication" -framework "MobileCoreServices" -framework "ProtoRPC" -framework "Protobuf" -framework "RxLibrary" -framework "SafariServices" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "cloud_firestore" -framework "firebase_auth" -framework "firebase_core" -framework "google_sign_in" -framework "grpc" -framework "grpcpp" -framework "leveldb" -framework "nanopb" -framework "openssl" -ObjC -l"c++" -l"icucore" -l"sqlite3" -l"z" -framework "CFNetwork" -framework "CoreText" -framework "FirebaseAnalytics" -framework "FirebaseAuth" -framework "FirebaseCore" -framework "FirebaseCoreDiagnostics" -framework "FirebaseDatabase" -framework "FirebaseFirestore" -framework "FirebaseInstanceID" -framework "Flutter" -framework "Foundation" -framework "GRPCClient" -framework "GTMOAuth2" -framework "GTMSessionFetcher" -framework "GoogleAppMeasurement" -framework "GoogleSignIn" -framework "GoogleToolboxForMac" -framework "GoogleUtilities" -framework "LocalAuthentication" -framework "MobileCoreServices" -framework "ProtoRPC" -framework "Protobuf" -framework "RxLibrary" -framework "SafariServices" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "cloud_firestore" -framework "firebase_auth" -framework "firebase_core" -framework "google_sign_in" -framework "grpc" -framework "grpcpp" -framework "leveldb" -framework "nanopb" -framework "openssl"
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/Users/evelina/.nvm/versions/node/v10.1.0/bin:/Users/evelina/bin/flutter/bin:/usr/local/opt/python/libexec/bin:/usr/local/bin:/usr/local/sbin:/Users/evelina/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/evelina/Library/Android/sdk:/Users/evelina/Library/Android/sdk/emulator:/Users/evelina/Library/Android/sdk/build-tools:/Users/evelina/Library/Android/sdk/tools:/Users/evelina/Library/Android/sdk/platform-tools
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/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
PLATFORM_DISPLAY_NAME = iOS
PLATFORM_NAME = iphoneos
PLATFORM_PREFERRED_ARCH = arm64
PLATFORM_PRODUCT_BUILD_VERSION = 16A366
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PODS_BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios
PODS_CONFIGURATION_BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos
PODS_PODFILE_DIR_PATH = /Users/evelina/Workspace/Kara/kara_app/ios/.
PODS_ROOT = /Users/evelina/Workspace/Kara/kara_app/ios/Pods
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = koach.kara
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = /Users/evelina/Workspace/Kara/kara_app/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/DerivedSources
PROJECT_DIR = /Users/evelina/Workspace/Kara/kara_app/ios
PROJECT_FILE_PATH = /Users/evelina/Workspace/Kara/kara_app/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build
PROJECT_TEMP_ROOT = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex
PROVISIONING_PROFILE_REQUIRED = YES
PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
REMOVE_CVS_FROM_RESOURCES = YES
REMOVE_GIT_FROM_RESOURCES = YES
REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
REMOVE_HG_FROM_RESOURCES = YES
REMOVE_SVN_FROM_RESOURCES = YES
RESOURCE_RULES_REQUIRED = YES
REZ_COLLECTOR_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/T/flutter_build_log_pipe.8b6480/pipe_to_stdout
SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
SDK_DIR_iphoneos12_0 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
SDK_NAME = iphoneos12.0
SDK_NAMES = iphoneos12.0
SDK_PRODUCT_BUILD_VERSION = 16A366
SDK_VERSION = 12.0
SDK_VERSION_ACTUAL = 120000
SDK_VERSION_MAJOR = 120000
SDK_VERSION_MINOR = 000
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/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/PrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/evelina/Workspace/Kara/kara_app/ios
SRCROOT = /Users/evelina/Workspace/Kara/kara_app/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = YES
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphonesimulator iphoneos
SUPPORTS_TEXT_BASED_API = NO
SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h
SWIFT_OPTIMIZATION_LEVEL = -Onone
SWIFT_PLATFORM_TARGET_PREFIX = ios
SWIFT_SWIFT3_OBJC_INFERENCE = On
SWIFT_VERSION = 4.0
SYMROOT = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Products
SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
SYSTEM_APPS_DIR = /Applications
SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
SYSTEM_DEMOS_DIR = /Applications/Extras
SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities
SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
SYSTEM_LIBRARY_DIR = /System/Library
TAPI_VERIFY_MODE = ErrorsOnly
TARGETED_DEVICE_FAMILY = 1,2
TARGETNAME = Runner
TARGET_BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build
TEMP_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build
TEMP_FILES_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build
TEMP_FILE_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build
TEMP_ROOT = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex
TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
UID = 501
UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
UNSTRIPPED_PRODUCT = NO
USER = evelina
USER_APPS_DIR = /Users/evelina/Applications
USER_LIBRARY_DIR = /Users/evelina/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
VALIDATE_PRODUCT = NO
VALID_ARCHS = arm64 armv7 armv7s
VERBOSE_PBXCP = NO
VERBOSE_SCRIPT_LOGGING = YES
VERSIONING_SYSTEM = apple-generic
VERSIONPLIST_PATH = Runner.app/version.plist
VERSION_INFO_BUILDER = evelina
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 = 10A254a
XCODE_VERSION_ACTUAL = 1000
XCODE_VERSION_MAJOR = 1000
XCODE_VERSION_MINOR = 1000
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = arm64
variant = normal
[ +13 ms] Failed to build iOS app
[ ] Error output from Xcode build:
↳
[ ] 2018-09-14 11:07:18.963 xcodebuild[22448:108490] DTDeviceKit: deviceType from d3cb15d54e8f368847a8923f7c6e8846531bdf97 was NULL
2018-09-14 11:07:18.963 xcodebuild[22448:108490] DTDeviceKit: deviceType from d3cb15d54e8f368847a8923f7c6e8846531bdf97 was NULL
2018-09-14 11:07:18.963 xcodebuild[22448:108490] iPhoneSupport: 📱<DVTiOSDevice (0x7fa6db79e360), Evelina’s iPhone, iPhone, 12.0 (16A366), 502326abfca0b735d166cec0f02048d4f8159946> unable to mount DeveloperDiskImage (Error Domain=com.apple.dtdevicekit Code=601 "Could not find platform" UserInfo={NSLocalizedDescription=Could not find platform})
2018-09-14 11:07:19.066 xcodebuild[22448:108474] [MT] DTDeviceKit: deviceType from d3cb15d54e8f368847a8923f7c6e8846531bdf97 was NULL
2018-09-14 11:07:19.070 xcodebuild[22448:108474] [MT] DTDeviceKit: deviceType from d3cb15d54e8f368847a8923f7c6e8846531bdf97 was NULL
** BUILD FAILED **
[ ] Xcode's output:
↳
[ ] Build settings from command line:
BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/T/flutter_build_log_pipe.8b6480/pipe_to_stdout
SDKROOT = iphoneos12.0
VERBOSE_SCRIPT_LOGGING = YES
note: Using new build system
note: Planning build
note: Constructing build description
Build system information
error: Multiple commands produce '/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework':
1) Target 'Runner' has copy command from '/Users/evelina/Workspace/Kara/kara_app/ios/Flutter/Flutter.framework' to '/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework'
2) That command depends on command in Target 'Runner': script phase “[CP] Embed Pods Frameworks”
Build system information
warning: The use of Swift 3 @objc inference in Swift 4 mode is deprecated. Please address deprecated @objc inference warnings, test your code with “Use of deprecated Swift 3 @objc inference” logging enabled, and then disable inference by changing the "Swift 3 @objc Inference" build setting to "Default" for the "Runner" target. (in target 'Runner')
Build system information
warning: The use of Swift 3 @objc inference in Swift 4 mode is deprecated. Please address deprecated @objc inference warnings, test your code with “Use of deprecated Swift 3 @objc inference” logging enabled, and then disable inference by changing the "Swift 3 @objc Inference" build setting to "Default" for the "Runner" target. (in target 'Runner')
Build system information
warning: ignoring duplicated output file: '/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework' (in target 'Runner')
[ +1 ms] Could not build the precompiled application for the device.
[ +2 ms] Error launching application on Evelina’s iPhone.
[ +5 ms] "flutter run" took 27,598ms.
#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">[ +35 ms] executing: [/Users/evelina/bin/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +37 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/dev
[ ] executing: [/Users/evelina/bin/flutter/] git rev-parse --abbrev-ref HEAD
[ +10 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] dev
[ ] executing: [/Users/evelina/bin/flutter/] git ls-remote --get-url origin
[ +9 ms] Exit code 0 from: git ls-remote --get-url origin
[ +1 ms] https://github.com/flutter/flutter.git
[ +1 ms] executing: [/Users/evelina/bin/flutter/] git log -n 1 --pretty=format:%H
[ +15 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] 5ab9e70727d858def3a586db7fb98ee580352957
[ ] executing: [/Users/evelina/bin/flutter/] git log -n 1 --pretty=format:%ar
[ +11 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 7 days ago
[ +1 ms] executing: [/Users/evelina/bin/flutter/] git describe --match v*.*.* --first-parent --long --tags
[ +30 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.8.2-0-g5ab9e7072
[ +301 ms] executing: /Users/evelina/Library/Android/sdk/platform-tools/adb devices -l
[ +8 ms] Exit code 0 from: /Users/evelina/Library/Android/sdk/platform-tools/adb devices -l
[ ] List of devices attached
[ +5 ms] executing: idevice_id -h
[ +93 ms] executing: which ideviceinstaller
[ +6 ms] Exit code 0 from: which ideviceinstaller
[ ] /usr/local/bin/ideviceinstaller
[ ] executing: which iproxy
[ +5 ms] Exit code 0 from: which iproxy
[ ] /usr/local/bin/iproxy
[ +5 ms] /usr/bin/xcrun simctl list --json devices
[ +313 ms] Found plugin cloud_firestore at /Users/evelina/bin/flutter/.pub-cache/hosted/pub.dartlang.org/cloud_firestore-0.8.0/
[ +13 ms] Found plugin firebase_auth at /Users/evelina/bin/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.5.20/
[ +2 ms] Found plugin firebase_core at /Users/evelina/bin/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_core-0.2.5/
[ +17 ms] Found plugin google_sign_in at /Users/evelina/bin/flutter/.pub-cache/hosted/pub.dartlang.org/google_sign_in-3.0.5/
[ +85 ms] Found plugin cloud_firestore at /Users/evelina/bin/flutter/.pub-cache/hosted/pub.dartlang.org/cloud_firestore-0.8.0/
[ +4 ms] Found plugin firebase_auth at /Users/evelina/bin/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.5.20/
[ ] Found plugin firebase_core at /Users/evelina/bin/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_core-0.2.5/
[ +6 ms] Found plugin google_sign_in at /Users/evelina/bin/flutter/.pub-cache/hosted/pub.dartlang.org/google_sign_in-3.0.5/
[+1073 ms] Launching lib/main.dart on Evelina’s iPhone in debug mode...
[ +12 ms] executing: /usr/bin/defaults read /Users/evelina/Workspace/Kara/kara_app/ios/Runner/Info CFBundleIdentifier
[ +150 ms] Exit code 0 from: /usr/bin/defaults read /Users/evelina/Workspace/Kara/kara_app/ios/Runner/Info CFBundleIdentifier
[ ] $(PRODUCT_BUNDLE_IDENTIFIER)
[ +9 ms] executing: idevicesyslog
[ +3 ms] Building Runner.app for 502326abfca0b735d166cec0f02048d4f8159946
[ +19 ms] executing: [/Users/evelina/Workspace/Kara/kara_app/ios/] /usr/bin/xcodebuild -list
[+1202 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
[ +3 ms] executing: [/Users/evelina/Workspace/Kara/kara_app/ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/evelina/Workspace/Kara/kara_app/ios/Runner.xcodeproj -target Runner -showBuildSettings
[+1588 ms] Exit code 0 from: /usr/bin/xcodebuild -project /Users/evelina/Workspace/Kara/kara_app/ios/Runner.xcodeproj -target Runner -showBuildSettings
[ ] Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = NO
ALTERNATE_GROUP = staff
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = evelina
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 = armv7 arm64
ARCHS_STANDARD = armv7 arm64
ARCHS_STANDARD_32_64_BIT = armv7 arm64
ARCHS_STANDARD_32_BIT = armv7
ARCHS_STANDARD_64_BIT = arm64
ARCHS_STANDARD_INCLUDING_64_BIT = armv7 arm64
ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
BITCODE_GENERATION_MODE = marker
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios
BUILD_ROOT = /Users/evelina/Workspace/Kara/kara_app/build/ios
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos
CACHE_ROOT = /var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/C/com.apple.DeveloperTools/10.0-10A254a/Xcode
CCHROOT = /var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/C/com.apple.DeveloperTools/10.0-10A254a/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/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Runner.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext
CODE_SIGN_IDENTITY = iPhone Developer
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = NO
COMPILER_INDEX_STORE_ENABLE = Default
COMPOSITE_SDK_DIRS = /Users/evelina/Workspace/Kara/kara_app/build/ios/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Release
CONFIGURATION_BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos
CONFIGURATION_TEMP_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos
CONTENTS_FOLDER_PATH = Runner.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator
CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator12.0
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = arm64
CURRENT_PROJECT_VERSION = 1
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf-with-dsym
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min=
DEPLOYMENT_TARGET_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_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
DERIVED_FILES_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = English
DEVELOPMENT_TEAM = 6H8KL2FTXB
DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DWARF_DSYM_FILE_NAME = Runner.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH = /Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos
EFFECTIVE_PLATFORM_NAME = -iphoneos
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBEDDED_PROFILE_NAME = embedded.mobileprovision
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_NS_ASSERTIONS = NO
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = NO
ENTITLEMENTS_ALLOWED = YES
ENTITLEMENTS_DESTINATION = Signature
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/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/evelina/Workspace/Kara/kara_app
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_MODE = debug
FLUTTER_BUILD_NAME = 1.0.0
FLUTTER_BUILD_NUMBER = 1
FLUTTER_FRAMEWORK_DIR = /Users/evelina/bin/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/evelina/bin/flutter
FLUTTER_TARGET = /Users/evelina/Workspace/Kara/kara_app/lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/BoringSSL" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseAuth" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseCore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseDatabase" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseFirestore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMOAuth2" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMSessionFetcher" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleToolboxForMac" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleUtilities" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Protobuf" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/cloud_firestore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_auth" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_core" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-C++" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-Core" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-ProtoRPC" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-RxLibrary" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/google_sign_in" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/leveldb-library" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/nanopb" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/../.symlinks/flutter/ios" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/FirebaseAnalytics/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/FirebaseInstanceID/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/GoogleAppMeasurement/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/GoogleSignIn/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/BoringSSL" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseAuth" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseCore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseDatabase" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseFirestore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMOAuth2" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMSessionFetcher" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleToolboxForMac" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleUtilities" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Protobuf" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/cloud_firestore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_auth" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_core" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-C++" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-Core" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-ProtoRPC" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-RxLibrary" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/google_sign_in" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/leveldb-library" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/nanopb" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/../.symlinks/flutter/ios" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/FirebaseAnalytics/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/FirebaseInstanceID/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/GoogleAppMeasurement/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/GoogleSignIn/Frameworks" /Users/evelina/Workspace/Kara/kara_app/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_PREPROCESSOR_DEFINITIONS = COCOAPODS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 COCOAPODS=1 COCOAPODS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 COCOAPODS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 COCOAPODS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1
GCC_SYMBOLS_PRIVATE_EXTERN = YES
GCC_THUMB_SUPPORT = YES
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 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
HEADER_SEARCH_PATHS = "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" /Users/evelina/Workspace/Kara/kara_app/ios/Pods/Firebase/CoreOnly/Sources "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" /Users/evelina/Workspace/Kara/kara_app/ios/Pods/Firebase/CoreOnly/Sources /Users/evelina/Workspace/Kara/kara_app/ios/Pods/Firebase/CoreOnly/Sources
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/evelina
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 = evelina
INSTALL_PATH = /Applications
INSTALL_ROOT = /tmp/Runner.dst
IPHONEOS_DEPLOYMENT_TARGET = 8.0
JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
JAVA_ARCHIVE_CLASSES = YES
JAVA_ARCHIVE_TYPE = JAR
JAVA_COMPILER = /usr/bin/javac
JAVA_FOLDER_PATH = Runner.app/Java
JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
JAVA_JAR_FLAGS = cv
JAVA_SOURCE_SUBDIR = .
JAVA_USE_DEPENDENCIES = YES
JAVA_ZIP_FLAGS = -urg
JIKES_DEFAULT_FLAGS = +E +OLDCSO
KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = /Users/evelina/Workspace/Kara/kara_app/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_arm64 =
LINK_FILE_LIST_normal_armv7 =
LINK_WITH_STANDARD_LIBRARIES = YES
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj
LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 17G65
MAC_OS_X_VERSION_ACTUAL = 101306
MAC_OS_X_VERSION_MAJOR = 101300
MAC_OS_X_VERSION_MINOR = 1306
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Runner.app
MODULE_CACHE_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
MTL_ENABLE_DEBUG_INFO = NO
NATIVE_ARCH = armv7
NATIVE_ARCH_32_BIT = i386
NATIVE_ARCH_64_BIT = x86_64
NATIVE_ARCH_ACTUAL = x86_64
NO_COMMON = YES
OBJECT_FILE_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal
OBJROOT = /Users/evelina/Workspace/Kara/kara_app/build/ios
ONLY_ACTIVE_ARCH = NO
OS = MACOS
OSAC = /usr/bin/osacompile
OTHER_CFLAGS = -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/BoringSSL/openssl.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseCore/FirebaseCore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseFirestore/FirebaseFirestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMOAuth2/GTMOAuth2.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleToolboxForMac/GoogleToolboxForMac.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Protobuf/Protobuf.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/cloud_firestore/cloud_firestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_auth/firebase_auth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_core/firebase_core.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-C++/grpcpp.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-Core/grpc.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-ProtoRPC/ProtoRPC.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-RxLibrary/RxLibrary.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC/GRPCClient.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/google_sign_in/google_sign_in.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/nanopb/nanopb.framework/Headers" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/BoringSSL/openssl.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseCore/FirebaseCore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseFirestore/FirebaseFirestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMOAuth2/GTMOAuth2.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleToolboxForMac/GoogleToolboxForMac.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Protobuf/Protobuf.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/cloud_firestore/cloud_firestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_auth/firebase_auth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_core/firebase_core.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-C++/grpcpp.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-Core/grpc.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-ProtoRPC/ProtoRPC.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-RxLibrary/RxLibrary.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC/GRPCClient.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/google_sign_in/google_sign_in.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/nanopb/nanopb.framework/Headers"
OTHER_CPLUSPLUSFLAGS = -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/BoringSSL/openssl.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseCore/FirebaseCore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseFirestore/FirebaseFirestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMOAuth2/GTMOAuth2.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleToolboxForMac/GoogleToolboxForMac.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Protobuf/Protobuf.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/cloud_firestore/cloud_firestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_auth/firebase_auth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_core/firebase_core.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-C++/grpcpp.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-Core/grpc.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-ProtoRPC/ProtoRPC.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-RxLibrary/RxLibrary.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC/GRPCClient.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/google_sign_in/google_sign_in.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/nanopb/nanopb.framework/Headers" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/BoringSSL/openssl.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseCore/FirebaseCore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseFirestore/FirebaseFirestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMOAuth2/GTMOAuth2.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleToolboxForMac/GoogleToolboxForMac.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Protobuf/Protobuf.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/cloud_firestore/cloud_firestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_auth/firebase_auth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_core/firebase_core.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-C++/grpcpp.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-Core/grpc.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-ProtoRPC/ProtoRPC.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-RxLibrary/RxLibrary.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC/GRPCClient.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/google_sign_in/google_sign_in.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/nanopb/nanopb.framework/Headers"
OTHER_LDFLAGS = -ObjC -l"c++" -l"icucore" -l"sqlite3" -l"z" -framework "CFNetwork" -framework "CoreText" -framework "FirebaseAnalytics" -framework "FirebaseAuth" -framework "FirebaseCore" -framework "FirebaseCoreDiagnostics" -framework "FirebaseDatabase" -framework "FirebaseFirestore" -framework "FirebaseInstanceID" -framework "Flutter" -framework "Foundation" -framework "GRPCClient" -framework "GTMOAuth2" -framework "GTMSessionFetcher" -framework "GoogleAppMeasurement" -framework "GoogleSignIn" -framework "GoogleToolboxForMac" -framework "GoogleUtilities" -framework "LocalAuthentication" -framework "MobileCoreServices" -framework "ProtoRPC" -framework "Protobuf" -framework "RxLibrary" -framework "SafariServices" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "cloud_firestore" -framework "firebase_auth" -framework "firebase_core" -framework "google_sign_in" -framework "grpc" -framework "grpcpp" -framework "leveldb" -framework "nanopb" -framework "openssl" -ObjC -l"c++" -l"icucore" -l"sqlite3" -l"z" -framework "CFNetwork" -framework "CoreText" -framework "FirebaseAnalytics" -framework "FirebaseAuth" -framework "FirebaseCore" -framework "FirebaseCoreDiagnostics" -framework "FirebaseDatabase" -framework "FirebaseFirestore" -framework "FirebaseInstanceID" -framework "Flutter" -framework "Foundation" -framework "GRPCClient" -framework "GTMOAuth2" -framework "GTMSessionFetcher" -framework "GoogleAppMeasurement" -framework "GoogleSignIn" -framework "GoogleToolboxForMac" -framework "GoogleUtilities" -framework "LocalAuthentication" -framework "MobileCoreServices" -framework "ProtoRPC" -framework "Protobuf" -framework "RxLibrary" -framework "SafariServices" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "cloud_firestore" -framework "firebase_auth" -framework "firebase_core" -framework "google_sign_in" -framework "grpc" -framework "grpcpp" -framework "leveldb" -framework "nanopb" -framework "openssl"
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/Users/evelina/.nvm/versions/node/v10.1.0/bin:/Users/evelina/bin/flutter/bin:/usr/local/opt/python/libexec/bin:/usr/local/bin:/usr/local/sbin:/Users/evelina/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/evelina/Library/Android/sdk:/Users/evelina/Library/Android/sdk/emulator:/Users/evelina/Library/Android/sdk/build-tools:/Users/evelina/Library/Android/sdk/tools:/Users/evelina/Library/Android/sdk/platform-tools
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/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
PLATFORM_DISPLAY_NAME = iOS
PLATFORM_NAME = iphoneos
PLATFORM_PREFERRED_ARCH = arm64
PLATFORM_PRODUCT_BUILD_VERSION = 16A366
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PODS_BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios
PODS_CONFIGURATION_BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos
PODS_PODFILE_DIR_PATH = /Users/evelina/Workspace/Kara/kara_app/ios/.
PODS_ROOT = /Users/evelina/Workspace/Kara/kara_app/ios/Pods
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = koach.kara
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = /Users/evelina/Workspace/Kara/kara_app/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/DerivedSources
PROJECT_DIR = /Users/evelina/Workspace/Kara/kara_app/ios
PROJECT_FILE_PATH = /Users/evelina/Workspace/Kara/kara_app/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build
PROJECT_TEMP_ROOT = /Users/evelina/Workspace/Kara/kara_app/build/ios
PROVISIONING_PROFILE_REQUIRED = YES
PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
REMOVE_CVS_FROM_RESOURCES = YES
REMOVE_GIT_FROM_RESOURCES = YES
REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
REMOVE_HG_FROM_RESOURCES = YES
REMOVE_SVN_FROM_RESOURCES = YES
RESOURCE_RULES_REQUIRED = YES
REZ_COLLECTOR_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
SDK_DIR_iphoneos12_0 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
SDK_NAME = iphoneos12.0
SDK_NAMES = iphoneos12.0
SDK_PRODUCT_BUILD_VERSION = 16A366
SDK_VERSION = 12.0
SDK_VERSION_ACTUAL = 120000
SDK_VERSION_MAJOR = 120000
SDK_VERSION_MINOR = 000
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/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/SharedPrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/evelina/Workspace/Kara/kara_app/ios
SRCROOT = /Users/evelina/Workspace/Kara/kara_app/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = YES
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphonesimulator iphoneos
SUPPORTS_TEXT_BASED_API = NO
SWIFT_COMPILATION_MODE = wholemodule
SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h
SWIFT_OPTIMIZATION_LEVEL = -O
SWIFT_PLATFORM_TARGET_PREFIX = ios
SWIFT_SWIFT3_OBJC_INFERENCE = On
SWIFT_VERSION = 4.0
SYMROOT = /Users/evelina/Workspace/Kara/kara_app/build/ios
SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
SYSTEM_APPS_DIR = /Applications
SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
SYSTEM_DEMOS_DIR = /Applications/Extras
SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities
SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
SYSTEM_LIBRARY_DIR = /System/Library
TAPI_VERIFY_MODE = ErrorsOnly
TARGETED_DEVICE_FAMILY = 1,2
TARGETNAME = Runner
TARGET_BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILES_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILE_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_ROOT = /Users/evelina/Workspace/Kara/kara_app/build/ios
TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
UID = 501
UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
UNSTRIPPED_PRODUCT = NO
USER = evelina
USER_APPS_DIR = /Users/evelina/Applications
USER_LIBRARY_DIR = /Users/evelina/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
VALIDATE_PRODUCT = YES
VALID_ARCHS = arm64 armv7 armv7s
VERBOSE_PBXCP = NO
VERSIONING_SYSTEM = apple-generic
VERSIONPLIST_PATH = Runner.app/version.plist
VERSION_INFO_BUILDER = evelina
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 = 10A254a
XCODE_VERSION_ACTUAL = 1000
XCODE_VERSION_MAJOR = 1000
XCODE_VERSION_MINOR = 1000
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = arm64
variant = normal
[ +7 ms] Automatically signing iOS for device deployment using specified development team in Xcode project: 6H8KL2FTXB
[ +1 ms] Trying to resolve native pub services.
[ +2 ms] Looking for YAML at 'pubspec.yaml'
[ +1 ms] No services specified in the manifest
[ ] Found 0 service definition(s).
[ ] Copying service frameworks to '/Users/evelina/Workspace/Kara/kara_app/ios/Frameworks'.
[ ] Creating service definitions manifest at '/Users/evelina/Workspace/Kara/kara_app/ios/ServiceDefinitions.json'
[ +49 ms] executing: [/Users/evelina/Workspace/Kara/kara_app/ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/evelina/Workspace/Kara/kara_app/ios/Runner.xcodeproj -target Runner -showBuildSettings
[+1401 ms] Exit code 0 from: /usr/bin/xcodebuild -project /Users/evelina/Workspace/Kara/kara_app/ios/Runner.xcodeproj -target Runner -showBuildSettings
[ ] Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = NO
ALTERNATE_GROUP = staff
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = evelina
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 = armv7 arm64
ARCHS_STANDARD = armv7 arm64
ARCHS_STANDARD_32_64_BIT = armv7 arm64
ARCHS_STANDARD_32_BIT = armv7
ARCHS_STANDARD_64_BIT = arm64
ARCHS_STANDARD_INCLUDING_64_BIT = armv7 arm64
ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
BITCODE_GENERATION_MODE = marker
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios
BUILD_ROOT = /Users/evelina/Workspace/Kara/kara_app/build/ios
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos
CACHE_ROOT = /var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/C/com.apple.DeveloperTools/10.0-10A254a/Xcode
CCHROOT = /var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/C/com.apple.DeveloperTools/10.0-10A254a/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/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Runner.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext
CODE_SIGN_IDENTITY = iPhone Developer
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = NO
COMPILER_INDEX_STORE_ENABLE = Default
COMPOSITE_SDK_DIRS = /Users/evelina/Workspace/Kara/kara_app/build/ios/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Release
CONFIGURATION_BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos
CONFIGURATION_TEMP_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos
CONTENTS_FOLDER_PATH = Runner.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator
CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator12.0
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = arm64
CURRENT_PROJECT_VERSION = 1
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf-with-dsym
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min=
DEPLOYMENT_TARGET_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_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
DERIVED_FILES_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = English
DEVELOPMENT_TEAM = 6H8KL2FTXB
DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DWARF_DSYM_FILE_NAME = Runner.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH = /Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos
EFFECTIVE_PLATFORM_NAME = -iphoneos
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBEDDED_PROFILE_NAME = embedded.mobileprovision
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_NS_ASSERTIONS = NO
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = NO
ENTITLEMENTS_ALLOWED = YES
ENTITLEMENTS_DESTINATION = Signature
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/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/evelina/Workspace/Kara/kara_app
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_MODE = debug
FLUTTER_BUILD_NAME = 1.0.0
FLUTTER_BUILD_NUMBER = 1
FLUTTER_FRAMEWORK_DIR = /Users/evelina/bin/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/evelina/bin/flutter
FLUTTER_TARGET = /Users/evelina/Workspace/Kara/kara_app/lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/BoringSSL" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseAuth" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseCore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseDatabase" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseFirestore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMOAuth2" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMSessionFetcher" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleToolboxForMac" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleUtilities" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Protobuf" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/cloud_firestore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_auth" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_core" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-C++" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-Core" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-ProtoRPC" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-RxLibrary" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/google_sign_in" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/leveldb-library" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/nanopb" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/../.symlinks/flutter/ios" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/FirebaseAnalytics/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/FirebaseInstanceID/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/GoogleAppMeasurement/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/GoogleSignIn/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/BoringSSL" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseAuth" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseCore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseDatabase" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseFirestore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMOAuth2" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMSessionFetcher" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleToolboxForMac" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleUtilities" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Protobuf" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/cloud_firestore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_auth" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_core" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-C++" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-Core" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-ProtoRPC" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-RxLibrary" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/google_sign_in" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/leveldb-library" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/nanopb" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/../.symlinks/flutter/ios" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/FirebaseAnalytics/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/FirebaseInstanceID/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/GoogleAppMeasurement/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/GoogleSignIn/Frameworks" /Users/evelina/Workspace/Kara/kara_app/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_PREPROCESSOR_DEFINITIONS = COCOAPODS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 COCOAPODS=1 COCOAPODS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 COCOAPODS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 COCOAPODS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1
GCC_SYMBOLS_PRIVATE_EXTERN = YES
GCC_THUMB_SUPPORT = YES
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 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
HEADER_SEARCH_PATHS = "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" /Users/evelina/Workspace/Kara/kara_app/ios/Pods/Firebase/CoreOnly/Sources "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" /Users/evelina/Workspace/Kara/kara_app/ios/Pods/Firebase/CoreOnly/Sources /Users/evelina/Workspace/Kara/kara_app/ios/Pods/Firebase/CoreOnly/Sources
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/evelina
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 = evelina
INSTALL_PATH = /Applications
INSTALL_ROOT = /tmp/Runner.dst
IPHONEOS_DEPLOYMENT_TARGET = 8.0
JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
JAVA_ARCHIVE_CLASSES = YES
JAVA_ARCHIVE_TYPE = JAR
JAVA_COMPILER = /usr/bin/javac
JAVA_FOLDER_PATH = Runner.app/Java
JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
JAVA_JAR_FLAGS = cv
JAVA_SOURCE_SUBDIR = .
JAVA_USE_DEPENDENCIES = YES
JAVA_ZIP_FLAGS = -urg
JIKES_DEFAULT_FLAGS = +E +OLDCSO
KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = /Users/evelina/Workspace/Kara/kara_app/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_arm64 =
LINK_FILE_LIST_normal_armv7 =
LINK_WITH_STANDARD_LIBRARIES = YES
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj
LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 17G65
MAC_OS_X_VERSION_ACTUAL = 101306
MAC_OS_X_VERSION_MAJOR = 101300
MAC_OS_X_VERSION_MINOR = 1306
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Runner.app
MODULE_CACHE_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
MTL_ENABLE_DEBUG_INFO = NO
NATIVE_ARCH = armv7
NATIVE_ARCH_32_BIT = i386
NATIVE_ARCH_64_BIT = x86_64
NATIVE_ARCH_ACTUAL = x86_64
NO_COMMON = YES
OBJECT_FILE_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal
OBJROOT = /Users/evelina/Workspace/Kara/kara_app/build/ios
ONLY_ACTIVE_ARCH = NO
OS = MACOS
OSAC = /usr/bin/osacompile
OTHER_CFLAGS = -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/BoringSSL/openssl.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseCore/FirebaseCore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseFirestore/FirebaseFirestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMOAuth2/GTMOAuth2.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleToolboxForMac/GoogleToolboxForMac.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Protobuf/Protobuf.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/cloud_firestore/cloud_firestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_auth/firebase_auth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_core/firebase_core.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-C++/grpcpp.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-Core/grpc.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-ProtoRPC/ProtoRPC.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-RxLibrary/RxLibrary.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC/GRPCClient.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/google_sign_in/google_sign_in.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/nanopb/nanopb.framework/Headers" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/BoringSSL/openssl.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseCore/FirebaseCore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseFirestore/FirebaseFirestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMOAuth2/GTMOAuth2.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleToolboxForMac/GoogleToolboxForMac.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Protobuf/Protobuf.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/cloud_firestore/cloud_firestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_auth/firebase_auth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_core/firebase_core.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-C++/grpcpp.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-Core/grpc.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-ProtoRPC/ProtoRPC.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-RxLibrary/RxLibrary.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC/GRPCClient.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/google_sign_in/google_sign_in.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/nanopb/nanopb.framework/Headers"
OTHER_CPLUSPLUSFLAGS = -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/BoringSSL/openssl.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseCore/FirebaseCore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseFirestore/FirebaseFirestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMOAuth2/GTMOAuth2.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleToolboxForMac/GoogleToolboxForMac.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Protobuf/Protobuf.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/cloud_firestore/cloud_firestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_auth/firebase_auth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_core/firebase_core.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-C++/grpcpp.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-Core/grpc.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-ProtoRPC/ProtoRPC.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-RxLibrary/RxLibrary.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC/GRPCClient.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/google_sign_in/google_sign_in.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/nanopb/nanopb.framework/Headers" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/BoringSSL/openssl.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseCore/FirebaseCore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/FirebaseFirestore/FirebaseFirestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMOAuth2/GTMOAuth2.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleToolboxForMac/GoogleToolboxForMac.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/Protobuf/Protobuf.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/cloud_firestore/cloud_firestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_auth/firebase_auth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/firebase_core/firebase_core.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-C++/grpcpp.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-Core/grpc.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-ProtoRPC/ProtoRPC.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC-RxLibrary/RxLibrary.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/gRPC/GRPCClient.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/google_sign_in/google_sign_in.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/leveldb-library/leveldb.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/nanopb/nanopb.framework/Headers"
OTHER_LDFLAGS = -ObjC -l"c++" -l"icucore" -l"sqlite3" -l"z" -framework "CFNetwork" -framework "CoreText" -framework "FirebaseAnalytics" -framework "FirebaseAuth" -framework "FirebaseCore" -framework "FirebaseCoreDiagnostics" -framework "FirebaseDatabase" -framework "FirebaseFirestore" -framework "FirebaseInstanceID" -framework "Flutter" -framework "Foundation" -framework "GRPCClient" -framework "GTMOAuth2" -framework "GTMSessionFetcher" -framework "GoogleAppMeasurement" -framework "GoogleSignIn" -framework "GoogleToolboxForMac" -framework "GoogleUtilities" -framework "LocalAuthentication" -framework "MobileCoreServices" -framework "ProtoRPC" -framework "Protobuf" -framework "RxLibrary" -framework "SafariServices" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "cloud_firestore" -framework "firebase_auth" -framework "firebase_core" -framework "google_sign_in" -framework "grpc" -framework "grpcpp" -framework "leveldb" -framework "nanopb" -framework "openssl" -ObjC -l"c++" -l"icucore" -l"sqlite3" -l"z" -framework "CFNetwork" -framework "CoreText" -framework "FirebaseAnalytics" -framework "FirebaseAuth" -framework "FirebaseCore" -framework "FirebaseCoreDiagnostics" -framework "FirebaseDatabase" -framework "FirebaseFirestore" -framework "FirebaseInstanceID" -framework "Flutter" -framework "Foundation" -framework "GRPCClient" -framework "GTMOAuth2" -framework "GTMSessionFetcher" -framework "GoogleAppMeasurement" -framework "GoogleSignIn" -framework "GoogleToolboxForMac" -framework "GoogleUtilities" -framework "LocalAuthentication" -framework "MobileCoreServices" -framework "ProtoRPC" -framework "Protobuf" -framework "RxLibrary" -framework "SafariServices" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "cloud_firestore" -framework "firebase_auth" -framework "firebase_core" -framework "google_sign_in" -framework "grpc" -framework "grpcpp" -framework "leveldb" -framework "nanopb" -framework "openssl"
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/Users/evelina/.nvm/versions/node/v10.1.0/bin:/Users/evelina/bin/flutter/bin:/usr/local/opt/python/libexec/bin:/usr/local/bin:/usr/local/sbin:/Users/evelina/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/evelina/Library/Android/sdk:/Users/evelina/Library/Android/sdk/emulator:/Users/evelina/Library/Android/sdk/build-tools:/Users/evelina/Library/Android/sdk/tools:/Users/evelina/Library/Android/sdk/platform-tools
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/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
PLATFORM_DISPLAY_NAME = iOS
PLATFORM_NAME = iphoneos
PLATFORM_PREFERRED_ARCH = arm64
PLATFORM_PRODUCT_BUILD_VERSION = 16A366
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PODS_BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios
PODS_CONFIGURATION_BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos
PODS_PODFILE_DIR_PATH = /Users/evelina/Workspace/Kara/kara_app/ios/.
PODS_ROOT = /Users/evelina/Workspace/Kara/kara_app/ios/Pods
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = koach.kara
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = /Users/evelina/Workspace/Kara/kara_app/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/DerivedSources
PROJECT_DIR = /Users/evelina/Workspace/Kara/kara_app/ios
PROJECT_FILE_PATH = /Users/evelina/Workspace/Kara/kara_app/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build
PROJECT_TEMP_ROOT = /Users/evelina/Workspace/Kara/kara_app/build/ios
PROVISIONING_PROFILE_REQUIRED = YES
PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
REMOVE_CVS_FROM_RESOURCES = YES
REMOVE_GIT_FROM_RESOURCES = YES
REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
REMOVE_HG_FROM_RESOURCES = YES
REMOVE_SVN_FROM_RESOURCES = YES
RESOURCE_RULES_REQUIRED = YES
REZ_COLLECTOR_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
SDK_DIR_iphoneos12_0 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
SDK_NAME = iphoneos12.0
SDK_NAMES = iphoneos12.0
SDK_PRODUCT_BUILD_VERSION = 16A366
SDK_VERSION = 12.0
SDK_VERSION_ACTUAL = 120000
SDK_VERSION_MAJOR = 120000
SDK_VERSION_MINOR = 000
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/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/SharedPrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/evelina/Workspace/Kara/kara_app/ios
SRCROOT = /Users/evelina/Workspace/Kara/kara_app/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = YES
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphonesimulator iphoneos
SUPPORTS_TEXT_BASED_API = NO
SWIFT_COMPILATION_MODE = wholemodule
SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h
SWIFT_OPTIMIZATION_LEVEL = -O
SWIFT_PLATFORM_TARGET_PREFIX = ios
SWIFT_SWIFT3_OBJC_INFERENCE = On
SWIFT_VERSION = 4.0
SYMROOT = /Users/evelina/Workspace/Kara/kara_app/build/ios
SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
SYSTEM_APPS_DIR = /Applications
SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
SYSTEM_DEMOS_DIR = /Applications/Extras
SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities
SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
SYSTEM_LIBRARY_DIR = /System/Library
TAPI_VERIFY_MODE = ErrorsOnly
TARGETED_DEVICE_FAMILY = 1,2
TARGETNAME = Runner
TARGET_BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Release-iphoneos
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILES_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILE_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_ROOT = /Users/evelina/Workspace/Kara/kara_app/build/ios
TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
UID = 501
UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
UNSTRIPPED_PRODUCT = NO
USER = evelina
USER_APPS_DIR = /Users/evelina/Applications
USER_LIBRARY_DIR = /Users/evelina/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
VALIDATE_PRODUCT = YES
VALID_ARCHS = arm64 armv7 armv7s
VERBOSE_PBXCP = NO
VERSIONING_SYSTEM = apple-generic
VERSIONPLIST_PATH = Runner.app/version.plist
VERSION_INFO_BUILDER = evelina
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 = 10A254a
XCODE_VERSION_ACTUAL = 1000
XCODE_VERSION_MAJOR = 1000
XCODE_VERSION_MINOR = 1000
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = arm64
variant = normal
[ +10 ms] executing: pod --version
[+1255 ms] 1.6.0.beta.1
[ +3 ms] Running pod install...
[+12086 ms] Running pod install... (completed)
[ ] CocoaPods' output:
↳
[ ] Preparing
Analyzing dependencies
Inspecting targets to integrate
Using `ARCHS` setting to build architectures of target `Pods-Runner`: (``)
Finding Podfile changes
- Flutter
- cloud_firestore
- firebase_auth
- firebase_core
- google_sign_in
Fetching external sources
-> Fetching podspec for `Flutter` from `.symlinks/flutter/ios`
-> Fetching podspec for `cloud_firestore` from `.symlinks/plugins/cloud_firestore/ios`
-> Fetching podspec for `firebase_auth` from `.symlinks/plugins/firebase_auth/ios`
-> Fetching podspec for `firebase_core` from `.symlinks/plugins/firebase_core/ios`
-> Fetching podspec for `google_sign_in` from `.symlinks/plugins/google_sign_in/ios`
Resolving dependencies of `Podfile`
Comparing resolved specification to the sandbox manifest
- BoringSSL
- Firebase
- FirebaseAnalytics
- FirebaseAuth
- FirebaseAuthInterop
- FirebaseCore
- FirebaseDatabase
- FirebaseFirestore
- FirebaseInstanceID
- Flutter
- GTMOAuth2
- GTMSessionFetcher
- GoogleAppMeasurement
- GoogleSignIn
- GoogleToolboxForMac
- GoogleUtilities
- Protobuf
- cloud_firestore
- firebase_auth
- firebase_core
- gRPC
- gRPC-C++
- gRPC-Core
- gRPC-ProtoRPC
- gRPC-RxLibrary
- google_sign_in
- leveldb-library
- nanopb
Downloading dependencies
-> Using BoringSSL (10.0.6)
-> Using Firebase (5.8.0)
-> Using FirebaseAnalytics (5.1.2)
-> Using FirebaseAuth (5.0.4)
-> Using FirebaseAuthInterop (1.0.0)
-> Using FirebaseCore (5.1.3)
-> Using FirebaseDatabase (5.0.3)
-> Using FirebaseFirestore (0.13.3)
-> Using FirebaseInstanceID (3.2.1)
-> Using Flutter (1.0.0)
-> Using GTMOAuth2 (1.1.6)
-> Using GTMSessionFetcher (1.2.0)
-> Using GoogleAppMeasurement (5.1.2)
-> Using GoogleSignIn (4.2.0)
-> Using GoogleToolboxForMac (2.1.4)
-> Using GoogleUtilities (5.2.3)
-> Using Protobuf (3.6.1)
-> Using cloud_firestore (0.0.1)
-> Using firebase_auth (0.0.1)
-> Using firebase_core (0.0.1)
-> Using gRPC (1.14.0)
-> Using gRPC-C++ (0.0.3)
-> Using gRPC-Core (1.14.0)
-> Using gRPC-ProtoRPC (1.14.0)
-> Using gRPC-RxLibrary (1.14.0)
-> Using google_sign_in (0.0.1)
-> Using leveldb-library (1.20)
-> Using nanopb (0.3.8)
- Running pre install hooks
Generating Pods project
- Creating Pods project
- Adding source files to Pods project
- Adding frameworks to Pods project
- Adding libraries to Pods project
- Adding resources to Pods project
- Adding development pod helper files to Pods project
- Linking headers
- Installing targets
- Installing target `BoringSSL` iOS 8.0
- Copying module map file to `Pods/Target Support Files/BoringSSL/BoringSSL.modulemap`
- Generating Info.plist file at `Pods/Target Support Files/BoringSSL/BoringSSL-Info.plist`
- Generating dummy source at `Pods/Target Support Files/BoringSSL/BoringSSL-dummy.m`
- Installing target `Firebase` iOS 8.0
- Installing target `FirebaseAnalytics` iOS 8.0
- Installing target `FirebaseAuth` iOS 8.0
- Generating module map file at `Pods/Target Support Files/FirebaseAuth/FirebaseAuth.modulemap`
- Generating umbrella header at `Pods/Target Support Files/FirebaseAuth/FirebaseAuth-umbrella.h`
- Generating dummy source at `Pods/Target Support Files/FirebaseAuth/FirebaseAuth-dummy.m`
- Installing target `FirebaseAuthInterop` iOS 8.0
- Installing target `FirebaseCore` iOS 8.0
- Generating module map file at `Pods/Target Support Files/FirebaseCore/FirebaseCore.modulemap`
- Generating umbrella header at `Pods/Target Support Files/FirebaseCore/FirebaseCore-umbrella.h`
- Generating dummy source at `Pods/Target Support Files/FirebaseCore/FirebaseCore-dummy.m`
- Installing target `FirebaseDatabase` iOS 8.0
- Generating module map file at `Pods/Target Support Files/FirebaseDatabase/FirebaseDatabase.modulemap`
- Generating umbrella header at `Pods/Target Support Files/FirebaseDatabase/FirebaseDatabase-umbrella.h`
- Generating dummy source at `Pods/Target Support Files/FirebaseDatabase/FirebaseDatabase-dummy.m`
- Installing target `FirebaseFirestore` iOS 8.0
- Generating module map file at `Pods/Target Support Files/FirebaseFirestore/FirebaseFirestore.modulemap`
- Generating umbrella header at `Pods/Target Support Files/FirebaseFirestore/FirebaseFirestore-umbrella.h`
- Generating dummy source at `Pods/Target Support Files/FirebaseFirestore/FirebaseFirestore-dummy.m`
- Installing target `FirebaseInstanceID` iOS 8.0
- Installing target `Flutter` iOS 8.0
- Installing target `GTMOAuth2` iOS 8.0
- Generating module map file at `Pods/Target Support Files/GTMOAuth2/GTMOAuth2.modulemap`
- Generating umbrella header at `Pods/Target Support Files/GTMOAuth2/GTMOAuth2-umbrella.h`
- Generating Info.plist file at `Pods/Target Support Files/GTMOAuth2/GTMOAuth2-Info.plist`
- Generating dummy source at `Pods/Target Support Files/GTMOAuth2/GTMOAuth2-dummy.m`
- Installing target `GTMSessionFetcher` iOS 8.0
- Generating module map file at `Pods/Target Support Files/GTMSessionFetcher/GTMSessionFetcher.modulemap`
- Generating umbrella header at `Pods/Target Support Files/GTMSessionFetcher/GTMSessionFetcher-umbrella.h`
- Generating Info.plist file at `Pods/Target Support Files/GTMSessionFetcher/GTMSessionFetcher-Info.plist`
- Generating dummy source at `Pods/Target Support Files/GTMSessionFetcher/GTMSessionFetcher-dummy.m`
- Installing target `GoogleAppMeasurement` iOS 8.0
- Installing target `GoogleSignIn` iOS 8.0
- Installing target `GoogleToolboxForMac` iOS 8.0
- Generating module map file at `Pods/Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac.modulemap`
- Generating umbrella header at `Pods/Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-umbrella.h`
- Generating Info.plist file at `Pods/Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-Info.plist`
- Generating dummy source at `Pods/Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-dummy.m`
- Installing target `GoogleUtilities` iOS 8.0
- Generating module map file at `Pods/Target Support Files/GoogleUtilities/GoogleUtilities.modulemap`
- Generating umbrella header at `Pods/Target Support Files/GoogleUtilities/GoogleUtilities-umbrella.h`
- Generating Info.plist file at `Pods/Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist`
- Generating dummy source at `Pods/Target Support Files/GoogleUtilities/GoogleUtilities-dummy.m`
- Installing target `Protobuf` iOS 8.0
- Generating module map file at `Pods/Target Support Files/Protobuf/Protobuf.modulemap`
- Generating umbrella header at `Pods/Target Support Files/Protobuf/Protobuf-umbrella.h`
- Generating Info.plist file at `Pods/Target Support Files/Protobuf/Protobuf-Info.plist`
- Generating dummy source at `Pods/Target Support Files/Protobuf/Protobuf-dummy.m`
- Installing target `cloud_firestore` iOS 8.0
- Generating module map file at `Pods/Target Support Files/cloud_firestore/cloud_firestore.modulemap`
- Generating umbrella header at `Pods/Target Support Files/cloud_firestore/cloud_firestore-umbrella.h`
- Generating dummy source at `Pods/Target Support Files/cloud_firestore/cloud_firestore-dummy.m`
- Installing target `firebase_auth` iOS 8.0
- Generating module map file at `Pods/Target Support Files/firebase_auth/firebase_auth.modulemap`
- Generating umbrella header at `Pods/Target Support Files/firebase_auth/firebase_auth-umbrella.h`
- Generating dummy source at `Pods/Target Support Files/firebase_auth/firebase_auth-dummy.m`
- Installing target `firebase_core` iOS 8.0
- Generating module map file at `Pods/Target Support Files/firebase_core/firebase_core.modulemap`
- Generating umbrella header at `Pods/Target Support Files/firebase_core/firebase_core-umbrella.h`
- Generating dummy source at `Pods/Target Support Files/firebase_core/firebase_core-dummy.m`
- Installing target `gRPC` iOS 8.0
- Generating Info.plist file at `Pods/Target Support Files/gRPC/ResourceBundle-gRPCCertificates-gRPC-Info.plist`
- Generating module map file at `Pods/Target Support Files/gRPC/gRPC.modulemap`
- Generating umbrella header at `Pods/Target Support Files/gRPC/gRPC-umbrella.h`
- Generating Info.plist file at `Pods/Target Support Files/gRPC/gRPC-Info.plist`
- Generating dummy source at `Pods/Target Support Files/gRPC/gRPC-dummy.m`
- Installing target `gRPC-C++` iOS 8.0
- Generating module map file at `Pods/Target Support Files/gRPC-C++/gRPC-C++.modulemap`
- Generating umbrella header at `Pods/Target Support Files/gRPC-C++/gRPC-C++-umbrella.h`
- Generating Info.plist file at `Pods/Target Support Files/gRPC-C++/gRPC-C++-Info.plist`
- Generating dummy source at `Pods/Target Support Files/gRPC-C++/gRPC-C++-dummy.m`
- Installing target `gRPC-Core` iOS 8.0
- Copying module map file to `Pods/Target Support Files/gRPC-Core/gRPC-Core.modulemap`
- Generating Info.plist file at `Pods/Target Support Files/gRPC-Core/gRPC-Core-Info.plist`
- Generating dummy source at `Pods/Target Support Files/gRPC-Core/gRPC-Core-dummy.m`
- Installing target `gRPC-ProtoRPC` iOS 8.0
- Generating module map file at `Pods/Target Support Files/gRPC-ProtoRPC/gRPC-ProtoRPC.modulemap`
- Generating umbrella header at `Pods/Target Support Files/gRPC-ProtoRPC/gRPC-ProtoRPC-umbrella.h`
- Generating Info.plist file at `Pods/Target Support Files/gRPC-ProtoRPC/gRPC-ProtoRPC-Info.plist`
- Generating dummy source at `Pods/Target Support Files/gRPC-ProtoRPC/gRPC-ProtoRPC-dummy.m`
- Installing target `gRPC-RxLibrary` iOS 8.0
- Generating module map file at `Pods/Target Support Files/gRPC-RxLibrary/gRPC-RxLibrary.modulemap`
- Generating umbrella header at `Pods/Target Support Files/gRPC-RxLibrary/gRPC-RxLibrary-umbrella.h`
- Generating Info.plist file at `Pods/Target Support Files/gRPC-RxLibrary/gRPC-RxLibrary-Info.plist`
- Generating dummy source at `Pods/Target Support Files/gRPC-RxLibrary/gRPC-RxLibrary-dummy.m`
- Installing target `google_sign_in` iOS 8.0
- Generating module map file at `Pods/Target Support Files/google_sign_in/google_sign_in.modulemap`
- Generating umbrella header at `Pods/Target Support Files/google_sign_in/google_sign_in-umbrella.h`
- Generating dummy source at `Pods/Target Support Files/google_sign_in/google_sign_in-dummy.m`
- Installing target `leveldb-library` iOS 8.0
- Generating module map file at `Pods/Target Support Files/leveldb-library/leveldb-library.modulemap`
- Generating umbrella header at `Pods/Target Support Files/leveldb-library/leveldb-library-umbrella.h`
- Generating Info.plist file at `Pods/Target Support Files/leveldb-library/leveldb-library-Info.plist`
- Generating dummy source at `Pods/Target Support Files/leveldb-library/leveldb-library-dummy.m`
- Installing target `nanopb` iOS 8.0
- Generating module map file at `Pods/Target Support Files/nanopb/nanopb.modulemap`
- Generating umbrella header at `Pods/Target Support Files/nanopb/nanopb-umbrella.h`
- Generating Info.plist file at `Pods/Target Support Files/nanopb/nanopb-Info.plist`
- Generating dummy source at `Pods/Target Support Files/nanopb/nanopb-dummy.m`
- Installing target `Pods-Runner` iOS 8.0
- Generating Info.plist file at `Pods/Target Support Files/Pods-Runner/Pods-Runner-Info.plist`
- Generating module map file at `Pods/Target Support Files/Pods-Runner/Pods-Runner.modulemap`
- Generating umbrella header at `Pods/Target Support Files/Pods-Runner/Pods-Runner-umbrella.h`
- Generating dummy source at `Pods/Target Support Files/Pods-Runner/Pods-Runner-dummy.m`
- Running post install hooks
- Podfile
- Writing Xcode project file to `Pods/Pods.xcodeproj`
- Generating deterministic UUIDs
- Writing Lockfile in `Podfile.lock`
- Writing Manifest in `Pods/Manifest.lock`
Integrating client project
Integrating target `Pods-Runner` (`Runner.xcodeproj` project)
- Running post install hooks
- cocoapods-stats from `/Library/Ruby/Gems/2.3.0/gems/cocoapods-stats-1.0.0/lib/cocoapods_plugin.rb`
-> Pod installation complete! There are 5 dependencies from the Podfile and 28 total pods installed.
[ +1 ms] Error output from CocoaPods:
↳
[ ]
[!] Automatically assigning platform `ios` with version `8.0` on target `Runner` because no platform was specified. Please specify a platform for this target in your Podfile. See `https://guides.cocoapods.org/syntax/podfile.html#platform`.
[ +21 ms] executing: mkfifo /var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/T/flutter_build_log_pipe.8b6480/pipe_to_stdout
[ +7 ms] Exit code 0 from: mkfifo /var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/T/flutter_build_log_pipe.8b6480/pipe_to_stdout
[ +2 ms] Starting Xcode build...
[ ] executing: [/Users/evelina/Workspace/Kara/kara_app/ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/evelina/Workspace/Kara/kara_app/build/ios -sdk iphoneos SCRIPT_OUTPUT_STREAM_FILE=/var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/T/flutter_build_log_pipe.8b6480/pipe_to_stdout
[+6140 ms] Build settings from command line:
BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/T/flutter_build_log_pipe.8b6480/pipe_to_stdout
SDKROOT = iphoneos12.0
VERBOSE_SCRIPT_LOGGING = YES
note: Using new build system
note: Planning build
note: Constructing build description
Build system information
error: Multiple commands produce '/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework':
1) Target 'Runner' has copy command from '/Users/evelina/Workspace/Kara/kara_app/ios/Flutter/Flutter.framework' to '/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework'
2) That command depends on command in Target 'Runner': script phase “[CP] Embed Pods Frameworks”
Build system information
warning: The use of Swift 3 @objc inference in Swift 4 mode is deprecated. Please address deprecated @objc inference warnings, test your code with “Use of deprecated Swift 3 @objc inference” logging enabled, and then disable inference by changing the "Swift 3 @objc Inference" build setting to "Default" for the "Runner" target. (in target 'Runner')
Build system information
warning: The use of Swift 3 @objc inference in Swift 4 mode is deprecated. Please address deprecated @objc inference warnings, test your code with “Use of deprecated Swift 3 @objc inference” logging enabled, and then disable inference by changing the "Swift 3 @objc Inference" build setting to "Default" for the "Runner" target. (in target 'Runner')
Build system information
warning: ignoring duplicated output file: '/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework' (in target 'Runner')
2018-09-14 11:07:18.963 xcodebuild[22448:108490] DTDeviceKit: deviceType from d3cb15d54e8f368847a8923f7c6e8846531bdf97 was NULL
2018-09-14 11:07:18.963 xcodebuild[22448:108490] DTDeviceKit: deviceType from d3cb15d54e8f368847a8923f7c6e8846531bdf97 was NULL
2018-09-14 11:07:18.963 xcodebuild[22448:108490] iPhoneSupport: 📱<DVTiOSDevice (0x7fa6db79e360), Evelina’s iPhone, iPhone, 12.0 (16A366), 502326abfca0b735d166cec0f02048d4f8159946> unable to mount DeveloperDiskImage (Error Domain=com.apple.dtdevicekit Code=601 "Could not find platform" UserInfo={NSLocalizedDescription=Could not find platform})
2018-09-14 11:07:19.066 xcodebuild[22448:108474] [MT] DTDeviceKit: deviceType from d3cb15d54e8f368847a8923f7c6e8846531bdf97 was NULL
2018-09-14 11:07:19.070 xcodebuild[22448:108474] [MT] DTDeviceKit: deviceType from d3cb15d54e8f368847a8923f7c6e8846531bdf97 was NULL
** BUILD FAILED **
[ +1 ms] Starting Xcode build... (completed)
[ +11 ms] Xcode build done.
[ ] executing: [/Users/evelina/Workspace/Kara/kara_app/ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/evelina/Workspace/Kara/kara_app/build/ios -sdk iphoneos SCRIPT_OUTPUT_STREAM_FILE=/var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/T/flutter_build_log_pipe.8b6480/pipe_to_stdout -showBuildSettings
[+1689 ms] Exit code 0 from: /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/evelina/Workspace/Kara/kara_app/build/ios -sdk iphoneos SCRIPT_OUTPUT_STREAM_FILE=/var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/T/flutter_build_log_pipe.8b6480/pipe_to_stdout -showBuildSettings
[ ] Build settings from command line:
BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/T/flutter_build_log_pipe.8b6480/pipe_to_stdout
SDKROOT = iphoneos12.0
VERBOSE_SCRIPT_LOGGING = YES
Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = NO
ALTERNATE_GROUP = staff
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = evelina
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = NO
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
APPLE_INTERNAL_DIR = /AppleInternal
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
APPLICATION_EXTENSION_API_ONLY = NO
APPLY_RULES_IN_COPY_FILES = NO
ARCHS = arm64
ARCHS_STANDARD = armv7 arm64
ARCHS_STANDARD_32_64_BIT = armv7 arm64
ARCHS_STANDARD_32_BIT = armv7
ARCHS_STANDARD_64_BIT = arm64
ARCHS_STANDARD_INCLUDING_64_BIT = armv7 arm64
ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
BITCODE_GENERATION_MODE = marker
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios
BUILD_ROOT = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Products
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos
CACHE_ROOT = /var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/C/com.apple.DeveloperTools/10.0-10A254a/Xcode
CCHROOT = /var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/C/com.apple.DeveloperTools/10.0-10A254a/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/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/Runner.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext
CODE_SIGN_IDENTITY = iPhone Developer
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = NO
COMPILER_INDEX_STORE_ENABLE = Default
COMPOSITE_SDK_DIRS = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Debug
CONFIGURATION_BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos
CONFIGURATION_TEMP_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos
CONTENTS_FOLDER_PATH = Runner.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator
CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator12.0
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = arm64
CURRENT_PROJECT_VERSION = 1
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min=
DEPLOYMENT_TARGET_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_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
DERIVED_FILES_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = English
DEVELOPMENT_TEAM = 6H8KL2FTXB
DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DWARF_DSYM_FILE_NAME = Runner.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH = /Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos
EFFECTIVE_PLATFORM_NAME = -iphoneos
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBEDDED_PROFILE_NAME = embedded.mobileprovision
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = YES
ENTITLEMENTS_ALLOWED = YES
ENTITLEMENTS_DESTINATION = Signature
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/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/evelina/Workspace/Kara/kara_app
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_MODE = debug
FLUTTER_BUILD_NAME = 1.0.0
FLUTTER_BUILD_NUMBER = 1
FLUTTER_FRAMEWORK_DIR = /Users/evelina/bin/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/evelina/bin/flutter
FLUTTER_TARGET = /Users/evelina/Workspace/Kara/kara_app/lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/BoringSSL" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseAuth" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseCore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseDatabase" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseFirestore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GTMOAuth2" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GTMSessionFetcher" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GoogleToolboxForMac" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GoogleUtilities" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/Protobuf" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/cloud_firestore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/firebase_auth" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/firebase_core" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-C++" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-Core" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-ProtoRPC" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-RxLibrary" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/google_sign_in" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/leveldb-library" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/nanopb" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/../.symlinks/flutter/ios" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/FirebaseAnalytics/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/FirebaseInstanceID/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/GoogleAppMeasurement/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/GoogleSignIn/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/BoringSSL" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseAuth" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseCore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseDatabase" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseFirestore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GTMOAuth2" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GTMSessionFetcher" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GoogleToolboxForMac" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GoogleUtilities" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/Protobuf" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/cloud_firestore" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/firebase_auth" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/firebase_core" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-C++" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-Core" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-ProtoRPC" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-RxLibrary" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/google_sign_in" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/leveldb-library" "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/nanopb" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/../.symlinks/flutter/ios" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/FirebaseAnalytics/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/FirebaseInstanceID/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/GoogleAppMeasurement/Frameworks" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/GoogleSignIn/Frameworks" /Users/evelina/Workspace/Kara/kara_app/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_OPTIMIZATION_LEVEL = 0
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1 COCOAPODS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 COCOAPODS=1 DEBUG=1 COCOAPODS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 DEBUG=1 COCOAPODS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 DEBUG=1 COCOAPODS=1 GTM_OAUTH2_USE_FRAMEWORK_IMPORTS=1 GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1
GCC_SYMBOLS_PRIVATE_EXTERN = NO
GCC_THUMB_SUPPORT = YES
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 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
HEADER_SEARCH_PATHS = "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" /Users/evelina/Workspace/Kara/kara_app/ios/Pods/Firebase/CoreOnly/Sources "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" /Users/evelina/Workspace/Kara/kara_app/ios/Pods/Firebase/CoreOnly/Sources /Users/evelina/Workspace/Kara/kara_app/ios/Pods/Firebase/CoreOnly/Sources
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/evelina
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 = evelina
INSTALL_PATH = /Applications
INSTALL_ROOT = /tmp/Runner.dst
IPHONEOS_DEPLOYMENT_TARGET = 8.0
JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
JAVA_ARCHIVE_CLASSES = YES
JAVA_ARCHIVE_TYPE = JAR
JAVA_COMPILER = /usr/bin/javac
JAVA_FOLDER_PATH = Runner.app/Java
JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
JAVA_JAR_FLAGS = cv
JAVA_SOURCE_SUBDIR = .
JAVA_USE_DEPENDENCIES = YES
JAVA_ZIP_FLAGS = -urg
JIKES_DEFAULT_FLAGS = +E +OLDCSO
KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = /Users/evelina/Workspace/Kara/kara_app/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_arm64 =
LINK_WITH_STANDARD_LIBRARIES = YES
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj
LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 17G65
MAC_OS_X_VERSION_ACTUAL = 101306
MAC_OS_X_VERSION_MAJOR = 101300
MAC_OS_X_VERSION_MINOR = 1306
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/Runner.app
MODULE_CACHE_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
MTL_ENABLE_DEBUG_INFO = YES
NATIVE_ARCH = armv7
NATIVE_ARCH_32_BIT = i386
NATIVE_ARCH_64_BIT = x86_64
NATIVE_ARCH_ACTUAL = x86_64
NO_COMMON = YES
OBJECT_FILE_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/Objects-normal
OBJROOT = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex
ONLY_ACTIVE_ARCH = YES
OS = MACOS
OSAC = /usr/bin/osacompile
OTHER_CFLAGS = -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/BoringSSL/openssl.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseCore/FirebaseCore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseFirestore/FirebaseFirestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GTMOAuth2/GTMOAuth2.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GoogleToolboxForMac/GoogleToolboxForMac.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/Protobuf/Protobuf.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/cloud_firestore/cloud_firestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/firebase_auth/firebase_auth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/firebase_core/firebase_core.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-C++/grpcpp.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-Core/grpc.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-ProtoRPC/ProtoRPC.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-RxLibrary/RxLibrary.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC/GRPCClient.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/google_sign_in/google_sign_in.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/leveldb-library/leveldb.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/nanopb/nanopb.framework/Headers" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/BoringSSL/openssl.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseCore/FirebaseCore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseFirestore/FirebaseFirestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GTMOAuth2/GTMOAuth2.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GoogleToolboxForMac/GoogleToolboxForMac.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/Protobuf/Protobuf.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/cloud_firestore/cloud_firestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/firebase_auth/firebase_auth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/firebase_core/firebase_core.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-C++/grpcpp.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-Core/grpc.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-ProtoRPC/ProtoRPC.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-RxLibrary/RxLibrary.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC/GRPCClient.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/google_sign_in/google_sign_in.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/leveldb-library/leveldb.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/nanopb/nanopb.framework/Headers"
OTHER_CPLUSPLUSFLAGS = -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/BoringSSL/openssl.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseCore/FirebaseCore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseFirestore/FirebaseFirestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GTMOAuth2/GTMOAuth2.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GoogleToolboxForMac/GoogleToolboxForMac.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/Protobuf/Protobuf.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/cloud_firestore/cloud_firestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/firebase_auth/firebase_auth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/firebase_core/firebase_core.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-C++/grpcpp.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-Core/grpc.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-ProtoRPC/ProtoRPC.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-RxLibrary/RxLibrary.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC/GRPCClient.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/google_sign_in/google_sign_in.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/leveldb-library/leveldb.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/nanopb/nanopb.framework/Headers" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/Firebase" -isystem "/Users/evelina/Workspace/Kara/kara_app/ios/Pods/Headers/Public/FirebaseAuthInterop" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/BoringSSL/openssl.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseCore/FirebaseCore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseDatabase/FirebaseDatabase.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/FirebaseFirestore/FirebaseFirestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GTMOAuth2/GTMOAuth2.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GoogleToolboxForMac/GoogleToolboxForMac.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/Protobuf/Protobuf.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/cloud_firestore/cloud_firestore.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/firebase_auth/firebase_auth.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/firebase_core/firebase_core.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-C++/grpcpp.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-Core/grpc.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-ProtoRPC/ProtoRPC.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC-RxLibrary/RxLibrary.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/gRPC/GRPCClient.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/google_sign_in/google_sign_in.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/leveldb-library/leveldb.framework/Headers" -iquote "/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/nanopb/nanopb.framework/Headers"
OTHER_LDFLAGS = -ObjC -l"c++" -l"icucore" -l"sqlite3" -l"z" -framework "CFNetwork" -framework "CoreText" -framework "FirebaseAnalytics" -framework "FirebaseAuth" -framework "FirebaseCore" -framework "FirebaseCoreDiagnostics" -framework "FirebaseDatabase" -framework "FirebaseFirestore" -framework "FirebaseInstanceID" -framework "Flutter" -framework "Foundation" -framework "GRPCClient" -framework "GTMOAuth2" -framework "GTMSessionFetcher" -framework "GoogleAppMeasurement" -framework "GoogleSignIn" -framework "GoogleToolboxForMac" -framework "GoogleUtilities" -framework "LocalAuthentication" -framework "MobileCoreServices" -framework "ProtoRPC" -framework "Protobuf" -framework "RxLibrary" -framework "SafariServices" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "cloud_firestore" -framework "firebase_auth" -framework "firebase_core" -framework "google_sign_in" -framework "grpc" -framework "grpcpp" -framework "leveldb" -framework "nanopb" -framework "openssl" -ObjC -l"c++" -l"icucore" -l"sqlite3" -l"z" -framework "CFNetwork" -framework "CoreText" -framework "FirebaseAnalytics" -framework "FirebaseAuth" -framework "FirebaseCore" -framework "FirebaseCoreDiagnostics" -framework "FirebaseDatabase" -framework "FirebaseFirestore" -framework "FirebaseInstanceID" -framework "Flutter" -framework "Foundation" -framework "GRPCClient" -framework "GTMOAuth2" -framework "GTMSessionFetcher" -framework "GoogleAppMeasurement" -framework "GoogleSignIn" -framework "GoogleToolboxForMac" -framework "GoogleUtilities" -framework "LocalAuthentication" -framework "MobileCoreServices" -framework "ProtoRPC" -framework "Protobuf" -framework "RxLibrary" -framework "SafariServices" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "cloud_firestore" -framework "firebase_auth" -framework "firebase_core" -framework "google_sign_in" -framework "grpc" -framework "grpcpp" -framework "leveldb" -framework "nanopb" -framework "openssl"
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/Users/evelina/.nvm/versions/node/v10.1.0/bin:/Users/evelina/bin/flutter/bin:/usr/local/opt/python/libexec/bin:/usr/local/bin:/usr/local/sbin:/Users/evelina/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/evelina/Library/Android/sdk:/Users/evelina/Library/Android/sdk/emulator:/Users/evelina/Library/Android/sdk/build-tools:/Users/evelina/Library/Android/sdk/tools:/Users/evelina/Library/Android/sdk/platform-tools
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/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
PLATFORM_DISPLAY_NAME = iOS
PLATFORM_NAME = iphoneos
PLATFORM_PREFERRED_ARCH = arm64
PLATFORM_PRODUCT_BUILD_VERSION = 16A366
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PODS_BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios
PODS_CONFIGURATION_BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos
PODS_PODFILE_DIR_PATH = /Users/evelina/Workspace/Kara/kara_app/ios/.
PODS_ROOT = /Users/evelina/Workspace/Kara/kara_app/ios/Pods
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = koach.kara
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = /Users/evelina/Workspace/Kara/kara_app/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/DerivedSources
PROJECT_DIR = /Users/evelina/Workspace/Kara/kara_app/ios
PROJECT_FILE_PATH = /Users/evelina/Workspace/Kara/kara_app/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build
PROJECT_TEMP_ROOT = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex
PROVISIONING_PROFILE_REQUIRED = YES
PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
REMOVE_CVS_FROM_RESOURCES = YES
REMOVE_GIT_FROM_RESOURCES = YES
REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
REMOVE_HG_FROM_RESOURCES = YES
REMOVE_SVN_FROM_RESOURCES = YES
RESOURCE_RULES_REQUIRED = YES
REZ_COLLECTOR_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/T/flutter_build_log_pipe.8b6480/pipe_to_stdout
SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
SDK_DIR_iphoneos12_0 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
SDK_NAME = iphoneos12.0
SDK_NAMES = iphoneos12.0
SDK_PRODUCT_BUILD_VERSION = 16A366
SDK_VERSION = 12.0
SDK_VERSION_ACTUAL = 120000
SDK_VERSION_MAJOR = 120000
SDK_VERSION_MINOR = 000
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/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/PrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/evelina/Workspace/Kara/kara_app/ios
SRCROOT = /Users/evelina/Workspace/Kara/kara_app/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = YES
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphonesimulator iphoneos
SUPPORTS_TEXT_BASED_API = NO
SWIFT_OBJC_BRIDGING_HEADER = Runner/Runner-Bridging-Header.h
SWIFT_OPTIMIZATION_LEVEL = -Onone
SWIFT_PLATFORM_TARGET_PREFIX = ios
SWIFT_SWIFT3_OBJC_INFERENCE = On
SWIFT_VERSION = 4.0
SYMROOT = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Products
SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
SYSTEM_APPS_DIR = /Applications
SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
SYSTEM_DEMOS_DIR = /Applications/Extras
SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities
SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
SYSTEM_LIBRARY_DIR = /System/Library
TAPI_VERIFY_MODE = ErrorsOnly
TARGETED_DEVICE_FAMILY = 1,2
TARGETNAME = Runner
TARGET_BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build
TEMP_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build
TEMP_FILES_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build
TEMP_FILE_DIR = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex/Runner.build/Debug-iphoneos/Runner.build
TEMP_ROOT = /Users/evelina/Library/Developer/Xcode/DerivedData/Runner-baprqshfgbypyogvleifnfdflsuv/Build/Intermediates.noindex
TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
UID = 501
UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
UNSTRIPPED_PRODUCT = NO
USER = evelina
USER_APPS_DIR = /Users/evelina/Applications
USER_LIBRARY_DIR = /Users/evelina/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
VALIDATE_PRODUCT = NO
VALID_ARCHS = arm64 armv7 armv7s
VERBOSE_PBXCP = NO
VERBOSE_SCRIPT_LOGGING = YES
VERSIONING_SYSTEM = apple-generic
VERSIONPLIST_PATH = Runner.app/version.plist
VERSION_INFO_BUILDER = evelina
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 = 10A254a
XCODE_VERSION_ACTUAL = 1000
XCODE_VERSION_MAJOR = 1000
XCODE_VERSION_MINOR = 1000
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = arm64
variant = normal
[ +13 ms] Failed to build iOS app
[ ] Error output from Xcode build:
↳
[ ] 2018-09-14 11:07:18.963 xcodebuild[22448:108490] DTDeviceKit: deviceType from d3cb15d54e8f368847a8923f7c6e8846531bdf97 was NULL
2018-09-14 11:07:18.963 xcodebuild[22448:108490] DTDeviceKit: deviceType from d3cb15d54e8f368847a8923f7c6e8846531bdf97 was NULL
2018-09-14 11:07:18.963 xcodebuild[22448:108490] iPhoneSupport: 📱<DVTiOSDevice (0x7fa6db79e360), Evelina’s iPhone, iPhone, 12.0 (16A366), 502326abfca0b735d166cec0f02048d4f8159946> unable to mount DeveloperDiskImage (Error Domain=com.apple.dtdevicekit Code=601 "Could not find platform" UserInfo={NSLocalizedDescription=Could not find platform})
2018-09-14 11:07:19.066 xcodebuild[22448:108474] [MT] DTDeviceKit: deviceType from d3cb15d54e8f368847a8923f7c6e8846531bdf97 was NULL
2018-09-14 11:07:19.070 xcodebuild[22448:108474] [MT] DTDeviceKit: deviceType from d3cb15d54e8f368847a8923f7c6e8846531bdf97 was NULL
** BUILD FAILED **
[ ] Xcode's output:
↳
[ ] Build settings from command line:
BUILD_DIR = /Users/evelina/Workspace/Kara/kara_app/build/ios
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/34/x_m__mks3xqcstxxvr9z352h0000gn/T/flutter_build_log_pipe.8b6480/pipe_to_stdout
SDKROOT = iphoneos12.0
VERBOSE_SCRIPT_LOGGING = YES
note: Using new build system
note: Planning build
note: Constructing build description
Build system information
error: Multiple commands produce '/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework':
1) Target 'Runner' has copy command from '/Users/evelina/Workspace/Kara/kara_app/ios/Flutter/Flutter.framework' to '/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework'
2) That command depends on command in Target 'Runner': script phase “[CP] Embed Pods Frameworks”
Build system information
warning: The use of Swift 3 @objc inference in Swift 4 mode is deprecated. Please address deprecated @objc inference warnings, test your code with “Use of deprecated Swift 3 @objc inference” logging enabled, and then disable inference by changing the "Swift 3 @objc Inference" build setting to "Default" for the "Runner" target. (in target 'Runner')
Build system information
warning: The use of Swift 3 @objc inference in Swift 4 mode is deprecated. Please address deprecated @objc inference warnings, test your code with “Use of deprecated Swift 3 @objc inference” logging enabled, and then disable inference by changing the "Swift 3 @objc Inference" build setting to "Default" for the "Runner" target. (in target 'Runner')
Build system information
warning: ignoring duplicated output file: '/Users/evelina/Workspace/Kara/kara_app/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework' (in target 'Runner')
[ +1 ms] Could not build the precompiled application for the device.
[ +2 ms] Error launching application on Evelina’s iPhone.
[ +5 ms] "flutter run" took 27,598ms.
#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>
<p dir="auto"><code class="notranslate">flutter doctor -v</code> output:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[✓] Flutter (Channel dev, v0.8.2, on Mac OS X 10.13.6 17G65, locale en-GB)
• Flutter version 0.8.2 at /Users/evelina/bin/flutter
• Framework revision 5ab9e70727 (7 days ago), 2018-09-07 12:33:05 -0700
• Engine revision 58a1894a1c
• Dart version 2.1.0-dev.3.1.flutter-760a9690c2
[✓] Android toolchain - develop for Android devices (Android SDK 28.0.2)
• Android SDK at /Users/evelina/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-28, build-tools 28.0.2
• ANDROID_HOME = /Users/evelina/Library/Android/sdk
• 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.0)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 10.0, Build version 10A254a
• ios-deploy 2.0.0
• CocoaPods version 1.6.0.beta.1
[✓] Android Studio (version 3.1)
• Android Studio at /Applications/Android Studio.app/Contents
• Flutter plugin version 28.0.1
• Dart plugin version 173.4700
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01)
[✓] VS Code (version 1.27.2)
• VS Code at /Applications/Visual Studio Code.app/Contents
• Flutter extension version 2.18.0
[✓] Connected devices (1 available)
• Evelina’s iPhone • 502326abfca0b735d166cec0f02048d4f8159946 • ios • iOS 12.0
• No issues found!"><pre class="notranslate"><code class="notranslate">[✓] Flutter (Channel dev, v0.8.2, on Mac OS X 10.13.6 17G65, locale en-GB)
• Flutter version 0.8.2 at /Users/evelina/bin/flutter
• Framework revision 5ab9e70727 (7 days ago), 2018-09-07 12:33:05 -0700
• Engine revision 58a1894a1c
• Dart version 2.1.0-dev.3.1.flutter-760a9690c2
[✓] Android toolchain - develop for Android devices (Android SDK 28.0.2)
• Android SDK at /Users/evelina/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-28, build-tools 28.0.2
• ANDROID_HOME = /Users/evelina/Library/Android/sdk
• 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.0)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 10.0, Build version 10A254a
• ios-deploy 2.0.0
• CocoaPods version 1.6.0.beta.1
[✓] Android Studio (version 3.1)
• Android Studio at /Applications/Android Studio.app/Contents
• Flutter plugin version 28.0.1
• Dart plugin version 173.4700
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01)
[✓] VS Code (version 1.27.2)
• VS Code at /Applications/Visual Studio Code.app/Contents
• Flutter extension version 2.18.0
[✓] Connected devices (1 available)
• Evelina’s iPhone • 502326abfca0b735d166cec0f02048d4f8159946 • ios • iOS 12.0
• No issues found!
</code></pre></div> | <p dir="auto"><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="239014504" data-permission-text="Title is private" data-url="https://github.com/flutter/engine/issues/3833" data-hovercard-type="pull_request" data-hovercard-url="/flutter/engine/pull/3833/hovercard" href="https://github.com/flutter/engine/pull/3833">flutter/engine#3833</a> breaks the fuchsia build because of this error in the host (Linux) test_runner build:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="../../flutter/shell/testing/test_runner.cc:17:19: error: no member named 'Attach' in 'shell::PlatformView'
platform_view_->Attach();
~~~~~~~~~~~~~~ ^"><pre class="notranslate"><code class="notranslate">../../flutter/shell/testing/test_runner.cc:17:19: error: no member named 'Attach' in 'shell::PlatformView'
platform_view_->Attach();
~~~~~~~~~~~~~~ ^
</code></pre></div>
<p dir="auto">This should be caught by travis builds and reflected in the dashboards.</p> | 0 |
<h1 dir="auto">Checklist</h1>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have verified that the issue exists against the <code class="notranslate">master</code> branch of Celery.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> This has already been asked to the <a href="https://groups.google.com/forum/#!forum/celery-users" rel="nofollow">discussion group</a> first.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the relevant section in the<br>
<a href="http://docs.celeryproject.org/en/latest/contributing.html#other-bugs" rel="nofollow">contribution guide</a><br>
on reporting bugs.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/issues?q=is%3Aissue+label%3A%22Issue+Type%3A+Bug+Report%22+-label%3A%22Category%3A+Documentation%22">issues list</a><br>
for similar or identical bug reports.</li>
<li>[y] I have checked the <a href="https://github.com/celery/celery/pulls?q=is%3Apr+label%3A%22PR+Type%3A+Bugfix%22+-label%3A%22Category%3A+Documentation%22">pull requests list</a><br>
for existing proposed fixes.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/commits/master">commit log</a><br>
to find out if the bug was already fixed in the master branch.</li>
<li>[] I have included all related issues and possible duplicate issues<br>
in this issue (If there are none, check this box anyway).</li>
</ul>
<h2 dir="auto">Mandatory Debugging Information</h2>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included the output of <code class="notranslate">celery -A proj report</code> in the issue.<br>
(if you are not able to do this, then at least specify the Celery<br>
version affected).</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have verified that the issue exists against the <code class="notranslate">master</code> branch of Celery.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included the contents of <code class="notranslate">pip freeze</code> in the issue.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included all the versions of all the external dependencies required<br>
to reproduce this bug.</li>
</ul>
<h2 dir="auto">Optional Debugging Information</h2>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one Python version<br>
and/or implementation.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one message broker and/or<br>
result backend.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one version of the message<br>
broker and/or result backend.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one operating system.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one workers pool.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue with autoscaling, retries,<br>
ETA/Countdown & rate limits disabled.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have tried reproducing the issue after downgrading<br>
and/or upgrading Celery and its dependencies.</li>
</ul>
<h2 dir="auto">Related Issues and Possible Duplicates</h2>
<h4 dir="auto">Related Issues</h4>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="905564343" data-permission-text="Title is private" data-url="https://github.com/celery/celery/issues/6791" data-hovercard-type="pull_request" data-hovercard-url="/celery/celery/pull/6791/hovercard" href="https://github.com/celery/celery/pull/6791">#6791</a></li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="32051442" data-permission-text="Title is private" data-url="https://github.com/celery/celery/issues/1997" data-hovercard-type="issue" data-hovercard-url="/celery/celery/issues/1997/hovercard" href="https://github.com/celery/celery/issues/1997">#1997</a></li>
</ul>
<h4 dir="auto">Possible Duplicates</h4>
<ul dir="auto">
<li>None</li>
</ul>
<h2 dir="auto">Environment & Settings</h2>
<p dir="auto"><strong>Celery version</strong>:</p>
<details>
<summary><b><code class="notranslate">celery report</code> Output:</b></summary>
<p dir="auto">
</p><div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="software -> celery:5.1.2 (sun-harmonics) kombu:5.1.0 py:3.8.5
billiard:3.6.4.0 redis:3.5.3
platform -> system:Linux arch:64bit, ELF
kernel version:5.8.0-59-generic imp:CPython
loader -> celery.loaders.app.AppLoader
settings -> transport:redis results:disabled
broker_url: 'redis://localhost:6379/0'
deprecated_settings: None"><pre class="notranslate"><code class="notranslate">software -> celery:5.1.2 (sun-harmonics) kombu:5.1.0 py:3.8.5
billiard:3.6.4.0 redis:3.5.3
platform -> system:Linux arch:64bit, ELF
kernel version:5.8.0-59-generic imp:CPython
loader -> celery.loaders.app.AppLoader
settings -> transport:redis results:disabled
broker_url: 'redis://localhost:6379/0'
deprecated_settings: None
</code></pre></div>
<p dir="auto"></p>
</details>
<h1 dir="auto">Steps to Reproduce</h1>
<h2 dir="auto">Required Dependencies</h2>
<ul dir="auto">
<li><strong>Minimal Python Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Celery Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Kombu Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Broker Version</strong>: redis in docker</li>
<li><strong>Minimal Result Backend Version</strong>: N/A or Unknown</li>
<li><strong>Minimal OS and/or Kernel Version</strong>: Ubuntu 20.04</li>
<li><strong>Minimal Broker Client Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Result Backend Client Version</strong>: N/A or Unknown</li>
</ul>
<h3 dir="auto">Python Packages</h3>
<details>
<summary><b><code class="notranslate">pip freeze</code> Output:</b></summary>
<p dir="auto">
</p><div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="amqp==5.0.6
billiard==3.6.4.0
celery @ file:///tmp/x/celery
click==7.1.2
click-didyoumean==0.0.3
click-plugins==1.1.1
click-repl==0.2.0
kombu==5.1.0
prompt-toolkit==3.0.19
pytz==2021.1
redis==3.5.3
six==1.16.0
vine==5.0.0
wcwidth==0.2.5
"><pre class="notranslate"><code class="notranslate">amqp==5.0.6
billiard==3.6.4.0
celery @ file:///tmp/x/celery
click==7.1.2
click-didyoumean==0.0.3
click-plugins==1.1.1
click-repl==0.2.0
kombu==5.1.0
prompt-toolkit==3.0.19
pytz==2021.1
redis==3.5.3
six==1.16.0
vine==5.0.0
wcwidth==0.2.5
</code></pre></div>
<p dir="auto"></p>
</details>
<h3 dir="auto">Other Dependencies</h3>
<details>
<p dir="auto">
N/A
</p>
</details>
<h2 dir="auto">Minimally Reproducible Test Case</h2>
<details>
<p dir="auto">
</p><div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from celery import Celery
app = Celery('tasks', broker='redis://localhost:6379/0')
@app.task
def f():
print('hello hello world')
if __name__ == '__main__':
f.apply_async()"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">celery</span> <span class="pl-k">import</span> <span class="pl-v">Celery</span>
<span class="pl-s1">app</span> <span class="pl-c1">=</span> <span class="pl-v">Celery</span>(<span class="pl-s">'tasks'</span>, <span class="pl-s1">broker</span><span class="pl-c1">=</span><span class="pl-s">'redis://localhost:6379/0'</span>)
<span class="pl-en">@<span class="pl-s1">app</span>.<span class="pl-s1">task</span></span>
<span class="pl-k">def</span> <span class="pl-en">f</span>():
<span class="pl-en">print</span>(<span class="pl-s">'hello hello world'</span>)
<span class="pl-k">if</span> <span class="pl-s1">__name__</span> <span class="pl-c1">==</span> <span class="pl-s">'__main__'</span>:
<span class="pl-s1">f</span>.<span class="pl-en">apply_async</span>()</pre></div>
<p dir="auto"></p>
</details>
<h1 dir="auto">Expected Behavior</h1>
<p dir="auto">only one line of output</p>
<div class="highlight highlight-text-shell-session notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" -------------- [queues]
.> celery exchange=celery(direct) key=celery
[2021-06-30 19:28:02,606: WARNING/ForkPoolWorker-4] hello hello world"><pre class="notranslate"><span class="pl-c1"> -------------- [queues]</span>
<span class="pl-c1"> .> celery exchange=celery(direct) key=celery</span>
<span class="pl-c1"> </span>
<span class="pl-c1">[2021-06-30 19:28:02,606: WARNING/ForkPoolWorker-4] hello hello world</span></pre></div>
<h1 dir="auto">Actual Behavior</h1>
<p dir="auto">prints an empty line</p>
<div class="highlight highlight-text-shell-session notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" -------------- [queues]
.> celery exchange=celery(direct) key=celery
[2021-06-30 19:28:02,606: WARNING/ForkPoolWorker-4] hello hello world
[2021-06-30 19:28:02,607: WARNING/ForkPoolWorker-4] "><pre class="notranslate"><span class="pl-c1"> -------------- [queues]</span>
<span class="pl-c1"> .> celery exchange=celery(direct) key=celery</span>
<span class="pl-c1"> </span>
<span class="pl-c1">[2021-06-30 19:28:02,606: WARNING/ForkPoolWorker-4] hello hello world</span>
<span class="pl-c1">[2021-06-30 19:28:02,607: WARNING/ForkPoolWorker-4] </span></pre></div>
<p dir="auto">when printing from the task function, each output causes a newline to be printed to <code class="notranslate">stderr</code>. This was introduced in version <code class="notranslate">5.1.*</code> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="905564343" data-permission-text="Title is private" data-url="https://github.com/celery/celery/issues/6791" data-hovercard-type="pull_request" data-hovercard-url="/celery/celery/pull/6791/hovercard" href="https://github.com/celery/celery/pull/6791">#6791</a> by removing this line: <a class="commit-link" href="https://github.com/celery/celery/commit/51f5b01df0434144521b23a35d16aebfee08c3ae#diff-116905b4c2ccc7e0172e26700ba1a0a0270b2fe1f830c47244dc1df07c805883L226"><tt>51f5b01</tt>#diff-116905b4c2ccc7e0172e26700ba1a0a0270b2fe1f830c47244dc1df07c805883L226</a></p>
<p dir="auto">I think there are different options how to address this:</p>
<ul dir="auto">
<li>just add the line back as it was -- but this would go against the initaly intention in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="905564343" data-permission-text="Title is private" data-url="https://github.com/celery/celery/issues/6791" data-hovercard-type="pull_request" data-hovercard-url="/celery/celery/pull/6791/hovercard" href="https://github.com/celery/celery/pull/6791">#6791</a> of removing it to don't do any string manipulation in this function</li>
<li>use something like <code class="notranslate">re.sub('\n|\r', '', data )</code> instead, to keep the whitespace or an endswith check or a more complex regex?</li>
<li>address this somewhere else, so no newline characters are passed to <code class="notranslate">.write()</code> (I would need a hint where to do this though)</li>
</ul>
<p dir="auto">I am happy to send a PR to fix this if needed.</p> | <h1 dir="auto">Checklist</h1>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the relevant section in the<br>
<a href="http://docs.celeryproject.org/en/latest/contributing.html#other-bugs" rel="nofollow">contribution guide</a><br>
on reporting bugs.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/issues?q=is%3Aissue+label%3A%22Issue+Type%3A+Bug+Report%22+-label%3A%22Category%3A+Documentation%22">issues list</a><br>
for similar or identical bug reports.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/pulls?q=is%3Apr+label%3A%22PR+Type%3A+Bugfix%22+-label%3A%22Category%3A+Documentation%22">pull requests list</a><br>
for existing proposed fixes.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have checked the <a href="https://github.com/celery/celery/commits/master">commit log</a><br>
to find out if the bug was already fixed in the master branch.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included all related issues and possible duplicate issues<br>
in this issue (If there are none, check this box anyway).</li>
</ul>
<h2 dir="auto">Mandatory Debugging Information</h2>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included the output of <code class="notranslate">celery -A proj report</code> in the issue.<br>
(if you are not able to do this, then at least specify the Celery<br>
version affected).</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have verified that the issue exists against the <code class="notranslate">master</code> branch of Celery.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included the contents of <code class="notranslate">pip freeze</code> in the issue.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included all the versions of all the external dependencies required<br>
to reproduce this bug.</li>
</ul>
<h2 dir="auto">Optional Debugging Information</h2>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one Python version<br>
and/or implementation.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one message broker and/or<br>
result backend.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one version of the message<br>
broker and/or result backend.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one operating system.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have tried reproducing the issue on more than one workers pool.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue with autoscaling, retries,<br>
ETA/Countdown & rate limits disabled.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue after downgrading<br>
and/or upgrading Celery and its dependencies.</li>
</ul>
<h2 dir="auto">Related Issues and Possible Duplicates</h2>
<h4 dir="auto">Related Issues</h4>
<ul dir="auto">
<li>Subsequent groups within a chain fail <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="188895674" data-permission-text="Title is private" data-url="https://github.com/celery/celery/issues/3585" data-hovercard-type="issue" data-hovercard-url="/celery/celery/issues/3585/hovercard" href="https://github.com/celery/celery/issues/3585">#3585</a></li>
<li>Nested group(chain(group)) fails <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="439435258" data-permission-text="Title is private" data-url="https://github.com/celery/celery/issues/5496" data-hovercard-type="issue" data-hovercard-url="/celery/celery/issues/5496/hovercard" href="https://github.com/celery/celery/issues/5496">#5496</a></li>
<li>group([chain(group(task(), task()), group(...)), chain(group(...), group(...))]) construct never finishes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="47837481" data-permission-text="Title is private" data-url="https://github.com/celery/celery/issues/2354" data-hovercard-type="issue" data-hovercard-url="/celery/celery/issues/2354/hovercard" href="https://github.com/celery/celery/issues/2354">#2354</a></li>
<li>Canvas with group-task-task-group does not work <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="413354133" data-permission-text="Title is private" data-url="https://github.com/celery/celery/issues/5354" data-hovercard-type="issue" data-hovercard-url="/celery/celery/issues/5354/hovercard" href="https://github.com/celery/celery/issues/5354">#5354</a></li>
</ul>
<h4 dir="auto">Possible Duplicates</h4>
<ul dir="auto">
<li>Nested group-chain-group structure never succeeds <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="68153195" data-permission-text="Title is private" data-url="https://github.com/celery/celery/issues/2573" data-hovercard-type="issue" data-hovercard-url="/celery/celery/issues/2573/hovercard" href="https://github.com/celery/celery/issues/2573">#2573</a></li>
</ul>
<h2 dir="auto">Environment & Settings</h2>
<p dir="auto"><strong>Celery version</strong>:</p>
<details>
<summary><b><code class="notranslate">celery report</code> Output:</b></summary>
<p dir="auto">
</p><div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="software -> celery:4.3.0 (rhubarb) kombu:4.5.0 py:3.6.5
billiard:3.6.0.0 redis:3.2.1
platform -> system:Linux arch:64bit
kernel version:4.9.0-9-amd64 imp:CPython
loader -> celery.loaders.app.AppLoader
settings -> transport:redis results:redis:///
broker_url: 'redis://localhost:6379//'
result_backend: 'redis:///'"><pre class="notranslate"><code class="notranslate">software -> celery:4.3.0 (rhubarb) kombu:4.5.0 py:3.6.5
billiard:3.6.0.0 redis:3.2.1
platform -> system:Linux arch:64bit
kernel version:4.9.0-9-amd64 imp:CPython
loader -> celery.loaders.app.AppLoader
settings -> transport:redis results:redis:///
broker_url: 'redis://localhost:6379//'
result_backend: 'redis:///'
</code></pre></div>
<p dir="auto"></p>
</details>
<h1 dir="auto">Steps to Reproduce</h1>
<h2 dir="auto">Required Dependencies</h2>
<ul dir="auto">
<li><strong>Minimal Python Version</strong>: 3.6</li>
<li><strong>Minimal Celery Version</strong>: 4.3</li>
<li><strong>Minimal Kombu Version</strong>: 4.5.0</li>
<li><strong>Minimal Broker Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Result Backend Version</strong>: Redis</li>
<li><strong>Minimal OS and/or Kernel Version</strong>: Debian Stretch</li>
<li><strong>Minimal Broker Client Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Result Backend Client Version</strong>: N/A or Unknown</li>
</ul>
<h3 dir="auto">Python Packages</h3>
<details>
<summary><b><code class="notranslate">pip freeze</code> Output:</b></summary>
<p dir="auto">
</p><div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="amqp==2.4.2
billiard==3.6.0.0
celery==4.3.0
celery-eternal==0.1.1
celery-singleton==0.1.3
certifi==2018.4.16
kombu==4.5.0
pytz==2019.1
redis==3.2.1
vine==1.3.0"><pre class="notranslate"><code class="notranslate">amqp==2.4.2
billiard==3.6.0.0
celery==4.3.0
celery-eternal==0.1.1
celery-singleton==0.1.3
certifi==2018.4.16
kombu==4.5.0
pytz==2019.1
redis==3.2.1
vine==1.3.0
</code></pre></div>
<p dir="auto"></p>
</details>
<h3 dir="auto">Other Dependencies</h3>
<details>
<p dir="auto">
N/A
</p>
</details>
<h2 dir="auto">Minimally Reproducible Test Case</h2>
<details>
<p dir="auto">
</p><div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from time import sleep
from celery import Celery
from celery import group
app = Celery('tasks', broker = 'redis://')
app.conf['result_backend'] = app.conf.broker_url
@app.task
def prod(x, y):
return x*y
@app.task
def subtract(args):
return args[0]-args[1]
@app.task(shared=False)
def identity(args):
"""Identity task (returns its input)."""
return args
x = (
group( prod.s(1, 1), prod.s(2, 1) )
|
identity.s()
|
subtract.s()
|
group( prod.s(5), prod.s(6) )
)
r = x.delay()
sleep(10)
print(r.waiting())
# Another case
x = (
group( prod.s(1, 1), prod.s(2, 1) )
|
subtract.si((3,4))
|
subtract.si((4,3))
|
subtract.si((6,5))
|
group( prod.si(5, 6), prod.si(6, 5) )
)
r = x.delay()
sleep(10)
print(r.waiting())
# However this works
# x = (
# group( prod.s(1, 1), prod.s(2, 1) )
# |
# subtract.si((3,4))
# |
# group( prod.si(5, 6), prod.si(6, 5) )
# )
# r = x.delay()
# print([p.result for p in r.results])
# prints [30, 30]
# The adding more than one component in between 2 groups
# in a chain is causing the canvas to wait right before the final group"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">time</span> <span class="pl-k">import</span> <span class="pl-s1">sleep</span>
<span class="pl-k">from</span> <span class="pl-s1">celery</span> <span class="pl-k">import</span> <span class="pl-v">Celery</span>
<span class="pl-k">from</span> <span class="pl-s1">celery</span> <span class="pl-k">import</span> <span class="pl-s1">group</span>
<span class="pl-s1">app</span> <span class="pl-c1">=</span> <span class="pl-v">Celery</span>(<span class="pl-s">'tasks'</span>, <span class="pl-s1">broker</span> <span class="pl-c1">=</span> <span class="pl-s">'redis://'</span>)
<span class="pl-s1">app</span>.<span class="pl-s1">conf</span>[<span class="pl-s">'result_backend'</span>] <span class="pl-c1">=</span> <span class="pl-s1">app</span>.<span class="pl-s1">conf</span>.<span class="pl-s1">broker_url</span>
<span class="pl-en">@<span class="pl-s1">app</span>.<span class="pl-s1">task</span></span>
<span class="pl-k">def</span> <span class="pl-en">prod</span>(<span class="pl-s1">x</span>, <span class="pl-s1">y</span>):
<span class="pl-k">return</span> <span class="pl-s1">x</span><span class="pl-c1">*</span><span class="pl-s1">y</span>
<span class="pl-en">@<span class="pl-s1">app</span>.<span class="pl-s1">task</span></span>
<span class="pl-k">def</span> <span class="pl-en">subtract</span>(<span class="pl-s1">args</span>):
<span class="pl-k">return</span> <span class="pl-s1">args</span>[<span class="pl-c1">0</span>]<span class="pl-c1">-</span><span class="pl-s1">args</span>[<span class="pl-c1">1</span>]
<span class="pl-en">@<span class="pl-s1">app</span>.<span class="pl-en">task</span>(<span class="pl-s1">shared</span><span class="pl-c1">=</span><span class="pl-c1">False</span>)</span>
<span class="pl-k">def</span> <span class="pl-en">identity</span>(<span class="pl-s1">args</span>):
<span class="pl-s">"""Identity task (returns its input)."""</span>
<span class="pl-k">return</span> <span class="pl-s1">args</span>
<span class="pl-s1">x</span> <span class="pl-c1">=</span> (
<span class="pl-en">group</span>( <span class="pl-s1">prod</span>.<span class="pl-en">s</span>(<span class="pl-c1">1</span>, <span class="pl-c1">1</span>), <span class="pl-s1">prod</span>.<span class="pl-en">s</span>(<span class="pl-c1">2</span>, <span class="pl-c1">1</span>) )
<span class="pl-c1">|</span>
<span class="pl-s1">identity</span>.<span class="pl-en">s</span>()
<span class="pl-c1">|</span>
<span class="pl-s1">subtract</span>.<span class="pl-en">s</span>()
<span class="pl-c1">|</span>
<span class="pl-en">group</span>( <span class="pl-s1">prod</span>.<span class="pl-en">s</span>(<span class="pl-c1">5</span>), <span class="pl-s1">prod</span>.<span class="pl-en">s</span>(<span class="pl-c1">6</span>) )
)
<span class="pl-s1">r</span> <span class="pl-c1">=</span> <span class="pl-s1">x</span>.<span class="pl-en">delay</span>()
<span class="pl-en">sleep</span>(<span class="pl-c1">10</span>)
<span class="pl-en">print</span>(<span class="pl-s1">r</span>.<span class="pl-en">waiting</span>())
<span class="pl-c"># Another case</span>
<span class="pl-s1">x</span> <span class="pl-c1">=</span> (
<span class="pl-en">group</span>( <span class="pl-s1">prod</span>.<span class="pl-en">s</span>(<span class="pl-c1">1</span>, <span class="pl-c1">1</span>), <span class="pl-s1">prod</span>.<span class="pl-en">s</span>(<span class="pl-c1">2</span>, <span class="pl-c1">1</span>) )
<span class="pl-c1">|</span>
<span class="pl-s1">subtract</span>.<span class="pl-en">si</span>((<span class="pl-c1">3</span>,<span class="pl-c1">4</span>))
<span class="pl-c1">|</span>
<span class="pl-s1">subtract</span>.<span class="pl-en">si</span>((<span class="pl-c1">4</span>,<span class="pl-c1">3</span>))
<span class="pl-c1">|</span>
<span class="pl-s1">subtract</span>.<span class="pl-en">si</span>((<span class="pl-c1">6</span>,<span class="pl-c1">5</span>))
<span class="pl-c1">|</span>
<span class="pl-en">group</span>( <span class="pl-s1">prod</span>.<span class="pl-en">si</span>(<span class="pl-c1">5</span>, <span class="pl-c1">6</span>), <span class="pl-s1">prod</span>.<span class="pl-en">si</span>(<span class="pl-c1">6</span>, <span class="pl-c1">5</span>) )
)
<span class="pl-s1">r</span> <span class="pl-c1">=</span> <span class="pl-s1">x</span>.<span class="pl-en">delay</span>()
<span class="pl-en">sleep</span>(<span class="pl-c1">10</span>)
<span class="pl-en">print</span>(<span class="pl-s1">r</span>.<span class="pl-en">waiting</span>())
<span class="pl-c"># However this works</span>
<span class="pl-c"># x = (</span>
<span class="pl-c"># group( prod.s(1, 1), prod.s(2, 1) )</span>
<span class="pl-c"># |</span>
<span class="pl-c"># subtract.si((3,4))</span>
<span class="pl-c"># |</span>
<span class="pl-c"># group( prod.si(5, 6), prod.si(6, 5) )</span>
<span class="pl-c"># )</span>
<span class="pl-c"># r = x.delay()</span>
<span class="pl-c"># print([p.result for p in r.results])</span>
<span class="pl-c"># prints [30, 30]</span>
<span class="pl-c"># The adding more than one component in between 2 groups</span>
<span class="pl-c"># in a chain is causing the canvas to wait right before the final group</span></pre></div>
<p dir="auto"></p>
</details>
<h1 dir="auto">Expected Behavior</h1>
<p dir="auto">Above code snippet should return a list of 2 values<br>
([5, 6] in for first case, [30, 30] for second case)</p>
<h1 dir="auto">Actual Behavior</h1>
<p dir="auto">The code never never returns, keeps waiting</p>
<p dir="auto">Celery worker logs for the first case mentioned</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[2019-05-10 21:12:42,361: INFO/MainProcess] Connected to redis://localhost:6379//
[2019-05-10 21:12:42,366: INFO/MainProcess] mingle: searching for neighbors
[2019-05-10 21:12:43,380: INFO/MainProcess] mingle: all alone
[2019-05-10 21:12:43,393: INFO/MainProcess] celery@debian ready.
[2019-05-10 21:13:43,557: INFO/MainProcess] Received task: celery_task.prod[e11748a0-dca2-41fb-b799-a2ae7879c9fd]
[2019-05-10 21:13:43,559: INFO/MainProcess] Received task: celery_task.prod[6ec1c88f-cca7-417c-8ff1-eacd9bdef7a1]
[2019-05-10 21:13:43,566: INFO/ForkPoolWorker-2] Task celery_task.prod[6ec1c88f-cca7-417c-8ff1-eacd9bdef7a1] succeeded in 0.0064055299990286585s: 2
[2019-05-10 21:13:43,585: INFO/ForkPoolWorker-1] Task celery_task.prod[e11748a0-dca2-41fb-b799-a2ae7879c9fd] succeeded in 0.02549504399939906s: 1
[2019-05-10 21:13:43,586: INFO/MainProcess] Received task: celery_task.identity[87148533-8da1-4fc6-bbfe-608470cb3c1a]
[2019-05-10 21:13:43,588: INFO/ForkPoolWorker-1] Task celery_task.identity[87148533-8da1-4fc6-bbfe-608470cb3c1a] succeeded in 0.0011925399994652253s: [2, 1]
[2019-05-10 21:13:43,588: INFO/MainProcess] Received task: celery_task.subtract[e907af43-a886-45ea-bfe3-f709c8267e5d]
[2019-05-10 21:13:43,589: INFO/ForkPoolWorker-1] Task celery_task.subtract[e907af43-a886-45ea-bfe3-f709c8267e5d] succeeded in 0.00028916799965372775s: 1"><pre class="notranslate"><code class="notranslate">[2019-05-10 21:12:42,361: INFO/MainProcess] Connected to redis://localhost:6379//
[2019-05-10 21:12:42,366: INFO/MainProcess] mingle: searching for neighbors
[2019-05-10 21:12:43,380: INFO/MainProcess] mingle: all alone
[2019-05-10 21:12:43,393: INFO/MainProcess] celery@debian ready.
[2019-05-10 21:13:43,557: INFO/MainProcess] Received task: celery_task.prod[e11748a0-dca2-41fb-b799-a2ae7879c9fd]
[2019-05-10 21:13:43,559: INFO/MainProcess] Received task: celery_task.prod[6ec1c88f-cca7-417c-8ff1-eacd9bdef7a1]
[2019-05-10 21:13:43,566: INFO/ForkPoolWorker-2] Task celery_task.prod[6ec1c88f-cca7-417c-8ff1-eacd9bdef7a1] succeeded in 0.0064055299990286585s: 2
[2019-05-10 21:13:43,585: INFO/ForkPoolWorker-1] Task celery_task.prod[e11748a0-dca2-41fb-b799-a2ae7879c9fd] succeeded in 0.02549504399939906s: 1
[2019-05-10 21:13:43,586: INFO/MainProcess] Received task: celery_task.identity[87148533-8da1-4fc6-bbfe-608470cb3c1a]
[2019-05-10 21:13:43,588: INFO/ForkPoolWorker-1] Task celery_task.identity[87148533-8da1-4fc6-bbfe-608470cb3c1a] succeeded in 0.0011925399994652253s: [2, 1]
[2019-05-10 21:13:43,588: INFO/MainProcess] Received task: celery_task.subtract[e907af43-a886-45ea-bfe3-f709c8267e5d]
[2019-05-10 21:13:43,589: INFO/ForkPoolWorker-1] Task celery_task.subtract[e907af43-a886-45ea-bfe3-f709c8267e5d] succeeded in 0.00028916799965372775s: 1
</code></pre></div>
<p dir="auto">Considering the first case mentioned in the code snippet, you can see that value of the task before the second group, <code class="notranslate">subtract</code>, is returned but the last group (consisting 2 <code class="notranslate">prod</code>s) is never received, even after waiting many minutes. (I put the <code class="notranslate">sleep(10)</code> just as a proxy for some wait)</p> | 0 |
<h2 dir="auto">Steps to Reproduce</h2>
<ul dir="auto">
<li>Create a normal Flutter project with the Atom creator project</li>
<li>Remove the internet permission in the manifest</li>
<li>Run the app</li>
</ul>
<h2 dir="auto">Flutter Doctor</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[✓] Flutter (on Linux, channel alpha)
• Flutter at /home/kleak/flutter
• Framework revision 9a0a0d9903 (13 days ago), engine revision f8d80c4617
[✓] Android toolchain - develop for Android devices (Android SDK 24.0.1)
• Android SDK at /home/kleak/Android/Sdk
• Platform android-24, build-tools 24.0.1
• Java(TM) SE Runtime Environment (build 1.8.0_101-b13)
[✓] Atom - a lightweight development environment for Flutter
• flutter plugin version 0.2.4
• dartlang plugin version 0.6.38"><pre class="notranslate"><code class="notranslate">[✓] Flutter (on Linux, channel alpha)
• Flutter at /home/kleak/flutter
• Framework revision 9a0a0d9903 (13 days ago), engine revision f8d80c4617
[✓] Android toolchain - develop for Android devices (Android SDK 24.0.1)
• Android SDK at /home/kleak/Android/Sdk
• Platform android-24, build-tools 24.0.1
• Java(TM) SE Runtime Environment (build 1.8.0_101-b13)
[✓] Atom - a lightweight development environment for Flutter
• flutter plugin version 0.2.4
• dartlang plugin version 0.6.38
</code></pre></div>
<h2 dir="auto">Logs and Crash Reports</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="vm-service: Error: Unhandled exception:
SocketException: Failed to create server socket (OS Error: Permission denied, errno = 13), address = 127.0.0.1, port = 0
#0 _NativeSocket.bind.<anonymous closure> (dart:io-patch/socket_patch.dart:511)
#1 _RootZone.runUnary (dart:async/zone.dart:1404)
#2 _FutureListener.handleValue (dart:async/future_impl.dart:131)
#3 _Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:637)
#4 _Future._propagateToListeners (dart:async/future_impl.dart:667)
#5 _Future._completeWithValue (dart:async/future_impl.dart:477)
#6 _Future._asyncComplete.<anonymous closure> (dart:async/future_impl.dart:528)
#7 _microtaskLoop (dart:async/schedule_microtask.dart:41)
#8 _startMicrotaskLoop (dart:async/schedule_microtask.dart:50)
#9 _runPendingImmediateCallback (dart:isolate-patch/isolate_patch.dart:96)
#10 _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:149)"><pre class="notranslate"><code class="notranslate">vm-service: Error: Unhandled exception:
SocketException: Failed to create server socket (OS Error: Permission denied, errno = 13), address = 127.0.0.1, port = 0
#0 _NativeSocket.bind.<anonymous closure> (dart:io-patch/socket_patch.dart:511)
#1 _RootZone.runUnary (dart:async/zone.dart:1404)
#2 _FutureListener.handleValue (dart:async/future_impl.dart:131)
#3 _Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:637)
#4 _Future._propagateToListeners (dart:async/future_impl.dart:667)
#5 _Future._completeWithValue (dart:async/future_impl.dart:477)
#6 _Future._asyncComplete.<anonymous closure> (dart:async/future_impl.dart:528)
#7 _microtaskLoop (dart:async/schedule_microtask.dart:41)
#8 _startMicrotaskLoop (dart:async/schedule_microtask.dart:50)
#9 _runPendingImmediateCallback (dart:isolate-patch/isolate_patch.dart:96)
#10 _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:149)
</code></pre></div> | <p dir="auto">If your <code class="notranslate">AndroidManifest.xml</code> is missing this line:</p>
<div class="highlight highlight-text-xml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<uses-permission android:name="android.permission.INTERNET"/>"><pre class="notranslate"><<span class="pl-ent">uses-permission</span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">name</span>=<span class="pl-s"><span class="pl-pds">"</span>android.permission.INTERNET<span class="pl-pds">"</span></span>/></pre></div>
<p dir="auto">...then when we try to hook up the observatory port we will get an error 13 (permission denied).</p>
<p dir="auto">We should catch this case and explain what to do about it.</p> | 1 |
<h5 dir="auto">Issue Type:</h5>
<p dir="auto">Problem with SSL verification</p>
<h5 dir="auto">Ansible Version:</h5>
<p dir="auto"><code class="notranslate">ansible 1.5.2</code><br>
installed via pip</p>
<h5 dir="auto">Environment:</h5>
<p dir="auto">Ubuntu 12.04</p>
<h5 dir="auto">Summary:</h5>
<p dir="auto">When I try to fetch any URL via https I get SSL verification error</p>
<h5 dir="auto">Steps To Reproduce:</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible -i 127.0.0.1, "*" -m 'get_url' -a'url="https://www.postgresql.org" dest=/tmp/x'"><pre class="notranslate"><code class="notranslate">ansible -i 127.0.0.1, "*" -m 'get_url' -a'url="https://www.postgresql.org" dest=/tmp/x'
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="
##### Expected Results:
Downloaded file.
##### Actual Results:
127.0.0.1 | FAILED >> {
"failed": true,
"msg": "failed to validate the SSL certificate for www.postgresql.org:443. You can use validate_certs=no, however this is unsafe and not recommended '/usr/share/ca-certificates/cacert.org/cacert.org.crt'"
}"><pre class="notranslate"><code class="notranslate">
##### Expected Results:
Downloaded file.
##### Actual Results:
127.0.0.1 | FAILED >> {
"failed": true,
"msg": "failed to validate the SSL certificate for www.postgresql.org:443. You can use validate_certs=no, however this is unsafe and not recommended '/usr/share/ca-certificates/cacert.org/cacert.org.crt'"
}
</code></pre></div>
<p dir="auto">I am on ubuntu 12.04. Script found some certs here /usr/share/ca-certificates/cacert.org/cacert.org.crt and failed to verify postgresql certificate. Any ideas why?</p> | <h5 dir="auto">Issue Type:</h5>
<p dir="auto">Bug Report</p>
<h5 dir="auto">Ansible Version:</h5>
<p dir="auto">ansible 1.5.2</p>
<h5 dir="auto">Environment:</h5>
<p dir="auto">Ubuntu 12.04</p>
<h5 dir="auto">Summary:</h5>
<p dir="auto">SSL verification fails when attempting to use the hipchat module</p>
<h5 dir="auto">Steps To Reproduce:</h5>
<p dir="auto">Use the hipchat module and attempt to send a message.</p>
<h5 dir="auto">Expected Results:</h5>
<p dir="auto">No errors, message gets sent.</p>
<h5 dir="auto">Actual Results:</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="msg: failed to validate the SSL certificate for api.hipchat.com:443. You can use validate_certs=no, however this is unsafe and not recommended"><pre class="notranslate"><code class="notranslate">msg: failed to validate the SSL certificate for api.hipchat.com:443. You can use validate_certs=no, however this is unsafe and not recommended
</code></pre></div>
<hr>
<p dir="auto">Ansible v1.5.2 appears to have enabled SSL server certificate verification. If I attempt to use the HipChat module, it fails due to an unclear error message:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="msg: failed to validate the SSL certificate for api.hipchat.com:443. You can use validate_certs=no, however this is unsafe and not recommended"><pre class="notranslate"><code class="notranslate">msg: failed to validate the SSL certificate for api.hipchat.com:443. You can use validate_certs=no, however this is unsafe and not recommended
</code></pre></div>
<p dir="auto">It appears that Ansible hard-codes the Certificate Authority bundle based on the current platform and distribution. For Ubuntu, the file is hard-coded to /usr/share/ca-certificates/cacert.org/cacert.org.crt.</p>
<p dir="auto">Running update-ca-certificates on Ubuntu does not fix the problem because this generates a bundle in /etc/ssl/certs/ca-certificates.crt.</p>
<p dir="auto">I see a few improvements:</p>
<ol dir="auto">
<li>Display the attempted filename in the error message--this would help clarify what went wrong.</li>
<li>Allow configuration of the bundle file in the Ansible configuration (similar to curl's --cacert parameter).</li>
<li>curl also allows a --capath directory to search for certificates within this directory. Support this functionality.</li>
</ol> | 1 |
<p dir="auto">if allowed_domains occurred in url(in path or query) it also crawl that url.<br>
e.g:<br>
allowed_domains =["www.rankwatch.com"]</p>
<p dir="auto">when i run LinkExtractor it also crawl :<br>
{"url": "<a href="https://www.facebook.com/login.php?skip_api_login=1&api_key=864596490301578&signed_next=1&next=https%3A%2F%2Fwww.facebook.com%2Fv2.4%2Fdialog%2Foauth%3Fredirect_uri%3Dhttps%253A%252F%252Fwww.rankwatch.com%252Flearning%252Fuser%252Fsimple-fb-connect%252Freturn%26state%3Daa68bcc193612233a0511106f69f9203%26scope%3Demail%26client_id%3D864596490301578%26ret%3Dlogin%26sdk%3Dphp-sdk-4.0.23%26logger_id%3Df7320741-707c-2f7e-1947-390b18a93e99&cancel_url=https%3A%2F%2Fwww.rankwatch.com%2Flearning%2Fuser%2Fsimple-fb-connect%2Freturn%3Ferror%3Daccess_denied%26error_code%3D200%26error_description%3DPermissions%2Berror%26error_reason%3Duser_denied%26state%3Daa68bcc193612233a0511106f69f9203%23_%3D_&display=page&locale=en_GB&logger_id=f7320741-707c-2f7e-1947-390b18a93e99%22%7D" rel="nofollow">https://www.facebook.com/login.php?skip_api_login=1&api_key=864596490301578&signed_next=1&next=https%3A%2F%2Fwww.facebook.com%2Fv2.4%2Fdialog%2Foauth%3Fredirect_uri%3Dhttps%253A%252F%252Fwww.rankwatch.com%252Flearning%252Fuser%252Fsimple-fb-connect%252Freturn%26state%3Daa68bcc193612233a0511106f69f9203%26scope%3Demail%26client_id%3D864596490301578%26ret%3Dlogin%26sdk%3Dphp-sdk-4.0.23%26logger_id%3Df7320741-707c-2f7e-1947-390b18a93e99&cancel_url=https%3A%2F%2Fwww.rankwatch.com%2Flearning%2Fuser%2Fsimple-fb-connect%2Freturn%3Ferror%3Daccess_denied%26error_code%3D200%26error_description%3DPermissions%2Berror%26error_reason%3Duser_denied%26state%3Daa68bcc193612233a0511106f69f9203%23_%3D_&display=page&locale=en_GB&logger_id=f7320741-707c-2f7e-1947-390b18a93e99"}</a>,</p> | <p dir="auto">Hello,</p>
<p dir="auto">To avoid crawling duplicated URLs, I store all crawled URLs in database, and then check if one URL requested is already in DB or not.</p>
<p dir="auto">Here is my filter class:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="class CustomFilter(RFPDupeFilter):
"""A dupe filter that considers specific ids in the url"""
db = DBManager(settings[ 'MONGODB_VISITED_URLS' ])
def request_seen(self, request):
if self.db.exist("url", request.url):
return True
else:
visitedUrl = VisitedURL()
visitedUrl['url'] = request.url
visitedUrl['orgDupURL'] = None
self.db.insert(visitedUrl)
return False"><pre class="notranslate"><span class="pl-k">class</span> <span class="pl-v">CustomFilter</span>(<span class="pl-v">RFPDupeFilter</span>):
<span class="pl-s">"""A dupe filter that considers specific ids in the url"""</span>
<span class="pl-s1">db</span> <span class="pl-c1">=</span> <span class="pl-v">DBManager</span>(<span class="pl-s1">settings</span>[ <span class="pl-s">'MONGODB_VISITED_URLS'</span> ])
<span class="pl-k">def</span> <span class="pl-en">request_seen</span>(<span class="pl-s1">self</span>, <span class="pl-s1">request</span>):
<span class="pl-k">if</span> <span class="pl-s1">self</span>.<span class="pl-s1">db</span>.<span class="pl-en">exist</span>(<span class="pl-s">"url"</span>, <span class="pl-s1">request</span>.<span class="pl-s1">url</span>):
<span class="pl-k">return</span> <span class="pl-c1">True</span>
<span class="pl-k">else</span>:
<span class="pl-s1">visitedUrl</span> <span class="pl-c1">=</span> <span class="pl-v">VisitedURL</span>()
<span class="pl-s1">visitedUrl</span>[<span class="pl-s">'url'</span>] <span class="pl-c1">=</span> <span class="pl-s1">request</span>.<span class="pl-s1">url</span>
<span class="pl-s1">visitedUrl</span>[<span class="pl-s">'orgDupURL'</span>] <span class="pl-c1">=</span> <span class="pl-c1">None</span>
<span class="pl-s1">self</span>.<span class="pl-s1">db</span>.<span class="pl-en">insert</span>(<span class="pl-s1">visitedUrl</span>)
<span class="pl-k">return</span> <span class="pl-c1">False</span></pre></div>
<p dir="auto">However I found request_seen method gets called 3 times for one page crawling, here are stack trace for the 3 calls in order:</p>
<p dir="auto">------------------------------ 1<br>
request_seen [filter.py:18]<br>
enqueue_request [scheduler.py:51]<br>
schedule [engine.py:189]<br>
crawl [engine.py:183]<br>
_process_spidermw_output [scraper.py:183]<br>
[defer.py:63]<br>
_oneWorkUnit [task.py:491]<br>
_tick [task.py:645]<br>
runUntilCurrent [base.py:825]<br>
mainLoop [base.py:1203]<br>
run [base.py:1194]<br>
start [crawler.py:251]<br>
[start.py:15]<br>
run [pydevd.py:931]<br>
[pydevd.py:1524]</p>
<p dir="auto">------------------------------ 2<br>
request_seen [filter.py:18]<br>
enqueue_request [scheduler.py:51]<br>
schedule [engine.py:189]<br>
crawl [engine.py:183]<br>
_handle_downloader_output [engine.py:155]<br>
_runCallbacks [defer.py:588]<br>
_startRunCallbacks [defer.py:501]<br>
callback [defer.py:393]<br>
_runCallbacks [defer.py:588]<br>
_startRunCallbacks [defer.py:501]<br>
callback [defer.py:393]<br>
connectionLost [http11.py:320]<br>
_bodyDataFinished_CONNECTED [_newclient.py:1161]<br>
dispatcher [_newclient.py:916]<br>
connectionLost [_newclient.py:537]<br>
_disconnectParser [_newclient.py:1513]<br>
_finishResponse_WAITING [_newclient.py:1487]<br>
dispatcher [_newclient.py:916]<br>
_finished [_newclient.py:440]<br>
dataReceived [http.py:1478]<br>
rawDataReceived [_newclient.py:299]<br>
dataReceived [basic.py:578]<br>
dataReceived [_newclient.py:385]<br>
dataReceived [_newclient.py:1533]<br>
dataReceived [endpoints.py:102]<br>
_dataReceived [tcp.py:215]<br>
doRead [tcp.py:209]<br>
_doReadOrWrite [posixbase.py:597]<br>
callWithContext [context.py:81]<br>
callWithContext [context.py:118]<br>
callWithContext [log.py:84]<br>
callWithLogger [log.py:101]<br>
doPoll [epollreactor.py:396]<br>
mainLoop [base.py:1206]<br>
run [base.py:1194]<br>
start [crawler.py:251]<br>
[start.py:15]<br>
run [pydevd.py:931]<br>
[pydevd.py:1524]</p>
<p dir="auto">------------------------------ 3<br>
request_seen [filter.py:18]<br>
enqueue_request [scheduler.py:51]<br>
schedule [engine.py:189]<br>
crawl [engine.py:183]<br>
_handle_downloader_output [engine.py:155]<br>
_runCallbacks [defer.py:588]<br>
_startRunCallbacks [defer.py:501]<br>
callback [defer.py:393]<br>
_runCallbacks [defer.py:588]<br>
_startRunCallbacks [defer.py:501]<br>
callback [defer.py:393]<br>
connectionLost [http11.py:320]<br>
_bodyDataFinished_CONNECTED [_newclient.py:1161]<br>
dispatcher [_newclient.py:916]<br>
connectionLost [_newclient.py:537]<br>
_disconnectParser [_newclient.py:1513]<br>
_finishResponse_WAITING [_newclient.py:1487]<br>
dispatcher [_newclient.py:916]<br>
_finished [_newclient.py:440]<br>
dataReceived [http.py:1478]<br>
rawDataReceived [_newclient.py:299]<br>
dataReceived [basic.py:578]<br>
dataReceived [_newclient.py:385]<br>
dataReceived [_newclient.py:1533]<br>
dataReceived [endpoints.py:102]<br>
dataReceived [policies.py:120]<br>
_flushReceiveBIO [tls.py:392]<br>
dataReceived [tls.py:422]<br>
_dataReceived [tcp.py:215]<br>
doRead [tcp.py:209]<br>
_doReadOrWrite [posixbase.py:597]<br>
callWithContext [context.py:81]<br>
callWithContext [context.py:118]<br>
callWithContext [log.py:84]<br>
callWithLogger [log.py:101]<br>
doPoll [epollreactor.py:396]<br>
mainLoop [base.py:1206]<br>
run [base.py:1194]<br>
start [crawler.py:251]<br>
[start.py:15]<br>
run [pydevd.py:931]<br>
[pydevd.py:1524]</p>
<p dir="auto">I thought that this method should be called only once for one page, why it gets called 3 times?<br>
this brought me a problem, seems the DB access gets a pb, the result are not reflected, in the end I have 3 record in DB.</p>
<p dir="auto">I will look into the pb, but I would still need to understand why this method gets 3 calls, did I make something wrong?</p>
<p dir="auto">thanks and best regards</p> | 0 |
<p dir="auto">See <a href="https://github.com/elastic/elasticsearch/blob/master/core/src/main/java/org/elasticsearch/cluster/metadata/MetaData.java#L1150">https://github.com/elastic/elasticsearch/blob/master/core/src/main/java/org/elasticsearch/cluster/metadata/MetaData.java#L1150</a>. If an element is not recognized in a cluster state, it is simply ignored.</p> | <p dir="auto">If a plugin adds custom cluster state parts and the plugin isn't installed on all nodes then it could cause custom metadata to be removed by a node just by reading it.</p>
<p dir="auto"><a href="https://github.com/elastic/elasticsearch/pull/21243#discussion_r87375313" data-hovercard-type="pull_request" data-hovercard-url="/elastic/elasticsearch/pull/21243/hovercard">Brought up</a> while reviewing <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="186571273" data-permission-text="Title is private" data-url="https://github.com/elastic/elasticsearch/issues/21243" data-hovercard-type="pull_request" data-hovercard-url="/elastic/elasticsearch/pull/21243/hovercard" href="https://github.com/elastic/elasticsearch/pull/21243">#21243</a>.</p> | 1 |
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>Dubbo version: 2.7.3</li>
<li>Operating System version: Windos7 and CentOS Linux version 4.14.67-2dev917.el7.x86_64</li>
<li>Java version: 1.8.0_201</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<ol dir="auto">
<li>Started a service with Google Protobuf type. Service Interface like this.</li>
</ol>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="public interface GooglePbBasicService {
CDubboGooglePBResponseType sayHello(CDubboGooglePBRequestType request);
}"><pre class="notranslate"><code class="notranslate">public interface GooglePbBasicService {
CDubboGooglePBResponseType sayHello(CDubboGooglePBRequestType request);
}
</code></pre></div>
<ol start="2" dir="auto">
<li>New generic reference with gerneric("protobuf-json")</li>
</ol>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ReferenceConfig referenceConfig = new ReferenceConfig();
.....
referenceConfig.setInterface(GenericService.class);
referenceConfig.setGeneric("protobuf-json");
GenericService service = referenceConfig.get();"><pre class="notranslate"><code class="notranslate">ReferenceConfig referenceConfig = new ReferenceConfig();
.....
referenceConfig.setInterface(GenericService.class);
referenceConfig.setGeneric("protobuf-json");
GenericService service = referenceConfig.get();
</code></pre></div>
<ol start="3" dir="auto">
<li>Use referenceConfig to get a client and invoke service.</li>
</ol>
<h3 dir="auto">Expected Result</h3>
<p dir="auto">The Request will be send and be processed by GenericFilter with "protobuf-json" serialization.And service return generic result to client.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="
if (StringUtils.isEmpty(generic)
......
} else if (ProtocolUtils.isJavaGenericSerialization(generic)) {
.......
} else if (ProtocolUtils.isBeanGenericSerialization(generic)) {
.....
} else if (ProtocolUtils.isProtobufGenericSerialization(generic)) {
//can not reach this code
}"><pre class="notranslate"><code class="notranslate">
if (StringUtils.isEmpty(generic)
......
} else if (ProtocolUtils.isJavaGenericSerialization(generic)) {
.......
} else if (ProtocolUtils.isBeanGenericSerialization(generic)) {
.....
} else if (ProtocolUtils.isProtobufGenericSerialization(generic)) {
//can not reach this code
}
</code></pre></div>
<h3 dir="auto">Actual Result</h3>
<p dir="auto">The client work well in Windows7,but failed in Linux.</p>
<p dir="auto">What actually happens?<br>
In service side, the request from Windows7 with invocation contains "generic = protobuf-json".<br>
But the request from Linux with invocation contains "generic = true", which cause invoke failed.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="org.apache.dubbo.rpc.service.GenericException: java.lang.ClassCastException: java.lang.String cannot be cast to com.ctrip.hotel.productmatch.imagesearchrank.api.proto.ImageSearchRankRequestType
java.lang.ClassCastException: java.lang.String cannot be cast to com.ctrip.hotel.productmatch.imagesearchrank.api.proto.ImageSearchRankRequestType
at org.apache.dubbo.common.bytecode.Wrapper1.invokeMethod(Wrapper1.java)
at org.apache.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:47)
at org.apache.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:84)
at com.ctrip.framework.cdubbo.internal.delegate.callback.StreamInvoker.invoke(StreamInvoker.java:29)
at org.apache.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:56)
at org.apache.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:56)
at org.apache.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:55)
at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:82)
at org.apache.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:48)
at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:82)
at org.apache.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:81)
at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:82)
at org.apache.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:92)
at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:82)
at org.apache.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:96)
at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:82)
at org.apache.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:141)
at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:82)
at org.apache.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:38)
at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:82)
at org.apache.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:41)
at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:82)
at com.ctrip.framework.cdubbo.internal.health.HealthCheckFilter.invoke(HealthCheckFilter.java:74)
at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:82)
at com.ctrip.framework.cdubbo.internal.metadata.MetadataFilter.invoke(MetadataFilter.java:41)
at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:82)
at com.ctrip.framework.cdubbo.internal.delegate.server.CDubboServerInvoker.invoke(CDubboServerInvoker.java:66)
at com.ctrip.framework.cdubbo.internal.filter.CatProviderFilter.invoke(CatProviderFilter.java:28)
at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:82)
at com.ctrip.framework.cdubbo.internal.ratelimit.RateLimitFilter.invoke(RateLimitFilter.java:52)
at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:82)
at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper$CallbackRegistrationInvoker.invoke(ProtocolFilterWrapper.java:157)
at org.apache.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:152)
at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:102)
at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:193)
at org.apache.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:51)
at com.ctrip.framework.cdubbo.internal.delegate.CDubboChannelHandlerDelegate.doReceivedRequest(CDubboChannelHandlerDelegate.java:113)
at com.ctrip.framework.cdubbo.internal.delegate.CDubboChannelHandlerDelegate.received(CDubboChannelHandlerDelegate.java:68)
at org.apache.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:57)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)"><pre class="notranslate"><code class="notranslate">org.apache.dubbo.rpc.service.GenericException: java.lang.ClassCastException: java.lang.String cannot be cast to com.ctrip.hotel.productmatch.imagesearchrank.api.proto.ImageSearchRankRequestType
java.lang.ClassCastException: java.lang.String cannot be cast to com.ctrip.hotel.productmatch.imagesearchrank.api.proto.ImageSearchRankRequestType
at org.apache.dubbo.common.bytecode.Wrapper1.invokeMethod(Wrapper1.java)
at org.apache.dubbo.rpc.proxy.javassist.JavassistProxyFactory$1.doInvoke(JavassistProxyFactory.java:47)
at org.apache.dubbo.rpc.proxy.AbstractProxyInvoker.invoke(AbstractProxyInvoker.java:84)
at com.ctrip.framework.cdubbo.internal.delegate.callback.StreamInvoker.invoke(StreamInvoker.java:29)
at org.apache.dubbo.config.invoker.DelegateProviderMetaDataInvoker.invoke(DelegateProviderMetaDataInvoker.java:56)
at org.apache.dubbo.rpc.protocol.InvokerWrapper.invoke(InvokerWrapper.java:56)
at org.apache.dubbo.rpc.filter.ExceptionFilter.invoke(ExceptionFilter.java:55)
at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:82)
at org.apache.dubbo.rpc.filter.TimeoutFilter.invoke(TimeoutFilter.java:48)
at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:82)
at org.apache.dubbo.rpc.protocol.dubbo.filter.TraceFilter.invoke(TraceFilter.java:81)
at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:82)
at org.apache.dubbo.monitor.support.MonitorFilter.invoke(MonitorFilter.java:92)
at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:82)
at org.apache.dubbo.rpc.filter.ContextFilter.invoke(ContextFilter.java:96)
at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:82)
at org.apache.dubbo.rpc.filter.GenericFilter.invoke(GenericFilter.java:141)
at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:82)
at org.apache.dubbo.rpc.filter.ClassLoaderFilter.invoke(ClassLoaderFilter.java:38)
at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:82)
at org.apache.dubbo.rpc.filter.EchoFilter.invoke(EchoFilter.java:41)
at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:82)
at com.ctrip.framework.cdubbo.internal.health.HealthCheckFilter.invoke(HealthCheckFilter.java:74)
at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:82)
at com.ctrip.framework.cdubbo.internal.metadata.MetadataFilter.invoke(MetadataFilter.java:41)
at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:82)
at com.ctrip.framework.cdubbo.internal.delegate.server.CDubboServerInvoker.invoke(CDubboServerInvoker.java:66)
at com.ctrip.framework.cdubbo.internal.filter.CatProviderFilter.invoke(CatProviderFilter.java:28)
at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:82)
at com.ctrip.framework.cdubbo.internal.ratelimit.RateLimitFilter.invoke(RateLimitFilter.java:52)
at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper$1.invoke(ProtocolFilterWrapper.java:82)
at org.apache.dubbo.rpc.protocol.ProtocolFilterWrapper$CallbackRegistrationInvoker.invoke(ProtocolFilterWrapper.java:157)
at org.apache.dubbo.rpc.protocol.dubbo.DubboProtocol$1.reply(DubboProtocol.java:152)
at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.handleRequest(HeaderExchangeHandler.java:102)
at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeHandler.received(HeaderExchangeHandler.java:193)
at org.apache.dubbo.remoting.transport.DecodeHandler.received(DecodeHandler.java:51)
at com.ctrip.framework.cdubbo.internal.delegate.CDubboChannelHandlerDelegate.doReceivedRequest(CDubboChannelHandlerDelegate.java:113)
at com.ctrip.framework.cdubbo.internal.delegate.CDubboChannelHandlerDelegate.received(CDubboChannelHandlerDelegate.java:68)
at org.apache.dubbo.remoting.transport.dispatcher.ChannelEventRunnable.run(ChannelEventRunnable.java:57)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
</code></pre></div> | <ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>Dubbo version: 2.6.2</li>
<li>Operating System version: MAC</li>
<li>Java version: 1.8.0_162</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<ol dir="auto">
<li>
<p dir="auto">通过url直连的方式引用远程服务<br>
<code class="notranslate">@Reference(url = "172.16.105.142:20082") private IUser userService;</code></p>
</li>
<li>
<p dir="auto">如果不加断点调试,userService可以正常rpc调用<br>
断点加载其他位置也正常,但是我在AbstractAnnotationConfigBeanBuilder这个类中加上一个断点调试之后,报错<br>
AbstractAnnotationConfigBeanBuilder#build<br>
` public final B build() throws Exception {</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" checkDependencies();
B bean = doBuild();
configureBean(bean);
if (logger.isInfoEnabled()) {
logger.info(bean + " has been built.");
}
return bean;"><pre class="notranslate"><code class="notranslate"> checkDependencies();
B bean = doBuild();
configureBean(bean);
if (logger.isInfoEnabled()) {
logger.info(bean + " has been built.");
}
return bean;
</code></pre></div>
<p dir="auto">}`</p>
</li>
</ol>
<p dir="auto">断点的位置为configureBean(bean);这一行。然后通过debug的模式运行到这一行之后,报错,继续运行会导致服务userService在之后的程序中为null</p>
<h3 dir="auto">Expected Result</h3>
<p dir="auto">预期结果:不报错,userService不为空</p>
<h3 dir="auto">Actual Result</h3>
<p dir="auto">错误栈如下:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="> java.lang.reflect.InvocationTargetException: null
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_162]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_162]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_162]
at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_162]
at com.alibaba.dubbo.config.AbstractConfig.toString(AbstractConfig.java:474) ~[dubbo-2.6.2.jar:2.6.2]
at com.alibaba.dubbo.config.spring.beans.factory.annotation.AbstractAnnotationConfigBeanBuilder.build(AbstractAnnotationConfigBeanBuilder.java:76) [dubbo-2.6.2.jar:2.6.2]
at com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor.buildReferenceBean(ReferenceAnnotationBeanPostProcessor.java:385) [dubbo-2.6.2.jar:2.6.2]
at com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor.access$100(ReferenceAnnotationBeanPostProcessor.java:65) [dubbo-2.6.2.jar:2.6.2]
at com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor$ReferenceFieldElement.inject(ReferenceAnnotationBeanPostProcessor.java:363) [dubbo-2.6.2.jar:2.6.2]
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:90) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE]
at com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor.postProcessPropertyValues(ReferenceAnnotationBeanPostProcessor.java:92) [dubbo-2.6.2.jar:2.6.2]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1416) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:592) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE]
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE]
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:845) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE]
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:877) ~[spring-context-5.1.8.RELEASE.jar:5.1.8.RELEASE]
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:549) ~[spring-context-5.1.8.RELEASE.jar:5.1.8.RELEASE]
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:140) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE]
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:742) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE]
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:389) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:311) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1213) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1202) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE]
at com.example.demo.DemoApplication.main(DemoApplication.java:12) ~[classes/:na]
Caused by: java.lang.IllegalStateException: <dubbo:reference interface="" /> interface not allow null!
at com.alibaba.dubbo.config.ReferenceConfig.init(ReferenceConfig.java:191) ~[dubbo-2.6.2.jar:2.6.2]
at com.alibaba.dubbo.config.ReferenceConfig.get(ReferenceConfig.java:163) ~[dubbo-2.6.2.jar:2.6.2]
at com.alibaba.dubbo.config.spring.ReferenceBean.getObject(ReferenceBean.java:66) ~[dubbo-2.6.2.jar:2.6.2]
... 28 common frames omitted"><pre class="notranslate"><code class="notranslate">> java.lang.reflect.InvocationTargetException: null
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_162]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_162]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_162]
at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_162]
at com.alibaba.dubbo.config.AbstractConfig.toString(AbstractConfig.java:474) ~[dubbo-2.6.2.jar:2.6.2]
at com.alibaba.dubbo.config.spring.beans.factory.annotation.AbstractAnnotationConfigBeanBuilder.build(AbstractAnnotationConfigBeanBuilder.java:76) [dubbo-2.6.2.jar:2.6.2]
at com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor.buildReferenceBean(ReferenceAnnotationBeanPostProcessor.java:385) [dubbo-2.6.2.jar:2.6.2]
at com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor.access$100(ReferenceAnnotationBeanPostProcessor.java:65) [dubbo-2.6.2.jar:2.6.2]
at com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor$ReferenceFieldElement.inject(ReferenceAnnotationBeanPostProcessor.java:363) [dubbo-2.6.2.jar:2.6.2]
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:90) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE]
at com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor.postProcessPropertyValues(ReferenceAnnotationBeanPostProcessor.java:92) [dubbo-2.6.2.jar:2.6.2]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1416) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:592) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:515) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE]
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:318) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199) [spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE]
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:845) ~[spring-beans-5.1.8.RELEASE.jar:5.1.8.RELEASE]
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:877) ~[spring-context-5.1.8.RELEASE.jar:5.1.8.RELEASE]
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:549) ~[spring-context-5.1.8.RELEASE.jar:5.1.8.RELEASE]
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:140) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE]
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:742) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE]
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:389) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:311) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1213) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1202) ~[spring-boot-2.1.6.RELEASE.jar:2.1.6.RELEASE]
at com.example.demo.DemoApplication.main(DemoApplication.java:12) ~[classes/:na]
Caused by: java.lang.IllegalStateException: <dubbo:reference interface="" /> interface not allow null!
at com.alibaba.dubbo.config.ReferenceConfig.init(ReferenceConfig.java:191) ~[dubbo-2.6.2.jar:2.6.2]
at com.alibaba.dubbo.config.ReferenceConfig.get(ReferenceConfig.java:163) ~[dubbo-2.6.2.jar:2.6.2]
at com.alibaba.dubbo.config.spring.ReferenceBean.getObject(ReferenceBean.java:66) ~[dubbo-2.6.2.jar:2.6.2]
... 28 common frames omitted
</code></pre></div> | 0 |
<p dir="auto">No matter in which line is dot, code is dislocated after formatting:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/11413326/7524334/f7c87c24-f509-11e4-8534-c832cef9cb96.png"><img src="https://cloud.githubusercontent.com/assets/11413326/7524334/f7c87c24-f509-11e4-8534-c832cef9cb96.png" alt="format_bug" style="max-width: 100%;"></a></p>
<p dir="auto">My environment:<br>
Microsoft Visual Studio Community 2013 (12.0.31101.00 Update 4)<br>
TypeScript 1.5.40427.1</p> | <p dir="auto">Before we would have:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var doSomethingThatReturnsAPromise: any;
this.doSomethingThatReturnsAPromise()
.then(() => {
// more code
})
.then(() => {
// even more code
});"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">doSomethingThatReturnsAPromise</span>: <span class="pl-smi">any</span><span class="pl-kos">;</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">doSomethingThatReturnsAPromise</span><span class="pl-kos">(</span><span class="pl-kos">)</span>
<span class="pl-kos">.</span><span class="pl-en">then</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-c">// more code</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-kos">.</span><span class="pl-en">then</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-c">// even more code</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">Now we have</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var doSomethingThatReturnsAPromise: any;
this.doSomethingThatReturnsAPromise()
.then(() => {
// more code
})
.then(() => {
// even more code
});"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">doSomethingThatReturnsAPromise</span>: <span class="pl-smi">any</span><span class="pl-kos">;</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">doSomethingThatReturnsAPromise</span><span class="pl-kos">(</span><span class="pl-kos">)</span>
<span class="pl-kos">.</span><span class="pl-en">then</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-c">// more code</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-kos">.</span><span class="pl-en">then</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-c">// even more code</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">Raised from <a href="http://stackoverflow.com/questions/28298624/typescript-1-4-indentation-issue" rel="nofollow">SO</a></p> | 1 |
<p dir="auto">I'm using pandas version '0.7.0rc1' with Python 2.7.2 on Windows XP.</p>
<p dir="auto">When writing HDF files, pandas tries to convert datetime index values to an ordinal using time.mktime. mktime does not support any dates before 1969.</p>
<p dir="auto">error output shows the offending line to be:</p>
<blockquote>
<p dir="auto">File "C:\Python27\lib\site-packages\pandas\io\pytables.py", line 697, in _convert_index<br>
converted = np.array([time.mktime(v.timetuple()) for v in values],</p>
</blockquote>
<p dir="auto">I suggest datetime.toordinal() instead of time.mktime(). However, doing so break existing HDF files.</p>
<p dir="auto">test program to demonstrate the problem</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import pandas
import numpy
newIndex = pandas.DateRange('1/1/2000', periods=8)
newDF = pandas.DataFrame(numpy.random.randn(8, 3), index=newIndex,
columns=['A', 'B', 'C'])
oldIndex = pandas.DateRange('1/1/1950', periods=8)
oldDF = pandas.DataFrame(numpy.random.randn(8, 3), index=oldIndex,
columns=['A', 'B', 'C'])
store = pandas.io.pytables.HDFStore('store.h5')
print '--- writing new ---'
store['newDF'] = newDF
print '--- writing old ---'
store['oldDF'] = oldDF
print 'done'"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">pandas</span>
<span class="pl-k">import</span> <span class="pl-s1">numpy</span>
<span class="pl-s1">newIndex</span> <span class="pl-c1">=</span> <span class="pl-s1">pandas</span>.<span class="pl-v">DateRange</span>(<span class="pl-s">'1/1/2000'</span>, <span class="pl-s1">periods</span><span class="pl-c1">=</span><span class="pl-c1">8</span>)
<span class="pl-s1">newDF</span> <span class="pl-c1">=</span> <span class="pl-s1">pandas</span>.<span class="pl-v">DataFrame</span>(<span class="pl-s1">numpy</span>.<span class="pl-s1">random</span>.<span class="pl-en">randn</span>(<span class="pl-c1">8</span>, <span class="pl-c1">3</span>), <span class="pl-s1">index</span><span class="pl-c1">=</span><span class="pl-s1">newIndex</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-s1">oldIndex</span> <span class="pl-c1">=</span> <span class="pl-s1">pandas</span>.<span class="pl-v">DateRange</span>(<span class="pl-s">'1/1/1950'</span>, <span class="pl-s1">periods</span><span class="pl-c1">=</span><span class="pl-c1">8</span>)
<span class="pl-s1">oldDF</span> <span class="pl-c1">=</span> <span class="pl-s1">pandas</span>.<span class="pl-v">DataFrame</span>(<span class="pl-s1">numpy</span>.<span class="pl-s1">random</span>.<span class="pl-en">randn</span>(<span class="pl-c1">8</span>, <span class="pl-c1">3</span>), <span class="pl-s1">index</span><span class="pl-c1">=</span><span class="pl-s1">oldIndex</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-s1">store</span> <span class="pl-c1">=</span> <span class="pl-s1">pandas</span>.<span class="pl-s1">io</span>.<span class="pl-s1">pytables</span>.<span class="pl-v">HDFStore</span>(<span class="pl-s">'store.h5'</span>)
<span class="pl-k">print</span> <span class="pl-s">'--- writing new ---'</span>
<span class="pl-s1">store</span>[<span class="pl-s">'newDF'</span>] <span class="pl-c1">=</span> <span class="pl-s1">newDF</span>
<span class="pl-k">print</span> <span class="pl-s">'--- writing old ---'</span>
<span class="pl-s1">store</span>[<span class="pl-s">'oldDF'</span>] <span class="pl-c1">=</span> <span class="pl-s1">oldDF</span>
<span class="pl-k">print</span> <span class="pl-s">'done'</span></pre></div> | <p dir="auto">I am having trouble with pre-epoch dates working with HDFStore, getting an OverflowError in mktime, as shown below.</p>
<p dir="auto">Sample code is:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" import numpy as np
from pandas import *
def panda_test():
# generate some data
data = np.random.rand(50,5)
# generate some dates
dates = DateRange('1/1/1969',periods=50)
# generate column headings
cols = ['A','B','C','D','E']
df = DataFrame(data,index=dates,columns=cols)
# save to HDF5Store
store = HDFStore('bugzilla.h5', mode='w')
store['df'] = df # This gives: OverflowError: mktime argument out of range
store.close()
if __name__ == '__main__':
panda_test()"><pre class="notranslate"><code class="notranslate"> import numpy as np
from pandas import *
def panda_test():
# generate some data
data = np.random.rand(50,5)
# generate some dates
dates = DateRange('1/1/1969',periods=50)
# generate column headings
cols = ['A','B','C','D','E']
df = DataFrame(data,index=dates,columns=cols)
# save to HDF5Store
store = HDFStore('bugzilla.h5', mode='w')
store['df'] = df # This gives: OverflowError: mktime argument out of range
store.close()
if __name__ == '__main__':
panda_test()
</code></pre></div>
<p dir="auto">The error I get is:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" Traceback (most recent call last):
File "C:\Users\Salman Ansari\Documents\Python\VAR\src\bugzilla.py", line 27, in <module>
panda_test()
File "C:\Users\Salman Ansari\Documents\Python\VAR\src\bugzilla.py", line 22, in panda_test
store['df'] = df
File "C:\Python27\lib\site-packages\pandas-0.4.0-py2.7-win32.egg\pandas\io\pytables.py", line 122, in __setitem__
self.put(key, value)
File "C:\Python27\lib\site-packages\pandas-0.4.0-py2.7-win32.egg\pandas\io\pytables.py", line 260, in put
comp=compression)
File "C:\Python27\lib\site-packages\pandas-0.4.0-py2.7-win32.egg\pandas\io\pytables.py", line 327, in _write_to_group
wrapper(value)
File "C:\Python27\lib\site-packages\pandas-0.4.0-py2.7-win32.egg\pandas\io\pytables.py", line 325, in <lambda>
wrapper = lambda value: handler(group, value)
File "C:\Python27\lib\site-packages\pandas-0.4.0-py2.7-win32.egg\pandas\io\pytables.py", line 335, in _write_frame
self._write_block_manager(group, df._data)
File "C:\Python27\lib\site-packages\pandas-0.4.0-py2.7-win32.egg\pandas\io\pytables.py", line 346, in _write_block_manager
self._write_index(group, 'axis%d' % i, ax)
File "C:\Python27\lib\site-packages\pandas-0.4.0-py2.7-win32.egg\pandas\io\pytables.py", line 432, in _write_index
converted, kind, _ = _convert_index(index)
File "C:\Python27\lib\site-packages\pandas-0.4.0-py2.7-win32.egg\pandas\io\pytables.py", line 698, in _convert_index
for v in values], dtype=np.int64)
OverflowError: mktime argument out of range
Closing remaining open files: bugzilla.h5... done"><pre class="notranslate"><code class="notranslate"> Traceback (most recent call last):
File "C:\Users\Salman Ansari\Documents\Python\VAR\src\bugzilla.py", line 27, in <module>
panda_test()
File "C:\Users\Salman Ansari\Documents\Python\VAR\src\bugzilla.py", line 22, in panda_test
store['df'] = df
File "C:\Python27\lib\site-packages\pandas-0.4.0-py2.7-win32.egg\pandas\io\pytables.py", line 122, in __setitem__
self.put(key, value)
File "C:\Python27\lib\site-packages\pandas-0.4.0-py2.7-win32.egg\pandas\io\pytables.py", line 260, in put
comp=compression)
File "C:\Python27\lib\site-packages\pandas-0.4.0-py2.7-win32.egg\pandas\io\pytables.py", line 327, in _write_to_group
wrapper(value)
File "C:\Python27\lib\site-packages\pandas-0.4.0-py2.7-win32.egg\pandas\io\pytables.py", line 325, in <lambda>
wrapper = lambda value: handler(group, value)
File "C:\Python27\lib\site-packages\pandas-0.4.0-py2.7-win32.egg\pandas\io\pytables.py", line 335, in _write_frame
self._write_block_manager(group, df._data)
File "C:\Python27\lib\site-packages\pandas-0.4.0-py2.7-win32.egg\pandas\io\pytables.py", line 346, in _write_block_manager
self._write_index(group, 'axis%d' % i, ax)
File "C:\Python27\lib\site-packages\pandas-0.4.0-py2.7-win32.egg\pandas\io\pytables.py", line 432, in _write_index
converted, kind, _ = _convert_index(index)
File "C:\Python27\lib\site-packages\pandas-0.4.0-py2.7-win32.egg\pandas\io\pytables.py", line 698, in _convert_index
for v in values], dtype=np.int64)
OverflowError: mktime argument out of range
Closing remaining open files: bugzilla.h5... done
</code></pre></div>
<p dir="auto">Any ideas, please?</p> | 1 |
<h2 dir="auto">📝 Performance Stats on Taskbar</h2>
<p dir="auto">This feature is On/Off, with ability to customize what kind of stats are to be displayed in the taskbar.</p>
<p dir="auto">To have the stats on taskbar, but not on the main screen is to SAVE screen estate, also user can rapidly take a glimpse of the computer's stats without need to move the existing windows or minimize windows (i.e. Issue with RainMeter, Sidebar Diagnostics).</p>
<p dir="auto">Great examples of this include:<br>
(1) XMeter(<a href="https://entropy6.com/xmeters/" rel="nofollow">https://entropy6.com/xmeters/</a>)<br>
(2) OSS - TrafficMonitor (<a href="https://github.com/zhongyang219/TrafficMonitor/blob/master/README_en-us.md">https://github.com/zhongyang219/TrafficMonitor/blob/master/README_en-us.md</a>)</p>
<p dir="auto">Similar MacOS product:<br>
(1) iStats</p>
<hr>
<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 |
|
<h3 dir="auto">Version</h3>
<p dir="auto">2.3.3</p>
<h3 dir="auto">Reproduction link</h3>
<p dir="auto"><a href="http://plnkr.co/edit/AiNse4SDOQIiH1RlnKoE?p=preview" rel="nofollow">http://plnkr.co/edit/AiNse4SDOQIiH1RlnKoE?p=preview</a></p>
<h3 dir="auto">Steps to reproduce</h3>
<ol dir="auto">
<li>Make a Polymer element in a separate file</li>
<li>Import the Polymer element into a main page that makes a new instance of Vue</li>
<li>Run the page in different browsers (particularly, Chrome and one other), notice the number of alert boxes, as well as the Render Order count, in different browsers.</li>
</ol>
<h3 dir="auto">What is expected?</h3>
<p dir="auto">At the end of the page loading, every Polymer element should only have one copy of the template DOM structure within the custom element (same for Shadow DOM or Shady DOM)</p>
<h3 dir="auto">What is actually happening?</h3>
<p dir="auto">In Chrome, regardless of which version of Polymer and which DOM structure used, the template structure was rendered <em>twice</em>. This problem is particular visible when using Shady DOM in Polymer v1, which will actually display the element structure twice.</p>
<hr>
<p dir="auto">I have traced the Vue code, and identified that the trigger is the call to document.createElement('tag'). For FireFox, IE and Edge, this call (in this example) goes into polyfill, which definitely has different behavior when comparing to the native function inside Chrome.</p>
<p dir="auto">It looks like, at the point of , Chrome has already created the template structure, and then later on when Vue starts to attach the bindings, it loops through the entire template structure within the Polymer element, and calls document.createElement once every inner element within the template. This may be one of the possible causes making the whole DOM repeated.</p>
<p dir="auto">This is particularly visible when using Polymer v1 with Shady DOM, which makes users actually see the duplicated elements; for other combinations (either using Shadow DOM or using Polymer v2), the repeated structure would seem to be removed from DOM. Yet, by noticing the alert box I have hooked up in the example, it is clear that the element got created twice each time it is used. In the example I provided, if you add a line saying <script>Polymer={dom:'shadow'}</script>, it will force Polymer v1 to use Shadow DOM. At that moment, the repeating DOM will disappear, but the alert box still comes up 4 times instead of 2, and Render Order # definitely shows the artifact.</p>
<p dir="auto">The reason I posted the behavior here in the Vue project is that, IMO, looping through the inner template structure within the Polymer element, and calling document.createElement to every single inner element, may not be the optimal way; yet, to be honest, I am merely tracing and describing as much observation I have made as possible. I am not a UI professional, and I am happy to leave this issue to your judgment. Thank you very much for your attention.</p> | <h3 dir="auto">Version</h3>
<p dir="auto">2.5.21</p>
<h3 dir="auto">Reproduction link</h3>
<p dir="auto"><a href="https://codepen.io/anon/pen/gZGPPL" rel="nofollow">https://codepen.io/anon/pen/gZGPPL</a></p>
<h3 dir="auto">Steps to reproduce</h3>
<p dir="auto">1.change the components order<br>
2.console.log the $children</p>
<h3 dir="auto">What is expected?</h3>
<p dir="auto">should change the $children order corretly</p>
<h3 dir="auto">What is actually happening?</h3>
<p dir="auto">$children order not changed</p> | 0 |
<p dir="auto">If client http header contain Expect: 100-continue</p>
<p dir="auto">client post multipart/form-data Sometimes there will be<br>
"multipart: Part Read: WSARecv tcp <em>.</em>.138.250:80: i/o timeout" ParseMultipartForm(102400) -> /mime/multipart/multipart.go 239<br>
This is immediately returned error.<br>
Did not arrive ReadTimeout</p>
<p dir="auto">The same service, the same machine, open the IIS running do not have this problem.</p> | <pre class="notranslate">The http Client should probably support Expect: 100-continue. The server does.
It does introduce a new round-trip, though, so we should probably only send it when the
data size exceeds some threshold. Probably the same threshold we use for consuming
request bodies when a handler doesn't (maxPostHandlerReadBytes).
I think we could see if we know the size of the request body (just as NewRequest does,
checking for a few known types), but if the Body is non-nil and the ContentLength is
<=0 (unknown), we instead slurp up the Body into a bytes.Buffer to see if it's >=
someThreshold. If so, we replace the Body with a io.MultiReader(slurped, rest) and
proceed to do a 100-continue. If not, we blast it away HTTP/1.0-style.</pre> | 1 |
<p dir="auto">The content of a popover is invisible when the popover is on a .input-append input node.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/7dddc83c245c1f6c26bb35abe778b9dac0fba4803d958505c623e6a9a0b861bf/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f34353734302f3131313437312f30363661383061302d366166372d313165322d383531662d6433383864326465363661652e706e67"><img src="https://camo.githubusercontent.com/7dddc83c245c1f6c26bb35abe778b9dac0fba4803d958505c623e6a9a0b861bf/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f34353734302f3131313437312f30363661383061302d366166372d313165322d383531662d6433383864326465363661652e706e67" alt="githubissue" data-canonical-src="https://f.cloud.github.com/assets/45740/111471/066a80a0-6af7-11e2-851f-d388d2de66ae.png" style="max-width: 100%;"></a></p>
<p dir="auto">I think it's because the font-size on .input-append is set to 0.</p>
<div class="highlight highlight-source-css notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=".input-append, .input-prepend {
font-size: 0;
white-space: nowrap;
}"><pre class="notranslate">.<span class="pl-c1">input-append</span><span class="pl-kos">,</span> .<span class="pl-c1">input-prepend</span> {
<span class="pl-c1">font-size</span><span class="pl-kos">:</span> <span class="pl-c1">0</span>;
<span class="pl-c1">white-space</span><span class="pl-kos">:</span> nowrap;
}</pre></div>
<p dir="auto">This issue is similar to <a href="https://github.com/twitter/bootstrap/issues/5807" data-hovercard-type="issue" data-hovercard-url="/twbs/bootstrap/issues/5807/hovercard">this issue with datepicker</a></p> | <p dir="auto">There was a fix made in 2.2.2 to address 0 font size for popovers within a btn group:</p>
<p dir="auto"><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="8447581" data-permission-text="Title is private" data-url="https://github.com/twbs/bootstrap/issues/5939" data-hovercard-type="issue" data-hovercard-url="/twbs/bootstrap/issues/5939/hovercard" href="https://github.com/twbs/bootstrap/issues/5939">#5939</a></p>
<p dir="auto">I don't think the fix was comprehensive as it still happens in other situations. Here's an example within an input-append form element:</p>
<p dir="auto"><a href="http://jsfiddle.net/YUS87/" rel="nofollow">http://jsfiddle.net/YUS87/</a></p> | 1 |
<p dir="auto">In the swagger api spec, in the proxy methods:</p>
<p dir="auto"><a href="https://github.com/kubernetes/kubernetes/blob/master/api/swagger-spec/v1.json#L6670">https://github.com/kubernetes/kubernetes/blob/master/api/swagger-spec/v1.json#L6670</a></p>
<p dir="auto">There are many such entries like this:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" {
"type": "string",
"paramType": "query",
"name": "path",
"description": "Path is the URL path to use for the current proxy request to pod.",
"required": false,
"allowMultiple": false
},
{
"type": "string",
"paramType": "path",
"name": "namespace",
"description": "object name and auth scope, such as for teams and projects",
"required": true,
"allowMultiple": false
},
{
"type": "string",
"paramType": "path",
"name": "name",
"description": "name of the Pod",
"required": true,
"allowMultiple": false
},
{
"type": "string",
"paramType": "path",
"name": "path",
"description": "path to the resource",
"required": true,
"allowMultiple": false
}"><pre class="notranslate"> <span class="pl-kos">{</span>
<span class="pl-s">"type"</span>: <span class="pl-s">"string"</span><span class="pl-kos">,</span>
<span class="pl-s">"paramType"</span>: <span class="pl-s">"query"</span><span class="pl-kos">,</span>
<span class="pl-s">"name"</span>: <span class="pl-s">"path"</span><span class="pl-kos">,</span>
<span class="pl-s">"description"</span>: <span class="pl-s">"Path is the URL path to use for the current proxy request to pod."</span><span class="pl-kos">,</span>
<span class="pl-s">"required"</span>: <span class="pl-c1">false</span><span class="pl-kos">,</span>
<span class="pl-s">"allowMultiple"</span>: <span class="pl-c1">false</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">{</span>
<span class="pl-s">"type"</span>: <span class="pl-s">"string"</span><span class="pl-kos">,</span>
<span class="pl-s">"paramType"</span>: <span class="pl-s">"path"</span><span class="pl-kos">,</span>
<span class="pl-s">"name"</span>: <span class="pl-s">"namespace"</span><span class="pl-kos">,</span>
<span class="pl-s">"description"</span>: <span class="pl-s">"object name and auth scope, such as for teams and projects"</span><span class="pl-kos">,</span>
<span class="pl-s">"required"</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-s">"allowMultiple"</span>: <span class="pl-c1">false</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">{</span>
<span class="pl-s">"type"</span>: <span class="pl-s">"string"</span><span class="pl-kos">,</span>
<span class="pl-s">"paramType"</span>: <span class="pl-s">"path"</span><span class="pl-kos">,</span>
<span class="pl-s">"name"</span>: <span class="pl-s">"name"</span><span class="pl-kos">,</span>
<span class="pl-s">"description"</span>: <span class="pl-s">"name of the Pod"</span><span class="pl-kos">,</span>
<span class="pl-s">"required"</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-s">"allowMultiple"</span>: <span class="pl-c1">false</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">{</span>
<span class="pl-s">"type"</span>: <span class="pl-s">"string"</span><span class="pl-kos">,</span>
<span class="pl-s">"paramType"</span>: <span class="pl-s">"path"</span><span class="pl-kos">,</span>
<span class="pl-s">"name"</span>: <span class="pl-s">"path"</span><span class="pl-kos">,</span>
<span class="pl-s">"description"</span>: <span class="pl-s">"path to the resource"</span><span class="pl-kos">,</span>
<span class="pl-s">"required"</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-s">"allowMultiple"</span>: <span class="pl-c1">false</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">As you can see, the name "path" is used twice here. Despite the <code class="notranslate">paramType</code> being different, this causes <code class="notranslate">swagger-codegen</code> to create invalid code:</p>
<div class="highlight highlight-source-cs notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="ConnectOptionsNamespacedPodProxy_6 (string _namespace, string name, string path, string path);"><pre class="notranslate">ConnectOptionsNamespacedPodProxy_6 <span class="pl-kos">(</span><span class="pl-smi">string</span> _namespace<span class="pl-kos">,</span> <span class="pl-smi">string</span> name<span class="pl-kos">,</span> <span class="pl-smi">string</span> path<span class="pl-kos">,</span> <span class="pl-smi">string</span> path<span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">As the name is there twice, path is a duplicate variable, causing errors.</p>
<p dir="auto">Although this isn't necessarily a kubernetes issue - duplicate names should be handled properly in swagger-codegen - I think it would be wise to not use the same name twice in these methods.</p> | <p dir="auto">Docker now supports Overlayfs as a storage backend. Since Aufs doesn't work on all distributions and has caused kernel issues in the past (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="93913324" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/10959" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/10959/hovercard" href="https://github.com/kubernetes/kubernetes/issues/10959">#10959</a>), we should evaluate <code class="notranslate">Overlayfs</code> and see if it can become the default/recommended storage driver for kubernetes deployments.</p>
<p dir="auto">Kubernetes is already being used with multiple storage backends, but our existing test infrastructure does not test against all the possible docker storage backends. Until we can enhance the existing kubernetes e2e infrastructure, we will continue to recommend users to use the default storage backend, which is <code class="notranslate">Aufs</code> as of now.</p> | 0 |
<p dir="auto">I want to get file list from form by using:</p>
<p dir="auto"><code class="notranslate">photos = request.files.getlist("photo") </code><br>
However if i haven't select anything, the photos value is never be [] like other fields.</p>
<p dir="auto">So the way to check for empty field is failed:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="if not photos:
pass"><pre class="notranslate"><code class="notranslate">if not photos:
pass
</code></pre></div>
<p dir="auto">The result for empty form is:<br>
<code class="notranslate"> [<FileStorage: '' ('application/octet-stream')>]</code></p>
<p dir="auto">How do i get rid of it?</p> | <p dir="auto">Issue came up while trying to send an empty file (and filename) to an HTTPbin form.<br>
Using Flask you're unable to differentiate between the content of a text field in a form and a non-uploaded file from the <code class="notranslate">request</code> object</p>
<h3 dir="auto">Example test</h3>
<p dir="auto">Using flask alone;<br>
User <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/moy/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/moy">@moy</a> helped with this and prompted me to post this bug report</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from flask import Flask, flash, request, redirect, url_for, escape
app = Flask(__name__)
@app.route('/', methods=['GET', 'POST'])
def upload_file():
if request.method == 'POST':
return '<pre>{}</pre>'.format(escape(str(request.form) + '\n' + str(request.files)))
return '''
<!doctype html>
<title>Upload new Files</title>
<h1>Upload new Files</h1>
<form method=post enctype=multipart/form-data>
<input name="normal_field" value="field_value" />
<input type=file name=file>
<input type=file name=secondfile>
<input type=submit value=Upload>
</form>
'''"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">flask</span> <span class="pl-k">import</span> <span class="pl-v">Flask</span>, <span class="pl-s1">flash</span>, <span class="pl-s1">request</span>, <span class="pl-s1">redirect</span>, <span class="pl-s1">url_for</span>, <span class="pl-s1">escape</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-en">@<span class="pl-s1">app</span>.<span class="pl-en">route</span>(<span class="pl-s">'/'</span>, <span class="pl-s1">methods</span><span class="pl-c1">=</span>[<span class="pl-s">'GET'</span>, <span class="pl-s">'POST'</span>])</span>
<span class="pl-k">def</span> <span class="pl-en">upload_file</span>():
<span class="pl-k">if</span> <span class="pl-s1">request</span>.<span class="pl-s1">method</span> <span class="pl-c1">==</span> <span class="pl-s">'POST'</span>:
<span class="pl-k">return</span> <span class="pl-s">'<pre>{}</pre>'</span>.<span class="pl-en">format</span>(<span class="pl-en">escape</span>(<span class="pl-en">str</span>(<span class="pl-s1">request</span>.<span class="pl-s1">form</span>) <span class="pl-c1">+</span> <span class="pl-s">'<span class="pl-cce">\n</span>'</span> <span class="pl-c1">+</span> <span class="pl-en">str</span>(<span class="pl-s1">request</span>.<span class="pl-s1">files</span>)))
<span class="pl-k">return</span> <span class="pl-s">'''</span>
<span class="pl-s"> <!doctype html></span>
<span class="pl-s"> <title>Upload new Files</title></span>
<span class="pl-s"> <h1>Upload new Files</h1></span>
<span class="pl-s"> <form method=post enctype=multipart/form-data></span>
<span class="pl-s"> <input name="normal_field" value="field_value" /></span>
<span class="pl-s"> <input type=file name=file></span>
<span class="pl-s"> <input type=file name=secondfile></span>
<span class="pl-s"> <input type=submit value=Upload></span>
<span class="pl-s"> </form></span>
<span class="pl-s"> '''</span></pre></div>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">Submitting with only the first file field set in the browser,<br>
one would expect to find :</p>
<ul dir="auto">
<li>the content of both file fields in the same object ;</li>
<li>the content of normal text input fields in a separate objects ;</li>
</ul>
<p dir="auto">So something along the lines of</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ImmutableMultiDict([('normal_field', 'field_value')])
ImmutableMultiDict([('file', <FileStorage: 'tmp-rg1.xpi' ('application/x-xpinstall')>),
('secondfile', <FileStorage: '' ('...')>)
])"><pre class="notranslate"><code class="notranslate">ImmutableMultiDict([('normal_field', 'field_value')])
ImmutableMultiDict([('file', <FileStorage: 'tmp-rg1.xpi' ('application/x-xpinstall')>),
('secondfile', <FileStorage: '' ('...')>)
])
</code></pre></div>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">Submitting with only one file (the first field) set in the browser gives:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ImmutableMultiDict([('normal_field', 'field_value'), ('secondfile', '')])
ImmutableMultiDict([('file', <FileStorage: 'tmp-rg1.xpi' ('application/x-xpinstall')>)])"><pre class="notranslate"><code class="notranslate">ImmutableMultiDict([('normal_field', 'field_value'), ('secondfile', '')])
ImmutableMultiDict([('file', <FileStorage: 'tmp-rg1.xpi' ('application/x-xpinstall')>)])
</code></pre></div>
<p dir="auto">The first is the form's field, the second the actual files uploaded. I see no way to distinguish between an empty text field and a non-uploaded file from the <code class="notranslate">request</code> object.<br>
Is this behavior intended ?</p> | 1 |
<p dir="auto">v34.</p>
<p dir="auto">cmd shift f, enter term, hit . <g-emoji class="g-emoji" alias="boom" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f4a5.png">💥</g-emoji></p> | <p dir="auto">Splitting panes is easy: I got <code class="notranslate">C-|</code> and <code class="notranslate">C--</code> into my fingers quickly. What's hard for me is unsplits. Currently it looks like I have to <code class="notranslate">M-w</code> until I've closed every tab in the pane, at which point it goes away.</p>
<p dir="auto">The problem for me is that I don't use tabs, and I don't think of files being open in a pane. I think of them as being open in <em>Atom</em> and displayed in a pane when I ask for 'em.</p>
<p dir="auto">When I think about unsplitting I don't connect it to the idea of closing files at all. I'd love it if unsplitting was a pane-level concern like splitting is.</p> | 0 |
<p dir="auto">I didn't see this error reported, apologies if it is a duplicate -- my current numpy is 1.6.2.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ sudo easy_install --upgrade numpy
Searching for numpy
Reading http://pypi.python.org/simple/numpy/
Reading http://numpy.scipy.org
Reading http://sourceforge.net/project/showfiles.php?group_id=1369&package_id=175103
Reading http://www.numpy.org
Reading http://sourceforge.net/projects/numpy/files/NumPy/
Reading http://numeric.scipy.org
Best match: numpy 1.7.0
Downloading http://pypi.python.org/packages/source/n/numpy/numpy-1.7.0.zip#md5=ca27913c59393940e880fab420f985b4
Processing numpy-1.7.0.zip
Running numpy-1.7.0/setup.py -q bdist_egg --dist-dir /tmp/easy_install-vw2DNu/numpy-1.7.0/egg-dist-tmp-gJGWkL
Running from numpy source directory.
error: SandboxViolation: open('/dev/null', 'w') {}
The package setup script has attempted to modify files on your system
that are not within the EasyInstall build area, and has been aborted.
This package cannot be safely installed by EasyInstall, and may not
support alternate installation locations even if you run its setup
script by hand. Please inform the package's author and the EasyInstall
maintainers to find out if a fix or workaround is available."><pre class="notranslate"><code class="notranslate">$ sudo easy_install --upgrade numpy
Searching for numpy
Reading http://pypi.python.org/simple/numpy/
Reading http://numpy.scipy.org
Reading http://sourceforge.net/project/showfiles.php?group_id=1369&package_id=175103
Reading http://www.numpy.org
Reading http://sourceforge.net/projects/numpy/files/NumPy/
Reading http://numeric.scipy.org
Best match: numpy 1.7.0
Downloading http://pypi.python.org/packages/source/n/numpy/numpy-1.7.0.zip#md5=ca27913c59393940e880fab420f985b4
Processing numpy-1.7.0.zip
Running numpy-1.7.0/setup.py -q bdist_egg --dist-dir /tmp/easy_install-vw2DNu/numpy-1.7.0/egg-dist-tmp-gJGWkL
Running from numpy source directory.
error: SandboxViolation: open('/dev/null', 'w') {}
The package setup script has attempted to modify files on your system
that are not within the EasyInstall build area, and has been aborted.
This package cannot be safely installed by EasyInstall, and may not
support alternate installation locations even if you run its setup
script by hand. Please inform the package's author and the EasyInstall
maintainers to find out if a fix or workaround is available.
</code></pre></div> | <p dir="auto">Sorry in advance if this is a duplicate. I'm trying to read the <a href="https://www.kaggle.com//uciml/iris" rel="nofollow">Iris dataset</a> using the following code:<br>
<code class="notranslate">data = numpy.genfromtxt('../input/Iris.csv',delimiter=',',usecols= range(1,6),skip_header=1, dtype = None)</code>.<br>
However, when I try to separate the features and labels using this -<br>
<code class="notranslate">features = data[:,:-1]</code><br>
<code class="notranslate">labels = data[:,-1:]</code><br>
the following error occurs :</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="---------------------------------------------------------------------------
IndexError Traceback (most recent call last)
<ipython-input-48-a596c22da600> in <module>()
----> 1 features = data[:,:-1]
2 features.shape
IndexError: too many indices for array
"><pre class="notranslate"><code class="notranslate">---------------------------------------------------------------------------
IndexError Traceback (most recent call last)
<ipython-input-48-a596c22da600> in <module>()
----> 1 features = data[:,:-1]
2 features.shape
IndexError: too many indices for array
</code></pre></div>
<p dir="auto">This error also persists when I use the following :</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="data = np.genfromtxt('../input/Iris.csv',delimiter=',',usecols= range(1,6),skip_header=1,dtype={'names': ('sepal length', 'sepal width', 'petal length', 'petal width', 'label'),
'formats': (np.float, np.float, np.float, np.float, '|S15')})"><pre class="notranslate"><code class="notranslate">data = np.genfromtxt('../input/Iris.csv',delimiter=',',usecols= range(1,6),skip_header=1,dtype={'names': ('sepal length', 'sepal width', 'petal length', 'petal width', 'label'),
'formats': (np.float, np.float, np.float, np.float, '|S15')})
</code></pre></div>
<p dir="auto">However, this kind of indexing works fine when I do not pass <code class="notranslate">dtype</code> as argument at all, but the only problem with that is the labels are read as <code class="notranslate">NaN</code> , which cannot be processed further to numerically encode separately.</p> | 0 |
<h5 dir="auto">Issue Type:</h5>
<ul dir="auto">
<li>Bug Report</li>
</ul>
<h5 dir="auto">Ansible Version:</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="user@h0$ ansible-playbook --version
ansible-playbook 2.1.0
config file =
configured module search path = Default w/o overrides"><pre class="notranslate"><code class="notranslate">user@h0$ ansible-playbook --version
ansible-playbook 2.1.0
config file =
configured module search path = Default w/o overrides
</code></pre></div>
<p dir="auto">Installed from GitHub at approximately:<br>
Thu Feb 25 18:43:33 UTC 2016</p>
<h5 dir="auto">Ansible Configuration:</h5>
<p dir="auto">No configuration file modifications</p>
<h5 dir="auto">Environment:</h5>
<p dir="auto">Debian 8</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="user@h0$ uname -a
Linux h0 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt20-1+deb8u3 (2016-01-17) x86_64 GNU/Linux"><pre class="notranslate"><code class="notranslate">user@h0$ uname -a
Linux h0 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt20-1+deb8u3 (2016-01-17) x86_64 GNU/Linux
</code></pre></div>
<h5 dir="auto">Summary:</h5>
<p dir="auto">Given a playbook with multiple plays run against two target hosts (host1 and host2). If a task in the first play fails for host2, but succeeds for host1, subsequent tasks (and handlers) in the same play are executed on host1, but tasks in subsequent plays are NOT executed on host1. The message "NO MORE HOSTS LEFT" is printed even though host1 has not had any failed tasks.</p>
<p dir="auto">This is different than the behavior observed on version 1.9.4. On 1.9.4, the tasks in subsequent plays are executed for host1. The behavior also appears to conflict with the documentation and I haven't found any record that this change was intentional.</p>
<h5 dir="auto">Steps To Reproduce:</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="user@h0$ cat two_plays.pb.yaml
---
- name: Play 1
hosts: all
connection: local
gather_facts: no
tasks:
- name: Task 1
command: /bin/true
failed_when: "'host2' in inventory_hostname"
notify: Handler 1
- name: Task 2
command: /bin/true
handlers:
- name: Handler 1
command: /bin/true
- name: Play 2
hosts: all
connection: local
gather_facts: no
tasks:
- name: Task 3
command: /bin/true"><pre class="notranslate"><code class="notranslate">user@h0$ cat two_plays.pb.yaml
---
- name: Play 1
hosts: all
connection: local
gather_facts: no
tasks:
- name: Task 1
command: /bin/true
failed_when: "'host2' in inventory_hostname"
notify: Handler 1
- name: Task 2
command: /bin/true
handlers:
- name: Handler 1
command: /bin/true
- name: Play 2
hosts: all
connection: local
gather_facts: no
tasks:
- name: Task 3
command: /bin/true
</code></pre></div>
<h5 dir="auto">Expected Results:</h5>
<p dir="auto">I expect the same result as seen on version 1.9.4 in the output below.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="user@h0$ ansible-playbook --version
ansible-playbook 1.9.4
configured module search path = None
user@h0$ ansible-playbook two_plays.pb.yaml
PLAY [Play 1] *****************************************************************
TASK: [Task 1] ****************************************************************
failed: [host2] => {"changed": true, "cmd": ["/bin/true"], "delta": "0:00:00.004436", "end": "2016-02-25 12:04:28.139206", "failed": true, "failed_when_result": true, "rc": 0, "start": "2016-02-25 12:04:28.134770", "warnings": []}
changed: [host1]
TASK: [Task 2] ****************************************************************
changed: [host1]
NOTIFIED: [Handler 1] *********************************************************
changed: [host1]
PLAY [Play 2] *****************************************************************
TASK: [Task 3] ****************************************************************
changed: [host1]
PLAY RECAP ********************************************************************
to retry, use: --limit @/home/user/two_plays.pb.yaml.retry
host1 : ok=4 changed=4 unreachable=0 failed=0
host2 : ok=0 changed=0 unreachable=0 failed=1 "><pre class="notranslate"><code class="notranslate">user@h0$ ansible-playbook --version
ansible-playbook 1.9.4
configured module search path = None
user@h0$ ansible-playbook two_plays.pb.yaml
PLAY [Play 1] *****************************************************************
TASK: [Task 1] ****************************************************************
failed: [host2] => {"changed": true, "cmd": ["/bin/true"], "delta": "0:00:00.004436", "end": "2016-02-25 12:04:28.139206", "failed": true, "failed_when_result": true, "rc": 0, "start": "2016-02-25 12:04:28.134770", "warnings": []}
changed: [host1]
TASK: [Task 2] ****************************************************************
changed: [host1]
NOTIFIED: [Handler 1] *********************************************************
changed: [host1]
PLAY [Play 2] *****************************************************************
TASK: [Task 3] ****************************************************************
changed: [host1]
PLAY RECAP ********************************************************************
to retry, use: --limit @/home/user/two_plays.pb.yaml.retry
host1 : ok=4 changed=4 unreachable=0 failed=0
host2 : ok=0 changed=0 unreachable=0 failed=1
</code></pre></div>
<h5 dir="auto">Actual Results:</h5>
<p dir="auto">Instead, Task 3 from Play 2 is not executed on host1. The message "NO MORE HOSTS LEFT" is displayed.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="user@h0$ ansible-playbook --version
ansible-playbook 2.1.0
config file =
configured module search path = Default w/o overrides
user@h0$ ansible-playbook two_plays.pb.yaml
PLAY [Play 1] ******************************************************************
TASK [Task 1] ******************************************************************
fatal: [host2]: FAILED! => {"changed": true, "cmd": ["/bin/true"], "delta": "0:00:00.006471", "end": "2016-02-25 12:08:15.874254", "failed": true, "failed_when_result": true, "rc": 0, "start": "2016-02-25 12:08:15.867783", "stderr": "", "stdout": "", "stdout_lines": [], "warnings": []}
changed: [host1]
TASK [Task 2] ******************************************************************
changed: [host1]
RUNNING HANDLER [Handler 1] ****************************************************
changed: [host1]
NO MORE HOSTS LEFT *************************************************************
PLAY RECAP *********************************************************************
host1 : ok=3 changed=3 unreachable=0 failed=0
host2 : ok=0 changed=0 unreachable=0 failed=1 "><pre class="notranslate"><code class="notranslate">user@h0$ ansible-playbook --version
ansible-playbook 2.1.0
config file =
configured module search path = Default w/o overrides
user@h0$ ansible-playbook two_plays.pb.yaml
PLAY [Play 1] ******************************************************************
TASK [Task 1] ******************************************************************
fatal: [host2]: FAILED! => {"changed": true, "cmd": ["/bin/true"], "delta": "0:00:00.006471", "end": "2016-02-25 12:08:15.874254", "failed": true, "failed_when_result": true, "rc": 0, "start": "2016-02-25 12:08:15.867783", "stderr": "", "stdout": "", "stdout_lines": [], "warnings": []}
changed: [host1]
TASK [Task 2] ******************************************************************
changed: [host1]
RUNNING HANDLER [Handler 1] ****************************************************
changed: [host1]
NO MORE HOSTS LEFT *************************************************************
PLAY RECAP *********************************************************************
host1 : ok=3 changed=3 unreachable=0 failed=0
host2 : ok=0 changed=0 unreachable=0 failed=1
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="user@h0$ ansible-playbook --version
ansible-playbook 2.1.0
config file =
configured module search path = Default w/o overrides
user@h0$ ansible-playbook -vvv two_plays.pb.yaml
No config file found; using defaults
PLAYBOOK: two_plays.pb.yaml ****************************************************
2 plays in two_plays.pb.yaml
PLAY [Play 1] ******************************************************************
TASK [Task 1] ******************************************************************
task path: /home/user/playbooks/two_plays.pb.yaml:7
ESTABLISH LOCAL CONNECTION FOR USER: user
host1 EXEC /bin/sh -c '( umask 22 && mkdir -p "` echo $HOME/.ansible/tmp/ansible-tmp-1456427335.4-181448891920162 `" && echo "` echo $HOME/.ansible/tmp/ansible-tmp-1456427335.4-181448891920162 `" )'
ESTABLISH LOCAL CONNECTION FOR USER: user
host2 EXEC /bin/sh -c '( umask 22 && mkdir -p "` echo $HOME/.ansible/tmp/ansible-tmp-1456427335.41-67699306413194 `" && echo "` echo $HOME/.ansible/tmp/ansible-tmp-1456427335.41-67699306413194 `" )'
host1 PUT /tmp/tmp_1kdGb TO /home/user/.ansible/tmp/ansible-tmp-1456427335.4-181448891920162/command
host1 EXEC /bin/sh -c 'LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8 /usr/bin/python /home/user/.ansible/tmp/ansible-tmp-1456427335.4-181448891920162/command; rm -rf "/home/user/.ansible/tmp/ansible-tmp-1456427335.4-181448891920162/" > /dev/null 2>&1'
host2 PUT /tmp/tmpeUisOu TO /home/user/.ansible/tmp/ansible-tmp-1456427335.41-67699306413194/command
host2 EXEC /bin/sh -c 'LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8 /usr/bin/python /home/user/.ansible/tmp/ansible-tmp-1456427335.41-67699306413194/command; rm -rf "/home/user/.ansible/tmp/ansible-tmp-1456427335.41-67699306413194/" > /dev/null 2>&1'
fatal: [host2]: FAILED! => {"changed": true, "cmd": ["/bin/true"], "delta": "0:00:00.005199", "end": "2016-02-25 12:08:55.458196", "failed": true, "failed_when_result": true, "invocation": {"module_args": {"_raw_params": "/bin/true", "_uses_shell": false, "chdir": null, "creates": null, "executable": null, "removes": null, "warn": true}, "module_name": "command"}, "rc": 0, "start": "2016-02-25 12:08:55.452997", "stderr": "", "stdout": "", "stdout_lines": [], "warnings": []}
NOTIFIED HANDLER Handler 1
changed: [host1] => {"changed": true, "cmd": ["/bin/true"], "delta": "0:00:00.008875", "end": "2016-02-25 12:08:55.466677", "failed": false, "failed_when_result": false, "invocation": {"module_args": {"_raw_params": "/bin/true", "_uses_shell": false, "chdir": null, "creates": null, "executable": null, "removes": null, "warn": true}, "module_name": "command"}, "rc": 0, "start": "2016-02-25 12:08:55.457802", "stderr": "", "stdout": "", "stdout_lines": [], "warnings": []}
TASK [Task 2] ******************************************************************
task path: /home/user/playbooks/two_plays.pb.yaml:11
ESTABLISH LOCAL CONNECTION FOR USER: user
host1 EXEC /bin/sh -c '( umask 22 && mkdir -p "` echo $HOME/.ansible/tmp/ansible-tmp-1456427335.51-149718488385002 `" && echo "` echo $HOME/.ansible/tmp/ansible-tmp-1456427335.51-149718488385002 `" )'
host1 PUT /tmp/tmpatPQZV TO /home/user/.ansible/tmp/ansible-tmp-1456427335.51-149718488385002/command
host1 EXEC /bin/sh -c 'LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8 /usr/bin/python /home/user/.ansible/tmp/ansible-tmp-1456427335.51-149718488385002/command; rm -rf "/home/user/.ansible/tmp/ansible-tmp-1456427335.51-149718488385002/" > /dev/null 2>&1'
changed: [host1] => {"changed": true, "cmd": ["/bin/true"], "delta": "0:00:00.005788", "end": "2016-02-25 12:08:55.568887", "invocation": {"module_args": {"_raw_params": "/bin/true", "_uses_shell": false, "chdir": null, "creates": null, "executable": null, "removes": null, "warn": true}, "module_name": "command"}, "rc": 0, "start": "2016-02-25 12:08:55.563099", "stderr": "", "stdout": "", "stdout_lines": [], "warnings": []}
RUNNING HANDLER [Handler 1] ****************************************************
ESTABLISH LOCAL CONNECTION FOR USER: user
host1 EXEC /bin/sh -c '( umask 22 && mkdir -p "` echo $HOME/.ansible/tmp/ansible-tmp-1456427335.6-154968896387882 `" && echo "` echo $HOME/.ansible/tmp/ansible-tmp-1456427335.6-154968896387882 `" )'
host1 PUT /tmp/tmpoh615S TO /home/user/.ansible/tmp/ansible-tmp-1456427335.6-154968896387882/command
host1 EXEC /bin/sh -c 'LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8 /usr/bin/python /home/user/.ansible/tmp/ansible-tmp-1456427335.6-154968896387882/command; rm -rf "/home/user/.ansible/tmp/ansible-tmp-1456427335.6-154968896387882/" > /dev/null 2>&1'
changed: [host1] => {"changed": true, "cmd": ["/bin/true"], "delta": "0:00:00.005483", "end": "2016-02-25 12:08:55.646776", "invocation": {"module_args": {"_raw_params": "/bin/true", "_uses_shell": false, "chdir": null, "creates": null, "executable": null, "removes": null, "warn": true}, "module_name": "command"}, "rc": 0, "start": "2016-02-25 12:08:55.641293", "stderr": "", "stdout": "", "stdout_lines": [], "warnings": []}
NO MORE HOSTS LEFT *************************************************************
PLAY RECAP *********************************************************************
host1 : ok=3 changed=3 unreachable=0 failed=0
host2 : ok=0 changed=0 unreachable=0 failed=1 "><pre class="notranslate"><code class="notranslate">user@h0$ ansible-playbook --version
ansible-playbook 2.1.0
config file =
configured module search path = Default w/o overrides
user@h0$ ansible-playbook -vvv two_plays.pb.yaml
No config file found; using defaults
PLAYBOOK: two_plays.pb.yaml ****************************************************
2 plays in two_plays.pb.yaml
PLAY [Play 1] ******************************************************************
TASK [Task 1] ******************************************************************
task path: /home/user/playbooks/two_plays.pb.yaml:7
ESTABLISH LOCAL CONNECTION FOR USER: user
host1 EXEC /bin/sh -c '( umask 22 && mkdir -p "` echo $HOME/.ansible/tmp/ansible-tmp-1456427335.4-181448891920162 `" && echo "` echo $HOME/.ansible/tmp/ansible-tmp-1456427335.4-181448891920162 `" )'
ESTABLISH LOCAL CONNECTION FOR USER: user
host2 EXEC /bin/sh -c '( umask 22 && mkdir -p "` echo $HOME/.ansible/tmp/ansible-tmp-1456427335.41-67699306413194 `" && echo "` echo $HOME/.ansible/tmp/ansible-tmp-1456427335.41-67699306413194 `" )'
host1 PUT /tmp/tmp_1kdGb TO /home/user/.ansible/tmp/ansible-tmp-1456427335.4-181448891920162/command
host1 EXEC /bin/sh -c 'LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8 /usr/bin/python /home/user/.ansible/tmp/ansible-tmp-1456427335.4-181448891920162/command; rm -rf "/home/user/.ansible/tmp/ansible-tmp-1456427335.4-181448891920162/" > /dev/null 2>&1'
host2 PUT /tmp/tmpeUisOu TO /home/user/.ansible/tmp/ansible-tmp-1456427335.41-67699306413194/command
host2 EXEC /bin/sh -c 'LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8 /usr/bin/python /home/user/.ansible/tmp/ansible-tmp-1456427335.41-67699306413194/command; rm -rf "/home/user/.ansible/tmp/ansible-tmp-1456427335.41-67699306413194/" > /dev/null 2>&1'
fatal: [host2]: FAILED! => {"changed": true, "cmd": ["/bin/true"], "delta": "0:00:00.005199", "end": "2016-02-25 12:08:55.458196", "failed": true, "failed_when_result": true, "invocation": {"module_args": {"_raw_params": "/bin/true", "_uses_shell": false, "chdir": null, "creates": null, "executable": null, "removes": null, "warn": true}, "module_name": "command"}, "rc": 0, "start": "2016-02-25 12:08:55.452997", "stderr": "", "stdout": "", "stdout_lines": [], "warnings": []}
NOTIFIED HANDLER Handler 1
changed: [host1] => {"changed": true, "cmd": ["/bin/true"], "delta": "0:00:00.008875", "end": "2016-02-25 12:08:55.466677", "failed": false, "failed_when_result": false, "invocation": {"module_args": {"_raw_params": "/bin/true", "_uses_shell": false, "chdir": null, "creates": null, "executable": null, "removes": null, "warn": true}, "module_name": "command"}, "rc": 0, "start": "2016-02-25 12:08:55.457802", "stderr": "", "stdout": "", "stdout_lines": [], "warnings": []}
TASK [Task 2] ******************************************************************
task path: /home/user/playbooks/two_plays.pb.yaml:11
ESTABLISH LOCAL CONNECTION FOR USER: user
host1 EXEC /bin/sh -c '( umask 22 && mkdir -p "` echo $HOME/.ansible/tmp/ansible-tmp-1456427335.51-149718488385002 `" && echo "` echo $HOME/.ansible/tmp/ansible-tmp-1456427335.51-149718488385002 `" )'
host1 PUT /tmp/tmpatPQZV TO /home/user/.ansible/tmp/ansible-tmp-1456427335.51-149718488385002/command
host1 EXEC /bin/sh -c 'LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8 /usr/bin/python /home/user/.ansible/tmp/ansible-tmp-1456427335.51-149718488385002/command; rm -rf "/home/user/.ansible/tmp/ansible-tmp-1456427335.51-149718488385002/" > /dev/null 2>&1'
changed: [host1] => {"changed": true, "cmd": ["/bin/true"], "delta": "0:00:00.005788", "end": "2016-02-25 12:08:55.568887", "invocation": {"module_args": {"_raw_params": "/bin/true", "_uses_shell": false, "chdir": null, "creates": null, "executable": null, "removes": null, "warn": true}, "module_name": "command"}, "rc": 0, "start": "2016-02-25 12:08:55.563099", "stderr": "", "stdout": "", "stdout_lines": [], "warnings": []}
RUNNING HANDLER [Handler 1] ****************************************************
ESTABLISH LOCAL CONNECTION FOR USER: user
host1 EXEC /bin/sh -c '( umask 22 && mkdir -p "` echo $HOME/.ansible/tmp/ansible-tmp-1456427335.6-154968896387882 `" && echo "` echo $HOME/.ansible/tmp/ansible-tmp-1456427335.6-154968896387882 `" )'
host1 PUT /tmp/tmpoh615S TO /home/user/.ansible/tmp/ansible-tmp-1456427335.6-154968896387882/command
host1 EXEC /bin/sh -c 'LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8 /usr/bin/python /home/user/.ansible/tmp/ansible-tmp-1456427335.6-154968896387882/command; rm -rf "/home/user/.ansible/tmp/ansible-tmp-1456427335.6-154968896387882/" > /dev/null 2>&1'
changed: [host1] => {"changed": true, "cmd": ["/bin/true"], "delta": "0:00:00.005483", "end": "2016-02-25 12:08:55.646776", "invocation": {"module_args": {"_raw_params": "/bin/true", "_uses_shell": false, "chdir": null, "creates": null, "executable": null, "removes": null, "warn": true}, "module_name": "command"}, "rc": 0, "start": "2016-02-25 12:08:55.641293", "stderr": "", "stdout": "", "stdout_lines": [], "warnings": []}
NO MORE HOSTS LEFT *************************************************************
PLAY RECAP *********************************************************************
host1 : ok=3 changed=3 unreachable=0 failed=0
host2 : ok=0 changed=0 unreachable=0 failed=1
</code></pre></div> | <h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Feature Idea</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">patterns, group of groups, static inventory file</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.2.0.0
config file = /etc/ansible/ansible.cfg
configured module search path = Default w/o overrides"><pre class="notranslate"><code class="notranslate">ansible 2.2.0.0
config file = /etc/ansible/ansible.cfg
configured module search path = Default w/o overrides
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<p dir="auto">Empty files for ansible.cfg, and no ANSIBLE_ environment variables</p>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<p dir="auto">CentOS 6.9</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">ansible is used in our environment to manage cluster servers. The cluster in our environment is formed by 3 servers. However, in daily operation, we usually have to run some specific tasks regarding to the nodes. Thus we have to define another 3 groups to represent the first, the second and the third server of each cluster. For example (inventory file):</p>
<div class="highlight highlight-source-ini notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="[ha-cluster-1]
node-a.de
node-b.de
node-c.de
[ha-cluster-2]
node-x.us
node-y.us
node-z.us
# ... 100+ similar ha-cluster- section
[ha-cluster-129]
server-a.fr
server-b.fr
server-c.fr
[all-ha-cluster:children]
ha-cluster-1
ha-cluster-2
# ... 100+ group names
ha-cluster-129
[all-ha-cluster-1st-node]
node-a.de
node-x.us
# ... 100+ hosts from the first server of each ha-cluster section
server-a.fr
[all-ha-cluster-2nd-node]
node-b.de
node-y.us
# ... 100+ hosts from the first server of each ha-cluster section
server-b.fr"><pre class="notranslate"><span class="pl-en">[ha-cluster-1]</span>
node-a.de
node-b.de
node-c.de
<span class="pl-en">[ha-cluster-2]</span>
node-x.us
node-y.us
node-z.us
<span class="pl-c"><span class="pl-c">#</span> ... 100+ similar ha-cluster- section</span>
<span class="pl-en">[ha-cluster-129]</span>
server-a.fr
server-b.fr
server-c.fr
<span class="pl-en">[all-ha-cluster:children]</span>
ha-cluster-1
ha-cluster-2
<span class="pl-c"><span class="pl-c">#</span> ... 100+ group names</span>
ha-cluster-129
<span class="pl-en">[all-ha-cluster-1st-node]</span>
node-a.de
node-x.us
<span class="pl-c"><span class="pl-c">#</span> ... 100+ hosts from the first server of each ha-cluster section</span>
server-a.fr
<span class="pl-en">[all-ha-cluster-2nd-node]</span>
node-b.de
node-y.us
<span class="pl-c"><span class="pl-c">#</span> ... 100+ hosts from the first server of each ha-cluster section</span>
server-b.fr</pre></div>
<p dir="auto">As the example illustrates, <code class="notranslate">all-ha-cluster-1st-node</code> and <code class="notranslate">all-ha-cluster-2nd-node</code> just duplicate the hostnames which have been listed above. This just makes the inventory file hard to be managed.<br>
So I'm thinking if pattern is supported by "group of groups", this file can be more simple. For example:</p>
<div class="highlight highlight-source-ini notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="[all-ha-cluster:children]
ha-cluster-* # represent all groups which start with "ha-cluster-"
[all-ha-cluster-1st-node:children]
ha-cluster-*[0] # represent all first node in the groups which start with "ha-cluster-"
[all-ha-cluster-2nd-node:children]
ha-cluster-*[1] # represent all second node in the groups which start with "ha-cluster-""><pre class="notranslate"><span class="pl-en">[all-ha-cluster:children]</span>
ha-cluster-* <span class="pl-c"><span class="pl-c">#</span> represent all groups which start with "ha-cluster-"</span>
<span class="pl-en">[all-ha-cluster-1st-node:children]</span>
ha-cluster-*[0] <span class="pl-c"><span class="pl-c">#</span> represent all first node in the groups which start with "ha-cluster-"</span>
<span class="pl-en">[all-ha-cluster-2nd-node:children]</span>
ha-cluster-*[1] <span class="pl-c"><span class="pl-c">#</span> represent all second node in the groups which start with "ha-cluster-"</span></pre></div>
<p dir="auto">In that case lots of lines can be save and the inventory file becomes more tidy.</p>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<p dir="auto">n/a</p>
<h5 dir="auto">EXPECTED RESULTS</h5>
<p dir="auto">n/a</p>
<h5 dir="auto">ACTUAL RESULTS</h5>
<p dir="auto">n/a</p> | 0 |
<p dir="auto">Halp ticket:</p>
<ul dir="auto">
<li>support/6c407d52c9f711e38a0cc47a4027f259</li>
</ul>
<blockquote>
<p dir="auto">Git support does not handle files with accented characters correctly, declaring them as new. See e.g spec/fixtures/subdir/áccéntéd.svg in atom/markdown-preview or lloeki/svg-preview plugins.</p>
</blockquote>
<p dir="auto">Steps to reproduce:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ git clone https://github.com/lloeki/svg-preview
$ cd svg-preview
$ atom ."><pre class="notranslate"><code class="notranslate">$ git clone https://github.com/lloeki/svg-preview
$ cd svg-preview
$ atom .
</code></pre></div>
<p dir="auto">Notice that there's a file marked as new in the tree view -- <code class="notranslate">spec/fixtures/subdir/áccéntéd.svg</code>.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/38924/2766300/8021b38c-ca2d-11e3-95fc-973f0db52106.png"><img src="https://cloud.githubusercontent.com/assets/38924/2766300/8021b38c-ca2d-11e3-95fc-973f0db52106.png" alt="dbb695e0-ca24-11e3-9ef4-e37cbd560a08" style="max-width: 100%;"></a></p>
<p dir="auto">However, I can't reproduce this issue with the markdown-preview repository which has a file with the same name.</p> | <p dir="auto">Makefile editing is messed up. If it's not using soft tabs instead of hard ones, it's positioning the cursor in weird places. To repro, just write yourself a simple Makefile with a single rule and try to run it. Then edit it in an external editor to fix indentation, then add another rule or two in Atom.</p>
<p dir="auto">User: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jbarnette/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jbarnette">@jbarnette</a><br>
Atom Version: 0.42.0<br>
User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit/537.36 (KHTML, like Gecko) Atom/0.42.0 Safari/537.36</p> | 0 |
<p dir="auto">After <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="421618583" data-permission-text="Title is private" data-url="https://github.com/numpy/numpy/issues/13134" data-hovercard-type="pull_request" data-hovercard-url="/numpy/numpy/pull/13134/hovercard" href="https://github.com/numpy/numpy/pull/13134">#13134</a> is merged, <code class="notranslate">np.exp</code> and <code class="notranslate">np.log</code> return float32 arrays for float16 inputs. Is the change intended? I could not find docs for it (<a href="https://www.numpy.org/devdocs/reference/generated/numpy.exp.html" rel="nofollow">https://www.numpy.org/devdocs/reference/generated/numpy.exp.html</a>), while it is documented that <code class="notranslate">np.sum</code> casts ints to the default platform integer.</p>
<h3 dir="auto">Reproducing code example:</h3>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy as np
print(np.exp(np.array([1, 2], np.float16)).dtype) # => float32
print(np.log(np.array([1, 2], np.float16)).dtype) # => float32"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-en">print</span>(<span class="pl-s1">np</span>.<span class="pl-en">exp</span>(<span class="pl-s1">np</span>.<span class="pl-en">array</span>([<span class="pl-c1">1</span>, <span class="pl-c1">2</span>], <span class="pl-s1">np</span>.<span class="pl-s1">float16</span>)).<span class="pl-s1">dtype</span>) <span class="pl-c"># => float32</span>
<span class="pl-en">print</span>(<span class="pl-s1">np</span>.<span class="pl-en">log</span>(<span class="pl-s1">np</span>.<span class="pl-en">array</span>([<span class="pl-c1">1</span>, <span class="pl-c1">2</span>], <span class="pl-s1">np</span>.<span class="pl-s1">float16</span>)).<span class="pl-s1">dtype</span>) <span class="pl-c"># => float32</span></pre></div>
<h3 dir="auto">Numpy/Python version information:</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="1.17.0.dev0+64b3e67 3.7.1 (default, Nov 6 2018, 21:02:07)
[Clang 10.0.0 (clang-1000.10.44.4)]"><pre class="notranslate"><code class="notranslate">1.17.0.dev0+64b3e67 3.7.1 (default, Nov 6 2018, 21:02:07)
[Clang 10.0.0 (clang-1000.10.44.4)]
</code></pre></div> | <p dir="auto"><code class="notranslate">pip install numpy</code> on python 2.7 attempts to install numpy 1.17, which dropped python 2.7 support. This is contrary to the functionality described in <a href="https://www.numpy.org/neps/nep-0014-dropping-python2.7-proposal.html" rel="nofollow">NEP 14</a>, which states:</p>
<blockquote>
<p dir="auto">... <code class="notranslate">pip install numpy</code> on Python 2 will continue to give the last working release in perpetuity...</p>
</blockquote>
<h3 dir="auto">Numpy/Python version information:</h3>
<p dir="auto">pip version: 19.2.2<br>
python: 2.7.15 |Anaconda, Inc.| (default, Oct 23 2018, 18:31:10) \n[GCC 7.3.0]</p> | 0 |
<p dir="auto">On my Mac (10.9.5), my Atom app notices when there's an update, and indicates it by adding a "Restart and install updates" option in the "Atom" menu. If I choose that menu option, Atom quits, and relaunches, but it's the same version it was; no update seems to have happened.</p>
<p dir="auto">Looking in the Console log, it seems "ShipIt" is running into issues trying to install Atom, since it can't copy the application to the proper folder:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="3/5/15 9:25:53.041 AM ShipIt[54372]: Couldn't abort install and restore owned bundle to previous location file:///Applications/Atom.app, error NSError { domain: NSPOSIXErrorDomain, code: 2, description: "No such file or directory" }
3/5/15 9:26:19.075 AM ShipIt[54372]: Installation error: Error Domain=NSPOSIXErrorDomain Code=13 "Permission denied" UserInfo=0x7ff3e3bde200 {NSLocalizedDescription=Permission denied}"><pre class="notranslate"><code class="notranslate">3/5/15 9:25:53.041 AM ShipIt[54372]: Couldn't abort install and restore owned bundle to previous location file:///Applications/Atom.app, error NSError { domain: NSPOSIXErrorDomain, code: 2, description: "No such file or directory" }
3/5/15 9:26:19.075 AM ShipIt[54372]: Installation error: Error Domain=NSPOSIXErrorDomain Code=13 "Permission denied" UserInfo=0x7ff3e3bde200 {NSLocalizedDescription=Permission denied}
</code></pre></div>
<p dir="auto">Atom.app is in the Applications folder, but my user is not an Admin of the computer, so doesn't have permission to copy a file into the Applications folder. Atom should probably pop up an authentication prompt to accomplish that task? Or more gracefully fail out with a dialog to the user indicating there was an error?</p> | <p dir="auto">I've never been able to get the autoupdate to work. It detects a new version, happily downloads, but when I click restart and update, it quits the app, presumably fails to update, and then relaunches, and starts redownloading the update. Usually then I have to get into a hit-quit-a-bunch-war to get it to stop relaunching on quit.</p>
<p dir="auto">I've pasted the error output from OS X console below:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="7/8/14 8:04:09.265 AM Atom[39769]: App load time: 201ms
7/8/14 8:04:35.014 AM Atom[39769]: Download completed to: file:///Volumes/Secondary/Users/pbhogan/Library/Application%20Support/com.github.atom.ShipIt/update.ja3pAYF/download
7/8/14 8:04:42.995 AM com.apple.launchd.peruser.569031419[209]: (com.github.atom.ShipIt[39791]) assertion failed: 13E28: launchd + 105865 [364E35A7-9FA7-3950-8494-40B49A2E7250]: 0xd
7/8/14 8:04:44.875 AM ShipIt[39791]: Beginning installation
7/8/14 8:04:44.893 AM ShipIt[39791]: Couldn't abort install and restore owned bundle to previous location file:///Applications/Atom.app, error NSError { domain: NSPOSIXErrorDomain, code: 2, description: "No such file or directory" }
7/8/14 8:04:56.125 AM ShipIt[39791]: Application launched at file:///Applications/Atom.app
7/8/14 8:04:56.125 AM ShipIt[39791]: Installation error: Error Domain=NSPOSIXErrorDomain Code=13 "Permission denied" UserInfo=0x7fefdc41a260 {NSLocalizedDescription=Permission denied}
7/8/14 8:04:56.125 AM ShipIt[39791]: ShipIt quitting
7/8/14 8:04:56.131 AM com.apple.launchd.peruser.569031419[209]: (com.github.atom.ShipIt[39791]) Exited with code: 1
7/8/14 8:04:56.132 AM com.apple.launchd.peruser.569031419[209]: (com.github.atom.ShipIt[39794]) assertion failed: 13E28: launchd + 105865 [364E35A7-9FA7-3950-8494-40B49A2E7250]: 0xd
7/8/14 8:04:56.435 AM Atom[39792]: App load time: 190ms"><pre class="notranslate"><code class="notranslate">7/8/14 8:04:09.265 AM Atom[39769]: App load time: 201ms
7/8/14 8:04:35.014 AM Atom[39769]: Download completed to: file:///Volumes/Secondary/Users/pbhogan/Library/Application%20Support/com.github.atom.ShipIt/update.ja3pAYF/download
7/8/14 8:04:42.995 AM com.apple.launchd.peruser.569031419[209]: (com.github.atom.ShipIt[39791]) assertion failed: 13E28: launchd + 105865 [364E35A7-9FA7-3950-8494-40B49A2E7250]: 0xd
7/8/14 8:04:44.875 AM ShipIt[39791]: Beginning installation
7/8/14 8:04:44.893 AM ShipIt[39791]: Couldn't abort install and restore owned bundle to previous location file:///Applications/Atom.app, error NSError { domain: NSPOSIXErrorDomain, code: 2, description: "No such file or directory" }
7/8/14 8:04:56.125 AM ShipIt[39791]: Application launched at file:///Applications/Atom.app
7/8/14 8:04:56.125 AM ShipIt[39791]: Installation error: Error Domain=NSPOSIXErrorDomain Code=13 "Permission denied" UserInfo=0x7fefdc41a260 {NSLocalizedDescription=Permission denied}
7/8/14 8:04:56.125 AM ShipIt[39791]: ShipIt quitting
7/8/14 8:04:56.131 AM com.apple.launchd.peruser.569031419[209]: (com.github.atom.ShipIt[39791]) Exited with code: 1
7/8/14 8:04:56.132 AM com.apple.launchd.peruser.569031419[209]: (com.github.atom.ShipIt[39794]) assertion failed: 13E28: launchd + 105865 [364E35A7-9FA7-3950-8494-40B49A2E7250]: 0xd
7/8/14 8:04:56.435 AM Atom[39792]: App load time: 190ms
</code></pre></div> | 1 |
<p dir="auto">The following code <a href="https://play.rust-lang.org/?gist=e60dc1ef64e84de09aae&version=nightly" rel="nofollow">ICEs in nightly on play.rust-lang.org</a>, as well as in 1.0 stable:</p>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="extern {
fn foo(x: Option<str>);
}
fn main() {
}"><pre class="notranslate"><span class="pl-k">extern</span> <span class="pl-kos">{</span>
<span class="pl-k">fn</span> <span class="pl-en">foo</span><span class="pl-kos">(</span><span class="pl-s1">x</span><span class="pl-kos">:</span> <span class="pl-smi">Option</span><span class="pl-kos"><</span><span class="pl-smi">str</span><span class="pl-kos">></span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">fn</span> <span class="pl-en">main</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-kos">}</span></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<anon>:2:15: 2:26 warning: found type without foreign-function-safe representation annotation in foreign module, consider adding a #[repr(...)] attribute to the type, #[warn(improper_ctypes)] on by default
<anon>:2 fn foo(x: Option<str>);
^~~~~~~~~~~
<anon>:2:5: 2:28 warning: foreign function is never used: `foo`, #[warn(dead_code)] on by default
<anon>:2 fn foo(x: Option<str>);
^~~~~~~~~~~~~~~~~~~~~~~
error: internal compiler error: unexpected panic
note: the compiler unexpectedly panicked. this is a bug.
note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
note: run with `RUST_BACKTRACE=1` for a backtrace
thread 'rustc' panicked at 'Unexpected type returned from struct_tail: core::option::Option<str> for ty=core::option::Option<str>', /home/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-linux/build/src/librustc_trans/trans/type_of.rs:354"><pre class="notranslate"><code class="notranslate"><anon>:2:15: 2:26 warning: found type without foreign-function-safe representation annotation in foreign module, consider adding a #[repr(...)] attribute to the type, #[warn(improper_ctypes)] on by default
<anon>:2 fn foo(x: Option<str>);
^~~~~~~~~~~
<anon>:2:5: 2:28 warning: foreign function is never used: `foo`, #[warn(dead_code)] on by default
<anon>:2 fn foo(x: Option<str>);
^~~~~~~~~~~~~~~~~~~~~~~
error: internal compiler error: unexpected panic
note: the compiler unexpectedly panicked. this is a bug.
note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
note: run with `RUST_BACKTRACE=1` for a backtrace
thread 'rustc' panicked at 'Unexpected type returned from struct_tail: core::option::Option<str> for ty=core::option::Option<str>', /home/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-linux/build/src/librustc_trans/trans/type_of.rs:354
</code></pre></div>
<p dir="auto">Between this and <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="77766696" data-permission-text="Title is private" data-url="https://github.com/rust-lang/rust/issues/25581" data-hovercard-type="issue" data-hovercard-url="/rust-lang/rust/issues/25581/hovercard" href="https://github.com/rust-lang/rust/issues/25581">#25581</a>, I'm increasingly believing that Rust should firmly disallow non-C-compatible types in <code class="notranslate">extern</code> functions, not merely lint on them. <code class="notranslate">extern "C"</code> means to use the C ABI, and there <em>is no</em> C ABI support for passing slices, <code class="notranslate">str</code>s, etc. around.</p> | <p dir="auto">We don't check that types in method signatures are well-formed, or even when they are Sized. I mean, this compiles:</p>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="pub struct U<T: Send+Sync+Copy+::std::fmt::Display>(*const T);
pub trait Trait { }
pub trait OtherTrait {
fn f(self, u: U<Trait>);
fn g(self, u: [u8]);
}
impl OtherTrait for () {
fn f(self, u: U<Trait>) { }
fn g(self, ref u: [u8]) {}
}
fn main () {}"><pre class="notranslate"><span class="pl-k">pub</span> <span class="pl-k">struct</span> <span class="pl-smi">U</span><span class="pl-kos"><</span><span class="pl-smi">T</span><span class="pl-kos">:</span> <span class="pl-smi">Send</span>+<span class="pl-smi">Sync</span>+<span class="pl-smi">Copy</span>+<span class="pl-kos">::</span>std<span class="pl-kos">::</span>fmt<span class="pl-kos">::</span><span class="pl-smi">Display</span><span class="pl-kos">></span><span class="pl-kos">(</span><span class="pl-c1">*</span><span class="pl-k">const</span> <span class="pl-smi">T</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">pub</span> <span class="pl-k">trait</span> <span class="pl-smi">Trait</span> <span class="pl-kos">{</span> <span class="pl-kos">}</span>
<span class="pl-k">pub</span> <span class="pl-k">trait</span> <span class="pl-smi">OtherTrait</span> <span class="pl-kos">{</span>
<span class="pl-k">fn</span> <span class="pl-en">f</span><span class="pl-kos">(</span><span class="pl-smi">self</span><span class="pl-kos">,</span> <span class="pl-s1">u</span><span class="pl-kos">:</span> <span class="pl-smi">U</span><span class="pl-kos"><</span><span class="pl-smi">Trait</span><span class="pl-kos">></span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">fn</span> <span class="pl-en">g</span><span class="pl-kos">(</span><span class="pl-smi">self</span><span class="pl-kos">,</span> <span class="pl-s1">u</span><span class="pl-kos">:</span> <span class="pl-kos">[</span><span class="pl-smi">u8</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">impl</span> <span class="pl-smi">OtherTrait</span> <span class="pl-k">for</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">fn</span> <span class="pl-en">f</span><span class="pl-kos">(</span><span class="pl-smi">self</span><span class="pl-kos">,</span> <span class="pl-s1">u</span><span class="pl-kos">:</span> <span class="pl-smi">U</span><span class="pl-kos"><</span><span class="pl-smi">Trait</span><span class="pl-kos">></span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-kos">}</span>
<span class="pl-k">fn</span> <span class="pl-en">g</span><span class="pl-kos">(</span><span class="pl-smi">self</span><span class="pl-kos">,</span> <span class="pl-k">ref</span> u<span class="pl-kos">:</span> <span class="pl-kos">[</span><span class="pl-smi">u8</span><span class="pl-kos">]</span><span class="pl-kos">)</span> <span class="pl-kos">{</span><span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-k">fn</span> <span class="pl-en">main</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span><span class="pl-kos">}</span></pre></div> | 1 |
<p dir="auto">Hello,</p>
<p dir="auto">when I am adding firebase dependency to my electron project and importing to main.js as:<br>
<code class="notranslate">import firebase from 'firebase';</code></p>
<p dir="auto">It is replicable in electron-quick-start project as well, just add firebase dependency and import the firebase module.</p>
<p dir="auto">It crashes during the application load with the error:</p>
<blockquote>
<p dir="auto">App threw an error during load<br>
Error: Failed to load gRPC binary module because it was not installed for the current system<br>
Expected directory: electron-v7.1-darwin-x64-unknown<br>
Found: [node-v64-darwin-x64-unknown]<br>
This problem can often be fixed by running "npm rebuild" on the current system</p>
</blockquote>
<p dir="auto">npm rebuild doesn't help...</p>
<p dir="auto">Any ideas how to solve this? I am using last version of electron and the last version of firebase:<br>
"electron": "^7.1.7"<br>
"firebase": "^7.6.1"</p> | <ul dir="auto">
<li>Electron Version: 2.0.7</li>
<li>Operating System (Platform and Version): Windows 10</li>
<li>Last known working Electron version:</li>
</ul>
<p dir="auto"><strong>Expected Behavior</strong><br>
When using APIs like</p>
<ul dir="auto">
<li>webContents.clearHistory(),</li>
<li>session.flushStorageData();</li>
<li>session.clearCache();</li>
<li>session.clearStorageData();</li>
<li>session.cookies.flushStore();<br>
I'd expect it to work on persistent sessions to delete the data, even if not deleting the folders they're stored in.</li>
</ul>
<p dir="auto"><strong>Actual behavior</strong><br>
No data is removed, partitions are still full size (often huge due to caching).</p>
<p dir="auto"><strong>To Reproduce</strong><br>
This is happening with <a href="https://github.com/TheGoddessInari/rambox">https://github.com/TheGoddessInari/rambox</a> (which I'm trying to fix due to many upstream problems), but none of the methods to clear data from a session actually work with the persisted sessions.</p>
<p dir="auto">If you create an instance of any service then delete it, the folder is still there, as is the entire cache, GPUCache, localStorage, etc despite all of the above functions getting called per-session.</p>
<p dir="auto"><strong>Screenshots</strong></p>
<p dir="auto"><strong>Additional Information</strong><br>
If it's relevant, there's a commit up on the testing branch that fixes enough to actually allow removing all services at once (trash icon in the upper right of the home page), or backup/restore, the restore now works, but you'll duplicate all partitions with no removal of the old ones.</p>
<p dir="auto">There's also Help->Tools->Clear Cache which does nothing and just calls webContents.session.clearCache().</p>
<p dir="auto">It COULD be an app bug (I didn't write it originally), but I confirmed that each of the aforementioned functions is getting called, with no removal of the session, no removal of any cache data, <strong>and</strong> no change in each session's folder contents or size. On some sessions, like Slack, not removing old session state can lead to gigabytes of unused cache lying around.</p>
<p dir="auto">This isn't what I expect when those functions are called, and I can't imagine it'd be intended to need to hardcode a path to the sessions and delete them manually.</p> | 0 |
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have searched the <a href="https://github.com/apache/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">Can transfer attachment from http headers to RpcContext</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> | <ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>Dubbo version: master</li>
<li>Operating System version: mac</li>
<li>Java version: 1.8</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<ol dir="auto">
<li>我在dubbo-admin 上配置一条动态配置如下:<br>
configVersion: v2.7<br>
enabled: true<br>
configs:</li>
</ol>
<ul dir="auto">
<li>side: consumer<br>
addresses:
<ul dir="auto">
<li>0.0.0.0<br>
parameters:<br>
timeout: 6000<br>
cluster: failback</li>
</ul>
</li>
</ul>
<ol start="2" dir="auto">
<li>启动org.apache.dubbo.demo.provider.Application.ProviderConfiguration, 抛空指针。</li>
<li>跟踪代码,RegistryProtocol.notify(List urls)内部调用,doOverrideIfNecessary。<br>
该方法会判断:当前注册URL 与新的URL不同,会重新导入<br>
if (!currentUrl.equals(newUrl)) {<br>
RegistryProtocol.this.reExport(originInvoker, newUrl);<br>
logger.info("exported provider url changed, origin url: " + originUrl +<br>
", old export url: " + currentUrl + ", new export url: " + newUrl);<br>
}</li>
</ol>
<p dir="auto">在doReExport 方法下,会调用<br>
logger.info("Try to unregister old url: " + oldProviderUrl);<br>
registry.reExportUnregister(oldProviderUrl);<br>
但是这个oldProviderUrl is null, 因为在注册的时候是从<br>
ExporterChangeableWrapper exporter = (ExporterChangeableWrapper) bounds.get(key); 获取。<br>
但是ExporterChangeableWrapper 构造时,但是构造方法:<br>
public ExporterChangeableWrapper(Exporter exporter, Invoker originInvoker) {<br>
this.exporter = exporter;<br>
this.originInvoker = originInvoker;<br>
}<br>
所以registerUrl is null。<br>
在AbstractRegistry.unregister()上有<br>
public void unregister(URL url) {<br>
if (url == null) {<br>
throw new IllegalArgumentException("unregister url == null");<br>
}<br>
if (logger.isInfoEnabled()) {<br>
logger.info("Unregister: " + url);<br>
}<br>
registered.remove(url);<br>
}<br>
抛出参数异常。</p>
<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 |
<p dir="auto">So far I really like Atom 1.0 - it's got a long way to go, but it will get there. We needed an editor like this.</p>
<p dir="auto">Anyway: the only thing bothering me was how quickly it installed itself (Windows 8.1, 64 bit). Even though that might sound like a _good_¨thing, it isn't. When I double-click the installer I get no options, no information whatsoever. Only a screen "Atom is installing and will launch when ready." For some people this might be the best approach, but for a whole lot of others it isn't.</p>
<p dir="auto">Some options would be great. I am thinking: file association, installation directory, packages to include with installation (I for one don't need all packages that are included on default install) and so on. I could understand that file association and package control aren't included (though I'd really like that) but why not the ability to choose your own installation directory?</p> | <p dir="auto">For some reason, Atom is displaying fonts <em>blurry</em> on my retina MBP. Is there something I can do to fix this?!</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="~/g/atom git:master atom --version
0.125.0-690d32c"><pre class="notranslate"><code class="notranslate">~/g/atom git:master atom --version
0.125.0-690d32c
</code></pre></div>
<p dir="auto">Same file opened in subl3 for comparison:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/5219415/4098522/4be081ec-3027-11e4-9f9f-5e22fc665657.jpg"><img src="https://cloud.githubusercontent.com/assets/5219415/4098522/4be081ec-3027-11e4-9f9f-5e22fc665657.jpg" alt="screen shot 2014-08-30 at 11 19 37 copy" style="max-width: 100%;"></a></p> | 0 |
<p dir="auto">It would be nice if the terminal would support the FancyZones Powertoy published by MS.</p>
<p dir="auto">I would like to be able to "shift" drag the window and have it SNAP to the various zones in my desktop. Other "apps" seem to work with it (like Sticky Notes).</p> | <h1 dir="auto">Context Menu for Tabs</h1>
<p dir="auto">Useful for now, whilst the Tab Bar is in an incomplete state, but will also be useful in a finished version. Each Tab should have a Context Menu with a <strong>Close</strong> command, as well as eventually, options for renaming the Profile/Tab Title, and changing the TabWidth behaviour.</p>
<p dir="auto">For now, the Tab Title Text can be so long, you need to scroll with the mouse wheel to get to the close button on some tabs, so having a right click option would help for now.</p>
<h2 dir="auto">team notes</h2>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="606053517" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/5524" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/5524/hovercard" href="https://github.com/microsoft/terminal/issues/5524">#5524</a> ("Close all tabs to the right") would be a good addition.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> "Reload tab" would be a good addition, which would require <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="529087590" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/3726" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/3726/hovercard" href="https://github.com/microsoft/terminal/issues/3726">#3726</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> The tab color picker is already in there, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="530634529" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/3789" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/3789/hovercard" href="https://github.com/microsoft/terminal/pull/3789">#3789</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Renaming was added in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="613629273" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/5775" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/5775/hovercard" href="https://github.com/microsoft/terminal/pull/5775">#5775</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> "Find" isn't a bad idea <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="608785727" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/5633" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/5633/hovercard" href="https://github.com/microsoft/terminal/issues/5633">#5633</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Split new panes? Another good idea <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="584737522" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/5025" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/5025/hovercard" href="https://github.com/microsoft/terminal/issues/5025">#5025</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Duplicate tab? Why not <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="821826285" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/9373" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/9373/hovercard" href="https://github.com/microsoft/terminal/issues/9373">#9373</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1315602142" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/13580" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/13580/hovercard" href="https://github.com/microsoft/terminal/issues/13580">#13580</a></li>
</ul> | 0 |
<p dir="auto">I'm using next.js with a custom express server. After building next.js, my custom endpoints (such as /graphiql) aren't reachable anymore, and instead the next.js 404 page appears.</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h3 dir="auto">Expected behavior</h3>
<p dir="auto">After running <code class="notranslate">next build</code> and then <code class="notranslate">export NODE_ENV=prod && node --harmony-async-await index.js</code> it should behave like <code class="notranslate">next dev</code>, i.e. have access to the registered endpoints.</p>
<h3 dir="auto">Buggy behavior</h3>
<p dir="auto">If I visit /graphiql I get the 404 screen.</p>
<h3 dir="auto">Steps</h3>
<p dir="auto">The startup code looks like this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="const dev = process.env.NODE_ENV !== 'prod'
const start = async () => {
const app = express()
// <- register other express handlers such as /graphql, /graphiql and other endpoints
const nextApp = next({
dev
})
const handle = nextApp.getRequestHandler()
await nextApp.prepare()
app.get('*', (req, res) => {
return handle(req, res)
})
await app.listen(settings.port)
console.log(`Online at ${settings.url}:${settings.port}`)
}"><pre class="notranslate"><code class="notranslate">const dev = process.env.NODE_ENV !== 'prod'
const start = async () => {
const app = express()
// <- register other express handlers such as /graphql, /graphiql and other endpoints
const nextApp = next({
dev
})
const handle = nextApp.getRequestHandler()
await nextApp.prepare()
app.get('*', (req, res) => {
return handle(req, res)
})
await app.listen(settings.port)
console.log(`Online at ${settings.url}:${settings.port}`)
}
</code></pre></div>
<h2 dir="auto">Your Environment</h2>
<table role="table">
<thead>
<tr>
<th>Tech</th>
<th>Version</th>
</tr>
</thead>
<tbody>
<tr>
<td>next</td>
<td>3.0.1-beta.13</td>
</tr>
<tr>
<td>node</td>
<td>v7.5.0</td>
</tr>
<tr>
<td>OS</td>
<td>Ubuntu</td>
</tr>
<tr>
<td>browser</td>
<td>Chrome</td>
</tr>
</tbody>
</table> | <ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<p dir="auto">Hello guys!</p>
<p dir="auto">First things first: thanks a lot to the contributors for the framework : )</p>
<p dir="auto">I'm contacting because I'm having hard times trying to hot-reload the .sass on this example: <a href="https://github.com/zeit/next.js/tree/v3-beta/examples/with-external-scoped-css">https://github.com/zeit/next.js/tree/v3-beta/examples/with-external-scoped-css</a></p>
<p dir="auto">My goal is to have a folder per component / page, with a hot-reloaded js and scss file, using scoped css, and without adding <code class="notranslate"><style dangerouslySetInnerHTML /></code> on every component or without using template string kind of css technology as style-jsx or styled-components.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="components
├── comp1
│ ├── index.js
│ └── styles.scss
├── comp2
│ ├── index.js
│ └── styles.scss
└── comp3
└── index.js
└── styles.scss"><pre class="notranslate"><code class="notranslate">components
├── comp1
│ ├── index.js
│ └── styles.scss
├── comp2
│ ├── index.js
│ └── styles.scss
└── comp3
└── index.js
└── styles.scss
</code></pre></div>
<p dir="auto">So the thing is that there's a related PR mentioned in the example as a potential fix for the hot-reloading ( <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="201722614" data-permission-text="Title is private" data-url="https://github.com/vercel/next.js/issues/823" data-hovercard-type="pull_request" data-hovercard-url="/vercel/next.js/pull/823/hovercard" href="https://github.com/vercel/next.js/pull/823">#823</a>), and I was wondering if anybody has any example / tip on how the functionality added by the PR could be used to customize the hot-reloading so the changes on the sass are also detected and injected.</p>
<p dir="auto">I have tried and tested a lot without success, including the approached on <a href="https://github.com/zeit/next.js/issues/544" data-hovercard-type="issue" data-hovercard-url="/vercel/next.js/issues/544/hovercard">this thread</a>, but none is fitting completely what I want to achieve, so any help would be really appreciated.</p>
<p dir="auto">Thanks a lot in advance!!</p> | 0 |
<h3 dir="auto">System info</h3>
<ul dir="auto">
<li>Playwright Version: v1.30.0</li>
<li>Operating System: Ubuntu 20</li>
<li>Browser: WebKit</li>
</ul>
<h3 dir="auto">Source code</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I provided exact source code that allows reproducing the issue locally.</li>
</ul>
<p dir="auto"><strong>Link to the GitHub repository with the repro</strong></p>
<p dir="auto"><a href="https://github.com/ta834n/playwright-webkit-demo">https://github.com/ta834n/playwright-webkit-demo</a></p>
<p dir="auto"><strong>Steps</strong></p>
<ul dir="auto">
<li>check out the repository</li>
<li><code class="notranslate">npm install</code></li>
<li><code class="notranslate">npx playwright install</code></li>
<li><code class="notranslate">npx playwright test</code> // this will create the initial screenshots</li>
<li><code class="notranslate">npx playwright test</code> // this will compare the screenshots</li>
<li>repeat the last step (1 out of 5 times the tests will fail)</li>
</ul>
<p dir="auto"><strong>Expected</strong></p>
<p dir="auto">I expect all tests made with <code class="notranslate">toMatchSnapshot</code> to pass no matter how often I execute them.</p>
<p dir="auto"><strong>Actual</strong></p>
<ul dir="auto">
<li>tests made with <code class="notranslate">toMatchSnapshot</code> fail irregularly</li>
<li>tests made with <code class="notranslate">toHaveScreenshot</code> pass all the time</li>
</ul> | <h3 dir="auto">System info</h3>
<ul dir="auto">
<li>Playwright Version: [v1.33.0]</li>
<li>Operating System: [All, Windows 10.]</li>
<li>Browser: [All]</li>
<li>Other info: React 18.2</li>
</ul>
<h3 dir="auto">Source code</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site"
/>
</head>
<body>
<div id="root1"></div>
<div id="root2"></div>
<script src="script-bellow.js"></script>
</body>
</html>"><pre class="notranslate"><code class="notranslate"><!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site"
/>
</head>
<body>
<div id="root1"></div>
<div id="root2"></div>
<script src="script-bellow.js"></script>
</body>
</html>
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import {createRoot} from "react-dom/client";
function MyReactComponent() {
return <div></div>;
}
const container1 = document.getElementById("root1");
const root1 = createRoot(container1);
root1.render(<MyReactComponent />);
root1.unmount(); // important
const container2 = document.getElementById("root2");
const root2 = createRoot(container2);
root2.render(<MyReactComponent />);"><pre class="notranslate"><code class="notranslate">import {createRoot} from "react-dom/client";
function MyReactComponent() {
return <div></div>;
}
const container1 = document.getElementById("root1");
const root1 = createRoot(container1);
root1.render(<MyReactComponent />);
root1.unmount(); // important
const container2 = document.getElementById("root2");
const root2 = createRoot(container2);
root2.render(<MyReactComponent />);
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="test("mycase", async ({page}) => {
await page.goto("http://localhost:3000/");
await page.locator("_react=MyReactComponent").click();
})"><pre class="notranslate"><code class="notranslate">test("mycase", async ({page}) => {
await page.goto("http://localhost:3000/");
await page.locator("_react=MyReactComponent").click();
})
</code></pre></div>
<p dir="auto"><strong>Config file</strong><br>
default</p>
<p dir="auto"><strong>Steps</strong></p>
<ul dir="auto">
<li>[Run the test]</li>
</ul>
<p dir="auto"><strong>Expected</strong></p>
<p dir="auto"><code class="notranslate">MyReactComponent</code> of the <code class="notranslate">root2</code> receives a click.</p>
<p dir="auto"><strong>Actual</strong></p>
<p dir="auto">Test fails with error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" Error: locator.click: TypeError: null is not an object (evaluating 'node[rootKey].stateNode')
=========================== logs ===========================
waiting for locator('_react=MyReactComponent')"><pre class="notranslate"><code class="notranslate"> Error: locator.click: TypeError: null is not an object (evaluating 'node[rootKey].stateNode')
=========================== logs ===========================
waiting for locator('_react=MyReactComponent')
</code></pre></div>
<p dir="auto">After React unmounts at a DOM element that DOM element still contains property with <code class="notranslate">__reactContainer</code> prefix but it's value <a href="https://github.com/facebook/react/blob/0b931f90e8964183f08ac328e7350d847abb08f9/packages/react-dom-bindings/src/client/ReactDOMComponentTree.js#L77">becomes</a> <code class="notranslate">null</code>. So <code class="notranslate">findReactRoots</code> fails <a href="https://github.com/microsoft/playwright/blob/cffb6ac269ab97ac63ac98d88244603e3349b793/packages/playwright-core/src/server/injected/reactSelectorEngine.ts#L155">here</a>.</p>
<p dir="auto">As a result usage of any React locator throws an error.</p> | 0 |
<ul dir="auto">
<li>VSCode Version: Latest as at this post (can't check since it will not run)</li>
<li>OS Version: Windows 10</li>
</ul>
<p dir="auto">Steps to Reproduce:</p>
<ol dir="auto">
<li>Open VS Code and wait for a update</li>
<li>Ask it to update</li>
<li>Error pops up. The file is <code class="notranslate">askpass.sh</code></li>
<li>Try deleting the file causing the problem (didn't work on my machine)</li>
<li>Click ignore (VS Code Insider no longer runs</li>
</ol>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/254737/13770651/8d60098e-ea80-11e5-9727-d05e3d8947aa.png"><img width="376" alt="2016-03-15 07_11_54-microsoft solitaire collection" src="https://cloud.githubusercontent.com/assets/254737/13770651/8d60098e-ea80-11e5-9727-d05e3d8947aa.png" style="max-width: 100%;"></a></p>
<p dir="auto">This is from the insider channel. When updating the main version, I got the same message, asked it to ignore. Currently, that instance crashes every few minutes. Not sure if the ignore was the cause.</p>
<p dir="auto">Running from the command line gives the error below<br>
<code class="notranslate">{ errorCode: 'load', moduleId: 'https-proxy-agent', neededBy: [ 'vs/base/node/proxy' ], detail: { [Error: Cannot find module 'https-proxy-agent'] code: 'MODULE_NOT_FOUND' } }</code></p> | <p dir="auto">I am getting an error trying to update to the new 0.10.10 release on Windows.</p>
<p dir="auto">I received the notification, clicked on "update and restart" and it showed this error:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/199648/13404671/1877ddec-df1b-11e5-8ab1-46d7ecdd470f.png"><img src="https://cloud.githubusercontent.com/assets/199648/13404671/1877ddec-df1b-11e5-8ab1-46d7ecdd470f.png" alt="errorupdatevscode" style="max-width: 100%;"></a></p>
<p dir="auto">Pressing "start again" shows the same error, cancel roll backs the install.</p> | 1 |
<p dir="auto">The standard library will require very carefully arranged bindings to libuv (<a href="https://github.com/joyent/libuv">https://github.com/joyent/libuv</a>), the async IO library we're going to be using. The current rust IO system is synchronous and stdio-based, which is not really ideal long term.</p> | <p dir="auto">The mechanics should be easy because exported macros are just stored as strings in crate metadata. But it won't be very useful unless names mentioned by macros can change to follow the re-export. If we can find a pleasing solution to this problem, we can eliminate a lot of duplicated code e.g. between <code class="notranslate">libcore/macros.rs</code> and <code class="notranslate">libstd/macros.rs</code>.</p> | 0 |
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="final String url = "http://materialdesign.qiniudn.com/videos/animation-authenticmotion-massandweight-asymmetric.mp4";
ImageView img = (ImageView) findViewById(R.id.img_test);
Glide.with(context).load(url).into(img);"><pre class="notranslate"><code class="notranslate">final String url = "http://materialdesign.qiniudn.com/videos/animation-authenticmotion-massandweight-asymmetric.mp4";
ImageView img = (ImageView) findViewById(R.id.img_test);
Glide.with(context).load(url).into(img);
</code></pre></div>
<p dir="auto">I hope load the video cover by using the above code.</p>
<p dir="auto">Now I load the cover in the way as follows.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Bitmap bitmap;
MediaMetadataRetriever retriever = new MediaMetadataRetriever();
int kind = MediaStore.Video.Thumbnails.MINI_KIND;
try {
if ("http".equalsIgnoreCase(url.substring(0,4))) {
retriever.setDataSource(url, new HashMap<String, String>());
} else {
retriever.setDataSource(url);
}
bitmap = retriever.getFrameAtTime(500);
} catch (Exception ex) {
ex.printStackTrace();
// Assume this is a corrupt video file.
} finally {
try {
retriever.release();
} catch (RuntimeException ex) {
// Ignore failures while cleaning up.
}
}
if (kind == Images.Thumbnails.MICRO_KIND && bitmap != null) {
bitmap = ThumbnailUtils.extractThumbnail(bitmap, width, height, ThumbnailUtils.OPTIONS_RECYCLE_INPUT);
}"><pre class="notranslate"><code class="notranslate">Bitmap bitmap;
MediaMetadataRetriever retriever = new MediaMetadataRetriever();
int kind = MediaStore.Video.Thumbnails.MINI_KIND;
try {
if ("http".equalsIgnoreCase(url.substring(0,4))) {
retriever.setDataSource(url, new HashMap<String, String>());
} else {
retriever.setDataSource(url);
}
bitmap = retriever.getFrameAtTime(500);
} catch (Exception ex) {
ex.printStackTrace();
// Assume this is a corrupt video file.
} finally {
try {
retriever.release();
} catch (RuntimeException ex) {
// Ignore failures while cleaning up.
}
}
if (kind == Images.Thumbnails.MICRO_KIND && bitmap != null) {
bitmap = ThumbnailUtils.extractThumbnail(bitmap, width, height, ThumbnailUtils.OPTIONS_RECYCLE_INPUT);
}
</code></pre></div> | <p dir="auto">How can I load Thumbnail from a video url.<br>
for now I use "MediaMetadataRetriever" to get the bitmap but I want to load it with glide.<br>
is this possible ?</p> | 1 |
<h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Bug Report</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">docker_service</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.2.0.0
config file =
configured module search path = Default w/o overrides"><pre class="notranslate"><code class="notranslate">ansible 2.2.0.0
config file =
configured module search path = Default w/o overrides
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<p dir="auto">none</p>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<p dir="auto">linux</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">When using a private registry, the <code class="notranslate">docker_service</code> task fails to pull images.</p>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<p dir="auto">Run the task using a private registry</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="playbook task:
- docker_service:
project_src: .
files:
- docker-compose.yml
pull: yes
state: present
docker-compose file:
version: '2'
services:
my_service:
image: my.private.registry.com/my_service"><pre class="notranslate"><code class="notranslate">playbook task:
- docker_service:
project_src: .
files:
- docker-compose.yml
pull: yes
state: present
docker-compose file:
version: '2'
services:
my_service:
image: my.private.registry.com/my_service
</code></pre></div>
<h5 dir="auto">EXPECTED RESULTS</h5>
<p dir="auto">It should not fail to pull images</p>
<h5 dir="auto">ACTUAL RESULTS</h5>
<p dir="auto">It fails</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="TASK [docker_service] **********************************************************
task path: /home/user/src/2016/acr/novum-sandpit/dev/deploy/deploy.yml:9
Using module file /usr/local/lib/python2.7/dist-packages/ansible/modules/core/cloud/docker/docker_service.py
<localhost> ESTABLISH LOCAL CONNECTION FOR USER: user
<localhost> EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo $HOME/.ansible/tmp/ansible-tmp-1481302953.19-26010212998593 `" && echo ansible-tmp-1481302953.19-26010212998593="` echo $HOME/.ansible/tmp/ansible-tmp-1481302953.19-26010212998593 `" ) && sleep 0'
<localhost> PUT /tmp/tmpd5CKV6 TO /home/user/.ansible/tmp/ansible-tmp-1481302953.19-26010212998593/docker_service.py
<localhost> EXEC /bin/sh -c 'chmod u+x /home/user/.ansible/tmp/ansible-tmp-1481302953.19-26010212998593/ /home/user/.ansible/tmp/ansible-tmp-1481302953.19-26010212998593/docker_service.py && sleep 0'
<localhost> EXEC /bin/sh -c '/usr/bin/python /home/user/.ansible/tmp/ansible-tmp-1481302953.19-26010212998593/docker_service.py; rm -rf "/home/user/.ansible/tmp/ansible-tmp-1481302953.19-26010212998593/" > /dev/null 2>&1 && sleep 0'
An exception occurred during task execution. The full traceback is:
Traceback (most recent call last):
File "/tmp/ansible_no8CvM/ansible_module_docker_service.py", line 929, in <module>
main()
File "/tmp/ansible_no8CvM/ansible_module_docker_service.py", line 924, in main
result = ContainerManager(client).exec_module()
File "/tmp/ansible_no8CvM/ansible_module_docker_service.py", line 575, in exec_module
result = self.cmd_up()
File "/tmp/ansible_no8CvM/ansible_module_docker_service.py", line 627, in cmd_up
result.update(self.cmd_pull())
File "/tmp/ansible_no8CvM/ansible_module_docker_service.py", line 739, in cmd_pull
image = service.image()
File "/usr/local/lib/python2.7/dist-packages/compose/service.py", line 320, in image
raise NoSuchImageError("Image '{}' not found".format(self.image_name))
compose.service.NoSuchImageError: Image 'my.private.registry.com/my_service' not found
fatal: [localhost]: FAILED! => {
"changed": false,
"failed": true,
"invocation": {
"module_name": "docker_service"
},
"module_stderr": "Traceback (most recent call last):\n File \"/tmp/ansible_no8CvM/ansible_module_docker_service.py\", line 929, in <module>\n main()\n File \"/tmp/ansible_no8CvM/ansible_module_docker_service.py\", line 924, in main\n result = ContainerManager(client).exec_module()\n File \"/tmp/ansible_no8CvM/ansible_module_docker_service.py\", line 575, in exec_module\n result = self.cmd_up()\n File \"/tmp/ansible_no8CvM/ansible_module_docker_service.py\", line 627, in cmd_up\n result.update(self.cmd_pull())\n File \"/tmp/ansible_no8CvM/ansible_module_docker_service.py\", line 739, in cmd_pull\n image = service.image()\n File \"/usr/local/lib/python2.7/dist-packages/compose/service.py\", line 320, in image\n raise NoSuchImageError(\"Image '{}' not found\".format(self.image_name))\ncompose.service.NoSuchImageError: Image 'my.private.registry.com/my_service' not found\n",
"module_stdout": "",
"msg": "MODULE FAILURE"
}"><pre class="notranslate"><code class="notranslate">TASK [docker_service] **********************************************************
task path: /home/user/src/2016/acr/novum-sandpit/dev/deploy/deploy.yml:9
Using module file /usr/local/lib/python2.7/dist-packages/ansible/modules/core/cloud/docker/docker_service.py
<localhost> ESTABLISH LOCAL CONNECTION FOR USER: user
<localhost> EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo $HOME/.ansible/tmp/ansible-tmp-1481302953.19-26010212998593 `" && echo ansible-tmp-1481302953.19-26010212998593="` echo $HOME/.ansible/tmp/ansible-tmp-1481302953.19-26010212998593 `" ) && sleep 0'
<localhost> PUT /tmp/tmpd5CKV6 TO /home/user/.ansible/tmp/ansible-tmp-1481302953.19-26010212998593/docker_service.py
<localhost> EXEC /bin/sh -c 'chmod u+x /home/user/.ansible/tmp/ansible-tmp-1481302953.19-26010212998593/ /home/user/.ansible/tmp/ansible-tmp-1481302953.19-26010212998593/docker_service.py && sleep 0'
<localhost> EXEC /bin/sh -c '/usr/bin/python /home/user/.ansible/tmp/ansible-tmp-1481302953.19-26010212998593/docker_service.py; rm -rf "/home/user/.ansible/tmp/ansible-tmp-1481302953.19-26010212998593/" > /dev/null 2>&1 && sleep 0'
An exception occurred during task execution. The full traceback is:
Traceback (most recent call last):
File "/tmp/ansible_no8CvM/ansible_module_docker_service.py", line 929, in <module>
main()
File "/tmp/ansible_no8CvM/ansible_module_docker_service.py", line 924, in main
result = ContainerManager(client).exec_module()
File "/tmp/ansible_no8CvM/ansible_module_docker_service.py", line 575, in exec_module
result = self.cmd_up()
File "/tmp/ansible_no8CvM/ansible_module_docker_service.py", line 627, in cmd_up
result.update(self.cmd_pull())
File "/tmp/ansible_no8CvM/ansible_module_docker_service.py", line 739, in cmd_pull
image = service.image()
File "/usr/local/lib/python2.7/dist-packages/compose/service.py", line 320, in image
raise NoSuchImageError("Image '{}' not found".format(self.image_name))
compose.service.NoSuchImageError: Image 'my.private.registry.com/my_service' not found
fatal: [localhost]: FAILED! => {
"changed": false,
"failed": true,
"invocation": {
"module_name": "docker_service"
},
"module_stderr": "Traceback (most recent call last):\n File \"/tmp/ansible_no8CvM/ansible_module_docker_service.py\", line 929, in <module>\n main()\n File \"/tmp/ansible_no8CvM/ansible_module_docker_service.py\", line 924, in main\n result = ContainerManager(client).exec_module()\n File \"/tmp/ansible_no8CvM/ansible_module_docker_service.py\", line 575, in exec_module\n result = self.cmd_up()\n File \"/tmp/ansible_no8CvM/ansible_module_docker_service.py\", line 627, in cmd_up\n result.update(self.cmd_pull())\n File \"/tmp/ansible_no8CvM/ansible_module_docker_service.py\", line 739, in cmd_pull\n image = service.image()\n File \"/usr/local/lib/python2.7/dist-packages/compose/service.py\", line 320, in image\n raise NoSuchImageError(\"Image '{}' not found\".format(self.image_name))\ncompose.service.NoSuchImageError: Image 'my.private.registry.com/my_service' not found\n",
"module_stdout": "",
"msg": "MODULE FAILURE"
}
</code></pre></div> | <h5 dir="auto">Issue type:</h5>
<p dir="auto">Bug report</p>
<h5 dir="auto">Component Name:</h5>
<p dir="auto">ec2_group module</p>
<h5 dir="auto">Ansible version:</h5>
<p dir="auto">1.8.4<br>
boto 2.36</p>
<h5 dir="auto">Environment:</h5>
<p dir="auto">OS X 10.8.2,<br>
Ubuntu 12.04.05<br>
python 2.7</p>
<h5 dir="auto">Summary</h5>
<p dir="auto">I came across an issue when managing SG group entires via boto/ansible.</p>
<p dir="auto">Got this error on one of my environments:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" File "/Users/zytek/.ansible/tmp/ansible-tmp-1425034576.71-249532590752251/ec2_group", line 2181, in <module>
main()
File "/Users/zytek/.ansible/tmp/ansible-tmp-1425034576.71-249532590752251/ec2_group", line 302, in main
group.authorize(rule['proto'], rule['from_port'], rule['to_port'], ip, grantGroup)
File "/Library/Python/2.7/site-packages/boto/ec2/securitygroup.py", line 203, in authorize
dry_run=dry_run)
File "/Library/Python/2.7/site-packages/boto/ec2/connection.py", line 3191, in authorize_security_group
params, verb='POST')
File "/Library/Python/2.7/site-packages/boto/connection.py", line 1226, in get_status
raise self.ResponseError(response.status, response.reason, body)
boto.exception.EC2ResponseError: EC2ResponseError: 400 Bad Request
<?xml version="1.0" encoding="UTF-8"?>
<Response><Errors><Error><Code>InvalidPermission.Duplicate</Code><Message>The permission '5495791-1-8080-8080' has already been authorized on the specified group</Message></Error></Errors><RequestID>eff6ddd3-5752-45d0-a4d7-b0e6fc3e1820</RequestID></Response>"><pre class="notranslate"><code class="notranslate"> File "/Users/zytek/.ansible/tmp/ansible-tmp-1425034576.71-249532590752251/ec2_group", line 2181, in <module>
main()
File "/Users/zytek/.ansible/tmp/ansible-tmp-1425034576.71-249532590752251/ec2_group", line 302, in main
group.authorize(rule['proto'], rule['from_port'], rule['to_port'], ip, grantGroup)
File "/Library/Python/2.7/site-packages/boto/ec2/securitygroup.py", line 203, in authorize
dry_run=dry_run)
File "/Library/Python/2.7/site-packages/boto/ec2/connection.py", line 3191, in authorize_security_group
params, verb='POST')
File "/Library/Python/2.7/site-packages/boto/connection.py", line 1226, in get_status
raise self.ResponseError(response.status, response.reason, body)
boto.exception.EC2ResponseError: EC2ResponseError: 400 Bad Request
<?xml version="1.0" encoding="UTF-8"?>
<Response><Errors><Error><Code>InvalidPermission.Duplicate</Code><Message>The permission '5495791-1-8080-8080' has already been authorized on the specified group</Message></Error></Errors><RequestID>eff6ddd3-5752-45d0-a4d7-b0e6fc3e1820</RequestID></Response>
</code></pre></div>
<p dir="auto">Both AWS SG config and ansible playbook were in sync when it comes to entries.<br>
Adding new SG and populating it worker fine, just the second run was not working, as AWS API complains about duplicated entries.</p>
<p dir="auto">The workaround here was to change 'group_name: some-name' to 'group_id: sg-xxxx'</p>
<p dir="auto">Steps to reproduce:</p>
<p dir="auto">Expected result:<br>
No changes to SG entries</p>
<p dir="auto">Actual result:<br>
Error about duplicate entries</p> | 0 |
<p dir="auto">We want to enable the ability to have more than 1 <code class="notranslate">tsconfig.json</code> file in an asp.net v5 project, this will make the compilation of ts files more flexible.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/Common.Classes
- tsconfig.json {out: "../Outputs/Common.Classes.js"}
- Class1.ts
- Class2.ts
/Common.Plugins
- tsconfig.json {out: "../Outputs/Common.Plugins.js"}
- Class3.ts
- Class4.ts
/Outputs
- Common.Classes.js
- Common.Plugins.js"><pre class="notranslate"><code class="notranslate">/Common.Classes
- tsconfig.json {out: "../Outputs/Common.Classes.js"}
- Class1.ts
- Class2.ts
/Common.Plugins
- tsconfig.json {out: "../Outputs/Common.Plugins.js"}
- Class3.ts
- Class4.ts
/Outputs
- Common.Classes.js
- Common.Plugins.js
</code></pre></div>
<p dir="auto">See these comments:<br>
<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="99217592" data-permission-text="Title is private" data-url="https://github.com/microsoft/TypeScript/issues/4161" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript/issues/4161/hovercard?comment_id=129369116&comment_type=issue_comment" href="https://github.com/microsoft/TypeScript/issues/4161#issuecomment-129369116">#4161 (comment)</a><br>
<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="99217592" data-permission-text="Title is private" data-url="https://github.com/microsoft/TypeScript/issues/4161" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript/issues/4161/hovercard?comment_id=137248228&comment_type=issue_comment" href="https://github.com/microsoft/TypeScript/issues/4161#issuecomment-137248228">#4161 (comment)</a></p> | <p dir="auto">Hi,</p>
<p dir="auto"><strong>Version:</strong> VS 2015/TS 1.8</p>
<p dir="auto">This is an obvious bug so may have been reported earlier, but I couldn't find anything.</p>
<p dir="auto">Add a new TS project in Visual Studio and add the following (erroneous) code:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="class Greeter {
constructor(element: HTMLElement) {
this.foo = 'foo';
}
}"><pre class="notranslate"><span class="pl-k">class</span> <span class="pl-smi">Greeter</span> <span class="pl-kos">{</span>
<span class="pl-en">constructor</span><span class="pl-kos">(</span><span class="pl-s1">element</span>: <span class="pl-smi">HTMLElement</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">foo</span> <span class="pl-c1">=</span> <span class="pl-s">'foo'</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">Compiling this results in the following build output:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="1>------ Rebuild All started: Project: TypeScriptHTMLApp1, Configuration: Debug Any CPU ------
1>C:\TypeScriptHTMLApp1\app.ts(4,14): error TS2339: Build: Property 'foo' does not exist on type 'Greeter'.
1>C:\TypeScriptHTMLApp1\app.ts(4,14): error TS2339: Build: Property 'foo' does not exist on type 'Greeter'.
========== Rebuild All: 0 succeeded, 1 failed, 0 skipped =========="><pre class="notranslate"><code class="notranslate">1>------ Rebuild All started: Project: TypeScriptHTMLApp1, Configuration: Debug Any CPU ------
1>C:\TypeScriptHTMLApp1\app.ts(4,14): error TS2339: Build: Property 'foo' does not exist on type 'Greeter'.
1>C:\TypeScriptHTMLApp1\app.ts(4,14): error TS2339: Build: Property 'foo' does not exist on type 'Greeter'.
========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ==========
</code></pre></div>
<p dir="auto">The error is printed in duplicate. This can be a significant nuisance in a solution with a large number of projects.</p> | 0 |
<p dir="auto"><strong>Migrated issue, originally created by Anonymous</strong></p>
<p dir="auto">If you define a default ordering in a relation and do a query on that relation using a different ordering the result is not what you would expect. In my code I define a mapper like this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="orm.mapper(Desktop, desktop_table, properties=dict(
status_history = orm.relation(DesktopStatus,
backref="desktop",
order_by=DesktopStatus.updated,
lazy="dynamic"),
))"><pre class="notranslate"><code class="notranslate">orm.mapper(Desktop, desktop_table, properties=dict(
status_history = orm.relation(DesktopStatus,
backref="desktop",
order_by=DesktopStatus.updated,
lazy="dynamic"),
))
</code></pre></div>
<p dir="auto">In one method of the Desktop class I need use the last entry in that list. A slice results in all entries being fixed, so I did this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" status=self.status_history.order_by(DesktopStatus.updated.desc()).limit(1).first().updated"><pre class="notranslate"><code class="notranslate"> status=self.status_history.order_by(DesktopStatus.updated.desc()).limit(1).first().updated
</code></pre></div>
<p dir="auto">which resulted in this SQL query:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="10:55:38,427 INFO [sqlalchemy.engine.base.Engine.0x..ec](sqlalchemy.engine.base.Engine.0x..ec) SELECT desktop_status.id AS desktop_status_id, desktop_status.desktop_id AS desktop_status_desktop_id, desktop_status.old_status AS desktop_status_old_status, desktop_status.new_status AS desktop_status_new_status, desktop_status.updated AS desktop_status_updated
FROM desktop_status
WHERE %(param_1)s = desktop_status.desktop_id ORDER BY desktop_status.updated, desktop_status.updated DESC
LIMIT 1 OFFSET 0"><pre class="notranslate"><code class="notranslate">10:55:38,427 INFO [sqlalchemy.engine.base.Engine.0x..ec](sqlalchemy.engine.base.Engine.0x..ec) SELECT desktop_status.id AS desktop_status_id, desktop_status.desktop_id AS desktop_status_desktop_id, desktop_status.old_status AS desktop_status_old_status, desktop_status.new_status AS desktop_status_new_status, desktop_status.updated AS desktop_status_updated
FROM desktop_status
WHERE %(param_1)s = desktop_status.desktop_id ORDER BY desktop_status.updated, desktop_status.updated DESC
LIMIT 1 OFFSET 0
</code></pre></div>
<p dir="auto">notice how desktop_status.updated appears twice in the ORDER BY clause. The first one takes precedence, so the explicit ordering from my query is ignored.</p>
<p dir="auto">This is somewhat related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="384614659" data-permission-text="Title is private" data-url="https://github.com/sqlalchemy/sqlalchemy/issues/1079" data-hovercard-type="issue" data-hovercard-url="/sqlalchemy/sqlalchemy/issues/1079/hovercard" href="https://github.com/sqlalchemy/sqlalchemy/issues/1079">#1079</a>. I felt that this specific issue is different enough to warrant a separate bugreport.</p> | <p dir="auto"><strong>Migrated issue, originally created by Anonymous</strong></p>
<p dir="auto">When trying to reflect a table with a column with the unsigned keyword this exception is thrown:</p>
<p dir="auto">Using SQLAlchemy 0.2.6 installed via easy_install and mysql 4.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ python bug.py
Traceback (most recent call last):
File "bug.py", line 5, in ?
bug_table = Table("bug", meta, autoload=True)
File "build/bdist.darwin-8.7.1-i386/egg/sqlalchemy/schema.py", line 97, in __call__
File "build/bdist.darwin-8.7.1-i386/egg/sqlalchemy/engine/base.py", line 488, in reflecttable
File "build/bdist.darwin-8.7.1-i386/egg/sqlalchemy/databases/mysql.py", line 337, in reflecttable
TypeError: __init__() got an unexpected keyword argument 'unsigned'"><pre class="notranslate"><code class="notranslate">$ python bug.py
Traceback (most recent call last):
File "bug.py", line 5, in ?
bug_table = Table("bug", meta, autoload=True)
File "build/bdist.darwin-8.7.1-i386/egg/sqlalchemy/schema.py", line 97, in __call__
File "build/bdist.darwin-8.7.1-i386/egg/sqlalchemy/engine/base.py", line 488, in reflecttable
File "build/bdist.darwin-8.7.1-i386/egg/sqlalchemy/databases/mysql.py", line 337, in reflecttable
TypeError: __init__() got an unexpected keyword argument 'unsigned'
</code></pre></div>
<p dir="auto">The SQL used to create this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="CREATE TABLE `bug` (
`bug_id` mediumint(8) unsigned NOT NULL default '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;"><pre class="notranslate"><code class="notranslate">CREATE TABLE `bug` (
`bug_id` mediumint(8) unsigned NOT NULL default '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
</code></pre></div>
<p dir="auto">And my bug.py:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from sqlalchemy import *
meta = meta = BoundMetaData("mysql://localhost/bug")
bug_table = Table("bug", meta, autoload=True)"><pre class="notranslate"><code class="notranslate">from sqlalchemy import *
meta = meta = BoundMetaData("mysql://localhost/bug")
bug_table = Table("bug", meta, autoload=True)
</code></pre></div>
<p dir="auto">(I was trying to reflect a phpBB table in case you were curious)</p> | 0 |
<p dir="auto">I am trying to create a polar plot with a log scale on the radial axis but I keep getting an error or I get a missed up plot.<br>
This is the code that I use:</p>
<p dir="auto">import pandas as pd<br>
import numpy as np<br>
import matplotlib.pyplot as plt</p>
<p dir="auto">metabolites = data[["metabolite"]]<br>
intercepts = data[["intercept"]]<br>
amplitudes= data[["amplitude"]]<br>
acrophases = data[["acrophase"]]<br>
ind = data[["Unnamed: 0"]]</p>
<p dir="auto">N = metabolites.count()<br>
N = N.values<br>
N = N[0]</p>
<p dir="auto">metabolites = metabolites.values<br>
acrophases = acrophases.values<br>
amplitudes = amplitudes.values<br>
ind = ind.values<br>
colors = plt.cm.gist_rainbow(ind[:,0]/len(acrophases))<br>
width = np.zeros((N,1)) + 0.3</p>
<p dir="auto">for i in range(len(acrophases)):<br>
if acrophases[i] <0:<br>
acrophases[i] = acrophases[i]+ np.pi</p>
<p dir="auto">acrophases = acrophases[:,0]<br>
amplitudes = amplitudes[:,0]<br>
width1 = width[:,0]<br>
metabolites = metabolites[:,0]<br>
fig = plt.figure()<br>
ax = plt.subplot(111, projection='polar')</p>
<p dir="auto">for j in range(len(acrophases)):<br>
ax.bar(acrophases[j], amplitudes[j], width=0.3, bottom=0.0, align='center', color=colors[j], label=metabolites[j])<br>
handles, labels = ax.get_legend_handles_labels()<br>
ax.set_xticklabels(['0', '3', '6', '9', '12', '15', '18', '21'])</p>
<p dir="auto">ax.set_rlim((1.0, 10000.0))<br>
ax.set_rscale('log')<br>
fig.savefig('plot.tiff', dpi=600)<br>
plt.show()</p> | <p dir="auto">I have been using the API example for creating radar charts: <a href="http://matplotlib.org/examples/api/radar_chart.html" rel="nofollow">http://matplotlib.org/examples/api/radar_chart.html</a></p>
<p dir="auto">In the previous version you could make the radial grid logarithmic simply by adding <code class="notranslate">ax.set_yscale('log')</code> here:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" ax = fig.add_subplot(2, 2, n + 1, projection='radar')
ax.set_yscale('log')
plt.rgrids([0.1, 0.2, 0.4, 0.6, 0.8])
ax.set_title(title, weight='bold', size='medium', position=(0.5, 1.1),
horizontalalignment='center', verticalalignment='center')
for d, color in zip(case_data, colors):
ax.plot(theta, d, color=color)
ax.fill(theta, d, facecolor=color, alpha=0.25)
ax.set_varlabels(spoke_labels)"><pre lang="for" class="notranslate"><code class="notranslate"> ax = fig.add_subplot(2, 2, n + 1, projection='radar')
ax.set_yscale('log')
plt.rgrids([0.1, 0.2, 0.4, 0.6, 0.8])
ax.set_title(title, weight='bold', size='medium', position=(0.5, 1.1),
horizontalalignment='center', verticalalignment='center')
for d, color in zip(case_data, colors):
ax.plot(theta, d, color=color)
ax.fill(theta, d, facecolor=color, alpha=0.25)
ax.set_varlabels(spoke_labels)
</code></pre></div>
<p dir="auto">This seems to be broken in rc2, with no data being plotted.</p> | 1 |
<p dir="auto">Feature Request</p>
<p dir="auto">Add the Enhanced Scrollbar feature from VS 2013 and VS 2015 into VS Code. It's an extremely efficient way to move around within a file and would be a great feature to have in VS Code.</p>
<p dir="auto">If this is already an extension or an option, I could not find it.</p> | <p dir="auto">i report many times about this, but not fixed yet... so sad.<br>
i recored my screen<br>
<a href="https://youtu.be/Hb4tLqiyuNs" rel="nofollow">https://youtu.be/Hb4tLqiyuNs</a><br>
i use unikey ( simple and popular vietnamese language tool ) + vscode.<br>
but it not work.<br>
i try to many other language tool but still not working...<br>
and other editor: sublimetext, atom it good work.. (sorry about this compare )</p> | 0 |
<p dir="auto"><strong>What</strong></p>
<p dir="auto">As it stands, there doesn't seem to be a way to generate typings for a file, or files, using Deno. It <em>might</em> be possible with <code class="notranslate">Deno.emit</code>, using the 2nd argument (<code class="notranslate">CompilerOptions</code>), but i haven't checked this and I'm not too confident it can.</p>
<p dir="auto">It also seems like <code class="notranslate">deno types</code> could be expanded upon, ie there's a great opportunity to expand upon this subcommand.</p>
<p dir="auto">But what I propose is for <code class="notranslate">deno types</code> (and ideally a programatic way <strong>as well</strong>) to create the typings for the given file or directory <strong>that outputs to a single file</strong></p>
<p dir="auto"><strong>How</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ deno types src/mod.ts >> dist/mod.d.ts"><pre class="notranslate"><code class="notranslate">$ deno types src/mod.ts >> dist/mod.d.ts
</code></pre></div>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="await Deno.emit("./src/mod.ts", { typings: true })"><pre class="notranslate"><span class="pl-k">await</span> <span class="pl-smi">Deno</span><span class="pl-kos">.</span><span class="pl-en">emit</span><span class="pl-kos">(</span><span class="pl-s">"./src/mod.ts"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">typings</span>: <span class="pl-c1">true</span> <span class="pl-kos">}</span><span class="pl-kos">)</span></pre></div>
<p dir="auto"><strong>Why</strong></p>
<p dir="auto">Well say I have a project that uses typescript. I plan to move over from Node to Deno, but I need typings. It seems impossible to do this with Deno, halting on that projects progress to make the beautiful journey of moving to Deno. This issue. is specifically with emitting a bundled <code class="notranslate">.d.ts</code> file.</p>
<p dir="auto">Whilst I can use <code class="notranslate">Deno.emit(file, { compilerOptions: { declaration: true }})</code>, it still doesn't provide the bundled typings</p>
<p dir="auto"><strong>Example</strong></p>
<p dir="auto">Here is an example, of me wanting to create a single bundled <code class="notranslate">.d.ts</code> file using the <code class="notranslate">emit</code> method, but it not actually providing typings:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// src/mod.ts
export * from "./something.ts"
export * from "./test.ts""><pre class="notranslate"><span class="pl-c">// src/mod.ts</span>
<span class="pl-k">export</span> <span class="pl-c1">*</span> <span class="pl-k">from</span> <span class="pl-s">"./something.ts"</span>
<span class="pl-k">export</span> <span class="pl-c1">*</span> <span class="pl-k">from</span> <span class="pl-s">"./test.ts"</span></pre></div>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// compile.ts
const stuff = await Deno.emit("./src/mod.ts", {
compilerOptions: {
"declaration": true,
"emitDeclarationOnly": true,
}
})
const keys = Object.keys(stuff.files)
const key = keys.find(k => k.includes("mod.ts.d.ts")) as string
console.log(stuff.files[key])"><pre class="notranslate"><span class="pl-c">// compile.ts</span>
<span class="pl-k">const</span> <span class="pl-s1">stuff</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-smi">Deno</span><span class="pl-kos">.</span><span class="pl-en">emit</span><span class="pl-kos">(</span><span class="pl-s">"./src/mod.ts"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span>
<span class="pl-c1">compilerOptions</span>: <span class="pl-kos">{</span>
<span class="pl-s">"declaration"</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-s">"emitDeclarationOnly"</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-k">const</span> <span class="pl-s1">keys</span> <span class="pl-c1">=</span> <span class="pl-smi">Object</span><span class="pl-kos">.</span><span class="pl-en">keys</span><span class="pl-kos">(</span><span class="pl-s1">stuff</span><span class="pl-kos">.</span><span class="pl-c1">files</span><span class="pl-kos">)</span>
<span class="pl-k">const</span> <span class="pl-s1">key</span> <span class="pl-c1">=</span> <span class="pl-s1">keys</span><span class="pl-kos">.</span><span class="pl-en">find</span><span class="pl-kos">(</span><span class="pl-s1">k</span> <span class="pl-c1">=></span> <span class="pl-s1">k</span><span class="pl-kos">.</span><span class="pl-en">includes</span><span class="pl-kos">(</span><span class="pl-s">"mod.ts.d.ts"</span><span class="pl-kos">)</span><span class="pl-kos">)</span> <span class="pl-k">as</span> <span class="pl-smi">string</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">stuff</span><span class="pl-kos">.</span><span class="pl-c1">files</span><span class="pl-kos">[</span><span class="pl-s1">key</span><span class="pl-kos">]</span><span class="pl-kos">)</span></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/// <amd-module name="file:///.../.../tmp/src/mod.ts" />
export * from "./something.ts";
export * from "./test.ts";"><pre class="notranslate"><code class="notranslate">/// <amd-module name="file:///.../.../tmp/src/mod.ts" />
export * from "./something.ts";
export * from "./test.ts";
</code></pre></div>
<p dir="auto">As you can see, it doesn't provide any typings</p> | <p dir="auto">With <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="523264961" data-permission-text="Title is private" data-url="https://github.com/denoland/deno/issues/3352" data-hovercard-type="pull_request" data-hovercard-url="/denoland/deno/pull/3352/hovercard" href="https://github.com/denoland/deno/pull/3352">#3352</a>, bundles are going to be a mechanism to distribute "libraries" in Deno. It is logical that someone might want to use a distribution bundle in another Deno workload (or consume it in other runtimes) and would want to have type safe consumption of those files, therefore we should generate the declarations along with a bundle.</p>
<p dir="auto">Related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="453754839" data-permission-text="Title is private" data-url="https://github.com/denoland/deno/issues/2475" data-hovercard-type="issue" data-hovercard-url="/denoland/deno/issues/2475/hovercard" href="https://github.com/denoland/deno/issues/2475">#2475</a>.</p> | 1 |
<p dir="auto">For this function</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="package main
func f(fn func() error) error {
return fn()
}
func main() {
called := false
f(func() error {
called = true
return nil
})
}"><pre class="notranslate"><code class="notranslate">package main
func f(fn func() error) error {
return fn()
}
func main() {
called := false
f(func() error {
called = true
return nil
})
}
</code></pre></div>
<p dir="auto">gc considers <code class="notranslate">called</code> to be both set and used although nowhere in the scope is the value of <code class="notranslate">called</code> ever consulted.</p>
<p dir="auto">gccgo-5.0 on the other hand considers this code to be faulty</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="% env LD_LIBRARY_PATH=/opt/gccgo/lib64 PATH=$PATH:/opt/gccgo/bin go build -compiler=gccgo /tmp/x.go
# command-line-arguments
/tmp/x.go:8:2: error: ‘called’ declared and not used
called := false
^"><pre class="notranslate"><code class="notranslate">% env LD_LIBRARY_PATH=/opt/gccgo/lib64 PATH=$PATH:/opt/gccgo/bin go build -compiler=gccgo /tmp/x.go
# command-line-arguments
/tmp/x.go:8:2: error: ‘called’ declared and not used
called := false
^
</code></pre></div>
<p dir="auto">gccgo version</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="% env LD_LIBRARY_PATH=/opt/gccgo/lib64 PATH=$PATH:/opt/gccgo/bin gccgo -v
Using built-in specs.
COLLECT_GCC=gccgo
COLLECT_LTO_WRAPPER=/opt/gccgo/libexec/gcc/x86_64-unknown-linux-gnu/5.0.0/lto-wrapper
Target: x86_64-unknown-linux-gnu
Configured with: ../gcc/trunk/configure --prefix=/opt/gccgo --enable-languages=c,c++,go --disable-bootstrap
Thread model: posix
gcc version 5.0.0 20150324 (experimental) (GCC) "><pre class="notranslate"><code class="notranslate">% env LD_LIBRARY_PATH=/opt/gccgo/lib64 PATH=$PATH:/opt/gccgo/bin gccgo -v
Using built-in specs.
COLLECT_GCC=gccgo
COLLECT_LTO_WRAPPER=/opt/gccgo/libexec/gcc/x86_64-unknown-linux-gnu/5.0.0/lto-wrapper
Target: x86_64-unknown-linux-gnu
Configured with: ../gcc/trunk/configure --prefix=/opt/gccgo --enable-languages=c,c++,go --disable-bootstrap
Thread model: posix
gcc version 5.0.0 20150324 (experimental) (GCC)
</code></pre></div> | <p dir="auto">by <strong><a href="mailto:[email protected]">[email protected]</a></strong>:</p>
<pre class="notranslate">> What steps will reproduce the problem?
Build and run the attached Go program with GOMAXPROCS=2 or greater. I
used 6g/6l and ran on a dual-socket, quad-core, dual-thread Nehalem EP
system.
> What is the expected output? What do you see instead?
Expected: No output.
See instead: No output with GOMAXPROCS=1 or undefined. No output if
maxGoroutines is reduced from 10000 to 1000. With GOMAXPROCS=2 or
greater, I get the following:
free 0x7f1ec5b52000: not an allocated block
throw: free mlookup
panic PC=0x7f1ec57cf200
throw: malloc/free - deadlock
double panic
> What is your $GOOS? $GOARCH?
GOOS=linux
GOARCH=amd64
> Which revision are you using? (hg identify)
53fec18b83e2+ release/release.2010-02-17
> Please provide any additional information below.
My larger code (of which the attached is merely a small reproducer) worked
with the previous version of Go.</pre>
<p dir="auto">Attachments:</p>
<ol dir="auto">
<li><a href="https://storage.googleapis.com/go-attachment/619/0/broken.go" rel="nofollow">broken.go</a> (617 bytes)</li>
</ol> | 0 |
<p dir="auto"><strong>Glide Version</strong>: 4.6.0<br>
<strong>Integration libraries</strong>: okhttp3-3.9.1</p>
<p dir="auto">Update to 4.6.0, I got this issue.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Error:(10, 2) error: incompatible types: GlideModule cannot be converted to Annotation @GlideModule() ^"><pre class="notranslate"><code class="notranslate">Error:(10, 2) error: incompatible types: GlideModule cannot be converted to Annotation @GlideModule() ^
</code></pre></div>
<p dir="auto">My Project used exteneded 'AppGlideModule' class.</p>
<p dir="auto"><strong>What can I do this situation?</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import android.content.Context
import com.bumptech.glide.GlideBuilder
import com.bumptech.glide.annotation.GlideModule
import com.bumptech.glide.load.engine.cache.ExternalCacheDiskCacheFactory
import com.bumptech.glide.load.engine.cache.LruResourceCache
import com.bumptech.glide.module.AppGlideModule
@GlideModule
class GlideModule : AppGlideModule(){
override fun applyOptions(context: Context, builder: GlideBuilder) {
builder.setDiskCache(ExternalCacheDiskCacheFactory(context, "cache", DISK_CACHE_SIZE))
.setMemoryCache(LruResourceCache(cacheSize.toLong()))
}
override fun isManifestParsingEnabled(): Boolean {
return false
}
companion object {
private val maxMemory = (Runtime.getRuntime().maxMemory() / 1024).toInt()
private val cacheSize = maxMemory / 8
private val DISK_CACHE_SIZE = 1024 * 1024 * 10
}
}"><pre class="notranslate"><code class="notranslate">import android.content.Context
import com.bumptech.glide.GlideBuilder
import com.bumptech.glide.annotation.GlideModule
import com.bumptech.glide.load.engine.cache.ExternalCacheDiskCacheFactory
import com.bumptech.glide.load.engine.cache.LruResourceCache
import com.bumptech.glide.module.AppGlideModule
@GlideModule
class GlideModule : AppGlideModule(){
override fun applyOptions(context: Context, builder: GlideBuilder) {
builder.setDiskCache(ExternalCacheDiskCacheFactory(context, "cache", DISK_CACHE_SIZE))
.setMemoryCache(LruResourceCache(cacheSize.toLong()))
}
override fun isManifestParsingEnabled(): Boolean {
return false
}
companion object {
private val maxMemory = (Runtime.getRuntime().maxMemory() / 1024).toInt()
private val cacheSize = maxMemory / 8
private val DISK_CACHE_SIZE = 1024 * 1024 * 10
}
}
</code></pre></div> | <p dir="auto">Hi, we had issue on android where when taking pictures and saving the image, and sending it to our server, image is flipped on android, ios and web applications that we use to view the image. So we tried simple target with glide in hopes that when saving the image locally before sending to server, glide would work its magic and image would be in correct orienation. This does not happen, Here is what we did:</p>
<ol dir="auto">
<li>Take the picture and save the image in temporary location.</li>
<li>Pass the image uri into glide and resave the image again</li>
<li>Send final glide image to server</li>
</ol>
<p dir="auto">QUESTIONS:</p>
<ol dir="auto">
<li>Do i need to save the image twice? or is it possible for glide to load the taken photo from memory without having to temporarily save the file in order to obtain a file path location?</li>
<li>Is it possible to use simple targets to automatically put images in correct rotation when saving image to local storage? Images will be displayed on web, other social media outlets, android and ios app. So they need to be correctly oriented before sending to our server</li>
<li>If number 2 is not possible are there any advantages of saving the image file with Glide Simple Targets?</li>
</ol>
<p dir="auto">Please see my attached code</p>
<div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="private class CameraPhotoImageTask extends AsyncTask<String, Void, Bitmap> {
int h=0;
int w=0;
private File imageFile = null;
private File temporaryImageFile = null;
public CameraPhotoImageTask() {
}
protected Bitmap doInBackground(String... urls) {
/* Image taken is represented into byte array and passed into "urls" array.
We will first convert byte array from urls[] into bitmap image called "loadedImage" */
//
Bitmap loadedImage = null;
byte[] decodedString = android.util.Base64.decode(urls[0], android.util.Base64.DEFAULT);
loadedImage = BitmapFactory.decodeByteArray(decodedString, 0, decodedString.length);
// Get the height and width of loadedImage. We will need this to pass into Glide
w = loadedImage.getWidth();
h = loadedImage.getHeight();
Log.i("Test", "Chosen resolution: " + w + ", " + h);
/*Here we will temporarily save the bitmap image(loadedImage) into a temporary file and directory
so that we can pass it to glide for processing. */
try {
ByteArrayOutputStream ostream = new ByteArrayOutputStream();
loadedImage.compress(CompressFormat.JPEG, 70, ostream);
temporaryImageFile = makeFilewithDir(AppTools.PHOTO_DIR,temporaryImageFile);
if (temporaryImageFile == null) {
Toast.makeText(getBaseContext(), "Image Not saved",
Toast.LENGTH_SHORT).show();
}
FileOutputStream fout = new FileOutputStream(temporaryImageFile);
fout.write(ostream.toByteArray());
fout.close();
}catch (Exception e) {
e.printStackTrace();
}
/*Now we need to get the directory path of the temporary image file and represent it as a uri
before loading it into glide for processing */
final File tempFile = new File(temporaryImageFile.getPath().toString());
Uri imageUri = Uri.fromFile(tempFile);
Log.i("Test", "loaded image is " +imageUri);
// Now we can pass the imageURI file path into Glide and process the image into a newBitmap from Glide
//WARNING!!!!: Glide .into does not work on background thread. So we need to put it into UI thread before calling .into
CameraDemoActivity.this.runOnUiThread(new Runnable() {
@Override
public void run() {
final File tempFile = new File(temporaryImageFile.getPath().toString());
Uri imageUri = Uri.fromFile(tempFile);
//Pass imageUri into Glide
Glide.with(getApplicationContext())// Need to use Application Context
.load(imageUri)
.asBitmap()
.diskCacheStrategy(DiskCacheStrategy.ALL)
.centerCrop()
.into(new SimpleTarget<Bitmap>(w, h) {
@Override
public void onResourceReady(Bitmap bitmap, GlideAnimation anim) {
/*Assign the newly converted bitmap to newImageFromGlide then save the location of the bitmap
to our local database. Reminder: Need to delete the temporaryImageFile once newBitmap from
Glide is saved will handle this later*/
try {
ByteArrayOutputStream ostream = new ByteArrayOutputStream();
Bitmap newImageFromGlide = bitmap;
newImageFromGlide.compress(CompressFormat.JPEG, 70, ostream);
imageFile = makeFilewithDir(AppTools.PHOTO_DIR, imageFile);
if (imageFile == null) {
Toast.makeText(getBaseContext(), "Image Not saved",
Toast.LENGTH_SHORT).show();
}
FileOutputStream fout = new FileOutputStream(imageFile);
fout.write(ostream.toByteArray());
fout.close();
ContentValues values = new ContentValues();
values.put(MediaStore.Images.Media.DATE_TAKEN,
System.currentTimeMillis());
values.put(MediaStore.Images.Media.MIME_TYPE, "image/jpeg");
values.put(MediaStore.MediaColumns.DATA,
imageFile.getAbsolutePath());
CameraDemoActivity.this.getContentResolver().insert(
MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);
//We need to load the image into the active status and set local database parameters for the image
Log.i("Test", "loaded image is " +"Now we are taking");
Cursor activeStatus = myStatus.getActiveStatus();
if (activeStatus.getCount() > 0) {
activeStatus.moveToFirst();
final int id = activeStatus.getInt(activeStatus.getColumnIndex(myStatus.COLUMN_ID));
MyStatusMediaDB.insertMedia(id, 1, imageFile.getPath().toString(), "", 0, "", "");
}
activeStatus.close();
if (newImageFromGlide != null) {
newImageFromGlide.recycle();
newImageFromGlide = null;
}
CameraDemoActivity.this.runOnUiThread(new Runnable() {
@Override
public void run() {
captureImage.setEnabled(true);
}
});
} catch (Exception e) {
e.printStackTrace();
CameraDemoActivity.this.runOnUiThread(new Runnable() {
@Override
public void run() {
captureImage.setEnabled(true);
}
});
}
CameraDemoActivity.this.runOnUiThread(new Runnable() {
@Override
public void run() {
captureImage.setEnabled(true);
}
});
}}); //End of Glide
}
});"><pre class="notranslate"><span class="pl-k">private</span> <span class="pl-k">class</span> <span class="pl-smi">CameraPhotoImageTask</span> <span class="pl-k">extends</span> <span class="pl-smi">AsyncTask</span><<span class="pl-smi">String</span>, <span class="pl-smi">Void</span>, <span class="pl-smi">Bitmap</span>> {
<span class="pl-smi">int</span> <span class="pl-s1">h</span>=<span class="pl-c1">0</span>;
<span class="pl-smi">int</span> <span class="pl-s1">w</span>=<span class="pl-c1">0</span>;
<span class="pl-k">private</span> <span class="pl-smi">File</span> <span class="pl-s1">imageFile</span> = <span class="pl-c1">null</span>;
<span class="pl-k">private</span> <span class="pl-smi">File</span> <span class="pl-s1">temporaryImageFile</span> = <span class="pl-c1">null</span>;
<span class="pl-k">public</span> <span class="pl-smi">CameraPhotoImageTask</span>() {
}
<span class="pl-k">protected</span> <span class="pl-smi">Bitmap</span> <span class="pl-en">doInBackground</span>(<span class="pl-smi">String</span>... <span class="pl-s1">urls</span>) {
<span class="pl-c">/* Image taken is represented into byte array and passed into "urls" array.</span>
<span class="pl-c"> We will first convert byte array from urls[] into bitmap image called "loadedImage" */</span>
<span class="pl-c">//</span>
<span class="pl-smi">Bitmap</span> <span class="pl-s1">loadedImage</span> = <span class="pl-c1">null</span>;
<span class="pl-smi">byte</span>[] <span class="pl-s1">decodedString</span> = <span class="pl-s1">android</span>.<span class="pl-s1">util</span>.<span class="pl-s1">Base64</span>.<span class="pl-en">decode</span>(<span class="pl-s1">urls</span>[<span class="pl-c1">0</span>], <span class="pl-s1">android</span>.<span class="pl-s1">util</span>.<span class="pl-s1">Base64</span>.<span class="pl-c1">DEFAULT</span>);
<span class="pl-s1">loadedImage</span> = <span class="pl-smi">BitmapFactory</span>.<span class="pl-en">decodeByteArray</span>(<span class="pl-s1">decodedString</span>, <span class="pl-c1">0</span>, <span class="pl-s1">decodedString</span>.<span class="pl-s1">length</span>);
<span class="pl-c">// Get the height and width of loadedImage. We will need this to pass into Glide</span>
<span class="pl-s1">w</span> = <span class="pl-s1">loadedImage</span>.<span class="pl-en">getWidth</span>();
<span class="pl-s1">h</span> = <span class="pl-s1">loadedImage</span>.<span class="pl-en">getHeight</span>();
<span class="pl-smi">Log</span>.<span class="pl-en">i</span>(<span class="pl-s">"Test"</span>, <span class="pl-s">"Chosen resolution: "</span> + <span class="pl-s1">w</span> + <span class="pl-s">", "</span> + <span class="pl-s1">h</span>);
<span class="pl-c">/*Here we will temporarily save the bitmap image(loadedImage) into a temporary file and directory</span>
<span class="pl-c"> so that we can pass it to glide for processing. */</span>
<span class="pl-k">try</span> {
<span class="pl-smi">ByteArrayOutputStream</span> <span class="pl-s1">ostream</span> = <span class="pl-k">new</span> <span class="pl-smi">ByteArrayOutputStream</span>();
<span class="pl-s1">loadedImage</span>.<span class="pl-en">compress</span>(<span class="pl-smi">CompressFormat</span>.<span class="pl-c1">JPEG</span>, <span class="pl-c1">70</span>, <span class="pl-s1">ostream</span>);
<span class="pl-s1">temporaryImageFile</span> = <span class="pl-en">makeFilewithDir</span>(<span class="pl-smi">AppTools</span>.<span class="pl-c1">PHOTO_DIR</span>,<span class="pl-s1">temporaryImageFile</span>);
<span class="pl-k">if</span> (<span class="pl-s1">temporaryImageFile</span> == <span class="pl-c1">null</span>) {
<span class="pl-smi">Toast</span>.<span class="pl-en">makeText</span>(<span class="pl-en">getBaseContext</span>(), <span class="pl-s">"Image Not saved"</span>,
<span class="pl-smi">Toast</span>.<span class="pl-c1">LENGTH_SHORT</span>).<span class="pl-en">show</span>();
}
<span class="pl-smi">FileOutputStream</span> <span class="pl-s1">fout</span> = <span class="pl-k">new</span> <span class="pl-smi">FileOutputStream</span>(<span class="pl-s1">temporaryImageFile</span>);
<span class="pl-s1">fout</span>.<span class="pl-en">write</span>(<span class="pl-s1">ostream</span>.<span class="pl-en">toByteArray</span>());
<span class="pl-s1">fout</span>.<span class="pl-en">close</span>();
}<span class="pl-k">catch</span> (<span class="pl-smi">Exception</span> <span class="pl-s1">e</span>) {
<span class="pl-s1">e</span>.<span class="pl-en">printStackTrace</span>();
}
<span class="pl-c">/*Now we need to get the directory path of the temporary image file and represent it as a uri</span>
<span class="pl-c"> before loading it into glide for processing */</span>
<span class="pl-k">final</span> <span class="pl-smi">File</span> <span class="pl-s1">tempFile</span> = <span class="pl-k">new</span> <span class="pl-smi">File</span>(<span class="pl-s1">temporaryImageFile</span>.<span class="pl-en">getPath</span>().<span class="pl-en">toString</span>());
<span class="pl-smi">Uri</span> <span class="pl-s1">imageUri</span> = <span class="pl-smi">Uri</span>.<span class="pl-en">fromFile</span>(<span class="pl-s1">tempFile</span>);
<span class="pl-smi">Log</span>.<span class="pl-en">i</span>(<span class="pl-s">"Test"</span>, <span class="pl-s">"loaded image is "</span> +<span class="pl-s1">imageUri</span>);
<span class="pl-c">// Now we can pass the imageURI file path into Glide and process the image into a newBitmap from Glide</span>
<span class="pl-c">//WARNING!!!!: Glide .into does not work on background thread. So we need to put it into UI thread before calling .into</span>
<span class="pl-smi">CameraDemoActivity</span>.<span class="pl-smi">this</span>.<span class="pl-en">runOnUiThread</span>(<span class="pl-k">new</span> <span class="pl-smi">Runnable</span>() {
<span class="pl-c1">@</span><span class="pl-c1">Override</span>
<span class="pl-k">public</span> <span class="pl-smi">void</span> <span class="pl-en">run</span>() {
<span class="pl-k">final</span> <span class="pl-smi">File</span> <span class="pl-s1">tempFile</span> = <span class="pl-k">new</span> <span class="pl-smi">File</span>(<span class="pl-s1">temporaryImageFile</span>.<span class="pl-en">getPath</span>().<span class="pl-en">toString</span>());
<span class="pl-smi">Uri</span> <span class="pl-s1">imageUri</span> = <span class="pl-smi">Uri</span>.<span class="pl-en">fromFile</span>(<span class="pl-s1">tempFile</span>);
<span class="pl-c">//Pass imageUri into Glide</span>
<span class="pl-smi">Glide</span>.<span class="pl-en">with</span>(<span class="pl-en">getApplicationContext</span>())<span class="pl-c">// Need to use Application Context</span>
.<span class="pl-en">load</span>(<span class="pl-s1">imageUri</span>)
.<span class="pl-en">asBitmap</span>()
.<span class="pl-en">diskCacheStrategy</span>(<span class="pl-smi">DiskCacheStrategy</span>.<span class="pl-c1">ALL</span>)
.<span class="pl-en">centerCrop</span>()
.<span class="pl-en">into</span>(<span class="pl-k">new</span> <span class="pl-smi">SimpleTarget</span><<span class="pl-smi">Bitmap</span>>(<span class="pl-s1">w</span>, <span class="pl-s1">h</span>) {
<span class="pl-c1">@</span><span class="pl-c1">Override</span>
<span class="pl-k">public</span> <span class="pl-smi">void</span> <span class="pl-en">onResourceReady</span>(<span class="pl-smi">Bitmap</span> <span class="pl-s1">bitmap</span>, <span class="pl-smi">GlideAnimation</span> <span class="pl-s1">anim</span>) {
<span class="pl-c">/*Assign the newly converted bitmap to newImageFromGlide then save the location of the bitmap</span>
<span class="pl-c"> to our local database. Reminder: Need to delete the temporaryImageFile once newBitmap from</span>
<span class="pl-c"> Glide is saved will handle this later*/</span>
<span class="pl-k">try</span> {
<span class="pl-smi">ByteArrayOutputStream</span> <span class="pl-s1">ostream</span> = <span class="pl-k">new</span> <span class="pl-smi">ByteArrayOutputStream</span>();
<span class="pl-smi">Bitmap</span> <span class="pl-s1">newImageFromGlide</span> = <span class="pl-s1">bitmap</span>;
<span class="pl-s1">newImageFromGlide</span>.<span class="pl-en">compress</span>(<span class="pl-smi">CompressFormat</span>.<span class="pl-c1">JPEG</span>, <span class="pl-c1">70</span>, <span class="pl-s1">ostream</span>);
<span class="pl-s1">imageFile</span> = <span class="pl-en">makeFilewithDir</span>(<span class="pl-smi">AppTools</span>.<span class="pl-c1">PHOTO_DIR</span>, <span class="pl-s1">imageFile</span>);
<span class="pl-k">if</span> (<span class="pl-s1">imageFile</span> == <span class="pl-c1">null</span>) {
<span class="pl-smi">Toast</span>.<span class="pl-en">makeText</span>(<span class="pl-en">getBaseContext</span>(), <span class="pl-s">"Image Not saved"</span>,
<span class="pl-smi">Toast</span>.<span class="pl-c1">LENGTH_SHORT</span>).<span class="pl-en">show</span>();
}
<span class="pl-smi">FileOutputStream</span> <span class="pl-s1">fout</span> = <span class="pl-k">new</span> <span class="pl-smi">FileOutputStream</span>(<span class="pl-s1">imageFile</span>);
<span class="pl-s1">fout</span>.<span class="pl-en">write</span>(<span class="pl-s1">ostream</span>.<span class="pl-en">toByteArray</span>());
<span class="pl-s1">fout</span>.<span class="pl-en">close</span>();
<span class="pl-smi">ContentValues</span> <span class="pl-s1">values</span> = <span class="pl-k">new</span> <span class="pl-smi">ContentValues</span>();
<span class="pl-s1">values</span>.<span class="pl-en">put</span>(<span class="pl-smi">MediaStore</span>.<span class="pl-s1">Images</span>.<span class="pl-s1">Media</span>.<span class="pl-c1">DATE_TAKEN</span>,
<span class="pl-smi">System</span>.<span class="pl-en">currentTimeMillis</span>());
<span class="pl-s1">values</span>.<span class="pl-en">put</span>(<span class="pl-smi">MediaStore</span>.<span class="pl-s1">Images</span>.<span class="pl-s1">Media</span>.<span class="pl-c1">MIME_TYPE</span>, <span class="pl-s">"image/jpeg"</span>);
<span class="pl-s1">values</span>.<span class="pl-en">put</span>(<span class="pl-smi">MediaStore</span>.<span class="pl-s1">MediaColumns</span>.<span class="pl-c1">DATA</span>,
<span class="pl-s1">imageFile</span>.<span class="pl-en">getAbsolutePath</span>());
<span class="pl-smi">CameraDemoActivity</span>.<span class="pl-smi">this</span>.<span class="pl-en">getContentResolver</span>().<span class="pl-en">insert</span>(
<span class="pl-smi">MediaStore</span>.<span class="pl-s1">Images</span>.<span class="pl-s1">Media</span>.<span class="pl-c1">EXTERNAL_CONTENT_URI</span>, <span class="pl-s1">values</span>);
<span class="pl-c">//We need to load the image into the active status and set local database parameters for the image</span>
<span class="pl-smi">Log</span>.<span class="pl-en">i</span>(<span class="pl-s">"Test"</span>, <span class="pl-s">"loaded image is "</span> +<span class="pl-s">"Now we are taking"</span>);
<span class="pl-smi">Cursor</span> <span class="pl-s1">activeStatus</span> = <span class="pl-s1">myStatus</span>.<span class="pl-en">getActiveStatus</span>();
<span class="pl-k">if</span> (<span class="pl-s1">activeStatus</span>.<span class="pl-en">getCount</span>() > <span class="pl-c1">0</span>) {
<span class="pl-s1">activeStatus</span>.<span class="pl-en">moveToFirst</span>();
<span class="pl-k">final</span> <span class="pl-smi">int</span> <span class="pl-s1">id</span> = <span class="pl-s1">activeStatus</span>.<span class="pl-en">getInt</span>(<span class="pl-s1">activeStatus</span>.<span class="pl-en">getColumnIndex</span>(<span class="pl-s1">myStatus</span>.<span class="pl-c1">COLUMN_ID</span>));
<span class="pl-smi">MyStatusMediaDB</span>.<span class="pl-en">insertMedia</span>(<span class="pl-s1">id</span>, <span class="pl-c1">1</span>, <span class="pl-s1">imageFile</span>.<span class="pl-en">getPath</span>().<span class="pl-en">toString</span>(), <span class="pl-s">""</span>, <span class="pl-c1">0</span>, <span class="pl-s">""</span>, <span class="pl-s">""</span>);
}
<span class="pl-s1">activeStatus</span>.<span class="pl-en">close</span>();
<span class="pl-k">if</span> (<span class="pl-s1">newImageFromGlide</span> != <span class="pl-c1">null</span>) {
<span class="pl-s1">newImageFromGlide</span>.<span class="pl-en">recycle</span>();
<span class="pl-s1">newImageFromGlide</span> = <span class="pl-c1">null</span>;
}
<span class="pl-smi">CameraDemoActivity</span>.<span class="pl-smi">this</span>.<span class="pl-en">runOnUiThread</span>(<span class="pl-k">new</span> <span class="pl-smi">Runnable</span>() {
<span class="pl-c1">@</span><span class="pl-c1">Override</span>
<span class="pl-k">public</span> <span class="pl-smi">void</span> <span class="pl-en">run</span>() {
<span class="pl-s1">captureImage</span>.<span class="pl-en">setEnabled</span>(<span class="pl-c1">true</span>);
}
});
} <span class="pl-k">catch</span> (<span class="pl-smi">Exception</span> <span class="pl-s1">e</span>) {
<span class="pl-s1">e</span>.<span class="pl-en">printStackTrace</span>();
<span class="pl-smi">CameraDemoActivity</span>.<span class="pl-smi">this</span>.<span class="pl-en">runOnUiThread</span>(<span class="pl-k">new</span> <span class="pl-smi">Runnable</span>() {
<span class="pl-c1">@</span><span class="pl-c1">Override</span>
<span class="pl-k">public</span> <span class="pl-smi">void</span> <span class="pl-en">run</span>() {
<span class="pl-s1">captureImage</span>.<span class="pl-en">setEnabled</span>(<span class="pl-c1">true</span>);
}
});
}
<span class="pl-smi">CameraDemoActivity</span>.<span class="pl-smi">this</span>.<span class="pl-en">runOnUiThread</span>(<span class="pl-k">new</span> <span class="pl-smi">Runnable</span>() {
<span class="pl-c1">@</span><span class="pl-c1">Override</span>
<span class="pl-k">public</span> <span class="pl-smi">void</span> <span class="pl-en">run</span>() {
<span class="pl-s1">captureImage</span>.<span class="pl-en">setEnabled</span>(<span class="pl-c1">true</span>);
}
});
}}); <span class="pl-c">//End of Glide</span>
}
});</pre></div> | 0 |
<p dir="auto"><a href="https://codesandbox.io/s/vqk87kvj1y" rel="nofollow">https://codesandbox.io/s/vqk87kvj1y</a>. List contains 10000 items, I move one item from bottom to top and react performs 9999 insertBefore operations. It sucks. Take a look at infernojs example <a href="https://jsbin.com/qeqatiruko/1/edit?html,js,output" rel="nofollow">https://jsbin.com/qeqatiruko/1/edit?html,js,output</a> - it will perform only one insertBefore operation for one move in all cases.</p> | <p dir="auto"><strong>Do you want to request a <em>feature</em> or report a <em>bug</em>?</strong></p>
<p dir="auto">Not sure if it's a bug or an 'accepted' behavior. But this can affect performance in some situations or even 'break the expectations' in others (e.g. animating moved elements [i.e. simple moves])</p>
<p dir="auto"><strong>What is the current behavior?</strong></p>
<p dir="auto">When a child element moves from the end of the list to the front React actually moves all the other elements after the moved/last element instead of simply inserting the moved element at the front of the list.</p>
<p dir="auto">This also can be stated more generally for an element or a block of elements moving backward with a significant shift.</p>
<p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem via <a href="https://jsfiddle.net" rel="nofollow">https://jsfiddle.net</a> or similar (template: <a href="https://jsfiddle.net/84v837e9/" rel="nofollow">https://jsfiddle.net/84v837e9/</a>).</strong></p>
<p dir="auto">Here is a <a href="https://codesandbox.io/s/wjZkrGVzJ" rel="nofollow">demo</a> that shows the DOM operations performed on DOM nodes (moves & insertions) during reconciliation. To reproduce the issue</p>
<ul dir="auto">
<li>
<p dir="auto">type '0123456789x' in the input field then click <code class="notranslate">Patch!</code></p>
</li>
<li>
<p dir="auto">now type 'x0123456789' (move the last 'x' to the front) then click <code class="notranslate">Patch!</code> again</p>
</li>
</ul>
<p dir="auto">Here's the output</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/5453835/28969007-affc2dae-791a-11e7-951a-37856bc53f00.png"><img src="https://user-images.githubusercontent.com/5453835/28969007-affc2dae-791a-11e7-951a-37856bc53f00.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">Instead of moving the 'x' to the front. React actually moves all the other elements after the 'x'</p>
<p dir="auto"><em>Note: the demo uses MutationObserver api to find out the operations. But you can also verify this behavior directly by commenting out the code that activates the dom observer (in componentDidMount) and watch the dom operations manually in the devtools element inspector</em></p>
<p dir="auto"><strong>What is the expected behavior?</strong></p>
<p dir="auto">React should perform the minimal number of operations. I know that the 'minimum' will vary for each situation and not trivial to infer for the general case. But for some common cases like this one it should be feasible.</p>
<p dir="auto">For info this use case is handled in most of the other virtual dom libs like preact, snabbdom. Inferno is a remarkable case as it will always infer the minimum number of operations (it uses an algorithm to find the <a href="https://en.wikipedia.org/wiki/Longest_increasing_subsequence" rel="nofollow">longest increasing subsequence</a> on an array containing the indexes of the old elements).</p>
<p dir="auto">I found this behavior while working on a demo to find out how vdom libs rearrange nodes during children reconciliation. For example here is the same output for other libs (<a href="https://codesandbox.io/s/BkLpXYQn" rel="nofollow">demo</a>)</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/5453835/28969902-567219c0-791e-11e7-9f3d-29bf988cdab1.png"><img src="https://user-images.githubusercontent.com/5453835/28969902-567219c0-791e-11e7-9f3d-29bf988cdab1.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto"><strong>Which versions of React, and which browser / OS are affected by this issue? Did this work in previous versions of React?</strong></p>
<p dir="auto">The demo uses the 0.16 version. But I tried with 0.15 and it has the same behavior</p> | 1 |
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[x ] bug report => search github for a similar issue or PR before submitting"><pre class="notranslate"><code class="notranslate">[x ] bug report => search github for a similar issue or PR before submitting
</code></pre></div>
<p dir="auto">I've encountered an issue where a resolve route-guard did not share the same service with a component that is registered to the same module the Resolve guard is.</p>
<p dir="auto">I have a scenario where the resolve guard of a route bound to a lazy loaded module retrieves a list of data from the backend and caches it on a variable within the service. The same service has another method (that is called from a component) which retrieves fine grained data, first by looking within the cached data, and if not found retrievs that particular subset of data from backend. The issue is that the the <strong>Service is recreated</strong> when the component is visited as well, <strong>thus losing the cached data</strong>.</p>
<p dir="auto">I've been boggling my mind around this issue and I cannot seem to make sense of what is happening. I've read the docs on dependency injection, hierarchical injection and modules. From my understanding the application has a root injector which is bound to the AppModule that is bootstrapped. Child injectors are created for each component, and for each lazy loaded module. Whenever a Service is needed, first the service is looked within the injector bound to the Component, and if not found, checkes in the parent component, and continues going up through the injector tree until reaching the module injector (and if not found here throws an error).</p>
<p dir="auto">Now if the Service I needed is 'provided' within the lazy loaded module, shouldn't the Resolve guard and the component share the same Singleton Service bound to the module injector? I'm reporting this as a bug because 1) the docs does imply that, and 2) this problem seems to be occuring only with injectors of lazy loaded modules, and not the root module. See the following plunker.</p>
<p dir="auto"><a href="https://plnkr.co/edit/G6I7m8duZMOCFdnuuk3l?p=preview" rel="nofollow">https://plnkr.co/edit/G6I7m8duZMOCFdnuuk3l?p=preview</a></p>
<p dir="auto">When a service bound to the root module is used by both the Resolve guard and the Component, the service is shared... However when the same logic is applied to the lazy loaded module, the service is created and recreated both when the Resolve Guard is instantiated and when the Component is instantiated respectively. The plunker above demos it. The logic for the retrieval of data in the root module and lazy loaded module is the same (different services/components ofcourse), however the creation of the service behave differently.</p>
<p dir="auto"><strong>Expected behavior</strong><br>
Only one instance of the Service 'provided' in the lazy loaded module should be created when accessed via the resolve guard, and a second creation (which overrides the first creation) SHOULD NOT take place when the Component is accessed.</p>
<p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong></p>
<p dir="auto"><a href="https://plnkr.co/edit/G6I7m8duZMOCFdnuuk3l?p=preview" rel="nofollow">https://plnkr.co/edit/G6I7m8duZMOCFdnuuk3l?p=preview</a></p>
<p dir="auto"><strong>Please tell us about your environment:</strong></p>
<p dir="auto">Operating system: windows 10<br>
IDE: Webstorm<br>
Package manager: NPM<br>
HTTP server: Webpack dev server</p>
<ul dir="auto">
<li>
<p dir="auto"><strong>Angular version:</strong> 2.4.2</p>
</li>
<li>
<p dir="auto"><strong>Language:</strong> Typescript 2.0.10</p>
</li>
</ul> | <p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[x] bug report => 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>
After upgrading to router 3.2.0, services being provided by component module are being instantiated twice. Once while resolver is being run (last place in router is PreActivation.prototype.getToken) and then again later during activation (last place in router is RouterOutlet.prototype.activate).<br>
Upgrading rest of Angular to 2.2.0 and leaving router at 3.1.1 it works as it used to (and looking in debugger I see service is only instantiated from PreActivation.prototype.getToken)</p>
<p dir="auto"><strong>Expected behavior</strong></p>
<p dir="auto">Providers should only be instantiated once - as they are when using router version 3.1.1</p>
<p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong></p>
<p dir="auto">Haven't yet reproduced in a plnkr but my use case has a lazy loaded component that itself has sub components (not lazy loaded). The sub component has a resolver that uses a service, and the sub component itself uses the service. The service is included in the lazy loaded components module providers list and is being instantiated twice. Once apparently while router is working on resolve and once when component is being activated.</p>
<p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong></p>
<p dir="auto">Its just wrong, and my service fetches data on initialization so extra instance causes extra fetch. This does not happen with router 3.1.1 (never tried 3.1.2 as deactivate guards don't work correctly in that version)</p>
<p dir="auto"><strong>Please tell us about your environment:</strong></p>
<p dir="auto">Windows 10, Visual Studio Code, angular-cli: 1.0.0-beta.19-3 ng serve</p>
<ul dir="auto">
<li><strong>Angular version:</strong> 2.0.X</li>
</ul>
<p dir="auto">2.2.0</p>
<ul dir="auto">
<li><strong>Browser:</strong> [all | Chrome XX | Firefox XX | IE XX | Safari XX | Mobile Chrome XX | Android X.X Web Browser | iOS XX Safari | iOS XX UIWebView | iOS XX WKWebView ]</li>
</ul>
<p dir="auto">Only tried in Chrome</p>
<ul dir="auto">
<li>
<p dir="auto"><strong>Language:</strong> [all | TypeScript X.X | ES6/7 | ES5]<br>
Typescript 2.0.9</p>
</li>
<li>
<p dir="auto"><strong>Node (for AoT issues):</strong> <code class="notranslate">node --version</code> =</p>
</li>
</ul> | 1 |
<p dir="auto"><strong>Migrated issue, originally created by Anonymous</strong></p>
<p dir="auto">(original reporter: rtl) Currently the child rows in a parent-child relationship defined using mapper are returned in oid order (in postgres at least). It would be very useful to be able to specify the sort column using the order_by keyword arg when the relation is defined.</p> | <p dir="auto"><strong>Migrated issue, originally created by Anonymous</strong></p>
<p dir="auto">Hi!</p>
<p dir="auto">We're using this in several internal drizzle projects and would love to get it merged. Here's an hg repo with the patch all merged up with latest trunk:</p>
<p dir="auto">hg clone <a href="http://bitbucket.org/mordred/sqlalchemy" rel="nofollow">http://bitbucket.org/mordred/sqlalchemy</a></p>
<p dir="auto">Also going to attach it in patch version.</p>
<hr>
<p dir="auto">Attachments: <a href="../wiki/imported_issue_attachments/2003/updated-drizzle.patch">updated-drizzle.patch</a> | <a href="../wiki/imported_issue_attachments/2003/drizzle_dialect.patch">drizzle_dialect.patch</a> | <a href="../wiki/imported_issue_attachments/2003/drizzle_with_connector.patch">drizzle_with_connector.patch</a> | <a href="../wiki/imported_issue_attachments/2003/new_add_drizzle.patch">new_add_drizzle.patch</a></p> | 0 |
<p dir="auto">[PowerToys Run -Utility - PowerToys Run Window]</p>
<p dir="auto"><strong>User Experience:</strong><br>
All users especially keyboard users pressing Shift tab key from power launcher edit field will be effected as PowerToys rin window is getting closed.</p>
<p dir="auto"><strong>Test Environment:</strong><br>
OS Version: 20221.1000<br>
App Name: Power Toy Preview<br>
App Version: v0.23.0<br>
Screen Reader: Narrator</p>
<p dir="auto"><strong>Pre-Requisite:</strong><br>
Define any shortcut key to open PowerToys Run<br>
(for e.g. 'Ctrl + Shift + V')</p>
<p dir="auto"><strong>Repro Steps:</strong></p>
<ol dir="auto">
<li>Open Power Toys App</li>
<li>Navigate to PowerToys Run Button present on the left side and activate it.</li>
<li>Now press "Ctrl + Shift + V" to open PowerToys Run window.</li>
<li>PowerToys Run utility window will get open.</li>
<li>Focus will land on power launcher edit field.</li>
<li>Now press "Shift+Tab" key.</li>
<li>Observe the issue.</li>
</ol>
<p dir="auto"><strong>Actual Result:</strong><br>
Pressing "shift + tab" in power launcher edit field PowerToys run is getting closed.</p>
<p dir="auto"><strong>Expected Result:</strong><br>
Pressing "shift + tab" in power launcher edit field PowerToys run window should not get closed.</p>
<p dir="auto"><a href="https://github.com/microsoft/PowerToys/files/5329150/Functional_Pressing.shift.tab.in.power.launcher.edit.field.PowerToys.run.is.getting.closed.zip">Functional_Pressing shift tab in power launcher edit field PowerToys run is getting closed.zip</a></p> | <h2 dir="auto">ℹ Computer information</h2>
<ul dir="auto">
<li>PowerToys version: 0.21.1.0</li>
<li>PowerToy Utility: PowerToys Run</li>
<li>Running PowerToys as Admin: No</li>
<li>Windows build number: 20211.1000</li>
</ul>
<h2 dir="auto"><g-emoji class="g-emoji" alias="memo" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f4dd.png">📝</g-emoji> Provide detailed reproduction steps (if any)</h2>
<ol dir="auto">
<li>Set PowerToys Run shortcut to ctrl+shift+space</li>
<li>ctrl+shift+space</li>
<li>ctrl+shift+tab will crash PTRun</li>
</ol>
<h3 dir="auto"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png">✔️</g-emoji> Expected result</h3>
<p dir="auto">Key combo is ignored.</p>
<h3 dir="auto"><g-emoji class="g-emoji" alias="x" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/274c.png">❌</g-emoji> Actual result</h3>
<p dir="auto">PowerToys Run crashes and dumps trace log.</p>
<h2 dir="auto"><g-emoji class="g-emoji" alias="camera" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f4f7.png">📷</g-emoji> Screenshots</h2>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/3385925/95137384-ee715d00-0735-11eb-9030-a02ef474357b.gif"><img src="https://user-images.githubusercontent.com/3385925/95137384-ee715d00-0735-11eb-9030-a02ef474357b.gif" alt="PowerToysRunCrash" data-animated-image="" style="max-width: 100%;"></a></p>
<h3 dir="auto">Logs</h3>
<p dir="auto">##Error Message</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Version: 0.21.1.0
OS Version: Microsoft Windows NT 10.0.20211.0
IntPtr Length: 8
x64: True
Date: 10/05/2020 18:09:57
Exception:
System.NullReferenceException: Object reference not set to an instance of an object.
at PowerLauncher.ViewModel.ResultsViewModel.SelectPrevTabItem()
at PowerLauncher.ViewModel.MainViewModel.<InitializeKeyCommands>b__24_5(Object _)
at PowerLauncher.ViewModel.RelayCommand.Execute(Object parameter)
at PowerLauncher.MainWindow.Launcher_KeyDown(Object sender, KeyEventArgs e)
at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)
at System.Windows.UIElement.RaiseTrustedEvent(RoutedEventArgs args)
at System.Windows.Input.InputManager.ProcessStagingArea()
at System.Windows.Input.InputProviderSite.ReportInput(InputReport inputReport)
at System.Windows.Interop.HwndKeyboardInputProvider.ProcessKeyAction(MSG& msg, Boolean& handled)
at System.Windows.Interop.HwndSource.CriticalTranslateAccelerator(MSG& msg, ModifierKeys modifiers)
at System.Windows.Interop.HwndSource.OnPreprocessMessage(Object param)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)"><pre class="notranslate"><code class="notranslate">Version: 0.21.1.0
OS Version: Microsoft Windows NT 10.0.20211.0
IntPtr Length: 8
x64: True
Date: 10/05/2020 18:09:57
Exception:
System.NullReferenceException: Object reference not set to an instance of an object.
at PowerLauncher.ViewModel.ResultsViewModel.SelectPrevTabItem()
at PowerLauncher.ViewModel.MainViewModel.<InitializeKeyCommands>b__24_5(Object _)
at PowerLauncher.ViewModel.RelayCommand.Execute(Object parameter)
at PowerLauncher.MainWindow.Launcher_KeyDown(Object sender, KeyEventArgs e)
at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)
at System.Windows.UIElement.RaiseTrustedEvent(RoutedEventArgs args)
at System.Windows.Input.InputManager.ProcessStagingArea()
at System.Windows.Input.InputProviderSite.ReportInput(InputReport inputReport)
at System.Windows.Interop.HwndKeyboardInputProvider.ProcessKeyAction(MSG& msg, Boolean& handled)
at System.Windows.Interop.HwndSource.CriticalTranslateAccelerator(MSG& msg, ModifierKeys modifiers)
at System.Windows.Interop.HwndSource.OnPreprocessMessage(Object param)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
</code></pre></div>
<p dir="auto">##Log File<br>
<a href="https://github.com/microsoft/PowerToys/files/5330374/2020-10-05.txt">2020-10-05.txt</a></p> | 1 |
<ul dir="auto">
<li>Electron version: 1.1.0 & 1.2.0</li>
<li>Operating system: OSX El Capitan</li>
</ul>
<p dir="auto">When creating a BrowserWindow and enabling DevTools, <code class="notranslate">-webkit-app-region</code> is not working. If you close the DevTools, drag works as expected.<br>
For info, it works great with 1.0.0...</p>
<p dir="auto">Here's a small exemple :</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
#top {
-webkit-app-region: drag;
position: fixed;
top:0;
right: 0;
left: 0;
bottom: 0;
background: red;
}
</style>
</head>
<body>
<div id="top"></div>
</body>
</html>"><pre class="notranslate"><span class="pl-c1"><!DOCTYPE html<span class="pl-kos">></span></span>
<span class="pl-kos"><</span><span class="pl-ent">html</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">head</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">meta</span> <span class="pl-c1">charset</span>="<span class="pl-s">UTF-8</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-kos">#</span><span class="pl-c1">top</span> {
<span class="pl-c1">-webkit-app-region</span><span class="pl-kos">:</span> drag;
<span class="pl-c1">position</span><span class="pl-kos">:</span> fixed;
<span class="pl-c1">top</span><span class="pl-kos">:</span><span class="pl-c1">0</span>;
<span class="pl-c1">right</span><span class="pl-kos">:</span> <span class="pl-c1">0</span>;
<span class="pl-c1">left</span><span class="pl-kos">:</span> <span class="pl-c1">0</span>;
<span class="pl-c1">bottom</span><span class="pl-kos">:</span> <span class="pl-c1">0</span>;
<span class="pl-c1">background</span><span class="pl-kos">:</span> red;
}
<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">head</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">body</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">div</span> <span class="pl-c1">id</span>="<span class="pl-s">top</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">body</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">html</span><span class="pl-kos">></span></pre></div>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const electron = require('electron')
const BrowserWindow = electron.BrowserWindow
electron.app.on('ready',() => {
const win = new BrowserWindow({
minWidth: 1024,
minHeight: 600,
frameLess: true,
titleBarStyle: 'hidden-inset',
show: true
})
win.loadURL(`file://${__dirname}/bug.html`)
win.openDevTools()
})"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">electron</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'electron'</span><span class="pl-kos">)</span>
<span class="pl-k">const</span> <span class="pl-v">BrowserWindow</span> <span class="pl-c1">=</span> <span class="pl-s1">electron</span><span class="pl-kos">.</span><span class="pl-c1">BrowserWindow</span>
<span class="pl-s1">electron</span><span class="pl-kos">.</span><span class="pl-c1">app</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">'ready'</span><span class="pl-kos">,</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-s1">win</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-v">BrowserWindow</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">minWidth</span>: <span class="pl-c1">1024</span><span class="pl-kos">,</span>
<span class="pl-c1">minHeight</span>: <span class="pl-c1">600</span><span class="pl-kos">,</span>
<span class="pl-c1">frameLess</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c1">titleBarStyle</span>: <span class="pl-s">'hidden-inset'</span><span class="pl-kos">,</span>
<span class="pl-c1">show</span>: <span class="pl-c1">true</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-s1">win</span><span class="pl-kos">.</span><span class="pl-en">loadURL</span><span class="pl-kos">(</span><span class="pl-s">`file://<span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">__dirname</span><span class="pl-kos">}</span></span>/bug.html`</span><span class="pl-kos">)</span>
<span class="pl-s1">win</span><span class="pl-kos">.</span><span class="pl-en">openDevTools</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">Not a big bug, but it's annoying to have to close DevTools to move the windows...</p>
<p dir="auto"><strong>EDIT</strong> :<br>
Probably related to option : "titleBarStyle", as this code is working on Windows...</p> | <p dir="auto">This is a regression—in Electron <code class="notranslate">0.35.1</code>, draggable regions of the window stop working when the developer tools are opened. This means that the window effectively can't be moved while the developer tools are open. It doesn't matter if the developer tools are docked or in a separate window.</p>
<p dir="auto">I think this might be a side effect of an intentional change? In previous versions, you couldn't use the "Inspect Element" feature to click and select part of the DOM that was in a draggable region (since it was still draggable.) That now works (I can hover over and click on my title bar), but I can't move the window.</p>
<p dir="auto">Here's a sample app to reproduce. Open the app, enable "top toolbar" and then open the developer tools:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1037212/11510691/d2c9aa5c-9819-11e5-911e-55a87b840dc2.png"><img src="https://cloud.githubusercontent.com/assets/1037212/11510691/d2c9aa5c-9819-11e5-911e-55a87b840dc2.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto"><a href="https://dl.dropboxusercontent.com/u/4803975/frameless-window.zip" rel="nofollow">https://dl.dropboxusercontent.com/u/4803975/frameless-window.zip</a></p> | 1 |
<p dir="auto">Button "Back to top" not working (docs)</p> | <p dir="auto">Back to top button is not functional in the documentation site.</p> | 1 |
<h1 dir="auto">Examples bug report</h1>
<h2 dir="auto">Example name</h2>
<p dir="auto">auth0</p>
<h2 dir="auto">Describe the bug</h2>
<p dir="auto">builds with errors</p>
<h2 dir="auto">To Reproduce</h2>
<ol dir="auto">
<li><code class="notranslate">npx create-next-app --example auth0 auth0</code></li>
<li>Change target to serverless</li>
<li><code class="notranslate">yarn build</code></li>
<li>See error</li>
</ol>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">Should build with no errors</p>
<h2 dir="auto">Screenshots</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Creating an optimized production build
Compiled with warnings.
/Users/alisowski/Documents/kikbak-2/node_modules/got/source/request-as-event-emitter.js
Critical dependency: require function is used in a way in which dependencies cannot be statically extracted
/Users/alisowski/Documents/kikbak-2/node_modules/next/dist/next-server/server/load-components.js
Critical dependency: the request of a dependency is an expression
/Users/alisowski/Documents/kikbak-2/node_modules/next/dist/next-server/server/load-components.js
Critical dependency: the request of a dependency is an expression
/Users/alisowski/Documents/kikbak-2/node_modules/next/dist/next-server/server/load-components.js
Critical dependency: the request of a dependency is an expression
/Users/alisowski/Documents/kikbak-2/node_modules/next/dist/next-server/server/load-components.js
Critical dependency: the request of a dependency is an expression
/Users/alisowski/Documents/kikbak-2/node_modules/next/dist/next-server/server/require.js
Critical dependency: the request of a dependency is an expression
/Users/alisowski/Documents/kikbak-2/node_modules/next/dist/next-server/server/require.js
Critical dependency: the request of a dependency is an expression
/Users/alisowski/Documents/kikbak-2/node_modules/encoding/lib/iconv-loader.js
Critical dependency: the request of a dependency is an expression
/Users/alisowski/Documents/kikbak-2/node_modules/keyv/src/index.js
Critical dependency: the request of a dependency is an expression
> Build error occurred
{ Error: The cookieSecret setting is empty or null
at new CookieSessionStoreSettings (/Users/alisowski/Documents/kikbak-2/packages/test/.next/serverless/pages/advanced/ssr-profile.js:22328:19)
at Object.createInstance [as default] (/Users/alisowski/Documents/kikbak-2/packages/test/.next/serverless/pages/advanced/ssr-profile.js:7667:29)
at initAuth0 (/Users/alisowski/Documents/kikbak-2/packages/test/.next/serverless/pages/advanced/ssr-profile.js:21557:47)
at Object.2NqA (/Users/alisowski/Documents/kikbak-2/packages/test/.next/serverless/pages/advanced/ssr-profile.js:2846:127)
at __webpack_require__ (/Users/alisowski/Documents/kikbak-2/packages/test/.next/serverless/pages/advanced/ssr-profile.js:23:31)
at Module.qWSV (/Users/alisowski/Documents/kikbak-2/packages/test/.next/serverless/pages/advanced/ssr-profile.js:36832:13)
at __webpack_require__ (/Users/alisowski/Documents/kikbak-2/packages/test/.next/serverless/pages/advanced/ssr-profile.js:23:31)
at module.exports.+3SS.strict (/Users/alisowski/Documents/kikbak-2/packages/test/.next/serverless/pages/advanced/ssr-profile.js:91:18)
at Object.<anonymous> (/Users/alisowski/Documents/kikbak-2/packages/test/.next/serverless/pages/advanced/ssr-profile.js:94:10)"><pre class="notranslate"><code class="notranslate">Creating an optimized production build
Compiled with warnings.
/Users/alisowski/Documents/kikbak-2/node_modules/got/source/request-as-event-emitter.js
Critical dependency: require function is used in a way in which dependencies cannot be statically extracted
/Users/alisowski/Documents/kikbak-2/node_modules/next/dist/next-server/server/load-components.js
Critical dependency: the request of a dependency is an expression
/Users/alisowski/Documents/kikbak-2/node_modules/next/dist/next-server/server/load-components.js
Critical dependency: the request of a dependency is an expression
/Users/alisowski/Documents/kikbak-2/node_modules/next/dist/next-server/server/load-components.js
Critical dependency: the request of a dependency is an expression
/Users/alisowski/Documents/kikbak-2/node_modules/next/dist/next-server/server/load-components.js
Critical dependency: the request of a dependency is an expression
/Users/alisowski/Documents/kikbak-2/node_modules/next/dist/next-server/server/require.js
Critical dependency: the request of a dependency is an expression
/Users/alisowski/Documents/kikbak-2/node_modules/next/dist/next-server/server/require.js
Critical dependency: the request of a dependency is an expression
/Users/alisowski/Documents/kikbak-2/node_modules/encoding/lib/iconv-loader.js
Critical dependency: the request of a dependency is an expression
/Users/alisowski/Documents/kikbak-2/node_modules/keyv/src/index.js
Critical dependency: the request of a dependency is an expression
> Build error occurred
{ Error: The cookieSecret setting is empty or null
at new CookieSessionStoreSettings (/Users/alisowski/Documents/kikbak-2/packages/test/.next/serverless/pages/advanced/ssr-profile.js:22328:19)
at Object.createInstance [as default] (/Users/alisowski/Documents/kikbak-2/packages/test/.next/serverless/pages/advanced/ssr-profile.js:7667:29)
at initAuth0 (/Users/alisowski/Documents/kikbak-2/packages/test/.next/serverless/pages/advanced/ssr-profile.js:21557:47)
at Object.2NqA (/Users/alisowski/Documents/kikbak-2/packages/test/.next/serverless/pages/advanced/ssr-profile.js:2846:127)
at __webpack_require__ (/Users/alisowski/Documents/kikbak-2/packages/test/.next/serverless/pages/advanced/ssr-profile.js:23:31)
at Module.qWSV (/Users/alisowski/Documents/kikbak-2/packages/test/.next/serverless/pages/advanced/ssr-profile.js:36832:13)
at __webpack_require__ (/Users/alisowski/Documents/kikbak-2/packages/test/.next/serverless/pages/advanced/ssr-profile.js:23:31)
at module.exports.+3SS.strict (/Users/alisowski/Documents/kikbak-2/packages/test/.next/serverless/pages/advanced/ssr-profile.js:91:18)
at Object.<anonymous> (/Users/alisowski/Documents/kikbak-2/packages/test/.next/serverless/pages/advanced/ssr-profile.js:94:10)
</code></pre></div>
<h2 dir="auto">System information</h2>
<ul dir="auto">
<li>OS: macOS</li>
<li>Version of Next.js: 9.1.6</li>
</ul> | <h1 dir="auto">Bug report</h1>
<h2 dir="auto">Describe the bug</h2>
<p dir="auto">When deployed I get a TypeError: require is not a function error when importing npm module in api/allMovies.js. It works locally but not when deployed.</p>
<h2 dir="auto">To Reproduce</h2>
<ol dir="auto">
<li>clone <a href="https://github.com/tenjojeremy/test-nextjs-simple">https://github.com/tenjojeremy/test-nextjs-simple</a></li>
<li>run <code class="notranslate">yarn</code></li>
<li>run <code class="notranslate">yarn start</code></li>
<li>open localhost: 3000</li>
<li>You should see movie posters as expected</li>
<li>Deploy site</li>
<li>open deployed site url</li>
<li>you will see <code class="notranslate">Internal Server Error</code></li>
<li>logs will show error log:</li>
</ol>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/25231946/61072222-b4e16300-a3c7-11e9-8a7b-9a4694ff680a.png"><img src="https://user-images.githubusercontent.com/25231946/61072222-b4e16300-a3c7-11e9-8a7b-9a4694ff680a.png" alt="Screen Shot 2019-07-11 at 10 31 52 AM" style="max-width: 100%;"></a></p>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">On prod site, movies should be fetched and appear on screen on initial load</p>
<h2 dir="auto">Additional context</h2>
<p dir="auto">Related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="465964703" data-permission-text="Title is private" data-url="https://github.com/vercel/next.js/issues/7850" data-hovercard-type="issue" data-hovercard-url="/vercel/next.js/issues/7850/hovercard" href="https://github.com/vercel/next.js/issues/7850">#7850</a></p>
<p dir="auto">Thank you</p> | 0 |
<p dir="auto">Just before the 3.1 release, having div class="visible-sm visible-xs" together on a div would show the div when it hit both breakpoints. Now, it only works on one breakpoint. They both work individually, but when there's more than one declared on a div, only one class gets triggered. Does the same for hidden.</p>
<p dir="auto">I checked the issues log and didn't notice this. Hopefully i am not the only one finding this.</p> | <p dir="auto"><a href="https://dl.dropboxusercontent.com/u/37682778/error/index.html" rel="nofollow">https://dl.dropboxusercontent.com/u/37682778/error/index.html</a></p> | 1 |
<p dir="auto"><a href="https://console.cloud.google.com/storage/kubernetes-jenkins/logs/kubernetes-e2e-gke/7625/" rel="nofollow">https://console.cloud.google.com/storage/kubernetes-jenkins/logs/kubernetes-e2e-gke/7625/</a></p>
<p dir="auto">Failed: [k8s.io] SSH should SSH to all nodes and run commands {Kubernetes e2e suite}</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/ssh.go:93
May 23 19:12:07.338: Ran echo "Hello" on 104.154.63.130:22, got error error getting SSH client to [email protected]:22: 'timed out waiting for the condition', expected <nil>"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/ssh.go:93
May 23 19:12:07.338: Ran echo "Hello" on 104.154.63.130:22, got error error getting SSH client to [email protected]:22: 'timed out waiting for the condition', expected <nil>
</code></pre></div> | <p dir="auto">Refs <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="83637719" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/9075" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/9075/hovercard" href="https://github.com/kubernetes/kubernetes/issues/9075">#9075</a> as <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thockin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thockin">@thockin</a> wants (we all do) CoreOS documentation to be sober on 1.0 release.</p>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/thockin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/thockin">@thockin</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/erictune/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/erictune">@erictune</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/AntonioMeireles/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/AntonioMeireles">@AntonioMeireles</a> I have questions.</p>
<ol dir="auto">
<li>Care if we remove single-node instructions? I don't think this makes sense anymore, unless someone is going to use <code class="notranslate">hyperkube</code>.</li>
<li><code class="notranslate">master.yaml</code> needs instrumentation to generate service-account private key file, so it will depend on <code class="notranslate">openssl</code>. Any objections?</li>
<li>We should add DNS integration as many examples depend on it. Objections?</li>
<li>We should move <code class="notranslate">aws</code> folder from <code class="notranslate">getting-started-guides</code> folder, to <code class="notranslate">getting-started-guides/coreos</code>, in order to match how it's done with <code class="notranslate">azure</code>.<br>
Speaking of which <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/errordeveloper/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/errordeveloper">@errordeveloper</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/squillace/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/squillace">@squillace</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/chanezon/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/chanezon">@chanezon</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/crossorigin/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/crossorigin">@crossorigin</a> do you agree with questions 1, 2 and 3? Also, can we sync effort to get it homogeneous on all different CoreOS approaches?</li>
</ol> | 0 |
<p dir="auto">Main page - <a href="http://twitter.github.com/bootstrap/">http://twitter.github.com/bootstrap/</a>, pressing the big "Download Bootstrap" gives you everything.</p>
<p dir="auto">Going to customize - <a href="http://twitter.github.com/bootstrap/download.html">http://twitter.github.com/bootstrap/download.html</a> (specifically Responsive layouts)</p>
<p dir="auto">Having everything checked, scrolling to the bottom, and downloading - doesn't give you bootstrap-responsive.css</p>
<p dir="auto">Wondering why all my menus were going nuts. Thanks!</p> | <p dir="auto">The default download has the responsive and non-responsive as separate files, but the customizer combines them into a single file. They should have the same file structure, so the customize should give you the responsive layouts in a separate bootstrap-responsive.css. Will make it less confusing as to whether you have a bootstrap file that has responsive layouts or not.</p> | 1 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=stefanoc" rel="nofollow">Stefan Ocke</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-8040?redirect=false" rel="nofollow">SPR-8040</a></strong> and commented</p>
<p dir="auto">When using HiddenHttpMethodFilter, like for example Spring Roo generated apps do, the ServletRequest is wrappd into a HttpMethodRequestWrapper (at least in cases, where wrapping is necessary, for example for PUT requests emulated with POST and httpMethod parameter).</p>
<p dir="auto">Later, when it comes to data binding the ServletRequestDataBinder.bind method checks for multipart requests:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="MutablePropertyValues mpvs = new ServletRequestParameterPropertyValues(request);
if (request instanceof MultipartRequest) {
MultipartRequest multipartRequest = (MultipartRequest) request;
bindMultipart(multipartRequest.getMultiFileMap(), mpvs);
}
doBind(mpvs);"><pre class="notranslate"><code class="notranslate">MutablePropertyValues mpvs = new ServletRequestParameterPropertyValues(request);
if (request instanceof MultipartRequest) {
MultipartRequest multipartRequest = (MultipartRequest) request;
bindMultipart(multipartRequest.getMultiFileMap(), mpvs);
}
doBind(mpvs);
</code></pre></div>
<p dir="auto">But if the multipart request has been wrapped into a HttpMethodRequestWrapper , this won't work anymore, since it is not an instance of MultipartRequest. Thus, no databinding for the Multipart files occurs.</p>
<p dir="auto">NOTE: My setup ist the following:</p>
<ul dir="auto">
<li>I am using a MultipartFilter in front of the WebMethodFilter, as suggested in bold letters in the Javadoc of HiddenHttpMethodFilter</li>
<li>I am using binding for the uploaded files, instead of "injecting" them as parameters in the controller mehtods. For this, I register an according converter / bean editor from MultipartFile to byte array</li>
<li>For POST request, this setup works fine. For PUT (emulated by POST and httpMethod parameter), the problem described above arises.</li>
</ul>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.0.5</p>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398109051" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/12451" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/12451/hovercard" href="https://github.com/spring-projects/spring-framework/issues/12451">#12451</a> ServletRequestDataBinder does not bind MultipartFile with HiddenHttpMethodFilter and Multipart Request (<em><strong>"duplicates"</strong></em>)</li>
</ul> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=gregorian21" rel="nofollow">Arun Reddy</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-2171?redirect=false" rel="nofollow">SPR-2171</a></strong> and commented</p>
<p dir="auto">The form:form tag set the 'id' value to 'null' when not specified and does not take into consideration the value specified for the 'name' attribute.</p>
<p dir="auto">For example,</p>
<p dir="auto">i) No 'id' or 'name' attribute specified</p>
<p dir="auto"><form:form action="actionUrl" method="post" commandName="commandObjectName"> </form:form> results in</p>
<p dir="auto"><form id="null" name="null" method="post" action="actionUrl"></form></p>
<p dir="auto">ii) 'name' attribute specified</p>
<p dir="auto"><form:form name="formName" action="actionUrl" method="post" commandName="commandObjectName"></form:form> results in</p>
<p dir="auto"><form id="null" name="null" method="post" name="formName" action="actionUrl"></form></p>
<p dir="auto">iii) 'id' and 'name' attribute is specified</p>
<p dir="auto"><form:form id="formId" name="formName" action="actionUrl" method="post" commandName="commandObjectName"></form:form> results in</p>
<p dir="auto"><form id="formId" name="null" method="post" name="formName" action="actionUrl"></form><br>
This behaviour is inconsistent with that in previous milestone releases.</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 2.0 RC1</p> | 0 |
<p dir="auto">On Windows (and Ubuntu with Unity Desktop Manager), clicking on a taskbar item with the scroll wheel button, middle mouse button, or shift + click causes a new window to be opened instead of an existing instance. VS Code does not do this.</p>
<p dir="auto">Repro:</p>
<ol dir="auto">
<li>Open VS Code and open a folder.</li>
<li>Click the VS Code icon using the scroll wheel click.</li>
</ol>
<p dir="auto">Expected: A new VS Code window will open</p>
<p dir="auto">Actual: The existing VS Code window is shown.</p> | <ul dir="auto">
<li>VSCode Version: 1.0.0</li>
<li>OS Version: Windows 10 64bit</li>
</ul>
<p dir="auto">Steps to Reproduce:</p>
<ol dir="auto">
<li>Open any js file</li>
<li>Write ternary if statement</li>
<li>Syntax highlight will be broken.</li>
</ol>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/2222702/14732233/04910e40-0872-11e6-8044-c716b2ebe983.PNG"><img src="https://cloud.githubusercontent.com/assets/2222702/14732233/04910e40-0872-11e6-8044-c716b2ebe983.PNG" alt="bug" style="max-width: 100%;"></a></p> | 0 |
<h3 dir="auto">Describe the bug</h3>
<p dir="auto">I've registered to the <code class="notranslate">before_update</code> hook with:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="class MyTable(Base):
id = Column("id", UUID_DB(as_uuid=True), primary_key=True, default=uuid4)
from sqlalchemy import MetaData, event
event.listen(MyTable, "before_update", modified_at_hook)
def modified_at_hook(mapper, connection, target):
..."><pre class="notranslate"><code class="notranslate">class MyTable(Base):
id = Column("id", UUID_DB(as_uuid=True), primary_key=True, default=uuid4)
from sqlalchemy import MetaData, event
event.listen(MyTable, "before_update", modified_at_hook)
def modified_at_hook(mapper, connection, target):
...
</code></pre></div>
<p dir="auto">then executing an update statement:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="stmt = (
sqlalchemy.update(MyTable)
.where(table.id == obj_id)
.values(**dict_object)
.execution_options(synchronize_session="fetch")
)
async with AsyncSession(db_engine.get_engine()) as async_session:
result = await async_session.execute(stmt)
await async_session.commit()"><pre class="notranslate"><code class="notranslate">stmt = (
sqlalchemy.update(MyTable)
.where(table.id == obj_id)
.values(**dict_object)
.execution_options(synchronize_session="fetch")
)
async with AsyncSession(db_engine.get_engine()) as async_session:
result = await async_session.execute(stmt)
await async_session.commit()
</code></pre></div>
<p dir="auto">but the hook is not being triggered.</p>
<p dir="auto">When I am trying to use the <code class="notranslate">merge</code> function of the async_session, only <code class="notranslate">before_insert</code> hook is triggered. and there is no <code class="notranslate">.update</code> method for async session.</p>
<p dir="auto">Further more, when using the <code class="notranslate">.add</code> method, and the entity has id, I get exception that the entity is already exist. how can I mark the entity for update without using <code class="notranslate">SELECT</code> to retrieve it first?</p>
<h3 dir="auto">Optional link from <a href="https://docs.sqlalchemy.org" rel="nofollow">https://docs.sqlalchemy.org</a> which documents the behavior that is expected</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">SQLAlchemy Version in Use</h3>
<p dir="auto">1.4.40</p>
<h3 dir="auto">DBAPI (i.e. the database driver)</h3>
<p dir="auto">default</p>
<h3 dir="auto">Database Vendor and Major Version</h3>
<p dir="auto">PostgreSQL 12</p>
<h3 dir="auto">Python Version</h3>
<p dir="auto">3.11</p>
<h3 dir="auto">Operating system</h3>
<p dir="auto">losx</p>
<h3 dir="auto">To Reproduce</h3>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="aboe"><pre class="notranslate"><span class="pl-s1">aboe</span></pre></div>
<h3 dir="auto">Error</h3>
<p dir="auto">no error</p>
<h3 dir="auto">Additional context</h3>
<p dir="auto"><em>No response</em></p> | <p dir="auto"><strong>Migrated issue, originally created by Karol Narowski</strong></p>
<p dir="auto">Function is not called when set in listener. <strong>before_insert</strong> and <strong>after_insert</strong> is working well but <strong>before_update</strong> and <strong>after_update</strong> are not called.<br>
Ex.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="class User(Base):
__tablename__ = 'users'
uid = Column(String(36), primary_key=True, unique=True, default=generate_uuid)
name = Column(String(15), nullable=False)
description = Column(String(25), nullable=False)
phone = Column(String(20), nullable=False)
hash = Column(String(128), nullable=True, unique=True)
created_on = Column(DateTime(), default=datetime.utcnow)
updated_on = Column(DateTime(), default=datetime.utcnow, onupdate=datetime.utcnow)
@listens_for(User, 'before_insert')
def before_insert_function(mapper, connection, target):
print(target.phone)
target.hash = "OtherInsert"
@listens_for(User, 'before_update')
def before_update_function(mapper, connection, target):
print(target.uid)
print(target.phone)
target.hash = "OtherUpdate"
"><pre class="notranslate"><code class="notranslate">class User(Base):
__tablename__ = 'users'
uid = Column(String(36), primary_key=True, unique=True, default=generate_uuid)
name = Column(String(15), nullable=False)
description = Column(String(25), nullable=False)
phone = Column(String(20), nullable=False)
hash = Column(String(128), nullable=True, unique=True)
created_on = Column(DateTime(), default=datetime.utcnow)
updated_on = Column(DateTime(), default=datetime.utcnow, onupdate=datetime.utcnow)
@listens_for(User, 'before_insert')
def before_insert_function(mapper, connection, target):
print(target.phone)
target.hash = "OtherInsert"
@listens_for(User, 'before_update')
def before_update_function(mapper, connection, target):
print(target.uid)
print(target.phone)
target.hash = "OtherUpdate"
</code></pre></div> | 1 |
<p dir="auto">Hello,</p>
<p dir="auto">I have a generic component, e.g. <code class="notranslate">class Select<T> extends React.Component<SelectProps<T>, any></code>. Is there any "right" way to use it from JSX?</p>
<p dir="auto">It is impossible to write something like <code class="notranslate"><Select<string> /></code> in JSX. The best thing that I've found is to write</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="let StringSelect: React.Component<SelectProps<string>, any> = Select;"><pre class="notranslate"><span class="pl-k">let</span> <span class="pl-smi">StringSelect</span>: <span class="pl-smi">React</span><span class="pl-kos">.</span><span class="pl-smi">Component</span><span class="pl-kos"><</span><span class="pl-smi">SelectProps</span><span class="pl-kos"><</span><span class="pl-smi">string</span><span class="pl-kos">></span><span class="pl-kos">,</span> <span class="pl-smi">any</span><span class="pl-kos">></span> <span class="pl-c1">=</span> <span class="pl-smi">Select</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">And use <code class="notranslate">StringSelect</code> instead of <code class="notranslate">Select<string></code>. Is there anything better?</p> | <p dir="auto">Hello...</p>
<p dir="auto">For my project I need pagination support so I decided to give ng2-bootstrap a chance. But I am running into a series of problems trying to add the dependency ranging from compile errors to incorrect placement of TS output js files. I am using TS 1.7.4. At this point I am not sure where the blame should be placed, either with ng2-bootstrap, TS compiler, or myself. Here's what I did:</p>
<p dir="auto">In my package.json file I added the following dependency: "ng2-bootstrap": "1.0.7". As a result of doing so the corresponding package is downloaded and placed in my "node_modules" folder. Great, so far so good.</p>
<p dir="auto">Then I added the following code to the top of one of my TS classes:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import {PAGINATION_DIRECTIVES} from 'ng2-bootstrap/ng2-bootstrap';"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-smi">PAGINATION_DIRECTIVES</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'ng2-bootstrap/ng2-bootstrap'</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">Now after doing this is when problems begin to appear. At this point when I try to compile I get the following errors:</p>
<div class="highlight highlight-text-adblock notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Severity Code Description Project File Line Suppression State
Error TS2307 Cannot find module 'moment'. TypeScript Virtual Projects C:\MyProject\src\MyProject\node_modules\ng2-bootstrap\components\datepicker\date-formatter.ts 1 Active
Error TS2307 Build: Cannot find module 'moment'. MyProject C:\MyProject\src\MyProject\node_modules\ng2-bootstrap\components\datepicker\date-formatter.ts 1 "><pre class="notranslate">Severity Code Description Project File Line Suppression State
Error TS2307 Cannot find module 'moment'. TypeScript Virtual Projects C:\MyProject\src\MyProject\node_modules\ng2-bootstrap\components\datepicker\date-formatter.ts 1 Active
Error TS2307 Build: Cannot find module 'moment'. MyProject C:\MyProject\src\MyProject\node_modules\ng2-bootstrap\components\datepicker\date-formatter.ts 1 </pre></div>
<p dir="auto">So now I am scratching my head wondering why this is happening. I take a look at the offending file (date-formatters.ts) and see that it has the following code at top:<br>
import * as moment from 'moment';</p>
<p dir="auto">OK so I say to myself must be a missing reference or something so I better go find it. But before I do that my first question is: Why is the TS compiler trying to compile this TS file which resides in an excluded folder? My tsconfig file is located in the root of my project and it has the following:</p>
<div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=""exclude": [
"node_modules",
"wwwroot"
]"><pre class="notranslate"><span class="pl-ent">"exclude"</span>: [
<span class="pl-s"><span class="pl-pds">"</span>node_modules<span class="pl-pds">"</span></span>,
<span class="pl-s"><span class="pl-pds">"</span>wwwroot<span class="pl-pds">"</span></span>
]</pre></div>
<p dir="auto">Because of this my expectation is that the TS compiler should not compile anything inside the node_modules folder but apparently it is. Otherwise why would I get this error? So this is my first question. One thing I noticed about this particular node package is that it contains not only js and d.ts files but also ts files. Plus it also contains a tsconfig file. I am not sure if this has something to do with the problem.</p>
<p dir="auto">Despite this question I proceeded to investigate the error looking for answers. I ran across the following post: "<a href="https://github.com/valor-software/ng2-bootstrap#with-webpack-angularclassangular2-webpack-starter">https://github.com/valor-software/ng2-bootstrap#with-webpack-angularclassangular2-webpack-starter</a>". It basically states that I need to install moment.js including its typings. So I went ahead and did that. I installed the typings using the following command:</p>
<div class="highlight highlight-source-batchfile notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="typings install moment --save"><pre class="notranslate">typings install moment --save</pre></div>
<p dir="auto">At this point in time I notice that my project now has a "typings" folder with a bunch of stuff in it. I also notice a new typings.json file at the root. OK great so then I proceed to compile. But then I get a bunch of errors that look like this:</p>
<div class="highlight highlight-text-adblock notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Severity Code Description Project File Line Suppression State
Error TS2300 Duplicate identifier 'export='. TypeScript Virtual Projects C:\MyProject\src\MyProject\typings\main\definitions\moment\index.d.ts 496 Active
Severity Code Description Project File Line Suppression State
Error TS2300 Duplicate identifier 'export='. TypeScript Virtual Projects C:\MyProject\src\MyProject\typings\browser\definitions\moment\index.d.ts 496 Active"><pre class="notranslate">Severity Code Description Project File Line Suppression State
Error TS2300 Duplicate identifier 'export='. TypeScript Virtual Projects C:\MyProject\src\MyProject\typings\main\definitions\moment\index.d.ts 496 Active
Severity Code Description Project File Line Suppression State
Error TS2300 Duplicate identifier 'export='. TypeScript Virtual Projects C:\MyProject\src\MyProject\typings\browser\definitions\moment\index.d.ts 496 Active</pre></div>
<p dir="auto">At this point I am 5 seconds away from blowing my head off with no idea whatsoever what's going on. I sort of understand the issue. Basically two TS files exporting the same thing I guess. So I am thinking to myself is this typings package buggy? Or is this a TS compiler issue/bug? No idea. So this is my second question.</p>
<p dir="auto">So then I proceeded to investigate the above dup identifier error. I ran into the following: “<a href="https://github.com/Microsoft/TypeScript/issues/7369%E2%80%9D" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript/issues/7369/hovercard">https://github.com/Microsoft/TypeScript/issues/7369”</a>. It basically states that I have to exclude various files when compiling. So I did that by adding some items to exclude in my tsconfig file:</p>
<div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=""exclude": [
"node_modules",
"wwwroot",
"typings/browser.d.ts",
"typings/browser"
]"><pre class="notranslate"><span class="pl-ent">"exclude"</span>: [
<span class="pl-s"><span class="pl-pds">"</span>node_modules<span class="pl-pds">"</span></span>,
<span class="pl-s"><span class="pl-pds">"</span>wwwroot<span class="pl-pds">"</span></span>,
<span class="pl-s"><span class="pl-pds">"</span>typings/browser.d.ts<span class="pl-pds">"</span></span>,
<span class="pl-s"><span class="pl-pds">"</span>typings/browser<span class="pl-pds">"</span></span>
]</pre></div>
<p dir="auto">Specifically I added the last 2 entries above. So then I proceeded to compile again. This time I was able to compile with NO errors! Yay! I’m thinking to myself problem solved. But no…</p>
<p dir="auto">Right before I was about to pat myself on the back for having gotten the compile errors to go away, I noticed that now the output structure of my js files is totally messed up!!!!! In other words after compiling, the js files generated by the TS compiler are not in the correct location anymore. Here’s what I have in my tsconfig file:<br>
"outDir": "wwwroot/Scripts"<br>
In my project all of my TS files are located inside a “Scripts” folder that is located on the root. Inside this folder I have various subfolders with TS files inside of them. So my directory structure looks something like this:<br>
wwwroot<br>
---Scripts<br>
------Module1<br>
---------File1.js<br>
---------File2.js<br>
------Module2<br>
---------File1.js<br>
---------File2.js<br>
Scripts<br>
---Module1<br>
------File1.ts<br>
------File2.ts<br>
---Module2<br>
------File1.ts<br>
------File2.ts</p>
<p dir="auto">Above is how things were working before I embarked on this journey. The above is correct. Now however after making all these changes the output looks like this:<br>
wwwroot<br>
---Scripts<br>
------Scripts<br>
---------Module1<br>
------------File1.js<br>
------------File2.js<br>
---------Module2<br>
------------File1.js<br>
------------File2.js<br>
---node_modules<br>
------ng2-bootstrap<br>
-----------...a whole bunch of js files and subfolder with js files</p>
<p dir="auto">At this point I am basically 1 second away from blowing my head off. If you notice above suddenly my Scripts folder is nested inside the previous Scripts folder. And not only that there’s now a “node_modules” folder that contains an ng2-bootstrap folder that in turn contains a whole bunch of js files and subfolders with js files. Why is this happening? Again as I mentioned previously this particular ng2-bootstrap package ships with a bunch of ts files which is not something I have seen before. Most packages I have seen distribute only js and d.ts files. This package also includes a tsconfig file as well which is also not something I have seen before either. Just for the heck of it I manually deleted every ts file that comes with the package and sure enough the above problem with the directory structure goes away. In other words the presence of the ts files causes the problem to surface and their absence fixes the issue. Why is this happening? Is this a problem with the ng2-bootstrap package? Should it NOT contain ts files? Or is this a problem with the TS compiler? Why would the output structure change? Is it a problem with my project?</p>
<p dir="auto">Any help with this would be greatly appreciated. Thank you</p> | 0 |
<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">I'm hoping that this issue will resolve the problem I'm seeing.</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"><code class="notranslate">deployment</code>, <code class="notranslate">replica set</code>, <code class="notranslate">OldReplicaSets</code></p>
<hr>
<p dir="auto"><strong>Is this a BUG REPORT or FEATURE REQUEST?</strong> (choose one):</p>
<p dir="auto">Bug report</p>
<p dir="auto"><strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Client Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.4", GitCommit:"3b417cc4ccd1b8f38ff9ec96bb50a81ca0ea9d56", GitTreeState:"clean", BuildDate:"2016-10-21T02:48:38Z", GoVersion:"go1.7.1", Compiler:"gc", Platform:"darwin/amd64"}
Server Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.5", GitCommit:"5a0a696437ad35c133c0c8493f7e9d22b0f9b81b", GitTreeState:"clean", BuildDate:"2016-10-29T01:32:42Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"linux/amd64"}"><pre class="notranslate"><code class="notranslate">Client Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.4", GitCommit:"3b417cc4ccd1b8f38ff9ec96bb50a81ca0ea9d56", GitTreeState:"clean", BuildDate:"2016-10-21T02:48:38Z", GoVersion:"go1.7.1", Compiler:"gc", Platform:"darwin/amd64"}
Server Version: version.Info{Major:"1", Minor:"4", GitVersion:"v1.4.5", GitCommit:"5a0a696437ad35c133c0c8493f7e9d22b0f9b81b", GitTreeState:"clean", BuildDate:"2016-10-29T01:32:42Z", GoVersion:"go1.6.3", Compiler:"gc", Platform:"linux/amd64"}
</code></pre></div>
<p dir="auto"><strong>Environment</strong>:</p>
<p dir="auto">Google Container Engine</p>
<p dir="auto"><strong>What happened</strong>:</p>
<p dir="auto">I ran <code class="notranslate">kubectl apply -f</code> as usual to apply any changes to Deployment, Service, Ingress resources. The deployment did not create a new replica set with the updated container image. Going to the Kubernetes Dashboard I can confirm that the deployment was correctly updated with the new metadata.</p>
<p dir="auto">The only difference when this issue started happening was a small code change.</p>
<p dir="auto">I've tried multiple updates since and nothing changed. The nodes were on version 1.4.0 but I've tried updating them to 1.4.5 but still the same issue is happening.</p>
<p dir="auto">The old pods are still operational and serving requests normally.</p>
<p dir="auto"><strong>What you expected to happen</strong>:</p>
<p dir="auto">The deployment should have created a new replica set with three pods, then rolled them out.</p>
<p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible):</p>
<p dir="auto">I don't know.</p>
<p dir="auto"><strong>Anything else do we need to know</strong>:</p>
<p dir="auto">I've attached a file with the deployment's current configuration, as well as the deploy script I use to deploy: <a href="https://github.com/kubernetes/kubernetes/files/567982/files.zip">files.zip</a></p>
<p dir="auto">Here's the output of <code class="notranslate">kubectl describe</code>:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ kubectl describe deployment/fika-io
Name: fika-io
Namespace: default
CreationTimestamp: Sun, 16 Oct 2016 10:58:42 -0400
Labels: app=fika-io
Selector: app=fika-io
Replicas: 3 updated | 3 total | 3 available | 0 unavailable
StrategyType: RollingUpdate
MinReadySeconds: 0
RollingUpdateStrategy: 1 max unavailable, 1 max surge
OldReplicaSets: fika-io-749979362 (3/3 replicas created)
NewReplicaSet: <none>
No events."><pre class="notranslate"><code class="notranslate">$ kubectl describe deployment/fika-io
Name: fika-io
Namespace: default
CreationTimestamp: Sun, 16 Oct 2016 10:58:42 -0400
Labels: app=fika-io
Selector: app=fika-io
Replicas: 3 updated | 3 total | 3 available | 0 unavailable
StrategyType: RollingUpdate
MinReadySeconds: 0
RollingUpdateStrategy: 1 max unavailable, 1 max surge
OldReplicaSets: fika-io-749979362 (3/3 replicas created)
NewReplicaSet: <none>
No events.
</code></pre></div>
<p dir="auto">Note that there is no <code class="notranslate">NewReplicaSet</code>.</p> | <p dir="auto"><a href="https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/pr-logs/pull/31373/kubernetes-pull-build-test-e2e-gce/56869/" rel="nofollow">https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/pr-logs/pull/31373/kubernetes-pull-build-test-e2e-gce/56869/</a></p>
<p dir="auto">Failed: [k8s.io] Downward API volume should provide podname only [Conformance] {Kubernetes e2e suite}</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:134
Aug 31 15:48:21.680: Couldn't delete ns: "e2e-tests-downward-api-okpt6": the server could not find the requested resource
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:338"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:134
Aug 31 15:48:21.680: Couldn't delete ns: "e2e-tests-downward-api-okpt6": the server could not find the requested resource
/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework/framework.go:338
</code></pre></div>
<p dir="auto">Happened on a presubmit run in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="173048171" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/31373" data-hovercard-type="pull_request" data-hovercard-url="/kubernetes/kubernetes/pull/31373/hovercard" href="https://github.com/kubernetes/kubernetes/pull/31373">#31373</a>.</p> | 0 |
<p dir="auto">Similar to <a href="https://atom.io/docs/api/v1.3.2/CommandRegistry" rel="nofollow"><code class="notranslate">atom.commands.onWillDispatch</code> and <code class="notranslate">atom.commands.onDidDispatch</code></a>. This would be useful for extensions wanting to perform some action before or after a command is performed.</p>
<p dir="auto">Being able to determine the source of the event would be useful in such an API (mouse vs keyboard vs command palette).</p> | <p dir="auto">I am building an extension for VS Code. My extension will show the key bindings associated to a recently action (I am a fan of this for helping me learn key bindings).</p>
<p dir="auto">Looking through the documentation there seems to be a way to access the commands in the editor, but no way that I can find to listen for actions / commands as they are invoked.</p>
<p dir="auto">I would like the ability to listen for all user actions and then react to their actions.</p> | 1 |
<p dir="auto">When running <code class="notranslate">fourier_uniform</code> from SciPy's <code class="notranslate">ndimage</code>, seem to be getting an inaccurate result with SciPy 1.0.0+. The problem is not present in SciPy pre-1.0.0 (e.g. 0.19.1).</p>
<h3 dir="auto">Reproducing code example:</h3>
<p dir="auto">From SciPy 0.19.1:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="In [1]: import numpy as np
In [2]: import scipy.ndimage as spimg
In [3]: spimg.fourier_uniform(np.arange(5, dtype=float), 1)
Out[3]: array([ 0. , 0.93548928, 1.51365346, 2.27048019, 3.74195714])"><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">1</span>]: <span class="pl-s1">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-v">In</span> [<span class="pl-c1">2</span>]: <span class="pl-s1">import</span> <span class="pl-s1">scipy</span>.<span class="pl-s1">ndimage</span> <span class="pl-k">as</span> <span class="pl-s1">spimg</span>
<span class="pl-v">In</span> [<span class="pl-c1">3</span>]: <span class="pl-s1">spimg</span>.<span class="pl-en">fourier_uniform</span>(<span class="pl-s1">np</span>.<span class="pl-en">arange</span>(<span class="pl-c1">5</span>, <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">float</span>), <span class="pl-c1">1</span>)
<span class="pl-v">Out</span>[<span class="pl-c1">3</span>]: <span class="pl-en">array</span>([ <span class="pl-c1">0.</span> , <span class="pl-c1">0.93548928</span>, <span class="pl-c1">1.51365346</span>, <span class="pl-c1">2.27048019</span>, <span class="pl-c1">3.74195714</span>])</pre></div>
<p dir="auto">From SciPy 1.1.0:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="In [1]: import numpy as np
In [2]: import scipy.ndimage as spimg
In [3]: spimg.fourier_uniform(np.arange(5, dtype=float), 1)
Out[3]:
array([0.00000000e+000, 5.25819693e-315, 5.28483274e-315, 5.31059453e-315,
5.34108739e-315])"><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">1</span>]: <span class="pl-s1">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-v">In</span> [<span class="pl-c1">2</span>]: <span class="pl-s1">import</span> <span class="pl-s1">scipy</span>.<span class="pl-s1">ndimage</span> <span class="pl-k">as</span> <span class="pl-s1">spimg</span>
<span class="pl-v">In</span> [<span class="pl-c1">3</span>]: <span class="pl-s1">spimg</span>.<span class="pl-en">fourier_uniform</span>(<span class="pl-s1">np</span>.<span class="pl-en">arange</span>(<span class="pl-c1">5</span>, <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">float</span>), <span class="pl-c1">1</span>)
<span class="pl-v">Out</span>[<span class="pl-c1">3</span>]:
<span class="pl-en">array</span>([<span class="pl-c1">0.00000000e+000</span>, <span class="pl-c1">5.25819693e-315</span>, <span class="pl-c1">5.28483274e-315</span>, <span class="pl-c1">5.31059453e-315</span>,
<span class="pl-c1">5.34108739e-315</span>])</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.1.0 1.15.1 sys.version_info(major=3, minor=6, micro=6, releaselevel='final', serial=0)"><pre class="notranslate"><code class="notranslate">1.1.0 1.15.1 sys.version_info(major=3, minor=6, micro=6, releaselevel='final', serial=0)
</code></pre></div> | <p dir="auto"><code class="notranslate">bdtr</code> returns <code class="notranslate">nan</code> whenever <code class="notranslate">n</code> > 2**31 - 1. For example,</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [14]: import scipy
In [15]: scipy.__version__
Out[15]: '1.2.0.dev0+dfc9a9c'
In [16]: from scipy.special import bdtr
In [17]: bdtr([0, 2**30, 2**31-1], 2**31, 0.5)
Out[17]: array([nan, nan, nan])"><pre class="notranslate"><code class="notranslate">In [14]: import scipy
In [15]: scipy.__version__
Out[15]: '1.2.0.dev0+dfc9a9c'
In [16]: from scipy.special import bdtr
In [17]: bdtr([0, 2**30, 2**31-1], 2**31, 0.5)
Out[17]: array([nan, nan, nan])
</code></pre></div>
<p dir="auto">If I use <code class="notranslate">n = 2**31-1</code>, the values are not <code class="notranslate">nan</code>:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [18]: bdtr([0, 2**30, 2**31-1], 2**31-1, 0.5)
Out[18]: array([0. , 0.8891082, 1. ])"><pre class="notranslate"><code class="notranslate">In [18]: bdtr([0, 2**30, 2**31-1], 2**31-1, 0.5)
Out[18]: array([0. , 0.8891082, 1. ])
</code></pre></div>
<p dir="auto">This is on a 64 bit system.</p>
<p dir="auto">This looks related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="117462073" data-permission-text="Title is private" data-url="https://github.com/scipy/scipy/issues/5503" data-hovercard-type="issue" data-hovercard-url="/scipy/scipy/issues/5503/hovercard" href="https://github.com/scipy/scipy/issues/5503">#5503</a>, but I don't know if it is a duplicate.</p>
<p dir="auto"><code class="notranslate">bdtr(k, n, p)</code> calls <code class="notranslate">incbet(n - k, k+1, 1.0-p)</code>, so the underlying problem is probably in <code class="notranslate">incbet</code>. Note that the first two arguments of <code class="notranslate">incbet</code> are <code class="notranslate">double</code>, not integers.</p>
<p dir="auto">This problem was reported as <a href="https://stackoverflow.com/questions/53199088/scipy-stats-binom-cdf-returns-nan" rel="nofollow">a question on stackoverflow</a>, where it appeared as a problem with <code class="notranslate">scipy.stats.binom.cdf</code>:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [26]: from scipy.stats import binom
In [27]: binom.cdf([0, 2**30, 2**31-1], 2**31, 0.5)
/Users/warren/miniconda36/lib/python3.6/site-packages/scipy-1.2.0.dev0+dfc9a9c-py3.6-macosx-10.7-x86_64.egg/scipy/stats/_discrete_distns.py:60: RuntimeWarning: floating point number truncated to an integer
vals = special.bdtr(k, n, p)
Out[27]: array([nan, nan, nan])"><pre class="notranslate"><code class="notranslate">In [26]: from scipy.stats import binom
In [27]: binom.cdf([0, 2**30, 2**31-1], 2**31, 0.5)
/Users/warren/miniconda36/lib/python3.6/site-packages/scipy-1.2.0.dev0+dfc9a9c-py3.6-macosx-10.7-x86_64.egg/scipy/stats/_discrete_distns.py:60: RuntimeWarning: floating point number truncated to an integer
vals = special.bdtr(k, n, p)
Out[27]: array([nan, nan, nan])
</code></pre></div> | 0 |
<p dir="auto">We have developed a custom server side rendering solution to allow for asynchronous data loading. Once everything is done we flush the final HTML to the browser along with all of the asynchronously loaded data written to the DOM. We are also generating a checksum the same way react does with server side rendering.</p>
<p dir="auto">During initial mount in the browser, all of the data needed by the app is available, but our data contract layer uses Promises to provide data to those who request it. Our components don't know whether or not the data is available, but our data layer does. So components use the following pseudocode for loading data:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="componentWillMount () {
SomeModel.get({ params }).then(this.setState);
}"><pre class="notranslate"><code class="notranslate">componentWillMount () {
SomeModel.get({ params }).then(this.setState);
}
</code></pre></div>
<p dir="auto">Underneath the hood, our model layer knows whether or not the data is available and uses the data, otherwise it makes an ajax request for the data. But being that react's render is synchronous and Promises are asynchronous, there is no way for us to take advantage of the reuse-existing-markup logic within react. We have tested that if we return a synchronous Promise shim/hack, then everything works as expected - but we all know the dangers in doing this. Is there any way we can defer the checksum checks somehow? Is there a way we can render the vdom only (in memory) and then trigger the mounting logic? We don't want a detached dom with real dom nodes, we are wanting react to construct its vdom and then mount when we tell it to. Thanks.</p> | <p dir="auto"><strong>Do you want to request a <em>feature</em> or report a <em>bug</em>?</strong><br>
A bug<br>
<strong>What is the current behavior?</strong><br>
It duplicates error message to the error stack. I run react code pre-processed by webpack/babel in node virtual machine for SSR purposes. Therefore, I need to re-map the error stack to proper files/lines/columns when the error happens. A duplicated error message in error stack is not corresponding to a common error stack format which causes incorrect re-mapping and mess in the error output.<br>
<strong>If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem. Your bug will get fixed much faster if we can run your code and it doesn't have dependencies other than React. Paste the link to your JSFiddle (<a href="https://jsfiddle.net/Luktwrdm/" rel="nofollow">https://jsfiddle.net/Luktwrdm/</a>) or CodeSandbox (<a href="https://codesandbox.io/s/new" rel="nofollow">https://codesandbox.io/s/new</a>) example below:</strong><br>
The following error message was found both in <code class="notranslate">e.message</code> and <code class="notranslate">e.stack</code>:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:
1. You might have mismatching versions of React and the renderer (such as React DOM)
2. You might be breaking the Rules of Hooks
3. You might have more than one copy of React in the same app
See https://fb.me/react-invalid-hook-call for tips about how to debug and fix this problem."><pre class="notranslate"><code class="notranslate">Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:
1. You might have mismatching versions of React and the renderer (such as React DOM)
2. You might be breaking the Rules of Hooks
3. You might have more than one copy of React in the same app
See https://fb.me/react-invalid-hook-call for tips about how to debug and fix this problem.
</code></pre></div>
<p dir="auto"><strong>What is the expected behavior?</strong><br>
The error message should be found in <code class="notranslate">e.message</code> only.<br>
<strong>Which versions of React, and which browser / OS are affected by this issue? Did this work in previous versions of React?</strong><br>
[email protected]<br>
[email protected]<br>
@babel/[email protected]<br>
@babel/[email protected]</p> | 0 |
<h3 dir="auto">Version</h3>
<p dir="auto">2.3.0</p>
<h3 dir="auto">Reproduction link</h3>
<p dir="auto"><a href="https://jsfiddle.net/superboy2k/50wL7mdz/38665/" rel="nofollow">https://jsfiddle.net/superboy2k/50wL7mdz/38665/</a></p>
<h3 dir="auto">Steps to reproduce</h3>
<p dir="auto">Click Init, Click Update a few times, click Add => see the error in the console</p>
<h3 dir="auto">What is expected?</h3>
<p dir="auto">to update the ui correctly</p>
<h3 dir="auto">What is actually happening?</h3>
<p dir="auto">TypeError: Cannot read property 'key' of undefined<br>
at sameVnode (unpkg.com/[email protected]:4769)<br>
at updateChildren (unpkg.com/[email protected]:5128)<br>
at patchVnode (unpkg.com/[email protected]:5180)<br>
at updateChildren (unpkg.com/[email protected]:5096)<br>
at patchVnode (unpkg.com/[email protected]:5180)<br>
at updateChildren (unpkg.com/[email protected]:5096)<br>
at patchVnode (unpkg.com/[email protected]:5180)<br>
at Vue$3.patch [as <strong>patch</strong>] (unpkg.com/[email protected]:5305)<br>
at Vue$3.Vue._update (unpkg.com/[email protected]:2327)<br>
at Vue$3.updateComponent (unpkg.com/[email protected]:2443)</p> | <h3 dir="auto">Vue.js version</h3>
<p dir="auto">2.0.0-rc5</p>
<h3 dir="auto">Reproduction Link</h3>
<p dir="auto"><a href="https://jsfiddle.net/oldpig/zb4zLxkb/1/" rel="nofollow">https://jsfiddle.net/oldpig/zb4zLxkb/1/</a></p>
<h3 dir="auto">Steps to reproduce</h3>
<p dir="auto">Click any tab to switch</p>
<h3 dir="auto">What is Expected?</h3>
<p dir="auto">Tab switched, everything goes fine.</p>
<h3 dir="auto">What is actually happening?</h3>
<p dir="auto">There are warnings in console, multiple times each switch.</p>
<p dir="auto">I am aware that this warning is introduced in rc.5. But I am not sure what goes wrong.</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></p>
<p dir="auto">It seems impossible to navigate to some path and clear any named outlets in the process. Consider this code:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="this.router.navigate(['/', { outlets: { secondary: null } });"><pre class="notranslate"><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">router</span><span class="pl-kos">.</span><span class="pl-en">navigate</span><span class="pl-kos">(</span><span class="pl-kos">[</span><span class="pl-s">'/'</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">outlets</span>: <span class="pl-kos">{</span> <span class="pl-c1">secondary</span>: <span class="pl-c1">null</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span><span class="pl-kos"></span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">This does not remove the <code class="notranslate">(secondary:)</code> portion from the path. However this code does remove that segment:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="this.router.navigate([{ outlets: { secondary: null } });"><pre class="notranslate"><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">router</span><span class="pl-kos">.</span><span class="pl-en">navigate</span><span class="pl-kos">(</span><span class="pl-kos">[</span><span class="pl-kos">{</span> <span class="pl-c1">outlets</span>: <span class="pl-kos">{</span> <span class="pl-c1">secondary</span>: <span class="pl-c1">null</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span><span class="pl-kos"></span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">In addition <code class="notranslate">this.router.navigateByUrl('/')</code> also works.</p>
<p dir="auto"><strong>Expected behavior</strong></p>
<p dir="auto">The first code should also work and remove the secondary outlet segment from the path.</p>
<p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong></p>
<p dir="auto"><a href="http://plnkr.co/edit/hFsOdLLr2LCq8cJyOF6R?p=preview" rel="nofollow">http://plnkr.co/edit/hFsOdLLr2LCq8cJyOF6R?p=preview</a></p>
<p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong></p>
<p dir="auto">The current behavior looks erroneous. I believe there should be an <code class="notranslate">else</code> <a href="https://github.com/angular/angular/blob/master/packages/router/src/create_url_tree.ts#L225">here</a> which sets <code class="notranslate">children[outlet]</code> to <code class="notranslate">null</code> so it is not initialized later.</p>
<p dir="auto"><strong>Please tell us about your environment:</strong></p>
<ul dir="auto">
<li><strong>Angular version:</strong> 2.4.10</li>
</ul>
<p dir="auto">Code in master looks the same as in 2.4.10.</p>
<ul dir="auto">
<li><strong>Browser:</strong> [all | Chrome XX | Firefox XX | IE XX | Safari XX | Mobile Chrome XX | Android X.X Web Browser | iOS XX Safari | iOS XX UIWebView | iOS XX WKWebView ]</li>
</ul>
<p dir="auto">All browsers.</p>
<ul dir="auto">
<li><strong>Language:</strong> [all | TypeScript X.X | ES6/7 | ES5]<br>
I think it is a framework issue rather than a language one.</li>
<li><strong>Node (for AoT issues):</strong> <code class="notranslate">node --version</code> =</li>
</ul> | <p dir="auto"><strong>I'm submitting a ...</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[X] bug report"><pre class="notranslate"><code class="notranslate">[X] bug report
</code></pre></div>
<p dir="auto"><strong>Current behavior</strong></p>
<p dir="auto">I have some routes like:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const routes = [
{ path: "", component: HomeComponent, pathMatch: "full" },
{ path: "profile", component: ProfileComponent },
{ path: "menu", component: MenuComponent, outlet: "sidebar" },
];"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">routes</span> <span class="pl-c1">=</span> <span class="pl-kos">[</span>
<span class="pl-kos">{</span> <span class="pl-c1">path</span>: <span class="pl-s">""</span><span class="pl-kos">,</span> <span class="pl-c1">component</span>: <span class="pl-smi">HomeComponent</span><span class="pl-kos">,</span> <span class="pl-c1">pathMatch</span>: <span class="pl-s">"full"</span> <span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">{</span> <span class="pl-c1">path</span>: <span class="pl-s">"profile"</span><span class="pl-kos">,</span> <span class="pl-c1">component</span>: <span class="pl-smi">ProfileComponent</span> <span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">{</span> <span class="pl-c1">path</span>: <span class="pl-s">"menu"</span><span class="pl-kos">,</span> <span class="pl-c1">component</span>: <span class="pl-smi">MenuComponent</span><span class="pl-kos">,</span> <span class="pl-c1">outlet</span>: <span class="pl-s">"sidebar"</span> <span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">]</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">When the route <code class="notranslate">http://localhost/(sidebar:menu)</code> is open, then I'm able to remove the named outlet and go to <code class="notranslate">http://localhost/</code> by clicking an anchor like the following:</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<a [routerLink]="['', {outlets: {sidebar: null}}]">
Close
</a>"><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">a</span> <span class="pl-c1">[routerLink]</span>="<span class="pl-s">['', {outlets: {sidebar: null}}]</span>"<span class="pl-kos">></span>
Close
<span class="pl-kos"></</span><span class="pl-ent">a</span><span class="pl-kos">></span></pre></div>
<p dir="auto">What doesn't work is navigating away from the sidebar <strong>and also</strong> going to another route like <code class="notranslate">http://localhost/profile</code>.</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<a [routerLink]="['/profile', {outlets: {sidebar: null}}]">
Close
</a>"><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">a</span> <span class="pl-c1">[routerLink]</span>="<span class="pl-s">['/profile', {outlets: {sidebar: null}}]</span>"<span class="pl-kos">></span>
Close
<span class="pl-kos"></</span><span class="pl-ent">a</span><span class="pl-kos">></span></pre></div>
<p dir="auto">The link that is rendered is <code class="notranslate">http://localhost:3971/profile(sidebar:menu)</code></p>
<p dir="auto"><strong>Expected behavior</strong></p>
<p dir="auto">The link that should be rendered is <code class="notranslate">http://localhost:3971/profile</code>.</p>
<p dir="auto"><strong>Repro</strong></p>
<p dir="auto"><a href="https://github.com/tinchou/router-repro">https://github.com/tinchou/router-repro</a></p>
<p dir="auto"><strong>Please tell us about your environment:</strong></p>
<p dir="auto">Windows 10, Visual Studio 2017</p>
<ul dir="auto">
<li>
<p dir="auto"><strong>Angular version:</strong> 2.3.1 (didn't work with 2.1.0 either)</p>
</li>
<li>
<p dir="auto"><strong>Browser:</strong> all</p>
</li>
<li>
<p dir="auto"><strong>Language:</strong> TypeScript 2.0.10</p>
</li>
</ul> | 1 |
<p dir="auto">Starting with <a href="http://scicomp.stackexchange.com/questions/3229/quickly-permute-a-large-square-matrix-in-python-numpy" rel="nofollow">this SO question</a>, I arrived at take() to a in-place array permutation, however when the call is made with the "clip" argument (to avoid creation of a backup in case of exception) the function can be seen to duplicate rows/columns.</p>
<p dir="auto">Exact test code demonstrating this issue was provided by <a href="http://scicomp.stackexchange.com/users/1744/stefano-m" rel="nofollow">Stefano M</a> from the SO post comment stream, and appears below.</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy as np
print np.version.version
N = 10
# gen ref matrix and permutation
ref = np.arange(N*N)
ref.resize(N,N)
rr = range(N)
np.random.shuffle(rr)
arr = ref.copy()
res = (arr.take(rr,axis=0) == ref[rr,:]).all()
print "test take, not overwriting:", res
arr = ref.copy()
arr.take(rr,axis=0,out=arr,mode="raise")
print "test not-in-place take:", (arr == ref[rr,:]).all()
arr = ref.copy()
arr.take(rr,axis=0,out=arr,mode="clip")
res = (arr == ref[rr,:]).all()
print "test in-place take:", res
if not res:
print "rr", rr
print "arr", arr[:,0]
print "ref", ref[rr,0] "><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-k">print</span> <span class="pl-s1">np</span>.<span class="pl-s1">version</span>.<span class="pl-s1">version</span>
<span class="pl-v">N</span> <span class="pl-c1">=</span> <span class="pl-c1">10</span>
<span class="pl-c"># gen ref matrix and permutation</span>
<span class="pl-s1">ref</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">arange</span>(<span class="pl-v">N</span><span class="pl-c1">*</span><span class="pl-v">N</span>)
<span class="pl-s1">ref</span>.<span class="pl-en">resize</span>(<span class="pl-v">N</span>,<span class="pl-v">N</span>)
<span class="pl-s1">rr</span> <span class="pl-c1">=</span> <span class="pl-en">range</span>(<span class="pl-v">N</span>)
<span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">shuffle</span>(<span class="pl-s1">rr</span>)
<span class="pl-s1">arr</span> <span class="pl-c1">=</span> <span class="pl-s1">ref</span>.<span class="pl-en">copy</span>()
<span class="pl-s1">res</span> <span class="pl-c1">=</span> (<span class="pl-s1">arr</span>.<span class="pl-en">take</span>(<span class="pl-s1">rr</span>,<span class="pl-s1">axis</span><span class="pl-c1">=</span><span class="pl-c1">0</span>) <span class="pl-c1">==</span> <span class="pl-s1">ref</span>[<span class="pl-s1">rr</span>,:]).<span class="pl-en">all</span>()
<span class="pl-k">print</span> <span class="pl-s">"test take, not overwriting:"</span>, <span class="pl-s1">res</span>
<span class="pl-s1">arr</span> <span class="pl-c1">=</span> <span class="pl-s1">ref</span>.<span class="pl-en">copy</span>()
<span class="pl-s1">arr</span>.<span class="pl-en">take</span>(<span class="pl-s1">rr</span>,<span class="pl-s1">axis</span><span class="pl-c1">=</span><span class="pl-c1">0</span>,<span class="pl-s1">out</span><span class="pl-c1">=</span><span class="pl-s1">arr</span>,<span class="pl-s1">mode</span><span class="pl-c1">=</span><span class="pl-s">"raise"</span>)
<span class="pl-k">print</span> <span class="pl-s">"test not-in-place take:"</span>, (<span class="pl-s1">arr</span> <span class="pl-c1">==</span> <span class="pl-s1">ref</span>[<span class="pl-s1">rr</span>,:]).<span class="pl-en">all</span>()
<span class="pl-s1">arr</span> <span class="pl-c1">=</span> <span class="pl-s1">ref</span>.<span class="pl-en">copy</span>()
<span class="pl-s1">arr</span>.<span class="pl-en">take</span>(<span class="pl-s1">rr</span>,<span class="pl-s1">axis</span><span class="pl-c1">=</span><span class="pl-c1">0</span>,<span class="pl-s1">out</span><span class="pl-c1">=</span><span class="pl-s1">arr</span>,<span class="pl-s1">mode</span><span class="pl-c1">=</span><span class="pl-s">"clip"</span>)
<span class="pl-s1">res</span> <span class="pl-c1">=</span> (<span class="pl-s1">arr</span> <span class="pl-c1">==</span> <span class="pl-s1">ref</span>[<span class="pl-s1">rr</span>,:]).<span class="pl-en">all</span>()
<span class="pl-k">print</span> <span class="pl-s">"test in-place take:"</span>, <span class="pl-s1">res</span>
<span class="pl-k">if</span> <span class="pl-c1">not</span> <span class="pl-s1">res</span>:
<span class="pl-k">print</span> <span class="pl-s">"rr"</span>, <span class="pl-s1">rr</span>
<span class="pl-k">print</span> <span class="pl-s">"arr"</span>, <span class="pl-s1">arr</span>[:,<span class="pl-c1">0</span>]
<span class="pl-k">print</span> <span class="pl-s">"ref"</span>, <span class="pl-s1">ref</span>[<span class="pl-s1">rr</span>,<span class="pl-c1">0</span>] </pre></div>
<p dir="auto">The output is:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="1.8.0
test take, not overwriting: True
test not-in-place take: True
test in-place take: False
rr [7, 8, 6, 3, 9, 0, 5, 1, 2, 4]
arr [70 80 60 30 90 70 70 80 60 90]
ref [70 80 60 30 90 0 50 10 20 40]"><pre class="notranslate"><code class="notranslate">1.8.0
test take, not overwriting: True
test not-in-place take: True
test in-place take: False
rr [7, 8, 6, 3, 9, 0, 5, 1, 2, 4]
arr [70 80 60 30 90 70 70 80 60 90]
ref [70 80 60 30 90 0 50 10 20 40]
</code></pre></div>
<p dir="auto">Also tested in numpy 1.6.2. and 1.7.1, where it seems broken as well.</p> | <p dir="auto">EDITED to update with items from <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/eric-wieser/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/eric-wieser">@eric-wieser</a> and <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/shoyer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/shoyer">@shoyer</a>. Feel free to edit to add other items.</p>
<p dir="auto">A reminder of clean-up after <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="187577313" data-permission-text="Title is private" data-url="https://github.com/numpy/numpy/issues/8247" data-hovercard-type="pull_request" data-hovercard-url="/numpy/numpy/pull/8247/hovercard" href="https://github.com/numpy/numpy/pull/8247">#8247</a> that could most usefully be done:</p>
<ul class="contains-task-list">
<li class="task-list-item">
<p dir="auto"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Currently, arguments in ufuncs are normalized in <code class="notranslate">get_ufunc_arguments</code> (in <code class="notranslate">ufunc_object.c</code>), well after a check for an override is done; the latter code separately normalized arguments in <code class="notranslate">override.c</code>. Obviously, it would be better if only one of those was done (to the extend possible). As part of this, the type of exception raised should also be made consistent with python, i.e., <code class="notranslate">TypeError</code> for too many/too few arguments, things occurring both as positional and keyword arguments, etc.)</p>
</li>
<li class="task-list-item">
<p dir="auto"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> BUG: <code class="notranslate">__array_ufunc__</code> on arguments like <code class="notranslate">axis</code> would also override the ufunc (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="228170289" data-permission-text="Title is private" data-url="https://github.com/numpy/numpy/issues/9107" data-hovercard-type="issue" data-hovercard-url="/numpy/numpy/issues/9107/hovercard" href="https://github.com/numpy/numpy/issues/9107">#9107</a>).</p>
</li>
<li class="task-list-item">
<p dir="auto"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">np.dot</code> and <code class="notranslate">np.matmul</code> are no longer overridden, but it would be good to override <code class="notranslate">np.matmul</code> in particular (as it implements a binop). This would need (1) turn <code class="notranslate">np.matmul</code> into a generalized ufunc (or have it use a new gufunc, after prepending/appending of axes as appropriate); (2) use the same generalized ufunc where feasible inside <code class="notranslate">np.dot</code> (and <code class="notranslate">ndarray.dot</code>), so that the most common cases can be overridden (for other cases, we might want to error on the presence of <code class="notranslate">__array_ufunc__</code>).</p>
</li>
<li class="task-list-item">
<p dir="auto"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> (<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/eric-wieser/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/eric-wieser">@eric-wieser</a>) Set the <code class="notranslate">__name__</code> field of the generated <code class="notranslate">NDArrayOperatorsMixin</code> methods (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="224921025" data-permission-text="Title is private" data-url="https://github.com/numpy/numpy/issues/9012" data-hovercard-type="pull_request" data-hovercard-url="/numpy/numpy/pull/9012/hovercard" href="https://github.com/numpy/numpy/pull/9012">#9012</a>)</p>
</li>
<li class="task-list-item">
<p dir="auto"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> (<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/shoyer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/shoyer">@shoyer</a>) Need to switch ufunc overrides to always raise <code class="notranslate">TypeError</code> if any arguments set <code class="notranslate">__array_ufunc__ = None</code> (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="224903716" data-permission-text="Title is private" data-url="https://github.com/numpy/numpy/issues/9011" data-hovercard-type="issue" data-hovercard-url="/numpy/numpy/issues/9011/hovercard" href="https://github.com/numpy/numpy/issues/9011">#9011</a>)</p>
</li>
<li class="task-list-item">
<p dir="auto"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> (<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/shoyer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/shoyer">@shoyer</a>) Choose the recommended way of implementing binary ops (calling the ufunc directly, or calling <code class="notranslate">__array_ufunc__</code>), and clarify guidance in the NEP (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="225303570" data-permission-text="Title is private" data-url="https://github.com/numpy/numpy/issues/9027" data-hovercard-type="pull_request" data-hovercard-url="/numpy/numpy/pull/9027/hovercard" href="https://github.com/numpy/numpy/pull/9027">#9027</a>)</p>
</li>
<li class="task-list-item">
<p dir="auto"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> (<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/shoyer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/shoyer">@shoyer</a>) Backwards compatible mixin like NDArrayOperatorsMixin as a separate project (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="224981407" data-permission-text="Title is private" data-url="https://github.com/numpy/numpy/issues/9016" data-hovercard-type="issue" data-hovercard-url="/numpy/numpy/issues/9016/hovercard" href="https://github.com/numpy/numpy/issues/9016">#9016</a>).</p>
</li>
<li class="task-list-item">
<p dir="auto"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> (<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/shoyer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/shoyer">@shoyer</a>) BUG: no way to override matmul/@ if <code class="notranslate">__array_ufunc__</code> is set (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="225304528" data-permission-text="Title is private" data-url="https://github.com/numpy/numpy/issues/9028" data-hovercard-type="issue" data-hovercard-url="/numpy/numpy/issues/9028/hovercard" href="https://github.com/numpy/numpy/issues/9028">#9028</a>)</p>
</li>
<li class="task-list-item">
<p dir="auto"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> (<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mhvk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mhvk">@mhvk</a>) BUG: no way to override <code class="notranslate">__eq__</code> for structured <code class="notranslate">ndarray</code> (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="230230273" data-permission-text="Title is private" data-url="https://github.com/numpy/numpy/issues/9153" data-hovercard-type="issue" data-hovercard-url="/numpy/numpy/issues/9153/hovercard" href="https://github.com/numpy/numpy/issues/9153">#9153</a>)</p>
</li>
<li class="task-list-item">
<p dir="auto"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> ENH/MAINT: let <code class="notranslate">ndarray.__array_ufunc__</code> be the overall gateway to applying ufuncs on <code class="notranslate">ndarray</code>; that way, this function can just participate in the different trials of objects to see if they can handle the ufunc. As part of that, should they just turn subclasses into regular arrays (since those have had a chance anyway? see discussion in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="227439179" data-permission-text="Title is private" data-url="https://github.com/numpy/numpy/issues/9079" data-hovercard-type="issue" data-hovercard-url="/numpy/numpy/issues/9079/hovercard" href="https://github.com/numpy/numpy/issues/9079">#9079</a>)</p>
</li>
<li class="task-list-item">
<p dir="auto"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> (<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/shoyer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/shoyer">@shoyer</a>) Document the table of ndarray arithmetic special methods and corresponding ufuncs in the proper docs (e.g., <code class="notranslate">reference/array.classes.rst</code>, not the NEP).</p>
</li>
</ul> | 0 |
<p dir="auto">Please:</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Check for duplicate issues.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Provide a complete example of how to reproduce the bug, wrapped in triple backticks like this:</li>
</ul>
<p dir="auto">I use singularity to build an image and follow the README.md using the command like below.</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="./build_rocm.sh"><pre class="notranslate">./build_rocm.sh</pre></div>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> If applicable, include full error messages/tracebacks.<br>
these are all the outputs.</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Singularity> ./build_rocm.sh
+ ROCM_TF_FORK_REPO=https://github.com/ROCmSoftwarePlatform/tensorflow-upstream
+ ROCM_TF_FORK_BRANCH=develop-upstream
+ ROCM_PATH=/opt/rocm/
+ python3 ../build.py --enable_rocm --rocm_path=/opt/rocm/ --bazel_options=--override_repository=org_tensorflow=/tmp/tensorflow-upstream
_ _ __ __
| | / \ \ \/ /
_ | |/ _ \ \ /
| |_| / ___ \/ \
\___/_/ \/_/\_\
Bazel binary path: ./bazel-5.1.0-linux-x86_64
Bazel version: 5.1.0
Python binary path: /opt/conda/bin/python3
Python version: 3.9
NumPy version: 1.20.3
MKL-DNN enabled: yes
Target CPU: x86_64
Target CPU features: release
CUDA enabled: no
TPU enabled: no
ROCm enabled: yes
ROCm toolkit path: /opt/rocm/
ROCm amdgpu targets: gfx900,gfx906,gfx908,gfx90a,gfx1030
Building XLA and installing it in the jaxlib source tree...
./bazel-5.1.0-linux-x86_64 run --verbose_failures=true --override_repository=org_tensorflow=/tmp/tensorflow-upstream --config=avx_posix --config=mkl_open_source_only --config=rocm :build_wheel -- --output_path=/home/code/jax/build/rocm/dist --cpu=x86_64
INFO: Options provided by the client:
Inherited 'common' options: --isatty=0 --terminal_columns=80
INFO: Reading rc options for 'run' from /home/code/jax/.bazelrc:
Inherited 'common' options: --experimental_repo_remote_exec
INFO: Reading rc options for 'run' from /home/code/jax/.bazelrc:
Inherited 'build' options: --apple_platform_type=macos --macos_minimum_os=10.9 --announce_rc --define open_source_build=true --spawn_strategy=standalone --enable_platform_specific_config --experimental_cc_shared_library --define=no_aws_support=true --define=no_gcp_support=true --define=no_hdfs_support=true --define=no_kafka_support=true --define=no_ignite_support=true --define=grpc_no_ares=true -c opt --config=short_logs --copt=-DMLIR_PYTHON_PACKAGE_PREFIX=jaxlib.mlir.
INFO: Reading rc options for 'run' from /home/code/jax/.jax_configure.bazelrc:
Inherited 'build' options: --strategy=Genrule=standalone --repo_env PYTHON_BIN_PATH=/opt/conda/bin/python3 --action_env=PYENV_ROOT --python_path=/opt/conda/bin/python3 --action_env ROCM_PATH=/opt/rocm/ --distinct_host_configuration=false
INFO: Found applicable config definition build:short_logs in file /home/code/jax/.bazelrc: --output_filter=DONT_MATCH_ANYTHING
INFO: Found applicable config definition build:avx_posix in file /home/code/jax/.bazelrc: --copt=-mavx --host_copt=-mavx
INFO: Found applicable config definition build:mkl_open_source_only in file /home/code/jax/.bazelrc: --define=tensorflow_mkldnn_contraction_kernel=1
INFO: Found applicable config definition build:rocm in file /home/code/jax/.bazelrc: --crosstool_top=@local_config_rocm//crosstool:toolchain --define=using_rocm=true --define=using_rocm_hipcc=true --define=xla_python_enable_gpu=true --repo_env TF_NEED_ROCM=1 --action_env TF_ROCM_AMDGPU_TARGETS=gfx900,gfx906,gfx908
INFO: Found applicable config definition build:rocm in file /home/code/jax/.jax_configure.bazelrc: --action_env TF_ROCM_AMDGPU_TARGETS=gfx900,gfx906,gfx908,gfx90a,gfx1030
INFO: Found applicable config definition build:linux in file /home/code/jax/.bazelrc: --config=posix --copt=-Wno-stringop-truncation --copt=-Wno-array-parameter
INFO: Found applicable config definition build:posix in file /home/code/jax/.bazelrc: --copt=-fvisibility=hidden --copt=-Wno-sign-compare --cxxopt=-std=c++14 --host_cxxopt=-std=c++14
Loading:
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
WARNING: Download from https://storage.googleapis.com/mirror.tensorflow.org/github.com/tensorflow/runtime/archive/2123408fb43a5c4afdf87dafd67117d9c0ff70cd.tar.gz failed: class java.io.FileNotFoundException GET returned 404 Not Found
Loading: 0 packages loaded
Loading: 0 packages loaded
INFO: Repository local_config_rocm instantiated at:
/home/code/jax/WORKSPACE:31:14: in <toplevel>
/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/tensorflow/workspace2.bzl:869:19: in workspace
/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/tensorflow/workspace2.bzl:101:19: in _tf_toolchains
Repository rule rocm_configure defined at:
/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/third_party/gpus/rocm_configure.bzl:843:33: in <toplevel>
ERROR: An error occurred during the fetch of repository 'local_config_rocm':
Traceback (most recent call last):
File "/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/third_party/gpus/rocm_configure.bzl", line 824, column 38, in _rocm_autoconf_impl
_create_local_rocm_repository(repository_ctx)
File "/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/third_party/gpus/rocm_configure.bzl", line 550, column 35, in _create_local_rocm_repository
rocm_config = _get_rocm_config(repository_ctx, bash_bin, find_rocm_config_script)
File "/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/third_party/gpus/rocm_configure.bzl", line 398, column 30, in _get_rocm_config
config = find_rocm_config(repository_ctx, find_rocm_config_script)
File "/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/third_party/gpus/rocm_configure.bzl", line 376, column 41, in find_rocm_config
exec_result = _exec_find_rocm_config(repository_ctx, script_path)
File "/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/third_party/gpus/rocm_configure.bzl", line 372, column 19, in _exec_find_rocm_config
return execute(repository_ctx, [python_bin, "-c", decompress_and_execute_cmd])
File "/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/third_party/remote_config/common.bzl", line 230, column 13, in execute
fail(
Error in fail: Repository command failed
ERROR: ROCm version file not found in ['include/rocm-core/rocm_version.h', 'include/rocm_version.h']
ERROR: /home/code/jax/WORKSPACE:31:14: fetching rocm_configure rule //external:local_config_rocm: Traceback (most recent call last):
File "/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/third_party/gpus/rocm_configure.bzl", line 824, column 38, in _rocm_autoconf_impl
_create_local_rocm_repository(repository_ctx)
File "/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/third_party/gpus/rocm_configure.bzl", line 550, column 35, in _create_local_rocm_repository
rocm_config = _get_rocm_config(repository_ctx, bash_bin, find_rocm_config_script)
File "/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/third_party/gpus/rocm_configure.bzl", line 398, column 30, in _get_rocm_config
config = find_rocm_config(repository_ctx, find_rocm_config_script)
File "/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/third_party/gpus/rocm_configure.bzl", line 376, column 41, in find_rocm_config
exec_result = _exec_find_rocm_config(repository_ctx, script_path)
File "/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/third_party/gpus/rocm_configure.bzl", line 372, column 19, in _exec_find_rocm_config
return execute(repository_ctx, [python_bin, "-c", decompress_and_execute_cmd])
File "/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/third_party/remote_config/common.bzl", line 230, column 13, in execute
fail(
Error in fail: Repository command failed
ERROR: ROCm version file not found in ['include/rocm-core/rocm_version.h', 'include/rocm_version.h']
INFO: Repository bazel_skylib instantiated at:
/home/code/jax/WORKSPACE:28:14: in <toplevel>
/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/tensorflow/workspace3.bzl:21:17: in workspace
Repository rule http_archive defined at:
/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/bazel_tools/tools/build_defs/repo/http.bzl:353:31: in <toplevel>
ERROR: Skipping ':build_wheel': no such package '@local_config_rocm//rocm': Repository command failed
ERROR: ROCm version file not found in ['include/rocm-core/rocm_version.h', 'include/rocm_version.h']
WARNING: Target pattern parsing failed.
ERROR: no such package '@local_config_rocm//rocm': Repository command failed
ERROR: ROCm version file not found in ['include/rocm-core/rocm_version.h', 'include/rocm_version.h']
INFO: Elapsed time: 77.870s
INFO: 0 processes.
FAILED: Build did NOT complete successfully (0 packages loaded)
ERROR: Build failed. Not running target
FAILED: Build did NOT complete successfully (0 packages loaded)
b''
Traceback (most recent call last):
File "/home/code/jax/build/rocm/../build.py", line 527, in <module>
main()
File "/home/code/jax/build/rocm/../build.py", line 522, in main
shell(command)
File "/home/code/jax/build/rocm/../build.py", line 53, in shell
output = subprocess.check_output(cmd)
File "/opt/conda/lib/python3.9/subprocess.py", line 424, in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
File "/opt/conda/lib/python3.9/subprocess.py", line 528, in run
raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['./bazel-5.1.0-linux-x86_64', 'run', '--verbose_failures=true', '--override_repository=org_tensorflow=/tmp/tensorflow-upstream', '--config=avx_posix', '--config=mkl_open_source_only', '--config=rocm', ':build_wheel', '--', '--output_path=/home/code/jax/build/rocm/dist', '--cpu=x86_64']' returned non-zero exit status 1."><pre class="notranslate"><code class="notranslate">Singularity> ./build_rocm.sh
+ ROCM_TF_FORK_REPO=https://github.com/ROCmSoftwarePlatform/tensorflow-upstream
+ ROCM_TF_FORK_BRANCH=develop-upstream
+ ROCM_PATH=/opt/rocm/
+ python3 ../build.py --enable_rocm --rocm_path=/opt/rocm/ --bazel_options=--override_repository=org_tensorflow=/tmp/tensorflow-upstream
_ _ __ __
| | / \ \ \/ /
_ | |/ _ \ \ /
| |_| / ___ \/ \
\___/_/ \/_/\_\
Bazel binary path: ./bazel-5.1.0-linux-x86_64
Bazel version: 5.1.0
Python binary path: /opt/conda/bin/python3
Python version: 3.9
NumPy version: 1.20.3
MKL-DNN enabled: yes
Target CPU: x86_64
Target CPU features: release
CUDA enabled: no
TPU enabled: no
ROCm enabled: yes
ROCm toolkit path: /opt/rocm/
ROCm amdgpu targets: gfx900,gfx906,gfx908,gfx90a,gfx1030
Building XLA and installing it in the jaxlib source tree...
./bazel-5.1.0-linux-x86_64 run --verbose_failures=true --override_repository=org_tensorflow=/tmp/tensorflow-upstream --config=avx_posix --config=mkl_open_source_only --config=rocm :build_wheel -- --output_path=/home/code/jax/build/rocm/dist --cpu=x86_64
INFO: Options provided by the client:
Inherited 'common' options: --isatty=0 --terminal_columns=80
INFO: Reading rc options for 'run' from /home/code/jax/.bazelrc:
Inherited 'common' options: --experimental_repo_remote_exec
INFO: Reading rc options for 'run' from /home/code/jax/.bazelrc:
Inherited 'build' options: --apple_platform_type=macos --macos_minimum_os=10.9 --announce_rc --define open_source_build=true --spawn_strategy=standalone --enable_platform_specific_config --experimental_cc_shared_library --define=no_aws_support=true --define=no_gcp_support=true --define=no_hdfs_support=true --define=no_kafka_support=true --define=no_ignite_support=true --define=grpc_no_ares=true -c opt --config=short_logs --copt=-DMLIR_PYTHON_PACKAGE_PREFIX=jaxlib.mlir.
INFO: Reading rc options for 'run' from /home/code/jax/.jax_configure.bazelrc:
Inherited 'build' options: --strategy=Genrule=standalone --repo_env PYTHON_BIN_PATH=/opt/conda/bin/python3 --action_env=PYENV_ROOT --python_path=/opt/conda/bin/python3 --action_env ROCM_PATH=/opt/rocm/ --distinct_host_configuration=false
INFO: Found applicable config definition build:short_logs in file /home/code/jax/.bazelrc: --output_filter=DONT_MATCH_ANYTHING
INFO: Found applicable config definition build:avx_posix in file /home/code/jax/.bazelrc: --copt=-mavx --host_copt=-mavx
INFO: Found applicable config definition build:mkl_open_source_only in file /home/code/jax/.bazelrc: --define=tensorflow_mkldnn_contraction_kernel=1
INFO: Found applicable config definition build:rocm in file /home/code/jax/.bazelrc: --crosstool_top=@local_config_rocm//crosstool:toolchain --define=using_rocm=true --define=using_rocm_hipcc=true --define=xla_python_enable_gpu=true --repo_env TF_NEED_ROCM=1 --action_env TF_ROCM_AMDGPU_TARGETS=gfx900,gfx906,gfx908
INFO: Found applicable config definition build:rocm in file /home/code/jax/.jax_configure.bazelrc: --action_env TF_ROCM_AMDGPU_TARGETS=gfx900,gfx906,gfx908,gfx90a,gfx1030
INFO: Found applicable config definition build:linux in file /home/code/jax/.bazelrc: --config=posix --copt=-Wno-stringop-truncation --copt=-Wno-array-parameter
INFO: Found applicable config definition build:posix in file /home/code/jax/.bazelrc: --copt=-fvisibility=hidden --copt=-Wno-sign-compare --cxxopt=-std=c++14 --host_cxxopt=-std=c++14
Loading:
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
Loading: 0 packages loaded
WARNING: Download from https://storage.googleapis.com/mirror.tensorflow.org/github.com/tensorflow/runtime/archive/2123408fb43a5c4afdf87dafd67117d9c0ff70cd.tar.gz failed: class java.io.FileNotFoundException GET returned 404 Not Found
Loading: 0 packages loaded
Loading: 0 packages loaded
INFO: Repository local_config_rocm instantiated at:
/home/code/jax/WORKSPACE:31:14: in <toplevel>
/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/tensorflow/workspace2.bzl:869:19: in workspace
/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/tensorflow/workspace2.bzl:101:19: in _tf_toolchains
Repository rule rocm_configure defined at:
/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/third_party/gpus/rocm_configure.bzl:843:33: in <toplevel>
ERROR: An error occurred during the fetch of repository 'local_config_rocm':
Traceback (most recent call last):
File "/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/third_party/gpus/rocm_configure.bzl", line 824, column 38, in _rocm_autoconf_impl
_create_local_rocm_repository(repository_ctx)
File "/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/third_party/gpus/rocm_configure.bzl", line 550, column 35, in _create_local_rocm_repository
rocm_config = _get_rocm_config(repository_ctx, bash_bin, find_rocm_config_script)
File "/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/third_party/gpus/rocm_configure.bzl", line 398, column 30, in _get_rocm_config
config = find_rocm_config(repository_ctx, find_rocm_config_script)
File "/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/third_party/gpus/rocm_configure.bzl", line 376, column 41, in find_rocm_config
exec_result = _exec_find_rocm_config(repository_ctx, script_path)
File "/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/third_party/gpus/rocm_configure.bzl", line 372, column 19, in _exec_find_rocm_config
return execute(repository_ctx, [python_bin, "-c", decompress_and_execute_cmd])
File "/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/third_party/remote_config/common.bzl", line 230, column 13, in execute
fail(
Error in fail: Repository command failed
ERROR: ROCm version file not found in ['include/rocm-core/rocm_version.h', 'include/rocm_version.h']
ERROR: /home/code/jax/WORKSPACE:31:14: fetching rocm_configure rule //external:local_config_rocm: Traceback (most recent call last):
File "/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/third_party/gpus/rocm_configure.bzl", line 824, column 38, in _rocm_autoconf_impl
_create_local_rocm_repository(repository_ctx)
File "/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/third_party/gpus/rocm_configure.bzl", line 550, column 35, in _create_local_rocm_repository
rocm_config = _get_rocm_config(repository_ctx, bash_bin, find_rocm_config_script)
File "/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/third_party/gpus/rocm_configure.bzl", line 398, column 30, in _get_rocm_config
config = find_rocm_config(repository_ctx, find_rocm_config_script)
File "/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/third_party/gpus/rocm_configure.bzl", line 376, column 41, in find_rocm_config
exec_result = _exec_find_rocm_config(repository_ctx, script_path)
File "/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/third_party/gpus/rocm_configure.bzl", line 372, column 19, in _exec_find_rocm_config
return execute(repository_ctx, [python_bin, "-c", decompress_and_execute_cmd])
File "/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/third_party/remote_config/common.bzl", line 230, column 13, in execute
fail(
Error in fail: Repository command failed
ERROR: ROCm version file not found in ['include/rocm-core/rocm_version.h', 'include/rocm_version.h']
INFO: Repository bazel_skylib instantiated at:
/home/code/jax/WORKSPACE:28:14: in <toplevel>
/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/org_tensorflow/tensorflow/workspace3.bzl:21:17: in workspace
Repository rule http_archive defined at:
/root/.cache/bazel/_bazel_root/7777a22c05c38dcb5674638712ab6fae/external/bazel_tools/tools/build_defs/repo/http.bzl:353:31: in <toplevel>
ERROR: Skipping ':build_wheel': no such package '@local_config_rocm//rocm': Repository command failed
ERROR: ROCm version file not found in ['include/rocm-core/rocm_version.h', 'include/rocm_version.h']
WARNING: Target pattern parsing failed.
ERROR: no such package '@local_config_rocm//rocm': Repository command failed
ERROR: ROCm version file not found in ['include/rocm-core/rocm_version.h', 'include/rocm_version.h']
INFO: Elapsed time: 77.870s
INFO: 0 processes.
FAILED: Build did NOT complete successfully (0 packages loaded)
ERROR: Build failed. Not running target
FAILED: Build did NOT complete successfully (0 packages loaded)
b''
Traceback (most recent call last):
File "/home/code/jax/build/rocm/../build.py", line 527, in <module>
main()
File "/home/code/jax/build/rocm/../build.py", line 522, in main
shell(command)
File "/home/code/jax/build/rocm/../build.py", line 53, in shell
output = subprocess.check_output(cmd)
File "/opt/conda/lib/python3.9/subprocess.py", line 424, in check_output
return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
File "/opt/conda/lib/python3.9/subprocess.py", line 528, in run
raise CalledProcessError(retcode, process.args,
subprocess.CalledProcessError: Command '['./bazel-5.1.0-linux-x86_64', 'run', '--verbose_failures=true', '--override_repository=org_tensorflow=/tmp/tensorflow-upstream', '--config=avx_posix', '--config=mkl_open_source_only', '--config=rocm', ':build_wheel', '--', '--output_path=/home/code/jax/build/rocm/dist', '--cpu=x86_64']' returned non-zero exit status 1.
</code></pre></div> | <p dir="auto">Hello,<br>
After discussion <a href="https://github.com/google/jax/discussions/15204" data-hovercard-type="discussion" data-hovercard-url="/google/jax/discussions/15204/hovercard">#15204</a></p>
<p dir="auto">Here is a code to deal with the convolution using FFT of two 2D real arrays. It is mostly inspired from the <code class="notranslate">scipy.fftconvolve</code>function. One use-case & test of this function is available on Colab <a href="https://colab.research.google.com/drive/1Ze7nxlQQc05FT_bt1YuxX7PjjYBmBe17?usp=sharing" rel="nofollow">HERE</a> with the JAX 0.4.6 version (this is the current one at least today). For sure my code is not the best one. Feel free to improve it.</p>
<ul dir="auto">
<li>I do nit know if the second array in2 can be smaller in size than the first one</li>
<li>for sure the complex-complex case would need some adaptation</li>
<li>finally the <code class="notranslate">next_fast_len</code> available in scipy would improve the computation of the "good" FFT size.</li>
</ul>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="@jax.jit
def convolve2r(in1,in2):
# suppose
# in1 = jnp.asarray(x1)
# in2 = jnp.asarray(x2)
# "assert" in1.ndim == in2.ndim == 2
# "assert" in1.size == in2.size
# "assert" in1.dtype.kind == 'f' and in2.dtype.kind == "f"
axes = range(in1.ndim)
s1 = in1.shape
s2 = in2.shape
shape = [s1[i] + s2[i] -1 for i in range(in1.ndim)]
# crude next_fast_len equivalent with just power of 2
fshape = 2**np.ceil(np.log2(np.array(shape))).astype('uint16')
fslice = tuple([slice(sz) for sz in shape])
sp1 = jnp.fft.fftn(in1, fshape, axes=axes)
sp2 = jnp.fft.fftn(in2, fshape, axes=axes)
conv = jnp.fft.irfftn(sp1 * sp2, fshape, axes=axes)
conv = conv[tuple(map(slice, shape))] #conv = jax.lax.slice(conv,(0,0),(shape))
def _centered(arr, newshape):
# Return the center newshape portion of the array.
newshape = np.asarray(newshape)
currshape = np.array(arr.shape)
startind = (currshape - newshape) // 2
endind = startind + newshape
myslice = [slice(startind[k], endind[k]) for k in range(len(endind))]
return arr[tuple(myslice)]
return _centered(conv, s1)"><pre class="notranslate"><span class="pl-en">@<span class="pl-s1">jax</span>.<span class="pl-s1">jit</span></span>
<span class="pl-k">def</span> <span class="pl-en">convolve2r</span>(<span class="pl-s1">in1</span>,<span class="pl-s1">in2</span>):
<span class="pl-c"># suppose</span>
<span class="pl-c"># in1 = jnp.asarray(x1)</span>
<span class="pl-c"># in2 = jnp.asarray(x2)</span>
<span class="pl-c"># "assert" in1.ndim == in2.ndim == 2</span>
<span class="pl-c"># "assert" in1.size == in2.size</span>
<span class="pl-c"># "assert" in1.dtype.kind == 'f' and in2.dtype.kind == "f"</span>
<span class="pl-s1">axes</span> <span class="pl-c1">=</span> <span class="pl-en">range</span>(<span class="pl-s1">in1</span>.<span class="pl-s1">ndim</span>)
<span class="pl-s1">s1</span> <span class="pl-c1">=</span> <span class="pl-s1">in1</span>.<span class="pl-s1">shape</span>
<span class="pl-s1">s2</span> <span class="pl-c1">=</span> <span class="pl-s1">in2</span>.<span class="pl-s1">shape</span>
<span class="pl-s1">shape</span> <span class="pl-c1">=</span> [<span class="pl-s1">s1</span>[<span class="pl-s1">i</span>] <span class="pl-c1">+</span> <span class="pl-s1">s2</span>[<span class="pl-s1">i</span>] <span class="pl-c1">-</span><span class="pl-c1">1</span> <span class="pl-k">for</span> <span class="pl-s1">i</span> <span class="pl-c1">in</span> <span class="pl-en">range</span>(<span class="pl-s1">in1</span>.<span class="pl-s1">ndim</span>)]
<span class="pl-c"># crude next_fast_len equivalent with just power of 2</span>
<span class="pl-s1">fshape</span> <span class="pl-c1">=</span> <span class="pl-c1">2</span><span class="pl-c1">**</span><span class="pl-s1">np</span>.<span class="pl-en">ceil</span>(<span class="pl-s1">np</span>.<span class="pl-en">log2</span>(<span class="pl-s1">np</span>.<span class="pl-en">array</span>(<span class="pl-s1">shape</span>))).<span class="pl-en">astype</span>(<span class="pl-s">'uint16'</span>)
<span class="pl-s1">fslice</span> <span class="pl-c1">=</span> <span class="pl-en">tuple</span>([<span class="pl-en">slice</span>(<span class="pl-s1">sz</span>) <span class="pl-k">for</span> <span class="pl-s1">sz</span> <span class="pl-c1">in</span> <span class="pl-s1">shape</span>])
<span class="pl-s1">sp1</span> <span class="pl-c1">=</span> <span class="pl-s1">jnp</span>.<span class="pl-s1">fft</span>.<span class="pl-en">fftn</span>(<span class="pl-s1">in1</span>, <span class="pl-s1">fshape</span>, <span class="pl-s1">axes</span><span class="pl-c1">=</span><span class="pl-s1">axes</span>)
<span class="pl-s1">sp2</span> <span class="pl-c1">=</span> <span class="pl-s1">jnp</span>.<span class="pl-s1">fft</span>.<span class="pl-en">fftn</span>(<span class="pl-s1">in2</span>, <span class="pl-s1">fshape</span>, <span class="pl-s1">axes</span><span class="pl-c1">=</span><span class="pl-s1">axes</span>)
<span class="pl-s1">conv</span> <span class="pl-c1">=</span> <span class="pl-s1">jnp</span>.<span class="pl-s1">fft</span>.<span class="pl-en">irfftn</span>(<span class="pl-s1">sp1</span> <span class="pl-c1">*</span> <span class="pl-s1">sp2</span>, <span class="pl-s1">fshape</span>, <span class="pl-s1">axes</span><span class="pl-c1">=</span><span class="pl-s1">axes</span>)
<span class="pl-s1">conv</span> <span class="pl-c1">=</span> <span class="pl-s1">conv</span>[<span class="pl-en">tuple</span>(<span class="pl-en">map</span>(<span class="pl-s1">slice</span>, <span class="pl-s1">shape</span>))] <span class="pl-c">#conv = jax.lax.slice(conv,(0,0),(shape))</span>
<span class="pl-k">def</span> <span class="pl-en">_centered</span>(<span class="pl-s1">arr</span>, <span class="pl-s1">newshape</span>):
<span class="pl-c"># Return the center newshape portion of the array.</span>
<span class="pl-s1">newshape</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">asarray</span>(<span class="pl-s1">newshape</span>)
<span class="pl-s1">currshape</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">array</span>(<span class="pl-s1">arr</span>.<span class="pl-s1">shape</span>)
<span class="pl-s1">startind</span> <span class="pl-c1">=</span> (<span class="pl-s1">currshape</span> <span class="pl-c1">-</span> <span class="pl-s1">newshape</span>) <span class="pl-c1">//</span> <span class="pl-c1">2</span>
<span class="pl-s1">endind</span> <span class="pl-c1">=</span> <span class="pl-s1">startind</span> <span class="pl-c1">+</span> <span class="pl-s1">newshape</span>
<span class="pl-s1">myslice</span> <span class="pl-c1">=</span> [<span class="pl-en">slice</span>(<span class="pl-s1">startind</span>[<span class="pl-s1">k</span>], <span class="pl-s1">endind</span>[<span class="pl-s1">k</span>]) <span class="pl-k">for</span> <span class="pl-s1">k</span> <span class="pl-c1">in</span> <span class="pl-en">range</span>(<span class="pl-en">len</span>(<span class="pl-s1">endind</span>))]
<span class="pl-k">return</span> <span class="pl-s1">arr</span>[<span class="pl-en">tuple</span>(<span class="pl-s1">myslice</span>)]
<span class="pl-k">return</span> <span class="pl-en">_centered</span>(<span class="pl-s1">conv</span>, <span class="pl-s1">s1</span>)</pre></div>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Check for duplicate requests.</li>
</ul> | 0 |
<ul dir="auto">
<li>VSCode Version:1.2</li>
<li>OS Version: Ubunu 14.04</li>
</ul>
<p dir="auto">Steps to Reproduce:</p>
<ol dir="auto">
<li>Open vscode</li>
<li>Open ctrl+`</li>
<li>Try pasting a copied word to terminal by ctrl+shift+v</li>
</ol>
<p dir="auto">I can give more examples in case.</p> | <p dir="auto">Integrated terminal master issue: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="117735786" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/143" data-hovercard-type="issue" data-hovercard-url="/microsoft/vscode/issues/143/hovercard" href="https://github.com/microsoft/vscode/issues/143">#143</a></p>
<p dir="auto">Might need to use custom keybindings, <kbd>ctrl</kbd>+<kbd>c</kbd> terminates a process. Also it's probably not best to hijack <kbd>ctrl</kbd>+<kbd>shift</kbd>+<kbd>c</kbd> from open in new terminal.</p> | 1 |
<p dir="auto"><strong>Do you want to request a <em>feature</em> or report a <em>bug</em>?</strong><br>
Bug</p>
<p dir="auto"><strong>What is the current behavior?</strong><br>
Two identical sub-dependencies are being included twice in the build.</p>
<p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce.</strong><br>
<code class="notranslate">projectA</code> depends on <code class="notranslate">libA@^2.0.0</code>, <code class="notranslate">depA</code> and <code class="notranslate">depB</code>.<br>
<code class="notranslate">depA</code> and <code class="notranslate">depB</code> both depend on <code class="notranslate">libA@^1.0.0</code></p>
<p dir="auto">This results in a directory structure like this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="projectA
- node_modules
-- libA
-- depA
---- node_modules/libA
-- depB
---- node_modules/libA "><pre class="notranslate"><code class="notranslate">projectA
- node_modules
-- libA
-- depA
---- node_modules/libA
-- depB
---- node_modules/libA
</code></pre></div>
<p dir="auto">When the project is built, included in the bundle are:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[email protected]
depA
depB
[email protected]
[email protected]"><pre class="notranslate"><code class="notranslate">[email protected]
depA
depB
[email protected]
[email protected]
</code></pre></div>
<p dir="auto"><strong>What is the expected behavior?</strong><br>
The included modules should be:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[email protected]
depA
depB
[email protected]"><pre class="notranslate"><code class="notranslate">[email protected]
depA
depB
[email protected]
</code></pre></div>
<p dir="auto"><strong>Please mention other relevant information such as the browser version, Node.js version, webpack version and Operating System.</strong><br>
<code class="notranslate">[email protected]</code></p>
<p dir="auto">I have run <code class="notranslate">npm dedupe</code> but it can't fix the problem. This is understandable, because npm doesn't have anywhere to "put" this lower-version dependency that is shared by both <code class="notranslate">depA</code> and <code class="notranslate">depB</code>. Previously I believe this was solved with the <code class="notranslate">DedupePlugin</code> which has since been turned into a no-op.</p> | <h1 dir="auto">Bug report</h1>
<p dir="auto"><strong>What is the current behavior?</strong><br>
<a href="https://nvd.nist.gov/vuln/detail/CVE-2021-27290" rel="nofollow">CVE-2021-27290</a></p>
<blockquote>
<p dir="auto">ssri 5.2.2-8.0.0, fixed in 8.0.1, processes SRIs using a regular expression which is vulnerable to a denial of service. Malicious SRIs could take an extremely long time to process, leading to denial of service. This issue only affects consumers using the strict option.</p>
</blockquote>
<p dir="auto">The fix is to bump <code class="notranslate">ssri</code> to <code class="notranslate">8.0.1</code>.</p>
<p dir="auto">The dependency path to <code class="notranslate">ssri</code> is <code class="notranslate">webpack</code> > <code class="notranslate">terser-webpack-plugin</code> > <code class="notranslate">cacache</code> > <code class="notranslate">ssri</code></p>
<p dir="auto">I've reported this issue in <code class="notranslate">terser-webpack-plugin</code> at <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="834799392" data-permission-text="Title is private" data-url="https://github.com/webpack-contrib/terser-webpack-plugin/issues/388" data-hovercard-type="issue" data-hovercard-url="/webpack-contrib/terser-webpack-plugin/issues/388/hovercard" href="https://github.com/webpack-contrib/terser-webpack-plugin/issues/388">webpack-contrib/terser-webpack-plugin#388</a></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><br>
There shouldn't be any CVE's found when evaluating Webpack :)</p>
<p dir="auto"><strong>Other relevant information:</strong><br>
webpack version: <code class="notranslate">4.46.0</code><br>
Node.js version: all<br>
Operating System: all</p> | 0 |
<p dir="auto">Hi, afraid I'm rather a newbie with Flutter. This may be a bug. Could well be I'm borking something though.<br>
Best,<br>
Andy.</p>
<h2 dir="auto">Steps to Reproduce</h2>
<p dir="auto">Here is a gist demonstrating the bug <a href="https://gist.github.com/andytwoods/13c56c196bf50558f1a6979b983c326b">https://gist.github.com/andytwoods/13c56c196bf50558f1a6979b983c326b</a></p>
<p dir="auto">Dynamically adding a new panel with isExpanded = true, I don't get the expected gap.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/595166/48301558-cc3e1880-e4e7-11e8-9986-85b044101462.png"><img src="https://user-images.githubusercontent.com/595166/48301558-cc3e1880-e4e7-11e8-9986-85b044101462.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">Selecting minify, leads to this bug:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/595166/48301570-fb548a00-e4e7-11e8-88d5-3e3e3fc04cfd.png"><img src="https://user-images.githubusercontent.com/595166/48301570-fb548a00-e4e7-11e8-88d5-3e3e3fc04cfd.png" alt="image" style="max-width: 100%;"></a></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="C:\Users\andytwoods\IdeaProjects\gear_log>flutter doctor -v
[√] Flutter (Channel unknown, v0.9.4, on Microsoft Windows [Version 10.0.17134.345], locale en-GB)
• Flutter version 0.9.4 at C:\src\flutter
• Framework revision f37c235c32 (7 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.3)
• Android SDK at C:\Users\andytwoods\AppData\Local\Android\Sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-28, build-tools 28.0.3
• ANDROID_HOME = C:\Users\andytwoods\AppData\Local\Android\Sdk
• Java binary at: C:\Program Files\Android\Android Studio\jre\bin\java
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06)
• All Android licenses accepted.
[√] Android Studio (version 3.2)
• Android Studio at C:\Program Files\Android\Android Studio
X Flutter plugin not installed; this adds Flutter specific functionality.
X Dart plugin not installed; this adds Dart specific functionality.
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06)
[√] IntelliJ IDEA Ultimate Edition (version 2018.2)
• IntelliJ at C:\Program Files\JetBrains\IntelliJ IDEA 2018.2.4
• Flutter plugin version 29.1.3
• Dart plugin version 182.4999
[√] Connected devices (1 available)
• Android SDK built for x86 64 • emulator-5554 • android-x64 • Android 9 (API 28) (emulator)
• No issues found!"><pre class="notranslate"><code class="notranslate">C:\Users\andytwoods\IdeaProjects\gear_log>flutter doctor -v
[√] Flutter (Channel unknown, v0.9.4, on Microsoft Windows [Version 10.0.17134.345], locale en-GB)
• Flutter version 0.9.4 at C:\src\flutter
• Framework revision f37c235c32 (7 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.3)
• Android SDK at C:\Users\andytwoods\AppData\Local\Android\Sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-28, build-tools 28.0.3
• ANDROID_HOME = C:\Users\andytwoods\AppData\Local\Android\Sdk
• Java binary at: C:\Program Files\Android\Android Studio\jre\bin\java
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06)
• All Android licenses accepted.
[√] Android Studio (version 3.2)
• Android Studio at C:\Program Files\Android\Android Studio
X Flutter plugin not installed; this adds Flutter specific functionality.
X Dart plugin not installed; this adds Dart specific functionality.
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06)
[√] IntelliJ IDEA Ultimate Edition (version 2018.2)
• IntelliJ at C:\Program Files\JetBrains\IntelliJ IDEA 2018.2.4
• Flutter plugin version 29.1.3
• Dart plugin version 182.4999
[√] Connected devices (1 available)
• Android SDK built for x86 64 • emulator-5554 • android-x64 • Android 9 (API 28) (emulator)
• No issues found!
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Log:
I/flutter ( 7452): ══╡ EXCEPTION CAUGHT BY WIDGETS LIBRARY ╞═══════════════════════════════════════════════════════════
I/flutter ( 7452): The following assertion was thrown building ExpansionPanelList(state:
I/flutter ( 7452): _ExpansionPanelListState#72d5c):
I/flutter ( 7452): 'package:flutter/src/material/mergeable_material.dart': Failed assertion: line 443 pos 18:
I/flutter ( 7452): '_children[j] is MaterialGap': is not true.
I/flutter ( 7452):
I/flutter ( 7452): Either the assertion indicates an error in the framework itself, or we should provide substantially
I/flutter ( 7452): more information in this error message to help you determine and fix the underlying cause.
I/flutter ( 7452): In either case, please report this assertion by filing a bug on GitHub:
I/flutter ( 7452): https://github.com/flutter/flutter/issues/new
I/flutter ( 7452):
I/flutter ( 7452): When the exception was thrown, this was the stack:
I/flutter ( 7452): #2 _MergeableMaterialState.didUpdateWidget (package:flutter/src/material/mergeable_material.dart:443:18)
I/flutter ( 7452): #3 StatefulElement.update (package:flutter/src/widgets/framework.dart:3820:58)
I/flutter ( 7452): #4 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #5 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #6 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #7 StatefulElement.update (package:flutter/src/widgets/framework.dart:3835:5)
I/flutter ( 7452): #8 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #9 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #10 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #11 ProxyElement.update (package:flutter/src/widgets/framework.dart:3947:5)
I/flutter ( 7452): #12 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #13 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #14 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #15 ProxyElement.update (package:flutter/src/widgets/framework.dart:3947:5)
I/flutter ( 7452): #16 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #17 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #18 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #19 StatelessElement.update (package:flutter/src/widgets/framework.dart:3738:5)
I/flutter ( 7452): #20 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #21 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4803:14)
I/flutter ( 7452): #22 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #23 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #24 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #25 StatelessElement.update (package:flutter/src/widgets/framework.dart:3738:5)
I/flutter ( 7452): #26 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #27 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #28 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #29 ProxyElement.update (package:flutter/src/widgets/framework.dart:3947:5)
I/flutter ( 7452): #30 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #31 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4803:14)
I/flutter ( 7452): #32 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #33 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #34 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #35 StatelessElement.update (package:flutter/src/widgets/framework.dart:3738:5)
I/flutter ( 7452): #36 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #37 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4803:14)
I/flutter ( 7452): #38 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #39 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #40 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #41 ProxyElement.update (package:flutter/src/widgets/framework.dart:3947:5)
I/flutter ( 7452): #42 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #43 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4803:14)
I/flutter ( 7452): #44 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #45 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4803:14)
I/flutter ( 7452): #46 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #47 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4803:14)
I/flutter ( 7452): #48 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #49 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4803:14)
I/flutter ( 7452): #50 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #51 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #52 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #53 StatefulElement.update (package:flutter/src/widgets/framework.dart:3835:5)
I/flutter ( 7452): #54 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #55 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4803:14)
I/flutter ( 7452): #56 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #57 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4803:14)
I/flutter ( 7452): #58 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #59 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4803:14)
I/flutter ( 7452): #60 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #61 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4803:14)
I/flutter ( 7452): #62 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #63 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #64 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #65 StatelessElement.update (package:flutter/src/widgets/framework.dart:3738:5)
I/flutter ( 7452): #66 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #67 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #68 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #69 StatefulElement.update (package:flutter/src/widgets/framework.dart:3835:5)
I/flutter ( 7452): #70 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #71 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #72 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #73 StatefulElement.update (package:flutter/src/widgets/framework.dart:3835:5)
I/flutter ( 7452): #74 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #75 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #76 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #77 ProxyElement.update (package:flutter/src/widgets/framework.dart:3947:5)
I/flutter ( 7452): #78 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #79 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #80 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #81 StatelessElement.update (package:flutter/src/widgets/framework.dart:3738:5)
I/flutter ( 7452): #82 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #83 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #84 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #85 BuildOwner.buildScope (package:flutter/src/widgets/framework.dart:2273:33)
I/flutter ( 7452): #86 _WidgetsFlutterBinding&BindingBase&GestureBinding&ServicesBinding&SchedulerBinding&PaintingBinding&SemanticsBinding&RendererBinding&WidgetsBinding.drawFrame (package:flutter/src/widgets/binding.dart:673:20)
I/flutter ( 7452): #87 _WidgetsFlutterBinding&BindingBase&GestureBinding&ServicesBinding&SchedulerBinding&PaintingBinding&SemanticsBinding&RendererBinding._handlePersistentFrameCallback (package:flutter/src/rendering/binding.dart:208:5)
I/flutter ( 7452): #88 _WidgetsFlutterBinding&BindingBase&GestureBinding&ServicesBinding&SchedulerBinding._invokeFrameCallback (package:flutter/src/scheduler/binding.dart:990:15)
I/flutter ( 7452): #89 _WidgetsFlutterBinding&BindingBase&GestureBinding&ServicesBinding&SchedulerBinding.handleDrawFrame (package:flutter/src/scheduler/binding.dart:930:9)
I/flutter ( 7452): #90 _WidgetsFlutterBinding&BindingBase&GestureBinding&ServicesBinding&SchedulerBinding._handleDrawFrame (package:flutter/src/scheduler/binding.dart:842:5)
I/flutter ( 7452): #91 _invoke (dart:ui/hooks.dart:139:13)
I/flutter ( 7452): #92 _drawFrame (dart:ui/hooks.dart:128:3)
I/flutter ( 7452): (elided 2 frames from class _AssertionError)
I/flutter ( 7452): ════════════════════════════════════════════════════════════════════════════════════════════════════"><pre class="notranslate"><code class="notranslate">Log:
I/flutter ( 7452): ══╡ EXCEPTION CAUGHT BY WIDGETS LIBRARY ╞═══════════════════════════════════════════════════════════
I/flutter ( 7452): The following assertion was thrown building ExpansionPanelList(state:
I/flutter ( 7452): _ExpansionPanelListState#72d5c):
I/flutter ( 7452): 'package:flutter/src/material/mergeable_material.dart': Failed assertion: line 443 pos 18:
I/flutter ( 7452): '_children[j] is MaterialGap': is not true.
I/flutter ( 7452):
I/flutter ( 7452): Either the assertion indicates an error in the framework itself, or we should provide substantially
I/flutter ( 7452): more information in this error message to help you determine and fix the underlying cause.
I/flutter ( 7452): In either case, please report this assertion by filing a bug on GitHub:
I/flutter ( 7452): https://github.com/flutter/flutter/issues/new
I/flutter ( 7452):
I/flutter ( 7452): When the exception was thrown, this was the stack:
I/flutter ( 7452): #2 _MergeableMaterialState.didUpdateWidget (package:flutter/src/material/mergeable_material.dart:443:18)
I/flutter ( 7452): #3 StatefulElement.update (package:flutter/src/widgets/framework.dart:3820:58)
I/flutter ( 7452): #4 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #5 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #6 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #7 StatefulElement.update (package:flutter/src/widgets/framework.dart:3835:5)
I/flutter ( 7452): #8 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #9 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #10 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #11 ProxyElement.update (package:flutter/src/widgets/framework.dart:3947:5)
I/flutter ( 7452): #12 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #13 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #14 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #15 ProxyElement.update (package:flutter/src/widgets/framework.dart:3947:5)
I/flutter ( 7452): #16 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #17 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #18 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #19 StatelessElement.update (package:flutter/src/widgets/framework.dart:3738:5)
I/flutter ( 7452): #20 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #21 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4803:14)
I/flutter ( 7452): #22 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #23 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #24 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #25 StatelessElement.update (package:flutter/src/widgets/framework.dart:3738:5)
I/flutter ( 7452): #26 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #27 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #28 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #29 ProxyElement.update (package:flutter/src/widgets/framework.dart:3947:5)
I/flutter ( 7452): #30 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #31 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4803:14)
I/flutter ( 7452): #32 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #33 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #34 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #35 StatelessElement.update (package:flutter/src/widgets/framework.dart:3738:5)
I/flutter ( 7452): #36 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #37 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4803:14)
I/flutter ( 7452): #38 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #39 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #40 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #41 ProxyElement.update (package:flutter/src/widgets/framework.dart:3947:5)
I/flutter ( 7452): #42 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #43 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4803:14)
I/flutter ( 7452): #44 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #45 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4803:14)
I/flutter ( 7452): #46 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #47 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4803:14)
I/flutter ( 7452): #48 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #49 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4803:14)
I/flutter ( 7452): #50 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #51 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #52 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #53 StatefulElement.update (package:flutter/src/widgets/framework.dart:3835:5)
I/flutter ( 7452): #54 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #55 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4803:14)
I/flutter ( 7452): #56 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #57 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4803:14)
I/flutter ( 7452): #58 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #59 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4803:14)
I/flutter ( 7452): #60 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #61 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4803:14)
I/flutter ( 7452): #62 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #63 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #64 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #65 StatelessElement.update (package:flutter/src/widgets/framework.dart:3738:5)
I/flutter ( 7452): #66 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #67 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #68 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #69 StatefulElement.update (package:flutter/src/widgets/framework.dart:3835:5)
I/flutter ( 7452): #70 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #71 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #72 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #73 StatefulElement.update (package:flutter/src/widgets/framework.dart:3835:5)
I/flutter ( 7452): #74 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #75 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #76 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #77 ProxyElement.update (package:flutter/src/widgets/framework.dart:3947:5)
I/flutter ( 7452): #78 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #79 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #80 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #81 StatelessElement.update (package:flutter/src/widgets/framework.dart:3738:5)
I/flutter ( 7452): #82 Element.updateChild (package:flutter/src/widgets/framework.dart:2729:15)
I/flutter ( 7452): #83 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3689:16)
I/flutter ( 7452): #84 Element.rebuild (package:flutter/src/widgets/framework.dart:3531:5)
I/flutter ( 7452): #85 BuildOwner.buildScope (package:flutter/src/widgets/framework.dart:2273:33)
I/flutter ( 7452): #86 _WidgetsFlutterBinding&BindingBase&GestureBinding&ServicesBinding&SchedulerBinding&PaintingBinding&SemanticsBinding&RendererBinding&WidgetsBinding.drawFrame (package:flutter/src/widgets/binding.dart:673:20)
I/flutter ( 7452): #87 _WidgetsFlutterBinding&BindingBase&GestureBinding&ServicesBinding&SchedulerBinding&PaintingBinding&SemanticsBinding&RendererBinding._handlePersistentFrameCallback (package:flutter/src/rendering/binding.dart:208:5)
I/flutter ( 7452): #88 _WidgetsFlutterBinding&BindingBase&GestureBinding&ServicesBinding&SchedulerBinding._invokeFrameCallback (package:flutter/src/scheduler/binding.dart:990:15)
I/flutter ( 7452): #89 _WidgetsFlutterBinding&BindingBase&GestureBinding&ServicesBinding&SchedulerBinding.handleDrawFrame (package:flutter/src/scheduler/binding.dart:930:9)
I/flutter ( 7452): #90 _WidgetsFlutterBinding&BindingBase&GestureBinding&ServicesBinding&SchedulerBinding._handleDrawFrame (package:flutter/src/scheduler/binding.dart:842:5)
I/flutter ( 7452): #91 _invoke (dart:ui/hooks.dart:139:13)
I/flutter ( 7452): #92 _drawFrame (dart:ui/hooks.dart:128:3)
I/flutter ( 7452): (elided 2 frames from class _AssertionError)
I/flutter ( 7452): ════════════════════════════════════════════════════════════════════════════════════════════════════
</code></pre></div> | <p dir="auto"><em>@parasthekoder commented on Jul 18, 2018, 6:43 AM UTC:</em></p>
<p dir="auto">When performing a hot restart I got a fatal exception and then application is terminated.<br>
It is usually happening on hot restart, it seems like a kind of memory related error.<br>
Searching over internet I found that turn off hardware acceleration, I did it too, but still getting this error.</p>
<h2 dir="auto">Steps to Reproduce</h2>
<p dir="auto">Hot restart your app few times.</p>
<h2 dir="auto">Version info</h2>
<p dir="auto">Android Studio <code class="notranslate">3.1.3</code> • Flutter plugin <code class="notranslate">io.flutter 26.0.1</code> • Dart plugin <code class="notranslate">173.4700</code></p>
<h2 dir="auto">Flutter Doctor</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Doctor summary (to see all details, run flutter doctor -v):
[√] Flutter (Channel beta, v0.5.1, on Microsoft Windows [Version 10.0.17134.167], locale en-US)
[√] Android toolchain - develop for Android devices (Android SDK 27.0.3)
[√] Android Studio (version 3.1)
[√] IntelliJ IDEA Community Edition (version 2018.1)
[√] Connected devices (1 available)
• No issues found!
"><pre class="notranslate"><code class="notranslate">Doctor summary (to see all details, run flutter doctor -v):
[√] Flutter (Channel beta, v0.5.1, on Microsoft Windows [Version 10.0.17134.167], locale en-US)
[√] Android toolchain - develop for Android devices (Android SDK 27.0.3)
[√] Android Studio (version 3.1)
[√] IntelliJ IDEA Community Edition (version 2018.1)
[√] Connected devices (1 available)
• No issues found!
</code></pre></div>
<h2 dir="auto">Exception</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="
com.intellij.openapi.diagnostic.Logger$EmptyThrowable
at com.intellij.openapi.diagnostic.Logger.error(Logger.java:140)
at io.flutter.view.InspectorPanel.lambda$recomputeTreeRoot$5(InspectorPanel.java:575)
at io.flutter.inspector.InspectorService$ObjectGroup.lambda$null$67(InspectorService.java:875)
at com.intellij.openapi.application.TransactionGuardImpl$2.run(TransactionGuardImpl.java:315)
at com.intellij.openapi.application.impl.LaterInvocator$FlushQueue.runNextEvent(LaterInvocator.java:424)
at com.intellij.openapi.application.impl.LaterInvocator$FlushQueue.run(LaterInvocator.java:407)
at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:311)
at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:762)
at java.awt.EventQueue.access$500(EventQueue.java:98)
at java.awt.EventQueue$3.run(EventQueue.java:715)
at java.awt.EventQueue$3.run(EventQueue.java:709)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:80)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:732)
at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.java:822)
at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.java:650)
at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:366)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
"><pre class="notranslate"><code class="notranslate">
com.intellij.openapi.diagnostic.Logger$EmptyThrowable
at com.intellij.openapi.diagnostic.Logger.error(Logger.java:140)
at io.flutter.view.InspectorPanel.lambda$recomputeTreeRoot$5(InspectorPanel.java:575)
at io.flutter.inspector.InspectorService$ObjectGroup.lambda$null$67(InspectorService.java:875)
at com.intellij.openapi.application.TransactionGuardImpl$2.run(TransactionGuardImpl.java:315)
at com.intellij.openapi.application.impl.LaterInvocator$FlushQueue.runNextEvent(LaterInvocator.java:424)
at com.intellij.openapi.application.impl.LaterInvocator$FlushQueue.run(LaterInvocator.java:407)
at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:311)
at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:762)
at java.awt.EventQueue.access$500(EventQueue.java:98)
at java.awt.EventQueue$3.run(EventQueue.java:715)
at java.awt.EventQueue$3.run(EventQueue.java:709)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:80)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:732)
at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.java:822)
at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.java:650)
at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:366)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
</code></pre></div>
<h2 dir="auto">Logcat</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="F/libc ( 9665): Fatal signal 11 (SIGSEGV), code 128, fault addr 0x0 in tid 9763 (1.ui), pid 9665
*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
LineageOS Version: '15.1-20180623-NIGHTLY-j5lte'
Build fingerprint: 'samsung/lineage_j5lte/j5lte:8.1.0/OPM2.171026.006.C1/7ea606c2dc:userdebug/test-keys'
Revision: '5'
ABI: 'arm'
pid: 9665, tid: 9763, name: 1.ui >>> in.uneva.hms <<<
signal 11 (SIGSEGV), code 128 (SI_KERNEL), fault addr 0x0
r0 9487eb0c r1 9487eb58 r2 ce4775ae r3 00000008
r4 5ac09eae r5 5ad4a61e r6 5ac09966 r7 ce4775ae
r8 5b143bb6 r9 5b166be2 sl 5ac0854a fp ce4775ae
ip 00000000 sp 5ac0919e lr 94fa1007 pc b151aa04 cpsr 600d0010
backtrace:
#00 pc 00018a04 /system/lib/libc.so (sigsetjmp+112)
#01 pc 0061a003 /data/app/in.uneva.hms-wPG63vR0t1-Z0fgTahXBBg==/lib/arm/libflutter.so
#02 pc fffffffd <unknown>
Lost connection to device.```
"><pre class="notranslate"><code class="notranslate">F/libc ( 9665): Fatal signal 11 (SIGSEGV), code 128, fault addr 0x0 in tid 9763 (1.ui), pid 9665
*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
LineageOS Version: '15.1-20180623-NIGHTLY-j5lte'
Build fingerprint: 'samsung/lineage_j5lte/j5lte:8.1.0/OPM2.171026.006.C1/7ea606c2dc:userdebug/test-keys'
Revision: '5'
ABI: 'arm'
pid: 9665, tid: 9763, name: 1.ui >>> in.uneva.hms <<<
signal 11 (SIGSEGV), code 128 (SI_KERNEL), fault addr 0x0
r0 9487eb0c r1 9487eb58 r2 ce4775ae r3 00000008
r4 5ac09eae r5 5ad4a61e r6 5ac09966 r7 ce4775ae
r8 5b143bb6 r9 5b166be2 sl 5ac0854a fp ce4775ae
ip 00000000 sp 5ac0919e lr 94fa1007 pc b151aa04 cpsr 600d0010
backtrace:
#00 pc 00018a04 /system/lib/libc.so (sigsetjmp+112)
#01 pc 0061a003 /data/app/in.uneva.hms-wPG63vR0t1-Z0fgTahXBBg==/lib/arm/libflutter.so
#02 pc fffffffd <unknown>
Lost connection to device.```
</code></pre></div>
<p dir="auto"><em>This issue was moved by <a href="https://github.com/devoncarew">devoncarew</a> from <a href="https://github.com/flutter/flutter-intellij/issues/2492" data-hovercard-type="issue" data-hovercard-url="/flutter/flutter-intellij/issues/2492/hovercard">flutter/flutter-intellij#2492</a>.</em></p> | 0 |
<p dir="auto">This error happens in devtools (when running devtools shell), I didn't investigate it in detail, but seemingly the reason is that inside InteractionListItem.js we are trying to access commitData[commitIndex].duration however in some cases commitData is an array one index smaller than commitIndex.</p> | <p dir="auto">I think <strong>scryRenderedDOMComponentsWithClass</strong> (and all other methods starting with scry) should be deprecated in favor of more obvious names like <strong>findRenderedDOMComponentsWithClass</strong>.</p> | 0 |
<p dir="auto">splitVertical is also</p> | <h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: winnt 10.0.18362 on x86_64
Windows Terminal version (if applicable): 0.2.1715.0
Any other software? Visual Studio 2017"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: winnt 10.0.18362 on x86_64
Windows Terminal version (if applicable): 0.2.1715.0
Any other software? Visual Studio 2017
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<ol dir="auto">
<li>open windows terminal</li>
<li>click on arrow down near the plus button -> settings or directly click ctrl + ,</li>
<li>Visual Studio 2017 pops up</li>
</ol>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">I would expect to see a settings menu, definitely not vs2017</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">vs2017 popus up</p> | 0 |
<p dir="auto">Context menu with Javascript:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/79215/12369371/bf56a236-bbaa-11e5-81fb-0f3e51b3981b.png"><img src="https://cloud.githubusercontent.com/assets/79215/12369371/bf56a236-bbaa-11e5-81fb-0f3e51b3981b.png" alt="screen shot 2016-01-15 at 5 09 27 pm" style="max-width: 100%;"></a></p>
<p dir="auto">Context menu with Javascript React:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/79215/12369366/b1f47d0c-bbaa-11e5-90c9-bea1a2957660.png"><img src="https://cloud.githubusercontent.com/assets/79215/12369366/b1f47d0c-bbaa-11e5-90c9-bea1a2957660.png" alt="screen shot 2016-01-15 at 5 08 56 pm" style="max-width: 100%;"></a></p> | <p dir="auto">I know VSCode has not support JSX yet but it didn't appear so much error highlights in the last version, even I had already changed my language mode into <code class="notranslate">Plain Text</code>.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/6079112/11261584/f5e2e9d0-8eb0-11e5-8388-e6711dc718f9.PNG"><img src="https://cloud.githubusercontent.com/assets/6079112/11261584/f5e2e9d0-8eb0-11e5-8388-e6711dc718f9.PNG" alt="2" style="max-width: 100%;"></a></p> | 1 |
<p dir="auto">Any hope??? after keen monitoring it crushes . 12 - 24 hrs</p>
<p dir="auto">BrokenPipe: Broken pipe (os error 32)<br>
at unwrapResponse (deno:cli/rt/10_dispatch_minimal.js:59:13)<br>
at sendAsync (deno:cli/rt/10_dispatch_minimal.js:98:12)<br>
at async write (deno:cli/rt/12_io.js:117:20)<br>
at async Object.writeAll (deno:cli/rt/13_buffer.js:223:19)<br>
at async BufWriter.flush (bufio.ts:468:7)<br>
at async writeResponse (_io.ts:288:3)<br>
at async Server.iterateHttpRequests (server.ts:154:11)<br>
at async Server.acceptConnAndIterateHttpRequests (server.ts:227:5)<br>
at async MuxAsyncIterator.callIteratorNext (mux_async_iterator.ts:30:31)</p> | <p dir="auto">Hello,</p>
<p dir="auto">I'm compiling my module with:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="deno compile --unstable --allow-net module.js
Check file:///chop/chop/module.js
Bundle file:///chop/chop/module.js
Compile file:///chop/chop/module.js
Emit module"><pre class="notranslate">deno compile --unstable --allow-net module.js
Check file:///chop/chop/module.js
Bundle file:///chop/chop/module.js
Compile file:///chop/chop/module.js
Emit module</pre></div>
<p dir="auto">Now when I try to run it I get ReferenceError:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="./module
error: ReferenceError: Cannot access 'Error' before initialization
at file://$deno$/bundle.js:325:30"><pre class="notranslate">./module
error: ReferenceError: Cannot access <span class="pl-s"><span class="pl-pds">'</span>Error<span class="pl-pds">'</span></span> before initialization
at file://<span class="pl-smi">$deno</span>$/bundle.js:325:30</pre></div>
<p dir="auto">I'm not referencing <code class="notranslate">Error</code> explicitly in my code, but I'm using <code class="notranslate">std/node</code> to get <code class="notranslate">crypto</code> working, so I guess that's where it's coming from? I can share source code if that would be helpful, it is only ~150 lines of code at this stage.</p>
<p dir="auto">It works fine when I simply run it with:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="deno run --unstable --allow-net module.js"><pre class="notranslate">deno run --unstable --allow-net module.js</pre></div>
<p dir="auto">My environment:</p>
<ul dir="auto">
<li>Linux 5.13.0-7614-generic on x86-64</li>
<li>deno 1.15.1 (release, x86_64-unknown-linux-gnu), v8 9.5.172.19, typescript 4.4.2</li>
</ul>
<p dir="auto">Any ideas what am I doing wrong or where the problem is? Thank you in advance.</p> | 0 |
<p dir="auto">I followed the guide mentioned here <a href="https://www.elastic.co/guide/en/x-pack/current/api-java.html" rel="nofollow">https://www.elastic.co/guide/en/x-pack/current/api-java.html</a> and all in all everything worked within the IDE.</p>
<p dir="auto">Our application is spring boot based, so we end up creating fat jars for deployment using prebuild maven plugins. The problem is, when we run the jar file we get the following error</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.elasticsearch.client.Client]: Factory method 'esClient' threw exception; nested exception is java.lang.NoClassDefFoundError: org/elasticsearch/xpack/XPackPlugin
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:189)
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:588)
... 41 common frames omitted
Caused by: java.lang.NoClassDefFoundError: org/elasticsearch/xpack/XPackPlugin
at org.elasticsearch.xpack.client.PreBuiltXPackTransportClient.<init>(PreBuiltXPackTransportClient.java:50)
at org.elasticsearch.xpack.client.PreBuiltXPackTransportClient.<init>(PreBuiltXPackTransportClient.java:46)"><pre class="notranslate"><code class="notranslate">Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.elasticsearch.client.Client]: Factory method 'esClient' threw exception; nested exception is java.lang.NoClassDefFoundError: org/elasticsearch/xpack/XPackPlugin
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:189)
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:588)
... 41 common frames omitted
Caused by: java.lang.NoClassDefFoundError: org/elasticsearch/xpack/XPackPlugin
at org.elasticsearch.xpack.client.PreBuiltXPackTransportClient.<init>(PreBuiltXPackTransportClient.java:50)
at org.elasticsearch.xpack.client.PreBuiltXPackTransportClient.<init>(PreBuiltXPackTransportClient.java:46)
</code></pre></div>
<p dir="auto">Here's the dependencies we added:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" <dependency>
<groupId>org.elasticsearch.client</groupId>
<artifactId>x-pack-transport</artifactId>
<version>5.0.0</version>
</dependency>"><pre class="notranslate"><code class="notranslate"> <dependency>
<groupId>org.elasticsearch.client</groupId>
<artifactId>x-pack-transport</artifactId>
<version>5.0.0</version>
</dependency>
</code></pre></div>
<p dir="auto">and here's the code we use to initialize the client (based on the discussion <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="170315623" data-permission-text="Title is private" data-url="https://github.com/elastic/elasticsearch/issues/19903" data-hovercard-type="issue" data-hovercard-url="/elastic/elasticsearch/issues/19903/hovercard" href="https://github.com/elastic/elasticsearch/issues/19903">#19903</a>)</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Node node = new PluginNode(settings);
node.start();
return node.client();
}
static class PluginNode extends Node {
public PluginNode(Settings settings) {
super(InternalSettingsPreparer.prepareEnvironment(settings, null), Collections.singletonList(Netty4Plugin.class));
}
}"><pre class="notranslate"><code class="notranslate">Node node = new PluginNode(settings);
node.start();
return node.client();
}
static class PluginNode extends Node {
public PluginNode(Settings settings) {
super(InternalSettingsPreparer.prepareEnvironment(settings, null), Collections.singletonList(Netty4Plugin.class));
}
}
</code></pre></div>
<p dir="auto">also, once in a while we get this in our CI builds as well</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[35,35] cannot find symbol
[ERROR] symbol: class Netty4Plugin
[ERROR] location: package org.elasticsearch.transport
[ERROR] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] "><pre class="notranslate"><code class="notranslate">[35,35] cannot find symbol
[ERROR] symbol: class Netty4Plugin
[ERROR] location: package org.elasticsearch.transport
[ERROR] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
</code></pre></div>
<p dir="auto">which doesn't make sense because x-pack-transport by default includes the <code class="notranslate">transport</code> dependency as well</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[INFO] +- org.elasticsearch.client:x-pack-transport:jar:5.0.0:compile
[INFO] | | +- org.elasticsearch.client:rest:jar:5.0.0:compile
[INFO] | | \- org.elasticsearch.client:sniffer:jar:5.0.0:compile
[INFO] | \- org.elasticsearch.client:transport:jar:5.0.0:compile"><pre class="notranslate"><code class="notranslate">[INFO] +- org.elasticsearch.client:x-pack-transport:jar:5.0.0:compile
[INFO] | | +- org.elasticsearch.client:rest:jar:5.0.0:compile
[INFO] | | \- org.elasticsearch.client:sniffer:jar:5.0.0:compile
[INFO] | \- org.elasticsearch.client:transport:jar:5.0.0:compile
</code></pre></div>
<p dir="auto">I see others are getting some compile time issues as well (on that thread). Is it possible that at runtime xpack transport client doesn't load the right classes?</p> | <p dir="auto">We should add an <code class="notranslate">explain</code> parameter so people can get detailed feedback about why a shard can or cannot be allocated to a node. Something like this:</p>
<h3 dir="auto">For these commands:</h3>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="curl -XPOST 'localhost:9200/_cluster/reroute?explain&pretty' -d '{
"commands" : [
{
"cancel" : {
"index" : "decide", "shard" : 0, "node": "IvpoKRdtRiGrQ_WKtt4_4w"
}
},
{
"move" : {
"index" : "decide", "shard" : 0,
"from_node" : "IvpoKRdtRiGrQ_WKtt4_4w", "to_node" : "IvpoKRdtRiGrQ_WKtt4_4w"
}
}
]
}'"><pre class="notranslate">curl -XPOST <span class="pl-s"><span class="pl-pds">'</span>localhost:9200/_cluster/reroute?explain&pretty<span class="pl-pds">'</span></span> -d <span class="pl-s"><span class="pl-pds">'</span>{</span>
<span class="pl-s"> "commands" : [</span>
<span class="pl-s"> {</span>
<span class="pl-s"> "cancel" : {</span>
<span class="pl-s"> "index" : "decide", "shard" : 0, "node": "IvpoKRdtRiGrQ_WKtt4_4w"</span>
<span class="pl-s"> }</span>
<span class="pl-s"> },</span>
<span class="pl-s"> {</span>
<span class="pl-s"> "move" : {</span>
<span class="pl-s"> "index" : "decide", "shard" : 0,</span>
<span class="pl-s"> "from_node" : "IvpoKRdtRiGrQ_WKtt4_4w", "to_node" : "IvpoKRdtRiGrQ_WKtt4_4w"</span>
<span class="pl-s"> }</span>
<span class="pl-s"> }</span>
<span class="pl-s"> ]</span>
<span class="pl-s">}<span class="pl-pds">'</span></span></pre></div>
<h3 dir="auto">This result:</h3>
<div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{
"explanations" : [ {
"command" : "cancel",
"parameters" : {
"index" : "[decide]",
"shard" : 0,
"node" : "IvpoKRdtRiGrQ_WKtt4_4w",
"allow_primary" : false
},
"decisions" : [ {
"decider" : "CancelAllocationCommand",
"decision" : "NO",
"explanation" : "can't cancel [decide][0] on node [Wysper][IvpoKRdtRiGrQ_WKtt4_4w][Xanadu.local][inet[/172.16.1.8:9300]], shard is primary and started"
} ]
}, {
"command" : "move",
"parameters" : {
"index" : "[decide]",
"shard" : 0,
"from_node" : "IvpoKRdtRiGrQ_WKtt4_4w",
"to_node" : "IvpoKRdtRiGrQ_WKtt4_4w"
},
"decisions" : [ {
"decider" : "SameShard",
"decision" : "NO",
"explanation" : "shard cannot be allocated on same node [IvpoKRdtRiGrQ_WKtt4_4w] it already exists on"
}, {
"decider" : "Filter",
"decision" : "YES",
"explanation" : "node passes include/exclude/require filters"
}, {
"decider" : "ReplicaAfterPrimaryActive",
"decision" : "YES",
"explanation" : "shard is primary"
}, {
"decider" : "Throttling",
"decision" : "YES",
"explanation" : "below shard recovery limit of [2]"
}, {
"decider" : "Enable",
"decision" : "YES",
"explanation" : "allocation disabling is ignored"
}, {
"decider" : "Disable",
"decision" : "YES",
"explanation" : "allocation disabling is ignored"
}, {
"decider" : "Awareness",
"decision" : "YES",
"explanation" : "no allocation awareness enabled"
}, {
"decider" : "ShardsLimit",
"decision" : "YES",
"explanation" : "total shard limit disabled: [-1] <= 0"
}, {
"decider" : "NodeVersion",
"decision" : "YES",
"explanation" : "target node version [2.0.0-SNAPSHOT] is same or newer than source node version [2.0.0-SNAPSHOT]"
}, {
"decider" : "DiskThreshold",
"decision" : "YES",
"explanation" : "disk threshold decider disabled"
}, {
"decider" : "SnapshotInProgress",
"decision" : "YES",
"explanation" : "no snapshots are currently running"
} ]
} ]
}"><pre class="notranslate">{
<span class="pl-ent">"explanations"</span> : [ {
<span class="pl-ent">"command"</span> : <span class="pl-s"><span class="pl-pds">"</span>cancel<span class="pl-pds">"</span></span>,
<span class="pl-ent">"parameters"</span> : {
<span class="pl-ent">"index"</span> : <span class="pl-s"><span class="pl-pds">"</span>[decide]<span class="pl-pds">"</span></span>,
<span class="pl-ent">"shard"</span> : <span class="pl-c1">0</span>,
<span class="pl-ent">"node"</span> : <span class="pl-s"><span class="pl-pds">"</span>IvpoKRdtRiGrQ_WKtt4_4w<span class="pl-pds">"</span></span>,
<span class="pl-ent">"allow_primary"</span> : <span class="pl-c1">false</span>
},
<span class="pl-ent">"decisions"</span> : [ {
<span class="pl-ent">"decider"</span> : <span class="pl-s"><span class="pl-pds">"</span>CancelAllocationCommand<span class="pl-pds">"</span></span>,
<span class="pl-ent">"decision"</span> : <span class="pl-s"><span class="pl-pds">"</span>NO<span class="pl-pds">"</span></span>,
<span class="pl-ent">"explanation"</span> : <span class="pl-s"><span class="pl-pds">"</span>can't cancel [decide][0] on node [Wysper][IvpoKRdtRiGrQ_WKtt4_4w][Xanadu.local][inet[/172.16.1.8:9300]], shard is primary and started<span class="pl-pds">"</span></span>
} ]
}, {
<span class="pl-ent">"command"</span> : <span class="pl-s"><span class="pl-pds">"</span>move<span class="pl-pds">"</span></span>,
<span class="pl-ent">"parameters"</span> : {
<span class="pl-ent">"index"</span> : <span class="pl-s"><span class="pl-pds">"</span>[decide]<span class="pl-pds">"</span></span>,
<span class="pl-ent">"shard"</span> : <span class="pl-c1">0</span>,
<span class="pl-ent">"from_node"</span> : <span class="pl-s"><span class="pl-pds">"</span>IvpoKRdtRiGrQ_WKtt4_4w<span class="pl-pds">"</span></span>,
<span class="pl-ent">"to_node"</span> : <span class="pl-s"><span class="pl-pds">"</span>IvpoKRdtRiGrQ_WKtt4_4w<span class="pl-pds">"</span></span>
},
<span class="pl-ent">"decisions"</span> : [ {
<span class="pl-ent">"decider"</span> : <span class="pl-s"><span class="pl-pds">"</span>SameShard<span class="pl-pds">"</span></span>,
<span class="pl-ent">"decision"</span> : <span class="pl-s"><span class="pl-pds">"</span>NO<span class="pl-pds">"</span></span>,
<span class="pl-ent">"explanation"</span> : <span class="pl-s"><span class="pl-pds">"</span>shard cannot be allocated on same node [IvpoKRdtRiGrQ_WKtt4_4w] it already exists on<span class="pl-pds">"</span></span>
}, {
<span class="pl-ent">"decider"</span> : <span class="pl-s"><span class="pl-pds">"</span>Filter<span class="pl-pds">"</span></span>,
<span class="pl-ent">"decision"</span> : <span class="pl-s"><span class="pl-pds">"</span>YES<span class="pl-pds">"</span></span>,
<span class="pl-ent">"explanation"</span> : <span class="pl-s"><span class="pl-pds">"</span>node passes include/exclude/require filters<span class="pl-pds">"</span></span>
}, {
<span class="pl-ent">"decider"</span> : <span class="pl-s"><span class="pl-pds">"</span>ReplicaAfterPrimaryActive<span class="pl-pds">"</span></span>,
<span class="pl-ent">"decision"</span> : <span class="pl-s"><span class="pl-pds">"</span>YES<span class="pl-pds">"</span></span>,
<span class="pl-ent">"explanation"</span> : <span class="pl-s"><span class="pl-pds">"</span>shard is primary<span class="pl-pds">"</span></span>
}, {
<span class="pl-ent">"decider"</span> : <span class="pl-s"><span class="pl-pds">"</span>Throttling<span class="pl-pds">"</span></span>,
<span class="pl-ent">"decision"</span> : <span class="pl-s"><span class="pl-pds">"</span>YES<span class="pl-pds">"</span></span>,
<span class="pl-ent">"explanation"</span> : <span class="pl-s"><span class="pl-pds">"</span>below shard recovery limit of [2]<span class="pl-pds">"</span></span>
}, {
<span class="pl-ent">"decider"</span> : <span class="pl-s"><span class="pl-pds">"</span>Enable<span class="pl-pds">"</span></span>,
<span class="pl-ent">"decision"</span> : <span class="pl-s"><span class="pl-pds">"</span>YES<span class="pl-pds">"</span></span>,
<span class="pl-ent">"explanation"</span> : <span class="pl-s"><span class="pl-pds">"</span>allocation disabling is ignored<span class="pl-pds">"</span></span>
}, {
<span class="pl-ent">"decider"</span> : <span class="pl-s"><span class="pl-pds">"</span>Disable<span class="pl-pds">"</span></span>,
<span class="pl-ent">"decision"</span> : <span class="pl-s"><span class="pl-pds">"</span>YES<span class="pl-pds">"</span></span>,
<span class="pl-ent">"explanation"</span> : <span class="pl-s"><span class="pl-pds">"</span>allocation disabling is ignored<span class="pl-pds">"</span></span>
}, {
<span class="pl-ent">"decider"</span> : <span class="pl-s"><span class="pl-pds">"</span>Awareness<span class="pl-pds">"</span></span>,
<span class="pl-ent">"decision"</span> : <span class="pl-s"><span class="pl-pds">"</span>YES<span class="pl-pds">"</span></span>,
<span class="pl-ent">"explanation"</span> : <span class="pl-s"><span class="pl-pds">"</span>no allocation awareness enabled<span class="pl-pds">"</span></span>
}, {
<span class="pl-ent">"decider"</span> : <span class="pl-s"><span class="pl-pds">"</span>ShardsLimit<span class="pl-pds">"</span></span>,
<span class="pl-ent">"decision"</span> : <span class="pl-s"><span class="pl-pds">"</span>YES<span class="pl-pds">"</span></span>,
<span class="pl-ent">"explanation"</span> : <span class="pl-s"><span class="pl-pds">"</span>total shard limit disabled: [-1] <= 0<span class="pl-pds">"</span></span>
}, {
<span class="pl-ent">"decider"</span> : <span class="pl-s"><span class="pl-pds">"</span>NodeVersion<span class="pl-pds">"</span></span>,
<span class="pl-ent">"decision"</span> : <span class="pl-s"><span class="pl-pds">"</span>YES<span class="pl-pds">"</span></span>,
<span class="pl-ent">"explanation"</span> : <span class="pl-s"><span class="pl-pds">"</span>target node version [2.0.0-SNAPSHOT] is same or newer than source node version [2.0.0-SNAPSHOT]<span class="pl-pds">"</span></span>
}, {
<span class="pl-ent">"decider"</span> : <span class="pl-s"><span class="pl-pds">"</span>DiskThreshold<span class="pl-pds">"</span></span>,
<span class="pl-ent">"decision"</span> : <span class="pl-s"><span class="pl-pds">"</span>YES<span class="pl-pds">"</span></span>,
<span class="pl-ent">"explanation"</span> : <span class="pl-s"><span class="pl-pds">"</span>disk threshold decider disabled<span class="pl-pds">"</span></span>
}, {
<span class="pl-ent">"decider"</span> : <span class="pl-s"><span class="pl-pds">"</span>SnapshotInProgress<span class="pl-pds">"</span></span>,
<span class="pl-ent">"decision"</span> : <span class="pl-s"><span class="pl-pds">"</span>YES<span class="pl-pds">"</span></span>,
<span class="pl-ent">"explanation"</span> : <span class="pl-s"><span class="pl-pds">"</span>no snapshots are currently running<span class="pl-pds">"</span></span>
} ]
} ]
}</pre></div> | 0 |
<p dir="auto">DataFrame provides <em>repr_html</em> so it looks great when it's displayed in a Jupyter notebook. Why not Series?</p> | <p dir="auto">Not sure if it's always been this way or if refactoring broke something.<br>
In any case it looks strange when in ipnb:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/7fe20a2ae042fafdd7b61eff37454054d2ba8507a21c40c83bacc5ef52f6e09d/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f313832303836362f313538373235312f38376231396163652d353233352d313165332d383164392d6561626637653334326435332e706e67"><img src="https://camo.githubusercontent.com/7fe20a2ae042fafdd7b61eff37454054d2ba8507a21c40c83bacc5ef52f6e09d/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f313832303836362f313538373235312f38376231396163652d353233352d313165332d383164392d6561626637653334326435332e706e67" alt="series repr" data-canonical-src="https://f.cloud.github.com/assets/1820866/1587251/87b19ace-5235-11e3-81d9-eabf7e342d53.png" style="max-width: 100%;"></a></p>
<p dir="auto">related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="22941825" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/5550" data-hovercard-type="pull_request" data-hovercard-url="/pandas-dev/pandas/pull/5550/hovercard" href="https://github.com/pandas-dev/pandas/pull/5550">#5550</a>, making reprs consistent.</p> | 1 |
<h3 dir="auto">Which version of ShardingSphere did you use?</h3>
<ul dir="auto">
<li>ShardingSphere-Proxy 5.1.1.</li>
<li>mysql 8.0.25</li>
</ul>
<h3 dir="auto">Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy?</h3>
<p dir="auto">ShardingSphere-Proxy</p>
<h3 dir="auto">Expected behavior</h3>
<p dir="auto">Execute all sql code</p>
<h3 dir="auto">Actual behavior</h3>
<p dir="auto">Some of them will be ignored</p>
<h3 dir="auto">Reason analyze (If you can)</h3>
<p dir="auto">Asynchronous problem</p>
<h3 dir="auto">Steps to reproduce the behavior, such as: SQL to execute, sharding rule configuration, when exception occur etc.</h3>
<p dir="auto">1.write sharding rules (distsql) and save a file.<br>
2. login mysql.<br>
3. create database and use it.<br>
4. input command:</p>
<div class="highlight highlight-source-sql notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="source [file path]"><pre class="notranslate">source [file <span class="pl-k">path</span>]</pre></div>
<p dir="auto">5.View the created sharding rules</p>
<div class="highlight highlight-source-sql notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" show sharding table rules;"><pre class="notranslate"> show sharding table rules;</pre></div>
<p dir="auto">You will find that some rules are not created successfully.</p>
<p dir="auto">6.Add code between rules creation</p>
<div class="highlight highlight-source-sql notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="The select sleep (0.1);"><pre class="notranslate">The <span class="pl-k">select</span> sleep (<span class="pl-c1">0</span>.<span class="pl-c1">1</span>);</pre></div>
<p dir="auto">Repeating the above process solves the problem</p>
<h3 dir="auto">Example codes for reproduce this issue (such as a github link).</h3>
<p dir="auto">The files that need to be executed are as follows</p>
<div class="highlight highlight-source-sql notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="ADD RESOURCE test_0 (
HOST=127.0.0.1,
PORT=3306,
DB=test_0,
USER=root,
PASSWORD=root
),test_1 (
HOST=127.0.0.1,
PORT=3306,
DB=test_1,
USER=root,
PASSWORD=root
);
CREATE DEFAULT SINGLE TABLE RULE RESOURCE = test_0;
CREATE SHARDING TABLE RULE test1 (
DATANODES("test_${0..1}.test1"),
DATABASE_STRATEGY(TYPE=standard,SHARDING_COLUMN=PlayerID,SHARDING_ALGORITHM(TYPE(NAME=BOUNDARY_RANGE,PROPERTIES("sharding-ranges"=20001))))
);
CREATE SHARDING TABLE RULE test2 (
DATANODES("test_${0..1}.test2"),
DATABASE_STRATEGY(TYPE=standard,SHARDING_COLUMN=PlayerID,SHARDING_ALGORITHM(TYPE(NAME=BOUNDARY_RANGE,PROPERTIES("sharding-ranges"=20001))))
);
CREATE SHARDING TABLE RULE test3(
DATANODES("test_${0..1}.test3"),
DATABASE_STRATEGY(TYPE=standard,SHARDING_COLUMN=PlayerID,SHARDING_ALGORITHM(TYPE(NAME=BOUNDARY_RANGE,PROPERTIES("sharding-ranges"=20001))))
);
CREATE SHARDING TABLE RULE test4 (
DATANODES("test_${0..1}.test4"),
DATABASE_STRATEGY(TYPE=standard,SHARDING_COLUMN=PlayerID,SHARDING_ALGORITHM(TYPE(NAME=BOUNDARY_RANGE,PROPERTIES("sharding-ranges"=20001))))
);
CREATE SHARDING TABLE RULE test5 (
DATANODES("test_${0..1}.test5"),
DATABASE_STRATEGY(TYPE=standard,SHARDING_COLUMN=PlayerID,SHARDING_ALGORITHM(TYPE(NAME=BOUNDARY_RANGE,PROPERTIES("sharding-ranges"=20001))))
);
CREATE SHARDING TABLE RULE test6 (
DATANODES("test_${0..1}.test6"),
DATABASE_STRATEGY(TYPE=standard,SHARDING_COLUMN=PlayerID,SHARDING_ALGORITHM(TYPE(NAME=BOUNDARY_RANGE,PROPERTIES("sharding-ranges"=20001))))
);
CREATE SHARDING TABLE RULE test7 (
DATANODES("test_${0..1}.test7"),
DATABASE_STRATEGY(TYPE=standard,SHARDING_COLUMN=PlayerID,SHARDING_ALGORITHM(TYPE(NAME=BOUNDARY_RANGE,PROPERTIES("sharding-ranges"=20001))))
);
CREATE SHARDING TABLE RULE test8 (
DATANODES("test_${0..1}.test8"),
DATABASE_STRATEGY(TYPE=standard,SHARDING_COLUMN=PlayerID,SHARDING_ALGORITHM(TYPE(NAME=BOUNDARY_RANGE,PROPERTIES("sharding-ranges"=20001))))
);
CREATE SHARDING TABLE RULE test9 (
DATANODES("test_${0..1}.test9"),
DATABASE_STRATEGY(TYPE=standard,SHARDING_COLUMN=PlayerID,SHARDING_ALGORITHM(TYPE(NAME=BOUNDARY_RANGE,PROPERTIES("sharding-ranges"=20001))))
);
CREATE SHARDING TABLE RULE test10 (
DATANODES("test_${0..1}.test10"),
DATABASE_STRATEGY(TYPE=standard,SHARDING_COLUMN=PlayerID,SHARDING_ALGORITHM(TYPE(NAME=BOUNDARY_RANGE,PROPERTIES("sharding-ranges"=20001))))
);"><pre class="notranslate">ADD RESOURCE test_0 (
HOST<span class="pl-k">=</span><span class="pl-c1">127</span>.<span class="pl-c1">0</span>.<span class="pl-c1">0</span>.<span class="pl-c1">1</span>,
PORT<span class="pl-k">=</span><span class="pl-c1">3306</span>,
DB<span class="pl-k">=</span>test_0,
USER<span class="pl-k">=</span>root,
PASSWORD<span class="pl-k">=</span>root
),test_1 (
HOST<span class="pl-k">=</span><span class="pl-c1">127</span>.<span class="pl-c1">0</span>.<span class="pl-c1">0</span>.<span class="pl-c1">1</span>,
PORT<span class="pl-k">=</span><span class="pl-c1">3306</span>,
DB<span class="pl-k">=</span>test_1,
USER<span class="pl-k">=</span>root,
PASSWORD<span class="pl-k">=</span>root
);
CREATE DEFAULT SINGLE TABLE RULE RESOURCE <span class="pl-k">=</span> test_0;
CREATE SHARDING TABLE RULE test1 (
DATANODES(<span class="pl-s"><span class="pl-pds">"</span>test_${0..1}.test1<span class="pl-pds">"</span></span>),
DATABASE_STRATEGY(TYPE<span class="pl-k">=</span>standard,SHARDING_COLUMN<span class="pl-k">=</span>PlayerID,SHARDING_ALGORITHM(TYPE(NAME<span class="pl-k">=</span>BOUNDARY_RANGE,PROPERTIES(<span class="pl-s"><span class="pl-pds">"</span>sharding-ranges<span class="pl-pds">"</span></span><span class="pl-k">=</span><span class="pl-c1">20001</span>))))
);
CREATE SHARDING TABLE RULE test2 (
DATANODES(<span class="pl-s"><span class="pl-pds">"</span>test_${0..1}.test2<span class="pl-pds">"</span></span>),
DATABASE_STRATEGY(TYPE<span class="pl-k">=</span>standard,SHARDING_COLUMN<span class="pl-k">=</span>PlayerID,SHARDING_ALGORITHM(TYPE(NAME<span class="pl-k">=</span>BOUNDARY_RANGE,PROPERTIES(<span class="pl-s"><span class="pl-pds">"</span>sharding-ranges<span class="pl-pds">"</span></span><span class="pl-k">=</span><span class="pl-c1">20001</span>))))
);
CREATE SHARDING TABLE RULE test3(
DATANODES(<span class="pl-s"><span class="pl-pds">"</span>test_${0..1}.test3<span class="pl-pds">"</span></span>),
DATABASE_STRATEGY(TYPE<span class="pl-k">=</span>standard,SHARDING_COLUMN<span class="pl-k">=</span>PlayerID,SHARDING_ALGORITHM(TYPE(NAME<span class="pl-k">=</span>BOUNDARY_RANGE,PROPERTIES(<span class="pl-s"><span class="pl-pds">"</span>sharding-ranges<span class="pl-pds">"</span></span><span class="pl-k">=</span><span class="pl-c1">20001</span>))))
);
CREATE SHARDING TABLE RULE test4 (
DATANODES(<span class="pl-s"><span class="pl-pds">"</span>test_${0..1}.test4<span class="pl-pds">"</span></span>),
DATABASE_STRATEGY(TYPE<span class="pl-k">=</span>standard,SHARDING_COLUMN<span class="pl-k">=</span>PlayerID,SHARDING_ALGORITHM(TYPE(NAME<span class="pl-k">=</span>BOUNDARY_RANGE,PROPERTIES(<span class="pl-s"><span class="pl-pds">"</span>sharding-ranges<span class="pl-pds">"</span></span><span class="pl-k">=</span><span class="pl-c1">20001</span>))))
);
CREATE SHARDING TABLE RULE test5 (
DATANODES(<span class="pl-s"><span class="pl-pds">"</span>test_${0..1}.test5<span class="pl-pds">"</span></span>),
DATABASE_STRATEGY(TYPE<span class="pl-k">=</span>standard,SHARDING_COLUMN<span class="pl-k">=</span>PlayerID,SHARDING_ALGORITHM(TYPE(NAME<span class="pl-k">=</span>BOUNDARY_RANGE,PROPERTIES(<span class="pl-s"><span class="pl-pds">"</span>sharding-ranges<span class="pl-pds">"</span></span><span class="pl-k">=</span><span class="pl-c1">20001</span>))))
);
CREATE SHARDING TABLE RULE test6 (
DATANODES(<span class="pl-s"><span class="pl-pds">"</span>test_${0..1}.test6<span class="pl-pds">"</span></span>),
DATABASE_STRATEGY(TYPE<span class="pl-k">=</span>standard,SHARDING_COLUMN<span class="pl-k">=</span>PlayerID,SHARDING_ALGORITHM(TYPE(NAME<span class="pl-k">=</span>BOUNDARY_RANGE,PROPERTIES(<span class="pl-s"><span class="pl-pds">"</span>sharding-ranges<span class="pl-pds">"</span></span><span class="pl-k">=</span><span class="pl-c1">20001</span>))))
);
CREATE SHARDING TABLE RULE test7 (
DATANODES(<span class="pl-s"><span class="pl-pds">"</span>test_${0..1}.test7<span class="pl-pds">"</span></span>),
DATABASE_STRATEGY(TYPE<span class="pl-k">=</span>standard,SHARDING_COLUMN<span class="pl-k">=</span>PlayerID,SHARDING_ALGORITHM(TYPE(NAME<span class="pl-k">=</span>BOUNDARY_RANGE,PROPERTIES(<span class="pl-s"><span class="pl-pds">"</span>sharding-ranges<span class="pl-pds">"</span></span><span class="pl-k">=</span><span class="pl-c1">20001</span>))))
);
CREATE SHARDING TABLE RULE test8 (
DATANODES(<span class="pl-s"><span class="pl-pds">"</span>test_${0..1}.test8<span class="pl-pds">"</span></span>),
DATABASE_STRATEGY(TYPE<span class="pl-k">=</span>standard,SHARDING_COLUMN<span class="pl-k">=</span>PlayerID,SHARDING_ALGORITHM(TYPE(NAME<span class="pl-k">=</span>BOUNDARY_RANGE,PROPERTIES(<span class="pl-s"><span class="pl-pds">"</span>sharding-ranges<span class="pl-pds">"</span></span><span class="pl-k">=</span><span class="pl-c1">20001</span>))))
);
CREATE SHARDING TABLE RULE test9 (
DATANODES(<span class="pl-s"><span class="pl-pds">"</span>test_${0..1}.test9<span class="pl-pds">"</span></span>),
DATABASE_STRATEGY(TYPE<span class="pl-k">=</span>standard,SHARDING_COLUMN<span class="pl-k">=</span>PlayerID,SHARDING_ALGORITHM(TYPE(NAME<span class="pl-k">=</span>BOUNDARY_RANGE,PROPERTIES(<span class="pl-s"><span class="pl-pds">"</span>sharding-ranges<span class="pl-pds">"</span></span><span class="pl-k">=</span><span class="pl-c1">20001</span>))))
);
CREATE SHARDING TABLE RULE test10 (
DATANODES(<span class="pl-s"><span class="pl-pds">"</span>test_${0..1}.test10<span class="pl-pds">"</span></span>),
DATABASE_STRATEGY(TYPE<span class="pl-k">=</span>standard,SHARDING_COLUMN<span class="pl-k">=</span>PlayerID,SHARDING_ALGORITHM(TYPE(NAME<span class="pl-k">=</span>BOUNDARY_RANGE,PROPERTIES(<span class="pl-s"><span class="pl-pds">"</span>sharding-ranges<span class="pl-pds">"</span></span><span class="pl-k">=</span><span class="pl-c1">20001</span>))))
);</pre></div> | <p dir="auto">There are 7000 tables in the test target library, and the default value will start slowly, and the high setting value will lead to the soaring cpu and iops of the database</p> | 0 |
<p dir="auto">The layout of fancyzones depends on the number of programs active</p>
<p dir="auto">When only one program is active, win + up maximizes<br>
Two programs, user preselects between split-screen or emphasis on either program<br>
Three, preselection between all the configurations for three programs</p>
<p dir="auto">If a new program opens, the rest auto-resize to the next fancy zones layout. This is intended for users that have a dynamic quantity of programs open and do not wish to manually adjust fancy zones settings as it is faster to manually drag</p> | <h2 dir="auto"><g-emoji class="g-emoji" alias="information_source" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2139.png">ℹ</g-emoji> Computer information</h2>
<ul dir="auto">
<li>Windows build number: 18363.959</li>
<li>PowerToys version: 0.20</li>
<li>PowerToy module: Color Picker</li>
</ul>
<h2 dir="auto"><g-emoji class="g-emoji" alias="memo" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f4dd.png">📝</g-emoji> Provide detailed reproduction steps (if any)</h2>
<ol dir="auto">
<li>Open the color picker</li>
<li>Hover over a link in chrome</li>
<li>The link's tooltip shows over top of the color picker</li>
</ol>
<h3 dir="auto"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png">✔️</g-emoji> Expected result</h3>
<p dir="auto">For the color picker to remain on top</p>
<h3 dir="auto"><g-emoji class="g-emoji" alias="x" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/274c.png">❌</g-emoji> Actual result</h3>
<p dir="auto">The color picker is hidden by the tooltip</p>
<h2 dir="auto"><g-emoji class="g-emoji" alias="camera" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f4f7.png">📷</g-emoji> Screenshots</h2>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/831974/89136046-9df43e00-d4ff-11ea-849c-b8afe03b95fa.png"><img src="https://user-images.githubusercontent.com/831974/89136046-9df43e00-d4ff-11ea-849c-b8afe03b95fa.png" alt="image" style="max-width: 100%;"></a></p> | 0 |
<p dir="auto">I had a series containing strings like these:</p>
<p dir="auto">"November 1, 2013"</p>
<p dir="auto">Series length was about 500,000</p>
<p dir="auto">A)<br>
running pd.to_datetime(s) takes just over a minute.<br>
B)<br>
running pd.to_datetime(s, format="%B %d, %Y") takes about 7 seconds!</p>
<p dir="auto">My suggestion is a way to make case A (where user doesn't specify the format type) take about as long as case B (user does specify).</p>
<p dir="auto">Basically it looks like the code is always using date_util parser for case A.</p>
<p dir="auto">My suggestion is based upon the idea that it's highly likely that the date strings are all in a consistent format (it's highly unlikely in this case that they would be in 500K separate formats!).</p>
<p dir="auto">In a nutshell:</p>
<ul dir="auto">
<li>figure out the date format of the first entry.</li>
<li>try to use that against the entire series, using the speedy code in tslib.array_strptime</li>
<li>if that works, we've saved heaps of time, if not fall back to the current slower behaviour of using dateutil parse each time.</li>
</ul>
<p dir="auto">Here's some pseudo-code::</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="datestr1 = s[0]
# I'm assuming dateutil has something like this, that can tell you what the format is for a given date string.
date_format = figure_out_datetime_format(datestr1)
try:
# use the super speed code that pandas uses when you tell it what the format is.
dt_series = tslib.array_strptime(s, format=datestr1, *, ...)
except:
# date strings aren't consistent after all. Let's do it the old slow way.
dt_series = tslib.array_to_datetime(s, format=None)"><pre class="notranslate"><code class="notranslate">datestr1 = s[0]
# I'm assuming dateutil has something like this, that can tell you what the format is for a given date string.
date_format = figure_out_datetime_format(datestr1)
try:
# use the super speed code that pandas uses when you tell it what the format is.
dt_series = tslib.array_strptime(s, format=datestr1, *, ...)
except:
# date strings aren't consistent after all. Let's do it the old slow way.
dt_series = tslib.array_to_datetime(s, format=None)
</code></pre></div>
<p dir="auto">return dt_series</p> | <h4 dir="auto">Code Sample, a copy-pastable example if possible</h4>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import pandas as pd
import numpy as np
df = pd.DataFrame({'a': [1, 10, 8, 11, 8],
'b': list('abdce'),
'c': [1.0, 2.0, np.nan, 3.0, 4.0]})
print('_________')
print(df.nlargest(10,['a','b']))"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">pandas</span> <span class="pl-k">as</span> <span class="pl-s1">pd</span>
<span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-s1">df</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>({<span class="pl-s">'a'</span>: [<span class="pl-c1">1</span>, <span class="pl-c1">10</span>, <span class="pl-c1">8</span>, <span class="pl-c1">11</span>, <span class="pl-c1">8</span>],
<span class="pl-s">'b'</span>: <span class="pl-en">list</span>(<span class="pl-s">'abdce'</span>),
<span class="pl-s">'c'</span>: [<span class="pl-c1">1.0</span>, <span class="pl-c1">2.0</span>, <span class="pl-s1">np</span>.<span class="pl-s1">nan</span>, <span class="pl-c1">3.0</span>, <span class="pl-c1">4.0</span>]})
<span class="pl-en">print</span>(<span class="pl-s">'_________'</span>)
<span class="pl-en">print</span>(<span class="pl-s1">df</span>.<span class="pl-en">nlargest</span>(<span class="pl-c1">10</span>,[<span class="pl-s">'a'</span>,<span class="pl-s">'b'</span>]))</pre></div>
<h4 dir="auto">Problem description</h4>
<p dir="auto">DataFrame的nlargest在遇到rank相同的情况时,结果错误。如下,第二行和第四行反复出现了。</p>
<h4 dir="auto">Expected Output</h4>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" a b c
3 11 c 3.0
1 10 b 2.0
2 8 d NaN
4 8 e 4.0
2 8 d NaN
4 8 e 4.0
0 1 a 1.0
[Finished in 0.6s]"><pre class="notranslate"><code class="notranslate"> a b c
3 11 c 3.0
1 10 b 2.0
2 8 d NaN
4 8 e 4.0
2 8 d NaN
4 8 e 4.0
0 1 a 1.0
[Finished in 0.6s]
</code></pre></div>
<h4 dir="auto">Output of <code class="notranslate">pd.show_versions()</code></h4>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="INSTALLED VERSIONS
------------------
commit: None
python: 3.6.0.final.0
python-bits: 64
OS: Windows
OS-release: 10
machine: AMD64
processor: Intel64 Family 6 Model 94 Stepping 3, GenuineIntel
byteorder: little
LC_ALL: None
LANG: None
LOCALE: None.None"><pre class="notranslate"><code class="notranslate">INSTALLED VERSIONS
------------------
commit: None
python: 3.6.0.final.0
python-bits: 64
OS: Windows
OS-release: 10
machine: AMD64
processor: Intel64 Family 6 Model 94 Stepping 3, GenuineIntel
byteorder: little
LC_ALL: None
LANG: None
LOCALE: None.None
</code></pre></div> | 0 |
<p dir="auto"><strong>Scenario 1</strong><br>
This is a very simplified scenario but captures the problem we are facing.</p>
<p dir="auto">We have a team lead document with a field for “Primary Product” and a field for “Secondary Product”. We want to show the distribution of all products amongst team leads. To do so we would do a term aggregation on “Primary Product” and a term aggregation on “Secondary Product”.</p>
<p dir="auto">As this is the same products we want to merge the buckets together (done manually). This is simple to do with the term aggregation but has a problem. If both fields have the product, the document count will be one more than it should be once you merge the buckets. We need a way to realise if a document is already included in the count of the first aggregation, so we don’t add the same document from the second aggregation.</p>
<p dir="auto"><strong>Scenario 2</strong><br>
This next scenario is similar to our actual use case where we make use of nested documents but it is the same problem as above.</p>
<p dir="auto">Each team lead is a top level document nested with team members. We then want to show the distribution of teams that contain males or females, assuming a single team leader exists per team.</p>
<p dir="auto">Again we would run two aggregations. For team leaders this would be a term aggregation on gender. For team members this would be a nested term aggregation on gender followed by a reverse nested aggregation to get team leader counts for each gender. The two aggregation result buckets would then have to be manually combined. But it’s the same problem of working out when a team lead was already included in the first aggregation so any duplicate team leads that match in the second aggregation can be ignored. (The aggregation we would use can be seen here <a href="https://gist.github.com/SMUnlimited/86e03e8f59ac6a09935c">https://gist.github.com/SMUnlimited/86e03e8f59ac6a09935c</a>)</p>
<p dir="auto">Another solution could be to include the team lead himself as a nested team member so we can just do a single nested term aggregation followed by a reverse nested aggregation to get the team member counts. But this means you are duplicating all the team lead data which is not ideal.</p>
<p dir="auto"><g-emoji class="g-emoji" alias="boom" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f4a5.png">💥</g-emoji> What do people think would be the best way to solve this problem?</p>
<p dir="auto"><em>Note we haven’t thought about other types of aggregations yet (some may not be as straightforward to merge buckets) but in theory could also be applied.</em></p> | <p dir="auto">I can't seem to update the license. Not sure if I am doing something wrong, but at this point it is beginning to seem like a bug:<br>
<code class="notranslate">root@esdata0:/usr/share/elasticsearch/bin/x-pack# curl -u infegy esdata0:9200Enter host password for user 'infegy': { "name" : "data0", "cluster_name" : "atlantis", "version" : { "number" : "5.0.0-alpha5", "build_hash" : "d327dd4", "build_date" : "2016-08-04T08:59:39.568Z", "build_snapshot" : false, "lucene_version" : "6.1.0" }, "tagline" : "You Know, for Search" } </code></p>
<p dir="auto"><code class="notranslate">root@esdata0:/usr/share/elasticsearch/bin/x-pack# ./users list admin : superuser infegy : superuser</code></p>
<p dir="auto"><code class="notranslate">root@esdata0:/usr/share/elasticsearch/bin/x-pack# curl -XPUT -u infegy esdata0:9200/_xpack/license -d @/root/basic_license.json Enter host password for user 'infegy': curl: (52) Empty reply from server</code><br>
which coincides with:<br>
<code class="notranslate">[2016-09-23 20:17:14,401][WARN ][xpack.security.transport.netty4] [data0] caught exception while handling client http traffic, closing connection [id: 0xcc27ef9c, L:/10.17.218.166:9200 - R:/10.17.218.166:37552] java.lang.UnsupportedOperationException: unsupported message type: DefaultFullHttpResponse (expected: ByteBuf, FileRegion) at io.netty.channel.nio.AbstractNioByteChannel.filterOutboundMessage(AbstractNioByteChannel.java:260) at io.netty.channel.AbstractChannel$AbstractUnsafe.write(AbstractChannel.java:799) at io.netty.channel.DefaultChannelPipeline$HeadContext.write(DefaultChannelPipeline.java:1291) at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:748) at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:811) at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:824) at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:804) at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:841) at io.netty.handler.codec.MessageAggregator.decode(MessageAggregator.java:222) at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:88) at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:372) at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:358) at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:350) at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:102) at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:372) at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:358) at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:350) at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:293) at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:267) at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:372) at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:358) at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:350) at io.netty.channel.ChannelInboundHandlerAdapter.channelRead(ChannelInboundHandlerAdapter.java:86) at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:372) at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:358) at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:350) at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1334) at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:372) at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:358) at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:926) at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:129) at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:571) at io.netty.channel.nio.NioEventLoop.processSelectedKeysPlain(NioEventLoop.java:474) at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:428) at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:398) at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:877) at java.lang.Thread.run(Thread.java:745)</code></p>
<p dir="auto"><strong>Elasticsearch version</strong>:</p>
<p dir="auto"><strong>Plugins installed</strong>: []</p>
<p dir="auto"><strong>JVM version</strong>:</p>
<p dir="auto"><strong>OS version</strong>:</p>
<p dir="auto"><strong>Description of the problem including expected versus actual behavior</strong>:</p>
<p dir="auto"><strong>Steps to reproduce</strong>:<br>
1.<br>
2.<br>
3.</p>
<p dir="auto"><strong>Provide logs (if relevant)</strong>:</p>
<p dir="auto"><strong>Describe the feature</strong>:</p> | 0 |
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[jakob@aspire hyper]$ RUST_BACKTRACE=1 cargo build
Compiling hyper v0.0.1 (file:///home/jakob/devel/hyper)
<std macros>:3:24: 119:30 error: type `http::HttpWriter<std::io::buffered::BufferedWriter<Box<net::NetworkStream+Send>>>` cannot be dereferenced
<std macros>:3 let dst = &mut *$dst;
<std macros>:4 format_args!(|args| { dst.write_fmt(args) }, $($arg)*)
<std macros>:5 })
<std macros>:6 )
error: internal compiler error: unexpected panic
note: the compiler unexpectedly panicked. this is a bug.
note: we would appreciate a bug report: http://doc.rust-lang.org/complement-bugreport.html
note: run with `RUST_BACKTRACE=1` for a backtrace
task 'rustc' panicked at 'index out of bounds: the len is 6 but the index is 6', /home/rustbuild/src/rust-buildbot/slave/nightly-linux/build/src/libsyntax/lib.rs:1
stack backtrace:
1: 0x7f86a65479c0 - rt::backtrace::imp::write::h7fe8534f465d0e09y9s
2: 0x7f86a654ab60 - failure::on_fail::h3fe2ecde6aab0bb8rwt
3: 0x7f86a6d07c80 - unwind::begin_unwind_inner::he6bc2073d4eb582enbd
4: 0x7f86a6d07900 - unwind::begin_unwind_fmt::h305b4b28825355b2y8c
5: 0x7f86a6d078c0 - rust_begin_unwind
6: 0x7f86a6d4da70 - panicking::panic_fmt::h9d03fcf6b4c3f8e10Nl
7: 0x7f86a6d52e60 - panicking::panic_bounds_check::h5c6357fea6530f04yMl
8: 0x7f86a43bb130 - codemap::FileMap::get_line::h8bd7cfe56e6cfd5e1aF
9: 0x7f86a43e99b0 - diagnostic::emit::h2322127ddc0c36debCG
10: 0x7f86a43e63d0 - diagnostic::EmitterWriter.Emitter::emit::hb9a4d5c26c04e1df0xG
11: 0x7f86a43e4c50 - diagnostic::Handler::emit::ha390aea82acc4940kfG
12: 0x7f86a43b7910 - diagnostic::SpanHandler::span_err::h83b27707d23c7bfej3F
13: 0x7f86a57b5720 - middle::typeck::infer::InferCtxt<'a, 'tcx>::type_error_message_str_with_expected::h72941615d6be270289E
14: 0x7f86a56c1840 - middle::typeck::infer::InferCtxt<'a, 'tcx>::type_error_message::h3e78576a7aeba36csfF
15: 0x7f86a56caf70 - middle::typeck::check::check_expr_with_unifier::h23742768f253d831DLl
16: 0x7f86a56caf70 - middle::typeck::check::check_expr_with_unifier::h23742768f253d831DLl
17: 0x7f86a573fc40 - middle::typeck::check::check_decl_local::h24893462a5fe4409xSn
18: 0x7f86a573fe00 - middle::typeck::check::check_stmt::h1ca15bfe8a7d5a87xUn
19: 0x7f86a5679d90 - middle::typeck::check::check_block_with_expected::heebc1a2b04a42760MYn
20: 0x7f86a56caf70 - middle::typeck::check::check_expr_with_unifier::h23742768f253d831DLl
21: 0x7f86a55f6100 - middle::typeck::check::_match::check_match::h2c871678897b201eeA8
22: 0x7f86a56caf70 - middle::typeck::check::check_expr_with_unifier::h23742768f253d831DLl
23: 0x7f86a5679d90 - middle::typeck::check::check_block_with_expected::heebc1a2b04a42760MYn
24: 0x7f86a56caf70 - middle::typeck::check::check_expr_with_unifier::h23742768f253d831DLl
25: 0x7f86a573fe00 - middle::typeck::check::check_stmt::h1ca15bfe8a7d5a87xUn
26: 0x7f86a5679d90 - middle::typeck::check::check_block_with_expected::heebc1a2b04a42760MYn
27: 0x7f86a5675810 - middle::typeck::check::check_fn::hd39b1b6b62f22c3fici
28: 0x7f86a5675530 - middle::typeck::check::check_bare_fn::h779ff7b2db70ca5bn1h
29: 0x7f86a567cda0 - middle::typeck::check::check_method_body::h6418d5a11969c3d7nwi
30: 0x7f86a5671310 - middle::typeck::check::check_item::hde22067b8b575546vli
31: 0x7f86a5674e60 - visit::walk_mod::h974639367282189498
32: 0x7f86a5674e60 - visit::walk_mod::h974639367282189498
33: 0x7f86a56751c0 - middle::typeck::check::check_item_types::h7118271db2ab8ea8x0h
34: 0x7f86a5a61e10 - util::common::time::h4997555828079517418
35: 0x7f86a5a61020 - middle::typeck::check_crate::h0949dffd97487b5ejVL
36: 0x7f86a720ba10 - driver::driver::phase_3_run_analysis_passes::h7f3610cf195b4c3abfS
37: 0x7f86a7200830 - driver::driver::compile_input::h13734d451479d6e7VVR
38: 0x7f86a72857b0 - driver::run_compiler::h0a1cb9376c105f68pUT
39: 0x7f86a72856a0 - driver::run::closure.59745
40: 0x7f86a7091ee0 - task::TaskBuilder<S>::try_future::closure.39051
41: 0x7f86a7091cd0 - task::TaskBuilder<S>::spawn_internal::closure.39022
42: 0x7f86a75a5b90 - task::NativeSpawner.Spawner::spawn::closure.2472
43: 0x7f86a6d604c0 - rust_try_inner
44: 0x7f86a6d604b0 - rust_try
45: 0x7f86a6d055e0 - unwind::try::h7c27f4e149aed3f2IZc
46: 0x7f86a6d05470 - task::Task::run::h75863ac7ddab20c0y5b
47: 0x7f86a75a58d0 - task::NativeSpawner.Spawner::spawn::closure.2398
48: 0x7f86a6d06c90 - thread::thread_start::h7822af80b22f729bEqc
49: 0x7f86a15d0460 - start_thread
50: 0x7f86a69db749 - clone
51: 0x0 - <unknown>
Could not compile `hyper`."><pre class="notranslate"><code class="notranslate">[jakob@aspire hyper]$ RUST_BACKTRACE=1 cargo build
Compiling hyper v0.0.1 (file:///home/jakob/devel/hyper)
<std macros>:3:24: 119:30 error: type `http::HttpWriter<std::io::buffered::BufferedWriter<Box<net::NetworkStream+Send>>>` cannot be dereferenced
<std macros>:3 let dst = &mut *$dst;
<std macros>:4 format_args!(|args| { dst.write_fmt(args) }, $($arg)*)
<std macros>:5 })
<std macros>:6 )
error: internal compiler error: unexpected panic
note: the compiler unexpectedly panicked. this is a bug.
note: we would appreciate a bug report: http://doc.rust-lang.org/complement-bugreport.html
note: run with `RUST_BACKTRACE=1` for a backtrace
task 'rustc' panicked at 'index out of bounds: the len is 6 but the index is 6', /home/rustbuild/src/rust-buildbot/slave/nightly-linux/build/src/libsyntax/lib.rs:1
stack backtrace:
1: 0x7f86a65479c0 - rt::backtrace::imp::write::h7fe8534f465d0e09y9s
2: 0x7f86a654ab60 - failure::on_fail::h3fe2ecde6aab0bb8rwt
3: 0x7f86a6d07c80 - unwind::begin_unwind_inner::he6bc2073d4eb582enbd
4: 0x7f86a6d07900 - unwind::begin_unwind_fmt::h305b4b28825355b2y8c
5: 0x7f86a6d078c0 - rust_begin_unwind
6: 0x7f86a6d4da70 - panicking::panic_fmt::h9d03fcf6b4c3f8e10Nl
7: 0x7f86a6d52e60 - panicking::panic_bounds_check::h5c6357fea6530f04yMl
8: 0x7f86a43bb130 - codemap::FileMap::get_line::h8bd7cfe56e6cfd5e1aF
9: 0x7f86a43e99b0 - diagnostic::emit::h2322127ddc0c36debCG
10: 0x7f86a43e63d0 - diagnostic::EmitterWriter.Emitter::emit::hb9a4d5c26c04e1df0xG
11: 0x7f86a43e4c50 - diagnostic::Handler::emit::ha390aea82acc4940kfG
12: 0x7f86a43b7910 - diagnostic::SpanHandler::span_err::h83b27707d23c7bfej3F
13: 0x7f86a57b5720 - middle::typeck::infer::InferCtxt<'a, 'tcx>::type_error_message_str_with_expected::h72941615d6be270289E
14: 0x7f86a56c1840 - middle::typeck::infer::InferCtxt<'a, 'tcx>::type_error_message::h3e78576a7aeba36csfF
15: 0x7f86a56caf70 - middle::typeck::check::check_expr_with_unifier::h23742768f253d831DLl
16: 0x7f86a56caf70 - middle::typeck::check::check_expr_with_unifier::h23742768f253d831DLl
17: 0x7f86a573fc40 - middle::typeck::check::check_decl_local::h24893462a5fe4409xSn
18: 0x7f86a573fe00 - middle::typeck::check::check_stmt::h1ca15bfe8a7d5a87xUn
19: 0x7f86a5679d90 - middle::typeck::check::check_block_with_expected::heebc1a2b04a42760MYn
20: 0x7f86a56caf70 - middle::typeck::check::check_expr_with_unifier::h23742768f253d831DLl
21: 0x7f86a55f6100 - middle::typeck::check::_match::check_match::h2c871678897b201eeA8
22: 0x7f86a56caf70 - middle::typeck::check::check_expr_with_unifier::h23742768f253d831DLl
23: 0x7f86a5679d90 - middle::typeck::check::check_block_with_expected::heebc1a2b04a42760MYn
24: 0x7f86a56caf70 - middle::typeck::check::check_expr_with_unifier::h23742768f253d831DLl
25: 0x7f86a573fe00 - middle::typeck::check::check_stmt::h1ca15bfe8a7d5a87xUn
26: 0x7f86a5679d90 - middle::typeck::check::check_block_with_expected::heebc1a2b04a42760MYn
27: 0x7f86a5675810 - middle::typeck::check::check_fn::hd39b1b6b62f22c3fici
28: 0x7f86a5675530 - middle::typeck::check::check_bare_fn::h779ff7b2db70ca5bn1h
29: 0x7f86a567cda0 - middle::typeck::check::check_method_body::h6418d5a11969c3d7nwi
30: 0x7f86a5671310 - middle::typeck::check::check_item::hde22067b8b575546vli
31: 0x7f86a5674e60 - visit::walk_mod::h974639367282189498
32: 0x7f86a5674e60 - visit::walk_mod::h974639367282189498
33: 0x7f86a56751c0 - middle::typeck::check::check_item_types::h7118271db2ab8ea8x0h
34: 0x7f86a5a61e10 - util::common::time::h4997555828079517418
35: 0x7f86a5a61020 - middle::typeck::check_crate::h0949dffd97487b5ejVL
36: 0x7f86a720ba10 - driver::driver::phase_3_run_analysis_passes::h7f3610cf195b4c3abfS
37: 0x7f86a7200830 - driver::driver::compile_input::h13734d451479d6e7VVR
38: 0x7f86a72857b0 - driver::run_compiler::h0a1cb9376c105f68pUT
39: 0x7f86a72856a0 - driver::run::closure.59745
40: 0x7f86a7091ee0 - task::TaskBuilder<S>::try_future::closure.39051
41: 0x7f86a7091cd0 - task::TaskBuilder<S>::spawn_internal::closure.39022
42: 0x7f86a75a5b90 - task::NativeSpawner.Spawner::spawn::closure.2472
43: 0x7f86a6d604c0 - rust_try_inner
44: 0x7f86a6d604b0 - rust_try
45: 0x7f86a6d055e0 - unwind::try::h7c27f4e149aed3f2IZc
46: 0x7f86a6d05470 - task::Task::run::h75863ac7ddab20c0y5b
47: 0x7f86a75a58d0 - task::NativeSpawner.Spawner::spawn::closure.2398
48: 0x7f86a6d06c90 - thread::thread_start::h7822af80b22f729bEqc
49: 0x7f86a15d0460 - start_thread
50: 0x7f86a69db749 - clone
51: 0x0 - <unknown>
Could not compile `hyper`.
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[jakob@aspire hyper]$ rustc --version=verbose
rustc 0.13.0-nightly (399ff259e 2014-11-20 00:27:07 +0000)
binary: rustc
commit-hash: 399ff259e18c1061aa4ea60856fcecb486d36624
commit-date: 2014-11-20 00:27:07 +0000
host: x86_64-unknown-linux-gnu
release: 0.13.0-nightly"><pre class="notranslate"><code class="notranslate">[jakob@aspire hyper]$ rustc --version=verbose
rustc 0.13.0-nightly (399ff259e 2014-11-20 00:27:07 +0000)
binary: rustc
commit-hash: 399ff259e18c1061aa4ea60856fcecb486d36624
commit-date: 2014-11-20 00:27:07 +0000
host: x86_64-unknown-linux-gnu
release: 0.13.0-nightly
</code></pre></div>
<p dir="auto">To reproduce:</p>
<ol dir="auto">
<li>Clone <a href="https://github.com/jgillich/hyper/tree/fmt">https://github.com/jgillich/hyper/tree/fmt</a></li>
<li><code class="notranslate">cargo build</code></li>
</ol> | <h3 dir="auto">STR</h3>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="use std::fmt::Show;
use std::io::PipeStream;
struct Program {
stdin: PipeStream,
}
impl Program {
fn send<T: Show>(&mut self, line: T) -> &mut Program {
// OK
//match writeln!(&mut self.stdin, "{}", line) {
// ICE
match writeln!(self.stdin, "{}", line) {
Err(_) => panic!(),
Ok(_) => self,
}
}
}
fn main() {}"><pre class="notranslate"><span class="pl-k">use</span> std<span class="pl-kos">::</span>fmt<span class="pl-kos">::</span><span class="pl-v">Show</span><span class="pl-kos">;</span>
<span class="pl-k">use</span> std<span class="pl-kos">::</span>io<span class="pl-kos">::</span><span class="pl-v">PipeStream</span><span class="pl-kos">;</span>
<span class="pl-k">struct</span> <span class="pl-smi">Program</span> <span class="pl-kos">{</span>
<span class="pl-c1">stdin</span><span class="pl-kos">:</span> <span class="pl-smi">PipeStream</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span>
<span class="pl-k">impl</span> <span class="pl-smi">Program</span> <span class="pl-kos">{</span>
<span class="pl-k">fn</span> <span class="pl-en">send</span><span class="pl-kos"><</span><span class="pl-smi">T</span><span class="pl-kos">:</span> <span class="pl-smi">Show</span><span class="pl-kos">></span><span class="pl-kos">(</span><span class="pl-c1">&</span><span class="pl-k">mut</span> <span class="pl-smi">self</span><span class="pl-kos">,</span> <span class="pl-s1">line</span><span class="pl-kos">:</span> <span class="pl-smi">T</span><span class="pl-kos">)</span> -> <span class="pl-c1">&</span><span class="pl-k">mut</span> <span class="pl-smi">Program</span> <span class="pl-kos">{</span>
<span class="pl-c">// OK</span>
<span class="pl-c">//match writeln!(&mut self.stdin, "{}", line) {</span>
<span class="pl-c">// ICE</span>
<span class="pl-k">match</span> <span class="pl-en">writeln</span><span class="pl-en">!</span><span class="pl-kos">(</span><span class="pl-smi">self</span>.stdin, <span class="pl-s">"{}"</span>, line<span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-v">Err</span><span class="pl-kos">(</span>_<span class="pl-kos">)</span> => <span class="pl-en">panic</span><span class="pl-en">!</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-v">Ok</span><span class="pl-kos">(</span>_<span class="pl-kos">)</span> => <span class="pl-smi">self</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-k">fn</span> <span class="pl-en">main</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span><span class="pl-kos">}</span></pre></div>
<h3 dir="auto">Output</h3>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="task 'rustc' panicked at 'index out of bounds: the len is 6 but the index is 6', /var/tmp/paludis/build/dev-lang-rust-scm/work/rust-scm/src/libsyntax/lib.rs:1
stack backtrace:
1: 0x7f7ac0e18a30 - rt::backtrace::imp::write::h2b9052e6d9bc7115y9s
2: 0x7f7ac0e1bbd0 - <unknown>
3: 0x7f7ac15bdea0 - unwind::begin_unwind_inner::h045530faf4b26040nbd
4: 0x7f7ac15bdb20 - unwind::begin_unwind_fmt::hbb3cb48652ded377y8c
5: 0x7f7ac15bdae0 - rust_begin_unwind
6: 0x7f7ac15fa590 - panicking::panic_fmt::hc3aa7deba1f6ed540Nl
7: 0x7f7ac15ff980 - panicking::panic_bounds_check::h40d1ef7dd63df707yMl
8: 0x7f7abec8bba0 - codemap::FileMap::get_line::haca5f2812f60e330m4E
9: 0x7f7abecba5c0 - <unknown>
10: 0x7f7abecb6fe0 - diagnostic::EmitterWriter.Emitter::emit::h8944016a574210b0lrG
11: 0x7f7abecb5860 - diagnostic::Handler::emit::hef6d94e096dac3f1F8F
12: 0x7f7abec88380 - diagnostic::SpanHandler::span_err::he4174115bd82cc5fEWF
13: 0x7f7ac00875d0 - middle::typeck::infer::InferCtxt<'a, 'tcx>::type_error_message_str_with_expected::h0350e4ffa557951e6rF
14: 0x7f7abffd1cc0 - middle::typeck::infer::InferCtxt<'a, 'tcx>::type_error_message::h216c2650f9e1a343qxF
15: 0x7f7abffdb420 - <unknown>
16: 0x7f7abffdb420 - <unknown>
17: 0x7f7ac0011ca0 - middle::typeck::check::check_decl_local::hba8b231eaafb10e9vao
18: 0x7f7ac0011e60 - middle::typeck::check::check_stmt::ha5de4679bb4bc747vco
19: 0x7f7abff93bc0 - <unknown>
20: 0x7f7abffdb420 - <unknown>
21: 0x7f7abfec6f70 - middle::typeck::check::_match::check_match::h4e3330be3e1c359eyz8
22: 0x7f7abffdb420 - <unknown>
23: 0x7f7abff93bc0 - <unknown>
24: 0x7f7abff6b9b0 - <unknown>
25: 0x7f7abff904c0 - <unknown>
26: 0x7f7abff96bd0 - <unknown>
27: 0x7f7abff8c2b0 - middle::typeck::check::check_item::hd604129538ea4d11VQi
28: 0x7f7abff90150 - middle::typeck::check::check_item_types::h1a3e4c15e3ead8aeXvi
29: 0x7f7ac0333c60 - <unknown>
30: 0x7f7ac0332e70 - middle::typeck::check_crate::he5192d314e6838dfhdM
31: 0x7f7ac1ab8bf0 - driver::driver::phase_3_run_analysis_passes::he238813c217c3b94efS
32: 0x7f7ac1aada10 - driver::driver::compile_input::h117f94c1b348a398YVR
33: 0x7f7ac1b323d0 - <unknown>
34: 0x7f7ac1b322c0 - <unknown>
35: 0x7f7ac193ef30 - <unknown>
36: 0x7f7ac193ed20 - <unknown>
37: 0x7f7ac1e52b70 - <unknown>
38: 0x7f7ac160cfe0 - <unknown>
39: 0x7f7ac160cfd0 - rust_try
40: 0x7f7ac15bb800 - unwind::try::h03ead95328113b2fIZc
41: 0x7f7ac15bb690 - task::Task::run::hed7dc0cf620a0172y5b
42: 0x7f7ac1e528b0 - <unknown>
43: 0x7f7ac15bceb0 - <unknown>
44: 0x7f7abc08a1d0 - start_thread
45: 0x7f7ac12941b9 - clone
46: 0x0 - <unknown>"><pre class="notranslate">task <span class="pl-c1">'</span>rustc<span class="pl-c1">'</span> panicked at <span class="pl-c1">'</span>index out of bounds<span class="pl-kos">:</span> the len is <span class="pl-c1">6</span> but the index is <span class="pl-c1">6</span><span class="pl-c1">'</span><span class="pl-kos">,</span> /var/tmp/paludis/build/dev-lang-rust-scm/work/rust-scm/src/libsyntax/lib<span class="pl-kos">.</span><span class="pl-c1">rs</span><span class="pl-kos">:</span><span class="pl-c1">1</span>
stack backtrace<span class="pl-kos">:</span>
<span class="pl-c1">1</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7ac0e18a30</span> - rt<span class="pl-kos">::</span>backtrace<span class="pl-kos">::</span>imp<span class="pl-kos">::</span>write<span class="pl-kos">::</span>h2b9052e6d9bc7115y9s
<span class="pl-c1">2</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7ac0e1bbd0</span> - <<span class="pl-smi">unknown</span>>
<span class="pl-c1">3</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7ac15bdea0</span> - unwind<span class="pl-kos">::</span>begin_unwind_inner<span class="pl-kos">::</span>h045530faf4b26040nbd
<span class="pl-c1">4</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7ac15bdb20</span> - unwind<span class="pl-kos">::</span>begin_unwind_fmt<span class="pl-kos">::</span>hbb3cb48652ded377y8c
<span class="pl-c1">5</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7ac15bdae0</span> - rust_begin_unwind
<span class="pl-c1">6</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7ac15fa590</span> - panicking<span class="pl-kos">::</span>panic_fmt<span class="pl-kos">::</span>hc3aa7deba1f6ed540Nl
<span class="pl-c1">7</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7ac15ff980</span> - panicking<span class="pl-kos">::</span>panic_bounds_check<span class="pl-kos">::</span>h40d1ef7dd63df707yMl
<span class="pl-c1">8</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7abec8bba0</span> - codemap<span class="pl-kos">::</span><span class="pl-smi">FileMap</span><span class="pl-kos">::</span>get_line<span class="pl-kos">::</span>haca5f2812f60e330m4E
<span class="pl-c1">9</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7abecba5c0</span> - <<span class="pl-smi">unknown</span>>
<span class="pl-c1">10</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7abecb6fe0</span> - diagnostic<span class="pl-kos">::</span><span class="pl-v">EmitterWriter</span><span class="pl-kos">.</span><span class="pl-c1">Emitter</span><span class="pl-kos">::</span>emit<span class="pl-kos">::</span><span class="pl-smi">h8944016a574210b0lrG</span>
<span class="pl-c1">11</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7abecb5860</span> - diagnostic<span class="pl-kos">::</span><span class="pl-smi">Handler</span><span class="pl-kos">::</span>emit<span class="pl-kos">::</span>hef6d94e096dac3f1F8F
<span class="pl-c1">12</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7abec88380</span> - diagnostic<span class="pl-kos">::</span><span class="pl-smi">SpanHandler</span><span class="pl-kos">::</span>span_err<span class="pl-kos">::</span>he4174115bd82cc5fEWF
<span class="pl-c1">13</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7ac00875d0</span> - middle<span class="pl-kos">::</span>typeck<span class="pl-kos">::</span>infer<span class="pl-kos">::</span><span class="pl-v">InferCtxt</span><<span class="pl-c1">'</span>a<span class="pl-kos">,</span> <span class="pl-c1">'</span>tcx><span class="pl-kos">::</span>type_error_message_str_with_expected<span class="pl-kos">::</span>h0350e4ffa557951e6rF
<span class="pl-c1">14</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7abffd1cc0</span> - middle<span class="pl-kos">::</span>typeck<span class="pl-kos">::</span>infer<span class="pl-kos">::</span><span class="pl-v">InferCtxt</span><<span class="pl-c1">'</span>a<span class="pl-kos">,</span> <span class="pl-c1">'</span>tcx><span class="pl-kos">::</span>type_error_message<span class="pl-kos">::</span>h216c2650f9e1a343qxF
<span class="pl-c1">15</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7abffdb420</span> - <<span class="pl-smi">unknown</span>>
<span class="pl-c1">16</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7abffdb420</span> - <<span class="pl-smi">unknown</span>>
<span class="pl-c1">17</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7ac0011ca0</span> - middle<span class="pl-kos">::</span>typeck<span class="pl-kos">::</span>check<span class="pl-kos">::</span>check_decl_local<span class="pl-kos">::</span>hba8b231eaafb10e9vao
<span class="pl-c1">18</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7ac0011e60</span> - middle<span class="pl-kos">::</span>typeck<span class="pl-kos">::</span>check<span class="pl-kos">::</span>check_stmt<span class="pl-kos">::</span>ha5de4679bb4bc747vco
<span class="pl-c1">19</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7abff93bc0</span> - <<span class="pl-smi">unknown</span>>
<span class="pl-c1">20</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7abffdb420</span> - <<span class="pl-smi">unknown</span>>
<span class="pl-c1">21</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7abfec6f70</span> - middle<span class="pl-kos">::</span>typeck<span class="pl-kos">::</span>check<span class="pl-kos">::</span>_match<span class="pl-kos">::</span>check_match<span class="pl-kos">::</span>h4e3330be3e1c359eyz8
<span class="pl-c1">22</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7abffdb420</span> - <<span class="pl-smi">unknown</span>>
<span class="pl-c1">23</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7abff93bc0</span> - <<span class="pl-smi">unknown</span>>
<span class="pl-c1">24</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7abff6b9b0</span> - <<span class="pl-smi">unknown</span>>
<span class="pl-c1">25</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7abff904c0</span> - <<span class="pl-smi">unknown</span>>
<span class="pl-c1">26</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7abff96bd0</span> - <<span class="pl-smi">unknown</span>>
<span class="pl-c1">27</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7abff8c2b0</span> - middle<span class="pl-kos">::</span>typeck<span class="pl-kos">::</span>check<span class="pl-kos">::</span>check_item<span class="pl-kos">::</span>hd604129538ea4d11VQi
<span class="pl-c1">28</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7abff90150</span> - middle<span class="pl-kos">::</span>typeck<span class="pl-kos">::</span>check<span class="pl-kos">::</span>check_item_types<span class="pl-kos">::</span>h1a3e4c15e3ead8aeXvi
<span class="pl-c1">29</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7ac0333c60</span> - <<span class="pl-smi">unknown</span>>
<span class="pl-c1">30</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7ac0332e70</span> - middle<span class="pl-kos">::</span>typeck<span class="pl-kos">::</span>check_crate<span class="pl-kos">::</span>he5192d314e6838dfhdM
<span class="pl-c1">31</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7ac1ab8bf0</span> - driver<span class="pl-kos">::</span>driver<span class="pl-kos">::</span>phase_3_run_analysis_passes<span class="pl-kos">::</span>he238813c217c3b94efS
<span class="pl-c1">32</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7ac1aada10</span> - driver<span class="pl-kos">::</span>driver<span class="pl-kos">::</span>compile_input<span class="pl-kos">::</span>h117f94c1b348a398YVR
<span class="pl-c1">33</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7ac1b323d0</span> - <<span class="pl-smi">unknown</span>>
<span class="pl-c1">34</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7ac1b322c0</span> - <<span class="pl-smi">unknown</span>>
<span class="pl-c1">35</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7ac193ef30</span> - <<span class="pl-smi">unknown</span>>
<span class="pl-c1">36</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7ac193ed20</span> - <<span class="pl-smi">unknown</span>>
<span class="pl-c1">37</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7ac1e52b70</span> - <<span class="pl-smi">unknown</span>>
<span class="pl-c1">38</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7ac160cfe0</span> - <<span class="pl-smi">unknown</span>>
<span class="pl-c1">39</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7ac160cfd0</span> - rust_try
<span class="pl-c1">40</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7ac15bb800</span> - unwind<span class="pl-kos">::</span>try<span class="pl-kos">::</span>h03ead95328113b2fIZc
<span class="pl-c1">41</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7ac15bb690</span> - task<span class="pl-kos">::</span><span class="pl-smi">Task</span><span class="pl-kos">::</span>run<span class="pl-kos">::</span>hed7dc0cf620a0172y5b
<span class="pl-c1">42</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7ac1e528b0</span> - <<span class="pl-smi">unknown</span>>
<span class="pl-c1">43</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7ac15bceb0</span> - <<span class="pl-smi">unknown</span>>
<span class="pl-c1">44</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7abc08a1d0</span> - start_thread
<span class="pl-c1">45</span><span class="pl-kos">:</span> <span class="pl-c1">0x7f7ac12941b9</span> - clone
<span class="pl-c1">46</span><span class="pl-kos">:</span> <span class="pl-c1">0x0</span> - <<span class="pl-smi">unknown</span>></pre></div>
<h3 dir="auto">Version</h3>
<p dir="auto"><a href="https://github.com/japaric/criterion.rs/blob/99c41b394b84d962c557d4ac15aa71bae6b31fcb/src/program.rs#L31-36">Equivalent code</a> was compiling with:</p>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="rustc 0.13.0-nightly (e09d98603 2014-11-18 23:51:43 +0000)"><pre class="notranslate">rustc <span class="pl-c1">0.13</span><span class="pl-kos">.</span><span class="pl-c1">0</span>-<span class="pl-en">nightly</span> <span class="pl-kos">(</span>e09d98603 <span class="pl-c1">2014</span>-<span class="pl-c1">11</span>-<span class="pl-c1">18</span> <span class="pl-c1">23</span><span class="pl-kos">:</span><span class="pl-c1">51</span><span class="pl-kos">:</span><span class="pl-c1">43</span> +<span class="pl-c1">0000</span><span class="pl-kos">)</span></pre></div>
<p dir="auto">But now it's ICEing on: <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/rust-lang/rust/commit/1d81776209cfa2b5cb1825bdbf3965a7a7f0440a/hovercard" href="https://github.com/rust-lang/rust/commit/1d81776209cfa2b5cb1825bdbf3965a7a7f0440a"><tt>1d81776</tt></a></p>
<p dir="auto">I think <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="49138080" data-permission-text="Title is private" data-url="https://github.com/rust-lang/rust/issues/19040" data-hovercard-type="pull_request" data-hovercard-url="/rust-lang/rust/pull/19040/hovercard" href="https://github.com/rust-lang/rust/pull/19040">#19040</a> may have introduced the ICE.</p>
<p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/alexcrichton/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/alexcrichton">@alexcrichton</a></p> | 1 |
<p dir="auto">Hello,<br>
I'm trying to install from scratch of Apache Superset but I get this error which is stopping the installation:<br>
ERROR: flask 1.1.4 has requirement itsdangerous<2.0,>=0.24, but you'll have itsdangerous 2.0.1 which is incompatible.<br>
ERROR: flask-appbuilder 3.3.2 has requirement Flask-WTF<0.15.0,>=0.14.2, but you'll have flask-wtf 0.15.1 which is incompatible.</p>
<p dir="auto">It looks that the Superset version has downloaded (pip install command) is 1.2.0 and the version of the itsdangerous installed is 2.0.1</p>
<p dir="auto">Please could you help to resolve this issue?<br>
I don't know how to go ahead and fix the problem.<br>
Thanks<br>
Matteo</p>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>superset version: <code class="notranslate">1.2.0</code></li>
<li>python version: <code class="notranslate">python 3.8</code></li>
</ul> | <p dir="auto">Hi all,</p>
<p dir="auto">When trying to install Apache Superset on a clear Ubuntu 20.04 virtual machine I simply follow these steps:</p>
<ol dir="auto">
<li>sudo apt-get install build-essential libssl-dev libffi-dev python3-dev python3-pip libsasl2-dev libldap2-dev</li>
<li>pip install virtualenv</li>
<li>python3 -m venv superset -> Fails and suggests me to execute "apt install python3.8-venv"</li>
<li>sudo apt install python3.8-venv</li>
<li>python3 -m venv superset</li>
<li>. superset/bin/activate</li>
<li>pip install apache-superset</li>
</ol>
<p dir="auto">Installation ends with errors:</p>
<p dir="auto">Building wheels for collected packages: apache-superset, cron-descriptor, holidays, pgsanity, python-geohash, sqlalchemy-utils, wtforms-json, Flask-JWT-Extended, Flask-Login, Flask-OpenID, pymeeus<br>
Building wheel for apache-superset (setup.py) ... error<br>
ERROR: Command errored out with exit status 1:<br>
command: /home/alvaro/superset/bin/python3 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-9cjmkhn2/apache-superset/setup.py'"'"'; <strong>file</strong>='"'"'/tmp/pip-install-9cjmkhn2/apache-superset/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(<strong>file</strong>);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, <strong>file</strong>, '"'"'exec'"'"'))' bdist_wheel -d /tmp/pip-wheel-6if0c298<br>
cwd: /tmp/pip-install-9cjmkhn2/apache-superset/<br>
Complete output (10 lines):<br>
-==--==--==--==--==--==--==--==--==--==--==--==--==--==--==-<br>
VERSION: 1.2.0<br>
GIT SHA:<br>
-==--==--==--==--==--==--==--==--==--==--==--==--==--==--==-<br>
usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]<br>
or: setup.py --help [cmd1 cmd2 ...]<br>
or: setup.py --help-commands<br>
or: setup.py cmd --help</p>
<h2 dir="auto">error: invalid command 'bdist_wheel'</h2>
<p dir="auto">ERROR: Failed building wheel for apache-superset<br>
Running setup.py clean for apache-superset<br>
Building wheel for cron-descriptor (setup.py) ... error<br>
ERROR: Command errored out with exit status 1:<br>
command: /home/alvaro/superset/bin/python3 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-9cjmkhn2/cron-descriptor/setup.py'"'"'; <strong>file</strong>='"'"'/tmp/pip-install-9cjmkhn2/cron-descriptor/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(<strong>file</strong>);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, <strong>file</strong>, '"'"'exec'"'"'))' bdist_wheel -d /tmp/pip-wheel-pssje3qe<br>
cwd: /tmp/pip-install-9cjmkhn2/cron-descriptor/<br>
Complete output (6 lines):<br>
usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]<br>
or: setup.py --help [cmd1 cmd2 ...]<br>
or: setup.py --help-commands<br>
or: setup.py cmd --help</p>
<h2 dir="auto">error: invalid command 'bdist_wheel'</h2>
<p dir="auto">ERROR: Failed building wheel for cron-descriptor<br>
Running setup.py clean for cron-descriptor<br>
Building wheel for holidays (setup.py) ... error<br>
ERROR: Command errored out with exit status 1:<br>
command: /home/alvaro/superset/bin/python3 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-9cjmkhn2/holidays/setup.py'"'"'; <strong>file</strong>='"'"'/tmp/pip-install-9cjmkhn2/holidays/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(<strong>file</strong>);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, <strong>file</strong>, '"'"'exec'"'"'))' bdist_wheel -d /tmp/pip-wheel-cuyj6ksy<br>
cwd: /tmp/pip-install-9cjmkhn2/holidays/<br>
Complete output (6 lines):<br>
usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]<br>
or: setup.py --help [cmd1 cmd2 ...]<br>
or: setup.py --help-commands<br>
or: setup.py cmd --help</p>
<h2 dir="auto">error: invalid command 'bdist_wheel'</h2>
<p dir="auto">(Error follows)</p>
<p dir="auto">And if I try to run "superset db upgrade" returns error as well:</p>
<p dir="auto">(superset) alvaro@alvaro-VirtualBox:~$ superset db upgrade<br>
Traceback (most recent call last):<br>
File "/home/alvaro/superset/lib/python3.8/site-packages/pkg_resources/<strong>init</strong>.py", line 583, in _build_master<br>
ws.require(<strong>requires</strong>)<br>
File "/home/alvaro/superset/lib/python3.8/site-packages/pkg_resources/<strong>init</strong>.py", line 900, in require<br>
needed = self.resolve(parse_requirements(requirements))<br>
File "/home/alvaro/superset/lib/python3.8/site-packages/pkg_resources/<strong>init</strong>.py", line 791, in resolve<br>
raise VersionConflict(dist, req).with_context(dependent_req)<br>
pkg_resources.ContextualVersionConflict: (itsdangerous 2.0.1 (/home/alvaro/superset/lib/python3.8/site-packages), Requirement.parse('itsdangerous<2.0,>=0.24'), {'flask'})</p>
<p dir="auto">During handling of the above exception, another exception occurred:</p>
<p dir="auto">Traceback (most recent call last):<br>
File "/home/alvaro/superset/bin/superset", line 6, in <br>
from pkg_resources import load_entry_point<br>
File "/home/alvaro/superset/lib/python3.8/site-packages/pkg_resources/<strong>init</strong>.py", line 3252, in <br>
def _initialize_master_working_set():<br>
File "/home/alvaro/superset/lib/python3.8/site-packages/pkg_resources/<strong>init</strong>.py", line 3235, in _call_aside<br>
f(*args, **kwargs)<br>
File "/home/alvaro/superset/lib/python3.8/site-packages/pkg_resources/<strong>init</strong>.py", line 3264, in _initialize_master_working_set<br>
working_set = WorkingSet._build_master()<br>
File "/home/alvaro/superset/lib/python3.8/site-packages/pkg_resources/<strong>init</strong>.py", line 585, in _build_master<br>
return cls._build_from_requirements(<strong>requires</strong>)<br>
File "/home/alvaro/superset/lib/python3.8/site-packages/pkg_resources/<strong>init</strong>.py", line 598, in _build_from_requirements<br>
dists = ws.resolve(reqs, Environment())<br>
File "/home/alvaro/superset/lib/python3.8/site-packages/pkg_resources/<strong>init</strong>.py", line 786, in resolve<br>
raise DistributionNotFound(req, requirers)<br>
pkg_resources.DistributionNotFound: The 'itsdangerous<2.0,>=0.24' distribution was not found and is required by flask</p>
<p dir="auto">I have tried several solutions but none of them worked for me. I have repeated the process in various clean Ubuntu 20.04 virtual machines but is not possible for me to install Superset.</p>
<p dir="auto">I attach both errors expecting it helps.</p>
<p dir="auto"><a href="https://github.com/apache/superset/files/6855320/db_init.log">db_init.log</a><br>
<a href="https://github.com/apache/superset/files/6855321/install.log">install.log</a></p>
<h3 dir="auto">Environment</h3>
<p dir="auto">(please complete the following information):</p>
<ul dir="auto">
<li>superset version: command not working</li>
<li>python version: 3.8.10</li>
<li>node.js version: v10.19.0</li>
</ul>
<h3 dir="auto">Checklist</h3>
<p dir="auto">Make sure to follow these steps before submitting your issue - thank you!</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have checked the superset logs for python stacktraces and included it here as text if there are any.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have reproduced the issue with at least the latest released version of superset.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the issue tracker for the same issue and I haven't found one similar.</li>
</ul> | 1 |
<p dir="auto">From <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/kabo/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kabo">@kabo</a> on 2015-12-18T13:49:27Z</p>
<h5 dir="auto">ISSUE TYPE</h5>
<p dir="auto">Feature Idea</p>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">new module</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<p dir="auto">N/A</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">AWS has released support for <a href="https://aws.amazon.com/blogs/aws/new-managed-nat-network-address-translation-gateway-for-aws/" rel="nofollow">Managed NAT Gateways</a>. It would be nice if one could set them up with Ansible.</p>
<p dir="auto">Copied from original issue: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="122951945" data-permission-text="Title is private" data-url="https://github.com/ansible/ansible-modules-extras/issues/1401" data-hovercard-type="issue" data-hovercard-url="/ansible/ansible-modules-extras/issues/1401/hovercard" href="https://github.com/ansible/ansible-modules-extras/issues/1401">ansible/ansible-modules-extras#1401</a></p> | <p dir="auto">From <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/KpaBap/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/KpaBap">@KpaBap</a> on 2016-09-18T23:05:31Z</p>
<h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Bug Report</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">ec2_eni</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.2.0 (devel fa5f8a7543) last updated 2016/09/18 02:10:05 (GMT -700)
lib/ansible/modules/core: (detached HEAD 488f082761) last updated 2016/09/18 02:10:48 (GMT -700)
lib/ansible/modules/extras: (detached HEAD 24da3602c6) last updated 2016/09/18 02:10:57 (GMT -700)
config file = /etc/ansible/ansible.cfg
configured module search path = ['/usr/share/ansible']"><pre class="notranslate"><code class="notranslate">ansible 2.2.0 (devel fa5f8a7543) last updated 2016/09/18 02:10:05 (GMT -700)
lib/ansible/modules/core: (detached HEAD 488f082761) last updated 2016/09/18 02:10:48 (GMT -700)
lib/ansible/modules/extras: (detached HEAD 24da3602c6) last updated 2016/09/18 02:10:57 (GMT -700)
config file = /etc/ansible/ansible.cfg
configured module search path = ['/usr/share/ansible']
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<p dir="auto">Default</p>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<p dir="auto">N\A</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">I'm trying to create a new ENI in AWS with secondary private IPs.<br>
Instead of creating new ENIs, Ansible just fails because it seems to be finding an existing ENI and refusing to change it.</p>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- name: Create ENI for eth0 on Edge instances
ec2_eni:
state: present
secondary_private_ip_address_count: 3
subnet_id: subnet-72870d2a
security_groups:
- sg-5f4c6f27 "><pre class="notranslate"><code class="notranslate">- name: Create ENI for eth0 on Edge instances
ec2_eni:
state: present
secondary_private_ip_address_count: 3
subnet_id: subnet-72870d2a
security_groups:
- sg-5f4c6f27
</code></pre></div>
<h5 dir="auto">EXPECTED RESULTS</h5>
<p dir="auto">A new ENI to be created with 3 secondary private IPs.</p>
<h5 dir="auto">ACTUAL RESULTS</h5>
<p dir="auto">The module finds some existing ENI and just returns "changed":"false". This breaks creating ENIs completely.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="TASK [Create ENI for eth0 on Edge instances] ***********************************
ok: [localhost] => {"changed": false, "interface": {"attachment": {"attach_time": "2016-04-05T21:04:51.000Z", "attachment_id": "eni-attach-476e1abb", "delete_on_termination": false, "device_index": 1, "instance_id": "i-f3a7d668", "status": "attached"}, "description": "", "groups": {"sg-5f4c6f27": "GWAAS-SG-Iavor-Edge"}, "id": "eni-df31ee8f", "mac_address": "0e:e6:a9:ff:d4:4b", "owner_id": "953738397088", "private_ip_address": "172.16.2.151", "private_ip_addresses": [{"primary_address": true, "private_ip_address": "172.16.2.151"}, {"primary_address": false, "private_ip_address": "172.16.2.230"}, {"primary_address": false, "private_ip_address": "172.16.2.61"}, {"primary_address": false, "private_ip_address": "172.16.2.62"}], "source_dest_check": true, "status": "in-use", "subnet_id": "subnet-72870d2a", "vpc_id": "vpc-617a6b05"}}"><pre class="notranslate"><code class="notranslate">TASK [Create ENI for eth0 on Edge instances] ***********************************
ok: [localhost] => {"changed": false, "interface": {"attachment": {"attach_time": "2016-04-05T21:04:51.000Z", "attachment_id": "eni-attach-476e1abb", "delete_on_termination": false, "device_index": 1, "instance_id": "i-f3a7d668", "status": "attached"}, "description": "", "groups": {"sg-5f4c6f27": "GWAAS-SG-Iavor-Edge"}, "id": "eni-df31ee8f", "mac_address": "0e:e6:a9:ff:d4:4b", "owner_id": "953738397088", "private_ip_address": "172.16.2.151", "private_ip_addresses": [{"primary_address": true, "private_ip_address": "172.16.2.151"}, {"primary_address": false, "private_ip_address": "172.16.2.230"}, {"primary_address": false, "private_ip_address": "172.16.2.61"}, {"primary_address": false, "private_ip_address": "172.16.2.62"}], "source_dest_check": true, "status": "in-use", "subnet_id": "subnet-72870d2a", "vpc_id": "vpc-617a6b05"}}
</code></pre></div>
<p dir="auto">Copied from original issue: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="177683431" data-permission-text="Title is private" data-url="https://github.com/ansible/ansible-modules-extras/issues/2956" data-hovercard-type="issue" data-hovercard-url="/ansible/ansible-modules-extras/issues/2956/hovercard" href="https://github.com/ansible/ansible-modules-extras/issues/2956">ansible/ansible-modules-extras#2956</a></p> | 0 |
<p dir="auto">Deleting files from the right-click menu in the sidebar fails to actually delete the file. After clicking "delete" in the menu, the dialog pops up asking me if I want to move the file/dir to the trash. So I click "Move to trash" and then nothing happens. The file is still visible in the sidebar, and it still exists on my filesystem.</p>
<p dir="auto">I'm on Linux (Debian) x64, Atom version 0.126, but I had the same problem with 0.124 and 0.123</p> | <p dir="auto">I'm trying to remove files/dirs using sidebar, Atom asks if I want to move them to Trash and then nothing happens (files stay in the sidebar and on the disk).</p>
<p dir="auto">This is valid only for files on a network partition, everything is ok with local ones</p>
<p dir="auto">Version: 0.123</p> | 1 |
<p dir="auto">[ ] bug report => search github for a similar issue or PR before submitting<br>
[ ] feature request<br>
[x ] support request => Please do not submit support request here, instead see <a href="https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question">https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question</a></p>
<p dir="auto"><strong>Current behavior</strong><br>
docs: <a href="https://angular.io/docs/ts/latest/cookbook/i18n.html" rel="nofollow">https://angular.io/docs/ts/latest/cookbook/i18n.html</a><br>
show only how to work with template via<br>
<code class="notranslate"><p i18n>foo</p></code></p>
<p dir="auto">would like the recommended way to work with strings when eval in code:</p>
<p dir="auto"><code class="notranslate">var foo = 'Hello world' </code></p>
<p dir="auto"><strong>Expected behavior</strong><br>
so maybe<br>
<code class="notranslate">var foo = '<i18n>Hello world' </code> ?</p>
<ul dir="auto">
<li><strong>Language:</strong> [all | TypeScript X.X | ES6/7 | ES5]<br>
all</li>
</ul>
<p dir="auto">Angular 2 Kitchen sink: <a href="http://ng2.javascriptninja.io" rel="nofollow">http://ng2.javascriptninja.io</a><br>
and source@ <a href="https://github.com/born2net/Angular-kitchen-sink">https://github.com/born2net/Angular-kitchen-sink</a><br>
Regards,</p>
<p dir="auto">Sean</p> | <p dir="auto"><strong>Steps to reproduce and a minimal demo of the problem</strong></p>
<p dir="auto">View hash_location_strategy:</p>
<div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" void onPopState(UrlChangeListener fn) {
this._platformLocation.onPopState(fn);
this._platformLocation.onHashChange(fn);
}"><pre class="notranslate"> <span class="pl-k">void</span> <span class="pl-en">onPopState</span>(<span class="pl-c1">UrlChangeListener</span> fn) {
<span class="pl-c1">this</span>._platformLocation.<span class="pl-en">onPopState</span>(fn);
<span class="pl-c1">this</span>._platformLocation.<span class="pl-en">onHashChange</span>(fn);
}</pre></div>
<p dir="auto">Internal clients rely on manually dispatching <code class="notranslate">window.hashchange</code> events in order to have other libraries that rely on listening to hashchange manually know what the route is. Unfortunately, this seems to cause duplicate routing now.</p>
<p dir="auto">A workaround is to override <code class="notranslate">HashLocationStrategy</code> and replace:</p>
<div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="@override
void onPopState(UrlChangeListener fn) {
// Instead of listening to hashChange + popState, just listen to hashChange.
//
// We manually invoke hashChange events which can cause duplicate routing.
_platformLocation.onPopState(fn);
}"><pre class="notranslate"><span class="pl-k">@override</span>
<span class="pl-k">void</span> <span class="pl-en">onPopState</span>(<span class="pl-c1">UrlChangeListener</span> fn) {
<span class="pl-c">// Instead of listening to hashChange + popState, just listen to hashChange.</span>
<span class="pl-c">//</span>
<span class="pl-c">// We manually invoke hashChange events which can cause duplicate routing.</span>
_platformLocation.<span class="pl-en">onPopState</span>(fn);
}</pre></div>
<p dir="auto">I'd prefer <em>not</em> to keep it like that long-term.</p>
<p dir="auto"><strong>Current behavior</strong></p>
<p dir="auto">Listens to both type of events.</p>
<p dir="auto"><strong>Expected/desired behavior</strong></p>
<p dir="auto">I'd imagine listen to just one?</p> | 0 |
<p dir="auto">E.g. <a href="http://docs.scipy.org/doc/scipy-0.17.0/reference/generated/scipy.sparse.csr_matrix.html" rel="nofollow">http://docs.scipy.org/doc/scipy-0.17.0/reference/generated/scipy.sparse.csr_matrix.html</a><br>
In the Attributes section, one has:</p>
<blockquote>
<p dir="auto">nnz Get the count of explicitly-stored values (nonzeros) :Parameters: axis : None, 0, or 1 Select<br>
between the number of values across the whole matrix, in each column, or in each row.</p>
</blockquote>
<p dir="auto">First, it seems to need the full stop after (nonzeros) to render correctly (same for <code class="notranslate">getnnz</code>). Second, the list of Parameters seems to duplicate the one for <code class="notranslate">getnnz</code>.</p> | <p dir="auto">See <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="450756719" data-permission-text="Title is private" data-url="https://github.com/scipy/scipy/issues/10238" data-hovercard-type="pull_request" data-hovercard-url="/scipy/scipy/pull/10238/hovercard?comment_id=502058590&comment_type=issue_comment" href="https://github.com/scipy/scipy/pull/10238#issuecomment-502058590">#10238 (comment)</a></p>
<p dir="auto"><code class="notranslate">scipy.fft</code> currently lacks any plan caching. For repeated transforms, this does a significant amount of duplicate work and makes <code class="notranslate">scipy.fft</code> slower than <code class="notranslate">scipy.fftpack</code> for repeated regular sized ffts. (For one off ffts, pocketfft is still much faster)</p>
<p dir="auto">Things to look into/discuss:</p>
<ul dir="auto">
<li>How much faster is pocketfft after adding a cache?</li>
<li>Can we have users pass in the plans instead of caching?</li>
<li>Should the user have control over the cache itself?</li>
</ul> | 0 |
<h3 dir="auto">Describe your issue.</h3>
<p dir="auto">Running the full test suite on macosx_arm64 results in a failed test for <code class="notranslate">optimize.milp</code></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="python dev.py test"><pre class="notranslate"><span class="pl-s1">python</span> <span class="pl-s1">dev</span>.<span class="pl-s1">py</span> <span class="pl-s1">test</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="________________________________________________________ test_milp_timeout_16545[options0-Time limit reached. (HiGHS Status 13:] ________________________________________________________
scipy/optimize/tests/test_milp.py:323: in test_milp_timeout_16545
assert res.message.startswith(msg)
E AssertionError: assert False
E + where False = <built-in method startswith of str object at 0x42180c650>('Time limit reached. (HiGHS Status 13:')
E + where <built-in method startswith of str object at 0x42180c650> = 'Optimization terminated successfully. (HiGHS Status 7: Optimal)'.startswith
E + where 'Optimization terminated successfully. (HiGHS Status 7: Optimal)' = message: Optimization terminated successfully. (HiGHS Status 7: Optimal)\n success: True\n status...00 0.000e+00 ... 0.000e+00 0.000e+00]\n mip_node_count: 2715\n mip_dual_bound: -11.00000000000001\n mip_gap: 0.0.message
A = array([[1, 2, 2, ..., 4, 0, 0],
[4, 1, 2, ..., 0, 4, 4],
[4, 1, 1, ..., 1, 4, 3],
...,
[4, 0, 4, ..., 4, 1, 3],
[4, 1, 3, ..., 2, 0, 2],
[2, 2, 1, ..., 2, 1, 2]])
b_lb = array([-inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf,
-inf, -inf, -inf, -inf, -inf, -inf, -i...f, -inf, -inf, -inf, -inf, -inf,
-inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf,
-inf])
b_ub = array([25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, ...25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25])
c_vector = array([-1., -1., -1., -1., -1., -1., -1., -1., -1., -1., -1., -1., -1.,
-1., -1., -1., -1., -1., -1., -1., -1.,... -1., -1., -1., -1., -1., -1., -1., -1., -1., -1., -1., -1., -1.,
-1., -1., -1., -1., -1., -1., -1., -1., -1.])
constraints = <scipy.optimize._constraints.LinearConstraint object at 0x42171ffd0>
integrality = array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., ...1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])
msg = 'Time limit reached. (HiGHS Status 13:'
options = {'time_limit': 10}
res = message: Optimization terminated successfully. (HiGHS Status 7: Optimal)
success: True
status...00 0.000e+00 ... 0.000e+00 0.000e+00]
mip_node_count: 2715
mip_dual_bound: -11.00000000000001
mip_gap: 0.0
rng = Generator(PCG64) at 0x42185C580
variable_bounds = Bounds(array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0...., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.]))
variable_lb = array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., ...0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.])
variable_ub = array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., ...1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])
================================================================================ short test summary info ================================================================================
FAILED scipy/optimize/tests/test_milp.py::test_milp_timeout_16545[options0-Time limit reached. (HiGHS Status 13:] - AssertionError: assert False"><pre class="notranslate">________________________________________________________ test_milp_timeout_16545[options0-Time limit reached. (HiGHS Status 13:] ________________________________________________________
scipy/optimize/tests/test_milp.py:323: <span class="pl-k">in</span> test_milp_timeout_16545
assert res.message.startswith(msg)
E AssertionError: assert False
E + where False = <span class="pl-k"><</span>built-in method startswith of str object at 0x42180c<span class="pl-k">650></span>(<span class="pl-s"><span class="pl-pds">'</span>Time limit reached. (HiGHS Status 13:<span class="pl-pds">'</span></span>)
E + where <span class="pl-k"><</span>built-in method startswith of str object at 0x42180c<span class="pl-k">650></span> = <span class="pl-s"><span class="pl-pds">'</span>Optimization terminated successfully. (HiGHS Status 7: Optimal)<span class="pl-pds">'</span></span>.startswith
E + where <span class="pl-s"><span class="pl-pds">'</span>Optimization terminated successfully. (HiGHS Status 7: Optimal)<span class="pl-pds">'</span></span> = message: Optimization terminated successfully. (HiGHS Status 7: Optimal)<span class="pl-cce">\n</span> success: True<span class="pl-cce">\n</span> status...00 0.000e+00 ... 0.000e+00 0.000e+00]<span class="pl-cce">\n</span> mip_node_count: 2715<span class="pl-cce">\n</span> mip_dual_bound: -11.00000000000001<span class="pl-cce">\n</span> mip_gap: 0.0.message
A = array([[1, 2, 2, ..., 4, 0, 0],
[4, 1, 2, ..., 0, 4, 4],
[4, 1, 1, ..., 1, 4, 3],
...,
[4, 0, 4, ..., 4, 1, 3],
[4, 1, 3, ..., 2, 0, 2],
[2, 2, 1, ..., 2, 1, 2]])
b_lb = array([-inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf,
-inf, -inf, -inf, -inf, -inf, -inf, -i...f, -inf, -inf, -inf, -inf, -inf,
-inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf,
-inf])
b_ub = array([25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, ...25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25])
c_vector = array([-1., -1., -1., -1., -1., -1., -1., -1., -1., -1., -1., -1., -1.,
-1., -1., -1., -1., -1., -1., -1., -1.,... -1., -1., -1., -1., -1., -1., -1., -1., -1., -1., -1., -1., -1.,
-1., -1., -1., -1., -1., -1., -1., -1., -1.])
constraints = <span class="pl-k"><</span>scipy.optimize._constraints.LinearConstraint object at 0x42171ffd<span class="pl-k">0></span>
integrality = array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., ...1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])
msg = <span class="pl-s"><span class="pl-pds">'</span>Time limit reached. (HiGHS Status 13:<span class="pl-pds">'</span></span>
options = {<span class="pl-s"><span class="pl-pds">'</span>time_limit<span class="pl-pds">'</span></span>: 10}
res = message: Optimization terminated successfully. (HiGHS Status 7: Optimal)
success: True
status...00 0.000e+00 ... 0.000e+00 0.000e+00]
mip_node_count: 2715
mip_dual_bound: -11.00000000000001
mip_gap: 0.0
rng = Generator(PCG64) at 0x42185C580
variable_bounds = Bounds(array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0...., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.]))
variable_lb = array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., ...0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.])
variable_ub = array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., ...1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])
================================================================================ short <span class="pl-c1">test</span> summary info ================================================================================
FAILED scipy/optimize/tests/test_milp.py::test_milp_timeout_16545[options0-Time limit reached. (HiGHS Status 13:] - AssertionError: assert 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="1.24.2 sys.version_info(major=3, minor=11, micro=3, releaselevel='final', serial=0)
scipy main"><pre class="notranslate">1.24.2 sys.version_info(major=3, minor=11, micro=3, releaselevel=<span class="pl-s"><span class="pl-pds">'</span>final<span class="pl-pds">'</span></span>, serial=0)
scipy main</pre></div> | <h3 dir="auto">Describe your issue.</h3>
<p dir="auto">When I run the <code class="notranslate">optimize</code> tests with the main development branch (version <code class="notranslate">1.10.0.dev0+1987.fa3276a</code>), the test <code class="notranslate">test_milp_timeout_16545</code> often (but not always!) fails.</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="$ python dev.py test -m full -j 9 -s optimize
💻 ninja -C /home/warren/repos/git/forks/scipy/build
ninja: Entering directory `/home/warren/repos/git/forks/scipy/build'
[2/2] Generating scipy/generate-config with a custom command
Build OK
💻 meson install -C build --only-changed
Installing, see meson-install.log...
Installation OK
SciPy from development installed path at: /home/warren/repos/git/forks/scipy/build-install/lib/python3.10/site-packages
Running tests for scipy version:1.10.0.dev0+1987.fa3276a, installed at:/home/warren/repos/git/forks/scipy/build-install/lib/python3.10/site-packages/scipy
============================================================== test session starts ===============================================================
platform linux -- Python 3.10.1, pytest-6.2.5, py-1.11.0, pluggy-1.0.0
rootdir: /home/warren/repos/git/forks/scipy, configfile: pytest.ini
plugins: forked-1.4.0, timeout-2.1.0, hypothesis-6.35.0, xdist-2.5.0
gw0 [2281] / gw1 [2281] / gw2 [2281] / gw3 [2281] / gw4 [2281] / gw5 [2281] / gw6 [2281] / gw7 [2281] / gw8 [2281]
.......................................................................................................................................... [ 6%]
..................................................................................................................................ss...... [ 12%]
.......................................................................................................................................... [ 18%]
.........................................................................................s................................................. [ 24%]
..................................................................................................s...X.........s.sX...................... [ 30%]
.......................s.................................................................................................................. [ 36%]
...........ssssss.s..................................................................................x.................................... [ 42%]
.........................................x................................................................................................ [ 48%]
.......................................................................................................................................... [ 54%]
................................................................s......s.s................................................................ [ 60%]
.....................................X.............................X................X.....................................X............... [ 66%]
.........................................................................s..ss.ssss.s.s...ss...ssss..ssss..ssss.ss.ss.ss.s.sss..ssss..ssss [ 72%]
.s.sss.ss.s.ss.ss..ssss.sss.ss.s.ss.ss.ss..sss.ss.ss.s..s.s....s..s..ss...ss.........................s.sss..sss.s.sss.ss..ssss.sss..sss.ss [ 78%]
.ss.ss..sss.sss.ss..sss.ss.ss.ss.ss.ss.s.ss.ss.ss..ss.sss.sss.ss.ss..ss.ss.ssss.s.s..s.ss.s.s............................................. [ 84%]
..................................................................x....................................................................... [ 90%]
.................................................................................................................................x........ [ 96%]
............................................F...................X....... [100%]
==================================================================== FAILURES ====================================================================
____________________________________ test_milp_timeout_16545[options0-Time limit reached. (HiGHS Status 13:] _____________________________________
[gw5] linux -- Python 3.10.1 /home/warren/py3.10.1/bin/python
scipy/optimize/tests/test_milp.py:307: in test_milp_timeout_16545
assert res.message.startswith(msg)
E AssertionError: assert False
E + where False = <built-in method startswith of str object at 0x7f6878265450>('Time limit reached. (HiGHS Status 13:')
E + where <built-in method startswith of str object at 0x7f6878265450> = 'Optimization terminated successfully. (HiGHS Status 7: Optimal)'.startswith
E + where 'Optimization terminated successfully. (HiGHS Status 7: Optimal)' = message: Optimization terminated successfully. (HiGHS Status 7: Optimal)\n success: True\n status...00 0.000e+00 ... 0.000e+00 0.000e+00]\n mip_node_count: 2715\n mip_dual_bound: -11.00000000000001\n mip_gap: 0.0.message
A = array([[1, 2, 2, ..., 4, 0, 0],
[4, 1, 2, ..., 0, 4, 4],
[4, 1, 1, ..., 1, 4, 3],
...,
[4, 0, 4, ..., 4, 1, 3],
[4, 1, 3, ..., 2, 0, 2],
[2, 2, 1, ..., 2, 1, 2]])
b_lb = array([-inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf,
-inf, -inf, -inf, -inf, -inf, -inf, -i...f, -inf, -inf, -inf, -inf, -inf,
-inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf, -inf,
-inf])
b_ub = array([25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, ...25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25,
25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25])
c_vector = array([-1., -1., -1., -1., -1., -1., -1., -1., -1., -1., -1., -1., -1.,
-1., -1., -1., -1., -1., -1., -1., -1.,... -1., -1., -1., -1., -1., -1., -1., -1., -1., -1., -1., -1., -1.,
-1., -1., -1., -1., -1., -1., -1., -1., -1.])
constraints = <scipy.optimize._constraints.LinearConstraint object at 0x7f6878230f70>
integrality = array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., ...1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])
msg = 'Time limit reached. (HiGHS Status 13:'
options = {'time_limit': 10}
res = message: Optimization terminated successfully. (HiGHS Status 7: Optimal)
success: True
status...00 0.000e+00 ... 0.000e+00 0.000e+00]
mip_node_count: 2715
mip_dual_bound: -11.00000000000001
mip_gap: 0.0
rng = Generator(PCG64) at 0x7F6882521540
variable_bounds = Bounds(array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0...., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.]))
variable_lb = array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., ...0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.])
variable_ub = array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., ...1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])
============================================================ short test summary info =============================================================
FAILED scipy/optimize/tests/test_milp.py::test_milp_timeout_16545[options0-Time limit reached. (HiGHS Status 13:] - AssertionError: assert False
======================================= 1 failed, 2084 passed, 185 skipped, 4 xfailed, 7 xpassed in 40.64s ======================================="><pre class="notranslate">$ <span class="pl-s1">python</span> <span class="pl-s1">dev</span>.<span class="pl-s1">py</span> <span class="pl-s1">test</span> <span class="pl-c1">-</span><span class="pl-s1">m</span> <span class="pl-s1">full</span> <span class="pl-c1">-</span><span class="pl-s1">j</span> <span class="pl-c1">9</span> <span class="pl-c1">-</span><span class="pl-s1">s</span> <span class="pl-s1">optimize</span>
💻 <span class="pl-s1">ninja</span> <span class="pl-c1">-</span><span class="pl-v">C</span> <span class="pl-c1">/</span><span class="pl-s1">home</span><span class="pl-c1">/</span><span class="pl-s1">warren</span><span class="pl-c1">/</span><span class="pl-s1">repos</span><span class="pl-c1">/</span><span class="pl-s1">git</span><span class="pl-c1">/</span><span class="pl-s1">forks</span><span class="pl-c1">/</span><span class="pl-s1">scipy</span><span class="pl-c1">/</span><span class="pl-s1">build</span>
<span class="pl-s1">ninja</span>: <span class="pl-v">Entering</span> <span class="pl-s1">directory</span> `<span class="pl-c1">/</span><span class="pl-s1">home</span><span class="pl-c1">/</span><span class="pl-s1">warren</span><span class="pl-c1">/</span><span class="pl-s1">repos</span><span class="pl-c1">/</span><span class="pl-s1">git</span><span class="pl-c1">/</span><span class="pl-s1">forks</span><span class="pl-c1">/</span><span class="pl-s1">scipy</span><span class="pl-c1">/</span><span class="pl-s1">build</span>'
[<span class="pl-c1">2</span><span class="pl-c1">/</span><span class="pl-c1">2</span>] <span class="pl-v">Generating</span> <span class="pl-s1">scipy</span><span class="pl-c1">/</span><span class="pl-s1">generate</span><span class="pl-c1">-</span><span class="pl-s1">config</span> <span class="pl-k">with</span> <span class="pl-s1">a</span> <span class="pl-s1">custom</span> <span class="pl-s1">command</span>
<span class="pl-v">Build</span> <span class="pl-v">OK</span>
💻 <span class="pl-s1">meson</span> <span class="pl-s1">install</span> <span class="pl-c1">-</span><span class="pl-v">C</span> <span class="pl-s1">build</span> <span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-s1">only</span><span class="pl-c1">-</span><span class="pl-s1">changed</span>
<span class="pl-v">Installing</span>, <span class="pl-s1">see</span> <span class="pl-s1">meson</span><span class="pl-c1">-</span><span class="pl-s1">install</span>.<span class="pl-s1">log</span>...
<span class="pl-v">Installation</span> <span class="pl-v">OK</span>
<span class="pl-v">SciPy</span> <span class="pl-k">from</span> <span class="pl-s1">development</span> <span class="pl-s1">installed</span> <span class="pl-s1">path</span> <span class="pl-s1">at</span>: <span class="pl-c1">/</span><span class="pl-s1">home</span><span class="pl-c1">/</span><span class="pl-s1">warren</span><span class="pl-c1">/</span><span class="pl-s1">repos</span><span class="pl-c1">/</span><span class="pl-s1">git</span><span class="pl-c1">/</span><span class="pl-s1">forks</span><span class="pl-c1">/</span><span class="pl-s1">scipy</span><span class="pl-c1">/</span><span class="pl-s1">build</span><span class="pl-c1">-</span><span class="pl-s1">install</span><span class="pl-c1">/</span><span class="pl-s1">lib</span><span class="pl-c1">/</span><span class="pl-s1">python3</span>.<span class="pl-c1">10</span><span class="pl-c1">/</span><span class="pl-s1">site</span><span class="pl-c1">-</span><span class="pl-s1">packages</span>
<span class="pl-v">Running</span> <span class="pl-s1">tests</span> <span class="pl-k">for</span> <span class="pl-s1">scipy</span> <span class="pl-s1">version</span>:<span class="pl-c1">1.10</span>.<span class="pl-c1">0.</span><span class="pl-s1">dev0</span><span class="pl-c1">+</span><span class="pl-c1">1987.</span><span class="pl-s1">fa3276a</span>, <span class="pl-s1">installed</span> <span class="pl-s1">at</span>:<span class="pl-c1">/</span><span class="pl-s1">home</span><span class="pl-c1">/</span><span class="pl-s1">warren</span><span class="pl-c1">/</span><span class="pl-s1">repos</span><span class="pl-c1">/</span><span class="pl-s1">git</span><span class="pl-c1">/</span><span class="pl-s1">forks</span><span class="pl-c1">/</span><span class="pl-s1">scipy</span><span class="pl-c1">/</span><span class="pl-s1">build</span><span class="pl-c1">-</span><span class="pl-s1">install</span><span class="pl-c1">/</span><span class="pl-s1">lib</span><span class="pl-c1">/</span><span class="pl-s1">python3</span>.<span class="pl-c1">10</span><span class="pl-c1">/</span><span class="pl-s1">site</span><span class="pl-c1">-</span><span class="pl-s1">packages</span><span class="pl-c1">/</span><span class="pl-s1">scipy</span>
<span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span> <span class="pl-s1">test</span> <span class="pl-s1">session</span> <span class="pl-s1">starts</span> <span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">=</span>
<span class="pl-s1">platform</span> <span class="pl-s1">linux</span> <span class="pl-c1">-</span><span class="pl-c1">-</span> <span class="pl-v">Python</span> <span class="pl-c1">3.10</span><span class="pl-c1">.1</span>, <span class="pl-s1">pytest</span><span class="pl-c1">-</span><span class="pl-c1">6.2</span>.<span class="pl-c1">5</span>, <span class="pl-s1">py</span><span class="pl-c1">-</span><span class="pl-c1">1.11</span>.<span class="pl-c1">0</span>, <span class="pl-s1">pluggy</span><span class="pl-c1">-</span><span class="pl-c1">1.0</span>.<span class="pl-c1">0</span>
<span class="pl-s1">rootdir</span>: <span class="pl-c1">/</span><span class="pl-s1">home</span><span class="pl-c1">/</span><span class="pl-s1">warren</span><span class="pl-c1">/</span><span class="pl-s1">repos</span><span class="pl-c1">/</span><span class="pl-s1">git</span><span class="pl-c1">/</span><span class="pl-s1">forks</span><span class="pl-c1">/</span><span class="pl-s1">scipy</span>, <span class="pl-s1">configfile</span>: <span class="pl-s1">pytest</span>.<span class="pl-s1">ini</span>
<span class="pl-s1">plugins</span>: <span class="pl-s1">forked</span><span class="pl-c1">-</span><span class="pl-c1">1.4</span>.<span class="pl-c1">0</span>, <span class="pl-s1">timeout</span><span class="pl-c1">-</span><span class="pl-c1">2.1</span>.<span class="pl-c1">0</span>, <span class="pl-s1">hypothesis</span><span class="pl-c1">-</span><span class="pl-c1">6.35</span>.<span class="pl-c1">0</span>, <span class="pl-s1">xdist</span><span class="pl-c1">-</span><span class="pl-c1">2.5</span>.<span class="pl-c1">0</span>
<span class="pl-s1">gw0</span> [<span class="pl-c1">2281</span>] <span class="pl-c1">/</span> <span class="pl-s1">gw1</span> [<span class="pl-c1">2281</span>] <span class="pl-c1">/</span> <span class="pl-s1">gw2</span> [<span class="pl-c1">2281</span>] <span class="pl-c1">/</span> <span class="pl-s1">gw3</span> [<span class="pl-c1">2281</span>] <span class="pl-c1">/</span> <span class="pl-s1">gw4</span> [<span class="pl-c1">2281</span>] <span class="pl-c1">/</span> <span class="pl-s1">gw5</span> [<span class="pl-c1">2281</span>] <span class="pl-c1">/</span> <span class="pl-s1">gw6</span> [<span class="pl-c1">2281</span>] <span class="pl-c1">/</span> <span class="pl-s1">gw7</span> [<span class="pl-c1">2281</span>] <span class="pl-c1">/</span> <span class="pl-s1">gw8</span> [<span class="pl-c1">2281</span>]
.......................................................................................................................................... [ <span class="pl-c1">6</span><span class="pl-c1">%</span>]
..................................................................................................................................<span class="pl-s1">ss</span>...... [ <span class="pl-c1">12</span><span class="pl-c1">%</span>]
.......................................................................................................................................... [ <span class="pl-c1">18</span><span class="pl-c1">%</span>]
.........................................................................................<span class="pl-s1">s</span>................................................. [ <span class="pl-c1">24</span><span class="pl-c1">%</span>]
..................................................................................................<span class="pl-s1">s</span>...<span class="pl-v">X</span>.........<span class="pl-s1">s</span>.<span class="pl-s1">sX</span>...................... [ <span class="pl-c1">30</span><span class="pl-c1">%</span>]
.......................<span class="pl-s1">s</span>.................................................................................................................. [ <span class="pl-c1">36</span><span class="pl-c1">%</span>]
...........<span class="pl-s1">ssssss</span>.<span class="pl-s1">s</span>..................................................................................<span class="pl-s1">x</span>.................................... [ <span class="pl-c1">42</span><span class="pl-c1">%</span>]
.........................................<span class="pl-s1">x</span>................................................................................................ [ <span class="pl-c1">48</span><span class="pl-c1">%</span>]
.......................................................................................................................................... [ <span class="pl-c1">54</span><span class="pl-c1">%</span>]
................................................................<span class="pl-s1">s</span>......<span class="pl-s1">s</span>.<span class="pl-s1">s</span>................................................................ [ <span class="pl-c1">60</span><span class="pl-c1">%</span>]
.....................................<span class="pl-v">X</span>.............................<span class="pl-v">X</span>................<span class="pl-v">X</span>.....................................<span class="pl-v">X</span>............... [ <span class="pl-c1">66</span><span class="pl-c1">%</span>]
.........................................................................<span class="pl-s1">s</span>..<span class="pl-s1">ss</span>.<span class="pl-s1">ssss</span>.<span class="pl-s1">s</span>.<span class="pl-s1">s</span>...<span class="pl-s1">ss</span>...<span class="pl-s1">ssss</span>..<span class="pl-s1">ssss</span>..<span class="pl-s1">ssss</span>.<span class="pl-s1">ss</span>.<span class="pl-s1">ss</span>.<span class="pl-s1">ss</span>.<span class="pl-s1">s</span>.<span class="pl-s1">sss</span>..<span class="pl-s1">ssss</span>..<span class="pl-s1">ssss</span> [ <span class="pl-c1">72</span><span class="pl-c1">%</span>]
.<span class="pl-s1">s</span>.<span class="pl-s1">sss</span>.<span class="pl-s1">ss</span>.<span class="pl-s1">s</span>.<span class="pl-s1">ss</span>.<span class="pl-s1">ss</span>..<span class="pl-s1">ssss</span>.<span class="pl-s1">sss</span>.<span class="pl-s1">ss</span>.<span class="pl-s1">s</span>.<span class="pl-s1">ss</span>.<span class="pl-s1">ss</span>.<span class="pl-s1">ss</span>..<span class="pl-s1">sss</span>.<span class="pl-s1">ss</span>.<span class="pl-s1">ss</span>.<span class="pl-s1">s</span>..<span class="pl-s1">s</span>.<span class="pl-s1">s</span>....<span class="pl-s1">s</span>..<span class="pl-s1">s</span>..<span class="pl-s1">ss</span>...<span class="pl-s1">ss</span>.........................<span class="pl-s1">s</span>.<span class="pl-s1">sss</span>..<span class="pl-s1">sss</span>.<span class="pl-s1">s</span>.<span class="pl-s1">sss</span>.<span class="pl-s1">ss</span>..<span class="pl-s1">ssss</span>.<span class="pl-s1">sss</span>..<span class="pl-s1">sss</span>.<span class="pl-s1">ss</span> [ <span class="pl-c1">78</span><span class="pl-c1">%</span>]
.<span class="pl-s1">ss</span>.<span class="pl-s1">ss</span>..<span class="pl-s1">sss</span>.<span class="pl-s1">sss</span>.<span class="pl-s1">ss</span>..<span class="pl-s1">sss</span>.<span class="pl-s1">ss</span>.<span class="pl-s1">ss</span>.<span class="pl-s1">ss</span>.<span class="pl-s1">ss</span>.<span class="pl-s1">ss</span>.<span class="pl-s1">s</span>.<span class="pl-s1">ss</span>.<span class="pl-s1">ss</span>.<span class="pl-s1">ss</span>..<span class="pl-s1">ss</span>.<span class="pl-s1">sss</span>.<span class="pl-s1">sss</span>.<span class="pl-s1">ss</span>.<span class="pl-s1">ss</span>..<span class="pl-s1">ss</span>.<span class="pl-s1">ss</span>.<span class="pl-s1">ssss</span>.<span class="pl-s1">s</span>.<span class="pl-s1">s</span>..<span class="pl-s1">s</span>.<span class="pl-s1">ss</span>.<span class="pl-s1">s</span>.<span class="pl-s1">s</span>............................................. [ <span class="pl-c1">84</span><span class="pl-c1">%</span>]
..................................................................<span class="pl-s1">x</span>....................................................................... [ <span class="pl-c1">90</span><span class="pl-c1">%</span>]
.................................................................................................................................<span class="pl-s1">x</span>........ [ <span class="pl-c1">96</span><span class="pl-c1">%</span>]
............................................<span class="pl-v">F</span>...................<span class="pl-v">X</span>....... [<span class="pl-c1">100</span><span class="pl-c1">%</span>]
<span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</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">FAILURES</span> <span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span>
<span class="pl-s1">____________________________________</span> <span class="pl-s1">test_milp_timeout_16545</span>[<span class="pl-s1">options0</span><span class="pl-c1">-</span><span class="pl-v">Time</span> <span class="pl-s1">limit</span> <span class="pl-s1">reached</span>. (<span class="pl-v">HiGHS</span> <span class="pl-v">Status</span> <span class="pl-c1">13</span>:] <span class="pl-s1">_____________________________________</span>
[<span class="pl-s1">gw5</span>] <span class="pl-s1">linux</span> <span class="pl-c1">-</span><span class="pl-c1">-</span> <span class="pl-v">Python</span> <span class="pl-c1">3.10</span><span class="pl-c1">.1</span> <span class="pl-c1">/</span><span class="pl-s1">home</span><span class="pl-c1">/</span><span class="pl-s1">warren</span><span class="pl-c1">/</span><span class="pl-s1">py3</span>.<span class="pl-c1">10.1</span><span class="pl-c1">/</span><span class="pl-s1">bin</span><span class="pl-c1">/</span><span class="pl-s1">python</span>
<span class="pl-s1">scipy</span><span class="pl-c1">/</span><span class="pl-s1">optimize</span><span class="pl-c1">/</span><span class="pl-s1">tests</span><span class="pl-c1">/</span><span class="pl-s1">test_milp</span>.<span class="pl-s1">py</span>:<span class="pl-c1">307</span>: <span class="pl-s1">in</span> <span class="pl-s1">test_milp_timeout_16545</span>
<span class="pl-s1">assert</span> <span class="pl-s1">res</span>.<span class="pl-s1">message</span>.<span class="pl-en">startswith</span>(<span class="pl-s1">msg</span>)
<span class="pl-v">E</span> <span class="pl-v">AssertionError</span>: <span class="pl-k">assert</span> <span class="pl-c1">False</span>
<span class="pl-v">E</span> <span class="pl-c1">+</span> <span class="pl-s1">where</span> <span class="pl-v">False</span> <span class="pl-c1">=</span> <span class="pl-c1"><</span><span class="pl-s1">built</span><span class="pl-c1">-</span><span class="pl-s1">in</span> <span class="pl-s1">method</span> <span class="pl-s1">startswith</span> <span class="pl-s1">of</span> <span class="pl-s1">str</span> <span class="pl-s1">object</span> <span class="pl-s1">at</span> <span class="pl-c1">0x7f6878265450</span><span class="pl-c1">></span>(<span class="pl-s">'Time limit reached. (HiGHS Status 13:'</span>)
<span class="pl-v">E</span> <span class="pl-c1">+</span> <span class="pl-s1">where</span> <span class="pl-c1"><</span><span class="pl-s1">built</span><span class="pl-c1">-</span><span class="pl-s1">in</span> <span class="pl-s1">method</span> <span class="pl-s1">startswith</span> <span class="pl-s1">of</span> <span class="pl-s1">str</span> <span class="pl-s1">object</span> <span class="pl-s1">at</span> <span class="pl-c1">0x7f6878265450</span><span class="pl-c1">></span> <span class="pl-c1">=</span> <span class="pl-s">'Optimization terminated successfully. (HiGHS Status 7: Optimal)'</span>.<span class="pl-s1">startswith</span>
<span class="pl-v">E</span> <span class="pl-c1">+</span> <span class="pl-s1">where</span> <span class="pl-s">'Optimization terminated successfully. (HiGHS Status 7: Optimal)'</span> <span class="pl-c1">=</span> <span class="pl-s1">message</span>: <span class="pl-v">Optimization</span> <span class="pl-s1">terminated</span> <span class="pl-s1">successfully</span>. (<span class="pl-v">HiGHS</span> <span class="pl-v">Status</span> <span class="pl-c1">7</span>: <span class="pl-v">Optimal</span>)\n <span class="pl-s1">success</span>: <span class="pl-c1">True</span>\n <span class="pl-s1">status</span>..<span class="pl-c1">.00</span> <span class="pl-c1">0.000e+00</span> ... <span class="pl-c1">0.000e+00</span> <span class="pl-c1">0.000e+00</span>]\n <span class="pl-s1">mip_node_count</span>: <span class="pl-c1">2715</span>\n <span class="pl-s1">mip_dual_bound</span>: <span class="pl-c1">-</span><span class="pl-c1">11.00000000000001</span>\n <span class="pl-s1">mip_gap</span>: <span class="pl-c1">0.0</span>.<span class="pl-en">message</span>
<span class="pl-v">A</span> <span class="pl-c1">=</span> <span class="pl-s1">array</span>([[<span class="pl-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-c1">2</span>, ..., <span class="pl-c1">4</span>, <span class="pl-c1">0</span>, <span class="pl-c1">0</span>],
[<span class="pl-c1">4</span>, <span class="pl-c1">1</span>, <span class="pl-c1">2</span>, ..., <span class="pl-c1">0</span>, <span class="pl-c1">4</span>, <span class="pl-c1">4</span>],
[<span class="pl-c1">4</span>, <span class="pl-c1">1</span>, <span class="pl-c1">1</span>, ..., <span class="pl-c1">1</span>, <span class="pl-c1">4</span>, <span class="pl-c1">3</span>],
...,
[<span class="pl-c1">4</span>, <span class="pl-c1">0</span>, <span class="pl-c1">4</span>, ..., <span class="pl-c1">4</span>, <span class="pl-c1">1</span>, <span class="pl-c1">3</span>],
[<span class="pl-c1">4</span>, <span class="pl-c1">1</span>, <span class="pl-c1">3</span>, ..., <span class="pl-c1">2</span>, <span class="pl-c1">0</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-c1">2</span>, <span class="pl-c1">1</span>, <span class="pl-c1">2</span>]])
<span class="pl-s1">b_lb</span> <span class="pl-c1">=</span> <span class="pl-s1">array</span>([<span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>,
<span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">i</span>...<span class="pl-s1">f</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>,
<span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>, <span class="pl-c1">-</span><span class="pl-s1">inf</span>,
<span class="pl-c1">-</span><span class="pl-s1">inf</span>])
<span class="pl-s1">b_ub</span> <span class="pl-c1">=</span> <span class="pl-s1">array</span>([<span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>,
<span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, ...<span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>,
<span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>, <span class="pl-c1">25</span>])
<span class="pl-s1">c_vector</span> <span class="pl-c1">=</span> <span class="pl-s1">array</span>([<span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>,
<span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>,... <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>,
<span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>, <span class="pl-c1">-</span><span class="pl-c1">1.</span>])
<span class="pl-s1">constraints</span> <span class="pl-c1">=</span> <span class="pl-c1"><</span><span class="pl-s1">scipy</span>.<span class="pl-s1">optimize</span>.<span class="pl-s1">_constraints</span>.<span class="pl-v">LinearConstraint</span> <span class="pl-s1">object</span> <span class="pl-s1">at</span> <span class="pl-c1">0x7f6878230f70</span><span class="pl-c1">></span>
<span class="pl-en">integrality</span> <span class="pl-c1">=</span> <span class="pl-s1">array</span>([<span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>,
<span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, ...<span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>,
<span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>])
<span class="pl-s1">msg</span> <span class="pl-c1">=</span> <span class="pl-s">'Time limit reached. (HiGHS Status 13:'</span>
<span class="pl-s1">options</span> <span class="pl-c1">=</span> {<span class="pl-s">'time_limit'</span>: <span class="pl-c1">10</span>}
<span class="pl-s1">res</span> <span class="pl-c1">=</span> <span class="pl-s1">message</span>: <span class="pl-v">Optimization</span> <span class="pl-s1">terminated</span> <span class="pl-s1">successfully</span>. (<span class="pl-v">HiGHS</span> <span class="pl-v">Status</span> <span class="pl-c1">7</span>: <span class="pl-v">Optimal</span>)
<span class="pl-s1">success</span>: <span class="pl-c1">True</span>
<span class="pl-s1">status</span>...<span class="pl-c1">00</span> <span class="pl-c1">0.000e+00</span> ... <span class="pl-c1">0.000e+00</span> <span class="pl-c1">0.000e+00</span>]
<span class="pl-s1">mip_node_count</span>: <span class="pl-c1">2715</span>
<span class="pl-s1">mip_dual_bound</span>: <span class="pl-c1">-</span><span class="pl-c1">11.00000000000001</span>
<span class="pl-s1">mip_gap</span>: <span class="pl-c1">0.0</span>
<span class="pl-s1">rng</span> <span class="pl-c1">=</span> <span class="pl-v">Generator</span>(<span class="pl-v">PCG64</span>) <span class="pl-s1">at</span> <span class="pl-c1">0x7F6882521540</span>
<span class="pl-s1">variable_bounds</span> <span class="pl-c1">=</span> <span class="pl-v">Bounds</span>(<span class="pl-en">array</span>([<span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>,
<span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>..., <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>,
<span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>]))
<span class="pl-s1">variable_lb</span> <span class="pl-c1">=</span> <span class="pl-en">array</span>([<span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>,
<span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, ...<span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>,
<span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>, <span class="pl-c1">0.</span>])
<span class="pl-s1">variable_ub</span> <span class="pl-c1">=</span> <span class="pl-en">array</span>([<span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>,
<span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, ...<span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>,
<span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>, <span class="pl-c1">1.</span>])
<span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span> <span class="pl-s1">short</span> <span class="pl-s1">test</span> <span class="pl-s1">summary</span> <span class="pl-s1">info</span> <span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</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">FAILED</span> <span class="pl-s1">scipy</span><span class="pl-c1">/</span><span class="pl-s1">optimize</span><span class="pl-c1">/</span><span class="pl-s1">tests</span><span class="pl-c1">/</span><span class="pl-s1">test_milp</span>.<span class="pl-s1">py</span>::<span class="pl-s1">test_milp_timeout_16545</span>[<span class="pl-s1">options0</span><span class="pl-c1">-</span><span class="pl-v">Time</span> <span class="pl-s1">limit</span> <span class="pl-s1">reached</span>. (<span class="pl-v">HiGHS</span> <span class="pl-v">Status</span> <span class="pl-c1">13</span>:] <span class="pl-c1">-</span> <span class="pl-v">AssertionError</span>: <span class="pl-s1">assert</span> <span class="pl-v">False</span>
<span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><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">failed</span>, <span class="pl-c1">2084</span> <span class="pl-s1">passed</span>, <span class="pl-c1">185</span> <span class="pl-s1">skipped</span>, <span class="pl-c1">4</span> <span class="pl-s1">xfailed</span>, <span class="pl-c1">7</span> <span class="pl-s1">xpassed</span> <span class="pl-c1">in</span> <span class="pl-c1">40.64</span><span class="pl-s1">s</span> <span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">==</span><span class="pl-c1">=</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="See above."><pre class="notranslate">See above.</pre></div>
<h3 dir="auto">SciPy/NumPy/Python version information</h3>
<p dir="auto">1.10.0.dev0+1987.fa3276a 1.24.0.dev0+837.g9c5a2b41c sys.version_info(major=3, minor=10, micro=1, releaselevel='final', serial=0)</p> | 1 |
<p dir="auto">So. I want to add a button on the label of RadioButton.<br>
For example, 'remove the option' button.</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/mui-org/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h2 dir="auto">Expected Behavior</h2>
<p dir="auto">Expecting to be able to add MORE THAN JUST TEXT in the label of a radio...</p>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">Currently I replace the RadioButton with just a div, and cant add component inside the label.<br>
Getting this message:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="input is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`"><pre class="notranslate"><code class="notranslate">input is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`
</code></pre></div>
<h2 dir="auto">Steps to Reproduce (for bugs)</h2>
<ol dir="auto">
<li>create RadioButtonGroup</li>
<li>create RadioButton inside it</li>
<li>add RaisedButton to the label of the RadioButton.</li>
<li>See '[object Object]' instead of the actual results.</li>
</ol>
<h2 dir="auto">Context</h2>
<h2 dir="auto">Your Environment</h2>
<table role="table">
<thead>
<tr>
<th>Tech</th>
<th>Version</th>
</tr>
</thead>
<tbody>
<tr>
<td>Material-UI</td>
<td>0.18.5</td>
</tr>
<tr>
<td>React</td>
<td>15.6.1</td>
</tr>
<tr>
<td>browser</td>
<td>Google Chrome 63.0.3239.132</td>
</tr>
<tr>
<td>etc</td>
<td></td>
</tr>
</tbody>
</table> | <p dir="auto">A weird yellow highlight appears when opening a temporary drawer.</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/callemall/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h2 dir="auto">Expected Behavior</h2>
<p dir="auto">There should not be a yellow highlight</p>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">A weird yellow border appears around the drawer.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/787914/32808226-9c371e8c-c992-11e7-8ef8-14ccce8d8641.png"><img src="https://user-images.githubusercontent.com/787914/32808226-9c371e8c-c992-11e7-8ef8-14ccce8d8641.png" alt="bug" style="max-width: 100%;"></a></p>
<h2 dir="auto">Steps to Reproduce (for bugs)</h2>
<ol dir="auto">
<li>Navigate to <a href="https://material-ui.com/" rel="nofollow">https://material-ui.com/</a></li>
<li>Make use of chrome dev tools to enable the response device layout</li>
<li>Make viewport width smaller untill the responsive menu icon appears in AppBar</li>
<li>Press the menu icon to open the drawer</li>
</ol>
<h2 dir="auto">Context</h2>
<p dir="auto">I suspect this issue has to do with :focus, because the border dissappears when clicking somewhere else besides the drawer.</p>
<h2 dir="auto">Your Environment</h2>
<table role="table">
<thead>
<tr>
<th>Tech</th>
<th>Version</th>
</tr>
</thead>
<tbody>
<tr>
<td>Material-UI</td>
<td>v1.0.0-beta.21</td>
</tr>
<tr>
<td>React</td>
<td>16.1.1</td>
</tr>
<tr>
<td>browser</td>
<td>Chrome 62.0.3202.94</td>
</tr>
<tr>
<td>os</td>
<td>Windows 10</td>
</tr>
</tbody>
</table> | 0 |
<p dir="auto">Hello,</p>
<p dir="auto">I use dbscan with a custom distance metric(average between levenshtein and manhatan).</p>
<p dir="auto">Two questions:</p>
<ul dir="auto">
<li>Is there an implementation for an incremental version of dbscan for frequent updates ? or lets say incremental updates ?</li>
<li>Since I'm using a custom distance metric, then I use the trick of precomputed distance, so:<br>
if an incremental version of dbscan exist, how to deal with the precomputed distance for the updates ? should I increment each time this precomputed distance for the frequent updates or ... ?</li>
</ul>
<p dir="auto">Thanks in advance for your help/discussion</p> | <p dir="auto">is there any plan to add incremental clustering for sklearn.cluster.DBSCAN ?</p> | 1 |
<table role="table">
<thead>
<tr>
<th>Q</th>
<th>A</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bug report?</td>
<td>yes</td>
</tr>
<tr>
<td>Feature request?</td>
<td>no</td>
</tr>
<tr>
<td>Symfony version</td>
<td>3.3.0</td>
</tr>
</tbody>
</table>
<p dir="auto">I've just updated to the current symfony version and seen the new exception design - why I can't select the error message with my mouse? That's not nice...</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/24891375/26636034/c90e4f70-461b-11e7-934b-8d34a65f638d.png"><img src="https://cloud.githubusercontent.com/assets/24891375/26636034/c90e4f70-461b-11e7-934b-8d34a65f638d.png" alt="screenshot-flowfusion local-2017-05-31-16-11-06" style="max-width: 100%;"></a></p> | <table role="table">
<thead>
<tr>
<th>Q</th>
<th>A</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bug report?</td>
<td>no, annoying though</td>
</tr>
<tr>
<td>Feature request?</td>
<td>yes</td>
</tr>
<tr>
<td>Symfony version</td>
<td>3.3.0</td>
</tr>
</tbody>
</table>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1047696/26582062/db8e1248-453f-11e7-9fde-32a460456595.png"><img src="https://cloud.githubusercontent.com/assets/1047696/26582062/db8e1248-453f-11e7-9fde-32a460456595.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">Copy-pasing the exception message is a common thing, at least for specific keywords. I think CSS or so blocks it <g-emoji class="g-emoji" alias="confused" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f615.png">😕</g-emoji></p> | 1 |
<ul dir="auto">
<li>run latest Windows 10</li>
<li>pin either electron or atom to the taskbar</li>
<li>click it to open the app</li>
</ul>
<p dir="auto">=> you end up having 2 icons<br>
=> somehow the app when started does not get associated to the pinned entry in the taskbar<br>
=> it does not reproduce on Windows 8.x</p>
<p dir="auto">I wonder if your change in <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/electron/electron/commit/fb6c80d12ecbb99a481e1018a0d1d56c3fc4dce3/hovercard" href="https://github.com/electron/electron/commit/fb6c80d12ecbb99a481e1018a0d1d56c3fc4dce3"><tt>fb6c80d</tt></a> could have an impact here. Imho it is used to find out if an application belongs to the same process group or not: <a href="https://msdn.microsoft.com/en-us/library/windows/desktop/dd378422(v=vs.85).aspx" rel="nofollow">https://msdn.microsoft.com/en-us/library/windows/desktop/dd378422(v=vs.85).aspx</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>
<ul dir="auto">
<li>v8.0.0-beta.3 and later (including v8.0.1)</li>
</ul>
</li>
<li><strong>Operating System:</strong>
<ul dir="auto">
<li>OS-independent (tested on macOS 10.15.3 / Windows 10 (1909)) </li>
</ul>
</li>
<li><strong>Last Known Working Electron version:</strong>
<ul dir="auto">
<li>v8.0.0-beta.2</li>
</ul>
</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">Should be able to open chrome://webrtc-internals under Electron.</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">Blank page is displayed.<br>
Console error says: "Not allowed to load local resource: chrome://webrtc-internals/" and "No resource with given URL found"</p>
<h3 dir="auto">To Reproduce</h3>
<p dir="auto">Simply open chrome://webrtc-internals in some BrowserWindow under Electron, e.g.:<br>
<a href="https://gist.github.com/kubaau/20accd9a83080d9e0a402b9c1c469825">https://gist.github.com/kubaau/20accd9a83080d9e0a402b9c1c469825</a></p>
<h3 dir="auto">Screenshots</h3>
<h3 dir="auto">Additional Information</h3>
<p dir="auto">Many other chrome:// pages have stopped working as well, e.g. chrome://about.</p> | 0 |
<p dir="auto">how to implement forgot password and send verification mail in flutter/dart development or how to send forgot password OTP into mail in flutter / dart</p> | <p dir="auto">Hi everyone,<br>
Is there any way to implement forgot password and sending verification mail through firebase in flutter.</p> | 1 |
<p dir="auto">Julia is thwarting LLVM's CSE when the subexpression occurs in a loop test and loop body. Here is an example:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="function foo(a, b,c)
while (a*b+c)==1
a /= (a*b+c)
end
a
end
code_llvm (foo,(Float64,Float64,Float64))"><pre class="notranslate"><code class="notranslate">function foo(a, b,c)
while (a*b+c)==1
a /= (a*b+c)
end
a
end
code_llvm (foo,(Float64,Float64,Float64))
</code></pre></div>
<p dir="auto">The output is:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="L: ; preds = %L.preheader, %L
%a.0 = phi double [ %8, %L ], [ %0, %L.preheader ]
%6 = fmul double %a.0, %1, !dbg !10
%7 = fadd double %6, %2, !dbg !10
%8 = fdiv double %a.0, %7, !dbg !10
%9 = fmul double %8, %1, !dbg !10
%10 = fadd double %9, %2, !dbg !10
%11 = fcmp oeq double %10, 1.000000e+00, !dbg !10
br i1 %11, label %L, label %L3.loopexit, !dbg !10"><pre class="notranslate"><code class="notranslate">L: ; preds = %L.preheader, %L
%a.0 = phi double [ %8, %L ], [ %0, %L.preheader ]
%6 = fmul double %a.0, %1, !dbg !10
%7 = fadd double %6, %2, !dbg !10
%8 = fdiv double %a.0, %7, !dbg !10
%9 = fmul double %8, %1, !dbg !10
%10 = fadd double %9, %2, !dbg !10
%11 = fcmp oeq double %10, 1.000000e+00, !dbg !10
br i1 %11, label %L, label %L3.loopexit, !dbg !10
</code></pre></div>
<p dir="auto">Note how <code class="notranslate">a*b+c</code> is evaluated twice in the loop. A partial iteration has been peeled from the loop, which obscures the fact that <code class="notranslate">a*b+c</code> is being redundantly evaluated.</p>
<p dir="auto">From first glance, it appears that the partial peeling has already happened when LLVM sees the IR. I'm guessing that it's being done early to improve type inference for the loop test (i.e. poor man's context-sensitivity by cloning code). It's conceivable that a CSE-like pass could recognize this sort of thing. Or maybe try to unpeel after type inferencing when types match?</p>
<p dir="auto">See my comments <a href="https://groups.google.com/d/msg/julia-users/_g_hWhg524g/n84XxX-D0W4J" rel="nofollow">here</a> for another example.</p> | <p dir="auto">Consider the following code:</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia> num_dict = Dict(1 => IntSet(1:2), 2 => IntSet(1:3))
Dict{Int64,IntSet} with 2 entries:
2 => IntSet([1, 2, 3])
1 => IntSet([1, 2])
julia> length(values(num_dict))
2
julia> length.(values(num_dict))
2
julia> versioninfo()
Julia Version 0.6.0
Commit 903644385b (2017-06-19 13:05 UTC)
Platform Info:
OS: macOS (x86_64-apple-darwin13.4.0)
CPU: Intel(R) Core(TM) i7-4770HQ CPU @ 2.20GHz
WORD_SIZE: 64
BLAS: libopenblas (USE64BITINT DYNAMIC_ARCH NO_AFFINITY Haswell)
LAPACK: libopenblas64_
LIBM: libopenlibm
LLVM: libLLVM-3.9.1 (ORCJIT, haswell)"><pre class="notranslate">julia<span class="pl-k">></span> num_dict <span class="pl-k">=</span> <span class="pl-c1">Dict</span>(<span class="pl-c1">1</span> <span class="pl-k">=></span> <span class="pl-c1">IntSet</span>(<span class="pl-c1">1</span><span class="pl-k">:</span><span class="pl-c1">2</span>), <span class="pl-c1">2</span> <span class="pl-k">=></span> <span class="pl-c1">IntSet</span>(<span class="pl-c1">1</span><span class="pl-k">:</span><span class="pl-c1">3</span>))
Dict{Int64,IntSet} with <span class="pl-c1">2</span> entries<span class="pl-k">:</span>
<span class="pl-c1">2</span> <span class="pl-k">=></span> <span class="pl-c1">IntSet</span>([<span class="pl-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-c1">3</span>])
<span class="pl-c1">1</span> <span class="pl-k">=></span> <span class="pl-c1">IntSet</span>([<span class="pl-c1">1</span>, <span class="pl-c1">2</span>])
julia<span class="pl-k">></span> <span class="pl-c1">length</span>(<span class="pl-c1">values</span>(num_dict))
<span class="pl-c1">2</span>
julia<span class="pl-k">></span> <span class="pl-c1">length</span>.(<span class="pl-c1">values</span>(num_dict))
<span class="pl-c1">2</span>
julia<span class="pl-k">></span> <span class="pl-c1">versioninfo</span>()
Julia Version <span class="pl-c1">0.6</span>.<span class="pl-c1">0</span>
Commit <span class="pl-c1">903644385</span>b (<span class="pl-c1">2017</span><span class="pl-k">-</span><span class="pl-c1">06</span><span class="pl-k">-</span><span class="pl-c1">19</span> <span class="pl-c1">13</span><span class="pl-k">:</span><span class="pl-c1">05</span> UTC)
Platform Info<span class="pl-k">:</span>
OS<span class="pl-k">:</span> macOS (x86_64<span class="pl-k">-</span>apple<span class="pl-k">-</span>darwin13.<span class="pl-c1">4.0</span>)
CPU<span class="pl-k">:</span> <span class="pl-c1">Intel</span>(R) <span class="pl-c1">Core</span>(TM) i7<span class="pl-k">-</span><span class="pl-c1">4770</span>HQ CPU @ <span class="pl-c1">2.20</span>GHz
WORD_SIZE<span class="pl-k">:</span> <span class="pl-c1">64</span>
BLAS<span class="pl-k">:</span> libopenblas (USE64BITINT DYNAMIC_ARCH NO_AFFINITY Haswell)
LAPACK<span class="pl-k">:</span> libopenblas64_
LIBM<span class="pl-k">:</span> libopenlibm
LLVM<span class="pl-k">:</span> libLLVM<span class="pl-k">-</span><span class="pl-c1">3.9</span>.<span class="pl-c1">1</span> (ORCJIT, haswell)</pre></div>
<p dir="auto">It seems erroneous to me that in this case <code class="notranslate">length.(values(num_dict))</code> returns <code class="notranslate">2</code> instead of a vector with 3 and 2 as it's elements.</p> | 0 |
<p dir="auto">I am using <a href="https://codelabs.developers.google.com/codelabs/tensorflow-for-poets/#0" rel="nofollow">Tensorflow for poet</a> guide for train own model. I have create retrained_graph.pb and retrained_labels.txt. While I use it in application then I get error that</p>
<p dir="auto"><code class="notranslate">Caused by: java.lang.UnsupportedOperationException: Op BatchNormWithGlobalNormalization is not available in GraphDef version 21. It has been removed in version 9. Use tf.nn.batch_normalization(). at org.tensorflow.Graph.importGraphDef(Native Method) at org.tensorflow.Graph.importGraphDef(Graph.java:118) </code></p>
<p dir="auto">After That further train model for application use <a href="https://petewarden.com/2016/09/27/tensorflow-for-mobile-poets/" rel="nofollow">Tensorflow for mobile </a> blog and create <strong>optimized_graph.pb, rounded_graph.pb, mmapped_graph.pb</strong> files.</p>
<p dir="auto">optimized_graph.pb and rounded_graph.pb file work in android application without any error.<br>
While use mmapped_graph.pb I get error that <strong>Failed to initialize: java.io.IOException: Not a valid TensorFlow Graph serialization: Invalid GraphDef</strong></p>
<p dir="auto">Performance of application is not good while use optimized_graph.pb and rounded_graph.pb file.While application camera screen not contain any flower photos otherwise random flower name show with high confidence rate. Any way to detect only flower and remain blank when not flowers.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/25680329/24044730/8edab30c-0b42-11e7-8209-a5fab382b81c.png"><img src="https://cloud.githubusercontent.com/assets/25680329/24044730/8edab30c-0b42-11e7-8209-a5fab382b81c.png" alt="screenshot" style="max-width: 100%;"></a></p> | <p dir="auto">I am following <a href="https://codelabs.developers.google.com/codelabs/tensorflow-for-poets/#0" rel="nofollow">Tensorflow for poet</a> instruction for retrain model. I have successfully create retrained_graph.pb and retrained_labels.txt. While I use imagenet_comp_graph_label_strings.txt and tensorflow_inception_graph.pb then application run without any error. But use my created file then I get error that:</p>
<p dir="auto"><code class="notranslate">Caused by: java.lang.UnsupportedOperationException: Op BatchNormWithGlobalNormalization is not available in GraphDef version 21. It has been removed in version 9. Use tf.nn.batch_normalization(). at org.tensorflow.Graph.importGraphDef(Native Method) at org.tensorflow.Graph.importGraphDef(Graph.java:118) at org.tensorflow.Graph.importGraphDef(Graph.java:102) at org.tensorflow.contrib.android.TensorFlowInferenceInterface.load(TensorFlowInferenceInterface.java:402) at org.tensorflow.contrib.android.TensorFlowInferenceInterface.initializeTensorFlow(TensorFlowInferenceInterface.java:91) at org.tensorflow.demo.TensorFlowImageClass</code></p> | 1 |
<p dir="auto">After the upgrade to beta 2 I suddenly see the following errors:<br>
Error:(4, 5) TS2304: Cannot find name 'it'.<br>
Error:(13, 9) TS2304: Cannot find name 'expect'.<br>
Error:(39, 36) TS2339: Property 'toBeNull' does not exist on type 'NgMatchers'.</p> | <p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ ] bug report
[x] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[ ] bug report
[x] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
</code></pre></div>
<p dir="auto"><strong>Current behavior</strong></p>
<p dir="auto">Right now you cannot import two directives of the same module</p>
<p dir="auto"><strong>Expected/desired behavior</strong></p>
<p dir="auto">You can use same directives/components in multiple modules without errors.</p>
<p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong></p>
<p dir="auto">Concept of the shared module with its shared resources is good for components that are used everywhere. But if you have a complex application (ours contain more then 50 modules and 1500 components, services and pipes all together) multiple components can be reused different way. For example QuestionListPage uses UserActiveListPanel from User module. Also PhotoListPage uses same UserActiveListPanel, and VideoListPage uses UserActiveListPanel. How do I reuse this panel? Best way is see is to provide it in <code class="notranslate">directives</code> of the component as it was before rc.5. But right now I can't do it. But I can create lets say UserShareModule and put it there... its good, but if I put everything that is used by other modules from user module, i'll LOT of things there unnecessary in most of times. Then what to do? Create UserActiveListPanelShareModule? It will create lot of such trash files. So what to do? Maybe we simply can provide same directives multiple times without having this annoying error <code class="notranslate">Type X is part of the declarations of 2 modules</code>?</p>
<p dir="auto">If you tell me that its by design, then my answer is: in my opinion its a bad design.</p>
<p dir="auto"><strong>Please tell us about your environment:</strong></p>
<ul dir="auto">
<li><strong>Angular version:</strong> 2.0.0-rc.5</li>
<li><strong>Browser:</strong> [all ]</li>
<li><strong>Language:</strong> [all]</li>
</ul> | 0 |
<p dir="auto">I'm facing issues with visible class implementation specifically</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="visible-xs visible-sm"><pre class="notranslate"><code class="notranslate">visible-xs visible-sm
</code></pre></div>
<p dir="auto">in version 3.1.0</p>
<p dir="auto">Example 3.1.0 Not working<br>
<a href="http://jsfiddle.net/7AD9z/embedded/result/" rel="nofollow">http://jsfiddle.net/7AD9z/embedded/result/</a></p>
<p dir="auto">Example 3.0.3 Working<br>
<a href="http://jsfiddle.net/DwzbH/embedded/result/" rel="nofollow">http://jsfiddle.net/DwzbH/embedded/result/</a></p> | <p dir="auto"><a href="https://dl.dropboxusercontent.com/u/37682778/error/index.html" rel="nofollow">https://dl.dropboxusercontent.com/u/37682778/error/index.html</a></p> | 1 |
<p dir="auto">The following looks like a bug to me as DataFrame.duplicated() gives different results on what should be identical inputs. To me it looks like the problem is with the datetime64 values because if you look at the output of <code class="notranslate">dates.values</code> it's clear that the last 4 values are duplicates.</p>
<p dir="auto">Please see the code below that reproduces the problem:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="In [701]: dates = date_range('2010-07-01', end='2010-08-05')
In [702]: tst = DataFrame({'symbol': 'AAA', 'date': dates})
In [703]: tst.tail()
Out[703]:
date symbol
31 2010-08-01 00:00:00 AAA
32 2010-08-02 00:00:00 AAA
33 2010-08-03 00:00:00 AAA
34 2010-08-04 00:00:00 AAA
35 2010-08-05 00:00:00 AAA
In [704]: tst.duplicated().tail()
Out[704]:
31 False
32 False
33 False
34 False
35 False
In [705]: tst.duplicated(['date', 'symbol']).tail()
Out[705]:
31 False
32 True
33 True
34 True
35 True
In [706]: dates.values
Out[706]:
array([1970-01-15 40:00:00, 1970-01-15 64:00:00, 1970-01-15 88:00:00,
1970-01-15 112:00:00, 1970-01-15 136:00:00, 1970-01-15 160:00:00,
1970-01-15 184:00:00, 1970-01-15 208:00:00, 1970-01-15 232:00:00,
1970-01-15 00:00:00, 1970-01-15 24:00:00, 1970-01-15 48:00:00,
1970-01-15 72:00:00, 1970-01-15 96:00:00, 1970-01-15 120:00:00,
1970-01-15 144:00:00, 1970-01-15 168:00:00, 1970-01-15 192:00:00,
1970-01-15 216:00:00, 1970-01-15 240:00:00, 1970-01-15 08:00:00,
1970-01-15 32:00:00, 1970-01-15 56:00:00, 1970-01-15 80:00:00,
1970-01-15 104:00:00, 1970-01-15 128:00:00, 1970-01-15 152:00:00,
1970-01-15 176:00:00, 1970-01-15 200:00:00, 1970-01-15 224:00:00,
1970-01-15 248:00:00, 1970-01-15 16:00:00, 1970-01-15 40:00:00,
1970-01-15 64:00:00, 1970-01-15 88:00:00, 1970-01-15 112:00:00], dtype=datetime64[ns])
In [707]: dates
Out[707]:
<class 'pandas.tseries.index.DatetimeIndex'>
[2010-07-01 00:00:00, ..., 2010-08-05 00:00:00]
Length: 36, Freq: D, Timezone: None
In [708]: dates.dtype
Out[708]: dtype('datetime64[ns]')
In [709]: dates.values.dtype
Out[709]: dtype('datetime64[ns]')
In [710]: sys.version
Out[710]: '2.7.3 (default, Aug 1 2012, 05:14:39) \n[GCC 4.6.3]'
In [711]: np.version.version
Out[711]: '1.6.1'
In [713]: pd.version.version
Out[713]: '0.8.1'
In [714]: "><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">701</span>]: <span class="pl-s1">dates</span> <span class="pl-c1">=</span> <span class="pl-en">date_range</span>(<span class="pl-s">'2010-07-01'</span>, <span class="pl-s1">end</span><span class="pl-c1">=</span><span class="pl-s">'2010-08-05'</span>)
<span class="pl-v">In</span> [<span class="pl-c1">702</span>]: <span class="pl-s1">tst</span> <span class="pl-c1">=</span> <span class="pl-v">DataFrame</span>({<span class="pl-s">'symbol'</span>: <span class="pl-s">'AAA'</span>, <span class="pl-s">'date'</span>: <span class="pl-s1">dates</span>})
<span class="pl-v">In</span> [<span class="pl-c1">703</span>]: <span class="pl-s1">tst</span>.<span class="pl-en">tail</span>()
<span class="pl-v">Out</span>[<span class="pl-c1">703</span>]:
<span class="pl-s1">date</span> <span class="pl-s1">symbol</span>
<span class="pl-c1">31</span> <span class="pl-c1">2010</span><span class="pl-c1">-</span><span class="pl-c1">08</span><span class="pl-c1">-</span><span class="pl-c1">01</span> <span class="pl-c1">00</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span> <span class="pl-v">AAA</span>
<span class="pl-c1">32</span> <span class="pl-c1">2010</span><span class="pl-c1">-</span><span class="pl-c1">08</span><span class="pl-c1">-</span><span class="pl-c1">02</span> <span class="pl-c1">00</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span> <span class="pl-v">AAA</span>
<span class="pl-c1">33</span> <span class="pl-c1">2010</span><span class="pl-c1">-</span><span class="pl-c1">08</span><span class="pl-c1">-</span><span class="pl-c1">03</span> <span class="pl-c1">00</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span> <span class="pl-v">AAA</span>
<span class="pl-c1">34</span> <span class="pl-c1">2010</span><span class="pl-c1">-</span><span class="pl-c1">08</span><span class="pl-c1">-</span><span class="pl-c1">04</span> <span class="pl-c1">00</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span> <span class="pl-v">AAA</span>
<span class="pl-c1">35</span> <span class="pl-c1">2010</span><span class="pl-c1">-</span><span class="pl-c1">08</span><span class="pl-c1">-</span><span class="pl-c1">05</span> <span class="pl-c1">00</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span> <span class="pl-v">AAA</span>
<span class="pl-v">In</span> [<span class="pl-c1">704</span>]: <span class="pl-s1">tst</span>.<span class="pl-en">duplicated</span>().<span class="pl-en">tail</span>()
<span class="pl-v">Out</span>[<span class="pl-c1">704</span>]:
<span class="pl-c1">31</span> <span class="pl-c1">False</span>
<span class="pl-c1">32</span> <span class="pl-c1">False</span>
<span class="pl-c1">33</span> <span class="pl-c1">False</span>
<span class="pl-c1">34</span> <span class="pl-c1">False</span>
<span class="pl-c1">35</span> <span class="pl-c1">False</span>
<span class="pl-v">In</span> [<span class="pl-c1">705</span>]: <span class="pl-s1">tst</span>.<span class="pl-en">duplicated</span>([<span class="pl-s">'date'</span>, <span class="pl-s">'symbol'</span>]).<span class="pl-en">tail</span>()
<span class="pl-v">Out</span>[<span class="pl-c1">705</span>]:
<span class="pl-c1">31</span> <span class="pl-c1">False</span>
<span class="pl-c1">32</span> <span class="pl-c1">True</span>
<span class="pl-c1">33</span> <span class="pl-c1">True</span>
<span class="pl-c1">34</span> <span class="pl-c1">True</span>
<span class="pl-c1">35</span> <span class="pl-c1">True</span>
<span class="pl-v">In</span> [<span class="pl-c1">706</span>]: <span class="pl-s1">dates</span>.<span class="pl-s1">values</span>
<span class="pl-v">Out</span>[<span class="pl-c1">706</span>]:
<span class="pl-en">array</span>([<span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">40</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>, <span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">64</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>, <span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">88</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>,
<span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">112</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>, <span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">136</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>, <span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">160</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>,
<span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">184</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>, <span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">208</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>, <span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">232</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>,
<span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">00</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>, <span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">24</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>, <span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">48</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>,
<span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">72</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>, <span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">96</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>, <span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">120</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>,
<span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">144</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>, <span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">168</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>, <span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">192</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>,
<span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">216</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>, <span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">240</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>, <span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">08</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>,
<span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">32</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>, <span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">56</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>, <span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">80</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>,
<span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">104</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>, <span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">128</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>, <span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">152</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>,
<span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">176</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>, <span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">200</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>, <span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">224</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>,
<span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">248</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>, <span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">16</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>, <span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">40</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>,
<span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">64</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>, <span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">88</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>, <span class="pl-c1">1970</span><span class="pl-c1">-</span><span class="pl-c1">01</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">112</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">datetime64</span>[<span class="pl-s1">ns</span>])
<span class="pl-v">In</span> [<span class="pl-c1">707</span>]: <span class="pl-s1">dates</span>
<span class="pl-v">Out</span>[<span class="pl-c1">707</span>]:<span class="pl-s1"></span>
<span class="pl-c1"><</span><span class="pl-s1">class</span> <span class="pl-s">'pandas.tseries.index.DatetimeIndex'</span><span class="pl-c1">></span>
[<span class="pl-c1">2010</span><span class="pl-c1">-</span><span class="pl-c1">07</span><span class="pl-c1">-</span><span class="pl-c1">01</span> <span class="pl-c1">00</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>, ..., <span class="pl-c1">2010</span><span class="pl-c1">-</span><span class="pl-c1">08</span><span class="pl-c1">-</span><span class="pl-c1">05</span> <span class="pl-c1">00</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span>]
<span class="pl-v">Length</span>: <span class="pl-c1">36</span>, <span class="pl-v">Freq</span>: <span class="pl-v">D</span>, <span class="pl-v">Timezone</span>: <span class="pl-c1">None</span>
<span class="pl-v">In</span> [<span class="pl-c1">708</span>]: <span class="pl-s1">dates</span>.<span class="pl-s1">dtype</span>
<span class="pl-v">Out</span>[<span class="pl-c1">708</span>]: <span class="pl-en">dtype</span>(<span class="pl-s">'datetime64[ns]'</span>)
<span class="pl-v">In</span> [<span class="pl-c1">709</span>]: <span class="pl-s1">dates</span>.<span class="pl-s1">values</span>.<span class="pl-s1">dtype</span>
<span class="pl-v">Out</span>[<span class="pl-c1">709</span>]: <span class="pl-en">dtype</span>(<span class="pl-s">'datetime64[ns]'</span>)
<span class="pl-v">In</span> [<span class="pl-c1">710</span>]: <span class="pl-s1">sys</span>.<span class="pl-s1">version</span>
<span class="pl-v">Out</span>[<span class="pl-c1">710</span>]: <span class="pl-s">'2.7.3 (default, Aug 1 2012, 05:14:39) <span class="pl-cce">\n</span>[GCC 4.6.3]'</span>
<span class="pl-v">In</span> [<span class="pl-c1">711</span>]: <span class="pl-s1">np</span>.<span class="pl-s1">version</span>.<span class="pl-s1">version</span>
<span class="pl-v">Out</span>[<span class="pl-c1">711</span>]: <span class="pl-s">'1.6.1'</span>
<span class="pl-v">In</span> [<span class="pl-c1">713</span>]: <span class="pl-s1">pd</span>.<span class="pl-s1">version</span>.<span class="pl-s1">version</span>
<span class="pl-v">Out</span>[<span class="pl-c1">713</span>]: <span class="pl-s">'0.8.1'</span>
<span class="pl-v">In</span> [<span class="pl-c1">714</span>]: </pre></div>
<p dir="auto">I remember reading somewhere that there are problems with datetime64 in numpy 1.6 but I don't understand what coercions are taking place behind the scenes. Also, if someone could please explain to me why the dates in <code class="notranslate">dates.values</code> above are wrong and how to avoid this, I would appreciate it.</p> | <p dir="auto">Hello the Pandas team,</p>
<p dir="auto">I ran this morning into some nasty bug with Pandas 18.1.<br>
I was not able to find whether you are aware of it or not. Here it is</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="idx=[pd.to_datetime('2012-02-27 14:23:00') , pd.to_datetime('2012-08-27 14:33:00'), pd.to_datetime('2012-02-27 14:23:00')]
test=pd.DataFrame({'A':['one','two', 'three']},index=idx)
test['alt']=test.index.tz_localize('UTC').tz_convert('US/Eastern').tz_localize(None) "><pre class="notranslate"><code class="notranslate">idx=[pd.to_datetime('2012-02-27 14:23:00') , pd.to_datetime('2012-08-27 14:33:00'), pd.to_datetime('2012-02-27 14:23:00')]
test=pd.DataFrame({'A':['one','two', 'three']},index=idx)
test['alt']=test.index.tz_localize('UTC').tz_convert('US/Eastern').tz_localize(None)
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Out[9]:
A alt
2012-02-27 14:23:00 one 2012-02-27 09:23:00
2012-08-27 14:33:00 two 2012-08-27 10:33:00
2012-02-27 14:23:00 three 2012-02-27 10:23:00 "><pre class="notranslate"><code class="notranslate">Out[9]:
A alt
2012-02-27 14:23:00 one 2012-02-27 09:23:00
2012-08-27 14:33:00 two 2012-08-27 10:33:00
2012-02-27 14:23:00 three 2012-02-27 10:23:00
</code></pre></div>
<p dir="auto">where the third column is obviously wrong. What have I done wrong here? Are indices not meant to work with duplicate values?</p>
<p dir="auto">Thanks!</p> | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.