text1
stringlengths 0
536k
| text2
stringlengths 0
536k
| label
int64 0
1
|
---|---|---|
<p dir="auto">From URL: <a href="https://flutter.io/get-started/test-drive/" rel="nofollow">https://flutter.io/get-started/test-drive/</a><br>
In Android Studio 3.1 for Linux it also asks you to fill out the Flutter SDK path</p> | <p dir="auto">As the title says, I can build from the command line and install on my device, but when I try to run an archive in Xcode, I get the following error.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ld: warning: directory not found for option '-L/Volumes/Jeff/Library/Developer/Xcode/DerivedData/Runner-dhytviduagshlmbbozuwftfdndsj/Build/Intermediates.noindex/ArchiveIntermediates/Runner/BuildProductsPath/Release-iphoneos/flutter_youtube'
ld: warning: directory not found for option '-L/Volumes/Jeff/Library/Developer/Xcode/DerivedData/Runner-dhytviduagshlmbbozuwftfdndsj/Build/Intermediates.noindex/ArchiveIntermediates/Runner/BuildProductsPath/Release-iphoneos/video_player'
ld: library not found for -lXCDYouTubeKit
clang: error: linker command failed with exit code 1 (use -v to see invocation)"><pre class="notranslate"><code class="notranslate">ld: warning: directory not found for option '-L/Volumes/Jeff/Library/Developer/Xcode/DerivedData/Runner-dhytviduagshlmbbozuwftfdndsj/Build/Intermediates.noindex/ArchiveIntermediates/Runner/BuildProductsPath/Release-iphoneos/flutter_youtube'
ld: warning: directory not found for option '-L/Volumes/Jeff/Library/Developer/Xcode/DerivedData/Runner-dhytviduagshlmbbozuwftfdndsj/Build/Intermediates.noindex/ArchiveIntermediates/Runner/BuildProductsPath/Release-iphoneos/video_player'
ld: library not found for -lXCDYouTubeKit
clang: error: linker command failed with exit code 1 (use -v to see invocation)
</code></pre></div> | 0 |
<h3 dir="auto">Bug report</h3>
<p dir="auto"><strong>Bug summary</strong><br>
Playback of mp4 files written by FFMpegWriter shows a rolling image if the dpi setting does not match that specified when a figure is created. In particular, this happens if the movie frame images are being displayed on the screen, e.g. during creation of the movie. (There is also an annoying flicker.)</p>
<p dir="auto"><strong>Code for reproduction</strong></p>
<p dir="auto">Animation in the code below fails, resulting in a rolling image on playback of the saved mp4 movie. Either of two modifications indicated in the comments make the saved movie play back normally.</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import matplotlib.animation
import numpy
import pylab
fig = pylab.figure(figsize=(6,6), dpi=120)
writer = matplotlib.animation.FFMpegWriter(fps=10)
x = numpy.linspace(0, 6.28, 100)
with writer.saving(fig, 'rolling_bug.mp4', dpi=100): # saving OK if dpi=120
for offset in numpy.linspace(0, 6.28, 30):
pylab.plot(numpy.cos(x-offset), color='black')
# saving OK if the next line is commented out
pylab.pause(0.01)
writer.grab_frame()"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">animation</span>
<span class="pl-k">import</span> <span class="pl-s1">numpy</span>
<span class="pl-k">import</span> <span class="pl-s1">pylab</span>
<span class="pl-s1">fig</span> <span class="pl-c1">=</span> <span class="pl-s1">pylab</span>.<span class="pl-en">figure</span>(<span class="pl-s1">figsize</span><span class="pl-c1">=</span>(<span class="pl-c1">6</span>,<span class="pl-c1">6</span>), <span class="pl-s1">dpi</span><span class="pl-c1">=</span><span class="pl-c1">120</span>)
<span class="pl-s1">writer</span> <span class="pl-c1">=</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">animation</span>.<span class="pl-v">FFMpegWriter</span>(<span class="pl-s1">fps</span><span class="pl-c1">=</span><span class="pl-c1">10</span>)
<span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-s1">numpy</span>.<span class="pl-en">linspace</span>(<span class="pl-c1">0</span>, <span class="pl-c1">6.28</span>, <span class="pl-c1">100</span>)
<span class="pl-k">with</span> <span class="pl-s1">writer</span>.<span class="pl-en">saving</span>(<span class="pl-s1">fig</span>, <span class="pl-s">'rolling_bug.mp4'</span>, <span class="pl-s1">dpi</span><span class="pl-c1">=</span><span class="pl-c1">100</span>): <span class="pl-c"># saving OK if dpi=120</span>
<span class="pl-k">for</span> <span class="pl-s1">offset</span> <span class="pl-c1">in</span> <span class="pl-s1">numpy</span>.<span class="pl-en">linspace</span>(<span class="pl-c1">0</span>, <span class="pl-c1">6.28</span>, <span class="pl-c1">30</span>):
<span class="pl-s1">pylab</span>.<span class="pl-en">plot</span>(<span class="pl-s1">numpy</span>.<span class="pl-en">cos</span>(<span class="pl-s1">x</span><span class="pl-c1">-</span><span class="pl-s1">offset</span>), <span class="pl-s1">color</span><span class="pl-c1">=</span><span class="pl-s">'black'</span>)
<span class="pl-c"># saving OK if the next line is commented out</span>
<span class="pl-s1">pylab</span>.<span class="pl-en">pause</span>(<span class="pl-c1">0.01</span>)
<span class="pl-s1">writer</span>.<span class="pl-en">grab_frame</span>()</pre></div>
<p dir="auto">Note that commenting out the pylab.pause() call results in no image being displayed on the screen until the end of the script.</p>
<p dir="auto"><strong>Actual outcome</strong><br>
Inspection of the figure vertical dimension in pixels shows that it has changed across the call to grab_frame(), from 600 to 590 in the above example. The horizontal dimension does not change.<br>
A screen grab from VLC Media Player is shown here:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/7269332/27990577-278e5b28-6410-11e7-8538-123c0c394891.png"><img src="https://user-images.githubusercontent.com/7269332/27990577-278e5b28-6410-11e7-8538-123c0c394891.png" alt="rolling_bug_screengrab" style="max-width: 100%;"></a></p>
<p dir="auto"><strong>Expected outcome</strong></p>
<p dir="auto">The writer.grab_frame() should not change the vertical dimension of the figure.</p>
<p dir="auto">The flickering did not occur in the last version of Matplotlib I had installed, but I do not know what version that was. I'm pretty sure the vertical image dimension also stayed constant across the grab_frame() call, since this was (abstracted from) working code from about a year ago.</p>
<p dir="auto"><strong>Version info</strong></p>
<p dir="auto">Windows 8.1<br>
Matplotlib 2.0.2<br>
Python 3.6.1<br>
Anaconda 4.4.0</p>
<p dir="auto">Installed from conda</p> | <h3 dir="auto">Bug report</h3>
<p dir="auto"><strong>Bug summary</strong></p>
<p dir="auto">The <code class="notranslate">print_figure</code> function in the <code class="notranslate">FigureCanvasBase</code> class records the current figure's dpi, sets it to the requested dpi for the saved figure, and then resets it to the original. Setting the dpi invokes a property function, <code class="notranslate">_set_dpi</code> that calls the figure's <code class="notranslate">set_size_inches</code> method, which then triggers a resize of the figure manager.</p>
<p dir="auto">This resize is not evident when I use the standard Pyplot commands within a Qt console, presumably because the plot size doesn't change. However, I have embedded the Matplotlib figure in a PyQt GUI where I don't have the toolbar in the same widget, and it causes a noticeable size change for a fraction of a second before the second dpi reset restores the old size.</p>
<p dir="auto"><strong>Possible solution</strong></p>
<p dir="auto">I would like to suggest that the <code class="notranslate">FigureCanvasBase</code> <code class="notranslate">print_figure</code> function should not invoke the dpi property, but set and then reset the figure's hidden variable, <code class="notranslate">_dpi</code>, which will not trigger the redundant canvas resize. I can submit a pull request, but I wanted to check if there would be side effects.</p>
<p dir="auto"><strong>Matplotlib version</strong></p>
<ul dir="auto">
<li>Matplotlib Version: 2.0.2</li>
<li>Operating System: Mac OS 10.12.5</li>
<li>Python Version: 2.7.11</li>
<li>PyQt 4.8.7</li>
</ul> | 1 |
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [8]: a = np.uint64(2)
In [9]: b = a + 1
In [10]: type(b)
Out[10]: numpy.float64"><pre class="notranslate"><code class="notranslate">In [8]: a = np.uint64(2)
In [9]: b = a + 1
In [10]: type(b)
Out[10]: numpy.float64
</code></pre></div>
<p dir="auto">!</p> | <p dir="auto">Is this behavior expected?</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=">>> print type(np.uint32(0) + int(0))
<type 'numpy.int64'>
>>> print type(np.uint64(0) + int(0))
<type 'numpy.float64'>"><pre class="notranslate"><span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-k">print</span> <span class="pl-en">type</span>(<span class="pl-s1">np</span>.<span class="pl-en">uint32</span>(<span class="pl-c1">0</span>) <span class="pl-c1">+</span> <span class="pl-en">int</span>(<span class="pl-c1">0</span>))
<span class="pl-c1"><</span><span class="pl-s1">type</span> <span class="pl-s">'numpy.int64'</span><span class="pl-c1">></span>
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">print</span> <span class="pl-en">type</span>(<span class="pl-s1">np</span>.<span class="pl-en">uint64</span>(<span class="pl-c1">0</span>) <span class="pl-c1">+</span> <span class="pl-en">int</span>(<span class="pl-c1">0</span>))
<span class="pl-c1"><</span><span class="pl-s1">type</span> <span class="pl-s">'numpy.float64'</span><span class="pl-c1">></span></pre></div>
<p dir="auto">The latter took me by surprise!</p> | 1 |
<p dir="auto">I have compiled OpenCV 3.0.0 for python on Windows.<br>
When I tried to run the code bellow I got this error message: "The data should normally be NULL!"</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy as np
import cv2
img1 = cv2.imread('C:\\Users\\soboh\\Documents\\pcb.jpg',0) # queryImage
img2 = cv2.imread('C:\\Users\\soboh\\Documents\\pcb.jpg',0) # trainImage
sift = cv2.xfeatures2d.SURF_create()
kp1, des1 = sift.detectAndCompute(img1,None)
kp2, des2 = sift.detectAndCompute(img2,None)
FLANN_INDEX_KDTREE = 0
index_params = dict(algorithm = FLANN_INDEX_KDTREE, trees = 5)
search_params = dict(checks=50) # or pass empty dictionary
flann = cv2.FlannBasedMatcher(index_params,search_params)
matches = flann.knnMatch(des1,des2,k=2)"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-k">import</span> <span class="pl-s1">cv2</span>
<span class="pl-s1">img1</span> <span class="pl-c1">=</span> <span class="pl-s1">cv2</span>.<span class="pl-en">imread</span>(<span class="pl-s">'C:<span class="pl-cce">\\</span>Users<span class="pl-cce">\\</span>soboh<span class="pl-cce">\\</span>Documents<span class="pl-cce">\\</span>pcb.jpg'</span>,<span class="pl-c1">0</span>) <span class="pl-c"># queryImage</span>
<span class="pl-s1">img2</span> <span class="pl-c1">=</span> <span class="pl-s1">cv2</span>.<span class="pl-en">imread</span>(<span class="pl-s">'C:<span class="pl-cce">\\</span>Users<span class="pl-cce">\\</span>soboh<span class="pl-cce">\\</span>Documents<span class="pl-cce">\\</span>pcb.jpg'</span>,<span class="pl-c1">0</span>) <span class="pl-c"># trainImage</span>
<span class="pl-s1">sift</span> <span class="pl-c1">=</span> <span class="pl-s1">cv2</span>.<span class="pl-s1">xfeatures2d</span>.<span class="pl-v">SURF_create</span>()
<span class="pl-s1">kp1</span>, <span class="pl-s1">des1</span> <span class="pl-c1">=</span> <span class="pl-s1">sift</span>.<span class="pl-en">detectAndCompute</span>(<span class="pl-s1">img1</span>,<span class="pl-c1">None</span>)
<span class="pl-s1">kp2</span>, <span class="pl-s1">des2</span> <span class="pl-c1">=</span> <span class="pl-s1">sift</span>.<span class="pl-en">detectAndCompute</span>(<span class="pl-s1">img2</span>,<span class="pl-c1">None</span>)
<span class="pl-v">FLANN_INDEX_KDTREE</span> <span class="pl-c1">=</span> <span class="pl-c1">0</span>
<span class="pl-s1">index_params</span> <span class="pl-c1">=</span> <span class="pl-en">dict</span>(<span class="pl-s1">algorithm</span> <span class="pl-c1">=</span> <span class="pl-v">FLANN_INDEX_KDTREE</span>, <span class="pl-s1">trees</span> <span class="pl-c1">=</span> <span class="pl-c1">5</span>)
<span class="pl-s1">search_params</span> <span class="pl-c1">=</span> <span class="pl-en">dict</span>(<span class="pl-s1">checks</span><span class="pl-c1">=</span><span class="pl-c1">50</span>) <span class="pl-c"># or pass empty dictionary</span>
<span class="pl-s1">flann</span> <span class="pl-c1">=</span> <span class="pl-s1">cv2</span>.<span class="pl-v">FlannBasedMatcher</span>(<span class="pl-s1">index_params</span>,<span class="pl-s1">search_params</span>)
<span class="pl-s1">matches</span> <span class="pl-c1">=</span> <span class="pl-s1">flann</span>.<span class="pl-en">knnMatch</span>(<span class="pl-s1">des1</span>,<span class="pl-s1">des2</span>,<span class="pl-s1">k</span><span class="pl-c1">=</span><span class="pl-c1">2</span>)</pre></div>
<p dir="auto">The error happens when calling the function flann.knnMatch(). The full error message is:<br>
"cv2.error: cv2.cpp:161: error: (-215) The data should normally be NULL! in function allocate"</p>
<p dir="auto">So I have opened the file cv2.cpp and looked at line 161 and found these lines of code:</p>
<div class="highlight highlight-source-c++ notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="if( data != 0 )
{
CV_Error(Error::StsAssert, "The data should normally be NULL!");
// probably this is safe to do in such extreme case
return stdAllocator->allocate(dims0, sizes, type, data, step, flags, usageFlags);
}"><pre class="notranslate"><span class="pl-k">if</span>( data != <span class="pl-c1">0</span> )
{
<span class="pl-c1">CV_Error</span>(Error::StsAssert, <span class="pl-s"><span class="pl-pds">"</span>The data should normally be NULL!<span class="pl-pds">"</span></span>);
<span class="pl-c"><span class="pl-c">//</span> probably this is safe to do in such extreme case</span>
<span class="pl-k">return</span> stdAllocator-><span class="pl-c1">allocate</span>(dims0, sizes, type, data, step, flags, usageFlags);
}</pre></div>
<p dir="auto">so I have put the line that starts with "CV_Error" in a comment and compiled again the OpenCV and tried to run the same code and everything worked fine, but I am not sure that what I did is ok!!! Any help?</p> | <p dir="auto">The following code returns an error.</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" sift = x2d.SIFT_create(1000)
features_l, des_l = sift.detectAndCompute(im_l, None)
features_r, des_r = sift.detectAndCompute(im_r, None)
FLANN_INDEX_KDTREE = 1
index_params = dict(algorithm=FLANN_INDEX_KDTREE, trees=5)
search_params = dict(checks=50)
flann = cv2.FlannBasedMatcher(index_params,search_params)"><pre class="notranslate"> <span class="pl-s1">sift</span> <span class="pl-c1">=</span> <span class="pl-s1">x2d</span>.<span class="pl-v">SIFT_create</span>(<span class="pl-c1">1000</span>)
<span class="pl-s1">features_l</span>, <span class="pl-s1">des_l</span> <span class="pl-c1">=</span> <span class="pl-s1">sift</span>.<span class="pl-en">detectAndCompute</span>(<span class="pl-s1">im_l</span>, <span class="pl-c1">None</span>)
<span class="pl-s1">features_r</span>, <span class="pl-s1">des_r</span> <span class="pl-c1">=</span> <span class="pl-s1">sift</span>.<span class="pl-en">detectAndCompute</span>(<span class="pl-s1">im_r</span>, <span class="pl-c1">None</span>)
<span class="pl-v">FLANN_INDEX_KDTREE</span> <span class="pl-c1">=</span> <span class="pl-c1">1</span>
<span class="pl-s1">index_params</span> <span class="pl-c1">=</span> <span class="pl-en">dict</span>(<span class="pl-s1">algorithm</span><span class="pl-c1">=</span><span class="pl-v">FLANN_INDEX_KDTREE</span>, <span class="pl-s1">trees</span><span class="pl-c1">=</span><span class="pl-c1">5</span>)
<span class="pl-s1">search_params</span> <span class="pl-c1">=</span> <span class="pl-en">dict</span>(<span class="pl-s1">checks</span><span class="pl-c1">=</span><span class="pl-c1">50</span>)
<span class="pl-s1">flann</span> <span class="pl-c1">=</span> <span class="pl-s1">cv2</span>.<span class="pl-v">FlannBasedMatcher</span>(<span class="pl-s1">index_params</span>,<span class="pl-s1">search_params</span>)</pre></div>
<p dir="auto">The error returned:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="opencv/modules/python/src2/cv2.cpp:161: error: (-215) The data should normally be NULL! in function allocate"><pre class="notranslate"><code class="notranslate">opencv/modules/python/src2/cv2.cpp:161: error: (-215) The data should normally be NULL! in function allocate
</code></pre></div>
<p dir="auto">I tried this with Python 2.7.<br>
FLANN_INDEX_KDTREE is set to 1 unlike <a href="http://docs.opencv.org/3.0-beta/doc/py_tutorials/py_feature2d/py_matcher/py_matcher.html#matcher" rel="nofollow">here</a>,<br>
since in modules/flann/include/opencv2/flann/defines.h I found it set to 1 on line 84.</p> | 1 |
<p dir="auto">When editing the profiles.json settings file, it is currently not possible to specify more than one defaultProfile. As a result, it is not possible to have the Terminal automatically start up with more than one tab. It would be extremely convenient, to be able to specify the 3 or 4 most commonly used command-line environments to all open up in separate tabs every time Terminal is started. This would e.g. give users the ability to always open up a Command Prompt, PowerShell, and Ubuntu shell all at the same time.</p> | <p dir="auto">Being in windows it makes no sense to not being able to set font size, face type, font and background colors, pointer size and form, etc... just from JSON. It's unnecessarily annoying. That should be possible to be done from a window UI though translated automatically to JSON.</p> | 0 |
<p dir="auto">I`m trying to add an "exit app" button in Cupertino Tab Bar but it just gives me a blank screen.</p>
<h2 dir="auto">Steps to Reproduce</h2>
<p dir="auto"><a href="https://gist.github.com/ricardobrg/b8cf4744da1e5e6882e1a340b9f8a67d">https://gist.github.com/ricardobrg/b8cf4744da1e5e6882e1a340b9f8a67d</a></p>
<h2 dir="auto">Logs</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ +32 ms] [/Users/vexra/Downloads/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +35 ms] Exit code 128 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] fatal: no upstream configured for branch 'stepper-showControls'
[ ] [/Users/vexra/Downloads/flutter/] git rev-parse --abbrev-ref HEAD
[ +9 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] stepper-showControls
[ ] [/Users/vexra/Downloads/flutter/] git log -n 1 --pretty=format:%H
[ +20 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] 7f615bc7132ea8843dc0c2e0b8a95bbc3678cc1d
[ ] [/Users/vexra/Downloads/flutter/] git log -n 1 --pretty=format:%ar
[ +10 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 2 days ago
[ ] [/Users/vexra/Downloads/flutter/] git describe --match v*.*.* --first-parent --long --tags
[ +35 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.5.1-1-g7f615bc71
[ +298 ms] Exception while looking for Android Studio: FileSystemException: Directory listing failed, path = '/Applications/Unity2017.1.2/PlaybackEngines/WebGLSupport/BuildTools/Emscripten_Mac/node/' (OS Error: Permission denied, errno = 13)
[ +231 ms] /usr/bin/defaults read /Applications/Android Studio.app/Contents/Info CFBundleShortVersionString
[ +41 ms] Exit code 0 from: /usr/bin/defaults read /Applications/Android Studio.app/Contents/Info CFBundleShortVersionString
[ ] 3.1
[ +111 ms] /Users/vexra/Library/Android/sdk/platform-tools/adb devices -l
[ +6 ms] Exit code 0 from: /Users/vexra/Library/Android/sdk/platform-tools/adb devices -l
[ ] List of devices attached
[ +5 ms] idevice_id -h
[ +280 ms] /usr/bin/xcrun simctl list --json devices
[ +970 ms] Launching lib/main.dart on iPhone X in debug mode...
[ +1 ms] /usr/bin/defaults read /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner/Info CFBundleIdentifier
[ +41 ms] Exit code 0 from: /usr/bin/defaults read /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner/Info CFBundleIdentifier
[ ] $(PRODUCT_BUNDLE_IDENTIFIER)
[ ] [ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner.xcodeproj -target Runner -showBuildSettings
[+1133 ms] Exit code 0 from: /usr/bin/xcodebuild -project /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/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 = vexra
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/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios
BUILD_ROOT = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Release-iphoneos
CACHE_ROOT = /var/folders/k9/_8s5nn956lz5smd8ythwsrj40000gn/C/com.apple.DeveloperTools/9.4.1-9F2000/Xcode
CCHROOT = /var/folders/k9/_8s5nn956lz5smd8ythwsrj40000gn/C/com.apple.DeveloperTools/9.4.1-9F2000/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/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/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/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Release
CONFIGURATION_BUILD_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Release-iphoneos
CONFIGURATION_TEMP_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos
CONTENTS_FOLDER_PATH = Runner.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator
CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator11.4
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = arm64
CURRENT_PROJECT_VERSION = 1
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf-with-dsym
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min=
DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4
DERIVED_FILES_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = English
DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DWARF_DSYM_FILE_NAME = Runner.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Release-iphoneos
EFFECTIVE_PLATFORM_NAME = -iphoneos
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBEDDED_PROFILE_NAME = embedded.mobileprovision
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_NS_ASSERTIONS = NO
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = NO
ENTITLEMENTS_ALLOWED = YES
ENTITLEMENTS_REQUIRED = YES
EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
EXECUTABLES_FOLDER_PATH = Runner.app/Executables
EXECUTABLE_FOLDER_PATH = Runner.app
EXECUTABLE_NAME = Runner
EXECUTABLE_PATH = Runner.app/Runner
EXPANDED_CODE_SIGN_IDENTITY =
EXPANDED_CODE_SIGN_IDENTITY_NAME =
EXPANDED_PROVISIONING_PROFILE =
FILE_LIST = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_MODE = debug
FLUTTER_FRAMEWORK_DIR = /Users/vexra/Downloads/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/vexra/Downloads/flutter
FLUTTER_TARGET = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_SYMBOLS_PRIVATE_EXTERN = YES
GCC_THUMB_SUPPORT = YES
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 20
GROUP = staff
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/vexra
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 = vexra
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/vexra/Desktop/brgweb/interagirflutter/testeflutter/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/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/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/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Release-iphoneos/Runner.app
MODULE_CACHE_DIR = /Users/vexra/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/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal
OBJROOT = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios
ONLY_ACTIVE_ARCH = NO
OS = MACOS
OSAC = /usr/bin/osacompile
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands
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/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
PLATFORM_DISPLAY_NAME = iOS
PLATFORM_NAME = iphoneos
PLATFORM_PREFERRED_ARCH = arm64
PLATFORM_PRODUCT_BUILD_VERSION = 15F79
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PREVIEW_DART_2 = true
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = br.com.brgweb.testeflutter
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/DerivedSources
PROJECT_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
PROJECT_FILE_PATH = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build
PROJECT_TEMP_ROOT = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/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/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
SDK_DIR_iphoneos11_4 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
SDK_NAME = iphoneos11.4
SDK_NAMES = iphoneos11.4
SDK_PRODUCT_BUILD_VERSION = 15F79
SDK_VERSION = 11.4
SDK_VERSION_ACTUAL = 110400
SDK_VERSION_MAJOR = 110000
SDK_VERSION_MINOR = 400
SED = /usr/bin/sed
SEPARATE_STRIP = NO
SEPARATE_SYMBOL_EDIT = NO
SET_DIR_MODE_OWNER_GROUP = YES
SET_FILE_MODE_OWNER_GROUP = NO
SHALLOW_BUNDLE = YES
SHARED_DERIVED_FILE_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Release-iphoneos/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/SharedPrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
SRCROOT = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/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_PLATFORM_TARGET_PREFIX = ios
SYMROOT = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/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/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Release-iphoneos
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILES_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILE_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_ROOT = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/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 = vexra
USER_APPS_DIR = /Users/vexra/Applications
USER_LIBRARY_DIR = /Users/vexra/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 = vexra
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 = 9F2000
XCODE_VERSION_ACTUAL = 0941
XCODE_VERSION_MAJOR = 0900
XCODE_VERSION_MINOR = 0940
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = arm64
variant = normal
[ +14 ms] Building Runner.app for 394D6FA1-6AD0-42B4-8C43-15CFF42B255D.
[ +10 ms] script /dev/null /usr/bin/log stream --style syslog --predicate processImagePath CONTAINS "394D6FA1-6AD0-42B4-8C43-15CFF42B255D"
[ +37 ms] [DEVICE LOG] Filtering the log data using "processImagePath CONTAINS "394D6FA1-6AD0-42B4-8C43-15CFF42B255D""
[ +4 ms] [DEVICE LOG] Timestamp (process)[PID]
[ +153 ms] Skipping kernel compilation. Fingerprint match.
[ +249 ms] Building bundle
[ ] Writing asset files to build/flutter_assets
[ +51 ms] Wrote build/flutter_assets
[ +1 ms] /usr/bin/xcrun simctl get_app_container 394D6FA1-6AD0-42B4-8C43-15CFF42B255D br.com.brgweb.testeflutter
[ ] /usr/bin/killall Runner
[ +165 ms] python -c import six
[ +53 ms] [ios/] /usr/bin/xcodebuild -list
[ +774 ms] Exit code 0 from: /usr/bin/xcodebuild -list
[ ] Information about project "Runner":
Targets:
Runner
Build Configurations:
Debug
Release
If no build configuration is specified and -scheme is not passed then "Release" is used.
Schemes:
Runner
[ +2 ms] Trying to resolve native pub services.
[ +2 ms] Looking for YAML at 'pubspec.yaml'
[ ] No services specified in the manifest
[ ] Found 0 service definition(s).
[ +1 ms] Copying service frameworks to '/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Frameworks'.
[ ] Creating service definitions manifest at 'ios/ServiceDefinitions.json'
[ +5 ms] Starting Xcode build...
[ ] [ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios -sdk iphonesimulator -arch x86_64
[+4918 ms] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios
SDKROOT = iphonesimulator11.4
VERBOSE_SCRIPT_LOGGING = YES
=== BUILD TARGET Runner OF PROJECT Runner WITH CONFIGURATION Debug ===
Check dependencies
PhaseScriptExecution Run\ Script /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh
cd /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export ACTION=build
export AD_HOC_CODE_SIGNING_ALLOWED=YES
export ALTERNATE_GROUP=staff
export ALTERNATE_MODE=u+w,go-w,a+rX
export ALTERNATE_OWNER=vexra
export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO
export ALWAYS_SEARCH_USER_PATHS=NO
export ALWAYS_USE_SEPARATE_HEADERMAPS=NO
export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
export APPLE_INTERNAL_DIR=/AppleInternal
export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
export APPLICATION_EXTENSION_API_ONLY=NO
export APPLY_RULES_IN_COPY_FILES=NO
export ARCHS=x86_64
export ARCHS_STANDARD="i386 x86_64"
export ARCHS_STANDARD_32_64_BIT="i386 x86_64"
export ARCHS_STANDARD_32_BIT=i386
export ARCHS_STANDARD_64_BIT=x86_64
export ARCHS_STANDARD_INCLUDING_64_BIT="i386 x86_64"
export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64"
export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
export BITCODE_GENERATION_MODE=marker
export BUILD_ACTIVE_RESOURCES_ONLY=YES
export BUILD_COMPONENTS="headers build"
export BUILD_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios
export BUILD_ROOT=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Products
export BUILD_STYLE=
export BUILD_VARIANTS=normal
export BUILT_PRODUCTS_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator
export CACHE_ROOT=/var/folders/k9/_8s5nn956lz5smd8ythwsrj40000gn/C/com.apple.DeveloperTools/9.4.1-9F2000/Xcode
export CCHROOT=/var/folders/k9/_8s5nn956lz5smd8ythwsrj40000gn/C/com.apple.DeveloperTools/9.4.1-9F2000/Xcode
export CHMOD=/bin/chmod
export CHOWN=/usr/sbin/chown
export CLANG_ANALYZER_NONNULL=YES
export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x
export CLANG_CXX_LIBRARY=libc++
export CLANG_ENABLE_MODULES=YES
export CLANG_ENABLE_OBJC_ARC=YES
export CLANG_MODULES_BUILD_SESSION_FILE=/Users/vexra/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES
export CLANG_WARN_BOOL_CONVERSION=YES
export CLANG_WARN_COMMA=YES
export CLANG_WARN_CONSTANT_CONVERSION=YES
export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
export CLANG_WARN_EMPTY_BODY=YES
export CLANG_WARN_ENUM_CONVERSION=YES
export CLANG_WARN_INFINITE_RECURSION=YES
export CLANG_WARN_INT_CONVERSION=YES
export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES
export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES
export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES
export CLANG_WARN_STRICT_PROTOTYPES=YES
export CLANG_WARN_SUSPICIOUS_MOVE=YES
export CLANG_WARN_UNREACHABLE_CODE=YES
export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
export CLASS_FILE_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
export CLEAN_PRECOMPS=YES
export CLONE_HEADERS=NO
export CODESIGNING_FOLDER_PATH=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app
export CODE_SIGNING_ALLOWED=YES
export CODE_SIGNING_REQUIRED=YES
export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext
export CODE_SIGN_IDENTITY=-
export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES
export COLOR_DIAGNOSTICS=NO
export COMBINE_HIDPI_IMAGES=NO
export COMMAND_MODE=legacy
export COMPILER_INDEX_STORE_ENABLE=Default
export COMPOSITE_SDK_DIRS=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/CompositeSDKs
export COMPRESS_PNG_FILES=YES
export CONFIGURATION=Debug
export CONFIGURATION_BUILD_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator
export CONFIGURATION_TEMP_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
export CONTENTS_FOLDER_PATH=Runner.app
export COPYING_PRESERVES_HFS_DATA=NO
export COPY_HEADERS_RUN_UNIFDEF=NO
export COPY_PHASE_STRIP=NO
export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
export CORRESPONDING_DEVICE_SDK_NAME=iphoneos11.4
export CP=/bin/cp
export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
export CURRENT_ARCH=x86_64
export CURRENT_PROJECT_VERSION=1
export CURRENT_VARIANT=normal
export DEAD_CODE_STRIPPING=YES
export DEBUGGING_SYMBOLS=YES
export DEBUG_INFORMATION_FORMAT=dwarf
export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions
export DEFINES_MODULE=NO
export DEPLOYMENT_LOCATION=NO
export DEPLOYMENT_POSTPROCESSING=NO
export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min
export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min=
export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4"
export DERIVED_FILES_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_FILE_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_SOURCES_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export DEVELOPMENT_LANGUAGE=English
export DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Documentation
export DO_HEADER_SCANNING_IN_JAM=NO
export DSTROOT=/tmp/Runner.dst
export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export DWARF_DSYM_FILE_NAME=Runner.app.dSYM
export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
export DWARF_DSYM_FOLDER_PATH=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator
export EFFECTIVE_PLATFORM_NAME=-iphonesimulator
export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
export ENABLE_BITCODE=NO
export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
export ENABLE_HEADER_DEPENDENCIES=YES
export ENABLE_ON_DEMAND_RESOURCES=YES
export ENABLE_STRICT_OBJC_MSGSEND=YES
export ENABLE_TESTABILITY=YES
export ENTITLEMENTS_REQUIRED=YES
export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj"
export EXECUTABLES_FOLDER_PATH=Runner.app/Executables
export EXECUTABLE_FOLDER_PATH=Runner.app
export EXECUTABLE_NAME=Runner
export EXECUTABLE_PATH=Runner.app/Runner
export EXPANDED_CODE_SIGN_IDENTITY=-
export EXPANDED_CODE_SIGN_IDENTITY_NAME=-
export EXPANDED_PROVISIONING_PROFILE=
export FILE_LIST=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
export FIXED_FILES_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
export FLUTTER_APPLICATION_PATH=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter
export FLUTTER_BUILD_DIR=build
export FLUTTER_BUILD_MODE=debug
export FLUTTER_FRAMEWORK_DIR=/Users/vexra/Downloads/flutter/bin/cache/artifacts/engine/ios
export FLUTTER_ROOT=/Users/vexra/Downloads/flutter
export FLUTTER_TARGET=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/lib/main.dart
export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks
export FRAMEWORK_FLAG_PREFIX=-framework
export FRAMEWORK_SEARCH_PATHS="/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter"
export FRAMEWORK_VERSION=A
export FULL_PRODUCT_NAME=Runner.app
export GCC3_VERSION=3.3
export GCC_C_LANGUAGE_STANDARD=gnu99
export GCC_DYNAMIC_NO_PIC=NO
export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
export GCC_NO_COMMON_BLOCKS=YES
export GCC_OBJC_LEGACY_DISPATCH=YES
export GCC_OPTIMIZATION_LEVEL=0
export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++"
export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 "
export GCC_SYMBOLS_PRIVATE_EXTERN=NO
export GCC_TREAT_WARNINGS_AS_ERRORS=NO
export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
export GCC_WARN_UNDECLARED_SELECTOR=YES
export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
export GCC_WARN_UNUSED_FUNCTION=YES
export GCC_WARN_UNUSED_VARIABLE=YES
export GENERATE_MASTER_OBJECT_FILE=NO
export GENERATE_PKGINFO_FILE=YES
export GENERATE_PROFILING_CODE=NO
export GENERATE_TEXT_BASED_STUBS=NO
export GID=20
export GROUP=staff
export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
export HEADERMAP_USES_VFS=NO
export HEADER_SEARCH_PATHS="/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/include "
export HIDE_BITCODE_SYMBOLS=YES
export HOME=/Users/vexra
export ICONV=/usr/bin/iconv
export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
export INFOPLIST_FILE=Runner/Info.plist
export INFOPLIST_OUTPUT_FORMAT=binary
export INFOPLIST_PATH=Runner.app/Info.plist
export INFOPLIST_PREPROCESS=NO
export INFOSTRINGS_PATH=Runner.app/English.lproj/InfoPlist.strings
export INLINE_PRIVATE_FRAMEWORKS=NO
export INSTALLHDRS_COPY_PHASE=NO
export INSTALLHDRS_SCRIPT_PHASE=NO
export INSTALL_DIR=/tmp/Runner.dst/Applications
export INSTALL_GROUP=staff
export INSTALL_MODE_FLAG=u+w,go-w,a+rX
export INSTALL_OWNER=vexra
export INSTALL_PATH=/Applications
export INSTALL_ROOT=/tmp/Runner.dst
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
export JAVA_ARCHIVE_CLASSES=YES
export JAVA_ARCHIVE_TYPE=JAR
export JAVA_COMPILER=/usr/bin/javac
export JAVA_FOLDER_PATH=Runner.app/Java
export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
export JAVA_JAR_FLAGS=cv
export JAVA_SOURCE_SUBDIR=.
export JAVA_USE_DEPENDENCIES=YES
export JAVA_ZIP_FLAGS=-urg
export JIKES_DEFAULT_FLAGS="+E +OLDCSO"
export KEEP_PRIVATE_EXTERNS=NO
export LD_DEPENDENCY_INFO_FILE=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
export LD_GENERATE_MAP_FILE=NO
export LD_MAP_FILE_PATH=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt
export LD_NO_PIE=NO
export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
export LD_RUNPATH_SEARCH_PATHS=" @executable_path/Frameworks"
export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
export LEX=lex
export LIBRARY_FLAG_NOSPACE=YES
export LIBRARY_FLAG_PREFIX=-l
export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
export LIBRARY_SEARCH_PATHS="/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter"
export LINKER_DISPLAYS_MANGLED_NAMES=NO
export LINK_FILE_LIST_normal_x86_64=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList
export LINK_WITH_STANDARD_LIBRARIES=YES
export LOCALIZABLE_CONTENT_DIR=
export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/English.lproj
export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFLocalizedString"
export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
export LOCAL_APPS_DIR=/Applications
export LOCAL_DEVELOPER_DIR=/Library/Developer
export LOCAL_LIBRARY_DIR=/Library
export LOCROOT=
export LOCSYMROOT=
export MACH_O_TYPE=mh_execute
export MAC_OS_X_PRODUCT_BUILD_VERSION=17G65
export MAC_OS_X_VERSION_ACTUAL=101306
export MAC_OS_X_VERSION_MAJOR=101300
export MAC_OS_X_VERSION_MINOR=1306
export METAL_LIBRARY_FILE_BASE=default
export METAL_LIBRARY_OUTPUT_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app
export MODULE_CACHE_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
export MTL_ENABLE_DEBUG_INFO=YES
export NATIVE_ARCH=i386
export NATIVE_ARCH_32_BIT=i386
export NATIVE_ARCH_64_BIT=x86_64
export NATIVE_ARCH_ACTUAL=x86_64
export NO_COMMON=YES
export OBJC_ABI_VERSION=2
export OBJECT_FILE_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
export OBJECT_FILE_DIR_normal=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
export OBJROOT=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex
export ONLY_ACTIVE_ARCH=YES
export OS=MACOS
export OSAC=/usr/bin/osacompile
export PACKAGE_TYPE=com.apple.package-type.wrapper.application
export PASCAL_STRINGS=YES
export PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms"
export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist
export PFE_FILE_C_DIALECTS=objective-c
export PKGINFO_FILE_PATH=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
export PKGINFO_PATH=Runner.app/PkgInfo
export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
export PLATFORM_DISPLAY_NAME="iOS Simulator"
export PLATFORM_NAME=iphonesimulator
export PLATFORM_PREFERRED_ARCH=x86_64
export PLIST_FILE_OUTPUT_FORMAT=binary
export PLUGINS_FOLDER_PATH=Runner.app/PlugIns
export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
export PRECOMP_DESTINATION_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
export PREVIEW_DART_2=true
export PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders
export PRODUCT_BUNDLE_IDENTIFIER=br.com.brgweb.testeflutter
export PRODUCT_MODULE_NAME=Runner
export PRODUCT_NAME=Runner
export PRODUCT_SETTINGS_PATH=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner/Info.plist
export PRODUCT_TYPE=com.apple.product-type.application
export PROFILING_CODE=NO
export PROJECT=Runner
export PROJECT_DERIVED_FILE_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/DerivedSources
export PROJECT_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export PROJECT_FILE_PATH=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner.xcodeproj
export PROJECT_NAME=Runner
export PROJECT_TEMP_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build
export PROJECT_TEMP_ROOT=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex
export PUBLIC_HEADERS_FOLDER_PATH=Runner.app/Headers
export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
export REMOVE_CVS_FROM_RESOURCES=YES
export REMOVE_GIT_FROM_RESOURCES=YES
export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
export REMOVE_HG_FROM_RESOURCES=YES
export REMOVE_SVN_FROM_RESOURCES=YES
export REZ_COLLECTOR_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
export REZ_OBJECTS_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
export REZ_SEARCH_PATHS="/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator "
export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
export SCRIPTS_FOLDER_PATH=Runner.app/Scripts
export SCRIPT_INPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_FILE_COUNT=0
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_DIR_iphonesimulator11_4=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_NAME=iphonesimulator11.4
export SDK_NAMES=iphonesimulator11.4
export SDK_PRODUCT_BUILD_VERSION=15F79
export SDK_VERSION=11.4
export SDK_VERSION_ACTUAL=110400
export SDK_VERSION_MAJOR=110000
export SDK_VERSION_MINOR=400
export SED=/usr/bin/sed
export SEPARATE_STRIP=NO
export SEPARATE_SYMBOL_EDIT=NO
export SET_DIR_MODE_OWNER_GROUP=YES
export SET_FILE_MODE_OWNER_GROUP=NO
export SHALLOW_BUNDLE=YES
export SHARED_DERIVED_FILE_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/DerivedSources
export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks
export SHARED_PRECOMPS_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/PrecompiledHeaders
export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport
export SKIP_INSTALL=NO
export SOURCE_ROOT=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export SRCROOT=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export STRINGS_FILE_OUTPUT_ENCODING=binary
export STRIP_BITCODE_FROM_COPIED_FILES=NO
export STRIP_INSTALLED_PRODUCT=YES
export STRIP_STYLE=all
export STRIP_SWIFT_SYMBOLS=YES
export SUPPORTED_DEVICE_FAMILIES=1,2
export SUPPORTED_PLATFORMS="iphonesimulator iphoneos"
export SUPPORTS_TEXT_BASED_API=NO
export SWIFT_PLATFORM_TARGET_PREFIX=ios
export SYMROOT=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Products
export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
export SYSTEM_APPS_DIR=/Applications
export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
export SYSTEM_DEMOS_DIR=/Applications/Extras
export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples"
export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library"
export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools"
export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools"
export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools"
export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes"
export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools
export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities
export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
export SYSTEM_LIBRARY_DIR=/System/Library
export TAPI_VERIFY_MODE=ErrorsOnly
export TARGETED_DEVICE_FAMILY=1,2
export TARGETNAME=Runner
export TARGET_BUILD_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator
export TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder"
export TARGET_NAME=Runner
export TARGET_TEMP_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILES_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILE_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_ROOT=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex
export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
export UID=501
export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app
export UNSTRIPPED_PRODUCT=NO
export USER=vexra
export USER_APPS_DIR=/Users/vexra/Applications
export USER_LIBRARY_DIR=/Users/vexra/Library
export USE_DYNAMIC_NO_PIC=YES
export USE_HEADERMAP=YES
export USE_HEADER_SYMLINKS=NO
export VALIDATE_PRODUCT=NO
export VALID_ARCHS="i386 x86_64"
export VERBOSE_PBXCP=NO
export VERBOSE_SCRIPT_LOGGING=YES
export VERSIONING_SYSTEM=apple-generic
export VERSIONPLIST_PATH=Runner.app/version.plist
export VERSION_INFO_BUILDER=vexra
export VERSION_INFO_FILE=Runner_vers.c
export VERSION_INFO_STRING="\"@(#)PROGRAM:Runner PROJECT:Runner-1\""
export WRAPPER_EXTENSION=app
export WRAPPER_NAME=Runner.app
export WRAPPER_SUFFIX=.app
export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO
export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION=9F2000
export XCODE_VERSION_ACTUAL=0941
export XCODE_VERSION_MAJOR=0900
export XCODE_VERSION_MINOR=0940
export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices
export YACC=yacc
export arch=x86_64
export variant=normal
/bin/sh -c /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh
♦ mkdir -p -- /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter
♦ rm -rf -- /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/Flutter.framework
♦ rm -rf -- /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/App.framework
♦ cp -r -- /Users/vexra/Downloads/flutter/bin/cache/artifacts/engine/ios/Flutter.framework /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter
♦ find /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/Flutter.framework -type f -exec chmod a-w {} ;
♦ mkdir -p -- /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/App.framework
♦ eval
♦ cp -- /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/AppFrameworkInfo.plist /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/App.framework/Info.plist
♦ /Users/vexra/Downloads/flutter/bin/flutter --suppress-analytics --verbose build bundle --target=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/lib/main.dart --snapshot=build/snapshot_blob.bin --depfile=build/snapshot_blob.bin.d --asset-dir=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/flutter_assets --preview-dart-2
[ +7 ms] [/Users/vexra/Downloads/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +40 ms] Exit code 128 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] fatal: no upstream configured for branch 'stepper-showControls'
[ ] [/Users/vexra/Downloads/flutter/] git rev-parse --abbrev-ref HEAD
[ +6 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] stepper-showControls
[ ] [/Users/vexra/Downloads/flutter/] git log -n 1 --pretty=format:%H
[ +7 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] 7f615bc7132ea8843dc0c2e0b8a95bbc3678cc1d
[ ] [/Users/vexra/Downloads/flutter/] git log -n 1 --pretty=format:%ar
[ +6 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 2 days ago
[ ] [/Users/vexra/Downloads/flutter/] git describe --match v*.*.* --first-parent --long --tags
[ +12 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.5.1-1-g7f615bc71
[ +473 ms] Skipping kernel compilation. Fingerprint match.
[ +219 ms] Building bundle
[ +1 ms] Writing asset files to /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/flutter_assets
[ +71 ms] Wrote /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/flutter_assets
[ +9 ms] "flutter bundle" took 650ms.
Project /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter built and packaged successfully.
CompileC /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.o Runner/main.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
cd /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export LANG=en_US.US-ASCII
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/vexra/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/vexra/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Index/DataStore -iquote /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/include -I/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator -F/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter -MMD -MT dependencies -MF /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.d --serialize-diagnostics /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.dia -c /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner/main.m -o /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.o
CompileC /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o Runner/AppDelegate.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
cd /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export LANG=en_US.US-ASCII
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/vexra/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/vexra/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Index/DataStore -iquote /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/include -I/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator -F/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter -MMD -MT dependencies -MF /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.d --serialize-diagnostics /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.dia -c /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner/AppDelegate.m -o /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o
While building module 'Flutter' imported from /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner/AppDelegate.h:1:
In file included from <module-includes>:1:
In file included from /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/Flutter.framework/Headers/Flutter.h:37:
In file included from /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/Flutter.framework/Headers/FlutterAppDelegate.h:11:
/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/Flutter.framework/Headers/FlutterPlugin.h:140:58: warning: this block declaration is not a prototype [-Wstrict-prototypes]
completionHandler:(nonnull void (^)())completionHandler;
^
void
1 warning generated.
1 warning generated.
CompileC /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o Runner/GeneratedPluginRegistrant.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
cd /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export LANG=en_US.US-ASCII
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/vexra/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/vexra/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Index/DataStore -iquote /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/include -I/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator -F/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter -MMD -MT dependencies -MF /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.d --serialize-diagnostics /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.dia -c /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner/GeneratedPluginRegistrant.m -o /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o
Ld /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app/Runner normal x86_64
cd /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -L/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator -L/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter -F/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator -F/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter -filelist /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -mios-simulator-version-min=8.0 -dead_strip -Xlinker -object_path_lto -Xlinker /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __entitlements -Xlinker /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent -framework Flutter -framework App -Xlinker -dependency_info -Xlinker /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat -o /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app/Runner
CpResource Flutter/Generated.xcconfig /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app/Generated.xcconfig
cd /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/Generated.xcconfig /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app
CpResource Flutter/flutter_assets /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app/flutter_assets
cd /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/flutter_assets /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app
PBXCp Flutter/App.framework /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework
cd /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -exclude Headers -exclude PrivateHeaders -exclude Modules -exclude *.tbd -resolve-src-symlinks /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/App.framework /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app/Frameworks
PBXCp Flutter/Flutter.framework /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework
cd /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -exclude Headers -exclude PrivateHeaders -exclude Modules -exclude *.tbd -resolve-src-symlinks /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/Flutter.framework /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app/Frameworks
CodeSign /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework
cd /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
Signing Identity: "-"
/usr/bin/codesign --force --sign - --preserve-metadata=identifier,entitlements,flags --timestamp=none /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework
CodeSign /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework
cd /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
Signing Identity: "-"
/usr/bin/codesign --force --sign - --preserve-metadata=identifier,entitlements,flags --timestamp=none /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework
PhaseScriptExecution Thin\ Binary /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh
cd /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export ACTION=build
export AD_HOC_CODE_SIGNING_ALLOWED=YES
export ALTERNATE_GROUP=staff
export ALTERNATE_MODE=u+w,go-w,a+rX
export ALTERNATE_OWNER=vexra
export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO
export ALWAYS_SEARCH_USER_PATHS=NO
export ALWAYS_USE_SEPARATE_HEADERMAPS=NO
export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
export APPLE_INTERNAL_DIR=/AppleInternal
export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
export APPLICATION_EXTENSION_API_ONLY=NO
export APPLY_RULES_IN_COPY_FILES=NO
export ARCHS=x86_64
export ARCHS_STANDARD="i386 x86_64"
export ARCHS_STANDARD_32_64_BIT="i386 x86_64"
export ARCHS_STANDARD_32_BIT=i386
export ARCHS_STANDARD_64_BIT=x86_64
export ARCHS_STANDARD_INCLUDING_64_BIT="i386 x86_64"
export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64"
export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
export BITCODE_GENERATION_MODE=marker
export BUILD_ACTIVE_RESOURCES_ONLY=YES
export BUILD_COMPONENTS="headers build"
export BUILD_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios
export BUILD_ROOT=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Products
export BUILD_STYLE=
export BUILD_VARIANTS=normal
export BUILT_PRODUCTS_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator
export CACHE_ROOT=/var/folders/k9/_8s5nn956lz5smd8ythwsrj40000gn/C/com.apple.DeveloperTools/9.4.1-9F2000/Xcode
export CCHROOT=/var/folders/k9/_8s5nn956lz5smd8ythwsrj40000gn/C/com.apple.DeveloperTools/9.4.1-9F2000/Xcode
export CHMOD=/bin/chmod
export CHOWN=/usr/sbin/chown
export CLANG_ANALYZER_NONNULL=YES
export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x
export CLANG_CXX_LIBRARY=libc++
export CLANG_ENABLE_MODULES=YES
export CLANG_ENABLE_OBJC_ARC=YES
export CLANG_MODULES_BUILD_SESSION_FILE=/Users/vexra/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES
export CLANG_WARN_BOOL_CONVERSION=YES
export CLANG_WARN_COMMA=YES
export CLANG_WARN_CONSTANT_CONVERSION=YES
export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
export CLANG_WARN_EMPTY_BODY=YES
export CLANG_WARN_ENUM_CONVERSION=YES
export CLANG_WARN_INFINITE_RECURSION=YES
export CLANG_WARN_INT_CONVERSION=YES
export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES
export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES
export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES
export CLANG_WARN_STRICT_PROTOTYPES=YES
export CLANG_WARN_SUSPICIOUS_MOVE=YES
export CLANG_WARN_UNREACHABLE_CODE=YES
export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
export CLASS_FILE_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
export CLEAN_PRECOMPS=YES
export CLONE_HEADERS=NO
export CODESIGNING_FOLDER_PATH=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app
export CODE_SIGNING_ALLOWED=YES
export CODE_SIGNING_REQUIRED=YES
export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext
export CODE_SIGN_IDENTITY=-
export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES
export COLOR_DIAGNOSTICS=NO
export COMBINE_HIDPI_IMAGES=NO
export COMMAND_MODE=legacy
export COMPILER_INDEX_STORE_ENABLE=Default
export COMPOSITE_SDK_DIRS=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/CompositeSDKs
export COMPRESS_PNG_FILES=YES
export CONFIGURATION=Debug
export CONFIGURATION_BUILD_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator
export CONFIGURATION_TEMP_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
export CONTENTS_FOLDER_PATH=Runner.app
export COPYING_PRESERVES_HFS_DATA=NO
export COPY_HEADERS_RUN_UNIFDEF=NO
export COPY_PHASE_STRIP=NO
export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
export CORRESPONDING_DEVICE_SDK_NAME=iphoneos11.4
export CP=/bin/cp
export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
export CURRENT_ARCH=x86_64
export CURRENT_PROJECT_VERSION=1
export CURRENT_VARIANT=normal
export DEAD_CODE_STRIPPING=YES
export DEBUGGING_SYMBOLS=YES
export DEBUG_INFORMATION_FORMAT=dwarf
export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions
export DEFINES_MODULE=NO
export DEPLOYMENT_LOCATION=NO
export DEPLOYMENT_POSTPROCESSING=NO
export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min
export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min=
export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4"
export DERIVED_FILES_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_FILE_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_SOURCES_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export DEVELOPMENT_LANGUAGE=English
export DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Documentation
export DO_HEADER_SCANNING_IN_JAM=NO
export DSTROOT=/tmp/Runner.dst
export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export DWARF_DSYM_FILE_NAME=Runner.app.dSYM
export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
export DWARF_DSYM_FOLDER_PATH=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator
export EFFECTIVE_PLATFORM_NAME=-iphonesimulator
export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
export ENABLE_BITCODE=NO
export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
export ENABLE_HEADER_DEPENDENCIES=YES
export ENABLE_ON_DEMAND_RESOURCES=YES
export ENABLE_STRICT_OBJC_MSGSEND=YES
export ENABLE_TESTABILITY=YES
export ENTITLEMENTS_REQUIRED=YES
export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj"
export EXECUTABLES_FOLDER_PATH=Runner.app/Executables
export EXECUTABLE_FOLDER_PATH=Runner.app
export EXECUTABLE_NAME=Runner
export EXECUTABLE_PATH=Runner.app/Runner
export EXPANDED_CODE_SIGN_IDENTITY=-
export EXPANDED_CODE_SIGN_IDENTITY_NAME=-
export EXPANDED_PROVISIONING_PROFILE=
export FILE_LIST=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
export FIXED_FILES_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
export FLUTTER_APPLICATION_PATH=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter
export FLUTTER_BUILD_DIR=build
export FLUTTER_BUILD_MODE=debug
export FLUTTER_FRAMEWORK_DIR=/Users/vexra/Downloads/flutter/bin/cache/artifacts/engine/ios
export FLUTTER_ROOT=/Users/vexra/Downloads/flutter
export FLUTTER_TARGET=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/lib/main.dart
export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks
export FRAMEWORK_FLAG_PREFIX=-framework
export FRAMEWORK_SEARCH_PATHS="/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter"
export FRAMEWORK_VERSION=A
export FULL_PRODUCT_NAME=Runner.app
export GCC3_VERSION=3.3
export GCC_C_LANGUAGE_STANDARD=gnu99
export GCC_DYNAMIC_NO_PIC=NO
export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
export GCC_NO_COMMON_BLOCKS=YES
export GCC_OBJC_LEGACY_DISPATCH=YES
export GCC_OPTIMIZATION_LEVEL=0
export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++"
export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 "
export GCC_SYMBOLS_PRIVATE_EXTERN=NO
export GCC_TREAT_WARNINGS_AS_ERRORS=NO
export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
export GCC_WARN_UNDECLARED_SELECTOR=YES
export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
export GCC_WARN_UNUSED_FUNCTION=YES
export GCC_WARN_UNUSED_VARIABLE=YES
export GENERATE_MASTER_OBJECT_FILE=NO
export GENERATE_PKGINFO_FILE=YES
export GENERATE_PROFILING_CODE=NO
export GENERATE_TEXT_BASED_STUBS=NO
export GID=20
export GROUP=staff
export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
export HEADERMAP_USES_VFS=NO
export HEADER_SEARCH_PATHS="/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/include "
export HIDE_BITCODE_SYMBOLS=YES
export HOME=/Users/vexra
export ICONV=/usr/bin/iconv
export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
export INFOPLIST_FILE=Runner/Info.plist
export INFOPLIST_OUTPUT_FORMAT=binary
export INFOPLIST_PATH=Runner.app/Info.plist
export INFOPLIST_PREPROCESS=NO
export INFOSTRINGS_PATH=Runner.app/English.lproj/InfoPlist.strings
export INLINE_PRIVATE_FRAMEWORKS=NO
export INSTALLHDRS_COPY_PHASE=NO
export INSTALLHDRS_SCRIPT_PHASE=NO
export INSTALL_DIR=/tmp/Runner.dst/Applications
export INSTALL_GROUP=staff
export INSTALL_MODE_FLAG=u+w,go-w,a+rX
export INSTALL_OWNER=vexra
export INSTALL_PATH=/Applications
export INSTALL_ROOT=/tmp/Runner.dst
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
export JAVA_ARCHIVE_CLASSES=YES
export JAVA_ARCHIVE_TYPE=JAR
export JAVA_COMPILER=/usr/bin/javac
export JAVA_FOLDER_PATH=Runner.app/Java
export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
export JAVA_JAR_FLAGS=cv
export JAVA_SOURCE_SUBDIR=.
export JAVA_USE_DEPENDENCIES=YES
export JAVA_ZIP_FLAGS=-urg
export JIKES_DEFAULT_FLAGS="+E +OLDCSO"
export KEEP_PRIVATE_EXTERNS=NO
export LD_DEPENDENCY_INFO_FILE=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
export LD_GENERATE_MAP_FILE=NO
export LD_MAP_FILE_PATH=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt
export LD_NO_PIE=NO
export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
export LD_RUNPATH_SEARCH_PATHS=" @executable_path/Frameworks"
export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
export LEX=lex
export LIBRARY_FLAG_NOSPACE=YES
export LIBRARY_FLAG_PREFIX=-l
export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
export LIBRARY_SEARCH_PATHS="/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter"
export LINKER_DISPLAYS_MANGLED_NAMES=NO
export LINK_FILE_LIST_normal_x86_64=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList
export LINK_WITH_STANDARD_LIBRARIES=YES
export LOCALIZABLE_CONTENT_DIR=
export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/English.lproj
export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFLocalizedString"
export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
export LOCAL_APPS_DIR=/Applications
export LOCAL_DEVELOPER_DIR=/Library/Developer
export LOCAL_LIBRARY_DIR=/Library
export LOCROOT=
export LOCSYMROOT=
export MACH_O_TYPE=mh_execute
export MAC_OS_X_PRODUCT_BUILD_VERSION=17G65
export MAC_OS_X_VERSION_ACTUAL=101306
export MAC_OS_X_VERSION_MAJOR=101300
export MAC_OS_X_VERSION_MINOR=1306
export METAL_LIBRARY_FILE_BASE=default
export METAL_LIBRARY_OUTPUT_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app
export MODULE_CACHE_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
export MTL_ENABLE_DEBUG_INFO=YES
export NATIVE_ARCH=i386
export NATIVE_ARCH_32_BIT=i386
export NATIVE_ARCH_64_BIT=x86_64
export NATIVE_ARCH_ACTUAL=x86_64
export NO_COMMON=YES
export OBJC_ABI_VERSION=2
export OBJECT_FILE_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
export OBJECT_FILE_DIR_normal=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
export OBJROOT=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex
export ONLY_ACTIVE_ARCH=YES
export OS=MACOS
export OSAC=/usr/bin/osacompile
export PACKAGE_TYPE=com.apple.package-type.wrapper.application
export PASCAL_STRINGS=YES
export PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms"
export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist
export PFE_FILE_C_DIALECTS=objective-c
export PKGINFO_FILE_PATH=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
export PKGINFO_PATH=Runner.app/PkgInfo
export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
export PLATFORM_DISPLAY_NAME="iOS Simulator"
export PLATFORM_NAME=iphonesimulator
export PLATFORM_PREFERRED_ARCH=x86_64
export PLIST_FILE_OUTPUT_FORMAT=binary
export PLUGINS_FOLDER_PATH=Runner.app/PlugIns
export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
export PRECOMP_DESTINATION_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
export PREVIEW_DART_2=true
export PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders
export PRODUCT_BUNDLE_IDENTIFIER=br.com.brgweb.testeflutter
export PRODUCT_MODULE_NAME=Runner
export PRODUCT_NAME=Runner
export PRODUCT_SETTINGS_PATH=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner/Info.plist
export PRODUCT_TYPE=com.apple.product-type.application
export PROFILING_CODE=NO
export PROJECT=Runner
export PROJECT_DERIVED_FILE_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/DerivedSources
export PROJECT_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export PROJECT_FILE_PATH=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner.xcodeproj
export PROJECT_NAME=Runner
export PROJECT_TEMP_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build
export PROJECT_TEMP_ROOT=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex
export PUBLIC_HEADERS_FOLDER_PATH=Runner.app/Headers
export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
export REMOVE_CVS_FROM_RESOURCES=YES
export REMOVE_GIT_FROM_RESOURCES=YES
export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
export REMOVE_HG_FROM_RESOURCES=YES
export REMOVE_SVN_FROM_RESOURCES=YES
export REZ_COLLECTOR_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
export REZ_OBJECTS_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
export REZ_SEARCH_PATHS="/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator "
export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
export SCRIPTS_FOLDER_PATH=Runner.app/Scripts
export SCRIPT_INPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_FILE_COUNT=0
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_DIR_iphonesimulator11_4=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_NAME=iphonesimulator11.4
export SDK_NAMES=iphonesimulator11.4
export SDK_PRODUCT_BUILD_VERSION=15F79
export SDK_VERSION=11.4
export SDK_VERSION_ACTUAL=110400
export SDK_VERSION_MAJOR=110000
export SDK_VERSION_MINOR=400
export SED=/usr/bin/sed
export SEPARATE_STRIP=NO
export SEPARATE_SYMBOL_EDIT=NO
export SET_DIR_MODE_OWNER_GROUP=YES
export SET_FILE_MODE_OWNER_GROUP=NO
export SHALLOW_BUNDLE=YES
export SHARED_DERIVED_FILE_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/DerivedSources
export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks
export SHARED_PRECOMPS_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/PrecompiledHeaders
export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport
export SKIP_INSTALL=NO
export SOURCE_ROOT=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export SRCROOT=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export STRINGS_FILE_OUTPUT_ENCODING=binary
export STRIP_BITCODE_FROM_COPIED_FILES=NO
export STRIP_INSTALLED_PRODUCT=YES
export STRIP_STYLE=all
export STRIP_SWIFT_SYMBOLS=YES
export SUPPORTED_DEVICE_FAMILIES=1,2
export SUPPORTED_PLATFORMS="iphonesimulator iphoneos"
export SUPPORTS_TEXT_BASED_API=NO
export SWIFT_PLATFORM_TARGET_PREFIX=ios
export SYMROOT=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Products
export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
export SYSTEM_APPS_DIR=/Applications
export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
export SYSTEM_DEMOS_DIR=/Applications/Extras
export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples"
export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library"
export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools"
export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools"
export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools"
export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes"
export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools
export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities
export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
export SYSTEM_LIBRARY_DIR=/System/Library
export TAPI_VERIFY_MODE=ErrorsOnly
export TARGETED_DEVICE_FAMILY=1,2
export TARGETNAME=Runner
export TARGET_BUILD_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator
export TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder"
export TARGET_NAME=Runner
export TARGET_TEMP_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILES_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILE_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_ROOT=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex
export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
export UID=501
export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app
export UNSTRIPPED_PRODUCT=NO
export USER=vexra
export USER_APPS_DIR=/Users/vexra/Applications
export USER_LIBRARY_DIR=/Users/vexra/Library
export USE_DYNAMIC_NO_PIC=YES
export USE_HEADERMAP=YES
export USE_HEADER_SYMLINKS=NO
export VALIDATE_PRODUCT=NO
export VALID_ARCHS="i386 x86_64"
export VERBOSE_PBXCP=NO
export VERBOSE_SCRIPT_LOGGING=YES
export VERSIONING_SYSTEM=apple-generic
export VERSIONPLIST_PATH=Runner.app/version.plist
export VERSION_INFO_BUILDER=vexra
export VERSION_INFO_FILE=Runner_vers.c
export VERSION_INFO_STRING="\"@(#)PROGRAM:Runner PROJECT:Runner-1\""
export WRAPPER_EXTENSION=app
export WRAPPER_NAME=Runner.app
export WRAPPER_SUFFIX=.app
export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO
export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION=9F2000
export XCODE_VERSION_ACTUAL=0941
export XCODE_VERSION_MAJOR=0900
export XCODE_VERSION_MINOR=0940
export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices
export YACC=yacc
export arch=x86_64
export variant=normal
/bin/sh -c /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh
Touch /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app
cd /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
/usr/bin/touch -c /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app
CodeSign /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app
cd /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
Signing Identity: "-"
/usr/bin/codesign --force --sign - --entitlements /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent --timestamp=none /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app
** BUILD SUCCEEDED **
[ +11 ms] Xcode build done.
[ ] [ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios -sdk iphonesimulator -arch x86_64 -showBuildSettings
[ +924 ms] Exit code 0 from: /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios -sdk iphonesimulator -arch x86_64 -showBuildSettings
[ ] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios
SDKROOT = iphonesimulator11.4
VERBOSE_SCRIPT_LOGGING = YES
Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = YES
ALTERNATE_GROUP = staff
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = vexra
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = NO
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
APPLE_INTERNAL_DIR = /AppleInternal
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
APPLICATION_EXTENSION_API_ONLY = NO
APPLY_RULES_IN_COPY_FILES = NO
ARCHS = x86_64
ARCHS_STANDARD = i386 x86_64
ARCHS_STANDARD_32_64_BIT = i386 x86_64
ARCHS_STANDARD_32_BIT = i386
ARCHS_STANDARD_64_BIT = x86_64
ARCHS_STANDARD_INCLUDING_64_BIT = i386 x86_64
ARCHS_UNIVERSAL_IPHONE_OS = i386 x86_64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
BITCODE_GENERATION_MODE = marker
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios
BUILD_ROOT = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Products
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator
CACHE_ROOT = /var/folders/k9/_8s5nn956lz5smd8ythwsrj40000gn/C/com.apple.DeveloperTools/9.4.1-9F2000/Xcode
CCHROOT = /var/folders/k9/_8s5nn956lz5smd8ythwsrj40000gn/C/com.apple.DeveloperTools/9.4.1-9F2000/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/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_CONTEXT_CLASS = XCiPhoneSimulatorCodeSignContext
CODE_SIGN_IDENTITY = -
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = NO
COMPILER_INDEX_STORE_ENABLE = Default
COMPOSITE_SDK_DIRS = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Debug
CONFIGURATION_BUILD_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator
CONFIGURATION_TEMP_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
CONTENTS_FOLDER_PATH = Runner.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_DEVICE_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
CORRESPONDING_DEVICE_PLATFORM_NAME = iphoneos
CORRESPONDING_DEVICE_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
CORRESPONDING_DEVICE_SDK_NAME = iphoneos11.4
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = x86_64
CURRENT_PROJECT_VERSION = 1
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = mios-simulator-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -mios-simulator-version-min=
DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4
DERIVED_FILES_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = English
DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DWARF_DSYM_FILE_NAME = Runner.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator
EFFECTIVE_PLATFORM_NAME = -iphonesimulator
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = YES
ENTITLEMENTS_REQUIRED = YES
EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
EXECUTABLES_FOLDER_PATH = Runner.app/Executables
EXECUTABLE_FOLDER_PATH = Runner.app
EXECUTABLE_NAME = Runner
EXECUTABLE_PATH = Runner.app/Runner
EXPANDED_CODE_SIGN_IDENTITY =
EXPANDED_CODE_SIGN_IDENTITY_NAME =
EXPANDED_PROVISIONING_PROFILE =
FILE_LIST = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_MODE = debug
FLUTTER_FRAMEWORK_DIR = /Users/vexra/Downloads/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/vexra/Downloads/flutter
FLUTTER_TARGET = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_DYNAMIC_NO_PIC = NO
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_OBJC_LEGACY_DISPATCH = YES
GCC_OPTIMIZATION_LEVEL = 0
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1
GCC_SYMBOLS_PRIVATE_EXTERN = NO
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 20
GROUP = staff
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/vexra
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 = vexra
INSTALL_PATH = /Applications
INSTALL_ROOT = /tmp/Runner.dst
IPHONEOS_DEPLOYMENT_TARGET = 8.0
JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
JAVA_ARCHIVE_CLASSES = YES
JAVA_ARCHIVE_TYPE = JAR
JAVA_COMPILER = /usr/bin/javac
JAVA_FOLDER_PATH = Runner.app/Java
JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
JAVA_JAR_FLAGS = cv
JAVA_SOURCE_SUBDIR = .
JAVA_USE_DEPENDENCIES = YES
JAVA_ZIP_FLAGS = -urg
JIKES_DEFAULT_FLAGS = +E +OLDCSO
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_x86_64 =
LINK_WITH_STANDARD_LIBRARIES = YES
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj
LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 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/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app
MODULE_CACHE_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
MTL_ENABLE_DEBUG_INFO = YES
NATIVE_ARCH = i386
NATIVE_ARCH_32_BIT = i386
NATIVE_ARCH_64_BIT = x86_64
NATIVE_ARCH_ACTUAL = x86_64
NO_COMMON = YES
OBJC_ABI_VERSION = 2
OBJECT_FILE_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
OBJROOT = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex
ONLY_ACTIVE_ARCH = YES
OS = MACOS
OSAC = /usr/bin/osacompile
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands
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/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
PLATFORM_DISPLAY_NAME = iOS Simulator
PLATFORM_NAME = iphonesimulator
PLATFORM_PREFERRED_ARCH = x86_64
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PREVIEW_DART_2 = true
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = br.com.brgweb.testeflutter
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/DerivedSources
PROJECT_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
PROJECT_FILE_PATH = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build
PROJECT_TEMP_ROOT = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex
PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
REMOVE_CVS_FROM_RESOURCES = YES
REMOVE_GIT_FROM_RESOURCES = YES
REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
REMOVE_HG_FROM_RESOURCES = YES
REMOVE_SVN_FROM_RESOURCES = YES
REZ_COLLECTOR_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
SDK_DIR_iphonesimulator11_4 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
SDK_NAME = iphonesimulator11.4
SDK_NAMES = iphonesimulator11.4
SDK_PRODUCT_BUILD_VERSION = 15F79
SDK_VERSION = 11.4
SDK_VERSION_ACTUAL = 110400
SDK_VERSION_MAJOR = 110000
SDK_VERSION_MINOR = 400
SED = /usr/bin/sed
SEPARATE_STRIP = NO
SEPARATE_SYMBOL_EDIT = NO
SET_DIR_MODE_OWNER_GROUP = YES
SET_FILE_MODE_OWNER_GROUP = NO
SHALLOW_BUNDLE = YES
SHARED_DERIVED_FILE_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/PrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
SRCROOT = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = NO
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphonesimulator iphoneos
SUPPORTS_TEXT_BASED_API = NO
SWIFT_PLATFORM_TARGET_PREFIX = ios
SYMROOT = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/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/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_FILES_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_FILE_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_ROOT = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/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 = vexra
USER_APPS_DIR = /Users/vexra/Applications
USER_LIBRARY_DIR = /Users/vexra/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
VALIDATE_PRODUCT = NO
VALID_ARCHS = i386 x86_64
VERBOSE_PBXCP = NO
VERBOSE_SCRIPT_LOGGING = YES
VERSIONING_SYSTEM = apple-generic
VERSIONPLIST_PATH = Runner.app/version.plist
VERSION_INFO_BUILDER = vexra
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 = 9F2000
XCODE_VERSION_ACTUAL = 0941
XCODE_VERSION_MAJOR = 0900
XCODE_VERSION_MINOR = 0940
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = x86_64
variant = normal
[ +175 ms] /usr/bin/xcrun simctl install 394D6FA1-6AD0-42B4-8C43-15CFF42B255D /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/iphonesimulator/Runner.app
[+1091 ms] /usr/bin/xcrun simctl launch 394D6FA1-6AD0-42B4-8C43-15CFF42B255D br.com.brgweb.testeflutter --enable-dart-profiling --enable-checked-mode --observatory-port=8100
[ +480 ms] br.com.brgweb.testeflutter: 10857
[ ] Waiting for observatory port to be available...
[ +782 ms] [DEVICE LOG] 2018-08-07 04:17:49.714296-0300 localhost Runner[10857]: (Runner) Created Activity ID: 0x31300, Description: Loading Preferences From System CFPrefsD For Search List
[ +2 ms] [DEVICE LOG] 2018-08-07 04:17:49.714297-0300 localhost Runner[10857]: (Runner) Created Activity ID: 0x31301, Description: Loading Preferences From System CFPrefsD For Search List
[ +44 ms] [DEVICE LOG] 2018-08-07 04:17:49.762926-0300 localhost Runner[10857]: (Runner) Created Activity ID: 0x31302, Description: Loading Preferences From System CFPrefsD For Search List
[ +25 ms] [DEVICE LOG] 2018-08-07 04:17:49.788939-0300 localhost Runner[10857]: (libAccessibility.dylib) [com.apple.Accessibility:AccessibilitySupport] Retrieving resting unlock: 0
[ +352 ms] [DEVICE LOG] 2018-08-07 04:17:50.141460-0300 localhost Runner[10857]: (UIKit) You've implemented -[<UIApplicationDelegate> application:performFetchWithCompletionHandler:], but you still need to add "fetch" to the list of your supported UIBackgroundModes in your Info.plist.
[ ] [DEVICE LOG] 2018-08-07 04:17:50.141686-0300 localhost Runner[10857]: (UIKit) You've implemented -[<UIApplicationDelegate> application:didReceiveRemoteNotification:fetchCompletionHandler:], but you still need to add "remote-notification" to the list of your supported UIBackgroundModes in your Info.plist.
[ +47 ms] [DEVICE LOG] 2018-08-07 04:17:50.189896-0300 localhost Runner[10857]: (Flutter) flutter: Observatory listening on http://127.0.0.1:8100/
[ +4 ms] Observatory URL on device: http://127.0.0.1:8100/
[ +4 ms] Connecting to service protocol: http://127.0.0.1:8100/
[ +316 ms] Successfully connected to service protocol: http://127.0.0.1:8100/
[ +5 ms] getVM: {}
[ +28 ms] getIsolate: {isolateId: isolates/433086024}
[ +7 ms] _flutter.listViews: {isolateId: isolates/433086024}
[ +88 ms] DevFS: Creating new filesystem on the device (null)
[ +1 ms] _createDevFS: {fsName: testeflutter}
[ +21 ms] DevFS: Created new filesystem on the device (file:///Users/vexra/Library/Developer/CoreSimulator/Devices/394D6FA1-6AD0-42B4-8C43-15CFF42B255D/data/Containers/Data/Application/E0E46C85-D6B6-4899-8424-8A2B09D2B514/tmp/testeflutterTGkjwY/testeflutter/)
[ +1 ms] Updating assets
[ +199 ms] Syncing files to device iPhone X...
[ +3 ms] DevFS: Starting sync from LocalDirectory: '/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter'
[ ] Scanning project files
[ +5 ms] Scanning package files
[ +154 ms] Scanning asset files
[ +1 ms] Scanning for deleted files
[ +14 ms] Compiling dart to kernel with 416 updated files
[ +2 ms] /Users/vexra/Downloads/flutter/bin/cache/dart-sdk/bin/dart /Users/vexra/Downloads/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /Users/vexra/Downloads/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --strong --target=flutter --output-dill build/app.dill --packages /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/.packages --filesystem-scheme org-dartlang-root
[+4096 ms] Updating files
[ +656 ms] DevFS: Sync finished
[ ] Synced 0.8MB.
[ +5 ms] _flutter.listViews: {isolateId: isolates/433086024}
[ +2 ms] Connected to _flutterView/0x7f818660c8d8.
[ ] 🔥 To hot reload changes while running, press "r". To hot restart (and rebuild state), press "R".
[ ] An Observatory debugger and profiler on iPhone X is available at: http://127.0.0.1:8100/
[ ] For a more detailed help message, press "h". To quit, press "q".
[+7940 ms] ext.flutter.exit: {isolateId: isolates/433086024}
[ +31 ms] Service protocol connection closed.
[ ] Lost connection to device.
[ +2 ms] DevFS: Deleting filesystem on the device (file:///Users/vexra/Library/Developer/CoreSimulator/Devices/394D6FA1-6AD0-42B4-8C43-15CFF42B255D/data/Containers/Data/Application/E0E46C85-D6B6-4899-8424-8A2B09D2B514/tmp/testeflutterTGkjwY/testeflutter/)
[ ] _deleteDevFS: {fsName: testeflutter}
"><pre class="notranslate"><code class="notranslate">[ +32 ms] [/Users/vexra/Downloads/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +35 ms] Exit code 128 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] fatal: no upstream configured for branch 'stepper-showControls'
[ ] [/Users/vexra/Downloads/flutter/] git rev-parse --abbrev-ref HEAD
[ +9 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] stepper-showControls
[ ] [/Users/vexra/Downloads/flutter/] git log -n 1 --pretty=format:%H
[ +20 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] 7f615bc7132ea8843dc0c2e0b8a95bbc3678cc1d
[ ] [/Users/vexra/Downloads/flutter/] git log -n 1 --pretty=format:%ar
[ +10 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 2 days ago
[ ] [/Users/vexra/Downloads/flutter/] git describe --match v*.*.* --first-parent --long --tags
[ +35 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.5.1-1-g7f615bc71
[ +298 ms] Exception while looking for Android Studio: FileSystemException: Directory listing failed, path = '/Applications/Unity2017.1.2/PlaybackEngines/WebGLSupport/BuildTools/Emscripten_Mac/node/' (OS Error: Permission denied, errno = 13)
[ +231 ms] /usr/bin/defaults read /Applications/Android Studio.app/Contents/Info CFBundleShortVersionString
[ +41 ms] Exit code 0 from: /usr/bin/defaults read /Applications/Android Studio.app/Contents/Info CFBundleShortVersionString
[ ] 3.1
[ +111 ms] /Users/vexra/Library/Android/sdk/platform-tools/adb devices -l
[ +6 ms] Exit code 0 from: /Users/vexra/Library/Android/sdk/platform-tools/adb devices -l
[ ] List of devices attached
[ +5 ms] idevice_id -h
[ +280 ms] /usr/bin/xcrun simctl list --json devices
[ +970 ms] Launching lib/main.dart on iPhone X in debug mode...
[ +1 ms] /usr/bin/defaults read /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner/Info CFBundleIdentifier
[ +41 ms] Exit code 0 from: /usr/bin/defaults read /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner/Info CFBundleIdentifier
[ ] $(PRODUCT_BUNDLE_IDENTIFIER)
[ ] [ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner.xcodeproj -target Runner -showBuildSettings
[+1133 ms] Exit code 0 from: /usr/bin/xcodebuild -project /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/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 = vexra
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/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios
BUILD_ROOT = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Release-iphoneos
CACHE_ROOT = /var/folders/k9/_8s5nn956lz5smd8ythwsrj40000gn/C/com.apple.DeveloperTools/9.4.1-9F2000/Xcode
CCHROOT = /var/folders/k9/_8s5nn956lz5smd8ythwsrj40000gn/C/com.apple.DeveloperTools/9.4.1-9F2000/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/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/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/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Release
CONFIGURATION_BUILD_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Release-iphoneos
CONFIGURATION_TEMP_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos
CONTENTS_FOLDER_PATH = Runner.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator
CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator11.4
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = arm64
CURRENT_PROJECT_VERSION = 1
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf-with-dsym
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min=
DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4
DERIVED_FILES_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = English
DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DWARF_DSYM_FILE_NAME = Runner.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Release-iphoneos
EFFECTIVE_PLATFORM_NAME = -iphoneos
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBEDDED_PROFILE_NAME = embedded.mobileprovision
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_NS_ASSERTIONS = NO
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = NO
ENTITLEMENTS_ALLOWED = YES
ENTITLEMENTS_REQUIRED = YES
EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
EXECUTABLES_FOLDER_PATH = Runner.app/Executables
EXECUTABLE_FOLDER_PATH = Runner.app
EXECUTABLE_NAME = Runner
EXECUTABLE_PATH = Runner.app/Runner
EXPANDED_CODE_SIGN_IDENTITY =
EXPANDED_CODE_SIGN_IDENTITY_NAME =
EXPANDED_PROVISIONING_PROFILE =
FILE_LIST = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_MODE = debug
FLUTTER_FRAMEWORK_DIR = /Users/vexra/Downloads/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/vexra/Downloads/flutter
FLUTTER_TARGET = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_SYMBOLS_PRIVATE_EXTERN = YES
GCC_THUMB_SUPPORT = YES
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 20
GROUP = staff
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/vexra
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 = vexra
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/vexra/Desktop/brgweb/interagirflutter/testeflutter/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/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/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/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Release-iphoneos/Runner.app
MODULE_CACHE_DIR = /Users/vexra/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/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal
OBJROOT = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios
ONLY_ACTIVE_ARCH = NO
OS = MACOS
OSAC = /usr/bin/osacompile
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands
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/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
PLATFORM_DISPLAY_NAME = iOS
PLATFORM_NAME = iphoneos
PLATFORM_PREFERRED_ARCH = arm64
PLATFORM_PRODUCT_BUILD_VERSION = 15F79
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PREVIEW_DART_2 = true
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = br.com.brgweb.testeflutter
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/DerivedSources
PROJECT_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
PROJECT_FILE_PATH = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build
PROJECT_TEMP_ROOT = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/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/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
SDK_DIR_iphoneos11_4 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
SDK_NAME = iphoneos11.4
SDK_NAMES = iphoneos11.4
SDK_PRODUCT_BUILD_VERSION = 15F79
SDK_VERSION = 11.4
SDK_VERSION_ACTUAL = 110400
SDK_VERSION_MAJOR = 110000
SDK_VERSION_MINOR = 400
SED = /usr/bin/sed
SEPARATE_STRIP = NO
SEPARATE_SYMBOL_EDIT = NO
SET_DIR_MODE_OWNER_GROUP = YES
SET_FILE_MODE_OWNER_GROUP = NO
SHALLOW_BUNDLE = YES
SHARED_DERIVED_FILE_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Release-iphoneos/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/SharedPrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
SRCROOT = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/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_PLATFORM_TARGET_PREFIX = ios
SYMROOT = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/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/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Release-iphoneos
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILES_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILE_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_ROOT = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/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 = vexra
USER_APPS_DIR = /Users/vexra/Applications
USER_LIBRARY_DIR = /Users/vexra/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 = vexra
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 = 9F2000
XCODE_VERSION_ACTUAL = 0941
XCODE_VERSION_MAJOR = 0900
XCODE_VERSION_MINOR = 0940
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = arm64
variant = normal
[ +14 ms] Building Runner.app for 394D6FA1-6AD0-42B4-8C43-15CFF42B255D.
[ +10 ms] script /dev/null /usr/bin/log stream --style syslog --predicate processImagePath CONTAINS "394D6FA1-6AD0-42B4-8C43-15CFF42B255D"
[ +37 ms] [DEVICE LOG] Filtering the log data using "processImagePath CONTAINS "394D6FA1-6AD0-42B4-8C43-15CFF42B255D""
[ +4 ms] [DEVICE LOG] Timestamp (process)[PID]
[ +153 ms] Skipping kernel compilation. Fingerprint match.
[ +249 ms] Building bundle
[ ] Writing asset files to build/flutter_assets
[ +51 ms] Wrote build/flutter_assets
[ +1 ms] /usr/bin/xcrun simctl get_app_container 394D6FA1-6AD0-42B4-8C43-15CFF42B255D br.com.brgweb.testeflutter
[ ] /usr/bin/killall Runner
[ +165 ms] python -c import six
[ +53 ms] [ios/] /usr/bin/xcodebuild -list
[ +774 ms] Exit code 0 from: /usr/bin/xcodebuild -list
[ ] Information about project "Runner":
Targets:
Runner
Build Configurations:
Debug
Release
If no build configuration is specified and -scheme is not passed then "Release" is used.
Schemes:
Runner
[ +2 ms] Trying to resolve native pub services.
[ +2 ms] Looking for YAML at 'pubspec.yaml'
[ ] No services specified in the manifest
[ ] Found 0 service definition(s).
[ +1 ms] Copying service frameworks to '/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Frameworks'.
[ ] Creating service definitions manifest at 'ios/ServiceDefinitions.json'
[ +5 ms] Starting Xcode build...
[ ] [ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios -sdk iphonesimulator -arch x86_64
[+4918 ms] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios
SDKROOT = iphonesimulator11.4
VERBOSE_SCRIPT_LOGGING = YES
=== BUILD TARGET Runner OF PROJECT Runner WITH CONFIGURATION Debug ===
Check dependencies
PhaseScriptExecution Run\ Script /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh
cd /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export ACTION=build
export AD_HOC_CODE_SIGNING_ALLOWED=YES
export ALTERNATE_GROUP=staff
export ALTERNATE_MODE=u+w,go-w,a+rX
export ALTERNATE_OWNER=vexra
export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO
export ALWAYS_SEARCH_USER_PATHS=NO
export ALWAYS_USE_SEPARATE_HEADERMAPS=NO
export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
export APPLE_INTERNAL_DIR=/AppleInternal
export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
export APPLICATION_EXTENSION_API_ONLY=NO
export APPLY_RULES_IN_COPY_FILES=NO
export ARCHS=x86_64
export ARCHS_STANDARD="i386 x86_64"
export ARCHS_STANDARD_32_64_BIT="i386 x86_64"
export ARCHS_STANDARD_32_BIT=i386
export ARCHS_STANDARD_64_BIT=x86_64
export ARCHS_STANDARD_INCLUDING_64_BIT="i386 x86_64"
export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64"
export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
export BITCODE_GENERATION_MODE=marker
export BUILD_ACTIVE_RESOURCES_ONLY=YES
export BUILD_COMPONENTS="headers build"
export BUILD_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios
export BUILD_ROOT=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Products
export BUILD_STYLE=
export BUILD_VARIANTS=normal
export BUILT_PRODUCTS_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator
export CACHE_ROOT=/var/folders/k9/_8s5nn956lz5smd8ythwsrj40000gn/C/com.apple.DeveloperTools/9.4.1-9F2000/Xcode
export CCHROOT=/var/folders/k9/_8s5nn956lz5smd8ythwsrj40000gn/C/com.apple.DeveloperTools/9.4.1-9F2000/Xcode
export CHMOD=/bin/chmod
export CHOWN=/usr/sbin/chown
export CLANG_ANALYZER_NONNULL=YES
export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x
export CLANG_CXX_LIBRARY=libc++
export CLANG_ENABLE_MODULES=YES
export CLANG_ENABLE_OBJC_ARC=YES
export CLANG_MODULES_BUILD_SESSION_FILE=/Users/vexra/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES
export CLANG_WARN_BOOL_CONVERSION=YES
export CLANG_WARN_COMMA=YES
export CLANG_WARN_CONSTANT_CONVERSION=YES
export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
export CLANG_WARN_EMPTY_BODY=YES
export CLANG_WARN_ENUM_CONVERSION=YES
export CLANG_WARN_INFINITE_RECURSION=YES
export CLANG_WARN_INT_CONVERSION=YES
export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES
export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES
export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES
export CLANG_WARN_STRICT_PROTOTYPES=YES
export CLANG_WARN_SUSPICIOUS_MOVE=YES
export CLANG_WARN_UNREACHABLE_CODE=YES
export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
export CLASS_FILE_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
export CLEAN_PRECOMPS=YES
export CLONE_HEADERS=NO
export CODESIGNING_FOLDER_PATH=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app
export CODE_SIGNING_ALLOWED=YES
export CODE_SIGNING_REQUIRED=YES
export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext
export CODE_SIGN_IDENTITY=-
export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES
export COLOR_DIAGNOSTICS=NO
export COMBINE_HIDPI_IMAGES=NO
export COMMAND_MODE=legacy
export COMPILER_INDEX_STORE_ENABLE=Default
export COMPOSITE_SDK_DIRS=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/CompositeSDKs
export COMPRESS_PNG_FILES=YES
export CONFIGURATION=Debug
export CONFIGURATION_BUILD_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator
export CONFIGURATION_TEMP_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
export CONTENTS_FOLDER_PATH=Runner.app
export COPYING_PRESERVES_HFS_DATA=NO
export COPY_HEADERS_RUN_UNIFDEF=NO
export COPY_PHASE_STRIP=NO
export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
export CORRESPONDING_DEVICE_SDK_NAME=iphoneos11.4
export CP=/bin/cp
export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
export CURRENT_ARCH=x86_64
export CURRENT_PROJECT_VERSION=1
export CURRENT_VARIANT=normal
export DEAD_CODE_STRIPPING=YES
export DEBUGGING_SYMBOLS=YES
export DEBUG_INFORMATION_FORMAT=dwarf
export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions
export DEFINES_MODULE=NO
export DEPLOYMENT_LOCATION=NO
export DEPLOYMENT_POSTPROCESSING=NO
export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min
export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min=
export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4"
export DERIVED_FILES_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_FILE_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_SOURCES_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export DEVELOPMENT_LANGUAGE=English
export DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Documentation
export DO_HEADER_SCANNING_IN_JAM=NO
export DSTROOT=/tmp/Runner.dst
export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export DWARF_DSYM_FILE_NAME=Runner.app.dSYM
export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
export DWARF_DSYM_FOLDER_PATH=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator
export EFFECTIVE_PLATFORM_NAME=-iphonesimulator
export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
export ENABLE_BITCODE=NO
export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
export ENABLE_HEADER_DEPENDENCIES=YES
export ENABLE_ON_DEMAND_RESOURCES=YES
export ENABLE_STRICT_OBJC_MSGSEND=YES
export ENABLE_TESTABILITY=YES
export ENTITLEMENTS_REQUIRED=YES
export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj"
export EXECUTABLES_FOLDER_PATH=Runner.app/Executables
export EXECUTABLE_FOLDER_PATH=Runner.app
export EXECUTABLE_NAME=Runner
export EXECUTABLE_PATH=Runner.app/Runner
export EXPANDED_CODE_SIGN_IDENTITY=-
export EXPANDED_CODE_SIGN_IDENTITY_NAME=-
export EXPANDED_PROVISIONING_PROFILE=
export FILE_LIST=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
export FIXED_FILES_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
export FLUTTER_APPLICATION_PATH=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter
export FLUTTER_BUILD_DIR=build
export FLUTTER_BUILD_MODE=debug
export FLUTTER_FRAMEWORK_DIR=/Users/vexra/Downloads/flutter/bin/cache/artifacts/engine/ios
export FLUTTER_ROOT=/Users/vexra/Downloads/flutter
export FLUTTER_TARGET=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/lib/main.dart
export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks
export FRAMEWORK_FLAG_PREFIX=-framework
export FRAMEWORK_SEARCH_PATHS="/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter"
export FRAMEWORK_VERSION=A
export FULL_PRODUCT_NAME=Runner.app
export GCC3_VERSION=3.3
export GCC_C_LANGUAGE_STANDARD=gnu99
export GCC_DYNAMIC_NO_PIC=NO
export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
export GCC_NO_COMMON_BLOCKS=YES
export GCC_OBJC_LEGACY_DISPATCH=YES
export GCC_OPTIMIZATION_LEVEL=0
export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++"
export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 "
export GCC_SYMBOLS_PRIVATE_EXTERN=NO
export GCC_TREAT_WARNINGS_AS_ERRORS=NO
export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
export GCC_WARN_UNDECLARED_SELECTOR=YES
export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
export GCC_WARN_UNUSED_FUNCTION=YES
export GCC_WARN_UNUSED_VARIABLE=YES
export GENERATE_MASTER_OBJECT_FILE=NO
export GENERATE_PKGINFO_FILE=YES
export GENERATE_PROFILING_CODE=NO
export GENERATE_TEXT_BASED_STUBS=NO
export GID=20
export GROUP=staff
export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
export HEADERMAP_USES_VFS=NO
export HEADER_SEARCH_PATHS="/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/include "
export HIDE_BITCODE_SYMBOLS=YES
export HOME=/Users/vexra
export ICONV=/usr/bin/iconv
export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
export INFOPLIST_FILE=Runner/Info.plist
export INFOPLIST_OUTPUT_FORMAT=binary
export INFOPLIST_PATH=Runner.app/Info.plist
export INFOPLIST_PREPROCESS=NO
export INFOSTRINGS_PATH=Runner.app/English.lproj/InfoPlist.strings
export INLINE_PRIVATE_FRAMEWORKS=NO
export INSTALLHDRS_COPY_PHASE=NO
export INSTALLHDRS_SCRIPT_PHASE=NO
export INSTALL_DIR=/tmp/Runner.dst/Applications
export INSTALL_GROUP=staff
export INSTALL_MODE_FLAG=u+w,go-w,a+rX
export INSTALL_OWNER=vexra
export INSTALL_PATH=/Applications
export INSTALL_ROOT=/tmp/Runner.dst
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
export JAVA_ARCHIVE_CLASSES=YES
export JAVA_ARCHIVE_TYPE=JAR
export JAVA_COMPILER=/usr/bin/javac
export JAVA_FOLDER_PATH=Runner.app/Java
export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
export JAVA_JAR_FLAGS=cv
export JAVA_SOURCE_SUBDIR=.
export JAVA_USE_DEPENDENCIES=YES
export JAVA_ZIP_FLAGS=-urg
export JIKES_DEFAULT_FLAGS="+E +OLDCSO"
export KEEP_PRIVATE_EXTERNS=NO
export LD_DEPENDENCY_INFO_FILE=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
export LD_GENERATE_MAP_FILE=NO
export LD_MAP_FILE_PATH=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt
export LD_NO_PIE=NO
export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
export LD_RUNPATH_SEARCH_PATHS=" @executable_path/Frameworks"
export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
export LEX=lex
export LIBRARY_FLAG_NOSPACE=YES
export LIBRARY_FLAG_PREFIX=-l
export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
export LIBRARY_SEARCH_PATHS="/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter"
export LINKER_DISPLAYS_MANGLED_NAMES=NO
export LINK_FILE_LIST_normal_x86_64=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList
export LINK_WITH_STANDARD_LIBRARIES=YES
export LOCALIZABLE_CONTENT_DIR=
export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/English.lproj
export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFLocalizedString"
export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
export LOCAL_APPS_DIR=/Applications
export LOCAL_DEVELOPER_DIR=/Library/Developer
export LOCAL_LIBRARY_DIR=/Library
export LOCROOT=
export LOCSYMROOT=
export MACH_O_TYPE=mh_execute
export MAC_OS_X_PRODUCT_BUILD_VERSION=17G65
export MAC_OS_X_VERSION_ACTUAL=101306
export MAC_OS_X_VERSION_MAJOR=101300
export MAC_OS_X_VERSION_MINOR=1306
export METAL_LIBRARY_FILE_BASE=default
export METAL_LIBRARY_OUTPUT_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app
export MODULE_CACHE_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
export MTL_ENABLE_DEBUG_INFO=YES
export NATIVE_ARCH=i386
export NATIVE_ARCH_32_BIT=i386
export NATIVE_ARCH_64_BIT=x86_64
export NATIVE_ARCH_ACTUAL=x86_64
export NO_COMMON=YES
export OBJC_ABI_VERSION=2
export OBJECT_FILE_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
export OBJECT_FILE_DIR_normal=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
export OBJROOT=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex
export ONLY_ACTIVE_ARCH=YES
export OS=MACOS
export OSAC=/usr/bin/osacompile
export PACKAGE_TYPE=com.apple.package-type.wrapper.application
export PASCAL_STRINGS=YES
export PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms"
export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist
export PFE_FILE_C_DIALECTS=objective-c
export PKGINFO_FILE_PATH=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
export PKGINFO_PATH=Runner.app/PkgInfo
export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
export PLATFORM_DISPLAY_NAME="iOS Simulator"
export PLATFORM_NAME=iphonesimulator
export PLATFORM_PREFERRED_ARCH=x86_64
export PLIST_FILE_OUTPUT_FORMAT=binary
export PLUGINS_FOLDER_PATH=Runner.app/PlugIns
export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
export PRECOMP_DESTINATION_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
export PREVIEW_DART_2=true
export PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders
export PRODUCT_BUNDLE_IDENTIFIER=br.com.brgweb.testeflutter
export PRODUCT_MODULE_NAME=Runner
export PRODUCT_NAME=Runner
export PRODUCT_SETTINGS_PATH=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner/Info.plist
export PRODUCT_TYPE=com.apple.product-type.application
export PROFILING_CODE=NO
export PROJECT=Runner
export PROJECT_DERIVED_FILE_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/DerivedSources
export PROJECT_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export PROJECT_FILE_PATH=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner.xcodeproj
export PROJECT_NAME=Runner
export PROJECT_TEMP_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build
export PROJECT_TEMP_ROOT=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex
export PUBLIC_HEADERS_FOLDER_PATH=Runner.app/Headers
export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
export REMOVE_CVS_FROM_RESOURCES=YES
export REMOVE_GIT_FROM_RESOURCES=YES
export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
export REMOVE_HG_FROM_RESOURCES=YES
export REMOVE_SVN_FROM_RESOURCES=YES
export REZ_COLLECTOR_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
export REZ_OBJECTS_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
export REZ_SEARCH_PATHS="/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator "
export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
export SCRIPTS_FOLDER_PATH=Runner.app/Scripts
export SCRIPT_INPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_FILE_COUNT=0
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_DIR_iphonesimulator11_4=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_NAME=iphonesimulator11.4
export SDK_NAMES=iphonesimulator11.4
export SDK_PRODUCT_BUILD_VERSION=15F79
export SDK_VERSION=11.4
export SDK_VERSION_ACTUAL=110400
export SDK_VERSION_MAJOR=110000
export SDK_VERSION_MINOR=400
export SED=/usr/bin/sed
export SEPARATE_STRIP=NO
export SEPARATE_SYMBOL_EDIT=NO
export SET_DIR_MODE_OWNER_GROUP=YES
export SET_FILE_MODE_OWNER_GROUP=NO
export SHALLOW_BUNDLE=YES
export SHARED_DERIVED_FILE_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/DerivedSources
export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks
export SHARED_PRECOMPS_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/PrecompiledHeaders
export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport
export SKIP_INSTALL=NO
export SOURCE_ROOT=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export SRCROOT=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export STRINGS_FILE_OUTPUT_ENCODING=binary
export STRIP_BITCODE_FROM_COPIED_FILES=NO
export STRIP_INSTALLED_PRODUCT=YES
export STRIP_STYLE=all
export STRIP_SWIFT_SYMBOLS=YES
export SUPPORTED_DEVICE_FAMILIES=1,2
export SUPPORTED_PLATFORMS="iphonesimulator iphoneos"
export SUPPORTS_TEXT_BASED_API=NO
export SWIFT_PLATFORM_TARGET_PREFIX=ios
export SYMROOT=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Products
export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
export SYSTEM_APPS_DIR=/Applications
export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
export SYSTEM_DEMOS_DIR=/Applications/Extras
export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples"
export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library"
export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools"
export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools"
export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools"
export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes"
export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools
export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities
export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
export SYSTEM_LIBRARY_DIR=/System/Library
export TAPI_VERIFY_MODE=ErrorsOnly
export TARGETED_DEVICE_FAMILY=1,2
export TARGETNAME=Runner
export TARGET_BUILD_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator
export TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder"
export TARGET_NAME=Runner
export TARGET_TEMP_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILES_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILE_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_ROOT=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex
export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
export UID=501
export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app
export UNSTRIPPED_PRODUCT=NO
export USER=vexra
export USER_APPS_DIR=/Users/vexra/Applications
export USER_LIBRARY_DIR=/Users/vexra/Library
export USE_DYNAMIC_NO_PIC=YES
export USE_HEADERMAP=YES
export USE_HEADER_SYMLINKS=NO
export VALIDATE_PRODUCT=NO
export VALID_ARCHS="i386 x86_64"
export VERBOSE_PBXCP=NO
export VERBOSE_SCRIPT_LOGGING=YES
export VERSIONING_SYSTEM=apple-generic
export VERSIONPLIST_PATH=Runner.app/version.plist
export VERSION_INFO_BUILDER=vexra
export VERSION_INFO_FILE=Runner_vers.c
export VERSION_INFO_STRING="\"@(#)PROGRAM:Runner PROJECT:Runner-1\""
export WRAPPER_EXTENSION=app
export WRAPPER_NAME=Runner.app
export WRAPPER_SUFFIX=.app
export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO
export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION=9F2000
export XCODE_VERSION_ACTUAL=0941
export XCODE_VERSION_MAJOR=0900
export XCODE_VERSION_MINOR=0940
export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices
export YACC=yacc
export arch=x86_64
export variant=normal
/bin/sh -c /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh
♦ mkdir -p -- /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter
♦ rm -rf -- /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/Flutter.framework
♦ rm -rf -- /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/App.framework
♦ cp -r -- /Users/vexra/Downloads/flutter/bin/cache/artifacts/engine/ios/Flutter.framework /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter
♦ find /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/Flutter.framework -type f -exec chmod a-w {} ;
♦ mkdir -p -- /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/App.framework
♦ eval
♦ cp -- /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/AppFrameworkInfo.plist /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/App.framework/Info.plist
♦ /Users/vexra/Downloads/flutter/bin/flutter --suppress-analytics --verbose build bundle --target=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/lib/main.dart --snapshot=build/snapshot_blob.bin --depfile=build/snapshot_blob.bin.d --asset-dir=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/flutter_assets --preview-dart-2
[ +7 ms] [/Users/vexra/Downloads/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +40 ms] Exit code 128 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] fatal: no upstream configured for branch 'stepper-showControls'
[ ] [/Users/vexra/Downloads/flutter/] git rev-parse --abbrev-ref HEAD
[ +6 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] stepper-showControls
[ ] [/Users/vexra/Downloads/flutter/] git log -n 1 --pretty=format:%H
[ +7 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] 7f615bc7132ea8843dc0c2e0b8a95bbc3678cc1d
[ ] [/Users/vexra/Downloads/flutter/] git log -n 1 --pretty=format:%ar
[ +6 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 2 days ago
[ ] [/Users/vexra/Downloads/flutter/] git describe --match v*.*.* --first-parent --long --tags
[ +12 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.5.1-1-g7f615bc71
[ +473 ms] Skipping kernel compilation. Fingerprint match.
[ +219 ms] Building bundle
[ +1 ms] Writing asset files to /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/flutter_assets
[ +71 ms] Wrote /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/flutter_assets
[ +9 ms] "flutter bundle" took 650ms.
Project /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter built and packaged successfully.
CompileC /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.o Runner/main.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
cd /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export LANG=en_US.US-ASCII
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/vexra/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/vexra/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Index/DataStore -iquote /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/include -I/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator -F/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter -MMD -MT dependencies -MF /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.d --serialize-diagnostics /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.dia -c /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner/main.m -o /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.o
CompileC /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o Runner/AppDelegate.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
cd /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export LANG=en_US.US-ASCII
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/vexra/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/vexra/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Index/DataStore -iquote /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/include -I/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator -F/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter -MMD -MT dependencies -MF /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.d --serialize-diagnostics /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.dia -c /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner/AppDelegate.m -o /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o
While building module 'Flutter' imported from /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner/AppDelegate.h:1:
In file included from <module-includes>:1:
In file included from /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/Flutter.framework/Headers/Flutter.h:37:
In file included from /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/Flutter.framework/Headers/FlutterAppDelegate.h:11:
/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/Flutter.framework/Headers/FlutterPlugin.h:140:58: warning: this block declaration is not a prototype [-Wstrict-prototypes]
completionHandler:(nonnull void (^)())completionHandler;
^
void
1 warning generated.
1 warning generated.
CompileC /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o Runner/GeneratedPluginRegistrant.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
cd /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export LANG=en_US.US-ASCII
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/vexra/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/vexra/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Index/DataStore -iquote /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/include -I/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator -F/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter -MMD -MT dependencies -MF /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.d --serialize-diagnostics /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.dia -c /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner/GeneratedPluginRegistrant.m -o /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o
Ld /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app/Runner normal x86_64
cd /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -L/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator -L/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter -F/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator -F/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter -filelist /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -mios-simulator-version-min=8.0 -dead_strip -Xlinker -object_path_lto -Xlinker /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __entitlements -Xlinker /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent -framework Flutter -framework App -Xlinker -dependency_info -Xlinker /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat -o /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app/Runner
CpResource Flutter/Generated.xcconfig /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app/Generated.xcconfig
cd /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/Generated.xcconfig /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app
CpResource Flutter/flutter_assets /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app/flutter_assets
cd /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/flutter_assets /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app
PBXCp Flutter/App.framework /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework
cd /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -exclude Headers -exclude PrivateHeaders -exclude Modules -exclude *.tbd -resolve-src-symlinks /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/App.framework /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app/Frameworks
PBXCp Flutter/Flutter.framework /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework
cd /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -exclude Headers -exclude PrivateHeaders -exclude Modules -exclude *.tbd -resolve-src-symlinks /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter/Flutter.framework /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app/Frameworks
CodeSign /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework
cd /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
Signing Identity: "-"
/usr/bin/codesign --force --sign - --preserve-metadata=identifier,entitlements,flags --timestamp=none /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework
CodeSign /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework
cd /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
Signing Identity: "-"
/usr/bin/codesign --force --sign - --preserve-metadata=identifier,entitlements,flags --timestamp=none /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework
PhaseScriptExecution Thin\ Binary /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh
cd /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export ACTION=build
export AD_HOC_CODE_SIGNING_ALLOWED=YES
export ALTERNATE_GROUP=staff
export ALTERNATE_MODE=u+w,go-w,a+rX
export ALTERNATE_OWNER=vexra
export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO
export ALWAYS_SEARCH_USER_PATHS=NO
export ALWAYS_USE_SEPARATE_HEADERMAPS=NO
export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
export APPLE_INTERNAL_DIR=/AppleInternal
export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
export APPLICATION_EXTENSION_API_ONLY=NO
export APPLY_RULES_IN_COPY_FILES=NO
export ARCHS=x86_64
export ARCHS_STANDARD="i386 x86_64"
export ARCHS_STANDARD_32_64_BIT="i386 x86_64"
export ARCHS_STANDARD_32_BIT=i386
export ARCHS_STANDARD_64_BIT=x86_64
export ARCHS_STANDARD_INCLUDING_64_BIT="i386 x86_64"
export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64"
export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
export BITCODE_GENERATION_MODE=marker
export BUILD_ACTIVE_RESOURCES_ONLY=YES
export BUILD_COMPONENTS="headers build"
export BUILD_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios
export BUILD_ROOT=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Products
export BUILD_STYLE=
export BUILD_VARIANTS=normal
export BUILT_PRODUCTS_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator
export CACHE_ROOT=/var/folders/k9/_8s5nn956lz5smd8ythwsrj40000gn/C/com.apple.DeveloperTools/9.4.1-9F2000/Xcode
export CCHROOT=/var/folders/k9/_8s5nn956lz5smd8ythwsrj40000gn/C/com.apple.DeveloperTools/9.4.1-9F2000/Xcode
export CHMOD=/bin/chmod
export CHOWN=/usr/sbin/chown
export CLANG_ANALYZER_NONNULL=YES
export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x
export CLANG_CXX_LIBRARY=libc++
export CLANG_ENABLE_MODULES=YES
export CLANG_ENABLE_OBJC_ARC=YES
export CLANG_MODULES_BUILD_SESSION_FILE=/Users/vexra/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES
export CLANG_WARN_BOOL_CONVERSION=YES
export CLANG_WARN_COMMA=YES
export CLANG_WARN_CONSTANT_CONVERSION=YES
export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
export CLANG_WARN_EMPTY_BODY=YES
export CLANG_WARN_ENUM_CONVERSION=YES
export CLANG_WARN_INFINITE_RECURSION=YES
export CLANG_WARN_INT_CONVERSION=YES
export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES
export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES
export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES
export CLANG_WARN_STRICT_PROTOTYPES=YES
export CLANG_WARN_SUSPICIOUS_MOVE=YES
export CLANG_WARN_UNREACHABLE_CODE=YES
export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
export CLASS_FILE_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
export CLEAN_PRECOMPS=YES
export CLONE_HEADERS=NO
export CODESIGNING_FOLDER_PATH=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app
export CODE_SIGNING_ALLOWED=YES
export CODE_SIGNING_REQUIRED=YES
export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext
export CODE_SIGN_IDENTITY=-
export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES
export COLOR_DIAGNOSTICS=NO
export COMBINE_HIDPI_IMAGES=NO
export COMMAND_MODE=legacy
export COMPILER_INDEX_STORE_ENABLE=Default
export COMPOSITE_SDK_DIRS=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/CompositeSDKs
export COMPRESS_PNG_FILES=YES
export CONFIGURATION=Debug
export CONFIGURATION_BUILD_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator
export CONFIGURATION_TEMP_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
export CONTENTS_FOLDER_PATH=Runner.app
export COPYING_PRESERVES_HFS_DATA=NO
export COPY_HEADERS_RUN_UNIFDEF=NO
export COPY_PHASE_STRIP=NO
export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
export CORRESPONDING_DEVICE_SDK_NAME=iphoneos11.4
export CP=/bin/cp
export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
export CURRENT_ARCH=x86_64
export CURRENT_PROJECT_VERSION=1
export CURRENT_VARIANT=normal
export DEAD_CODE_STRIPPING=YES
export DEBUGGING_SYMBOLS=YES
export DEBUG_INFORMATION_FORMAT=dwarf
export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions
export DEFINES_MODULE=NO
export DEPLOYMENT_LOCATION=NO
export DEPLOYMENT_POSTPROCESSING=NO
export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min
export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min=
export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4"
export DERIVED_FILES_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_FILE_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_SOURCES_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export DEVELOPMENT_LANGUAGE=English
export DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Documentation
export DO_HEADER_SCANNING_IN_JAM=NO
export DSTROOT=/tmp/Runner.dst
export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export DWARF_DSYM_FILE_NAME=Runner.app.dSYM
export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
export DWARF_DSYM_FOLDER_PATH=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator
export EFFECTIVE_PLATFORM_NAME=-iphonesimulator
export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
export ENABLE_BITCODE=NO
export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
export ENABLE_HEADER_DEPENDENCIES=YES
export ENABLE_ON_DEMAND_RESOURCES=YES
export ENABLE_STRICT_OBJC_MSGSEND=YES
export ENABLE_TESTABILITY=YES
export ENTITLEMENTS_REQUIRED=YES
export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj"
export EXECUTABLES_FOLDER_PATH=Runner.app/Executables
export EXECUTABLE_FOLDER_PATH=Runner.app
export EXECUTABLE_NAME=Runner
export EXECUTABLE_PATH=Runner.app/Runner
export EXPANDED_CODE_SIGN_IDENTITY=-
export EXPANDED_CODE_SIGN_IDENTITY_NAME=-
export EXPANDED_PROVISIONING_PROFILE=
export FILE_LIST=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
export FIXED_FILES_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
export FLUTTER_APPLICATION_PATH=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter
export FLUTTER_BUILD_DIR=build
export FLUTTER_BUILD_MODE=debug
export FLUTTER_FRAMEWORK_DIR=/Users/vexra/Downloads/flutter/bin/cache/artifacts/engine/ios
export FLUTTER_ROOT=/Users/vexra/Downloads/flutter
export FLUTTER_TARGET=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/lib/main.dart
export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks
export FRAMEWORK_FLAG_PREFIX=-framework
export FRAMEWORK_SEARCH_PATHS="/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter"
export FRAMEWORK_VERSION=A
export FULL_PRODUCT_NAME=Runner.app
export GCC3_VERSION=3.3
export GCC_C_LANGUAGE_STANDARD=gnu99
export GCC_DYNAMIC_NO_PIC=NO
export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
export GCC_NO_COMMON_BLOCKS=YES
export GCC_OBJC_LEGACY_DISPATCH=YES
export GCC_OPTIMIZATION_LEVEL=0
export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++"
export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 "
export GCC_SYMBOLS_PRIVATE_EXTERN=NO
export GCC_TREAT_WARNINGS_AS_ERRORS=NO
export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
export GCC_WARN_UNDECLARED_SELECTOR=YES
export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
export GCC_WARN_UNUSED_FUNCTION=YES
export GCC_WARN_UNUSED_VARIABLE=YES
export GENERATE_MASTER_OBJECT_FILE=NO
export GENERATE_PKGINFO_FILE=YES
export GENERATE_PROFILING_CODE=NO
export GENERATE_TEXT_BASED_STUBS=NO
export GID=20
export GROUP=staff
export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
export HEADERMAP_USES_VFS=NO
export HEADER_SEARCH_PATHS="/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/include "
export HIDE_BITCODE_SYMBOLS=YES
export HOME=/Users/vexra
export ICONV=/usr/bin/iconv
export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
export INFOPLIST_FILE=Runner/Info.plist
export INFOPLIST_OUTPUT_FORMAT=binary
export INFOPLIST_PATH=Runner.app/Info.plist
export INFOPLIST_PREPROCESS=NO
export INFOSTRINGS_PATH=Runner.app/English.lproj/InfoPlist.strings
export INLINE_PRIVATE_FRAMEWORKS=NO
export INSTALLHDRS_COPY_PHASE=NO
export INSTALLHDRS_SCRIPT_PHASE=NO
export INSTALL_DIR=/tmp/Runner.dst/Applications
export INSTALL_GROUP=staff
export INSTALL_MODE_FLAG=u+w,go-w,a+rX
export INSTALL_OWNER=vexra
export INSTALL_PATH=/Applications
export INSTALL_ROOT=/tmp/Runner.dst
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
export JAVA_ARCHIVE_CLASSES=YES
export JAVA_ARCHIVE_TYPE=JAR
export JAVA_COMPILER=/usr/bin/javac
export JAVA_FOLDER_PATH=Runner.app/Java
export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
export JAVA_JAR_FLAGS=cv
export JAVA_SOURCE_SUBDIR=.
export JAVA_USE_DEPENDENCIES=YES
export JAVA_ZIP_FLAGS=-urg
export JIKES_DEFAULT_FLAGS="+E +OLDCSO"
export KEEP_PRIVATE_EXTERNS=NO
export LD_DEPENDENCY_INFO_FILE=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
export LD_GENERATE_MAP_FILE=NO
export LD_MAP_FILE_PATH=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt
export LD_NO_PIE=NO
export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
export LD_RUNPATH_SEARCH_PATHS=" @executable_path/Frameworks"
export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
export LEX=lex
export LIBRARY_FLAG_NOSPACE=YES
export LIBRARY_FLAG_PREFIX=-l
export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
export LIBRARY_SEARCH_PATHS="/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter"
export LINKER_DISPLAYS_MANGLED_NAMES=NO
export LINK_FILE_LIST_normal_x86_64=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList
export LINK_WITH_STANDARD_LIBRARIES=YES
export LOCALIZABLE_CONTENT_DIR=
export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/English.lproj
export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFLocalizedString"
export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
export LOCAL_APPS_DIR=/Applications
export LOCAL_DEVELOPER_DIR=/Library/Developer
export LOCAL_LIBRARY_DIR=/Library
export LOCROOT=
export LOCSYMROOT=
export MACH_O_TYPE=mh_execute
export MAC_OS_X_PRODUCT_BUILD_VERSION=17G65
export MAC_OS_X_VERSION_ACTUAL=101306
export MAC_OS_X_VERSION_MAJOR=101300
export MAC_OS_X_VERSION_MINOR=1306
export METAL_LIBRARY_FILE_BASE=default
export METAL_LIBRARY_OUTPUT_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app
export MODULE_CACHE_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
export MTL_ENABLE_DEBUG_INFO=YES
export NATIVE_ARCH=i386
export NATIVE_ARCH_32_BIT=i386
export NATIVE_ARCH_64_BIT=x86_64
export NATIVE_ARCH_ACTUAL=x86_64
export NO_COMMON=YES
export OBJC_ABI_VERSION=2
export OBJECT_FILE_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
export OBJECT_FILE_DIR_normal=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
export OBJROOT=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex
export ONLY_ACTIVE_ARCH=YES
export OS=MACOS
export OSAC=/usr/bin/osacompile
export PACKAGE_TYPE=com.apple.package-type.wrapper.application
export PASCAL_STRINGS=YES
export PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms"
export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist
export PFE_FILE_C_DIALECTS=objective-c
export PKGINFO_FILE_PATH=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
export PKGINFO_PATH=Runner.app/PkgInfo
export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
export PLATFORM_DISPLAY_NAME="iOS Simulator"
export PLATFORM_NAME=iphonesimulator
export PLATFORM_PREFERRED_ARCH=x86_64
export PLIST_FILE_OUTPUT_FORMAT=binary
export PLUGINS_FOLDER_PATH=Runner.app/PlugIns
export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
export PRECOMP_DESTINATION_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
export PREVIEW_DART_2=true
export PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders
export PRODUCT_BUNDLE_IDENTIFIER=br.com.brgweb.testeflutter
export PRODUCT_MODULE_NAME=Runner
export PRODUCT_NAME=Runner
export PRODUCT_SETTINGS_PATH=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner/Info.plist
export PRODUCT_TYPE=com.apple.product-type.application
export PROFILING_CODE=NO
export PROJECT=Runner
export PROJECT_DERIVED_FILE_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/DerivedSources
export PROJECT_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export PROJECT_FILE_PATH=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner.xcodeproj
export PROJECT_NAME=Runner
export PROJECT_TEMP_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build
export PROJECT_TEMP_ROOT=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex
export PUBLIC_HEADERS_FOLDER_PATH=Runner.app/Headers
export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
export REMOVE_CVS_FROM_RESOURCES=YES
export REMOVE_GIT_FROM_RESOURCES=YES
export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
export REMOVE_HG_FROM_RESOURCES=YES
export REMOVE_SVN_FROM_RESOURCES=YES
export REZ_COLLECTOR_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
export REZ_OBJECTS_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
export REZ_SEARCH_PATHS="/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator "
export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
export SCRIPTS_FOLDER_PATH=Runner.app/Scripts
export SCRIPT_INPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_FILE_COUNT=0
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_DIR_iphonesimulator11_4=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
export SDK_NAME=iphonesimulator11.4
export SDK_NAMES=iphonesimulator11.4
export SDK_PRODUCT_BUILD_VERSION=15F79
export SDK_VERSION=11.4
export SDK_VERSION_ACTUAL=110400
export SDK_VERSION_MAJOR=110000
export SDK_VERSION_MINOR=400
export SED=/usr/bin/sed
export SEPARATE_STRIP=NO
export SEPARATE_SYMBOL_EDIT=NO
export SET_DIR_MODE_OWNER_GROUP=YES
export SET_FILE_MODE_OWNER_GROUP=NO
export SHALLOW_BUNDLE=YES
export SHARED_DERIVED_FILE_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/DerivedSources
export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks
export SHARED_PRECOMPS_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/PrecompiledHeaders
export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport
export SKIP_INSTALL=NO
export SOURCE_ROOT=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export SRCROOT=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export STRINGS_FILE_OUTPUT_ENCODING=binary
export STRIP_BITCODE_FROM_COPIED_FILES=NO
export STRIP_INSTALLED_PRODUCT=YES
export STRIP_STYLE=all
export STRIP_SWIFT_SYMBOLS=YES
export SUPPORTED_DEVICE_FAMILIES=1,2
export SUPPORTED_PLATFORMS="iphonesimulator iphoneos"
export SUPPORTS_TEXT_BASED_API=NO
export SWIFT_PLATFORM_TARGET_PREFIX=ios
export SYMROOT=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Products
export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
export SYSTEM_APPS_DIR=/Applications
export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
export SYSTEM_DEMOS_DIR=/Applications/Extras
export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples"
export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library"
export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools"
export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools"
export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools"
export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes"
export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools
export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities
export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
export SYSTEM_LIBRARY_DIR=/System/Library
export TAPI_VERIFY_MODE=ErrorsOnly
export TARGETED_DEVICE_FAMILY=1,2
export TARGETNAME=Runner
export TARGET_BUILD_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator
export TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder"
export TARGET_NAME=Runner
export TARGET_TEMP_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILES_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILE_DIR=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_ROOT=/Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex
export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
export UID=501
export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app
export UNSTRIPPED_PRODUCT=NO
export USER=vexra
export USER_APPS_DIR=/Users/vexra/Applications
export USER_LIBRARY_DIR=/Users/vexra/Library
export USE_DYNAMIC_NO_PIC=YES
export USE_HEADERMAP=YES
export USE_HEADER_SYMLINKS=NO
export VALIDATE_PRODUCT=NO
export VALID_ARCHS="i386 x86_64"
export VERBOSE_PBXCP=NO
export VERBOSE_SCRIPT_LOGGING=YES
export VERSIONING_SYSTEM=apple-generic
export VERSIONPLIST_PATH=Runner.app/version.plist
export VERSION_INFO_BUILDER=vexra
export VERSION_INFO_FILE=Runner_vers.c
export VERSION_INFO_STRING="\"@(#)PROGRAM:Runner PROJECT:Runner-1\""
export WRAPPER_EXTENSION=app
export WRAPPER_NAME=Runner.app
export WRAPPER_SUFFIX=.app
export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO
export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION=9F2000
export XCODE_VERSION_ACTUAL=0941
export XCODE_VERSION_MAJOR=0900
export XCODE_VERSION_MINOR=0940
export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices
export YACC=yacc
export arch=x86_64
export variant=normal
/bin/sh -c /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh
Touch /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app
cd /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
/usr/bin/touch -c /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app
CodeSign /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app
cd /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
Signing Identity: "-"
/usr/bin/codesign --force --sign - --entitlements /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent --timestamp=none /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app
** BUILD SUCCEEDED **
[ +11 ms] Xcode build done.
[ ] [ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios -sdk iphonesimulator -arch x86_64 -showBuildSettings
[ +924 ms] Exit code 0 from: /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios -sdk iphonesimulator -arch x86_64 -showBuildSettings
[ ] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios
SDKROOT = iphonesimulator11.4
VERBOSE_SCRIPT_LOGGING = YES
Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = YES
ALTERNATE_GROUP = staff
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = vexra
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = NO
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
APPLE_INTERNAL_DIR = /AppleInternal
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
APPLICATION_EXTENSION_API_ONLY = NO
APPLY_RULES_IN_COPY_FILES = NO
ARCHS = x86_64
ARCHS_STANDARD = i386 x86_64
ARCHS_STANDARD_32_64_BIT = i386 x86_64
ARCHS_STANDARD_32_BIT = i386
ARCHS_STANDARD_64_BIT = x86_64
ARCHS_STANDARD_INCLUDING_64_BIT = i386 x86_64
ARCHS_UNIVERSAL_IPHONE_OS = i386 x86_64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
BITCODE_GENERATION_MODE = marker
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios
BUILD_ROOT = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Products
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator
CACHE_ROOT = /var/folders/k9/_8s5nn956lz5smd8ythwsrj40000gn/C/com.apple.DeveloperTools/9.4.1-9F2000/Xcode
CCHROOT = /var/folders/k9/_8s5nn956lz5smd8ythwsrj40000gn/C/com.apple.DeveloperTools/9.4.1-9F2000/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/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_CONTEXT_CLASS = XCiPhoneSimulatorCodeSignContext
CODE_SIGN_IDENTITY = -
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = NO
COMPILER_INDEX_STORE_ENABLE = Default
COMPOSITE_SDK_DIRS = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Debug
CONFIGURATION_BUILD_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator
CONFIGURATION_TEMP_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
CONTENTS_FOLDER_PATH = Runner.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_DEVICE_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
CORRESPONDING_DEVICE_PLATFORM_NAME = iphoneos
CORRESPONDING_DEVICE_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.4.sdk
CORRESPONDING_DEVICE_SDK_NAME = iphoneos11.4
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = x86_64
CURRENT_PROJECT_VERSION = 1
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = mios-simulator-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -mios-simulator-version-min=
DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4
DERIVED_FILES_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = English
DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DWARF_DSYM_FILE_NAME = Runner.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator
EFFECTIVE_PLATFORM_NAME = -iphonesimulator
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = YES
ENTITLEMENTS_REQUIRED = YES
EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
EXECUTABLES_FOLDER_PATH = Runner.app/Executables
EXECUTABLE_FOLDER_PATH = Runner.app
EXECUTABLE_NAME = Runner
EXECUTABLE_PATH = Runner.app/Runner
EXPANDED_CODE_SIGN_IDENTITY =
EXPANDED_CODE_SIGN_IDENTITY_NAME =
EXPANDED_PROVISIONING_PROFILE =
FILE_LIST = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_MODE = debug
FLUTTER_FRAMEWORK_DIR = /Users/vexra/Downloads/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/vexra/Downloads/flutter
FLUTTER_TARGET = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_DYNAMIC_NO_PIC = NO
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_OBJC_LEGACY_DISPATCH = YES
GCC_OPTIMIZATION_LEVEL = 0
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1
GCC_SYMBOLS_PRIVATE_EXTERN = NO
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 20
GROUP = staff
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/vexra
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 = vexra
INSTALL_PATH = /Applications
INSTALL_ROOT = /tmp/Runner.dst
IPHONEOS_DEPLOYMENT_TARGET = 8.0
JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
JAVA_ARCHIVE_CLASSES = YES
JAVA_ARCHIVE_TYPE = JAR
JAVA_COMPILER = /usr/bin/javac
JAVA_FOLDER_PATH = Runner.app/Java
JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
JAVA_JAR_FLAGS = cv
JAVA_SOURCE_SUBDIR = .
JAVA_USE_DEPENDENCIES = YES
JAVA_ZIP_FLAGS = -urg
JIKES_DEFAULT_FLAGS = +E +OLDCSO
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_x86_64 =
LINK_WITH_STANDARD_LIBRARIES = YES
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj
LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 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/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/Runner.app
MODULE_CACHE_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
MTL_ENABLE_DEBUG_INFO = YES
NATIVE_ARCH = i386
NATIVE_ARCH_32_BIT = i386
NATIVE_ARCH_64_BIT = x86_64
NATIVE_ARCH_ACTUAL = x86_64
NO_COMMON = YES
OBJC_ABI_VERSION = 2
OBJECT_FILE_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
OBJROOT = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex
ONLY_ACTIVE_ARCH = YES
OS = MACOS
OSAC = /usr/bin/osacompile
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Frameworks/Mono.framework/Versions/Current/Commands
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/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
PLATFORM_DISPLAY_NAME = iOS Simulator
PLATFORM_NAME = iphonesimulator
PLATFORM_PREFERRED_ARCH = x86_64
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PREVIEW_DART_2 = true
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = br.com.brgweb.testeflutter
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/DerivedSources
PROJECT_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
PROJECT_FILE_PATH = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build
PROJECT_TEMP_ROOT = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex
PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
REMOVE_CVS_FROM_RESOURCES = YES
REMOVE_GIT_FROM_RESOURCES = YES
REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
REMOVE_HG_FROM_RESOURCES = YES
REMOVE_SVN_FROM_RESOURCES = YES
REZ_COLLECTOR_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
SDK_DIR_iphonesimulator11_4 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk
SDK_NAME = iphonesimulator11.4
SDK_NAMES = iphonesimulator11.4
SDK_PRODUCT_BUILD_VERSION = 15F79
SDK_VERSION = 11.4
SDK_VERSION_ACTUAL = 110400
SDK_VERSION_MAJOR = 110000
SDK_VERSION_MINOR = 400
SED = /usr/bin/sed
SEPARATE_STRIP = NO
SEPARATE_SYMBOL_EDIT = NO
SET_DIR_MODE_OWNER_GROUP = YES
SET_FILE_MODE_OWNER_GROUP = NO
SHALLOW_BUNDLE = YES
SHARED_DERIVED_FILE_DIR = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/PrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
SRCROOT = /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = NO
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphonesimulator iphoneos
SUPPORTS_TEXT_BASED_API = NO
SWIFT_PLATFORM_TARGET_PREFIX = ios
SYMROOT = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/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/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/Debug-iphonesimulator
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_FILES_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_FILE_DIR = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_ROOT = /Users/vexra/Library/Developer/Xcode/DerivedData/Runner-gjzveulgormjycfyijxirynpzcrl/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 = vexra
USER_APPS_DIR = /Users/vexra/Applications
USER_LIBRARY_DIR = /Users/vexra/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
VALIDATE_PRODUCT = NO
VALID_ARCHS = i386 x86_64
VERBOSE_PBXCP = NO
VERBOSE_SCRIPT_LOGGING = YES
VERSIONING_SYSTEM = apple-generic
VERSIONPLIST_PATH = Runner.app/version.plist
VERSION_INFO_BUILDER = vexra
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 = 9F2000
XCODE_VERSION_ACTUAL = 0941
XCODE_VERSION_MAJOR = 0900
XCODE_VERSION_MINOR = 0940
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = x86_64
variant = normal
[ +175 ms] /usr/bin/xcrun simctl install 394D6FA1-6AD0-42B4-8C43-15CFF42B255D /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/build/ios/iphonesimulator/Runner.app
[+1091 ms] /usr/bin/xcrun simctl launch 394D6FA1-6AD0-42B4-8C43-15CFF42B255D br.com.brgweb.testeflutter --enable-dart-profiling --enable-checked-mode --observatory-port=8100
[ +480 ms] br.com.brgweb.testeflutter: 10857
[ ] Waiting for observatory port to be available...
[ +782 ms] [DEVICE LOG] 2018-08-07 04:17:49.714296-0300 localhost Runner[10857]: (Runner) Created Activity ID: 0x31300, Description: Loading Preferences From System CFPrefsD For Search List
[ +2 ms] [DEVICE LOG] 2018-08-07 04:17:49.714297-0300 localhost Runner[10857]: (Runner) Created Activity ID: 0x31301, Description: Loading Preferences From System CFPrefsD For Search List
[ +44 ms] [DEVICE LOG] 2018-08-07 04:17:49.762926-0300 localhost Runner[10857]: (Runner) Created Activity ID: 0x31302, Description: Loading Preferences From System CFPrefsD For Search List
[ +25 ms] [DEVICE LOG] 2018-08-07 04:17:49.788939-0300 localhost Runner[10857]: (libAccessibility.dylib) [com.apple.Accessibility:AccessibilitySupport] Retrieving resting unlock: 0
[ +352 ms] [DEVICE LOG] 2018-08-07 04:17:50.141460-0300 localhost Runner[10857]: (UIKit) You've implemented -[<UIApplicationDelegate> application:performFetchWithCompletionHandler:], but you still need to add "fetch" to the list of your supported UIBackgroundModes in your Info.plist.
[ ] [DEVICE LOG] 2018-08-07 04:17:50.141686-0300 localhost Runner[10857]: (UIKit) You've implemented -[<UIApplicationDelegate> application:didReceiveRemoteNotification:fetchCompletionHandler:], but you still need to add "remote-notification" to the list of your supported UIBackgroundModes in your Info.plist.
[ +47 ms] [DEVICE LOG] 2018-08-07 04:17:50.189896-0300 localhost Runner[10857]: (Flutter) flutter: Observatory listening on http://127.0.0.1:8100/
[ +4 ms] Observatory URL on device: http://127.0.0.1:8100/
[ +4 ms] Connecting to service protocol: http://127.0.0.1:8100/
[ +316 ms] Successfully connected to service protocol: http://127.0.0.1:8100/
[ +5 ms] getVM: {}
[ +28 ms] getIsolate: {isolateId: isolates/433086024}
[ +7 ms] _flutter.listViews: {isolateId: isolates/433086024}
[ +88 ms] DevFS: Creating new filesystem on the device (null)
[ +1 ms] _createDevFS: {fsName: testeflutter}
[ +21 ms] DevFS: Created new filesystem on the device (file:///Users/vexra/Library/Developer/CoreSimulator/Devices/394D6FA1-6AD0-42B4-8C43-15CFF42B255D/data/Containers/Data/Application/E0E46C85-D6B6-4899-8424-8A2B09D2B514/tmp/testeflutterTGkjwY/testeflutter/)
[ +1 ms] Updating assets
[ +199 ms] Syncing files to device iPhone X...
[ +3 ms] DevFS: Starting sync from LocalDirectory: '/Users/vexra/Desktop/brgweb/interagirflutter/testeflutter'
[ ] Scanning project files
[ +5 ms] Scanning package files
[ +154 ms] Scanning asset files
[ +1 ms] Scanning for deleted files
[ +14 ms] Compiling dart to kernel with 416 updated files
[ +2 ms] /Users/vexra/Downloads/flutter/bin/cache/dart-sdk/bin/dart /Users/vexra/Downloads/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /Users/vexra/Downloads/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --strong --target=flutter --output-dill build/app.dill --packages /Users/vexra/Desktop/brgweb/interagirflutter/testeflutter/.packages --filesystem-scheme org-dartlang-root
[+4096 ms] Updating files
[ +656 ms] DevFS: Sync finished
[ ] Synced 0.8MB.
[ +5 ms] _flutter.listViews: {isolateId: isolates/433086024}
[ +2 ms] Connected to _flutterView/0x7f818660c8d8.
[ ] 🔥 To hot reload changes while running, press "r". To hot restart (and rebuild state), press "R".
[ ] An Observatory debugger and profiler on iPhone X is available at: http://127.0.0.1:8100/
[ ] For a more detailed help message, press "h". To quit, press "q".
[+7940 ms] ext.flutter.exit: {isolateId: isolates/433086024}
[ +31 ms] Service protocol connection closed.
[ ] Lost connection to device.
[ +2 ms] DevFS: Deleting filesystem on the device (file:///Users/vexra/Library/Developer/CoreSimulator/Devices/394D6FA1-6AD0-42B4-8C43-15CFF42B255D/data/Containers/Data/Application/E0E46C85-D6B6-4899-8424-8A2B09D2B514/tmp/testeflutterTGkjwY/testeflutter/)
[ ] _deleteDevFS: {fsName: testeflutter}
</code></pre></div>
<p dir="auto">flutter analyze</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Analyzing testeflutter...
info • The value of the field '_counter' isn't used • lib/main.dart:49:7
info • The method '_incrementCounter' isn't used • lib/main.dart:51:8
2 issues found. (ran in 1.9s)"><pre class="notranslate"><code class="notranslate">Analyzing testeflutter...
info • The value of the field '_counter' isn't used • lib/main.dart:49:7
info • The method '_incrementCounter' isn't used • lib/main.dart:51:8
2 issues found. (ran in 1.9s)
</code></pre></div>
<p dir="auto">flutter doctor</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[✓] Flutter (Channel unknown, v0.5.2-pre.1, on Mac OS X 10.13.6 17G65, locale pt-BR)
• Flutter version 0.5.2-pre.1 at /Users/vexra/Downloads/flutter
• Framework revision 7f615bc713 (2 days ago), 2018-08-05 11:33:14 -0300
• Engine revision 1ed25ca7b7
• Dart version 2.0.0-dev.58.0.flutter-f981f09760
[✓] Android toolchain - develop for Android devices (Android SDK 26.0.1)
• Android SDK at /Users/vexra/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-26, build-tools 26.0.1
• 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 26.0.1
• Dart plugin version 173.4700
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01)
[✓] Connected devices (1 available)
• iPhone X • 394D6FA1-6AD0-42B4-8C43-15CFF42B255D • ios • iOS 11.4 (simulator)
• No issues found!
"><pre class="notranslate"><code class="notranslate">[✓] Flutter (Channel unknown, v0.5.2-pre.1, on Mac OS X 10.13.6 17G65, locale pt-BR)
• Flutter version 0.5.2-pre.1 at /Users/vexra/Downloads/flutter
• Framework revision 7f615bc713 (2 days ago), 2018-08-05 11:33:14 -0300
• Engine revision 1ed25ca7b7
• Dart version 2.0.0-dev.58.0.flutter-f981f09760
[✓] Android toolchain - develop for Android devices (Android SDK 26.0.1)
• Android SDK at /Users/vexra/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-26, build-tools 26.0.1
• 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 26.0.1
• Dart plugin version 173.4700
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01)
[✓] Connected devices (1 available)
• iPhone X • 394D6FA1-6AD0-42B4-8C43-15CFF42B255D • ios • iOS 11.4 (simulator)
• No issues found!
</code></pre></div> | <p dir="auto">When attempting to run any flutter project after updating to MacOS Mojave Beta 10.14 a fatal build error occurs.</p>
<h2 dir="auto">Steps to Reproduce</h2>
<ol dir="auto">
<li>Create a new default Flutter project or open the example/HelloWorld</li>
<li>Open the iOS simulator</li>
<li>Attempt to run the flutter project in the iOS simulator (This will fail)</li>
</ol>
<h2 dir="auto">Logs</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ +33 ms] [/Users/luc/Development/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +38 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/beta
[ ] [/Users/luc/Development/flutter/] git rev-parse --abbrev-ref HEAD
[ +10 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] beta
[ ] [/Users/luc/Development/flutter/] git ls-remote --get-url origin
[ +10 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] [/Users/luc/Development/flutter/] git log -n 1 --pretty=format:%H
[ +11 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] c7ea3ca377e909469c68f2ab878a5bc53d3cf66b
[ ] [/Users/luc/Development/flutter/] git log -n 1 --pretty=format:%ar
[ +12 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 8 weeks ago
[ ] [/Users/luc/Development/flutter/] git describe --match v*.*.* --first-parent --long --tags
[ +13 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.5.1-0-gc7ea3ca37
[ +367 ms] /Users/luc/Library/Android/sdk/platform-tools/adb devices -l
[ +7 ms] Exit code 0 from: /Users/luc/Library/Android/sdk/platform-tools/adb devices -l
[ ] List of devices attached
emulator-5554 device product:sdk_gphone_x86 model:Android_SDK_built_for_x86 device:generic_x86 transport_id:1
[ +9 ms] idevice_id -h
[ +163 ms] /usr/bin/xcrun simctl list --json devices
[ +895 ms] Launching lib/main.dart on iPhone X in debug mode...
[ +2 ms] /usr/bin/defaults read /Users/luc/Desktop/aaa/ios/Runner/Info CFBundleIdentifier
[ +60 ms] Exit code 0 from: /usr/bin/defaults read /Users/luc/Desktop/aaa/ios/Runner/Info CFBundleIdentifier
[ ] $(PRODUCT_BUNDLE_IDENTIFIER)
[ ] [ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/luc/Desktop/aaa/ios/Runner.xcodeproj -target Runner -showBuildSettings
[+1295 ms] Exit code 0 from: /usr/bin/xcodebuild -project /Users/luc/Desktop/aaa/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 = luc
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/luc/Desktop/aaa/build/ios
BUILD_ROOT = /Users/luc/Desktop/aaa/build/ios
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/luc/Desktop/aaa/build/ios/Release-iphoneos
CACHE_ROOT = /var/folders/c8/c5mpn8152_bf0bxjmbx_j31h0000gn/C/com.apple.DeveloperTools/10.0-10L177m/Xcode
CCHROOT = /var/folders/c8/c5mpn8152_bf0bxjmbx_j31h0000gn/C/com.apple.DeveloperTools/10.0-10L177m/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/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/luc/Desktop/aaa/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/luc/Desktop/aaa/build/ios/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Release
CONFIGURATION_BUILD_DIR = /Users/luc/Desktop/aaa/build/ios/Release-iphoneos
CONFIGURATION_TEMP_DIR = /Users/luc/Desktop/aaa/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-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform
CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator
CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode-beta.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/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode-beta.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode-beta.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode-beta.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode-beta.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode-beta.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = English
DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode-beta.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/luc/Desktop/aaa/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/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/luc/Desktop/aaa
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_MODE = debug
FLUTTER_FRAMEWORK_DIR = /Users/luc/Development/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/luc/Development/flutter
FLUTTER_TARGET = /Users/luc/Desktop/aaa/lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = /Users/luc/Desktop/aaa/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_SYMBOLS_PRIVATE_EXTERN = YES
GCC_THUMB_SUPPORT = YES
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 20
GROUP = staff
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/luc
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 = luc
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/luc/Desktop/aaa/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/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode-beta.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/luc/Desktop/aaa/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 = 18A336e
MAC_OS_X_VERSION_ACTUAL = 101400
MAC_OS_X_VERSION_MAJOR = 101400
MAC_OS_X_VERSION_MINOR = 1400
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = /Users/luc/Desktop/aaa/build/ios/Release-iphoneos/Runner.app
MODULE_CACHE_DIR = /Users/luc/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/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal
OBJROOT = /Users/luc/Desktop/aaa/build/ios
ONLY_ACTIVE_ARCH = NO
OS = MACOS
OSAC = /usr/bin/osacompile
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode-beta.app/Contents/Developer/usr/bin:/usr/local/bin:/Users/luc/Development/flutter/bin:/Users/luc/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin
PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode-beta.app/Contents/Developer/Headers /Applications/Xcode-beta.app/Contents/Developer/SDKs /Applications/Xcode-beta.app/Contents/Developer/Platforms
PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist
PFE_FILE_C_DIALECTS = objective-c
PKGINFO_FILE_PATH = /Users/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode-beta.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform
PLATFORM_DISPLAY_NAME = iOS
PLATFORM_NAME = iphoneos
PLATFORM_PREFERRED_ARCH = arm64
PLATFORM_PRODUCT_BUILD_VERSION = 16A5308d
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PREVIEW_DART_2 = true
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = com.example.aaa
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = /Users/luc/Desktop/aaa/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/luc/Desktop/aaa/build/ios/Runner.build/DerivedSources
PROJECT_DIR = /Users/luc/Desktop/aaa/ios
PROJECT_FILE_PATH = /Users/luc/Desktop/aaa/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/luc/Desktop/aaa/build/ios/Runner.build
PROJECT_TEMP_ROOT = /Users/luc/Desktop/aaa/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/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/luc/Desktop/aaa/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-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
SDK_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
SDK_DIR_iphoneos12_0 = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
SDK_NAME = iphoneos12.0
SDK_NAMES = iphoneos12.0
SDK_PRODUCT_BUILD_VERSION = 16A5308d
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/luc/Desktop/aaa/build/ios/Release-iphoneos/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/luc/Desktop/aaa/build/ios/SharedPrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/luc/Desktop/aaa/ios
SRCROOT = /Users/luc/Desktop/aaa/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_PLATFORM_TARGET_PREFIX = ios
SYMROOT = /Users/luc/Desktop/aaa/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-beta.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode-beta.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode-beta.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode-beta.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode-beta.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode-beta.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/luc/Desktop/aaa/build/ios/Release-iphoneos
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_DIR = /Users/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILES_DIR = /Users/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILE_DIR = /Users/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_ROOT = /Users/luc/Desktop/aaa/build/ios
TOOLCHAIN_DIR = /Applications/Xcode-beta.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 = luc
USER_APPS_DIR = /Users/luc/Applications
USER_LIBRARY_DIR = /Users/luc/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 = luc
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-beta.app/Contents/Developer/Library/Xcode
XCODE_PRODUCT_BUILD_VERSION = 10L177m
XCODE_VERSION_ACTUAL = 1000
XCODE_VERSION_MAJOR = 1000
XCODE_VERSION_MINOR = 1000
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = arm64
variant = normal
[ +14 ms] Building Runner.app for 47DFC15D-1E56-4E53-AF42-C87C7D960AF6.
[ +11 ms] script /dev/null /usr/bin/log stream --style syslog --predicate processImagePath CONTAINS "47DFC15D-1E56-4E53-AF42-C87C7D960AF6"
[ +49 ms] [DEVICE LOG] Filtering the log data using "processImagePath CONTAINS "47DFC15D-1E56-4E53-AF42-C87C7D960AF6""
[ +163 ms] Skipping kernel compilation. Fingerprint match.
[ +244 ms] Building bundle
[ +1 ms] Writing asset files to build/flutter_assets
[ +51 ms] Wrote build/flutter_assets
[ +1 ms] /usr/bin/xcrun simctl get_app_container 47DFC15D-1E56-4E53-AF42-C87C7D960AF6 com.example.aaa
[ ] /usr/bin/killall Runner
[ +121 ms] python -c import six
[ +39 ms] [ios/] /usr/bin/xcodebuild -list
[+1121 ms] Exit code 0 from: /usr/bin/xcodebuild -list
[ ] Information about project "Runner":
Targets:
Runner
Build Configurations:
Debug
Release
If no build configuration is specified and -scheme is not passed then "Release" is used.
Schemes:
Runner
[ +2 ms] Trying to resolve native pub services.
[ +2 ms] Looking for YAML at 'pubspec.yaml'
[ ] No services specified in the manifest
[ ] Found 0 service definition(s).
[ +1 ms] Copying service frameworks to '/Users/luc/Desktop/aaa/ios/Frameworks'.
[ ] Creating service definitions manifest at 'ios/ServiceDefinitions.json'
[ +5 ms] Starting Xcode build...
[ +1 ms] [ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/luc/Desktop/aaa/build/ios -sdk iphonesimulator -arch x86_64
[+3099 ms] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/luc/Desktop/aaa/build/ios
SDKROOT = iphonesimulator12.0
VERBOSE_SCRIPT_LOGGING = YES
note: Using new build system
note: Planning build
note: Constructing build description
ProcessProductPackaging "" /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent (in target: Runner)
cd /Users/luc/Desktop/aaa/ios
Entitlements:
{
"application-identifier" = "R43TF5K24Y.com.example.aaa";
"keychain-access-groups" = (
"R43TF5K24Y.com.example.aaa"
);
}
builtin-productPackagingUtility -entitlements -format xml -o /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent
ProcessProductPackaging "" /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent (in target: Runner)
cd /Users/luc/Desktop/aaa/ios
Entitlements:
{
"com.apple.security.get-task-allow" = 1;
}
builtin-productPackagingUtility -entitlements -format xml -o /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent
PhaseScriptExecution Run\ Script /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh (in target: Runner)
cd /Users/luc/Desktop/aaa/ios
export ACTION=build
export AD_HOC_CODE_SIGNING_ALLOWED=YES
export ALTERNATE_GROUP=staff
export ALTERNATE_MODE=u+w,go-w,a+rX
export ALTERNATE_OWNER=luc
export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO
export ALWAYS_SEARCH_USER_PATHS=NO
export ALWAYS_USE_SEPARATE_HEADERMAPS=NO
export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
export APPLE_INTERNAL_DIR=/AppleInternal
export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
export APPLICATION_EXTENSION_API_ONLY=NO
export APPLY_RULES_IN_COPY_FILES=NO
export ARCHS=x86_64
export ARCHS_STANDARD="i386 x86_64"
export ARCHS_STANDARD_32_64_BIT="i386 x86_64"
export ARCHS_STANDARD_32_BIT=i386
export ARCHS_STANDARD_64_BIT=x86_64
export ARCHS_STANDARD_INCLUDING_64_BIT="i386 x86_64"
export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64"
export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
export AppIdentifierPrefix=R43TF5K24Y.
export BITCODE_GENERATION_MODE=marker
export BUILD_ACTIVE_RESOURCES_ONLY=YES
export BUILD_COMPONENTS="headers build"
export BUILD_DIR=/Users/luc/Desktop/aaa/build/ios
export BUILD_ROOT=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Products
export BUILD_STYLE=
export BUILD_VARIANTS=normal
export BUILT_PRODUCTS_DIR=/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator
export CACHE_ROOT=/var/folders/c8/c5mpn8152_bf0bxjmbx_j31h0000gn/C/com.apple.DeveloperTools/10.0-10L177m/Xcode
export CCHROOT=/var/folders/c8/c5mpn8152_bf0bxjmbx_j31h0000gn/C/com.apple.DeveloperTools/10.0-10L177m/Xcode
export CHMOD=/bin/chmod
export CHOWN=/usr/sbin/chown
export CLANG_ANALYZER_NONNULL=YES
export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x
export CLANG_CXX_LIBRARY=libc++
export CLANG_ENABLE_MODULES=YES
export CLANG_ENABLE_OBJC_ARC=YES
export CLANG_MODULES_BUILD_SESSION_FILE=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES
export CLANG_WARN_BOOL_CONVERSION=YES
export CLANG_WARN_COMMA=YES
export CLANG_WARN_CONSTANT_CONVERSION=YES
export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
export CLANG_WARN_EMPTY_BODY=YES
export CLANG_WARN_ENUM_CONVERSION=YES
export CLANG_WARN_INFINITE_RECURSION=YES
export CLANG_WARN_INT_CONVERSION=YES
export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES
export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES
export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES
export CLANG_WARN_STRICT_PROTOTYPES=YES
export CLANG_WARN_SUSPICIOUS_MOVE=YES
export CLANG_WARN_UNREACHABLE_CODE=YES
export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
export CLASS_FILE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
export CLEAN_PRECOMPS=YES
export CLONE_HEADERS=NO
export CODESIGNING_FOLDER_PATH=/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/Runner.app
export CODE_SIGNING_ALLOWED=YES
export CODE_SIGNING_REQUIRED=YES
export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext
export CODE_SIGN_IDENTITY=-
export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES
export COLOR_DIAGNOSTICS=NO
export COMBINE_HIDPI_IMAGES=NO
export COMPILER_INDEX_STORE_ENABLE=Default
export COMPOSITE_SDK_DIRS=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/CompositeSDKs
export COMPRESS_PNG_FILES=YES
export CONFIGURATION=Debug
export CONFIGURATION_BUILD_DIR=/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator
export CONFIGURATION_TEMP_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
export CONTENTS_FOLDER_PATH=Runner.app
export COPYING_PRESERVES_HFS_DATA=NO
export COPY_HEADERS_RUN_UNIFDEF=NO
export COPY_PHASE_STRIP=NO
export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform
export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
export CORRESPONDING_DEVICE_SDK_NAME=iphoneos12.0
export CP=/bin/cp
export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
export CURRENT_ARCH=undefined_arch
export CURRENT_PROJECT_VERSION=1
export CURRENT_VARIANT=normal
export DEAD_CODE_STRIPPING=YES
export DEBUGGING_SYMBOLS=YES
export DEBUG_INFORMATION_FORMAT=dwarf
export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions
export DEFINES_MODULE=NO
export DEPLOYMENT_LOCATION=NO
export DEPLOYMENT_POSTPROCESSING=NO
export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min
export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min=
export DEPLOYMENT_TARGET_LD_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_LD_FLAG_NAME=ios_simulator_version_min
export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0"
export DERIVED_FILES_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_FILE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_SOURCES_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode-beta.app/Contents/Developer/Applications
export DEVELOPER_BIN_DIR=/Applications/Xcode-beta.app/Contents/Developer/usr/bin
export DEVELOPER_DIR=/Applications/Xcode-beta.app/Contents/Developer
export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode-beta.app/Contents/Developer/Library/Frameworks
export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode-beta.app/Contents/Developer/Library/Frameworks
export DEVELOPER_LIBRARY_DIR=/Applications/Xcode-beta.app/Contents/Developer/Library
export DEVELOPER_SDK_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
export DEVELOPER_TOOLS_DIR=/Applications/Xcode-beta.app/Contents/Developer/Tools
export DEVELOPER_USR_DIR=/Applications/Xcode-beta.app/Contents/Developer/usr
export DEVELOPMENT_LANGUAGE=English
export DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Documentation
export DO_HEADER_SCANNING_IN_JAM=NO
export DSTROOT=/tmp/Runner.dst
export DT_TOOLCHAIN_DIR=/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export DWARF_DSYM_FILE_NAME=Runner.app.dSYM
export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
export DWARF_DSYM_FOLDER_PATH=/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator
export EFFECTIVE_PLATFORM_NAME=-iphonesimulator
export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
export ENABLE_BITCODE=NO
export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
export ENABLE_HEADER_DEPENDENCIES=YES
export ENABLE_ON_DEMAND_RESOURCES=YES
export ENABLE_STRICT_OBJC_MSGSEND=YES
export ENABLE_TESTABILITY=YES
export ENTITLEMENTS_DESTINATION=__entitlements
export ENTITLEMENTS_REQUIRED=YES
export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj"
export EXECUTABLES_FOLDER_PATH=Runner.app/Executables
export EXECUTABLE_FOLDER_PATH=Runner.app
export EXECUTABLE_NAME=Runner
export EXECUTABLE_PATH=Runner.app/Runner
export EXPANDED_CODE_SIGN_IDENTITY=-
export EXPANDED_CODE_SIGN_IDENTITY_NAME=-
export FILE_LIST=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
export FIXED_FILES_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
export FLUTTER_APPLICATION_PATH=/Users/luc/Desktop/aaa
export FLUTTER_BUILD_DIR=build
export FLUTTER_BUILD_MODE=debug
export FLUTTER_FRAMEWORK_DIR=/Users/luc/Development/flutter/bin/cache/artifacts/engine/ios
export FLUTTER_ROOT=/Users/luc/Development/flutter
export FLUTTER_TARGET=/Users/luc/Desktop/aaa/lib/main.dart
export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks
export FRAMEWORK_FLAG_PREFIX=-framework
export FRAMEWORK_SEARCH_PATHS="/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator /Users/luc/Desktop/aaa/ios/Flutter"
export FRAMEWORK_VERSION=A
export FULL_PRODUCT_NAME=Runner.app
export GCC3_VERSION=3.3
export GCC_C_LANGUAGE_STANDARD=gnu99
export GCC_DYNAMIC_NO_PIC=NO
export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
export GCC_NO_COMMON_BLOCKS=YES
export GCC_OBJC_LEGACY_DISPATCH=YES
export GCC_OPTIMIZATION_LEVEL=0
export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++"
export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 "
export GCC_SYMBOLS_PRIVATE_EXTERN=NO
export GCC_TREAT_WARNINGS_AS_ERRORS=NO
export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
export GCC_WARN_UNDECLARED_SELECTOR=YES
export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
export GCC_WARN_UNUSED_FUNCTION=YES
export GCC_WARN_UNUSED_VARIABLE=YES
export GENERATE_MASTER_OBJECT_FILE=NO
export GENERATE_PKGINFO_FILE=YES
export GENERATE_PROFILING_CODE=NO
export GENERATE_TEXT_BASED_STUBS=NO
export GID=20
export GROUP=staff
export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
export HEADERMAP_USES_VFS=NO
export HEADER_SEARCH_PATHS="/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/include "
export HIDE_BITCODE_SYMBOLS=YES
export HOME=/Users/luc
export ICONV=/usr/bin/iconv
export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
export INFOPLIST_FILE=Runner/Info.plist
export INFOPLIST_OUTPUT_FORMAT=binary
export INFOPLIST_PATH=Runner.app/Info.plist
export INFOPLIST_PREPROCESS=NO
export INFOSTRINGS_PATH=Runner.app/English.lproj/InfoPlist.strings
export INLINE_PRIVATE_FRAMEWORKS=NO
export INSTALLHDRS_COPY_PHASE=NO
export INSTALLHDRS_SCRIPT_PHASE=NO
export INSTALL_DIR=/tmp/Runner.dst/Applications
export INSTALL_GROUP=staff
export INSTALL_MODE_FLAG=u+w,go-w,a+rX
export INSTALL_OWNER=luc
export INSTALL_PATH=/Applications
export INSTALL_ROOT=/tmp/Runner.dst
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
export JAVA_ARCHIVE_CLASSES=YES
export JAVA_ARCHIVE_TYPE=JAR
export JAVA_COMPILER=/usr/bin/javac
export JAVA_FOLDER_PATH=Runner.app/Java
export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
export JAVA_JAR_FLAGS=cv
export JAVA_SOURCE_SUBDIR=.
export JAVA_USE_DEPENDENCIES=YES
export JAVA_ZIP_FLAGS=-urg
export JIKES_DEFAULT_FLAGS="+E +OLDCSO"
export KEEP_PRIVATE_EXTERNS=NO
export LD_DEPENDENCY_INFO_FILE=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat
export LD_ENTITLEMENTS_SECTION=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent
export LD_GENERATE_MAP_FILE=NO
export LD_MAP_FILE_PATH=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-undefined_arch.txt
export LD_NO_PIE=NO
export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
export LD_RUNPATH_SEARCH_PATHS=" @executable_path/Frameworks"
export LEGACY_DEVELOPER_DIR=/Applications/Xcode-beta.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
export LEX=lex
export LIBRARY_FLAG_NOSPACE=YES
export LIBRARY_FLAG_PREFIX=-l
export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
export LIBRARY_SEARCH_PATHS="/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator /Users/luc/Desktop/aaa/ios/Flutter"
export LINKER_DISPLAYS_MANGLED_NAMES=NO
export LINK_FILE_LIST_normal_x86_64=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList
export LINK_WITH_STANDARD_LIBRARIES=YES
export LLVM_TARGET_TRIPLE_SUFFIX=-simulator
export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/English.lproj
export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFLocalizedString"
export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
export LOCAL_APPS_DIR=/Applications
export LOCAL_DEVELOPER_DIR=/Library/Developer
export LOCAL_LIBRARY_DIR=/Library
export LOCROOT=/Users/luc/Desktop/aaa/ios
export LOCSYMROOT=/Users/luc/Desktop/aaa/ios
export MACH_O_TYPE=mh_execute
export MAC_OS_X_PRODUCT_BUILD_VERSION=18A336e
export MAC_OS_X_VERSION_ACTUAL=101400
export MAC_OS_X_VERSION_MAJOR=101400
export MAC_OS_X_VERSION_MINOR=1400
export METAL_LIBRARY_FILE_BASE=default
export METAL_LIBRARY_OUTPUT_DIR=/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/Runner.app
export MODULE_CACHE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
export MTL_ENABLE_DEBUG_INFO=YES
export NATIVE_ARCH=i386
export NATIVE_ARCH_32_BIT=i386
export NATIVE_ARCH_64_BIT=x86_64
export NATIVE_ARCH_ACTUAL=x86_64
export NO_COMMON=YES
export OBJC_ABI_VERSION=2
export OBJECT_FILE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
export OBJECT_FILE_DIR_normal=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
export OBJROOT=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex
export ONLY_ACTIVE_ARCH=YES
export OS=MACOS
export OSAC=/usr/bin/osacompile
export PACKAGE_TYPE=com.apple.package-type.wrapper.application
export PASCAL_STRINGS=YES
export PATH=/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode-beta.app/Contents/Developer/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/usr/local/bin:/usr/local/bin:/Users/luc/Development/flutter/bin:/Users/luc/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin
export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode-beta.app/Contents/Developer/Headers /Applications/Xcode-beta.app/Contents/Developer/SDKs /Applications/Xcode-beta.app/Contents/Developer/Platforms"
export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist
export PER_ARCH_OBJECT_FILE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch
export PER_VARIANT_OBJECT_FILE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
export PKGINFO_FILE_PATH=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
export PKGINFO_PATH=Runner.app/PkgInfo
export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library
export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
export PLATFORM_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform
export PLATFORM_DISPLAY_NAME="iOS Simulator"
export PLATFORM_NAME=iphonesimulator
export PLATFORM_PREFERRED_ARCH=x86_64
export PLATFORM_PRODUCT_BUILD_VERSION=10L177m
export PLIST_FILE_OUTPUT_FORMAT=binary
export PLUGINS_FOLDER_PATH=Runner.app/PlugIns
export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
export PRECOMP_DESTINATION_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
export PREVIEW_DART_2=true
export PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders
export PRODUCT_BUNDLE_IDENTIFIER=com.example.aaa
export PRODUCT_MODULE_NAME=Runner
export PRODUCT_NAME=Runner
export PRODUCT_SETTINGS_PATH=/Users/luc/Desktop/aaa/ios/Runner/Info.plist
export PRODUCT_TYPE=com.apple.product-type.application
export PROFILING_CODE=NO
export PROJECT=Runner
export PROJECT_DERIVED_FILE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/DerivedSources
export PROJECT_DIR=/Users/luc/Desktop/aaa/ios
export PROJECT_FILE_PATH=/Users/luc/Desktop/aaa/ios/Runner.xcodeproj
export PROJECT_NAME=Runner
export PROJECT_TEMP_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build
export PROJECT_TEMP_ROOT=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex
export PUBLIC_HEADERS_FOLDER_PATH=Runner.app/Headers
export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
export REMOVE_CVS_FROM_RESOURCES=YES
export REMOVE_GIT_FROM_RESOURCES=YES
export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
export REMOVE_HG_FROM_RESOURCES=YES
export REMOVE_SVN_FROM_RESOURCES=YES
export REZ_COLLECTOR_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
export REZ_OBJECTS_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
export REZ_SEARCH_PATHS="/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator "
export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
export SCRIPTS_FOLDER_PATH=Runner.app/Scripts
export SCRIPT_INPUT_FILE_COUNT=0
export SCRIPT_INPUT_FILE_LIST_COUNT=0
export SCRIPT_OUTPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_FILE_LIST_COUNT=0
export SDKROOT=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
export SDK_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
export SDK_DIR_iphonesimulator12_0=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
export SDK_NAME=iphonesimulator12.0
export SDK_NAMES=iphonesimulator12.0
export SDK_PRODUCT_BUILD_VERSION=16A5308d
export SDK_VERSION=12.0
export SDK_VERSION_ACTUAL=120000
export SDK_VERSION_MAJOR=120000
export SDK_VERSION_MINOR=000
export SED=/usr/bin/sed
export SEPARATE_STRIP=NO
export SEPARATE_SYMBOL_EDIT=NO
export SET_DIR_MODE_OWNER_GROUP=YES
export SET_FILE_MODE_OWNER_GROUP=NO
export SHALLOW_BUNDLE=YES
export SHARED_DERIVED_FILE_DIR=/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/DerivedSources
export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks
export SHARED_PRECOMPS_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/PrecompiledHeaders
export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport
export SKIP_INSTALL=NO
export SOURCE_ROOT=/Users/luc/Desktop/aaa/ios
export SRCROOT=/Users/luc/Desktop/aaa/ios
export STRINGS_FILE_OUTPUT_ENCODING=binary
export STRIP_BITCODE_FROM_COPIED_FILES=NO
export STRIP_INSTALLED_PRODUCT=YES
export STRIP_STYLE=all
export STRIP_SWIFT_SYMBOLS=YES
export SUPPORTED_DEVICE_FAMILIES=1,2
export SUPPORTED_PLATFORMS="iphoneos iphonesimulator"
export SUPPORTS_TEXT_BASED_API=NO
export SWIFT_PLATFORM_TARGET_PREFIX=ios
export SYMROOT=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Products
export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
export SYSTEM_APPS_DIR=/Applications
export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
export SYSTEM_DEMOS_DIR=/Applications/Extras
export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode-beta.app/Contents/Developer/Applications
export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode-beta.app/Contents/Developer/usr/bin
export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode-beta.app/Contents/Developer/Applications/Utilities/Built Examples"
export SYSTEM_DEVELOPER_DIR=/Applications/Xcode-beta.app/Contents/Developer
export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library"
export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode-beta.app/Contents/Developer/Applications/Graphics Tools"
export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode-beta.app/Contents/Developer/Applications/Java Tools"
export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode-beta.app/Contents/Developer/Applications/Performance Tools"
export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/releasenotes"
export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode-beta.app/Contents/Developer/Tools
export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode-beta.app/Contents/Developer/usr
export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode-beta.app/Contents/Developer/Applications/Utilities
export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
export SYSTEM_LIBRARY_DIR=/System/Library
export TAPI_VERIFY_MODE=ErrorsOnly
export TARGETED_DEVICE_FAMILY=1,2
export TARGETNAME=Runner
export TARGET_BUILD_DIR=/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator
export TARGET_DEVICE_IDENTIFIER=dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder
export TARGET_NAME=Runner
export TARGET_TEMP_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILES_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_ROOT=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex
export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
export TOOLCHAIN_DIR=/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
export TeamIdentifierPrefix=R43TF5K24Y.
export UID=501
export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app
export UNSTRIPPED_PRODUCT=NO
export USER=luc
export USER_APPS_DIR=/Users/luc/Applications
export USER_LIBRARY_DIR=/Users/luc/Library
export USE_DYNAMIC_NO_PIC=YES
export USE_HEADERMAP=YES
export USE_HEADER_SYMLINKS=NO
export VALIDATE_PRODUCT=NO
export VALID_ARCHS="i386 x86_64"
export VERBOSE_PBXCP=NO
export VERBOSE_SCRIPT_LOGGING=YES
export VERSIONING_SYSTEM=apple-generic
export VERSIONPLIST_PATH=Runner.app/version.plist
export VERSION_INFO_BUILDER=luc
export VERSION_INFO_FILE=Runner_vers.c
export VERSION_INFO_STRING=""@(#)PROGRAM:Runner PROJECT:Runner-1""
export WRAPPER_EXTENSION=app
export WRAPPER_NAME=Runner.app
export WRAPPER_SUFFIX=.app
export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO
export XCODE_APP_SUPPORT_DIR=/Applications/Xcode-beta.app/Contents/Developer/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION=10L177m
export XCODE_VERSION_ACTUAL=1000
export XCODE_VERSION_MAJOR=1000
export XCODE_VERSION_MINOR=1000
export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices
export YACC=yacc
export arch=undefined_arch
export variant=normal
/bin/sh -c /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh
♦ mkdir -p -- /Users/luc/Desktop/aaa/ios/Flutter
♦ rm -rf -- /Users/luc/Desktop/aaa/ios/Flutter/Flutter.framework
♦ rm -rf -- /Users/luc/Desktop/aaa/ios/Flutter/App.framework
♦ cp -r -- /Users/luc/Development/flutter/bin/cache/artifacts/engine/ios/Flutter.framework /Users/luc/Desktop/aaa/ios/Flutter
♦ find /Users/luc/Desktop/aaa/ios/Flutter/Flutter.framework -type f -exec chmod a-w {} ;
♦ mkdir -p -- /Users/luc/Desktop/aaa/ios/Flutter/App.framework
♦ eval
♦ cp -- /Users/luc/Desktop/aaa/ios/Flutter/AppFrameworkInfo.plist /Users/luc/Desktop/aaa/ios/Flutter/App.framework/Info.plist
♦ /Users/luc/Development/flutter/bin/flutter --suppress-analytics --verbose build bundle --target=/Users/luc/Desktop/aaa/lib/main.dart --snapshot=build/snapshot_blob.bin --depfile=build/snapshot_blob.bin.d --asset-dir=/Users/luc/Desktop/aaa/ios/Flutter/flutter_assets --preview-dart-2
[ +8 ms] [/Users/luc/Development/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +42 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/beta
[ ] [/Users/luc/Development/flutter/] git rev-parse --abbrev-ref HEAD
[ +8 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] beta
[ ] [/Users/luc/Development/flutter/] git ls-remote --get-url origin
[ +7 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] [/Users/luc/Development/flutter/] git log -n 1 --pretty=format:%H
[ +11 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] c7ea3ca377e909469c68f2ab878a5bc53d3cf66b
[ ] [/Users/luc/Development/flutter/] git log -n 1 --pretty=format:%ar
[ +13 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 8 weeks ago
[ +1 ms] [/Users/luc/Development/flutter/] git describe --match v*.*.* --first-parent --long --tags
[ +16 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.5.1-0-gc7ea3ca37
[ +531 ms] Skipping kernel compilation. Fingerprint match.
[ +211 ms] Building bundle
[ +1 ms] Writing asset files to /Users/luc/Desktop/aaa/ios/Flutter/flutter_assets
[ +48 ms] Wrote /Users/luc/Desktop/aaa/ios/Flutter/flutter_assets
[ +8 ms] "flutter bundle" took 648ms.
Project /Users/luc/Desktop/aaa built and packaged successfully.
CompileC /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.o /Users/luc/Desktop/aaa/ios/Runner/main.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target: Runner)
cd /Users/luc/Desktop/aaa/ios
export LANG=en_US.US-ASCII
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Index/DataStore -iquote /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/include -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator -F/Users/luc/Desktop/aaa/ios/Flutter -MMD -MT dependencies -MF /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.d --serialize-diagnostics /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.dia -c /Users/luc/Desktop/aaa/ios/Runner/main.m -o /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.o
CompileC /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o /Users/luc/Desktop/aaa/ios/Runner/AppDelegate.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target: Runner)
cd /Users/luc/Desktop/aaa/ios
export LANG=en_US.US-ASCII
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Index/DataStore -iquote /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/include -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator -F/Users/luc/Desktop/aaa/ios/Flutter -MMD -MT dependencies -MF /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.d --serialize-diagnostics /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.dia -c /Users/luc/Desktop/aaa/ios/Runner/AppDelegate.m -o /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o
While building module 'Flutter' imported from /Users/luc/Desktop/aaa/ios/Runner/AppDelegate.h:1:
In file included from <module-includes>:1:
In file included from /Users/luc/Desktop/aaa/ios/Flutter/Flutter.framework/Headers/Flutter.h:37:
In file included from /Users/luc/Desktop/aaa/ios/Flutter/Flutter.framework/Headers/FlutterAppDelegate.h:11:
/Users/luc/Desktop/aaa/ios/Flutter/Flutter.framework/Headers/FlutterPlugin.h:140:58: warning: this block declaration is not a prototype [-Wstrict-prototypes]
completionHandler:(nonnull void (^)())completionHandler;
^
void
1 warning generated.
1 warning generated.
CompileC /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o /Users/luc/Desktop/aaa/ios/Runner/GeneratedPluginRegistrant.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target: Runner)
cd /Users/luc/Desktop/aaa/ios
export LANG=en_US.US-ASCII
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Index/DataStore -iquote /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/include -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator -F/Users/luc/Desktop/aaa/ios/Flutter -MMD -MT dependencies -MF /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.d --serialize-diagnostics /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.dia -c /Users/luc/Desktop/aaa/ios/Runner/GeneratedPluginRegistrant.m -o /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o
Ld /Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/Runner.app/Runner normal x86_64 (in target: Runner)
cd /Users/luc/Desktop/aaa/ios
export IPHONEOS_DEPLOYMENT_TARGET=8.0
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk -L/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator -L/Users/luc/Desktop/aaa/ios/Flutter -F/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator -F/Users/luc/Desktop/aaa/ios/Flutter -filelist /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -mios-simulator-version-min=8.0 -dead_strip -Xlinker -object_path_lto -Xlinker /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __entitlements -Xlinker /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent -framework Flutter -framework App -Xlinker -dependency_info -Xlinker /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat -o /Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/Runner.app/Runner
ld: framework not found Flutter
clang:
error: linker command failed with exit code 1 (use -v to see invocation)
** BUILD FAILED **
The following build commands failed:
Ld /Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/Runner.app/Runner normal x86_64
(1 failure)
[ +12 ms] Xcode build done.
[ ] [ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/luc/Desktop/aaa/build/ios -sdk iphonesimulator -arch x86_64 -showBuildSettings
[+1357 ms] Exit code 0 from: /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/luc/Desktop/aaa/build/ios -sdk iphonesimulator -arch x86_64 -showBuildSettings
[ ] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/luc/Desktop/aaa/build/ios
SDKROOT = iphonesimulator12.0
VERBOSE_SCRIPT_LOGGING = YES
Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = YES
ALTERNATE_GROUP = staff
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = luc
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = NO
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
APPLE_INTERNAL_DIR = /AppleInternal
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
APPLICATION_EXTENSION_API_ONLY = NO
APPLY_RULES_IN_COPY_FILES = NO
ARCHS = x86_64
ARCHS_STANDARD = i386 x86_64
ARCHS_STANDARD_32_64_BIT = i386 x86_64
ARCHS_STANDARD_32_BIT = i386
ARCHS_STANDARD_64_BIT = x86_64
ARCHS_STANDARD_INCLUDING_64_BIT = i386 x86_64
ARCHS_UNIVERSAL_IPHONE_OS = i386 x86_64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
BITCODE_GENERATION_MODE = marker
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = /Users/luc/Desktop/aaa/build/ios
BUILD_ROOT = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Products
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator
CACHE_ROOT = /var/folders/c8/c5mpn8152_bf0bxjmbx_j31h0000gn/C/com.apple.DeveloperTools/10.0-10L177m/Xcode
CCHROOT = /var/folders/c8/c5mpn8152_bf0bxjmbx_j31h0000gn/C/com.apple.DeveloperTools/10.0-10L177m/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/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/Runner.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_CONTEXT_CLASS = XCiPhoneSimulatorCodeSignContext
CODE_SIGN_IDENTITY = -
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = NO
COMPILER_INDEX_STORE_ENABLE = Default
COMPOSITE_SDK_DIRS = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Debug
CONFIGURATION_BUILD_DIR = /Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator
CONFIGURATION_TEMP_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
CONTENTS_FOLDER_PATH = Runner.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_DEVICE_PLATFORM_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform
CORRESPONDING_DEVICE_PLATFORM_NAME = iphoneos
CORRESPONDING_DEVICE_SDK_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
CORRESPONDING_DEVICE_SDK_NAME = iphoneos12.0
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = x86_64
CURRENT_PROJECT_VERSION = 1
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = mios-simulator-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -mios-simulator-version-min=
DEPLOYMENT_TARGET_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_simulator_version_min
DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0
DERIVED_FILES_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode-beta.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode-beta.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode-beta.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode-beta.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode-beta.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = English
DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode-beta.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/luc/Desktop/aaa/build/ios/Debug-iphonesimulator
EFFECTIVE_PLATFORM_NAME = -iphonesimulator
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = YES
ENTITLEMENTS_DESTINATION = __entitlements
ENTITLEMENTS_REQUIRED = YES
EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
EXECUTABLES_FOLDER_PATH = Runner.app/Executables
EXECUTABLE_FOLDER_PATH = Runner.app
EXECUTABLE_NAME = Runner
EXECUTABLE_PATH = Runner.app/Runner
EXPANDED_CODE_SIGN_IDENTITY =
EXPANDED_CODE_SIGN_IDENTITY_NAME =
EXPANDED_PROVISIONING_PROFILE =
FILE_LIST = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/luc/Desktop/aaa
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_MODE = debug
FLUTTER_FRAMEWORK_DIR = /Users/luc/Development/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/luc/Development/flutter
FLUTTER_TARGET = /Users/luc/Desktop/aaa/lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = /Users/luc/Desktop/aaa/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_DYNAMIC_NO_PIC = NO
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_OBJC_LEGACY_DISPATCH = YES
GCC_OPTIMIZATION_LEVEL = 0
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1
GCC_SYMBOLS_PRIVATE_EXTERN = NO
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 20
GROUP = staff
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/luc
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 = luc
INSTALL_PATH = /Applications
INSTALL_ROOT = /tmp/Runner.dst
IPHONEOS_DEPLOYMENT_TARGET = 8.0
JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
JAVA_ARCHIVE_CLASSES = YES
JAVA_ARCHIVE_TYPE = JAR
JAVA_COMPILER = /usr/bin/javac
JAVA_FOLDER_PATH = Runner.app/Java
JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
JAVA_JAR_FLAGS = cv
JAVA_SOURCE_SUBDIR = .
JAVA_USE_DEPENDENCIES = YES
JAVA_ZIP_FLAGS = -urg
JIKES_DEFAULT_FLAGS = +E +OLDCSO
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode-beta.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/luc/Desktop/aaa/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_x86_64 =
LINK_WITH_STANDARD_LIBRARIES = YES
LLVM_TARGET_TRIPLE_SUFFIX = -simulator
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj
LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 18A336e
MAC_OS_X_VERSION_ACTUAL = 101400
MAC_OS_X_VERSION_MAJOR = 101400
MAC_OS_X_VERSION_MINOR = 1400
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = /Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/Runner.app
MODULE_CACHE_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
MTL_ENABLE_DEBUG_INFO = YES
NATIVE_ARCH = i386
NATIVE_ARCH_32_BIT = i386
NATIVE_ARCH_64_BIT = x86_64
NATIVE_ARCH_ACTUAL = x86_64
NO_COMMON = YES
OBJC_ABI_VERSION = 2
OBJECT_FILE_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
OBJROOT = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex
ONLY_ACTIVE_ARCH = YES
OS = MACOS
OSAC = /usr/bin/osacompile
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode-beta.app/Contents/Developer/usr/bin:/usr/local/bin:/Users/luc/Development/flutter/bin:/Users/luc/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin
PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode-beta.app/Contents/Developer/Headers /Applications/Xcode-beta.app/Contents/Developer/SDKs /Applications/Xcode-beta.app/Contents/Developer/Platforms
PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist
PFE_FILE_C_DIALECTS = objective-c
PKGINFO_FILE_PATH = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode-beta.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform
PLATFORM_DISPLAY_NAME = iOS Simulator
PLATFORM_NAME = iphonesimulator
PLATFORM_PREFERRED_ARCH = x86_64
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PREVIEW_DART_2 = true
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = com.example.aaa
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = /Users/luc/Desktop/aaa/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/DerivedSources
PROJECT_DIR = /Users/luc/Desktop/aaa/ios
PROJECT_FILE_PATH = /Users/luc/Desktop/aaa/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build
PROJECT_TEMP_ROOT = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex
PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
REMOVE_CVS_FROM_RESOURCES = YES
REMOVE_GIT_FROM_RESOURCES = YES
REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
REMOVE_HG_FROM_RESOURCES = YES
REMOVE_SVN_FROM_RESOURCES = YES
REZ_COLLECTOR_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SDKROOT = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
SDK_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
SDK_DIR_iphonesimulator12_0 = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
SDK_NAME = iphonesimulator12.0
SDK_NAMES = iphonesimulator12.0
SDK_PRODUCT_BUILD_VERSION = 16A5308d
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/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/PrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/luc/Desktop/aaa/ios
SRCROOT = /Users/luc/Desktop/aaa/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = NO
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphonesimulator iphoneos
SUPPORTS_TEXT_BASED_API = NO
SWIFT_PLATFORM_TARGET_PREFIX = ios
SYMROOT = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/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-beta.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode-beta.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode-beta.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode-beta.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode-beta.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode-beta.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/luc/Desktop/aaa/build/ios/Debug-iphonesimulator
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_FILES_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_FILE_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_ROOT = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex
TOOLCHAIN_DIR = /Applications/Xcode-beta.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 = luc
USER_APPS_DIR = /Users/luc/Applications
USER_LIBRARY_DIR = /Users/luc/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
VALIDATE_PRODUCT = NO
VALID_ARCHS = i386 x86_64
VERBOSE_PBXCP = NO
VERBOSE_SCRIPT_LOGGING = YES
VERSIONING_SYSTEM = apple-generic
VERSIONPLIST_PATH = Runner.app/version.plist
VERSION_INFO_BUILDER = luc
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-beta.app/Contents/Developer/Library/Xcode
XCODE_PRODUCT_BUILD_VERSION = 10L177m
XCODE_VERSION_ACTUAL = 1000
XCODE_VERSION_MAJOR = 1000
XCODE_VERSION_MINOR = 1000
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = x86_64
variant = normal
[ +1 ms] Failed to build iOS app
[ ] Error output from Xcode build:
↳
[ ] ** BUILD FAILED **
The following build commands failed:
Ld /Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/Runner.app/Runner normal x86_64
(1 failure)
[ ] Xcode's output:
↳
[ ] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/luc/Desktop/aaa/build/ios
SDKROOT = iphonesimulator12.0
VERBOSE_SCRIPT_LOGGING = YES
note: Using new build system
note: Planning build
note: Constructing build description
ProcessProductPackaging "" /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent (in target: Runner)
cd /Users/luc/Desktop/aaa/ios
Entitlements:
{
"application-identifier" = "R43TF5K24Y.com.example.aaa";
"keychain-access-groups" = (
"R43TF5K24Y.com.example.aaa"
);
}
builtin-productPackagingUtility -entitlements -format xml -o /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent
ProcessProductPackaging "" /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent (in target: Runner)
cd /Users/luc/Desktop/aaa/ios
Entitlements:
{
"com.apple.security.get-task-allow" = 1;
}
builtin-productPackagingUtility -entitlements -format xml -o /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent
PhaseScriptExecution Run\ Script /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh (in target: Runner)
cd /Users/luc/Desktop/aaa/ios
export ACTION=build
export AD_HOC_CODE_SIGNING_ALLOWED=YES
export ALTERNATE_GROUP=staff
export ALTERNATE_MODE=u+w,go-w,a+rX
export ALTERNATE_OWNER=luc
export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO
export ALWAYS_SEARCH_USER_PATHS=NO
export ALWAYS_USE_SEPARATE_HEADERMAPS=NO
export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
export APPLE_INTERNAL_DIR=/AppleInternal
export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
export APPLICATION_EXTENSION_API_ONLY=NO
export APPLY_RULES_IN_COPY_FILES=NO
export ARCHS=x86_64
export ARCHS_STANDARD="i386 x86_64"
export ARCHS_STANDARD_32_64_BIT="i386 x86_64"
export ARCHS_STANDARD_32_BIT=i386
export ARCHS_STANDARD_64_BIT=x86_64
export ARCHS_STANDARD_INCLUDING_64_BIT="i386 x86_64"
export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64"
export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
export AppIdentifierPrefix=R43TF5K24Y.
export BITCODE_GENERATION_MODE=marker
export BUILD_ACTIVE_RESOURCES_ONLY=YES
export BUILD_COMPONENTS="headers build"
export BUILD_DIR=/Users/luc/Desktop/aaa/build/ios
export BUILD_ROOT=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Products
export BUILD_STYLE=
export BUILD_VARIANTS=normal
export BUILT_PRODUCTS_DIR=/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator
export CACHE_ROOT=/var/folders/c8/c5mpn8152_bf0bxjmbx_j31h0000gn/C/com.apple.DeveloperTools/10.0-10L177m/Xcode
export CCHROOT=/var/folders/c8/c5mpn8152_bf0bxjmbx_j31h0000gn/C/com.apple.DeveloperTools/10.0-10L177m/Xcode
export CHMOD=/bin/chmod
export CHOWN=/usr/sbin/chown
export CLANG_ANALYZER_NONNULL=YES
export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x
export CLANG_CXX_LIBRARY=libc++
export CLANG_ENABLE_MODULES=YES
export CLANG_ENABLE_OBJC_ARC=YES
export CLANG_MODULES_BUILD_SESSION_FILE=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES
export CLANG_WARN_BOOL_CONVERSION=YES
export CLANG_WARN_COMMA=YES
export CLANG_WARN_CONSTANT_CONVERSION=YES
export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
export CLANG_WARN_EMPTY_BODY=YES
export CLANG_WARN_ENUM_CONVERSION=YES
export CLANG_WARN_INFINITE_RECURSION=YES
export CLANG_WARN_INT_CONVERSION=YES
export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES
export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES
export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES
export CLANG_WARN_STRICT_PROTOTYPES=YES
export CLANG_WARN_SUSPICIOUS_MOVE=YES
export CLANG_WARN_UNREACHABLE_CODE=YES
export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
export CLASS_FILE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
export CLEAN_PRECOMPS=YES
export CLONE_HEADERS=NO
export CODESIGNING_FOLDER_PATH=/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/Runner.app
export CODE_SIGNING_ALLOWED=YES
export CODE_SIGNING_REQUIRED=YES
export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext
export CODE_SIGN_IDENTITY=-
export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES
export COLOR_DIAGNOSTICS=NO
export COMBINE_HIDPI_IMAGES=NO
export COMPILER_INDEX_STORE_ENABLE=Default
export COMPOSITE_SDK_DIRS=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/CompositeSDKs
export COMPRESS_PNG_FILES=YES
export CONFIGURATION=Debug
export CONFIGURATION_BUILD_DIR=/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator
export CONFIGURATION_TEMP_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
export CONTENTS_FOLDER_PATH=Runner.app
export COPYING_PRESERVES_HFS_DATA=NO
export COPY_HEADERS_RUN_UNIFDEF=NO
export COPY_PHASE_STRIP=NO
export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform
export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
export CORRESPONDING_DEVICE_SDK_NAME=iphoneos12.0
export CP=/bin/cp
export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
export CURRENT_ARCH=undefined_arch
export CURRENT_PROJECT_VERSION=1
export CURRENT_VARIANT=normal
export DEAD_CODE_STRIPPING=YES
export DEBUGGING_SYMBOLS=YES
export DEBUG_INFORMATION_FORMAT=dwarf
export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions
export DEFINES_MODULE=NO
export DEPLOYMENT_LOCATION=NO
export DEPLOYMENT_POSTPROCESSING=NO
export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min
export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min=
export DEPLOYMENT_TARGET_LD_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_LD_FLAG_NAME=ios_simulator_version_min
export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0"
export DERIVED_FILES_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_FILE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_SOURCES_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode-beta.app/Contents/Developer/Applications
export DEVELOPER_BIN_DIR=/Applications/Xcode-beta.app/Contents/Developer/usr/bin
export DEVELOPER_DIR=/Applications/Xcode-beta.app/Contents/Developer
export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode-beta.app/Contents/Developer/Library/Frameworks
export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode-beta.app/Contents/Developer/Library/Frameworks
export DEVELOPER_LIBRARY_DIR=/Applications/Xcode-beta.app/Contents/Developer/Library
export DEVELOPER_SDK_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
export DEVELOPER_TOOLS_DIR=/Applications/Xcode-beta.app/Contents/Developer/Tools
export DEVELOPER_USR_DIR=/Applications/Xcode-beta.app/Contents/Developer/usr
export DEVELOPMENT_LANGUAGE=English
export DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Documentation
export DO_HEADER_SCANNING_IN_JAM=NO
export DSTROOT=/tmp/Runner.dst
export DT_TOOLCHAIN_DIR=/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export DWARF_DSYM_FILE_NAME=Runner.app.dSYM
export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
export DWARF_DSYM_FOLDER_PATH=/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator
export EFFECTIVE_PLATFORM_NAME=-iphonesimulator
export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
export ENABLE_BITCODE=NO
export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
export ENABLE_HEADER_DEPENDENCIES=YES
export ENABLE_ON_DEMAND_RESOURCES=YES
export ENABLE_STRICT_OBJC_MSGSEND=YES
export ENABLE_TESTABILITY=YES
export ENTITLEMENTS_DESTINATION=__entitlements
export ENTITLEMENTS_REQUIRED=YES
export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj"
export EXECUTABLES_FOLDER_PATH=Runner.app/Executables
export EXECUTABLE_FOLDER_PATH=Runner.app
export EXECUTABLE_NAME=Runner
export EXECUTABLE_PATH=Runner.app/Runner
export EXPANDED_CODE_SIGN_IDENTITY=-
export EXPANDED_CODE_SIGN_IDENTITY_NAME=-
export FILE_LIST=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
export FIXED_FILES_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
export FLUTTER_APPLICATION_PATH=/Users/luc/Desktop/aaa
export FLUTTER_BUILD_DIR=build
export FLUTTER_BUILD_MODE=debug
export FLUTTER_FRAMEWORK_DIR=/Users/luc/Development/flutter/bin/cache/artifacts/engine/ios
export FLUTTER_ROOT=/Users/luc/Development/flutter
export FLUTTER_TARGET=/Users/luc/Desktop/aaa/lib/main.dart
export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks
export FRAMEWORK_FLAG_PREFIX=-framework
export FRAMEWORK_SEARCH_PATHS="/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator /Users/luc/Desktop/aaa/ios/Flutter"
export FRAMEWORK_VERSION=A
export FULL_PRODUCT_NAME=Runner.app
export GCC3_VERSION=3.3
export GCC_C_LANGUAGE_STANDARD=gnu99
export GCC_DYNAMIC_NO_PIC=NO
export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
export GCC_NO_COMMON_BLOCKS=YES
export GCC_OBJC_LEGACY_DISPATCH=YES
export GCC_OPTIMIZATION_LEVEL=0
export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++"
export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 "
export GCC_SYMBOLS_PRIVATE_EXTERN=NO
export GCC_TREAT_WARNINGS_AS_ERRORS=NO
export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
export GCC_WARN_UNDECLARED_SELECTOR=YES
export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
export GCC_WARN_UNUSED_FUNCTION=YES
export GCC_WARN_UNUSED_VARIABLE=YES
export GENERATE_MASTER_OBJECT_FILE=NO
export GENERATE_PKGINFO_FILE=YES
export GENERATE_PROFILING_CODE=NO
export GENERATE_TEXT_BASED_STUBS=NO
export GID=20
export GROUP=staff
export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
export HEADERMAP_USES_VFS=NO
export HEADER_SEARCH_PATHS="/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/include "
export HIDE_BITCODE_SYMBOLS=YES
export HOME=/Users/luc
export ICONV=/usr/bin/iconv
export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
export INFOPLIST_FILE=Runner/Info.plist
export INFOPLIST_OUTPUT_FORMAT=binary
export INFOPLIST_PATH=Runner.app/Info.plist
export INFOPLIST_PREPROCESS=NO
export INFOSTRINGS_PATH=Runner.app/English.lproj/InfoPlist.strings
export INLINE_PRIVATE_FRAMEWORKS=NO
export INSTALLHDRS_COPY_PHASE=NO
export INSTALLHDRS_SCRIPT_PHASE=NO
export INSTALL_DIR=/tmp/Runner.dst/Applications
export INSTALL_GROUP=staff
export INSTALL_MODE_FLAG=u+w,go-w,a+rX
export INSTALL_OWNER=luc
export INSTALL_PATH=/Applications
export INSTALL_ROOT=/tmp/Runner.dst
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
export JAVA_ARCHIVE_CLASSES=YES
export JAVA_ARCHIVE_TYPE=JAR
export JAVA_COMPILER=/usr/bin/javac
export JAVA_FOLDER_PATH=Runner.app/Java
export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
export JAVA_JAR_FLAGS=cv
export JAVA_SOURCE_SUBDIR=.
export JAVA_USE_DEPENDENCIES=YES
export JAVA_ZIP_FLAGS=-urg
export JIKES_DEFAULT_FLAGS="+E +OLDCSO"
export KEEP_PRIVATE_EXTERNS=NO
export LD_DEPENDENCY_INFO_FILE=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat
export LD_ENTITLEMENTS_SECTION=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent
export LD_GENERATE_MAP_FILE=NO
export LD_MAP_FILE_PATH=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-undefined_arch.txt
export LD_NO_PIE=NO
export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
export LD_RUNPATH_SEARCH_PATHS=" @executable_path/Frameworks"
export LEGACY_DEVELOPER_DIR=/Applications/Xcode-beta.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
export LEX=lex
export LIBRARY_FLAG_NOSPACE=YES
export LIBRARY_FLAG_PREFIX=-l
export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
export LIBRARY_SEARCH_PATHS="/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator /Users/luc/Desktop/aaa/ios/Flutter"
export LINKER_DISPLAYS_MANGLED_NAMES=NO
export LINK_FILE_LIST_normal_x86_64=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList
export LINK_WITH_STANDARD_LIBRARIES=YES
export LLVM_TARGET_TRIPLE_SUFFIX=-simulator
export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/English.lproj
export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFLocalizedString"
export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
export LOCAL_APPS_DIR=/Applications
export LOCAL_DEVELOPER_DIR=/Library/Developer
export LOCAL_LIBRARY_DIR=/Library
export LOCROOT=/Users/luc/Desktop/aaa/ios
export LOCSYMROOT=/Users/luc/Desktop/aaa/ios
export MACH_O_TYPE=mh_execute
export MAC_OS_X_PRODUCT_BUILD_VERSION=18A336e
export MAC_OS_X_VERSION_ACTUAL=101400
export MAC_OS_X_VERSION_MAJOR=101400
export MAC_OS_X_VERSION_MINOR=1400
export METAL_LIBRARY_FILE_BASE=default
export METAL_LIBRARY_OUTPUT_DIR=/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/Runner.app
export MODULE_CACHE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
export MTL_ENABLE_DEBUG_INFO=YES
export NATIVE_ARCH=i386
export NATIVE_ARCH_32_BIT=i386
export NATIVE_ARCH_64_BIT=x86_64
export NATIVE_ARCH_ACTUAL=x86_64
export NO_COMMON=YES
export OBJC_ABI_VERSION=2
export OBJECT_FILE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
export OBJECT_FILE_DIR_normal=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
export OBJROOT=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex
export ONLY_ACTIVE_ARCH=YES
export OS=MACOS
export OSAC=/usr/bin/osacompile
export PACKAGE_TYPE=com.apple.package-type.wrapper.application
export PASCAL_STRINGS=YES
export PATH=/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode-beta.app/Contents/Developer/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/usr/local/bin:/usr/local/bin:/Users/luc/Development/flutter/bin:/Users/luc/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin
export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode-beta.app/Contents/Developer/Headers /Applications/Xcode-beta.app/Contents/Developer/SDKs /Applications/Xcode-beta.app/Contents/Developer/Platforms"
export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist
export PER_ARCH_OBJECT_FILE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch
export PER_VARIANT_OBJECT_FILE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
export PKGINFO_FILE_PATH=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
export PKGINFO_PATH=Runner.app/PkgInfo
export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library
export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
export PLATFORM_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform
export PLATFORM_DISPLAY_NAME="iOS Simulator"
export PLATFORM_NAME=iphonesimulator
export PLATFORM_PREFERRED_ARCH=x86_64
export PLATFORM_PRODUCT_BUILD_VERSION=10L177m
export PLIST_FILE_OUTPUT_FORMAT=binary
export PLUGINS_FOLDER_PATH=Runner.app/PlugIns
export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
export PRECOMP_DESTINATION_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
export PREVIEW_DART_2=true
export PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders
export PRODUCT_BUNDLE_IDENTIFIER=com.example.aaa
export PRODUCT_MODULE_NAME=Runner
export PRODUCT_NAME=Runner
export PRODUCT_SETTINGS_PATH=/Users/luc/Desktop/aaa/ios/Runner/Info.plist
export PRODUCT_TYPE=com.apple.product-type.application
export PROFILING_CODE=NO
export PROJECT=Runner
export PROJECT_DERIVED_FILE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/DerivedSources
export PROJECT_DIR=/Users/luc/Desktop/aaa/ios
export PROJECT_FILE_PATH=/Users/luc/Desktop/aaa/ios/Runner.xcodeproj
export PROJECT_NAME=Runner
export PROJECT_TEMP_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build
export PROJECT_TEMP_ROOT=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex
export PUBLIC_HEADERS_FOLDER_PATH=Runner.app/Headers
export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
export REMOVE_CVS_FROM_RESOURCES=YES
export REMOVE_GIT_FROM_RESOURCES=YES
export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
export REMOVE_HG_FROM_RESOURCES=YES
export REMOVE_SVN_FROM_RESOURCES=YES
export REZ_COLLECTOR_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
export REZ_OBJECTS_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
export REZ_SEARCH_PATHS="/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator "
export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
export SCRIPTS_FOLDER_PATH=Runner.app/Scripts
export SCRIPT_INPUT_FILE_COUNT=0
export SCRIPT_INPUT_FILE_LIST_COUNT=0
export SCRIPT_OUTPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_FILE_LIST_COUNT=0
export SDKROOT=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
export SDK_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
export SDK_DIR_iphonesimulator12_0=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
export SDK_NAME=iphonesimulator12.0
export SDK_NAMES=iphonesimulator12.0
export SDK_PRODUCT_BUILD_VERSION=16A5308d
export SDK_VERSION=12.0
export SDK_VERSION_ACTUAL=120000
export SDK_VERSION_MAJOR=120000
export SDK_VERSION_MINOR=000
export SED=/usr/bin/sed
export SEPARATE_STRIP=NO
export SEPARATE_SYMBOL_EDIT=NO
export SET_DIR_MODE_OWNER_GROUP=YES
export SET_FILE_MODE_OWNER_GROUP=NO
export SHALLOW_BUNDLE=YES
export SHARED_DERIVED_FILE_DIR=/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/DerivedSources
export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks
export SHARED_PRECOMPS_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/PrecompiledHeaders
export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport
export SKIP_INSTALL=NO
export SOURCE_ROOT=/Users/luc/Desktop/aaa/ios
export SRCROOT=/Users/luc/Desktop/aaa/ios
export STRINGS_FILE_OUTPUT_ENCODING=binary
export STRIP_BITCODE_FROM_COPIED_FILES=NO
export STRIP_INSTALLED_PRODUCT=YES
export STRIP_STYLE=all
export STRIP_SWIFT_SYMBOLS=YES
export SUPPORTED_DEVICE_FAMILIES=1,2
export SUPPORTED_PLATFORMS="iphoneos iphonesimulator"
export SUPPORTS_TEXT_BASED_API=NO
export SWIFT_PLATFORM_TARGET_PREFIX=ios
export SYMROOT=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Products
export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
export SYSTEM_APPS_DIR=/Applications
export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
export SYSTEM_DEMOS_DIR=/Applications/Extras
export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode-beta.app/Contents/Developer/Applications
export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode-beta.app/Contents/Developer/usr/bin
export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode-beta.app/Contents/Developer/Applications/Utilities/Built Examples"
export SYSTEM_DEVELOPER_DIR=/Applications/Xcode-beta.app/Contents/Developer
export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library"
export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode-beta.app/Contents/Developer/Applications/Graphics Tools"
export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode-beta.app/Contents/Developer/Applications/Java Tools"
export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode-beta.app/Contents/Developer/Applications/Performance Tools"
export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/releasenotes"
export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode-beta.app/Contents/Developer/Tools
export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode-beta.app/Contents/Developer/usr
export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode-beta.app/Contents/Developer/Applications/Utilities
export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
export SYSTEM_LIBRARY_DIR=/System/Library
export TAPI_VERIFY_MODE=ErrorsOnly
export TARGETED_DEVICE_FAMILY=1,2
export TARGETNAME=Runner
export TARGET_BUILD_DIR=/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator
export TARGET_DEVICE_IDENTIFIER=dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder
export TARGET_NAME=Runner
export TARGET_TEMP_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILES_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_ROOT=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex
export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
export TOOLCHAIN_DIR=/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
export TeamIdentifierPrefix=R43TF5K24Y.
export UID=501
export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app
export UNSTRIPPED_PRODUCT=NO
export USER=luc
export USER_APPS_DIR=/Users/luc/Applications
export USER_LIBRARY_DIR=/Users/luc/Library
export USE_DYNAMIC_NO_PIC=YES
export USE_HEADERMAP=YES
export USE_HEADER_SYMLINKS=NO
export VALIDATE_PRODUCT=NO
export VALID_ARCHS="i386 x86_64"
export VERBOSE_PBXCP=NO
export VERBOSE_SCRIPT_LOGGING=YES
export VERSIONING_SYSTEM=apple-generic
export VERSIONPLIST_PATH=Runner.app/version.plist
export VERSION_INFO_BUILDER=luc
export VERSION_INFO_FILE=Runner_vers.c
export VERSION_INFO_STRING=""@(#)PROGRAM:Runner PROJECT:Runner-1""
export WRAPPER_EXTENSION=app
export WRAPPER_NAME=Runner.app
export WRAPPER_SUFFIX=.app
export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO
export XCODE_APP_SUPPORT_DIR=/Applications/Xcode-beta.app/Contents/Developer/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION=10L177m
export XCODE_VERSION_ACTUAL=1000
export XCODE_VERSION_MAJOR=1000
export XCODE_VERSION_MINOR=1000
export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices
export YACC=yacc
export arch=undefined_arch
export variant=normal
/bin/sh -c /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh
♦ mkdir -p -- /Users/luc/Desktop/aaa/ios/Flutter
♦ rm -rf -- /Users/luc/Desktop/aaa/ios/Flutter/Flutter.framework
♦ rm -rf -- /Users/luc/Desktop/aaa/ios/Flutter/App.framework
♦ cp -r -- /Users/luc/Development/flutter/bin/cache/artifacts/engine/ios/Flutter.framework /Users/luc/Desktop/aaa/ios/Flutter
♦ find /Users/luc/Desktop/aaa/ios/Flutter/Flutter.framework -type f -exec chmod a-w {} ;
♦ mkdir -p -- /Users/luc/Desktop/aaa/ios/Flutter/App.framework
♦ eval
♦ cp -- /Users/luc/Desktop/aaa/ios/Flutter/AppFrameworkInfo.plist /Users/luc/Desktop/aaa/ios/Flutter/App.framework/Info.plist
♦ /Users/luc/Development/flutter/bin/flutter --suppress-analytics --verbose build bundle --target=/Users/luc/Desktop/aaa/lib/main.dart --snapshot=build/snapshot_blob.bin --depfile=build/snapshot_blob.bin.d --asset-dir=/Users/luc/Desktop/aaa/ios/Flutter/flutter_assets --preview-dart-2
[ +8 ms] [/Users/luc/Development/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +42 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/beta
[ ] [/Users/luc/Development/flutter/] git rev-parse --abbrev-ref HEAD
[ +8 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] beta
[ ] [/Users/luc/Development/flutter/] git ls-remote --get-url origin
[ +7 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] [/Users/luc/Development/flutter/] git log -n 1 --pretty=format:%H
[ +11 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] c7ea3ca377e909469c68f2ab878a5bc53d3cf66b
[ ] [/Users/luc/Development/flutter/] git log -n 1 --pretty=format:%ar
[ +13 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 8 weeks ago
[ +1 ms] [/Users/luc/Development/flutter/] git describe --match v*.*.* --first-parent --long --tags
[ +16 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.5.1-0-gc7ea3ca37
[ +531 ms] Skipping kernel compilation. Fingerprint match.
[ +211 ms] Building bundle
[ +1 ms] Writing asset files to /Users/luc/Desktop/aaa/ios/Flutter/flutter_assets
[ +48 ms] Wrote /Users/luc/Desktop/aaa/ios/Flutter/flutter_assets
[ +8 ms] "flutter bundle" took 648ms.
Project /Users/luc/Desktop/aaa built and packaged successfully.
CompileC /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.o /Users/luc/Desktop/aaa/ios/Runner/main.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target: Runner)
cd /Users/luc/Desktop/aaa/ios
export LANG=en_US.US-ASCII
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Index/DataStore -iquote /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/include -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator -F/Users/luc/Desktop/aaa/ios/Flutter -MMD -MT dependencies -MF /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.d --serialize-diagnostics /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.dia -c /Users/luc/Desktop/aaa/ios/Runner/main.m -o /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.o
CompileC /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o /Users/luc/Desktop/aaa/ios/Runner/AppDelegate.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target: Runner)
cd /Users/luc/Desktop/aaa/ios
export LANG=en_US.US-ASCII
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Index/DataStore -iquote /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/include -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator -F/Users/luc/Desktop/aaa/ios/Flutter -MMD -MT dependencies -MF /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.d --serialize-diagnostics /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.dia -c /Users/luc/Desktop/aaa/ios/Runner/AppDelegate.m -o /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o
While building module 'Flutter' imported from /Users/luc/Desktop/aaa/ios/Runner/AppDelegate.h:1:
In file included from <module-includes>:1:
In file included from /Users/luc/Desktop/aaa/ios/Flutter/Flutter.framework/Headers/Flutter.h:37:
In file included from /Users/luc/Desktop/aaa/ios/Flutter/Flutter.framework/Headers/FlutterAppDelegate.h:11:
/Users/luc/Desktop/aaa/ios/Flutter/Flutter.framework/Headers/FlutterPlugin.h:140:58: warning: this block declaration is not a prototype [-Wstrict-prototypes]
completionHandler:(nonnull void (^)())completionHandler;
^
void
1 warning generated.
1 warning generated.
CompileC /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o /Users/luc/Desktop/aaa/ios/Runner/GeneratedPluginRegistrant.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target: Runner)
cd /Users/luc/Desktop/aaa/ios
export LANG=en_US.US-ASCII
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Index/DataStore -iquote /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/include -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator -F/Users/luc/Desktop/aaa/ios/Flutter -MMD -MT dependencies -MF /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.d --serialize-diagnostics /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.dia -c /Users/luc/Desktop/aaa/ios/Runner/GeneratedPluginRegistrant.m -o /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o
Ld /Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/Runner.app/Runner normal x86_64 (in target: Runner)
cd /Users/luc/Desktop/aaa/ios
export IPHONEOS_DEPLOYMENT_TARGET=8.0
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk -L/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator -L/Users/luc/Desktop/aaa/ios/Flutter -F/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator -F/Users/luc/Desktop/aaa/ios/Flutter -filelist /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -mios-simulator-version-min=8.0 -dead_strip -Xlinker -object_path_lto -Xlinker /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __entitlements -Xlinker /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent -framework Flutter -framework App -Xlinker -dependency_info -Xlinker /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat -o /Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/Runner.app/Runner
ld: framework not found Flutter
clang:
error: linker command failed with exit code 1 (use -v to see invocation)
[ +3 ms] "flutter run" took 9 065ms."><pre class="notranslate"><code class="notranslate">[ +33 ms] [/Users/luc/Development/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +38 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/beta
[ ] [/Users/luc/Development/flutter/] git rev-parse --abbrev-ref HEAD
[ +10 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] beta
[ ] [/Users/luc/Development/flutter/] git ls-remote --get-url origin
[ +10 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] [/Users/luc/Development/flutter/] git log -n 1 --pretty=format:%H
[ +11 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] c7ea3ca377e909469c68f2ab878a5bc53d3cf66b
[ ] [/Users/luc/Development/flutter/] git log -n 1 --pretty=format:%ar
[ +12 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 8 weeks ago
[ ] [/Users/luc/Development/flutter/] git describe --match v*.*.* --first-parent --long --tags
[ +13 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.5.1-0-gc7ea3ca37
[ +367 ms] /Users/luc/Library/Android/sdk/platform-tools/adb devices -l
[ +7 ms] Exit code 0 from: /Users/luc/Library/Android/sdk/platform-tools/adb devices -l
[ ] List of devices attached
emulator-5554 device product:sdk_gphone_x86 model:Android_SDK_built_for_x86 device:generic_x86 transport_id:1
[ +9 ms] idevice_id -h
[ +163 ms] /usr/bin/xcrun simctl list --json devices
[ +895 ms] Launching lib/main.dart on iPhone X in debug mode...
[ +2 ms] /usr/bin/defaults read /Users/luc/Desktop/aaa/ios/Runner/Info CFBundleIdentifier
[ +60 ms] Exit code 0 from: /usr/bin/defaults read /Users/luc/Desktop/aaa/ios/Runner/Info CFBundleIdentifier
[ ] $(PRODUCT_BUNDLE_IDENTIFIER)
[ ] [ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/luc/Desktop/aaa/ios/Runner.xcodeproj -target Runner -showBuildSettings
[+1295 ms] Exit code 0 from: /usr/bin/xcodebuild -project /Users/luc/Desktop/aaa/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 = luc
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/luc/Desktop/aaa/build/ios
BUILD_ROOT = /Users/luc/Desktop/aaa/build/ios
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/luc/Desktop/aaa/build/ios/Release-iphoneos
CACHE_ROOT = /var/folders/c8/c5mpn8152_bf0bxjmbx_j31h0000gn/C/com.apple.DeveloperTools/10.0-10L177m/Xcode
CCHROOT = /var/folders/c8/c5mpn8152_bf0bxjmbx_j31h0000gn/C/com.apple.DeveloperTools/10.0-10L177m/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/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/luc/Desktop/aaa/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/luc/Desktop/aaa/build/ios/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Release
CONFIGURATION_BUILD_DIR = /Users/luc/Desktop/aaa/build/ios/Release-iphoneos
CONFIGURATION_TEMP_DIR = /Users/luc/Desktop/aaa/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-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform
CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator
CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode-beta.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/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode-beta.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode-beta.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode-beta.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode-beta.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode-beta.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = English
DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode-beta.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/luc/Desktop/aaa/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/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/luc/Desktop/aaa
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_MODE = debug
FLUTTER_FRAMEWORK_DIR = /Users/luc/Development/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/luc/Development/flutter
FLUTTER_TARGET = /Users/luc/Desktop/aaa/lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = /Users/luc/Desktop/aaa/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_SYMBOLS_PRIVATE_EXTERN = YES
GCC_THUMB_SUPPORT = YES
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 20
GROUP = staff
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/luc
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 = luc
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/luc/Desktop/aaa/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/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode-beta.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/luc/Desktop/aaa/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 = 18A336e
MAC_OS_X_VERSION_ACTUAL = 101400
MAC_OS_X_VERSION_MAJOR = 101400
MAC_OS_X_VERSION_MINOR = 1400
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = /Users/luc/Desktop/aaa/build/ios/Release-iphoneos/Runner.app
MODULE_CACHE_DIR = /Users/luc/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/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal
OBJROOT = /Users/luc/Desktop/aaa/build/ios
ONLY_ACTIVE_ARCH = NO
OS = MACOS
OSAC = /usr/bin/osacompile
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode-beta.app/Contents/Developer/usr/bin:/usr/local/bin:/Users/luc/Development/flutter/bin:/Users/luc/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin
PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode-beta.app/Contents/Developer/Headers /Applications/Xcode-beta.app/Contents/Developer/SDKs /Applications/Xcode-beta.app/Contents/Developer/Platforms
PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist
PFE_FILE_C_DIALECTS = objective-c
PKGINFO_FILE_PATH = /Users/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode-beta.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform
PLATFORM_DISPLAY_NAME = iOS
PLATFORM_NAME = iphoneos
PLATFORM_PREFERRED_ARCH = arm64
PLATFORM_PRODUCT_BUILD_VERSION = 16A5308d
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PREVIEW_DART_2 = true
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = com.example.aaa
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = /Users/luc/Desktop/aaa/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/luc/Desktop/aaa/build/ios/Runner.build/DerivedSources
PROJECT_DIR = /Users/luc/Desktop/aaa/ios
PROJECT_FILE_PATH = /Users/luc/Desktop/aaa/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/luc/Desktop/aaa/build/ios/Runner.build
PROJECT_TEMP_ROOT = /Users/luc/Desktop/aaa/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/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/luc/Desktop/aaa/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-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
SDK_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
SDK_DIR_iphoneos12_0 = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
SDK_NAME = iphoneos12.0
SDK_NAMES = iphoneos12.0
SDK_PRODUCT_BUILD_VERSION = 16A5308d
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/luc/Desktop/aaa/build/ios/Release-iphoneos/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/luc/Desktop/aaa/build/ios/SharedPrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/luc/Desktop/aaa/ios
SRCROOT = /Users/luc/Desktop/aaa/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_PLATFORM_TARGET_PREFIX = ios
SYMROOT = /Users/luc/Desktop/aaa/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-beta.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode-beta.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode-beta.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode-beta.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode-beta.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode-beta.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/luc/Desktop/aaa/build/ios/Release-iphoneos
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_DIR = /Users/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILES_DIR = /Users/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILE_DIR = /Users/luc/Desktop/aaa/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_ROOT = /Users/luc/Desktop/aaa/build/ios
TOOLCHAIN_DIR = /Applications/Xcode-beta.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 = luc
USER_APPS_DIR = /Users/luc/Applications
USER_LIBRARY_DIR = /Users/luc/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 = luc
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-beta.app/Contents/Developer/Library/Xcode
XCODE_PRODUCT_BUILD_VERSION = 10L177m
XCODE_VERSION_ACTUAL = 1000
XCODE_VERSION_MAJOR = 1000
XCODE_VERSION_MINOR = 1000
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = arm64
variant = normal
[ +14 ms] Building Runner.app for 47DFC15D-1E56-4E53-AF42-C87C7D960AF6.
[ +11 ms] script /dev/null /usr/bin/log stream --style syslog --predicate processImagePath CONTAINS "47DFC15D-1E56-4E53-AF42-C87C7D960AF6"
[ +49 ms] [DEVICE LOG] Filtering the log data using "processImagePath CONTAINS "47DFC15D-1E56-4E53-AF42-C87C7D960AF6""
[ +163 ms] Skipping kernel compilation. Fingerprint match.
[ +244 ms] Building bundle
[ +1 ms] Writing asset files to build/flutter_assets
[ +51 ms] Wrote build/flutter_assets
[ +1 ms] /usr/bin/xcrun simctl get_app_container 47DFC15D-1E56-4E53-AF42-C87C7D960AF6 com.example.aaa
[ ] /usr/bin/killall Runner
[ +121 ms] python -c import six
[ +39 ms] [ios/] /usr/bin/xcodebuild -list
[+1121 ms] Exit code 0 from: /usr/bin/xcodebuild -list
[ ] Information about project "Runner":
Targets:
Runner
Build Configurations:
Debug
Release
If no build configuration is specified and -scheme is not passed then "Release" is used.
Schemes:
Runner
[ +2 ms] Trying to resolve native pub services.
[ +2 ms] Looking for YAML at 'pubspec.yaml'
[ ] No services specified in the manifest
[ ] Found 0 service definition(s).
[ +1 ms] Copying service frameworks to '/Users/luc/Desktop/aaa/ios/Frameworks'.
[ ] Creating service definitions manifest at 'ios/ServiceDefinitions.json'
[ +5 ms] Starting Xcode build...
[ +1 ms] [ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/luc/Desktop/aaa/build/ios -sdk iphonesimulator -arch x86_64
[+3099 ms] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/luc/Desktop/aaa/build/ios
SDKROOT = iphonesimulator12.0
VERBOSE_SCRIPT_LOGGING = YES
note: Using new build system
note: Planning build
note: Constructing build description
ProcessProductPackaging "" /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent (in target: Runner)
cd /Users/luc/Desktop/aaa/ios
Entitlements:
{
"application-identifier" = "R43TF5K24Y.com.example.aaa";
"keychain-access-groups" = (
"R43TF5K24Y.com.example.aaa"
);
}
builtin-productPackagingUtility -entitlements -format xml -o /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent
ProcessProductPackaging "" /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent (in target: Runner)
cd /Users/luc/Desktop/aaa/ios
Entitlements:
{
"com.apple.security.get-task-allow" = 1;
}
builtin-productPackagingUtility -entitlements -format xml -o /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent
PhaseScriptExecution Run\ Script /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh (in target: Runner)
cd /Users/luc/Desktop/aaa/ios
export ACTION=build
export AD_HOC_CODE_SIGNING_ALLOWED=YES
export ALTERNATE_GROUP=staff
export ALTERNATE_MODE=u+w,go-w,a+rX
export ALTERNATE_OWNER=luc
export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO
export ALWAYS_SEARCH_USER_PATHS=NO
export ALWAYS_USE_SEPARATE_HEADERMAPS=NO
export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
export APPLE_INTERNAL_DIR=/AppleInternal
export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
export APPLICATION_EXTENSION_API_ONLY=NO
export APPLY_RULES_IN_COPY_FILES=NO
export ARCHS=x86_64
export ARCHS_STANDARD="i386 x86_64"
export ARCHS_STANDARD_32_64_BIT="i386 x86_64"
export ARCHS_STANDARD_32_BIT=i386
export ARCHS_STANDARD_64_BIT=x86_64
export ARCHS_STANDARD_INCLUDING_64_BIT="i386 x86_64"
export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64"
export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
export AppIdentifierPrefix=R43TF5K24Y.
export BITCODE_GENERATION_MODE=marker
export BUILD_ACTIVE_RESOURCES_ONLY=YES
export BUILD_COMPONENTS="headers build"
export BUILD_DIR=/Users/luc/Desktop/aaa/build/ios
export BUILD_ROOT=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Products
export BUILD_STYLE=
export BUILD_VARIANTS=normal
export BUILT_PRODUCTS_DIR=/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator
export CACHE_ROOT=/var/folders/c8/c5mpn8152_bf0bxjmbx_j31h0000gn/C/com.apple.DeveloperTools/10.0-10L177m/Xcode
export CCHROOT=/var/folders/c8/c5mpn8152_bf0bxjmbx_j31h0000gn/C/com.apple.DeveloperTools/10.0-10L177m/Xcode
export CHMOD=/bin/chmod
export CHOWN=/usr/sbin/chown
export CLANG_ANALYZER_NONNULL=YES
export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x
export CLANG_CXX_LIBRARY=libc++
export CLANG_ENABLE_MODULES=YES
export CLANG_ENABLE_OBJC_ARC=YES
export CLANG_MODULES_BUILD_SESSION_FILE=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES
export CLANG_WARN_BOOL_CONVERSION=YES
export CLANG_WARN_COMMA=YES
export CLANG_WARN_CONSTANT_CONVERSION=YES
export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
export CLANG_WARN_EMPTY_BODY=YES
export CLANG_WARN_ENUM_CONVERSION=YES
export CLANG_WARN_INFINITE_RECURSION=YES
export CLANG_WARN_INT_CONVERSION=YES
export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES
export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES
export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES
export CLANG_WARN_STRICT_PROTOTYPES=YES
export CLANG_WARN_SUSPICIOUS_MOVE=YES
export CLANG_WARN_UNREACHABLE_CODE=YES
export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
export CLASS_FILE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
export CLEAN_PRECOMPS=YES
export CLONE_HEADERS=NO
export CODESIGNING_FOLDER_PATH=/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/Runner.app
export CODE_SIGNING_ALLOWED=YES
export CODE_SIGNING_REQUIRED=YES
export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext
export CODE_SIGN_IDENTITY=-
export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES
export COLOR_DIAGNOSTICS=NO
export COMBINE_HIDPI_IMAGES=NO
export COMPILER_INDEX_STORE_ENABLE=Default
export COMPOSITE_SDK_DIRS=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/CompositeSDKs
export COMPRESS_PNG_FILES=YES
export CONFIGURATION=Debug
export CONFIGURATION_BUILD_DIR=/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator
export CONFIGURATION_TEMP_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
export CONTENTS_FOLDER_PATH=Runner.app
export COPYING_PRESERVES_HFS_DATA=NO
export COPY_HEADERS_RUN_UNIFDEF=NO
export COPY_PHASE_STRIP=NO
export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform
export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
export CORRESPONDING_DEVICE_SDK_NAME=iphoneos12.0
export CP=/bin/cp
export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
export CURRENT_ARCH=undefined_arch
export CURRENT_PROJECT_VERSION=1
export CURRENT_VARIANT=normal
export DEAD_CODE_STRIPPING=YES
export DEBUGGING_SYMBOLS=YES
export DEBUG_INFORMATION_FORMAT=dwarf
export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions
export DEFINES_MODULE=NO
export DEPLOYMENT_LOCATION=NO
export DEPLOYMENT_POSTPROCESSING=NO
export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min
export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min=
export DEPLOYMENT_TARGET_LD_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_LD_FLAG_NAME=ios_simulator_version_min
export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0"
export DERIVED_FILES_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_FILE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_SOURCES_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode-beta.app/Contents/Developer/Applications
export DEVELOPER_BIN_DIR=/Applications/Xcode-beta.app/Contents/Developer/usr/bin
export DEVELOPER_DIR=/Applications/Xcode-beta.app/Contents/Developer
export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode-beta.app/Contents/Developer/Library/Frameworks
export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode-beta.app/Contents/Developer/Library/Frameworks
export DEVELOPER_LIBRARY_DIR=/Applications/Xcode-beta.app/Contents/Developer/Library
export DEVELOPER_SDK_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
export DEVELOPER_TOOLS_DIR=/Applications/Xcode-beta.app/Contents/Developer/Tools
export DEVELOPER_USR_DIR=/Applications/Xcode-beta.app/Contents/Developer/usr
export DEVELOPMENT_LANGUAGE=English
export DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Documentation
export DO_HEADER_SCANNING_IN_JAM=NO
export DSTROOT=/tmp/Runner.dst
export DT_TOOLCHAIN_DIR=/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export DWARF_DSYM_FILE_NAME=Runner.app.dSYM
export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
export DWARF_DSYM_FOLDER_PATH=/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator
export EFFECTIVE_PLATFORM_NAME=-iphonesimulator
export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
export ENABLE_BITCODE=NO
export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
export ENABLE_HEADER_DEPENDENCIES=YES
export ENABLE_ON_DEMAND_RESOURCES=YES
export ENABLE_STRICT_OBJC_MSGSEND=YES
export ENABLE_TESTABILITY=YES
export ENTITLEMENTS_DESTINATION=__entitlements
export ENTITLEMENTS_REQUIRED=YES
export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj"
export EXECUTABLES_FOLDER_PATH=Runner.app/Executables
export EXECUTABLE_FOLDER_PATH=Runner.app
export EXECUTABLE_NAME=Runner
export EXECUTABLE_PATH=Runner.app/Runner
export EXPANDED_CODE_SIGN_IDENTITY=-
export EXPANDED_CODE_SIGN_IDENTITY_NAME=-
export FILE_LIST=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
export FIXED_FILES_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
export FLUTTER_APPLICATION_PATH=/Users/luc/Desktop/aaa
export FLUTTER_BUILD_DIR=build
export FLUTTER_BUILD_MODE=debug
export FLUTTER_FRAMEWORK_DIR=/Users/luc/Development/flutter/bin/cache/artifacts/engine/ios
export FLUTTER_ROOT=/Users/luc/Development/flutter
export FLUTTER_TARGET=/Users/luc/Desktop/aaa/lib/main.dart
export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks
export FRAMEWORK_FLAG_PREFIX=-framework
export FRAMEWORK_SEARCH_PATHS="/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator /Users/luc/Desktop/aaa/ios/Flutter"
export FRAMEWORK_VERSION=A
export FULL_PRODUCT_NAME=Runner.app
export GCC3_VERSION=3.3
export GCC_C_LANGUAGE_STANDARD=gnu99
export GCC_DYNAMIC_NO_PIC=NO
export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
export GCC_NO_COMMON_BLOCKS=YES
export GCC_OBJC_LEGACY_DISPATCH=YES
export GCC_OPTIMIZATION_LEVEL=0
export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++"
export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 "
export GCC_SYMBOLS_PRIVATE_EXTERN=NO
export GCC_TREAT_WARNINGS_AS_ERRORS=NO
export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
export GCC_WARN_UNDECLARED_SELECTOR=YES
export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
export GCC_WARN_UNUSED_FUNCTION=YES
export GCC_WARN_UNUSED_VARIABLE=YES
export GENERATE_MASTER_OBJECT_FILE=NO
export GENERATE_PKGINFO_FILE=YES
export GENERATE_PROFILING_CODE=NO
export GENERATE_TEXT_BASED_STUBS=NO
export GID=20
export GROUP=staff
export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
export HEADERMAP_USES_VFS=NO
export HEADER_SEARCH_PATHS="/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/include "
export HIDE_BITCODE_SYMBOLS=YES
export HOME=/Users/luc
export ICONV=/usr/bin/iconv
export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
export INFOPLIST_FILE=Runner/Info.plist
export INFOPLIST_OUTPUT_FORMAT=binary
export INFOPLIST_PATH=Runner.app/Info.plist
export INFOPLIST_PREPROCESS=NO
export INFOSTRINGS_PATH=Runner.app/English.lproj/InfoPlist.strings
export INLINE_PRIVATE_FRAMEWORKS=NO
export INSTALLHDRS_COPY_PHASE=NO
export INSTALLHDRS_SCRIPT_PHASE=NO
export INSTALL_DIR=/tmp/Runner.dst/Applications
export INSTALL_GROUP=staff
export INSTALL_MODE_FLAG=u+w,go-w,a+rX
export INSTALL_OWNER=luc
export INSTALL_PATH=/Applications
export INSTALL_ROOT=/tmp/Runner.dst
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
export JAVA_ARCHIVE_CLASSES=YES
export JAVA_ARCHIVE_TYPE=JAR
export JAVA_COMPILER=/usr/bin/javac
export JAVA_FOLDER_PATH=Runner.app/Java
export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
export JAVA_JAR_FLAGS=cv
export JAVA_SOURCE_SUBDIR=.
export JAVA_USE_DEPENDENCIES=YES
export JAVA_ZIP_FLAGS=-urg
export JIKES_DEFAULT_FLAGS="+E +OLDCSO"
export KEEP_PRIVATE_EXTERNS=NO
export LD_DEPENDENCY_INFO_FILE=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat
export LD_ENTITLEMENTS_SECTION=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent
export LD_GENERATE_MAP_FILE=NO
export LD_MAP_FILE_PATH=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-undefined_arch.txt
export LD_NO_PIE=NO
export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
export LD_RUNPATH_SEARCH_PATHS=" @executable_path/Frameworks"
export LEGACY_DEVELOPER_DIR=/Applications/Xcode-beta.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
export LEX=lex
export LIBRARY_FLAG_NOSPACE=YES
export LIBRARY_FLAG_PREFIX=-l
export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
export LIBRARY_SEARCH_PATHS="/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator /Users/luc/Desktop/aaa/ios/Flutter"
export LINKER_DISPLAYS_MANGLED_NAMES=NO
export LINK_FILE_LIST_normal_x86_64=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList
export LINK_WITH_STANDARD_LIBRARIES=YES
export LLVM_TARGET_TRIPLE_SUFFIX=-simulator
export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/English.lproj
export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFLocalizedString"
export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
export LOCAL_APPS_DIR=/Applications
export LOCAL_DEVELOPER_DIR=/Library/Developer
export LOCAL_LIBRARY_DIR=/Library
export LOCROOT=/Users/luc/Desktop/aaa/ios
export LOCSYMROOT=/Users/luc/Desktop/aaa/ios
export MACH_O_TYPE=mh_execute
export MAC_OS_X_PRODUCT_BUILD_VERSION=18A336e
export MAC_OS_X_VERSION_ACTUAL=101400
export MAC_OS_X_VERSION_MAJOR=101400
export MAC_OS_X_VERSION_MINOR=1400
export METAL_LIBRARY_FILE_BASE=default
export METAL_LIBRARY_OUTPUT_DIR=/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/Runner.app
export MODULE_CACHE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
export MTL_ENABLE_DEBUG_INFO=YES
export NATIVE_ARCH=i386
export NATIVE_ARCH_32_BIT=i386
export NATIVE_ARCH_64_BIT=x86_64
export NATIVE_ARCH_ACTUAL=x86_64
export NO_COMMON=YES
export OBJC_ABI_VERSION=2
export OBJECT_FILE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
export OBJECT_FILE_DIR_normal=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
export OBJROOT=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex
export ONLY_ACTIVE_ARCH=YES
export OS=MACOS
export OSAC=/usr/bin/osacompile
export PACKAGE_TYPE=com.apple.package-type.wrapper.application
export PASCAL_STRINGS=YES
export PATH=/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode-beta.app/Contents/Developer/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/usr/local/bin:/usr/local/bin:/Users/luc/Development/flutter/bin:/Users/luc/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin
export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode-beta.app/Contents/Developer/Headers /Applications/Xcode-beta.app/Contents/Developer/SDKs /Applications/Xcode-beta.app/Contents/Developer/Platforms"
export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist
export PER_ARCH_OBJECT_FILE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch
export PER_VARIANT_OBJECT_FILE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
export PKGINFO_FILE_PATH=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
export PKGINFO_PATH=Runner.app/PkgInfo
export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library
export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
export PLATFORM_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform
export PLATFORM_DISPLAY_NAME="iOS Simulator"
export PLATFORM_NAME=iphonesimulator
export PLATFORM_PREFERRED_ARCH=x86_64
export PLATFORM_PRODUCT_BUILD_VERSION=10L177m
export PLIST_FILE_OUTPUT_FORMAT=binary
export PLUGINS_FOLDER_PATH=Runner.app/PlugIns
export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
export PRECOMP_DESTINATION_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
export PREVIEW_DART_2=true
export PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders
export PRODUCT_BUNDLE_IDENTIFIER=com.example.aaa
export PRODUCT_MODULE_NAME=Runner
export PRODUCT_NAME=Runner
export PRODUCT_SETTINGS_PATH=/Users/luc/Desktop/aaa/ios/Runner/Info.plist
export PRODUCT_TYPE=com.apple.product-type.application
export PROFILING_CODE=NO
export PROJECT=Runner
export PROJECT_DERIVED_FILE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/DerivedSources
export PROJECT_DIR=/Users/luc/Desktop/aaa/ios
export PROJECT_FILE_PATH=/Users/luc/Desktop/aaa/ios/Runner.xcodeproj
export PROJECT_NAME=Runner
export PROJECT_TEMP_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build
export PROJECT_TEMP_ROOT=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex
export PUBLIC_HEADERS_FOLDER_PATH=Runner.app/Headers
export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
export REMOVE_CVS_FROM_RESOURCES=YES
export REMOVE_GIT_FROM_RESOURCES=YES
export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
export REMOVE_HG_FROM_RESOURCES=YES
export REMOVE_SVN_FROM_RESOURCES=YES
export REZ_COLLECTOR_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
export REZ_OBJECTS_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
export REZ_SEARCH_PATHS="/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator "
export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
export SCRIPTS_FOLDER_PATH=Runner.app/Scripts
export SCRIPT_INPUT_FILE_COUNT=0
export SCRIPT_INPUT_FILE_LIST_COUNT=0
export SCRIPT_OUTPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_FILE_LIST_COUNT=0
export SDKROOT=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
export SDK_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
export SDK_DIR_iphonesimulator12_0=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
export SDK_NAME=iphonesimulator12.0
export SDK_NAMES=iphonesimulator12.0
export SDK_PRODUCT_BUILD_VERSION=16A5308d
export SDK_VERSION=12.0
export SDK_VERSION_ACTUAL=120000
export SDK_VERSION_MAJOR=120000
export SDK_VERSION_MINOR=000
export SED=/usr/bin/sed
export SEPARATE_STRIP=NO
export SEPARATE_SYMBOL_EDIT=NO
export SET_DIR_MODE_OWNER_GROUP=YES
export SET_FILE_MODE_OWNER_GROUP=NO
export SHALLOW_BUNDLE=YES
export SHARED_DERIVED_FILE_DIR=/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/DerivedSources
export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks
export SHARED_PRECOMPS_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/PrecompiledHeaders
export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport
export SKIP_INSTALL=NO
export SOURCE_ROOT=/Users/luc/Desktop/aaa/ios
export SRCROOT=/Users/luc/Desktop/aaa/ios
export STRINGS_FILE_OUTPUT_ENCODING=binary
export STRIP_BITCODE_FROM_COPIED_FILES=NO
export STRIP_INSTALLED_PRODUCT=YES
export STRIP_STYLE=all
export STRIP_SWIFT_SYMBOLS=YES
export SUPPORTED_DEVICE_FAMILIES=1,2
export SUPPORTED_PLATFORMS="iphoneos iphonesimulator"
export SUPPORTS_TEXT_BASED_API=NO
export SWIFT_PLATFORM_TARGET_PREFIX=ios
export SYMROOT=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Products
export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
export SYSTEM_APPS_DIR=/Applications
export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
export SYSTEM_DEMOS_DIR=/Applications/Extras
export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode-beta.app/Contents/Developer/Applications
export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode-beta.app/Contents/Developer/usr/bin
export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode-beta.app/Contents/Developer/Applications/Utilities/Built Examples"
export SYSTEM_DEVELOPER_DIR=/Applications/Xcode-beta.app/Contents/Developer
export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library"
export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode-beta.app/Contents/Developer/Applications/Graphics Tools"
export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode-beta.app/Contents/Developer/Applications/Java Tools"
export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode-beta.app/Contents/Developer/Applications/Performance Tools"
export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/releasenotes"
export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode-beta.app/Contents/Developer/Tools
export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode-beta.app/Contents/Developer/usr
export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode-beta.app/Contents/Developer/Applications/Utilities
export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
export SYSTEM_LIBRARY_DIR=/System/Library
export TAPI_VERIFY_MODE=ErrorsOnly
export TARGETED_DEVICE_FAMILY=1,2
export TARGETNAME=Runner
export TARGET_BUILD_DIR=/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator
export TARGET_DEVICE_IDENTIFIER=dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder
export TARGET_NAME=Runner
export TARGET_TEMP_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILES_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_ROOT=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex
export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
export TOOLCHAIN_DIR=/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
export TeamIdentifierPrefix=R43TF5K24Y.
export UID=501
export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app
export UNSTRIPPED_PRODUCT=NO
export USER=luc
export USER_APPS_DIR=/Users/luc/Applications
export USER_LIBRARY_DIR=/Users/luc/Library
export USE_DYNAMIC_NO_PIC=YES
export USE_HEADERMAP=YES
export USE_HEADER_SYMLINKS=NO
export VALIDATE_PRODUCT=NO
export VALID_ARCHS="i386 x86_64"
export VERBOSE_PBXCP=NO
export VERBOSE_SCRIPT_LOGGING=YES
export VERSIONING_SYSTEM=apple-generic
export VERSIONPLIST_PATH=Runner.app/version.plist
export VERSION_INFO_BUILDER=luc
export VERSION_INFO_FILE=Runner_vers.c
export VERSION_INFO_STRING=""@(#)PROGRAM:Runner PROJECT:Runner-1""
export WRAPPER_EXTENSION=app
export WRAPPER_NAME=Runner.app
export WRAPPER_SUFFIX=.app
export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO
export XCODE_APP_SUPPORT_DIR=/Applications/Xcode-beta.app/Contents/Developer/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION=10L177m
export XCODE_VERSION_ACTUAL=1000
export XCODE_VERSION_MAJOR=1000
export XCODE_VERSION_MINOR=1000
export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices
export YACC=yacc
export arch=undefined_arch
export variant=normal
/bin/sh -c /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh
♦ mkdir -p -- /Users/luc/Desktop/aaa/ios/Flutter
♦ rm -rf -- /Users/luc/Desktop/aaa/ios/Flutter/Flutter.framework
♦ rm -rf -- /Users/luc/Desktop/aaa/ios/Flutter/App.framework
♦ cp -r -- /Users/luc/Development/flutter/bin/cache/artifacts/engine/ios/Flutter.framework /Users/luc/Desktop/aaa/ios/Flutter
♦ find /Users/luc/Desktop/aaa/ios/Flutter/Flutter.framework -type f -exec chmod a-w {} ;
♦ mkdir -p -- /Users/luc/Desktop/aaa/ios/Flutter/App.framework
♦ eval
♦ cp -- /Users/luc/Desktop/aaa/ios/Flutter/AppFrameworkInfo.plist /Users/luc/Desktop/aaa/ios/Flutter/App.framework/Info.plist
♦ /Users/luc/Development/flutter/bin/flutter --suppress-analytics --verbose build bundle --target=/Users/luc/Desktop/aaa/lib/main.dart --snapshot=build/snapshot_blob.bin --depfile=build/snapshot_blob.bin.d --asset-dir=/Users/luc/Desktop/aaa/ios/Flutter/flutter_assets --preview-dart-2
[ +8 ms] [/Users/luc/Development/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +42 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/beta
[ ] [/Users/luc/Development/flutter/] git rev-parse --abbrev-ref HEAD
[ +8 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] beta
[ ] [/Users/luc/Development/flutter/] git ls-remote --get-url origin
[ +7 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] [/Users/luc/Development/flutter/] git log -n 1 --pretty=format:%H
[ +11 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] c7ea3ca377e909469c68f2ab878a5bc53d3cf66b
[ ] [/Users/luc/Development/flutter/] git log -n 1 --pretty=format:%ar
[ +13 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 8 weeks ago
[ +1 ms] [/Users/luc/Development/flutter/] git describe --match v*.*.* --first-parent --long --tags
[ +16 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.5.1-0-gc7ea3ca37
[ +531 ms] Skipping kernel compilation. Fingerprint match.
[ +211 ms] Building bundle
[ +1 ms] Writing asset files to /Users/luc/Desktop/aaa/ios/Flutter/flutter_assets
[ +48 ms] Wrote /Users/luc/Desktop/aaa/ios/Flutter/flutter_assets
[ +8 ms] "flutter bundle" took 648ms.
Project /Users/luc/Desktop/aaa built and packaged successfully.
CompileC /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.o /Users/luc/Desktop/aaa/ios/Runner/main.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target: Runner)
cd /Users/luc/Desktop/aaa/ios
export LANG=en_US.US-ASCII
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Index/DataStore -iquote /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/include -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator -F/Users/luc/Desktop/aaa/ios/Flutter -MMD -MT dependencies -MF /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.d --serialize-diagnostics /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.dia -c /Users/luc/Desktop/aaa/ios/Runner/main.m -o /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.o
CompileC /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o /Users/luc/Desktop/aaa/ios/Runner/AppDelegate.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target: Runner)
cd /Users/luc/Desktop/aaa/ios
export LANG=en_US.US-ASCII
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Index/DataStore -iquote /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/include -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator -F/Users/luc/Desktop/aaa/ios/Flutter -MMD -MT dependencies -MF /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.d --serialize-diagnostics /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.dia -c /Users/luc/Desktop/aaa/ios/Runner/AppDelegate.m -o /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o
While building module 'Flutter' imported from /Users/luc/Desktop/aaa/ios/Runner/AppDelegate.h:1:
In file included from <module-includes>:1:
In file included from /Users/luc/Desktop/aaa/ios/Flutter/Flutter.framework/Headers/Flutter.h:37:
In file included from /Users/luc/Desktop/aaa/ios/Flutter/Flutter.framework/Headers/FlutterAppDelegate.h:11:
/Users/luc/Desktop/aaa/ios/Flutter/Flutter.framework/Headers/FlutterPlugin.h:140:58: warning: this block declaration is not a prototype [-Wstrict-prototypes]
completionHandler:(nonnull void (^)())completionHandler;
^
void
1 warning generated.
1 warning generated.
CompileC /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o /Users/luc/Desktop/aaa/ios/Runner/GeneratedPluginRegistrant.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target: Runner)
cd /Users/luc/Desktop/aaa/ios
export LANG=en_US.US-ASCII
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Index/DataStore -iquote /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/include -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator -F/Users/luc/Desktop/aaa/ios/Flutter -MMD -MT dependencies -MF /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.d --serialize-diagnostics /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.dia -c /Users/luc/Desktop/aaa/ios/Runner/GeneratedPluginRegistrant.m -o /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o
Ld /Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/Runner.app/Runner normal x86_64 (in target: Runner)
cd /Users/luc/Desktop/aaa/ios
export IPHONEOS_DEPLOYMENT_TARGET=8.0
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk -L/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator -L/Users/luc/Desktop/aaa/ios/Flutter -F/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator -F/Users/luc/Desktop/aaa/ios/Flutter -filelist /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -mios-simulator-version-min=8.0 -dead_strip -Xlinker -object_path_lto -Xlinker /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __entitlements -Xlinker /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent -framework Flutter -framework App -Xlinker -dependency_info -Xlinker /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat -o /Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/Runner.app/Runner
ld: framework not found Flutter
clang:
error: linker command failed with exit code 1 (use -v to see invocation)
** BUILD FAILED **
The following build commands failed:
Ld /Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/Runner.app/Runner normal x86_64
(1 failure)
[ +12 ms] Xcode build done.
[ ] [ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/luc/Desktop/aaa/build/ios -sdk iphonesimulator -arch x86_64 -showBuildSettings
[+1357 ms] Exit code 0 from: /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/luc/Desktop/aaa/build/ios -sdk iphonesimulator -arch x86_64 -showBuildSettings
[ ] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/luc/Desktop/aaa/build/ios
SDKROOT = iphonesimulator12.0
VERBOSE_SCRIPT_LOGGING = YES
Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = YES
ALTERNATE_GROUP = staff
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = luc
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = NO
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
APPLE_INTERNAL_DIR = /AppleInternal
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
APPLICATION_EXTENSION_API_ONLY = NO
APPLY_RULES_IN_COPY_FILES = NO
ARCHS = x86_64
ARCHS_STANDARD = i386 x86_64
ARCHS_STANDARD_32_64_BIT = i386 x86_64
ARCHS_STANDARD_32_BIT = i386
ARCHS_STANDARD_64_BIT = x86_64
ARCHS_STANDARD_INCLUDING_64_BIT = i386 x86_64
ARCHS_UNIVERSAL_IPHONE_OS = i386 x86_64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
BITCODE_GENERATION_MODE = marker
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = /Users/luc/Desktop/aaa/build/ios
BUILD_ROOT = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Products
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator
CACHE_ROOT = /var/folders/c8/c5mpn8152_bf0bxjmbx_j31h0000gn/C/com.apple.DeveloperTools/10.0-10L177m/Xcode
CCHROOT = /var/folders/c8/c5mpn8152_bf0bxjmbx_j31h0000gn/C/com.apple.DeveloperTools/10.0-10L177m/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/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/Runner.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_CONTEXT_CLASS = XCiPhoneSimulatorCodeSignContext
CODE_SIGN_IDENTITY = -
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = NO
COMPILER_INDEX_STORE_ENABLE = Default
COMPOSITE_SDK_DIRS = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Debug
CONFIGURATION_BUILD_DIR = /Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator
CONFIGURATION_TEMP_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
CONTENTS_FOLDER_PATH = Runner.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_DEVICE_PLATFORM_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform
CORRESPONDING_DEVICE_PLATFORM_NAME = iphoneos
CORRESPONDING_DEVICE_SDK_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
CORRESPONDING_DEVICE_SDK_NAME = iphoneos12.0
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = x86_64
CURRENT_PROJECT_VERSION = 1
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = mios-simulator-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -mios-simulator-version-min=
DEPLOYMENT_TARGET_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_simulator_version_min
DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0
DERIVED_FILES_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode-beta.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode-beta.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode-beta.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode-beta.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode-beta.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = English
DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode-beta.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/luc/Desktop/aaa/build/ios/Debug-iphonesimulator
EFFECTIVE_PLATFORM_NAME = -iphonesimulator
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = YES
ENTITLEMENTS_DESTINATION = __entitlements
ENTITLEMENTS_REQUIRED = YES
EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
EXECUTABLES_FOLDER_PATH = Runner.app/Executables
EXECUTABLE_FOLDER_PATH = Runner.app
EXECUTABLE_NAME = Runner
EXECUTABLE_PATH = Runner.app/Runner
EXPANDED_CODE_SIGN_IDENTITY =
EXPANDED_CODE_SIGN_IDENTITY_NAME =
EXPANDED_PROVISIONING_PROFILE =
FILE_LIST = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/luc/Desktop/aaa
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_MODE = debug
FLUTTER_FRAMEWORK_DIR = /Users/luc/Development/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/luc/Development/flutter
FLUTTER_TARGET = /Users/luc/Desktop/aaa/lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = /Users/luc/Desktop/aaa/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_DYNAMIC_NO_PIC = NO
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_OBJC_LEGACY_DISPATCH = YES
GCC_OPTIMIZATION_LEVEL = 0
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1
GCC_SYMBOLS_PRIVATE_EXTERN = NO
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 20
GROUP = staff
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/luc
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 = luc
INSTALL_PATH = /Applications
INSTALL_ROOT = /tmp/Runner.dst
IPHONEOS_DEPLOYMENT_TARGET = 8.0
JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
JAVA_ARCHIVE_CLASSES = YES
JAVA_ARCHIVE_TYPE = JAR
JAVA_COMPILER = /usr/bin/javac
JAVA_FOLDER_PATH = Runner.app/Java
JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
JAVA_JAR_FLAGS = cv
JAVA_SOURCE_SUBDIR = .
JAVA_USE_DEPENDENCIES = YES
JAVA_ZIP_FLAGS = -urg
JIKES_DEFAULT_FLAGS = +E +OLDCSO
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode-beta.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/luc/Desktop/aaa/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_x86_64 =
LINK_WITH_STANDARD_LIBRARIES = YES
LLVM_TARGET_TRIPLE_SUFFIX = -simulator
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj
LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 18A336e
MAC_OS_X_VERSION_ACTUAL = 101400
MAC_OS_X_VERSION_MAJOR = 101400
MAC_OS_X_VERSION_MINOR = 1400
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = /Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/Runner.app
MODULE_CACHE_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
MTL_ENABLE_DEBUG_INFO = YES
NATIVE_ARCH = i386
NATIVE_ARCH_32_BIT = i386
NATIVE_ARCH_64_BIT = x86_64
NATIVE_ARCH_ACTUAL = x86_64
NO_COMMON = YES
OBJC_ABI_VERSION = 2
OBJECT_FILE_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
OBJROOT = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex
ONLY_ACTIVE_ARCH = YES
OS = MACOS
OSAC = /usr/bin/osacompile
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode-beta.app/Contents/Developer/usr/bin:/usr/local/bin:/Users/luc/Development/flutter/bin:/Users/luc/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin
PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode-beta.app/Contents/Developer/Headers /Applications/Xcode-beta.app/Contents/Developer/SDKs /Applications/Xcode-beta.app/Contents/Developer/Platforms
PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist
PFE_FILE_C_DIALECTS = objective-c
PKGINFO_FILE_PATH = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode-beta.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform
PLATFORM_DISPLAY_NAME = iOS Simulator
PLATFORM_NAME = iphonesimulator
PLATFORM_PREFERRED_ARCH = x86_64
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PREVIEW_DART_2 = true
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = com.example.aaa
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = /Users/luc/Desktop/aaa/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/DerivedSources
PROJECT_DIR = /Users/luc/Desktop/aaa/ios
PROJECT_FILE_PATH = /Users/luc/Desktop/aaa/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build
PROJECT_TEMP_ROOT = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex
PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
REMOVE_CVS_FROM_RESOURCES = YES
REMOVE_GIT_FROM_RESOURCES = YES
REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
REMOVE_HG_FROM_RESOURCES = YES
REMOVE_SVN_FROM_RESOURCES = YES
REZ_COLLECTOR_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SDKROOT = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
SDK_DIR = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
SDK_DIR_iphonesimulator12_0 = /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
SDK_NAME = iphonesimulator12.0
SDK_NAMES = iphonesimulator12.0
SDK_PRODUCT_BUILD_VERSION = 16A5308d
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/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/PrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/luc/Desktop/aaa/ios
SRCROOT = /Users/luc/Desktop/aaa/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = NO
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphonesimulator iphoneos
SUPPORTS_TEXT_BASED_API = NO
SWIFT_PLATFORM_TARGET_PREFIX = ios
SYMROOT = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/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-beta.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode-beta.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode-beta.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode-beta.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode-beta.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode-beta.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode-beta.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/luc/Desktop/aaa/build/ios/Debug-iphonesimulator
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_FILES_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_FILE_DIR = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_ROOT = /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex
TOOLCHAIN_DIR = /Applications/Xcode-beta.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 = luc
USER_APPS_DIR = /Users/luc/Applications
USER_LIBRARY_DIR = /Users/luc/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
VALIDATE_PRODUCT = NO
VALID_ARCHS = i386 x86_64
VERBOSE_PBXCP = NO
VERBOSE_SCRIPT_LOGGING = YES
VERSIONING_SYSTEM = apple-generic
VERSIONPLIST_PATH = Runner.app/version.plist
VERSION_INFO_BUILDER = luc
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-beta.app/Contents/Developer/Library/Xcode
XCODE_PRODUCT_BUILD_VERSION = 10L177m
XCODE_VERSION_ACTUAL = 1000
XCODE_VERSION_MAJOR = 1000
XCODE_VERSION_MINOR = 1000
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = x86_64
variant = normal
[ +1 ms] Failed to build iOS app
[ ] Error output from Xcode build:
↳
[ ] ** BUILD FAILED **
The following build commands failed:
Ld /Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/Runner.app/Runner normal x86_64
(1 failure)
[ ] Xcode's output:
↳
[ ] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/luc/Desktop/aaa/build/ios
SDKROOT = iphonesimulator12.0
VERBOSE_SCRIPT_LOGGING = YES
note: Using new build system
note: Planning build
note: Constructing build description
ProcessProductPackaging "" /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent (in target: Runner)
cd /Users/luc/Desktop/aaa/ios
Entitlements:
{
"application-identifier" = "R43TF5K24Y.com.example.aaa";
"keychain-access-groups" = (
"R43TF5K24Y.com.example.aaa"
);
}
builtin-productPackagingUtility -entitlements -format xml -o /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent
ProcessProductPackaging "" /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent (in target: Runner)
cd /Users/luc/Desktop/aaa/ios
Entitlements:
{
"com.apple.security.get-task-allow" = 1;
}
builtin-productPackagingUtility -entitlements -format xml -o /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent
PhaseScriptExecution Run\ Script /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh (in target: Runner)
cd /Users/luc/Desktop/aaa/ios
export ACTION=build
export AD_HOC_CODE_SIGNING_ALLOWED=YES
export ALTERNATE_GROUP=staff
export ALTERNATE_MODE=u+w,go-w,a+rX
export ALTERNATE_OWNER=luc
export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO
export ALWAYS_SEARCH_USER_PATHS=NO
export ALWAYS_USE_SEPARATE_HEADERMAPS=NO
export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
export APPLE_INTERNAL_DIR=/AppleInternal
export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
export APPLICATION_EXTENSION_API_ONLY=NO
export APPLY_RULES_IN_COPY_FILES=NO
export ARCHS=x86_64
export ARCHS_STANDARD="i386 x86_64"
export ARCHS_STANDARD_32_64_BIT="i386 x86_64"
export ARCHS_STANDARD_32_BIT=i386
export ARCHS_STANDARD_64_BIT=x86_64
export ARCHS_STANDARD_INCLUDING_64_BIT="i386 x86_64"
export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64"
export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
export AppIdentifierPrefix=R43TF5K24Y.
export BITCODE_GENERATION_MODE=marker
export BUILD_ACTIVE_RESOURCES_ONLY=YES
export BUILD_COMPONENTS="headers build"
export BUILD_DIR=/Users/luc/Desktop/aaa/build/ios
export BUILD_ROOT=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Products
export BUILD_STYLE=
export BUILD_VARIANTS=normal
export BUILT_PRODUCTS_DIR=/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator
export CACHE_ROOT=/var/folders/c8/c5mpn8152_bf0bxjmbx_j31h0000gn/C/com.apple.DeveloperTools/10.0-10L177m/Xcode
export CCHROOT=/var/folders/c8/c5mpn8152_bf0bxjmbx_j31h0000gn/C/com.apple.DeveloperTools/10.0-10L177m/Xcode
export CHMOD=/bin/chmod
export CHOWN=/usr/sbin/chown
export CLANG_ANALYZER_NONNULL=YES
export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x
export CLANG_CXX_LIBRARY=libc++
export CLANG_ENABLE_MODULES=YES
export CLANG_ENABLE_OBJC_ARC=YES
export CLANG_MODULES_BUILD_SESSION_FILE=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES
export CLANG_WARN_BOOL_CONVERSION=YES
export CLANG_WARN_COMMA=YES
export CLANG_WARN_CONSTANT_CONVERSION=YES
export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
export CLANG_WARN_EMPTY_BODY=YES
export CLANG_WARN_ENUM_CONVERSION=YES
export CLANG_WARN_INFINITE_RECURSION=YES
export CLANG_WARN_INT_CONVERSION=YES
export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES
export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES
export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES
export CLANG_WARN_STRICT_PROTOTYPES=YES
export CLANG_WARN_SUSPICIOUS_MOVE=YES
export CLANG_WARN_UNREACHABLE_CODE=YES
export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
export CLASS_FILE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
export CLEAN_PRECOMPS=YES
export CLONE_HEADERS=NO
export CODESIGNING_FOLDER_PATH=/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/Runner.app
export CODE_SIGNING_ALLOWED=YES
export CODE_SIGNING_REQUIRED=YES
export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext
export CODE_SIGN_IDENTITY=-
export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES
export COLOR_DIAGNOSTICS=NO
export COMBINE_HIDPI_IMAGES=NO
export COMPILER_INDEX_STORE_ENABLE=Default
export COMPOSITE_SDK_DIRS=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/CompositeSDKs
export COMPRESS_PNG_FILES=YES
export CONFIGURATION=Debug
export CONFIGURATION_BUILD_DIR=/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator
export CONFIGURATION_TEMP_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
export CONTENTS_FOLDER_PATH=Runner.app
export COPYING_PRESERVES_HFS_DATA=NO
export COPY_HEADERS_RUN_UNIFDEF=NO
export COPY_PHASE_STRIP=NO
export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform
export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
export CORRESPONDING_DEVICE_SDK_NAME=iphoneos12.0
export CP=/bin/cp
export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
export CURRENT_ARCH=undefined_arch
export CURRENT_PROJECT_VERSION=1
export CURRENT_VARIANT=normal
export DEAD_CODE_STRIPPING=YES
export DEBUGGING_SYMBOLS=YES
export DEBUG_INFORMATION_FORMAT=dwarf
export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions
export DEFINES_MODULE=NO
export DEPLOYMENT_LOCATION=NO
export DEPLOYMENT_POSTPROCESSING=NO
export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min
export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min=
export DEPLOYMENT_TARGET_LD_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_LD_FLAG_NAME=ios_simulator_version_min
export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0"
export DERIVED_FILES_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_FILE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_SOURCES_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode-beta.app/Contents/Developer/Applications
export DEVELOPER_BIN_DIR=/Applications/Xcode-beta.app/Contents/Developer/usr/bin
export DEVELOPER_DIR=/Applications/Xcode-beta.app/Contents/Developer
export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode-beta.app/Contents/Developer/Library/Frameworks
export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode-beta.app/Contents/Developer/Library/Frameworks
export DEVELOPER_LIBRARY_DIR=/Applications/Xcode-beta.app/Contents/Developer/Library
export DEVELOPER_SDK_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
export DEVELOPER_TOOLS_DIR=/Applications/Xcode-beta.app/Contents/Developer/Tools
export DEVELOPER_USR_DIR=/Applications/Xcode-beta.app/Contents/Developer/usr
export DEVELOPMENT_LANGUAGE=English
export DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Documentation
export DO_HEADER_SCANNING_IN_JAM=NO
export DSTROOT=/tmp/Runner.dst
export DT_TOOLCHAIN_DIR=/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export DWARF_DSYM_FILE_NAME=Runner.app.dSYM
export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
export DWARF_DSYM_FOLDER_PATH=/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator
export EFFECTIVE_PLATFORM_NAME=-iphonesimulator
export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
export ENABLE_BITCODE=NO
export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
export ENABLE_HEADER_DEPENDENCIES=YES
export ENABLE_ON_DEMAND_RESOURCES=YES
export ENABLE_STRICT_OBJC_MSGSEND=YES
export ENABLE_TESTABILITY=YES
export ENTITLEMENTS_DESTINATION=__entitlements
export ENTITLEMENTS_REQUIRED=YES
export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj"
export EXECUTABLES_FOLDER_PATH=Runner.app/Executables
export EXECUTABLE_FOLDER_PATH=Runner.app
export EXECUTABLE_NAME=Runner
export EXECUTABLE_PATH=Runner.app/Runner
export EXPANDED_CODE_SIGN_IDENTITY=-
export EXPANDED_CODE_SIGN_IDENTITY_NAME=-
export FILE_LIST=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
export FIXED_FILES_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
export FLUTTER_APPLICATION_PATH=/Users/luc/Desktop/aaa
export FLUTTER_BUILD_DIR=build
export FLUTTER_BUILD_MODE=debug
export FLUTTER_FRAMEWORK_DIR=/Users/luc/Development/flutter/bin/cache/artifacts/engine/ios
export FLUTTER_ROOT=/Users/luc/Development/flutter
export FLUTTER_TARGET=/Users/luc/Desktop/aaa/lib/main.dart
export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks
export FRAMEWORK_FLAG_PREFIX=-framework
export FRAMEWORK_SEARCH_PATHS="/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator /Users/luc/Desktop/aaa/ios/Flutter"
export FRAMEWORK_VERSION=A
export FULL_PRODUCT_NAME=Runner.app
export GCC3_VERSION=3.3
export GCC_C_LANGUAGE_STANDARD=gnu99
export GCC_DYNAMIC_NO_PIC=NO
export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
export GCC_NO_COMMON_BLOCKS=YES
export GCC_OBJC_LEGACY_DISPATCH=YES
export GCC_OPTIMIZATION_LEVEL=0
export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++"
export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 "
export GCC_SYMBOLS_PRIVATE_EXTERN=NO
export GCC_TREAT_WARNINGS_AS_ERRORS=NO
export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
export GCC_WARN_UNDECLARED_SELECTOR=YES
export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
export GCC_WARN_UNUSED_FUNCTION=YES
export GCC_WARN_UNUSED_VARIABLE=YES
export GENERATE_MASTER_OBJECT_FILE=NO
export GENERATE_PKGINFO_FILE=YES
export GENERATE_PROFILING_CODE=NO
export GENERATE_TEXT_BASED_STUBS=NO
export GID=20
export GROUP=staff
export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
export HEADERMAP_USES_VFS=NO
export HEADER_SEARCH_PATHS="/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/include "
export HIDE_BITCODE_SYMBOLS=YES
export HOME=/Users/luc
export ICONV=/usr/bin/iconv
export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
export INFOPLIST_FILE=Runner/Info.plist
export INFOPLIST_OUTPUT_FORMAT=binary
export INFOPLIST_PATH=Runner.app/Info.plist
export INFOPLIST_PREPROCESS=NO
export INFOSTRINGS_PATH=Runner.app/English.lproj/InfoPlist.strings
export INLINE_PRIVATE_FRAMEWORKS=NO
export INSTALLHDRS_COPY_PHASE=NO
export INSTALLHDRS_SCRIPT_PHASE=NO
export INSTALL_DIR=/tmp/Runner.dst/Applications
export INSTALL_GROUP=staff
export INSTALL_MODE_FLAG=u+w,go-w,a+rX
export INSTALL_OWNER=luc
export INSTALL_PATH=/Applications
export INSTALL_ROOT=/tmp/Runner.dst
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
export JAVA_ARCHIVE_CLASSES=YES
export JAVA_ARCHIVE_TYPE=JAR
export JAVA_COMPILER=/usr/bin/javac
export JAVA_FOLDER_PATH=Runner.app/Java
export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
export JAVA_JAR_FLAGS=cv
export JAVA_SOURCE_SUBDIR=.
export JAVA_USE_DEPENDENCIES=YES
export JAVA_ZIP_FLAGS=-urg
export JIKES_DEFAULT_FLAGS="+E +OLDCSO"
export KEEP_PRIVATE_EXTERNS=NO
export LD_DEPENDENCY_INFO_FILE=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch/Runner_dependency_info.dat
export LD_ENTITLEMENTS_SECTION=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent
export LD_GENERATE_MAP_FILE=NO
export LD_MAP_FILE_PATH=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-undefined_arch.txt
export LD_NO_PIE=NO
export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
export LD_RUNPATH_SEARCH_PATHS=" @executable_path/Frameworks"
export LEGACY_DEVELOPER_DIR=/Applications/Xcode-beta.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
export LEX=lex
export LIBRARY_FLAG_NOSPACE=YES
export LIBRARY_FLAG_PREFIX=-l
export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
export LIBRARY_SEARCH_PATHS="/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator /Users/luc/Desktop/aaa/ios/Flutter"
export LINKER_DISPLAYS_MANGLED_NAMES=NO
export LINK_FILE_LIST_normal_x86_64=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList
export LINK_WITH_STANDARD_LIBRARIES=YES
export LLVM_TARGET_TRIPLE_SUFFIX=-simulator
export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/English.lproj
export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFLocalizedString"
export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
export LOCAL_APPS_DIR=/Applications
export LOCAL_DEVELOPER_DIR=/Library/Developer
export LOCAL_LIBRARY_DIR=/Library
export LOCROOT=/Users/luc/Desktop/aaa/ios
export LOCSYMROOT=/Users/luc/Desktop/aaa/ios
export MACH_O_TYPE=mh_execute
export MAC_OS_X_PRODUCT_BUILD_VERSION=18A336e
export MAC_OS_X_VERSION_ACTUAL=101400
export MAC_OS_X_VERSION_MAJOR=101400
export MAC_OS_X_VERSION_MINOR=1400
export METAL_LIBRARY_FILE_BASE=default
export METAL_LIBRARY_OUTPUT_DIR=/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/Runner.app
export MODULE_CACHE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
export MTL_ENABLE_DEBUG_INFO=YES
export NATIVE_ARCH=i386
export NATIVE_ARCH_32_BIT=i386
export NATIVE_ARCH_64_BIT=x86_64
export NATIVE_ARCH_ACTUAL=x86_64
export NO_COMMON=YES
export OBJC_ABI_VERSION=2
export OBJECT_FILE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
export OBJECT_FILE_DIR_normal=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
export OBJROOT=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex
export ONLY_ACTIVE_ARCH=YES
export OS=MACOS
export OSAC=/usr/bin/osacompile
export PACKAGE_TYPE=com.apple.package-type.wrapper.application
export PASCAL_STRINGS=YES
export PATH=/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode-beta.app/Contents/Developer/usr/bin:/Applications/Xcode-beta.app/Contents/Developer/usr/local/bin:/usr/local/bin:/Users/luc/Development/flutter/bin:/Users/luc/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin
export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode-beta.app/Contents/Developer/Headers /Applications/Xcode-beta.app/Contents/Developer/SDKs /Applications/Xcode-beta.app/Contents/Developer/Platforms"
export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist
export PER_ARCH_OBJECT_FILE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/undefined_arch
export PER_VARIANT_OBJECT_FILE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
export PKGINFO_FILE_PATH=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
export PKGINFO_PATH=Runner.app/PkgInfo
export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library
export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
export PLATFORM_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform
export PLATFORM_DISPLAY_NAME="iOS Simulator"
export PLATFORM_NAME=iphonesimulator
export PLATFORM_PREFERRED_ARCH=x86_64
export PLATFORM_PRODUCT_BUILD_VERSION=10L177m
export PLIST_FILE_OUTPUT_FORMAT=binary
export PLUGINS_FOLDER_PATH=Runner.app/PlugIns
export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
export PRECOMP_DESTINATION_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
export PREVIEW_DART_2=true
export PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders
export PRODUCT_BUNDLE_IDENTIFIER=com.example.aaa
export PRODUCT_MODULE_NAME=Runner
export PRODUCT_NAME=Runner
export PRODUCT_SETTINGS_PATH=/Users/luc/Desktop/aaa/ios/Runner/Info.plist
export PRODUCT_TYPE=com.apple.product-type.application
export PROFILING_CODE=NO
export PROJECT=Runner
export PROJECT_DERIVED_FILE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/DerivedSources
export PROJECT_DIR=/Users/luc/Desktop/aaa/ios
export PROJECT_FILE_PATH=/Users/luc/Desktop/aaa/ios/Runner.xcodeproj
export PROJECT_NAME=Runner
export PROJECT_TEMP_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build
export PROJECT_TEMP_ROOT=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex
export PUBLIC_HEADERS_FOLDER_PATH=Runner.app/Headers
export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
export REMOVE_CVS_FROM_RESOURCES=YES
export REMOVE_GIT_FROM_RESOURCES=YES
export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
export REMOVE_HG_FROM_RESOURCES=YES
export REMOVE_SVN_FROM_RESOURCES=YES
export REZ_COLLECTOR_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
export REZ_OBJECTS_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
export REZ_SEARCH_PATHS="/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator "
export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
export SCRIPTS_FOLDER_PATH=Runner.app/Scripts
export SCRIPT_INPUT_FILE_COUNT=0
export SCRIPT_INPUT_FILE_LIST_COUNT=0
export SCRIPT_OUTPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_FILE_LIST_COUNT=0
export SDKROOT=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
export SDK_DIR=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
export SDK_DIR_iphonesimulator12_0=/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
export SDK_NAME=iphonesimulator12.0
export SDK_NAMES=iphonesimulator12.0
export SDK_PRODUCT_BUILD_VERSION=16A5308d
export SDK_VERSION=12.0
export SDK_VERSION_ACTUAL=120000
export SDK_VERSION_MAJOR=120000
export SDK_VERSION_MINOR=000
export SED=/usr/bin/sed
export SEPARATE_STRIP=NO
export SEPARATE_SYMBOL_EDIT=NO
export SET_DIR_MODE_OWNER_GROUP=YES
export SET_FILE_MODE_OWNER_GROUP=NO
export SHALLOW_BUNDLE=YES
export SHARED_DERIVED_FILE_DIR=/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/DerivedSources
export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks
export SHARED_PRECOMPS_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/PrecompiledHeaders
export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport
export SKIP_INSTALL=NO
export SOURCE_ROOT=/Users/luc/Desktop/aaa/ios
export SRCROOT=/Users/luc/Desktop/aaa/ios
export STRINGS_FILE_OUTPUT_ENCODING=binary
export STRIP_BITCODE_FROM_COPIED_FILES=NO
export STRIP_INSTALLED_PRODUCT=YES
export STRIP_STYLE=all
export STRIP_SWIFT_SYMBOLS=YES
export SUPPORTED_DEVICE_FAMILIES=1,2
export SUPPORTED_PLATFORMS="iphoneos iphonesimulator"
export SUPPORTS_TEXT_BASED_API=NO
export SWIFT_PLATFORM_TARGET_PREFIX=ios
export SYMROOT=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Products
export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
export SYSTEM_APPS_DIR=/Applications
export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
export SYSTEM_DEMOS_DIR=/Applications/Extras
export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode-beta.app/Contents/Developer/Applications
export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode-beta.app/Contents/Developer/usr/bin
export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode-beta.app/Contents/Developer/Applications/Utilities/Built Examples"
export SYSTEM_DEVELOPER_DIR=/Applications/Xcode-beta.app/Contents/Developer
export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library"
export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode-beta.app/Contents/Developer/Applications/Graphics Tools"
export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode-beta.app/Contents/Developer/Applications/Java Tools"
export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode-beta.app/Contents/Developer/Applications/Performance Tools"
export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/releasenotes"
export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode-beta.app/Contents/Developer/Tools
export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode-beta.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode-beta.app/Contents/Developer/usr
export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode-beta.app/Contents/Developer/Applications/Utilities
export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
export SYSTEM_LIBRARY_DIR=/System/Library
export TAPI_VERIFY_MODE=ErrorsOnly
export TARGETED_DEVICE_FAMILY=1,2
export TARGETNAME=Runner
export TARGET_BUILD_DIR=/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator
export TARGET_DEVICE_IDENTIFIER=dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder
export TARGET_NAME=Runner
export TARGET_TEMP_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILES_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILE_DIR=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_ROOT=/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex
export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
export TOOLCHAIN_DIR=/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
export TeamIdentifierPrefix=R43TF5K24Y.
export UID=501
export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app
export UNSTRIPPED_PRODUCT=NO
export USER=luc
export USER_APPS_DIR=/Users/luc/Applications
export USER_LIBRARY_DIR=/Users/luc/Library
export USE_DYNAMIC_NO_PIC=YES
export USE_HEADERMAP=YES
export USE_HEADER_SYMLINKS=NO
export VALIDATE_PRODUCT=NO
export VALID_ARCHS="i386 x86_64"
export VERBOSE_PBXCP=NO
export VERBOSE_SCRIPT_LOGGING=YES
export VERSIONING_SYSTEM=apple-generic
export VERSIONPLIST_PATH=Runner.app/version.plist
export VERSION_INFO_BUILDER=luc
export VERSION_INFO_FILE=Runner_vers.c
export VERSION_INFO_STRING=""@(#)PROGRAM:Runner PROJECT:Runner-1""
export WRAPPER_EXTENSION=app
export WRAPPER_NAME=Runner.app
export WRAPPER_SUFFIX=.app
export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO
export XCODE_APP_SUPPORT_DIR=/Applications/Xcode-beta.app/Contents/Developer/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION=10L177m
export XCODE_VERSION_ACTUAL=1000
export XCODE_VERSION_MAJOR=1000
export XCODE_VERSION_MINOR=1000
export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices
export YACC=yacc
export arch=undefined_arch
export variant=normal
/bin/sh -c /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh
♦ mkdir -p -- /Users/luc/Desktop/aaa/ios/Flutter
♦ rm -rf -- /Users/luc/Desktop/aaa/ios/Flutter/Flutter.framework
♦ rm -rf -- /Users/luc/Desktop/aaa/ios/Flutter/App.framework
♦ cp -r -- /Users/luc/Development/flutter/bin/cache/artifacts/engine/ios/Flutter.framework /Users/luc/Desktop/aaa/ios/Flutter
♦ find /Users/luc/Desktop/aaa/ios/Flutter/Flutter.framework -type f -exec chmod a-w {} ;
♦ mkdir -p -- /Users/luc/Desktop/aaa/ios/Flutter/App.framework
♦ eval
♦ cp -- /Users/luc/Desktop/aaa/ios/Flutter/AppFrameworkInfo.plist /Users/luc/Desktop/aaa/ios/Flutter/App.framework/Info.plist
♦ /Users/luc/Development/flutter/bin/flutter --suppress-analytics --verbose build bundle --target=/Users/luc/Desktop/aaa/lib/main.dart --snapshot=build/snapshot_blob.bin --depfile=build/snapshot_blob.bin.d --asset-dir=/Users/luc/Desktop/aaa/ios/Flutter/flutter_assets --preview-dart-2
[ +8 ms] [/Users/luc/Development/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +42 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/beta
[ ] [/Users/luc/Development/flutter/] git rev-parse --abbrev-ref HEAD
[ +8 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] beta
[ ] [/Users/luc/Development/flutter/] git ls-remote --get-url origin
[ +7 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] [/Users/luc/Development/flutter/] git log -n 1 --pretty=format:%H
[ +11 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] c7ea3ca377e909469c68f2ab878a5bc53d3cf66b
[ ] [/Users/luc/Development/flutter/] git log -n 1 --pretty=format:%ar
[ +13 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 8 weeks ago
[ +1 ms] [/Users/luc/Development/flutter/] git describe --match v*.*.* --first-parent --long --tags
[ +16 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.5.1-0-gc7ea3ca37
[ +531 ms] Skipping kernel compilation. Fingerprint match.
[ +211 ms] Building bundle
[ +1 ms] Writing asset files to /Users/luc/Desktop/aaa/ios/Flutter/flutter_assets
[ +48 ms] Wrote /Users/luc/Desktop/aaa/ios/Flutter/flutter_assets
[ +8 ms] "flutter bundle" took 648ms.
Project /Users/luc/Desktop/aaa built and packaged successfully.
CompileC /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.o /Users/luc/Desktop/aaa/ios/Runner/main.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target: Runner)
cd /Users/luc/Desktop/aaa/ios
export LANG=en_US.US-ASCII
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Index/DataStore -iquote /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/include -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator -F/Users/luc/Desktop/aaa/ios/Flutter -MMD -MT dependencies -MF /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.d --serialize-diagnostics /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.dia -c /Users/luc/Desktop/aaa/ios/Runner/main.m -o /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.o
CompileC /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o /Users/luc/Desktop/aaa/ios/Runner/AppDelegate.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target: Runner)
cd /Users/luc/Desktop/aaa/ios
export LANG=en_US.US-ASCII
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Index/DataStore -iquote /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/include -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator -F/Users/luc/Desktop/aaa/ios/Flutter -MMD -MT dependencies -MF /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.d --serialize-diagnostics /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.dia -c /Users/luc/Desktop/aaa/ios/Runner/AppDelegate.m -o /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o
While building module 'Flutter' imported from /Users/luc/Desktop/aaa/ios/Runner/AppDelegate.h:1:
In file included from <module-includes>:1:
In file included from /Users/luc/Desktop/aaa/ios/Flutter/Flutter.framework/Headers/Flutter.h:37:
In file included from /Users/luc/Desktop/aaa/ios/Flutter/Flutter.framework/Headers/FlutterAppDelegate.h:11:
/Users/luc/Desktop/aaa/ios/Flutter/Flutter.framework/Headers/FlutterPlugin.h:140:58: warning: this block declaration is not a prototype [-Wstrict-prototypes]
completionHandler:(nonnull void (^)())completionHandler;
^
void
1 warning generated.
1 warning generated.
CompileC /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o /Users/luc/Desktop/aaa/ios/Runner/GeneratedPluginRegistrant.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target: Runner)
cd /Users/luc/Desktop/aaa/ios
export LANG=en_US.US-ASCII
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/luc/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Index/DataStore -iquote /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/include -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator -F/Users/luc/Desktop/aaa/ios/Flutter -MMD -MT dependencies -MF /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.d --serialize-diagnostics /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.dia -c /Users/luc/Desktop/aaa/ios/Runner/GeneratedPluginRegistrant.m -o /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o
Ld /Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/Runner.app/Runner normal x86_64 (in target: Runner)
cd /Users/luc/Desktop/aaa/ios
export IPHONEOS_DEPLOYMENT_TARGET=8.0
/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk -L/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator -L/Users/luc/Desktop/aaa/ios/Flutter -F/Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator -F/Users/luc/Desktop/aaa/ios/Flutter -filelist /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -mios-simulator-version-min=8.0 -dead_strip -Xlinker -object_path_lto -Xlinker /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __entitlements -Xlinker /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent -framework Flutter -framework App -Xlinker -dependency_info -Xlinker /Users/luc/Library/Developer/Xcode/DerivedData/Runner-gkilfaelomakodcjcsxbprcswpiz/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat -o /Users/luc/Desktop/aaa/build/ios/Debug-iphonesimulator/Runner.app/Runner
ld: framework not found Flutter
clang:
error: linker command failed with exit code 1 (use -v to see invocation)
[ +3 ms] "flutter run" took 9 065ms.
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Analyzing aaa...
No issues found! (ran in 1.7s)"><pre class="notranslate"><code class="notranslate">Analyzing aaa...
No issues found! (ran in 1.7s)
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[✓] Flutter (Channel beta, v0.5.1, on Mac OS X 10.14 18A336e, locale en-ZA)
• Flutter version 0.5.1 at /Users/luc/Development/flutter
• Framework revision c7ea3ca377 (8 weeks ago), 2018-05-29 21:07:33 +0200
• Engine revision 1ed25ca7b7
• Dart version 2.0.0-dev.58.0.flutter-f981f09760
[✓] Android toolchain - develop for Android devices (Android SDK 28.0.0)
• Android SDK at /Users/luc/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-28, build-tools 28.0.0
• Java binary at: /Library/Java/JavaVirtualMachines/jdk1.8.0_171.jdk/Contents/Home/bin/java
• Java version Java(TM) SE Runtime Environment (build 1.8.0_171-b11)
• All Android licenses accepted.
[✓] iOS toolchain - develop for iOS devices (Xcode 10.0)
• Xcode at /Applications/Xcode-beta.app/Contents/Developer
• Xcode 10.0, Build version 10L177m
• ios-deploy 1.9.2
• CocoaPods version 1.5.3
[✗] Android Studio (not installed)
• Android Studio not found; download from https://developer.android.com/studio/index.html
(or visit https://flutter.io/setup/#android-setup for detailed instructions).
[✓] IntelliJ IDEA Ultimate Edition (version 2018.1.6)
• IntelliJ at /Users/luc/Applications/JetBrains Toolbox/IntelliJ IDEA Ultimate.app
• Flutter plugin version 26.0.2
• Dart plugin version 181.4892.1
[✓] Connected devices (2 available)
• Android SDK built for x86 • emulator-5554 • android-x86 • Android 8.0.0 (API 26) (emulator)
• iPhone X • 47DFC15D-1E56-4E53-AF42-C87C7D960AF6 • ios • iOS 12.0 (simulator)
! Doctor found issues in 1 category.
"><pre class="notranslate"><code class="notranslate">[✓] Flutter (Channel beta, v0.5.1, on Mac OS X 10.14 18A336e, locale en-ZA)
• Flutter version 0.5.1 at /Users/luc/Development/flutter
• Framework revision c7ea3ca377 (8 weeks ago), 2018-05-29 21:07:33 +0200
• Engine revision 1ed25ca7b7
• Dart version 2.0.0-dev.58.0.flutter-f981f09760
[✓] Android toolchain - develop for Android devices (Android SDK 28.0.0)
• Android SDK at /Users/luc/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-28, build-tools 28.0.0
• Java binary at: /Library/Java/JavaVirtualMachines/jdk1.8.0_171.jdk/Contents/Home/bin/java
• Java version Java(TM) SE Runtime Environment (build 1.8.0_171-b11)
• All Android licenses accepted.
[✓] iOS toolchain - develop for iOS devices (Xcode 10.0)
• Xcode at /Applications/Xcode-beta.app/Contents/Developer
• Xcode 10.0, Build version 10L177m
• ios-deploy 1.9.2
• CocoaPods version 1.5.3
[✗] Android Studio (not installed)
• Android Studio not found; download from https://developer.android.com/studio/index.html
(or visit https://flutter.io/setup/#android-setup for detailed instructions).
[✓] IntelliJ IDEA Ultimate Edition (version 2018.1.6)
• IntelliJ at /Users/luc/Applications/JetBrains Toolbox/IntelliJ IDEA Ultimate.app
• Flutter plugin version 26.0.2
• Dart plugin version 181.4892.1
[✓] Connected devices (2 available)
• Android SDK built for x86 • emulator-5554 • android-x86 • Android 8.0.0 (API 26) (emulator)
• iPhone X • 47DFC15D-1E56-4E53-AF42-C87C7D960AF6 • ios • iOS 12.0 (simulator)
! Doctor found issues in 1 category.
</code></pre></div> | 0 |
<p dir="auto"><code class="notranslate">@code_native</code> appears to be a little broken on LLVM 3.7. The labels are all printed at the very beginning, which is <strong>not</strong> very helpful to figure out the control flow.....</p>
<div class="highlight highlight-source-assembly notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia> function f(a)
s = zero(eltype(a))
@inbounds for i in 1:length(a)
s += a[i]
end
s
end
f (generic function with 1 method)
julia> @code_native f(Int[])
L16:L29: .text
movq 8(%rdi), %rcx
xorl %eax, %eax
testq %rcx, %rcx
jle L29
movq (%rdi), %rdx
xorl %eax, %eax
addq (%rdx), %rax
addq $8, %rdx
addq $-1, %rcx
jne L16
retq
nop
pushq %rax
movq (%rsi), %rdi
movabsq $f, %rax
callq *%rax
movabsq $jl_box_int64, %rcx
movq %rax, %rdi
callq *%rcx
popq %rdx
retq"><pre class="notranslate"><span class="pl-en">julia> function f(a)</span>
<span class="pl-en"> s = zero(eltype(a))</span>
<span class="pl-en"> @inbounds for i </span><span class="pl-k">in</span><span class="pl-en"> </span><span class="pl-c1">1</span><span class="pl-en">:length(a)</span>
<span class="pl-en"> s </span><span class="pl-s1">+</span><span class="pl-en">= a</span><span class="pl-s1">[</span><span class="pl-en">i</span><span class="pl-s1">]</span>
<span class="pl-en"> end</span>
<span class="pl-en"> s</span>
<span class="pl-en"> end</span>
<span class="pl-en">f (generic function with </span><span class="pl-c1">1</span><span class="pl-en"> method)</span>
<span class="pl-en">julia> @code_native f(</span><span class="pl-k">Int</span><span class="pl-s1">[]</span><span class="pl-en">)</span>
<span class="pl-en">L16:L29: .text</span>
<span class="pl-en"> </span><span class="pl-k">movq</span><span class="pl-en"> </span><span class="pl-c1">8</span><span class="pl-en">(%</span><span class="pl-v">rdi</span><span class="pl-en">)</span><span class="pl-s1">,</span><span class="pl-en"> %</span><span class="pl-v">rcx</span>
<span class="pl-en"> xorl %</span><span class="pl-v">eax</span><span class="pl-s1">,</span><span class="pl-en"> %</span><span class="pl-v">eax</span>
<span class="pl-en"> testq %</span><span class="pl-v">rcx</span><span class="pl-s1">,</span><span class="pl-en"> %</span><span class="pl-v">rcx</span>
<span class="pl-en"> </span><span class="pl-k">jle</span><span class="pl-en"> L29</span>
<span class="pl-en"> </span><span class="pl-k">movq</span><span class="pl-en"> (%</span><span class="pl-v">rdi</span><span class="pl-en">)</span><span class="pl-s1">,</span><span class="pl-en"> %</span><span class="pl-v">rdx</span>
<span class="pl-en"> xorl %</span><span class="pl-v">eax</span><span class="pl-s1">,</span><span class="pl-en"> %</span><span class="pl-v">eax</span>
<span class="pl-en"> addq (%</span><span class="pl-v">rdx</span><span class="pl-en">)</span><span class="pl-s1">,</span><span class="pl-en"> %</span><span class="pl-v">rax</span>
<span class="pl-en"> addq</span> <span class="pl-c1">$</span><span class="pl-c1">8</span><span class="pl-s1">,</span><span class="pl-en"> %</span><span class="pl-v">rdx</span>
<span class="pl-en"> addq $</span><span class="pl-s1">-</span><span class="pl-c1">1</span><span class="pl-s1">,</span><span class="pl-en"> %</span><span class="pl-v">rcx</span>
<span class="pl-en"> </span><span class="pl-k">jne</span><span class="pl-en"> L16</span>
<span class="pl-en"> retq</span>
<span class="pl-en"> </span><span class="pl-k">nop</span>
<span class="pl-en"> pushq %</span><span class="pl-v">rax</span>
<span class="pl-en"> </span><span class="pl-k">movq</span><span class="pl-en"> (%</span><span class="pl-v">rsi</span><span class="pl-en">)</span><span class="pl-s1">,</span><span class="pl-en"> %</span><span class="pl-v">rdi</span>
<span class="pl-en"> movabsq</span> <span class="pl-c1">$</span><span class="pl-en">f</span><span class="pl-s1">,</span><span class="pl-en"> %</span><span class="pl-v">rax</span>
<span class="pl-en"> callq </span><span class="pl-s1">*</span><span class="pl-en">%</span><span class="pl-v">rax</span>
<span class="pl-en"> movabsq</span> <span class="pl-c1">$</span><span class="pl-en">jl_box_int64</span><span class="pl-s1">,</span><span class="pl-en"> %</span><span class="pl-v">rcx</span>
<span class="pl-en"> </span><span class="pl-k">movq</span><span class="pl-en"> %</span><span class="pl-v">rax</span><span class="pl-s1">,</span><span class="pl-en"> %</span><span class="pl-v">rdi</span>
<span class="pl-en"> callq </span><span class="pl-s1">*</span><span class="pl-en">%</span><span class="pl-v">rcx</span>
<span class="pl-en"> popq %</span><span class="pl-v">rdx</span>
<span class="pl-en"> retq</span></pre></div>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/vtjnash/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/vtjnash">@vtjnash</a> I remember you have a PR about <code class="notranslate">code_native</code>?<br>
Also <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Keno/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Keno">@Keno</a></p>
<p dir="auto">Edit: add missing <code class="notranslate">**not**</code></p> | <p dir="auto">ref <a class="commit-link" href="https://github.com/JuliaLang/julia/commit/b2e69d0d871b65e70175ae088c77cb39b1e9a020#commitcomment-12053593"><tt>b2e69d0</tt>#commitcomment-12053593</a> and <a href="https://github.com/JuliaLang/julia/pull/11852/files#r34115071">https://github.com/JuliaLang/julia/pull/11852/files#r34115071</a></p> | 1 |
<p dir="auto">Module loaders like <a href="https://github.com/systemjs/systemjs">systemjs</a> expect module paths to point to a valid file path, including the .js extension. Although <a href="http://exploringjs.com/es6/ch_modules.html#_modules-in-javascript" rel="nofollow">exploringjs</a> says the extension might not be needed, the module loader spec's default behaviour has not yet been decided upon. So for code to have the widest possible support it would be good to have an option to tell the compiler to add the extension.</p> | <p dir="auto">Currently, TS can't find modules when you use a file extension in the import name (<code class="notranslate">import {Foo} from './foo.ts';</code>) - <a href="https://github.com/systemjs/systemjs/releases/tag/0.17.0">SystemJS updated</a> and file extensions are now <a href="https://github.com/whatwg/loader/issues/52" data-hovercard-type="issue" data-hovercard-url="/whatwg/loader/issues/52/hovercard"><em>required</em></a> (though the spec issue is still under discussion) on imports (without setting some legacy settings in <code class="notranslate">System.config</code>). So when compiling with <code class="notranslate">--module</code>, you can either have a functioning typechecker (no extensions on your imports) or a functioning runtime (<code class="notranslate">.js</code> on your imports, since your result files have <code class="notranslate">.js</code> extensions). This is complicated further by systemjs's <a href="https://github.com/systemjs/builder">bundler</a>, which looks for dependent files <em>before</em> TS transpiles them, so you have to use <code class="notranslate">.ts</code> extensions on your imports so the <em>bundler</em> can resolve the paths to real ones.</p>
<p dir="auto">This extension madness is all incredibly awkward to work with, and I'm not sure if this needs module resolution logic updating on our part, arguing for old behavior on the loader spec, or talking to <code class="notranslate">systemjs</code> and having them change how they're finding modules ignoring the spec.</p> | 1 |
<p dir="auto"><strong>Migrated issue, originally created by Anonymous</strong></p>
<p dir="auto">it is a PITA to get a function index to work right using sqlalchemy.</p>
<p dir="auto">for those that aren't familiar... postgres , oracle and a few other dbs all allow for indexes to be created as a function</p>
<p dir="auto">the idiomatic example is:</p>
<p dir="auto">create unique index user_email_address_uidx on user(lower(email_address));</p>
<p dir="auto">which allows for case-sensitive storing of the email address, and creates a lower version to speed searching and preserve uniqueness</p>
<p dir="auto">the planners automagically use the index on queries like:<br>
select * from user where lower(email_address) = %s</p>
<p dir="auto">i'm not sure what a long-term solution would be, but in the short term... for the two most common operations, my suggestion is to add two new operators to sql.compiler</p>
<p dir="auto">operators.lower_eq : lambda x, y: "lower(%s) = lower(%s)" % (x, y),</p>
<p dir="auto">operators.upper_eq : lambda x, y: "upper(%s) = upper(%s)" % (x, y),</p>
<p dir="auto">this should work too :</p>
<p dir="auto">operators.lower_eq : lambda x, y: "lower(%s) = %s" % (x),</p>
<p dir="auto">operators.upper_eq : lambda x, y: "upper(%s) = %s" % (x),</p> | <p dir="auto"><strong>Migrated issue, originally created by Anonymous</strong></p>
<p dir="auto">The following query:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="list(session.query(Employee, Employee.company))"><pre class="notranslate"><code class="notranslate">list(session.query(Employee, Employee.company))
</code></pre></div>
<p dir="auto">unexpectedly returns 5-element tuples</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[e1, 1, u'e1', u'employee', 1),
(Employee e2, 2, u'e2', u'employee', 1),
(Employee e3, 3, u'e3', u'employee', 2)]((Employee)"><pre class="notranslate"><code class="notranslate">[e1, 1, u'e1', u'employee', 1),
(Employee e2, 2, u'e2', u'employee', 1),
(Employee e3, 3, u'e3', u'employee', 2)]((Employee)
</code></pre></div>
<p dir="auto">IMHO no one expects such a result.</p>
<p dir="auto">Full test case attached.</p>
<hr>
<p dir="auto">Attachments: <a href="../wiki/imported_issue_attachments/1328/sqlalchemy-bug-query_Employee_company.py">sqlalchemy-bug-query_Employee_company.py</a> | <a href="../wiki/imported_issue_attachments/1328/interpret-relations-as-query-entities.patch">interpret-relations-as-query-entities.patch</a></p> | 0 |
<p dir="auto">As Kubernetes moves to support more multi-tenant use cases and to increase security in general, it would be helpful if there was a way to firewall pods from other pods, ideally using something simple like labels.</p>
<p dir="auto">Is there a preferred approach to support this use case? If this is implemented via dynamic iptables rules, I assume it would need to be part of the pod definition and kubelet rather than an external firewall service? Or perhaps there are lessons learned at Google regarding how to best isolate applications?</p>
<p dir="auto">Somewhat related <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="49954539" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/2585" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/2585/hovercard" href="https://github.com/kubernetes/kubernetes/issues/2585">#2585</a>.</p> | <p dir="auto">I'd like to update a replication controller's name using <code class="notranslate">kubectl</code>, but am unable to do so.</p>
<p dir="auto">Basically, I want to mimic the <code class="notranslate">rolling-update</code> command where it creates a temporary rc name and then renames it.</p>
<p dir="auto">There are the steps I'd like to take:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="kubectl rolling-update app app-tmp -f app-rc.json
kubectl patch rc app-tmp -p '{ "metadata": { "name": "app" } }'"><pre class="notranslate"><code class="notranslate">kubectl rolling-update app app-tmp -f app-rc.json
kubectl patch rc app-tmp -p '{ "metadata": { "name": "app" } }'
</code></pre></div>
<p dir="auto">And the error I am getting:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Error from server: the name of the object (app) does not match the name on the URL (app-tmp)"><pre class="notranslate"><code class="notranslate">Error from server: the name of the object (app) does not match the name on the URL (app-tmp)
</code></pre></div> | 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 read the relevant section in the<br>
<a href="http://docs.celeryproject.org/en/latest/contributing.html#other-bugs" rel="nofollow">contribution guide</a><br>
on reporting bugs.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/issues?q=is%3Aissue+label%3A%22Issue+Type%3A+Bug+Report%22+-label%3A%22Category%3A+Documentation%22">issues list</a><br>
for similar or identical bug reports.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/pulls?q=is%3Apr+label%3A%22PR+Type%3A+Bugfix%22+-label%3A%22Category%3A+Documentation%22">pull requests list</a><br>
for existing proposed fixes.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/commits/master">commit log</a><br>
to find out if the bug was already fixed in the master branch.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included all related issues and possible duplicate issues<br>
in this issue (If there are none, check this box anyway).</li>
</ul>
<h2 dir="auto">Mandatory Debugging Information</h2>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" 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"> 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>Task invocation via <code class="notranslate">.delay()</code> not working, in our case is with django_templated_email</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>
<ul dir="auto">
<li>celery==4.3.0</li>
<li>django-celery-beat==1.5.0</li>
</ul>
<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="/usr/local/lib/python3.6/site-packages/celery/platforms.py:801: RuntimeWarning: You're running the worker with superuser privileges: this is
absolutely not recommended!
Please specify a different user using the --uid option.
User information: uid=0 euid=0 gid=0 egid=0
uid=uid, euid=euid, gid=gid, egid=egid,
-------------- celery@worker-deployment-695fbd498-rmln6 v4.3.0 (rhubarb)
---- **** -----
--- * *** * -- Linux-4.14.138+-x86_64-with-debian-10.1 2019-11-12 17:00:00
-- * - **** ---
- ** ---------- [config]
- ** ---------- .> app: app:0x7f694a5ba160
- ** ---------- .> transport: redis://10.0.0.3:6379/0
- ** ---------- .> results: disabled://
- *** --- * --- .> concurrency: 1 (prefork)
-- ******* ---- .> task events: ON
--- ***** -----
-------------- [queues]
.> celery exchange=celery(direct) key=celery
[tasks]
. accounting.tasks.generate_payment_receipt_by_collection_id
. loans.tasks.send_loan_approval_email
. loans.tasks.send_loan_approval_sms
. loans.tasks.send_loan_disbursement_sms
. loans.tasks.send_loan_rejection_email
. loans.tasks.send_loan_rejection_sms
. loans.tasks.send_loan_revision_sms
. loans.tasks.update_repayments_by_loan_id
[2019-11-12 17:00:01,232: INFO/MainProcess] Connected to redis://10.0.0.3:6379/0
[2019-11-12 17:00:01,313: INFO/MainProcess] mingle: searching for neighbors
[2019-11-12 17:00:02,423: INFO/MainProcess] mingle: sync with 1 nodes
[2019-11-12 17:00:02,424: INFO/MainProcess] mingle: sync complete
[2019-11-12 17:00:02,510: WARNING/MainProcess] /usr/local/lib/python3.6/site-packages/celery/fixups/django.py:202: UserWarning: Using settings.DEBUG leads to a memory leak, never use this setting in production environments!
warnings.warn('Using settings.DEBUG leads to a memory leak, never '
[2019-11-12 17:00:02,511: INFO/MainProcess] celery@worker-deployment-695fbd498-rmln6 ready.
[2019-11-12 17:00:27,433: INFO/MainProcess] missed heartbeat from celery@worker-deployment-594c7656c-llbh5
[2019-11-12 17:57:57,857: INFO/MainProcess] Received task: loans.tasks.send_loan_approval_sms[fbc8eefe-2155-4754-983a-2409ef2e544a]
[2019-11-12 17:57:58,008: INFO/ForkPoolWorker-1] Running loans.tasks task
[2019-11-12 17:57:59,486: INFO/ForkPoolWorker-1] Successfully sent SMS
[2019-11-12 17:57:59,487: INFO/ForkPoolWorker-1] <Response [200]>
[2019-11-12 17:58:00,761: ERROR/ForkPoolWorker-1] An error occured when sending an SMS
[2019-11-12 17:58:00,762: ERROR/ForkPoolWorker-1] Traceback
[2019-11-12 17:58:00,765: ERROR/ForkPoolWorker-1] 400 Client Error: for url: https://endpoint.api.infobip.com/sms/2/text/single
[2019-11-12 17:58:00,766: INFO/ForkPoolWorker-1] Task loans.tasks.send_loan_approval_sms[fbc8eefe-2155-4754-983a-2409ef2e544a] succeeded in 2.8980900809401646s: None
"><pre class="notranslate"><code class="notranslate">/usr/local/lib/python3.6/site-packages/celery/platforms.py:801: RuntimeWarning: You're running the worker with superuser privileges: this is
absolutely not recommended!
Please specify a different user using the --uid option.
User information: uid=0 euid=0 gid=0 egid=0
uid=uid, euid=euid, gid=gid, egid=egid,
-------------- celery@worker-deployment-695fbd498-rmln6 v4.3.0 (rhubarb)
---- **** -----
--- * *** * -- Linux-4.14.138+-x86_64-with-debian-10.1 2019-11-12 17:00:00
-- * - **** ---
- ** ---------- [config]
- ** ---------- .> app: app:0x7f694a5ba160
- ** ---------- .> transport: redis://10.0.0.3:6379/0
- ** ---------- .> results: disabled://
- *** --- * --- .> concurrency: 1 (prefork)
-- ******* ---- .> task events: ON
--- ***** -----
-------------- [queues]
.> celery exchange=celery(direct) key=celery
[tasks]
. accounting.tasks.generate_payment_receipt_by_collection_id
. loans.tasks.send_loan_approval_email
. loans.tasks.send_loan_approval_sms
. loans.tasks.send_loan_disbursement_sms
. loans.tasks.send_loan_rejection_email
. loans.tasks.send_loan_rejection_sms
. loans.tasks.send_loan_revision_sms
. loans.tasks.update_repayments_by_loan_id
[2019-11-12 17:00:01,232: INFO/MainProcess] Connected to redis://10.0.0.3:6379/0
[2019-11-12 17:00:01,313: INFO/MainProcess] mingle: searching for neighbors
[2019-11-12 17:00:02,423: INFO/MainProcess] mingle: sync with 1 nodes
[2019-11-12 17:00:02,424: INFO/MainProcess] mingle: sync complete
[2019-11-12 17:00:02,510: WARNING/MainProcess] /usr/local/lib/python3.6/site-packages/celery/fixups/django.py:202: UserWarning: Using settings.DEBUG leads to a memory leak, never use this setting in production environments!
warnings.warn('Using settings.DEBUG leads to a memory leak, never '
[2019-11-12 17:00:02,511: INFO/MainProcess] celery@worker-deployment-695fbd498-rmln6 ready.
[2019-11-12 17:00:27,433: INFO/MainProcess] missed heartbeat from celery@worker-deployment-594c7656c-llbh5
[2019-11-12 17:57:57,857: INFO/MainProcess] Received task: loans.tasks.send_loan_approval_sms[fbc8eefe-2155-4754-983a-2409ef2e544a]
[2019-11-12 17:57:58,008: INFO/ForkPoolWorker-1] Running loans.tasks task
[2019-11-12 17:57:59,486: INFO/ForkPoolWorker-1] Successfully sent SMS
[2019-11-12 17:57:59,487: INFO/ForkPoolWorker-1] <Response [200]>
[2019-11-12 17:58:00,761: ERROR/ForkPoolWorker-1] An error occured when sending an SMS
[2019-11-12 17:58:00,762: ERROR/ForkPoolWorker-1] Traceback
[2019-11-12 17:58:00,765: ERROR/ForkPoolWorker-1] 400 Client Error: for url: https://endpoint.api.infobip.com/sms/2/text/single
[2019-11-12 17:58:00,766: INFO/ForkPoolWorker-1] Task loans.tasks.send_loan_approval_sms[fbc8eefe-2155-4754-983a-2409ef2e544a] succeeded in 2.8980900809401646s: None
</code></pre></div>
<p dir="auto"></p>
</details>
<h1 dir="auto">Steps to Reproduce</h1>
<p dir="auto">I encountered this issue when doing the following</p>
<ul dir="auto">
<li>I have a task definition like this</li>
</ul>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="@shared_task
def send_loan_approval_email(loan_id):
from loans.models import Loan
from templated_email import get_templated_mail
loan = Loan.objects.get(pk=loan_id)
# some code here
email_borrower.send()
email_guarantor.send()
@shared_task
def send_loan_approval_sms(loan_id):
from loans.models import Loan
from app.services import sms_service
loan = Loan.objects.get(pk=loan_id)
log.info(f"Running {__name__} task")
sms_service.send(
# some code here
)"><pre class="notranslate"><span class="pl-en">@<span class="pl-s1">shared_task</span></span>
<span class="pl-k">def</span> <span class="pl-en">send_loan_approval_email</span>(<span class="pl-s1">loan_id</span>):
<span class="pl-k">from</span> <span class="pl-s1">loans</span>.<span class="pl-s1">models</span> <span class="pl-k">import</span> <span class="pl-v">Loan</span>
<span class="pl-k">from</span> <span class="pl-s1">templated_email</span> <span class="pl-k">import</span> <span class="pl-s1">get_templated_mail</span>
<span class="pl-s1">loan</span> <span class="pl-c1">=</span> <span class="pl-v">Loan</span>.<span class="pl-s1">objects</span>.<span class="pl-en">get</span>(<span class="pl-s1">pk</span><span class="pl-c1">=</span><span class="pl-s1">loan_id</span>)
<span class="pl-c"># some code here</span>
<span class="pl-s1">email_borrower</span>.<span class="pl-en">send</span>()
<span class="pl-s1">email_guarantor</span>.<span class="pl-en">send</span>()
<span class="pl-en">@<span class="pl-s1">shared_task</span></span>
<span class="pl-k">def</span> <span class="pl-en">send_loan_approval_sms</span>(<span class="pl-s1">loan_id</span>):
<span class="pl-k">from</span> <span class="pl-s1">loans</span>.<span class="pl-s1">models</span> <span class="pl-k">import</span> <span class="pl-v">Loan</span>
<span class="pl-k">from</span> <span class="pl-s1">app</span>.<span class="pl-s1">services</span> <span class="pl-k">import</span> <span class="pl-s1">sms_service</span>
<span class="pl-s1">loan</span> <span class="pl-c1">=</span> <span class="pl-v">Loan</span>.<span class="pl-s1">objects</span>.<span class="pl-en">get</span>(<span class="pl-s1">pk</span><span class="pl-c1">=</span><span class="pl-s1">loan_id</span>)
<span class="pl-s1">log</span>.<span class="pl-en">info</span>(<span class="pl-s">f"Running <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">__name__</span><span class="pl-kos">}</span></span> task"</span>)
<span class="pl-s1">sms_service</span>.<span class="pl-en">send</span>(
<span class="pl-c"># some code here</span>
)</pre></div>
<ul dir="auto">
<li>I have code invocation here</li>
</ul>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="class Loan:
def approve(self, by=None):
send_loan_approval_sms.delay(self.id)
send_loan_approval_email.delay(self.id)"><pre class="notranslate"><span class="pl-k">class</span> <span class="pl-v">Loan</span>:
<span class="pl-k">def</span> <span class="pl-en">approve</span>(<span class="pl-s1">self</span>, <span class="pl-s1">by</span><span class="pl-c1">=</span><span class="pl-c1">None</span>):
<span class="pl-s1">send_loan_approval_sms</span>.<span class="pl-en">delay</span>(<span class="pl-s1">self</span>.<span class="pl-s1">id</span>)
<span class="pl-s1">send_loan_approval_email</span>.<span class="pl-en">delay</span>(<span class="pl-s1">self</span>.<span class="pl-s1">id</span>)</pre></div>
<ul dir="auto">
<li>When I run <code class="notranslate">approve()</code> somehow the sms run but the email doesn't, but sometime it works too, sms consistently running, but the email sometime work sometime broken. Any idea why?</li>
</ul>
<h2 dir="auto">Required Dependencies</h2>
<ul dir="auto">
<li><strong>Minimal Python Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Celery Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Kombu Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Broker Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Result Backend Version</strong>: N/A or Unknown</li>
<li><strong>Minimal OS and/or Kernel Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Broker Client Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Result Backend Client Version</strong>: N/A or Unknown</li>
</ul>
<h3 dir="auto">Python Packages</h3>
<details>
<summary><b><code class="notranslate">pip freeze</code> Output:</b></summary>
<p dir="auto">
</p><div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="asn1crypto==0.24.0
backports.ssl-match-hostname==3.7.0.1
bcrypt==3.1.6
cached-property==1.5.1
certifi==2019.3.9
cffi==1.12.3
chardet==3.0.4
cryptography==2.6.1
Django==1.11.26
django-storages==1.7.2
docker==3.7.2
docker-compose==1.24.0
docker-pycreds==0.4.0
dockerpty==0.4.1
docopt==0.6.2
enum34==1.1.6
functools32==3.2.3.post2
idna==2.7
ipaddress==1.0.22
jsonschema==2.6.0
paramiko==2.4.2
pyasn1==0.4.5
pycparser==2.19
PyNaCl==1.3.0
pytz==2019.3
PyYAML==3.13
requests==2.20.1
six==1.12.0
texttable==0.9.1
urllib3==1.24.2
websocket-client==0.56.0
"><pre class="notranslate"><code class="notranslate">asn1crypto==0.24.0
backports.ssl-match-hostname==3.7.0.1
bcrypt==3.1.6
cached-property==1.5.1
certifi==2019.3.9
cffi==1.12.3
chardet==3.0.4
cryptography==2.6.1
Django==1.11.26
django-storages==1.7.2
docker==3.7.2
docker-compose==1.24.0
docker-pycreds==0.4.0
dockerpty==0.4.1
docopt==0.6.2
enum34==1.1.6
functools32==3.2.3.post2
idna==2.7
ipaddress==1.0.22
jsonschema==2.6.0
paramiko==2.4.2
pyasn1==0.4.5
pycparser==2.19
PyNaCl==1.3.0
pytz==2019.3
PyYAML==3.13
requests==2.20.1
six==1.12.0
texttable==0.9.1
urllib3==1.24.2
websocket-client==0.56.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=""><pre class="notranslate"></pre></div>
<p dir="auto"></p>
</details>
<h1 dir="auto">Expected Behavior</h1>
<p dir="auto">Both <code class="notranslate">send_loan_approval_sms</code> and <code class="notranslate">send_loan_approval_email</code> should emitted to worker.</p>
<h1 dir="auto">Actual Behavior</h1>
<p dir="auto">Only <code class="notranslate">send_loan_approval_sms</code> emitted to worker.</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"> 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"> 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"> 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"> 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"> I have included all related issues and possible duplicate issues<br>
in this issue (If there are none, check this box anyway).</li>
</ul>
<h2 dir="auto">Mandatory Debugging Information</h2>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have included the output of <code class="notranslate">celery -A proj report</code> in the issue.<br>
(if you are not able to do this, then at least specify the Celery<br>
version affected).</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have verified that the issue exists against the <code class="notranslate">master</code> branch of Celery.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have included the contents of <code class="notranslate">pip freeze</code> in the issue.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have included all the versions of all the external dependencies required<br>
to reproduce this bug.</li>
</ul>
<h2 dir="auto">Optional Debugging Information</h2>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one Python version<br>
and/or implementation.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one message broker and/or<br>
result backend.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one version of the message<br>
broker and/or result backend.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one operating system.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one workers pool.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue with autoscaling, retries,<br>
ETA/Countdown & rate limits disabled.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue after downgrading<br>
and/or upgrading Celery and its dependencies.</li>
</ul>
<h2 dir="auto">Related Issues and Possible Duplicates</h2>
<h4 dir="auto">Related Issues</h4>
<ul dir="auto">
<li>None</li>
</ul>
<h4 dir="auto">Possible Duplicates</h4>
<ul dir="auto">
<li>None</li>
</ul>
<h2 dir="auto">Environment & Settings</h2>
<p dir="auto"><strong>Celery version</strong>: 4.4.2</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="(base) C:\Users\headmaster\Desktop\WEB>celery -A tasks report
software -> celery:4.4.2 (cliffs) kombu:4.6.8 py:3.7.4
billiard:3.6.3.0 redis:3.4.1
platform -> system:Windows arch:64bit, WindowsPE
kernel version:10 imp:CPython
loader -> celery.loaders.app.AppLoader
settings -> transport:redis results:redis://localhost:6379/1
broker_url: 'redis://localhost:6379/0'
result_backend: 'redis://localhost:6379/1'
"><pre class="notranslate"><code class="notranslate">(base) C:\Users\headmaster\Desktop\WEB>celery -A tasks report
software -> celery:4.4.2 (cliffs) kombu:4.6.8 py:3.7.4
billiard:3.6.3.0 redis:3.4.1
platform -> system:Windows arch:64bit, WindowsPE
kernel version:10 imp:CPython
loader -> celery.loaders.app.AppLoader
settings -> transport:redis results:redis://localhost:6379/1
broker_url: 'redis://localhost:6379/0'
result_backend: 'redis://localhost:6379/1'
</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.7</li>
<li><strong>Minimal Celery Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Kombu Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Broker Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Result Backend Version</strong>: N/A or Unknown</li>
<li><strong>Minimal OS and/or Kernel Version</strong>: win10</li>
<li><strong>Minimal Broker Client Version</strong>: Redis 3.2.100</li>
<li><strong>Minimal Result Backend Client Version</strong>: N/A or Unknown</li>
</ul>
<h3 dir="auto">Python Packages</h3>
<details>
<summary><b><code class="notranslate">pip freeze</code> Output:</b></summary>
<p dir="auto">
</p><div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate"></code></pre></div>
<p dir="auto"></p>
</details>
<h3 dir="auto">Other Dependencies</h3>
<details>
<p dir="auto">
N/A
</p>
</details>
<h2 dir="auto">Minimally Reproducible Test Case</h2>
<details>
<p dir="auto">
</p><div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"></pre></div>
<p dir="auto"></p>
</details>
<h1 dir="auto">Expected Behavior</h1>
<p dir="auto">I was trying to add Celery asychronized feature to my simple flask web project as a flask beginner. After managing to install and launching celery, redis and related python pip thing, I got struggling with the delay() in the very beginning. It seemed I could not even get into the delay(). I am so frustrated, could you help me please?</p>
<p dir="auto">I have app.py and tasks.py under my flask project. (At first I wrote everything in app.py, then I split the celery object out, which didn't help)</p>
<p dir="auto">tasks.py:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from celery import Celery
celery = Celery('app', broker='redis://localhost:6379/0', backend='redis://localhost:6379/1')
@celery.task
def modeling_task():
print('yes')
"><pre class="notranslate"><code class="notranslate">from celery import Celery
celery = Celery('app', broker='redis://localhost:6379/0', backend='redis://localhost:6379/1')
@celery.task
def modeling_task():
print('yes')
</code></pre></div>
<p dir="auto">app.py:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="@app.route('/train', methods=['GET', 'POST'])
def train():
if request.method == "GET":
return render_template('train.html')
else: # when request POST
# check if the post request has the file part
if 'file' not in request.files:
return jsonify({"code": 500, "status": 'No file is uploaded!'})
if file and allowed_file(file.filename):
print(request.files['file'].filename)
print('before task')
task = modeling_task.delay()
print('after task')
return jsonify({"code": 200, "status": 'model training', "task_id": task.id})
return 'Uploading file is wrong'"><pre class="notranslate"><code class="notranslate">@app.route('/train', methods=['GET', 'POST'])
def train():
if request.method == "GET":
return render_template('train.html')
else: # when request POST
# check if the post request has the file part
if 'file' not in request.files:
return jsonify({"code": 500, "status": 'No file is uploaded!'})
if file and allowed_file(file.filename):
print(request.files['file'].filename)
print('before task')
task = modeling_task.delay()
print('after task')
return jsonify({"code": 200, "status": 'model training', "task_id": task.id})
return 'Uploading file is wrong'
</code></pre></div>
<p dir="auto">If things work well, after the server receives a uploading file, the print results on console should be</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Car_TEST.csv
before task
yes
after task"><pre class="notranslate"><code class="notranslate">Car_TEST.csv
before task
yes
after task
</code></pre></div>
<h1 dir="auto">Actual Behavior</h1>
<p dir="auto">However, the console result is simply this</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" * Detected change in 'C:\\Users\\headmaster\\Desktop\\WEB\\tasks.py', reloading
* Restarting with stat
* Debugger is active!
* Debugger PIN: 308-608-393
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
127.0.0.1 - - [22/Apr/2020 11:39:22] "GET /train HTTP/1.1" 200 -
Car_TEST.csv
before task
"><pre class="notranslate"><code class="notranslate"> * Detected change in 'C:\\Users\\headmaster\\Desktop\\WEB\\tasks.py', reloading
* Restarting with stat
* Debugger is active!
* Debugger PIN: 308-608-393
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
127.0.0.1 - - [22/Apr/2020 11:39:22] "GET /train HTTP/1.1" 200 -
Car_TEST.csv
before task
</code></pre></div>
<p dir="auto">and the server got stuck in here, keeping enlessly running.</p>
<p dir="auto">So it seems the server don't even run the "task = modeling_task.delay()", otherwise it should've print "yes" on the console, right?</p>
<p dir="auto">Would it print "yes" in another place? Why did it get stuck?</p>
<p dir="auto">Down below is the celery info:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="(base) C:\Users\headmaster\Desktop\WEB>celery worker -A tasks.celery --loglevel=info
-------------- celery@LAPTOP-KLKJCK2F v4.4.2 (cliffs)
--- ***** -----
-- ******* ---- Windows-10-10.0.18362-SP0 2020-04-22 10:55:13
- *** --- * ---
- ** ---------- [config]
- ** ---------- .> app: app:0x2526977ac08
- ** ---------- .> transport: redis://localhost:6379/0
- ** ---------- .> results: redis://localhost:6379/1
- *** --- * --- .> concurrency: 4 (prefork)
-- ******* ---- .> task events: OFF (enable -E to monitor tasks in this worker)
--- ***** -----
-------------- [queues]
.> celery exchange=celery(direct) key=celery
[tasks]
. tasks.modeling_task
[2020-04-22 10:55:15,501: INFO/SpawnPoolWorker-1] child process 6692 calling self.run()
[2020-04-22 10:55:15,511: INFO/SpawnPoolWorker-2] child process 17736 calling self.run()
[2020-04-22 10:55:15,518: INFO/SpawnPoolWorker-3] child process 16320 calling self.run()
[2020-04-22 10:55:15,571: INFO/SpawnPoolWorker-4] child process 5608 calling self.run()
[2020-04-22 10:55:15,972: INFO/MainProcess] Connected to redis://localhost:6379/0
[2020-04-22 10:55:20,332: INFO/MainProcess] mingle: searching for neighbors
[2020-04-22 10:55:27,369: INFO/MainProcess] mingle: all alone
[2020-04-22 10:55:35,402: INFO/MainProcess] celery@LAPTOP-KLKJCK2F ready."><pre class="notranslate"><code class="notranslate">(base) C:\Users\headmaster\Desktop\WEB>celery worker -A tasks.celery --loglevel=info
-------------- celery@LAPTOP-KLKJCK2F v4.4.2 (cliffs)
--- ***** -----
-- ******* ---- Windows-10-10.0.18362-SP0 2020-04-22 10:55:13
- *** --- * ---
- ** ---------- [config]
- ** ---------- .> app: app:0x2526977ac08
- ** ---------- .> transport: redis://localhost:6379/0
- ** ---------- .> results: redis://localhost:6379/1
- *** --- * --- .> concurrency: 4 (prefork)
-- ******* ---- .> task events: OFF (enable -E to monitor tasks in this worker)
--- ***** -----
-------------- [queues]
.> celery exchange=celery(direct) key=celery
[tasks]
. tasks.modeling_task
[2020-04-22 10:55:15,501: INFO/SpawnPoolWorker-1] child process 6692 calling self.run()
[2020-04-22 10:55:15,511: INFO/SpawnPoolWorker-2] child process 17736 calling self.run()
[2020-04-22 10:55:15,518: INFO/SpawnPoolWorker-3] child process 16320 calling self.run()
[2020-04-22 10:55:15,571: INFO/SpawnPoolWorker-4] child process 5608 calling self.run()
[2020-04-22 10:55:15,972: INFO/MainProcess] Connected to redis://localhost:6379/0
[2020-04-22 10:55:20,332: INFO/MainProcess] mingle: searching for neighbors
[2020-04-22 10:55:27,369: INFO/MainProcess] mingle: all alone
[2020-04-22 10:55:35,402: INFO/MainProcess] celery@LAPTOP-KLKJCK2F ready.
</code></pre></div>
<p dir="auto">redis info:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="PS D:\Applications\Redis> redis-server redis.conf
_._
_.-``__ ''-._
_.-`` `. `_. ''-._ Redis 3.2.100 (00000000/0) 64 bit
.-`` .-```. ```\/ _.,_ ''-._
( ' , .-` | `, ) Running in standalone mode
|`-._`-...-` __...-.``-._|'` _.-'| Port: 6379
| `-._ `._ / _.-' | PID: 21420
`-._ `-._ `-./ _.-' _.-'
|`-._`-._ `-.__.-' _.-'_.-'|
| `-._`-._ _.-'_.-' | http://redis.io
`-._ `-._`-.__.-'_.-' _.-'
|`-._`-._ `-.__.-' _.-'_.-'|
| `-._`-._ _.-'_.-' |
`-._ `-._`-.__.-'_.-' _.-'
`-._ `-.__.-' _.-'
`-._ _.-'
`-.__.-'
[21420] 22 Apr 10:38:22.506 # Server started, Redis version 3.2.100
[21420] 22 Apr 10:38:22.508 * DB loaded from disk: 0.000 seconds
[21420] 22 Apr 10:38:22.508 * The server is now ready to accept connections on port 6379
[21420] 22 Apr 10:43:23.025 * 10 changes in 300 seconds. Saving...
[21420] 22 Apr 10:43:23.030 * Background saving started by pid 6204
[21420] 22 Apr 10:43:23.231 # fork operation complete
[21420] 22 Apr 10:43:23.232 * Background saving terminated with success
[21420] 22 Apr 10:51:18.099 * 10 changes in 300 seconds. Saving...
[21420] 22 Apr 10:51:18.103 * Background saving started by pid 10116
[21420] 22 Apr 10:51:18.305 # fork operation complete
[21420] 22 Apr 10:51:18.306 * Background saving terminated with success
[21420] 22 Apr 10:56:19.022 * 10 changes in 300 seconds. Saving...
[21420] 22 Apr 10:56:19.026 * Background saving started by pid 11748
[21420] 22 Apr 10:56:19.227 # fork operation complete
[21420] 22 Apr 10:56:19.227 * Background saving terminated with success"><pre class="notranslate"><code class="notranslate">PS D:\Applications\Redis> redis-server redis.conf
_._
_.-``__ ''-._
_.-`` `. `_. ''-._ Redis 3.2.100 (00000000/0) 64 bit
.-`` .-```. ```\/ _.,_ ''-._
( ' , .-` | `, ) Running in standalone mode
|`-._`-...-` __...-.``-._|'` _.-'| Port: 6379
| `-._ `._ / _.-' | PID: 21420
`-._ `-._ `-./ _.-' _.-'
|`-._`-._ `-.__.-' _.-'_.-'|
| `-._`-._ _.-'_.-' | http://redis.io
`-._ `-._`-.__.-'_.-' _.-'
|`-._`-._ `-.__.-' _.-'_.-'|
| `-._`-._ _.-'_.-' |
`-._ `-._`-.__.-'_.-' _.-'
`-._ `-.__.-' _.-'
`-._ _.-'
`-.__.-'
[21420] 22 Apr 10:38:22.506 # Server started, Redis version 3.2.100
[21420] 22 Apr 10:38:22.508 * DB loaded from disk: 0.000 seconds
[21420] 22 Apr 10:38:22.508 * The server is now ready to accept connections on port 6379
[21420] 22 Apr 10:43:23.025 * 10 changes in 300 seconds. Saving...
[21420] 22 Apr 10:43:23.030 * Background saving started by pid 6204
[21420] 22 Apr 10:43:23.231 # fork operation complete
[21420] 22 Apr 10:43:23.232 * Background saving terminated with success
[21420] 22 Apr 10:51:18.099 * 10 changes in 300 seconds. Saving...
[21420] 22 Apr 10:51:18.103 * Background saving started by pid 10116
[21420] 22 Apr 10:51:18.305 # fork operation complete
[21420] 22 Apr 10:51:18.306 * Background saving terminated with success
[21420] 22 Apr 10:56:19.022 * 10 changes in 300 seconds. Saving...
[21420] 22 Apr 10:56:19.026 * Background saving started by pid 11748
[21420] 22 Apr 10:56:19.227 # fork operation complete
[21420] 22 Apr 10:56:19.227 * Background saving terminated with success
</code></pre></div>
<p dir="auto">wish you a best day!</p> | 0 |
<p dir="auto">For example, pressing <code class="notranslate">Alt+F</code> should open <code class="notranslate">File</code> menu, then press <code class="notranslate">-></code> to move to <code class="notranslate">Edit</code> menu.<br>
On Windows 7/8, this does not work after the main editor is focused, except for the welcome page.<br>
On Ubuntu Linux (Unity), the menu bar can be activated normally by keyboard.</p>
<p dir="auto">Atom version: 0.201</p> | <p dir="auto">The normal Windows <code class="notranslate">Alt+{letter}</code> menu shortcuts don't work in Atom. Holding <code class="notranslate">Alt</code> highlights the relevant letter in each menu name, but then pressing the letter doesn't open the menu. For example, <code class="notranslate">Alt+F</code> should open the File menu, but instead the Key Binding Resolver shows it invoking the following:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="editor:move-to-end-of-word atom-text-editor resources\app\keymaps\emacs.json"><pre class="notranslate"><code class="notranslate">editor:move-to-end-of-word atom-text-editor resources\app\keymaps\emacs.json
</code></pre></div>
<p dir="auto">This is a vanilla install of Atom 0.141.0 in Windows 7 Home Premium x64. I haven't opted in to enabling anything Emacs related.</p>
<p dir="auto">Pressing Alt also doesn't focus the menu bar and allow it to be navigated by arrow keys like it normally does in Windows.</p>
<p dir="auto">I'm reporting this per <a href="https://discuss.atom.io/t/alt-key-menu-bar-interaction-overrides-shortuts/9192/5" rel="nofollow">this suggestion</a></p> | 1 |
<p dir="auto">I am not sure if the title is clear enough. The reason for this issue for me is the spatial plugin for neo4j (<a href="https://github.com/neo4j/spatial">https://github.com/neo4j/spatial</a>). If you want to use neo4j with the spatial plugin completly via cypher and the rest api over http, it is not possible to configure an autoindex which takes care of adding node with 'lat' and 'lon' properties to the correct index. Without adding the nodes to the correct index they will be not found when using cypher with a <code class="notranslate">withinDistance</code> query. So after each <code class="notranslate">CREATE</code> cypher query on would have to make an additional call to the REST API.<br>
See here for a complete example / list of actions: <a href="https://gist.github.com/thomasfr/8103037">https://gist.github.com/thomasfr/8103037</a><br>
There is also a related issue on the spatial plugin: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="24947093" data-permission-text="Title is private" data-url="https://github.com/neo4j-contrib/spatial/issues/125" data-hovercard-type="issue" data-hovercard-url="/neo4j-contrib/spatial/issues/125/hovercard" href="https://github.com/neo4j-contrib/spatial/issues/125">neo4j-contrib/spatial#125</a></p>
<p dir="auto">Is it possible to add more than one auto indexing configuration, with the possibility to define the index type for different node "types", to the neo4.properties file? A node type could be identified via their labels or simply when the node has the configured properties in <code class="notranslate">node_keys_indexable</code>.</p>
<p dir="auto">cheers</p> | <p dir="auto">Using neo 2.0.1, the query:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="match (n:States)
where n.name =~ '.*rul.*'
return n.name order by n.name desc
limit 200"><pre class="notranslate"><code class="notranslate">match (n:States)
where n.name =~ '.*rul.*'
return n.name order by n.name desc
limit 200
</code></pre></div>
<p dir="auto">returns result after 14 secs. Number of n:States nodes is about 450 000, number of nodes fullfilling the condition is about 130 000 and count with the same condition returns in 1 sec. There is index on :States(name).</p>
<p dir="auto">Profiling returns</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ColumnFilter(symKeys=["n", "n.name"], returnItemNames=["n.name"], _rows=200, _db_hits=0)
Top(orderBy=["SortItem(Cached(n.name of type Any),false)"], limit="Literal(200)", _rows=200, _db_hits=0)
Extract(symKeys=["n"], exprKeys=["n.name"], _rows=131072, _db_hits=131072)
Filter(pred="LiteralRegularExpression(Property(n,name(1)),Literal(.*rul.*))", _rows=131072, _db_hits=458752)
NodeByLabel(label="States", identifier="n", _rows=458752, _db_hits=0)"><pre class="notranslate"><code class="notranslate">ColumnFilter(symKeys=["n", "n.name"], returnItemNames=["n.name"], _rows=200, _db_hits=0)
Top(orderBy=["SortItem(Cached(n.name of type Any),false)"], limit="Literal(200)", _rows=200, _db_hits=0)
Extract(symKeys=["n"], exprKeys=["n.name"], _rows=131072, _db_hits=131072)
Filter(pred="LiteralRegularExpression(Property(n,name(1)),Literal(.*rul.*))", _rows=131072, _db_hits=458752)
NodeByLabel(label="States", identifier="n", _rows=458752, _db_hits=0)
</code></pre></div>
<p dir="auto">Now, this type of match is very common to all applications - table with filter and ordering, so performance is important.</p>
<p dir="auto">This query probably doesn't use the index (because of the condition) but it should because of the order by.<br>
When running this type of query in MSSQL, server works as follows:</p>
<p dir="auto">Using index scan in descending order goes over every value and evaluates the condition. When number of items fulfilling the condition reaches 200 the work is done and result is returned. In many cases this happens in very short time (enough of items fulfilling the condition is found at the end of indexed items)</p>
<p dir="auto">In Neo4j with cypher, server probably sorts all items fulfilling the condition and then returns the 200 from the begining.</p>
<p dir="auto">Is there some plan to optimize this type of queries?</p>
<p dir="auto">Thanx and sorry, I'm new to Neo and GitHub :)</p> | 1 |
<ul dir="auto">
<li>Electron Version: 2.0.2</li>
<li>Operating System (Platform and Version): macOS 10.13.4</li>
<li>Last known working Electron version: 1.7.12</li>
</ul>
<p dir="auto">This has been noticed when trying to upgrade VS Code to Electron 2.0.2 in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="333258546" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/52196" data-hovercard-type="issue" data-hovercard-url="/microsoft/vscode/issues/52196/hovercard" href="https://github.com/microsoft/vscode/issues/52196">microsoft/vscode#52196</a></p>
<p dir="auto"><strong>Expected Behavior</strong><br>
Characters with opacity in a monospace font should be rendered without duplication (in the next whitespace).</p>
<p dir="auto"><strong>Actual behavior</strong><br>
Characters with opacity in a monospace font are rendered doubled when followed by whitespace.</p>
<p dir="auto"><strong>To Reproduce</strong><br>
Using <a href="https://github.com/electron/fiddle">https://github.com/electron/fiddle</a> , here is the HTML code needed to reproduce in the renderer:</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">
<title>Hello World!</title>
</head>
<body>
<style>
.squiggly-inline-unnecessary {
opacity: 0.6;
}
.view-line {
font-family: "Monaco";
font-weight: normal;
font-size: 14px;
line-height: 21px;
letter-spacing: 0px;
}
</style>
<div style="top:21px;height:21px;" class="view-line"><span>
<span class="mtk1">&nbsp;&nbsp;&nbsp;&nbsp;</span>
<span class="mtk5 squiggly-inline-unnecessary">const</span>
<span class="mtk1 squiggly-inline-unnecessary">&nbsp;</span>
<span class="mtk13 squiggly-inline-unnecessary">a</span>
<span class="mtk1 squiggly-inline-unnecessary">&nbsp;</span>
<span class="mtk17 squiggly-inline-unnecessary">=</span>
<span class="mtk1 squiggly-inline-unnecessary">&nbsp;</span>
<span class="mtk9 squiggly-inline-unnecessary">`hdshhdasha;</span>
</span></div>
<h1>Hello World!</h1>
<!-- All of the Node.js APIs are available in this renderer process. -->
We are using Node.js <script>document.write(process.versions.node)</script>,
Chromium <script>document.write(process.versions.chrome)</script>,
and Electron <script>document.write(process.versions.electron)</script>.
<script>
// You can also require other files to run in this process
require('./renderer.js')
</script>
</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">title</span><span class="pl-kos">></span>Hello World!<span class="pl-kos"></</span><span class="pl-ent">title</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">style</span><span class="pl-kos">></span>
.<span class="pl-c1">squiggly-inline-unnecessary</span> {
<span class="pl-c1">opacity</span><span class="pl-kos">:</span> <span class="pl-c1">0.6</span>;
}
.<span class="pl-c1">view-line</span> {
<span class="pl-c1">font-family</span><span class="pl-kos">:</span> <span class="pl-s">"Monaco"</span>;
<span class="pl-c1">font-weight</span><span class="pl-kos">:</span> normal;
<span class="pl-c1">font-size</span><span class="pl-kos">:</span> <span class="pl-c1">14<span class="pl-smi">px</span></span>;
<span class="pl-c1">line-height</span><span class="pl-kos">:</span> <span class="pl-c1">21<span class="pl-smi">px</span></span>;
<span class="pl-c1">letter-spacing</span><span class="pl-kos">:</span> <span class="pl-c1">0<span class="pl-smi">px</span></span>;
}
<span class="pl-kos"></</span><span class="pl-ent">style</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">div</span> <span class="pl-c1">style</span>="<span class="pl-s">top:21px;height:21px;</span>" <span class="pl-c1">class</span>="<span class="pl-s">view-line</span>"<span class="pl-kos">></span><span class="pl-kos"><</span><span class="pl-ent">span</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">span</span> <span class="pl-c1">class</span>="<span class="pl-s">mtk1</span>"<span class="pl-kos">></span>&nbsp;&nbsp;&nbsp;&nbsp;<span class="pl-kos"></</span><span class="pl-ent">span</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">span</span> <span class="pl-c1">class</span>="<span class="pl-s">mtk5 squiggly-inline-unnecessary</span>"<span class="pl-kos">></span>const<span class="pl-kos"></</span><span class="pl-ent">span</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">span</span> <span class="pl-c1">class</span>="<span class="pl-s">mtk1 squiggly-inline-unnecessary</span>"<span class="pl-kos">></span>&nbsp;<span class="pl-kos"></</span><span class="pl-ent">span</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">span</span> <span class="pl-c1">class</span>="<span class="pl-s">mtk13 squiggly-inline-unnecessary</span>"<span class="pl-kos">></span>a<span class="pl-kos"></</span><span class="pl-ent">span</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">span</span> <span class="pl-c1">class</span>="<span class="pl-s">mtk1 squiggly-inline-unnecessary</span>"<span class="pl-kos">></span>&nbsp;<span class="pl-kos"></</span><span class="pl-ent">span</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">span</span> <span class="pl-c1">class</span>="<span class="pl-s">mtk17 squiggly-inline-unnecessary</span>"<span class="pl-kos">></span>=<span class="pl-kos"></</span><span class="pl-ent">span</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">span</span> <span class="pl-c1">class</span>="<span class="pl-s">mtk1 squiggly-inline-unnecessary</span>"<span class="pl-kos">></span>&nbsp;<span class="pl-kos"></</span><span class="pl-ent">span</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">span</span> <span class="pl-c1">class</span>="<span class="pl-s">mtk9 squiggly-inline-unnecessary</span>"<span class="pl-kos">></span>`hdshhdasha;<span class="pl-kos"></</span><span class="pl-ent">span</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">span</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">h1</span><span class="pl-kos">></span>Hello World!<span class="pl-kos"></</span><span class="pl-ent">h1</span><span class="pl-kos">></span>
<span class="pl-c"><!-- All of the Node.js APIs are available in this renderer process. --></span>
We are using Node.js <span class="pl-kos"><</span><span class="pl-ent">script</span><span class="pl-kos">></span><span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-en">write</span><span class="pl-kos">(</span><span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">versions</span><span class="pl-kos">.</span><span class="pl-c1">node</span><span class="pl-kos">)</span><span class="pl-kos"></</span><span class="pl-ent">script</span><span class="pl-kos">></span>,
Chromium <span class="pl-kos"><</span><span class="pl-ent">script</span><span class="pl-kos">></span><span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-en">write</span><span class="pl-kos">(</span><span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">versions</span><span class="pl-kos">.</span><span class="pl-c1">chrome</span><span class="pl-kos">)</span><span class="pl-kos"></</span><span class="pl-ent">script</span><span class="pl-kos">></span>,
and Electron <span class="pl-kos"><</span><span class="pl-ent">script</span><span class="pl-kos">></span><span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-en">write</span><span class="pl-kos">(</span><span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">versions</span><span class="pl-kos">.</span><span class="pl-c1">electron</span><span class="pl-kos">)</span><span class="pl-kos"></</span><span class="pl-ent">script</span><span class="pl-kos">></span>.
<span class="pl-kos"><</span><span class="pl-ent">script</span><span class="pl-kos">></span>
<span class="pl-c">// You can also require other files to run in this process</span>
<span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'./renderer.js'</span><span class="pl-kos">)</span>
<span class="pl-kos"></</span><span class="pl-ent">script</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">body</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">html</span><span class="pl-kos">></span></pre></div>
<p dir="auto">The above should render the text:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" const a = `hdshhdasha;"><pre class="notranslate"><code class="notranslate"> const a = `hdshhdasha;
</code></pre></div>
<p dir="auto"><strong>Screenshots</strong></p>
<p dir="auto">Notice how <code class="notranslate">a</code> and <code class="notranslate">=</code> are doubled:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/9205389/41726379-4994972c-7572-11e8-9063-cda99f13d350.png"><img src="https://user-images.githubusercontent.com/9205389/41726379-4994972c-7572-11e8-9063-cda99f13d350.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto"><strong>Additional Information</strong><br>
This does not reproduce when running with <code class="notranslate">--disable-gpu</code>.<br>
This does not reproduce when removing the opacity.<br>
This does not reproduce when using two <code class="notranslate">&nbsp;</code>s in a <code class="notranslate"><span></code>.<br>
This does not reproduce on Chrome 67.<br>
This does not reproduce on all macOS machines we have tried, but it reproduces on some Windows machines.<br>
fyi <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/bpasero/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/bpasero">@bpasero</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/chrmarti/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/chrmarti">@chrmarti</a></p> | <ul dir="auto">
<li>Electron version: 1.7.6</li>
<li>Operating system: Windows 10</li>
</ul>
<h3 dir="auto">Expected behavior</h3>
<p dir="auto">Every time some the user clicks a button that downloads a file in the browser the event "will-download" should be fired.</p>
<h3 dir="auto">Actual behavior</h3>
<p dir="auto">Behavior 1. The event "will-download" is fired only for the first time some file is downloaded from the browser. If I click again to download a file the event is not fired anymore.</p>
<p dir="auto">Behavior 2. If I close and open the browser again (even without ending the application) the event if fired more than once (two, three, fore times) when I click in a button for download.</p>
<h3 dir="auto">How to reproduce</h3>
<p dir="auto">I have this code in my project where I open a window in which the user can search and download some stuff:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="let myBrowser = new BrowserWindow({ width: 1300, height: 1000, webPreferences: { nodeIntegration: false } })
myBrowser.setMenu(null)
myBrowser.loadURL('http://localhost/myurl.html')
var ses = myBrowser.webContents.session
ses.on('will-download', (event, item, webContents) => {
var fileName = item.getFilename()
var url = item.getURL()
item.setSavePath(store.get('myFolder') + '/' + fileName)
//DO SOME STUFF WITH THE FILE NAME
})"><pre class="notranslate"><code class="notranslate">let myBrowser = new BrowserWindow({ width: 1300, height: 1000, webPreferences: { nodeIntegration: false } })
myBrowser.setMenu(null)
myBrowser.loadURL('http://localhost/myurl.html')
var ses = myBrowser.webContents.session
ses.on('will-download', (event, item, webContents) => {
var fileName = item.getFilename()
var url = item.getURL()
item.setSavePath(store.get('myFolder') + '/' + fileName)
//DO SOME STUFF WITH THE FILE NAME
})
</code></pre></div>
<p dir="auto">I don't prevent the download from beeing downloaded because all of what I need to do is save in a document the name and url of the file, and set the path to save the file.</p> | 0 |
<p dir="auto">I have not thought it out, but there was a (now cleared out) issue about <code class="notranslate">np.nditer</code> not allowing to access the <code class="notranslate">it.operands</code> after the <code class="notranslate">with</code> statement is finished. For return operands, accessing it only after finishing everything doesn't seem unreasonable though.</p>
<p dir="auto">EDIT: Example code:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import numpy as np
def foo(a):
it = np.nditer([a, None])
with it:
for x,y in it:
y[...] = x * x
return it.operands[1]
b = np.arange(2)
print(foo(b))"><pre class="notranslate"><code class="notranslate">import numpy as np
def foo(a):
it = np.nditer([a, None])
with it:
for x,y in it:
y[...] = x * x
return it.operands[1]
b = np.arange(2)
print(foo(b))
</code></pre></div>
<p dir="auto">is not currently valid.</p> | <p dir="auto">See some discussion in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="316534906" data-permission-text="Title is private" data-url="https://github.com/numpy/numpy/issues/10951" data-hovercard-type="pull_request" data-hovercard-url="/numpy/numpy/pull/10951/hovercard" href="https://github.com/numpy/numpy/pull/10951">#10951</a>.</p>
<p dir="auto">The issue is that the nditer <code class="notranslate">operands</code> attribute does not always refer to the actual operand array, but rather to the temporary buffer/copy of the operand array, despite what the nditer docstring says.</p>
<p dir="auto">This is a problem for code like:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=">>> def square(a):
... with np.nditer([a, None]) as it:
... for x, y in it:
... y[...] = x*x
... return it.operands[1]"><pre class="notranslate"><span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-k">def</span> <span class="pl-en">square</span>(<span class="pl-s1">a</span>):
... <span class="pl-k">with</span> <span class="pl-s1">np</span>.<span class="pl-en">nditer</span>([<span class="pl-s1">a</span>, <span class="pl-c1">None</span>]) <span class="pl-k">as</span> <span class="pl-s1">it</span>:
... <span class="pl-k">for</span> <span class="pl-s1">x</span>, <span class="pl-s1">y</span> <span class="pl-c1">in</span> <span class="pl-s1">it</span>:
... <span class="pl-s1">y</span>[...] <span class="pl-c1">=</span> <span class="pl-s1">x</span><span class="pl-c1">*</span><span class="pl-s1">x</span>
... <span class="pl-k">return</span> <span class="pl-s1">it</span>.<span class="pl-s1">operands</span>[<span class="pl-c1">1</span>]</pre></div>
<p dir="auto">since the returned value could in principle be a temporary buffer, rather than the newly created 'out' array. In practice, this hasn't been a problem because the out arrays are never buffered, I think.</p>
<p dir="auto">Because of our recent improvements to the nditer as a context manager, and <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="316534906" data-permission-text="Title is private" data-url="https://github.com/numpy/numpy/issues/10951" data-hovercard-type="pull_request" data-hovercard-url="/numpy/numpy/pull/10951/hovercard" href="https://github.com/numpy/numpy/pull/10951">#10951</a>, there is a second problem that the operands cannot be accessed once the iterator context is exited. For instance, this means the <code class="notranslate">return</code> statement above can't currently be placed outside the with statement, even though in principle that is where it should go because the operand is only "written back to" at context exit.</p> | 1 |
<h3 dir="auto">System info</h3>
<ul dir="auto">
<li>Playwright Version: [v1.36.1]</li>
<li>Operating System: [Windows container on GitLab.]</li>
<li>Browser: [Chrome, Chromium]</li>
<li>Other info:</li>
</ul>
<p dir="auto">After upgrading to v1.36.1 I ran the Playwright job in GitLab and I got some error messages and Playwright tests don't run .The errors displayed after running <code class="notranslate">npx playwright install --with-deps</code> and <code class="notranslate">npx playwright install chrome</code></p>
<p dir="auto"><em>Failed to install browsers<br>
Error: Failed to download Chromium 115.0.5790.75 (playwright build v1071), caused by<br>
Error: Download failure, C:\Users\ContainerAdministrator\AppData\Local\ms-playwright\chromium-1071\INSTALLATION_COMPLETE does not exist</em></p>
<p dir="auto">and</p>
<p dir="auto"><em>Failed to install browsers<br>
Error: Failed to download FFMPEG playwright build v1009, caused by<br>
Error: Download failure, C:\Users\ContainerAdministrator\AppData\Local\ms-playwright\ffmpeg-1009\INSTALLATION_COMPLETE<br>
does not exist.</em></p>
<p dir="auto">Currently we are using 1.34.3 and I think it also worked on 1.35 when I tried to upgrade after the last version was out</p>
<p dir="auto">I noticed that there is a FFMPEG message so I also tried <code class="notranslate">npx playwright install ffmpeg</code> but got the same error</p> | <h3 dir="auto">System info</h3>
<ul dir="auto">
<li>Playwright Version: 1.30.0</li>
<li>Operating System: windows 10</li>
<li>Browser: chromium</li>
</ul>
<h3 dir="auto">Source code</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I provided exact source code that allows reproducing the issue locally.</li>
</ul>
<p dir="auto"><strong>Config file</strong></p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// playwright.config.ts
export default {}"><pre class="notranslate"><span class="pl-c">// playwright.config.ts</span>
<span class="pl-k">export</span> <span class="pl-k">default</span> <span class="pl-kos">{</span><span class="pl-kos">}</span></pre></div>
<p dir="auto"><strong>Test file (self-contained)</strong></p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="test('asdf', async ({ context, page }) => {
await page.setContent(
"<button onclick=\"window.open('https://www.google.com', '_blank')\">asdf</button>",
)
await context.route(/\/asdf/u, () => {})
const newPagePromise = context.waitForEvent('page')
await page.click('button')
await newPagePromise
})"><pre class="notranslate"><span class="pl-en">test</span><span class="pl-kos">(</span><span class="pl-s">'asdf'</span><span class="pl-kos">,</span> <span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-kos">{</span> context<span class="pl-kos">,</span> page <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">setContent</span><span class="pl-kos">(</span>
<span class="pl-s">"<button onclick=\"window.open('https://www.google.com', '_blank')\">asdf</button>"</span><span class="pl-kos">,</span>
<span class="pl-kos">)</span>
<span class="pl-k">await</span> <span class="pl-s1">context</span><span class="pl-kos">.</span><span class="pl-en">route</span><span class="pl-kos">(</span><span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">\/</span>asdf<span class="pl-c1">/</span>u</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-kos">}</span><span class="pl-kos">)</span>
<span class="pl-k">const</span> <span class="pl-s1">newPagePromise</span> <span class="pl-c1">=</span> <span class="pl-s1">context</span><span class="pl-kos">.</span><span class="pl-en">waitForEvent</span><span class="pl-kos">(</span><span class="pl-s">'page'</span><span class="pl-kos">)</span>
<span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">click</span><span class="pl-kos">(</span><span class="pl-s">'button'</span><span class="pl-kos">)</span>
<span class="pl-k">await</span> <span class="pl-s1">newPagePromise</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span></pre></div>
<p dir="auto"><strong>Steps</strong></p>
<ol dir="auto">
<li>enable "Show browser" in the playwright extension options on vscode's "Testing" tab</li>
<li>click the gutter run button next to the test</li>
</ol>
<p dir="auto"><strong>Expected</strong><br>
test passes</p>
<p dir="auto"><strong>Actual</strong><br>
"Browser has been closed" error<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/57028336/231640800-82fc0a77-f8b3-464c-a8d5-2ea4133d58e2.png"><img src="https://user-images.githubusercontent.com/57028336/231640800-82fc0a77-f8b3-464c-a8d5-2ea4133d58e2.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">this only occurs when running the test through the vscode extension with "Show browser" enabled. the test passes when disabling "Show browser" or when running the test with the <code class="notranslate">playwright test</code> command</p> | 0 |
<p dir="auto">By following the Templates section on <a href="http://symfony.com/doc/download-best-practices-book/" rel="nofollow">Best Practices book</a>, I should have the following code in my controller:</p>
<div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="public function indexAction()
{
return $this->render('default/index.html.twig');
}"><pre class="notranslate"><span class="pl-k">public</span> <span class="pl-k">function</span> <span class="pl-en">indexAction</span>()
{
<span class="pl-k">return</span> <span class="pl-s1"><span class="pl-c1">$</span><span class="pl-smi">this</span></span>-><span class="pl-en">render</span>(<span class="pl-s">'default/index.html.twig'</span>);
}</pre></div>
<p dir="auto">This throw the following exception:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Template name "default/index.html.twig" is not valid (format is "bundle:section:template.format.engine")."><pre class="notranslate"><code class="notranslate">Template name "default/index.html.twig" is not valid (format is "bundle:section:template.format.engine").
</code></pre></div>
<p dir="auto">I'm using <code class="notranslate">"symfony/symfony": "2.6.*"</code>.</p>
<p dir="auto">I think the template path validator should be reviewed, isn't it ?</p>
<p dir="auto">Thanks.</p> | <p dir="auto">Hello,</p>
<p dir="auto">I have update to 2.1.5... and now in all my translated site i heve this error:</p>
<p dir="auto">An exception has been thrown during the rendering of a template ("[ERROR 94] Validation failed: no DTD found ! (in n/a - line 2, column 21)<br>
[ERROR 1877] Element '{urn:oasis:names:tc:xliff:document:1.2}trans-unit': Duplicate key-sequence ['19'] in key identity-constraint '{urn:oasis:names:tc:xliff:document:1.2}K_unit_id'.</p>
<p dir="auto">Everything worked fine until now....</p>
<p dir="auto">Along also an example of a file which use xliff:</p>
<p dir="auto"><code class="notranslate"><?xml version="1.0" encoding="UTF-8" ?> <xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2"> <file source-language="en" datatype="plaintext" original="file.ext"> <body> <trans-unit id="1"> <source>Gallery</source> <target>Galeria</target> </trans-unit> <trans-unit id="2"> <source>Mustamp</source> <target>Mustamp</target> </trans-unit> <trans-unit id="3"> <source>Highlights</source> <target>Destaques</target> </trans-unit> <trans-unit id="4"> <source>HIGHLIGHTS</source> <target>DESTAQUES</target> </trans-unit> </body> </file> </xliff></code></p>
<p dir="auto">Probably'm doing something wrong, can you help me?</p>
<p dir="auto">Thanks in advance,</p>
<p dir="auto">Paulo</p> | 0 |
<h1 dir="auto">Summary of the new feature/enhancement</h1>
<p dir="auto">I want to extend my keyboard layout to allow entering specific Unicode characters that are not accessible via the plain keyboard layout. Specifically, as a German speaker who spends 99% of the time coding and 1% writing short emails or chat notices in German, I want to extend a US layout to allow easy access to German umlauts without having to change the layout:</p>
<ul dir="auto">
<li>AltGr+A -> "ä"</li>
<li>AltGr+U -> "ü"</li>
<li>AltGr+s -> "ß"<br>
and so on.</li>
</ul>
<p dir="auto">Keyboard manager only allows remapping keys to other keys or shortcuts to other existing shortcuts. What is missing is a way to remap shortcuts to characters that are not yet accessible via the layout.</p>
<h1 dir="auto">Proposed technical implementation details (optional)</h1>
<p dir="auto">"Remap shortcuts" could allow multiple alternative targets. One of them could allow entering (or pasting) an arbitrary unicode string.</p> | <p dir="auto">FancyZone Editor v2</p>
<p dir="auto"><strong>Current list of like-to-have improvements</strong></p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Improved Multi-monitor awareness and editing</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Easier renaming</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Better initial screen. Currently it is all about creating versus what i have done in the past. This would allow for easier hot swapping of layouts. One unified screen showing predefined templates and custom layouts.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Zone numbering (zones overlays need numbering as well for snapping)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Support for dark mode and high contrast. (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="491181830" data-permission-text="Title is private" data-url="https://github.com/microsoft/PowerToys/issues/326" data-hovercard-type="issue" data-hovercard-url="/microsoft/PowerToys/issues/326/hovercard" href="https://github.com/microsoft/PowerToys/issues/326">#326</a>)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Default space around zones value is the last value used</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Fine control for size zone adjustment (x/y, z-index, height / width)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Straight forward way to add / delete splitters (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="514135991" data-permission-text="Title is private" data-url="https://github.com/microsoft/PowerToys/issues/581" data-hovercard-type="issue" data-hovercard-url="/microsoft/PowerToys/issues/581/hovercard" href="https://github.com/microsoft/PowerToys/issues/581">#581</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="526692861" data-permission-text="Title is private" data-url="https://github.com/microsoft/PowerToys/issues/750" data-hovercard-type="issue" data-hovercard-url="/microsoft/PowerToys/issues/750/hovercard" href="https://github.com/microsoft/PowerToys/issues/750">#750</a>)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Have different setups for different configurations (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="489879208" data-permission-text="Title is private" data-url="https://github.com/microsoft/PowerToys/issues/177" data-hovercard-type="issue" data-hovercard-url="/microsoft/PowerToys/issues/177/hovercard" href="https://github.com/microsoft/PowerToys/issues/177">#177</a>) (at work vs home)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Disable layouts that don't fit the screen orientation (landscape vs portrait) or don't have the same screen ratio</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> A single, holistic way for customizing layout. (hinted in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="514138325" data-permission-text="Title is private" data-url="https://github.com/microsoft/PowerToys/issues/582" data-hovercard-type="issue" data-hovercard-url="/microsoft/PowerToys/issues/582/hovercard" href="https://github.com/microsoft/PowerToys/issues/582">#582</a>)
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I can edit a base template where it only splits but a custom only does custom size windows</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> even a "custom" base only does split</li>
</ul>
</li>
</ul>
<p dir="auto"><strong>Things to think about:</strong></p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Possibly think about 'magnetic / dock sides'</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Percentages versus hard numbers. This will allow me to move a custom layout instantly to a different resolution monitor</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> how a zone can cross monitor boundaries</li>
</ul>
<p dir="auto">FAR from done / perfect but doing a first stab at a spec.</p>
<p dir="auto"><a href="https://github.com/microsoft/PowerToys/blob/dev/crutkas/FzEditor2Spec/doc/specs/FancyZoneEditorV2.md">https://github.com/microsoft/PowerToys/blob/dev/crutkas/FzEditor2Spec/doc/specs/FancyZoneEditorV2.md</a></p> | 0 |
<h1 dir="auto">Summary of the new feature/enhancement</h1>
<p dir="auto">As a developer we are always working with multiple terminal windows at the moment, tabs make it easier, but makes it difficult in certain scenarios. If we have an ability to split the terminal screen vertically and horizontally just as ConEmu allow. It would be great.</p>
<p dir="auto">Use Case: Some times in Platform IO IOT development the different tools run on different python version, we have to execute some commands (build. deploy) from same path but as the python version is different, we have to open two different terminals. It would be enhancing the productivity of developer if he's able to see the results on same window split to multiple terminals.</p>
<h1 dir="auto">Proposed technical implementation details (optional)</h1> | <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/18356694/68697343-41ea2380-0544-11ea-8218-601b57fdd835.png"><img src="https://user-images.githubusercontent.com/18356694/68697343-41ea2380-0544-11ea-8218-601b57fdd835.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">This is the megathread for tracking all the work related to <a href="https://docs.microsoft.com/en-us/windows/terminal/panes" rel="nofollow">Panes</a> in the Windows Terminal.</p>
<h3 dir="auto">1.0 Features</h3>
<details>
<summary>1.0 Features</summary>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Original issue: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="441408828" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/532" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/532/hovercard" href="https://github.com/microsoft/terminal/issues/532">#532</a> -> added in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="444524947" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/825" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/825/hovercard" href="https://github.com/microsoft/terminal/pull/825">#825</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="448313444" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/991" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/991/hovercard" href="https://github.com/microsoft/terminal/issues/991">#991</a> Panes should be resizable with the keyboard. (fixed PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="454888640" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/1207" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/1207/hovercard" href="https://github.com/microsoft/terminal/pull/1207">#1207</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="448313540" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/995" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/995/hovercard" href="https://github.com/microsoft/terminal/issues/995">#995</a> The user should be able to navigate the focus of panes with the keyboard, instead of requiring the mouse. (PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="466342284" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/1910" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/1910/hovercard" href="https://github.com/microsoft/terminal/pull/1910">#1910</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="448313493" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/993" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/993/hovercard" href="https://github.com/microsoft/terminal/issues/993">#993</a> There's no keyboard shortcut for "ClosePane"</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="448313587" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/998" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/998/hovercard" href="https://github.com/microsoft/terminal/issues/998">#998</a> Open panes with a specific profile</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="448313525" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/994" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/994/hovercard" href="https://github.com/microsoft/terminal/issues/994">#994</a> There should be some sort of UI to indicate that a particular pane is focused, more than just the blinking cursor. <code class="notranslate">tmux</code> accomplishes this by colorizing the separators adjacent to the active pane. Another idea is displaying a small outline around the focused pane (like when tabbing through controls on a webpage). (PR:<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="502727659" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/3060" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/3060/hovercard" href="https://github.com/microsoft/terminal/pull/3060">#3060</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="448313604" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/999" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/999/hovercard" href="https://github.com/microsoft/terminal/issues/999">#999</a> If you click on the separator's between panes, then no panes will be focused (PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="521720879" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/3540" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/3540/hovercard" href="https://github.com/microsoft/terminal/pull/3540">#3540</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="502161197" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/3045" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/3045/hovercard" href="https://github.com/microsoft/terminal/issues/3045">#3045</a> Moving focus between panes doesn't always work (PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="537752434" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/3958" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/3958/hovercard" href="https://github.com/microsoft/terminal/pull/3958">#3958</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="521812127" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/3544" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/3544/hovercard" href="https://github.com/microsoft/terminal/issues/3544">#3544</a> Add a default keybinding for panes, to enable them by default. (PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="523141297" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/3585" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/3585/hovercard" href="https://github.com/microsoft/terminal/pull/3585">#3585</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="496647979" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/2834" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/2834/hovercard" href="https://github.com/microsoft/terminal/issues/2834">#2834</a> Snap to character grid when resizing window (PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="506354568" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/3181" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/3181/hovercard" href="https://github.com/microsoft/terminal/pull/3181">#3181</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="537781913" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/3960" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/3960/hovercard" href="https://github.com/microsoft/terminal/issues/3960">#3960</a> Automatic splits similar to tiling window managers</li>
</ul>
</details>
<h3 dir="auto">1.x features / bugs</h3>
<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="462736848" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/1756" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/1756/hovercard" href="https://github.com/microsoft/terminal/issues/1756">#1756</a> The user should be able to configure what profile is used for splitting a pane. Currently, the default profile is used, but it's possible a user might want to create a new pane with the parent pane's profile.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="448313466" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/992" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/992/hovercard" href="https://github.com/microsoft/terminal/issues/992">#992</a> Panes should be resizable with the mouse. The user should be able to drag the separator for a pair of panes, and have the content between them resize as the separator moves.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="569276430" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/4692" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/4692/hovercard" href="https://github.com/microsoft/terminal/issues/4692">#4692</a> Pane focus movement doesn't remember where it came from</li>
</ul>
<h3 dir="auto">2.0 Features / Bugs</h3>
<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="479467049" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/2398" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/2398/hovercard" href="https://github.com/microsoft/terminal/issues/2398">#2398</a> Move focus to the visually adjacent pane, not just the first pane on the other side of the separator.
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Also: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="569276430" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/4692" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/4692/hovercard" href="https://github.com/microsoft/terminal/issues/4692">#4692</a> Pane focus movement doesn't remember where it came from</li>
</ul>
</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="502727877" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/3062" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/3062/hovercard" href="https://github.com/microsoft/terminal/issues/3062">#3062</a> Add a configuration object for focused vs unfocused state</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="448313554" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/996" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/996/hovercard" href="https://github.com/microsoft/terminal/issues/996">#996</a> The user should be able to zoom a pane, to make the pane take the entire size of the terminal window temporarily.</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="614513203" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/5803" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/5803/hovercard" href="https://github.com/microsoft/terminal/issues/5803">#5803</a> <code class="notranslate">moveFocus</code> to pane using number (See also <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="604671064" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/5464" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/5464/hovercard" href="https://github.com/microsoft/terminal/issues/5464">#5464</a>)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="536517987" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/3917" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/3917/hovercard" href="https://github.com/microsoft/terminal/issues/3917">#3917</a> Panel split background ignores <code class="notranslate">requestedTheme</code>, follows system app mode</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Add a <code class="notranslate">percent</code> parameter to <code class="notranslate">SplitPane</code> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="539176264" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/3997" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/3997/hovercard" href="https://github.com/microsoft/terminal/issues/3997">#3997</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> wt split-pane (multiple copies) seems to have occasional focus issues <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="641676138" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/6586" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/6586/hovercard" href="https://github.com/microsoft/terminal/issues/6586">#6586</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="497833606" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/2871" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/2871/hovercard" href="https://github.com/microsoft/terminal/issues/2871">#2871</a> Add <del><code class="notranslate">nextPane</code> and</del> <code class="notranslate">prevPane</code> keybindings (in PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="738052219" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/8183" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/8183/hovercard" href="https://github.com/microsoft/terminal/pull/8183">#8183</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="448313651" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/1001" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/1001/hovercard" href="https://github.com/microsoft/terminal/issues/1001">#1001</a> Panes should have an optional motion effect on entrance</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Panes should have an animation when they're closed, too <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="683617017" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/7366" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/7366/hovercard" href="https://github.com/microsoft/terminal/issues/7366">#7366</a></li>
</ul>
<h3 dir="auto">Panes Titlebar Follow-ups - See <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="584012335" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/4998" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/4998/hovercard" href="https://github.com/microsoft/terminal/issues/4998">#4998</a></h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Add title to split window <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="570543653" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/4717" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/4717/hovercard" href="https://github.com/microsoft/terminal/issues/4717">#4717</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="665626811" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/7075" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/7075/hovercard" href="https://github.com/microsoft/terminal/issues/7075">#7075</a> Allow moving panes to other tabs</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Panes should have editable titles <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="678932207" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/7290" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/7290/hovercard" href="https://github.com/microsoft/terminal/issues/7290">#7290</a></li>
</ul>
<h3 dir="auto">Backlog items</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> The user should be able to tear-off tabs and dock them as a split (See <a href="https://github.com/microsoft/terminal/issues/443#issuecomment-519077162" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/443/hovercard">this comment</a>)
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="565259371" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/4587" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/4587/hovercard" href="https://github.com/microsoft/terminal/issues/4587">#4587</a> Drag & Drop Tabs to create a Pane</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Related, but different: Drag entries from the new tab menu to create panes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="812514924" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/9229" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/9229/hovercard" href="https://github.com/microsoft/terminal/issues/9229">#9229</a></li>
</ul>
</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="448313575" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/997" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/997/hovercard" href="https://github.com/microsoft/terminal/issues/997">#997</a> A pane doesn't necessarily need to host a terminal. It could potentially host another UIElement. One could imagine enabling a user to quickly open up a Browser pane to search for a particular string without needing to leave the terminal. (spec <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="450869043" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/1080" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/1080/hovercard" href="https://github.com/microsoft/terminal/pull/1080">#1080</a>)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="526772247" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/3656" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/3656/hovercard" href="https://github.com/microsoft/terminal/issues/3656">#3656</a> Add support for <code class="notranslate">tmux</code> Control Mode</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="487874983" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/2634" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/2634/hovercard" href="https://github.com/microsoft/terminal/issues/2634">#2634</a> Support broadcast input (Spec <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="821377125" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/9365" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/9365/hovercard" href="https://github.com/microsoft/terminal/pull/9365">#9365</a>)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="550834231" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/4259" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/4259/hovercard" href="https://github.com/microsoft/terminal/issues/4259">#4259</a> Open a new pane with the environment vars of the parent</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="553947732" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/4340" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/4340/hovercard" href="https://github.com/microsoft/terminal/issues/4340">#4340</a> Choose Direction to Split Pane</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> A switch panes option? Like a <code class="notranslate">switchLeft</code>, <code class="notranslate">switchRight</code>, <code class="notranslate">switchUp</code>, <code class="notranslate">switchDown</code>, to allow the user to rearrange the panes layout (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="448313626" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/1000" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/1000/hovercard?comment_id=578665067&comment_type=issue_comment" href="https://github.com/microsoft/terminal/issues/1000#issuecomment-578665067">#1000 (comment)</a>) (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="942222729" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/10638" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/10638/hovercard" href="https://github.com/microsoft/terminal/pull/10638">#10638</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="581408948" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/4922" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/4922/hovercard" href="https://github.com/microsoft/terminal/issues/4922">#4922</a> Swap panes</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="582570373" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/4941" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/4941/hovercard" href="https://github.com/microsoft/terminal/issues/4941">#4941</a> Please add support closePaneRight/Left/Up/Down</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="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> Open panes without keybindings</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="621211408" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/6002" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/6002/hovercard" href="https://github.com/microsoft/terminal/issues/6002">#6002</a> Split panes equally in size</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="625695394" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/6219" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/6219/hovercard" href="https://github.com/microsoft/terminal/issues/6219">#6219</a> Pass through <code class="notranslate">moveFocus</code> keys when the user has no panes</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="636787668" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/6459" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/6459/hovercard" href="https://github.com/microsoft/terminal/issues/6459">#6459</a> Pane focus follows mouse (PR: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="797365375" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/8965" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/8965/hovercard" href="https://github.com/microsoft/terminal/pull/8965">#8965</a>)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Moving focus with a zoomed pane should just zoom the adjacent pane <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="675047955" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/7215" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/7215/hovercard" href="https://github.com/microsoft/terminal/issues/7215">#7215</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Add a fluent animation for pane zooming <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="675054046" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/7216" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/7216/hovercard" href="https://github.com/microsoft/terminal/issues/7216">#7216</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Pane opening animation should not flash the default pane backdrop <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="683616114" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/7365" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/7365/hovercard" href="https://github.com/microsoft/terminal/issues/7365">#7365</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Use a Clip rect for Pane animations instead of the Width/Height <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="687518030" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/7436" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/7436/hovercard" href="https://github.com/microsoft/terminal/issues/7436">#7436</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Golden Ratio mode <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="762268125" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/8562" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/8562/hovercard" href="https://github.com/microsoft/terminal/issues/8562">#8562</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="523144106" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/3586" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/3586/hovercard" href="https://github.com/microsoft/terminal/issues/3586">#3586</a> Open a new pane by prompting the user for which profile to use</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="944905904" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/10665" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/10665/hovercard" href="https://github.com/microsoft/terminal/issues/10665">#10665</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="948864098" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/10733" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/10733/hovercard" href="https://github.com/microsoft/terminal/issues/10733">#10733</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="950805418" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/10757" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/10757/hovercard" href="https://github.com/microsoft/terminal/issues/10757">#10757</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="964392758" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/10909" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/10909/hovercard" href="https://github.com/microsoft/terminal/issues/10909">#10909</a> Allow moving through panes in ID order</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1106811087" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/12186" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/12186/hovercard" href="https://github.com/microsoft/terminal/issues/12186">#12186</a></li>
</ul>
<h3 dir="auto">Theming items</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="502727846" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/3061" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/3061/hovercard" href="https://github.com/microsoft/terminal/issues/3061">#3061</a> Add a setting to manually set the Pane highlight color <del>(PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="529510189" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/3752" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/terminal/pull/3752/hovercard" href="https://github.com/microsoft/terminal/pull/3752">#3752</a>)</del>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Add configurable Pane border <em>hover</em> color <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="762515917" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/8564" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/8564/hovercard" href="https://github.com/microsoft/terminal/issues/8564">#8564</a></li>
</ul>
</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="502736610" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/3063" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/3063/hovercard" href="https://github.com/microsoft/terminal/issues/3063">#3063</a> Add a setting to manually set the Pane border width</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="528900131" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/3708" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/3708/hovercard" href="https://github.com/microsoft/terminal/issues/3708">#3708</a> Add option for more subtle pane focus border</li>
</ul> | 1 |
<p dir="auto">Hi,</p>
<p dir="auto">Is there a way to run batches with QuestionAnsweringPipeline rather than just one example?</p>
<p dir="auto">Thanks.</p> | <h1 dir="auto"><g-emoji class="g-emoji" alias="desktop_computer" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f5a5.png">🖥</g-emoji> Benchmarking <code class="notranslate">transformers</code></h1>
<h2 dir="auto">Benchmark</h2>
<p dir="auto">I'm trying to benchmark QA model with <code class="notranslate">bert-large-uncased-whole-word-masking-finetuned-squad</code>. But it seems it is extremely slow e.g. 3-4 sec for 1 question with 2 contexts.</p>
<p dir="auto">I feel there is something I'm missing in pipeline.</p>
<h2 dir="auto">Sample Code:</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="def answer(self, contexts:List[str], question:str, **kwargs):
## tokenizer, model, pipeline all are cached in actual implementation
## via [reify](https://docs.pylonsproject.org/projects/pyramid/en/latest/api/decorator.html)
## so model loading is not a problem.
tokenizer = BertTokenizer.from_pretrained('bert-base-uncased', max_len=500)
model = BertForQuestionAnswering.from_pretrained('bert-large-uncased-whole-word-masking-
finetuned-squad')
pipeline('question-answering', model=model, tokenizer=tokenizer)
pipeline_input = []
for c in contexts:
pipeline_input.append({
'question' : question,
'context' : c
})
answers = pipeline(pipeline_input)"><pre class="notranslate"><code class="notranslate">def answer(self, contexts:List[str], question:str, **kwargs):
## tokenizer, model, pipeline all are cached in actual implementation
## via [reify](https://docs.pylonsproject.org/projects/pyramid/en/latest/api/decorator.html)
## so model loading is not a problem.
tokenizer = BertTokenizer.from_pretrained('bert-base-uncased', max_len=500)
model = BertForQuestionAnswering.from_pretrained('bert-large-uncased-whole-word-masking-
finetuned-squad')
pipeline('question-answering', model=model, tokenizer=tokenizer)
pipeline_input = []
for c in contexts:
pipeline_input.append({
'question' : question,
'context' : c
})
answers = pipeline(pipeline_input)
</code></pre></div>
<h2 dir="auto">Set-up</h2>
<p dir="auto">CPU: Intel(R) Core(TM) i7-8700 CPU @ 3.20GHz<br>
memory: 16GB</p> | 1 |
<p dir="auto">[Enter steps to reproduce below:]</p>
<ol dir="auto">
<li>...</li>
<li>...</li>
</ol>
<p dir="auto"><strong>Atom Version</strong>: 0.166.0<br>
<strong>System</strong>: linux 3.13.0-35-generic<br>
<strong>Thrown From</strong>: Atom Core</p>
<h3 dir="auto">Stack Trace</h3>
<p dir="auto">Uncaught Error: Atom can only handle files < 2MB for now.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At /usr/share/atom/resources/app/src/project.js:355
Error: Atom can only handle files < 2MB for now.
at Project.module.exports.Project.buildBuffer (/usr/share/atom/resources/app/src/project.js:355:15)
at Project.module.exports.Project.bufferForPath (/usr/share/atom/resources/app/src/project.js:332:63)
at Project.module.exports.Project.open (/usr/share/atom/resources/app/src/project.js:286:19)
at Workspace.module.exports.Workspace.openUriInPane (/usr/share/atom/resources/app/src/workspace.js:485:29)
at Workspace.module.exports.Workspace.open (/usr/share/atom/resources/app/src/workspace.js:412:19)
at Ipc.<anonymous> (/usr/share/atom/resources/app/src/window-event-handler.js:45:32)
at Ipc.emit (events.js:110:17)
at process.<anonymous> (/usr/share/atom/resources/atom/renderer/api/lib/ipc.js:22:29)
at process.emit (events.js:118:17)
"><pre class="notranslate"><code class="notranslate">At /usr/share/atom/resources/app/src/project.js:355
Error: Atom can only handle files < 2MB for now.
at Project.module.exports.Project.buildBuffer (/usr/share/atom/resources/app/src/project.js:355:15)
at Project.module.exports.Project.bufferForPath (/usr/share/atom/resources/app/src/project.js:332:63)
at Project.module.exports.Project.open (/usr/share/atom/resources/app/src/project.js:286:19)
at Workspace.module.exports.Workspace.openUriInPane (/usr/share/atom/resources/app/src/workspace.js:485:29)
at Workspace.module.exports.Workspace.open (/usr/share/atom/resources/app/src/workspace.js:412:19)
at Ipc.<anonymous> (/usr/share/atom/resources/app/src/window-event-handler.js:45:32)
at Ipc.emit (events.js:110:17)
at process.<anonymous> (/usr/share/atom/resources/atom/renderer/api/lib/ipc.js:22:29)
at process.emit (events.js:118:17)
</code></pre></div>
<h3 dir="auto">Commands</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate"></code></pre></div>
<h3 dir="auto">Config</h3>
<div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{
"core": {
"disabledPackages": [
"autocomplete-clang"
]
},
"editor": {
"fontSize": 13,
"invisibles": {}
}
}"><pre class="notranslate">{
<span class="pl-ent">"core"</span>: {
<span class="pl-ent">"disabledPackages"</span>: [
<span class="pl-s"><span class="pl-pds">"</span>autocomplete-clang<span class="pl-pds">"</span></span>
]
},
<span class="pl-ent">"editor"</span>: {
<span class="pl-ent">"fontSize"</span>: <span class="pl-c1">13</span>,
<span class="pl-ent">"invisibles"</span>: {}
}
}</pre></div>
<h3 dir="auto">Installed Packages</h3>
<div class="highlight highlight-source-coffee notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# User
minimap, v3.5.2
vim-mode, v0.24.0
# Dev
No dev packages"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> User</span>
minimap, v3.<span class="pl-ii">5</span>.<span class="pl-ii">2</span>
vim<span class="pl-k">-</span>mode, v0.<span class="pl-ii">24</span>.<span class="pl-ii">0</span>
<span class="pl-c"><span class="pl-c">#</span> Dev</span>
<span class="pl-en">No</span> <span class="pl-en">dev</span> packages</pre></div> | <p dir="auto">I really like having different panes but that aren't very friendly to the keyboard.</p>
<p dir="auto">For example if I want to open a new file into a split right pane, I have to open an EXISTING file into the pane, have two copies of it open long enough for me to CLICK into the new file then open the file I want on the right side of my screen. Then I close the duplicate file that allowed me to have the pane open in the first place.</p>
<p dir="auto">Alot of effort.</p>
<p dir="auto">I'd love the ability to open a new pane at least from the Fuzzy File Finder, something like maybe an alt-enter or command+1 for "Open in nth pane" would be such a huge improvement.</p> | 0 |
<p dir="auto">Hello, I've been using the search engine with powertoys run a lot. Something I've noticed is that every time I try and run an application I use less frequently, the search engine only brings up files with a similar name, essentially every program I have installed has smaller bin with the same name. It would be incredible if there was a way to prioritize programs that are installed onto my disc, because right now I have my search engine set to only show 6 results, and very often, not a single one of those 6 are my application.</p> | <p dir="auto">I tend to search for already running processes quite frequently. It would be awesome to write something like this <code class="notranslate">Chrome @running</code></p>
<p dir="auto">Do you think this concept can be generalized as a search query mechanism for Power Toys Run?</p> | 1 |
<h1 dir="auto">What / Why</h1>
<p dir="auto">Hi There, i have been trying to install the dependencies to a web-application my company is building. When attempting a "npm install", this returns an error. I Have added files to help.</p>
<h2 dir="auto">When</h2>
<p dir="auto">Whenever i do an "npm install"</p>
<h2 dir="auto">Where</h2>
<p dir="auto">a clone of a repository that resides on bitbucket</p>
<h2 dir="auto">How</h2>
<h3 dir="auto">Current Behavior</h3>
<p dir="auto">1536 silly pacote range manifest for popper.js@^1.14.7 fetched in 13347ms<br>
1537 warn deprecated [email protected]: You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1<br>
1538 http fetch GET 200 <a href="https://registry.npmjs.org/date-fns/-/date-fns-2.12.0.tgz" rel="nofollow">https://registry.npmjs.org/date-fns/-/date-fns-2.12.0.tgz</a> 18439ms<br>
1539 silly pacote range manifest for date-fns@^2.6.0 fetched in 21909ms<br>
1540 timing npm Completed in 316754ms<br>
1541 error cb() never called!<br>
1542 error This is an error with npm itself.</p>
<ul dir="auto">
<li>n/a</li>
</ul>
<h3 dir="auto">Steps to Reproduce</h3>
<p dir="auto">a simple npm install from the package.json file.</p>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">it should install all the packages.</p>
<h2 dir="auto">Who</h2>
<p dir="auto">@npm/team</p>
<h2 dir="auto">References</h2>
<p dir="auto">The 'package.json' file<br>
<code class="notranslate">{ "scripts": { "webpack": "webpack --hide-modules --progress", "dev": "webpack --mode development --hide-modules --watch --progress", "build": "webpack --mode production --hide-modules --progress" }, "dependencies": { "@coreui/coreui": "^2.1.12", "@coreui/icons": "^0.4.1", "@coreui/vue": "^2.1.2", "@fullcalendar/bootstrap": "^4.3.0", "@fullcalendar/core": "^4.3.1", "@fullcalendar/daygrid": "^4.3.0", "@fullcalendar/interaction": "^4.3.0", "@fullcalendar/moment": "^4.3.0", "@fullcalendar/moment-timezone": "^4.3.0", "@fullcalendar/timegrid": "^4.3.0", "@fullcalendar/vue": "^4.3.1", "axios": "^0.19.0", "bootstrap": "^4.3.1", "bootstrap-vue": "^2.0.3", "chart.js": "^2.9.3", "font-awesome": "^4.7.0", "lodash": "^4.17.15", "moment": "^2.24.0", "moment-timezone": "^0.5.26", "perfect-scrollbar": "^1.4.0", "printd": "^1.4.1", "resize-observer-polyfill": "^1.5.1", "simple-line-icons": "^2.4.1", "v-calendar": "^1.0.0-beta.22", "vue": "^2.6.10", "vue-chartjs": "^3.5.0", "vue-cookies": "^1.5.13", "vue-loading-overlay": "^3.3.2", "vue-router": "^3.1.3", "vue-scrollto": "^2.17.1", "vue-session": "^1.0.0", "vue-the-mask": "^0.11.1", "vuex": "^3.1.1" }, "devDependencies": { "@babel/core": "^7.6.2", "@babel/preset-env": "^7.6.2", "@vue/babel-preset-app": "^4.1.2", "babel-loader": "^8.0.6", "babel-plugin-module-resolver": "^3.2.0", "babel-polyfill": "^6.26.0", "babel-runtime": "^6.26.0", "clean-webpack-plugin": "^3.0.0", "css-loader": "^3.2.0", "file-loader": "^4.2.0", "mini-css-extract-plugin": "^0.9.0", "node-sass": "^4.12.0", "optimize-css-assets-webpack-plugin": "^5.0.3", "sass-loader": "^8.0.0", "uglifyjs-webpack-plugin": "^2.2.0", "url-loader": "^2.1.0", "vue-loader": "^15.7.1", "vue-style-loader": "^4.1.2", "vue-template-compiler": "^2.6.10", "webpack": "^4.41.0", "webpack-bundle-tracker": "^0.4.3", "webpack-cli": "^3.3.9" } } </code></p>
<p dir="auto">The complete error log:</p>
<p dir="auto">`<br>
0.30001040.tgz 1214ms<br>
797 silly pacote range manifest for caniuse-lite@^1.0.30001038 fetched in 13700ms<br>
798 http fetch GET 304 <a href="https://registry.npmjs.org/rimraf" rel="nofollow">https://registry.npmjs.org/rimraf</a> 174ms (from cache)<br>
799 silly pacote range manifest for rimraf@^2.6.3 fetched in 177ms<br>
800 http fetch GET 200 <a href="https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz</a> 169ms<br>
801 silly pacote range manifest for promise-inflight@^1.0.1 fetched in 385ms<br>
802 http fetch GET 200 <a href="https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz</a> 374ms<br>
803 http fetch GET 200 <a href="https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz</a> 172ms<br>
804 silly pacote range manifest for move-concurrently@^1.0.1 fetched in 462ms<br>
805 silly pacote range manifest for mississippi@^3.0.0 fetched in 751ms<br>
806 http fetch GET 200 <a href="https://registry.npmjs.org/lru-cache" rel="nofollow">https://registry.npmjs.org/lru-cache</a> 1051ms<br>
807 http fetch GET 200 <a href="https://registry.npmjs.org/ssri" rel="nofollow">https://registry.npmjs.org/ssri</a> 304ms<br>
808 http fetch GET 200 <a href="https://registry.npmjs.org/y18n" rel="nofollow">https://registry.npmjs.org/y18n</a> 257ms<br>
809 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fglob" rel="nofollow">https://registry.npmjs.org/@types%2fglob</a> 285ms<br>
810 http fetch GET 200 <a href="https://registry.npmjs.org/unique-filename" rel="nofollow">https://registry.npmjs.org/unique-filename</a> 580ms<br>
811 http fetch GET 200 <a href="https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz" rel="nofollow">https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz</a> 436ms<br>
812 silly pacote range manifest for ssri@^6.0.1 fetched in 745ms<br>
813 http fetch GET 200 <a href="https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz" rel="nofollow">https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz</a> 438ms<br>
814 http fetch GET 200 <a href="https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz" rel="nofollow">https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz</a> 625ms<br>
815 http fetch GET 200 <a href="https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz" rel="nofollow">https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz</a> 351ms<br>
816 silly pacote range manifest for y18n@^4.0.0 fetched in 704ms<br>
817 silly pacote range manifest for lru-cache@^5.1.1 fetched in 1687ms<br>
818 silly pacote range manifest for @types/glob@^7.1.1 fetched in 649ms<br>
819 http fetch GET 200 <a href="https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz" rel="nofollow">https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz</a> 223ms<br>
820 silly pacote range manifest for unique-filename@^1.1.1 fetched in 806ms<br>
821 http fetch GET 200 <a href="https://registry.npmjs.org/globby" rel="nofollow">https://registry.npmjs.org/globby</a> 766ms<br>
822 http fetch GET 200 <a href="https://registry.npmjs.org/is-path-in-cwd" rel="nofollow">https://registry.npmjs.org/is-path-in-cwd</a> 288ms<br>
823 http fetch GET 200 <a href="https://registry.npmjs.org/p-map" rel="nofollow">https://registry.npmjs.org/p-map</a> 666ms<br>
824 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fanymatch" rel="nofollow">https://registry.npmjs.org/@types%2fanymatch</a> 778ms<br>
825 http fetch GET 200 <a href="https://registry.npmjs.org/globby/-/globby-6.1.0.tgz" rel="nofollow">https://registry.npmjs.org/globby/-/globby-6.1.0.tgz</a> 3428ms<br>
826 silly pacote range manifest for globby@^6.1.0 fetched in 4206ms<br>
827 http fetch GET 200 <a href="https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz</a> 3125ms<br>
828 silly pacote range manifest for p-map@^2.0.0 fetched in 3797ms<br>
829 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2ftapable" rel="nofollow">https://registry.npmjs.org/@types%2ftapable</a> 828ms<br>
830 http fetch GET 200 <a href="https://registry.npmjs.org/@types/tapable/-/tapable-1.0.5.tgz" rel="nofollow">https://registry.npmjs.org/@types/tapable/-/tapable-1.0.5.tgz</a> 228ms<br>
831 silly pacote range manifest for @types/tapable@* fetched in 1060ms<br>
832 http fetch GET 200 <a href="https://registry.npmjs.org/is-path-cwd" rel="nofollow">https://registry.npmjs.org/is-path-cwd</a> 6302ms<br>
833 http fetch GET 200 <a href="https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz" rel="nofollow">https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz</a> 188ms<br>
834 silly pacote range manifest for is-path-cwd@^2.0.0 fetched in 6497ms<br>
835 silly pacote range manifest for source-map@^0.6.0 fetched in 5ms<br>
836 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fwebpack-sources" rel="nofollow">https://registry.npmjs.org/@types%2fwebpack-sources</a> 1811ms<br>
837 http fetch GET 200 <a href="https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-0.1.7.tgz" rel="nofollow">https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-0.1.7.tgz</a> 189ms<br>
838 silly pacote range manifest for @types/webpack-sources@* fetched in 2005ms<br>
839 silly pacote range manifest for moment@^2.10.2 fetched in 3ms<br>
840 silly pacote range manifest for resolve@^1.8.1 fetched in 1ms<br>
841 silly pacote range manifest for semver@^5.5.1 fetched in 2ms<br>
842 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fnode" rel="nofollow">https://registry.npmjs.org/@types%2fnode</a> 6770ms<br>
843 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fuglify-js" rel="nofollow">https://registry.npmjs.org/@types%2fuglify-js</a> 3075ms<br>
844 http fetch GET 200 <a href="https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz</a> 6585ms<br>
845 silly pacote range manifest for is-path-in-cwd@^2.0.0 fetched in 6879ms<br>
846 http fetch GET 200 <a href="https://registry.npmjs.org/@types/anymatch/-/anymatch-1.3.1.tgz" rel="nofollow">https://registry.npmjs.org/@types/anymatch/-/anymatch-1.3.1.tgz</a> 6125ms<br>
847 silly pacote range manifest for @types/anymatch@* fetched in 6928ms<br>
848 http fetch GET 200 <a href="https://registry.npmjs.org/chartjs-color" rel="nofollow">https://registry.npmjs.org/chartjs-color</a> 536ms<br>
849 http fetch GET 200 <a href="https://registry.npmjs.org/@vue%2fbabel-helper-vue-jsx-merge-props" rel="nofollow">https://registry.npmjs.org/@vue%2fbabel-helper-vue-jsx-merge-props</a> 469ms<br>
850 http fetch GET 200 <a href="https://registry.npmjs.org/@types/node/-/node-13.11.1.tgz" rel="nofollow">https://registry.npmjs.org/@types/node/-/node-13.11.1.tgz</a> 466ms<br>
851 silly pacote range manifest for @types/node@* fetched in 7249ms<br>
852 http fetch GET 200 <a href="https://registry.npmjs.org/@vue%2fbabel-plugin-transform-vue-jsx" rel="nofollow">https://registry.npmjs.org/@vue%2fbabel-plugin-transform-vue-jsx</a> 536ms<br>
853 http fetch GET 200 <a href="https://registry.npmjs.org/@vue%2fbabel-sugar-functional-vue" rel="nofollow">https://registry.npmjs.org/@vue%2fbabel-sugar-functional-vue</a> 520ms<br>
854 http fetch GET 200 <a href="https://registry.npmjs.org/chartjs-color/-/chartjs-color-2.4.1.tgz" rel="nofollow">https://registry.npmjs.org/chartjs-color/-/chartjs-color-2.4.1.tgz</a> 503ms<br>
855 silly pacote range manifest for chartjs-color@^2.1.0 fetched in 1079ms<br>
856 http fetch GET 200 <a href="https://registry.npmjs.org/@vue/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/@vue/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-1.0.0.tgz</a> 410ms<br>
857 silly pacote range manifest for @vue/babel-helper-vue-jsx-merge-props@^1.0.0 fetched in 885ms<br>
858 http fetch GET 200 <a href="https://registry.npmjs.org/@vue/babel-plugin-transform-vue-jsx/-/babel-plugin-transform-vue-jsx-1.1.2.tgz" rel="nofollow">https://registry.npmjs.org/@vue/babel-plugin-transform-vue-jsx/-/babel-plugin-transform-vue-jsx-1.1.2.tgz</a> 190ms<br>
859 silly pacote range manifest for @vue/babel-plugin-transform-vue-jsx@^1.1.2 fetched in 734ms<br>
860 http fetch GET 200 <a href="https://registry.npmjs.org/@vue/babel-sugar-functional-vue/-/babel-sugar-functional-vue-1.1.2.tgz" rel="nofollow">https://registry.npmjs.org/@vue/babel-sugar-functional-vue/-/babel-sugar-functional-vue-1.1.2.tgz</a> 189ms<br>
861 silly pacote range manifest for @vue/babel-sugar-functional-vue@^1.1.2 fetched in 715ms<br>
862 http fetch GET 200 <a href="https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.0.5.tgz" rel="nofollow">https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.0.5.tgz</a> 779ms<br>
863 silly pacote range manifest for @types/uglify-js@* fetched in 3858ms<br>
864 http fetch GET 200 <a href="https://registry.npmjs.org/@vue%2fbabel-sugar-v-model" rel="nofollow">https://registry.npmjs.org/@vue%2fbabel-sugar-v-model</a> 220ms<br>
865 http fetch GET 200 <a href="https://registry.npmjs.org/@vue%2fbabel-sugar-v-on" rel="nofollow">https://registry.npmjs.org/@vue%2fbabel-sugar-v-on</a> 243ms<br>
866 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelper-create-class-features-plugin" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-create-class-features-plugin</a> 247ms<br>
867 http fetch GET 200 <a href="https://registry.npmjs.org/@vue%2fbabel-sugar-inject-h" rel="nofollow">https://registry.npmjs.org/@vue%2fbabel-sugar-inject-h</a> 576ms<br>
868 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-decorators" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-decorators</a> 325ms<br>
869 http fetch GET 200 <a href="https://registry.npmjs.org/@vue/babel-sugar-v-model/-/babel-sugar-v-model-1.1.2.tgz" rel="nofollow">https://registry.npmjs.org/@vue/babel-sugar-v-model/-/babel-sugar-v-model-1.1.2.tgz</a> 260ms<br>
870 http fetch GET 200 <a href="https://registry.npmjs.org/@vue/babel-sugar-v-on/-/babel-sugar-v-on-1.1.2.tgz" rel="nofollow">https://registry.npmjs.org/@vue/babel-sugar-v-on/-/babel-sugar-v-on-1.1.2.tgz</a> 230ms<br>
871 silly pacote range manifest for @vue/babel-sugar-v-model@^1.1.2 fetched in 486ms<br>
872 silly pacote range manifest for @vue/babel-sugar-v-on@^1.1.2 fetched in 482ms<br>
873 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.9.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.9.5.tgz</a> 211ms<br>
874 silly pacote range manifest for @babel/helper-create-class-features-plugin@^7.8.3 fetched in 466ms<br>
875 http fetch GET 200 <a href="https://registry.npmjs.org/@vue/babel-sugar-inject-h/-/babel-sugar-inject-h-1.1.2.tgz" rel="nofollow">https://registry.npmjs.org/@vue/babel-sugar-inject-h/-/babel-sugar-inject-h-1.1.2.tgz</a> 257ms<br>
876 silly pacote range manifest for @vue/babel-sugar-inject-h@^1.1.2 fetched in 839ms<br>
877 silly pacote range manifest for strip-ansi@^3.0.0 fetched in 2ms<br>
878 silly pacote range manifest for supports-color@^2.0.0 fetched in 2ms<br>
879 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.8.3.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.8.3.tgz</a> 250ms<br>
880 silly pacote range manifest for @babel/plugin-syntax-decorators@^7.8.3 fetched in 587ms<br>
881 http fetch GET 304 <a href="https://registry.npmjs.org/ansi-styles" rel="nofollow">https://registry.npmjs.org/ansi-styles</a> 249ms (from cache)<br>
882 silly pacote range manifest for ansi-styles@^2.2.1 fetched in 252ms<br>
883 http fetch GET 304 <a href="https://registry.npmjs.org/escape-string-regexp" rel="nofollow">https://registry.npmjs.org/escape-string-regexp</a> 254ms (from cache)<br>
884 silly pacote range manifest for escape-string-regexp@^1.0.2 fetched in 256ms<br>
885 http fetch GET 304 <a href="https://registry.npmjs.org/has-ansi" rel="nofollow">https://registry.npmjs.org/has-ansi</a> 196ms (from cache)<br>
886 silly pacote range manifest for has-ansi@^2.0.0 fetched in 198ms<br>
887 http fetch GET 200 <a href="https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz" rel="nofollow">https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz</a> 170ms<br>
888 silly pacote range manifest for lru-cache@^4.0.1 fetched in 176ms<br>
889 http fetch GET 200 <a href="https://registry.npmjs.org/which" rel="nofollow">https://registry.npmjs.org/which</a> 165ms<br>
890 http fetch GET 200 <a href="https://registry.npmjs.org/decamelize" rel="nofollow">https://registry.npmjs.org/decamelize</a> 212ms<br>
891 http fetch GET 200 <a href="https://registry.npmjs.org/loud-rejection" rel="nofollow">https://registry.npmjs.org/loud-rejection</a> 198ms<br>
892 http fetch GET 200 <a href="https://registry.npmjs.org/object.assign" rel="nofollow">https://registry.npmjs.org/object.assign</a> 927ms<br>
893 http fetch GET 200 <a href="https://registry.npmjs.org/map-obj" rel="nofollow">https://registry.npmjs.org/map-obj</a> 201ms<br>
894 http fetch GET 200 <a href="https://registry.npmjs.org/which/-/which-1.3.1.tgz" rel="nofollow">https://registry.npmjs.org/which/-/which-1.3.1.tgz</a> 179ms<br>
895 silly pacote range manifest for which@^1.2.9 fetched in 350ms<br>
896 silly pacote range manifest for minimist@^1.1.3 fetched in 2ms<br>
897 http fetch GET 200 <a href="https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz" rel="nofollow">https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz</a> 153ms<br>
898 silly pacote range manifest for decamelize@^1.1.2 fetched in 373ms<br>
899 http fetch GET 200 <a href="https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz" rel="nofollow">https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz</a> 163ms<br>
900 silly pacote range manifest for loud-rejection@^1.0.0 fetched in 367ms<br>
901 http fetch GET 200 <a href="https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz" rel="nofollow">https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz</a> 249ms<br>
902 silly pacote range manifest for object.assign@^4.1.0 fetched in 1181ms<br>
903 http fetch GET 200 <a href="https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz</a> 271ms<br>
904 silly pacote range manifest for map-obj@^1.0.1 fetched in 475ms<br>
905 http fetch GET 200 <a href="https://registry.npmjs.org/normalize-package-data" rel="nofollow">https://registry.npmjs.org/normalize-package-data</a> 269ms<br>
906 http fetch GET 200 <a href="https://registry.npmjs.org/read-pkg-up" rel="nofollow">https://registry.npmjs.org/read-pkg-up</a> 261ms<br>
907 http fetch GET 200 <a href="https://registry.npmjs.org/redent" rel="nofollow">https://registry.npmjs.org/redent</a> 233ms<br>
908 http fetch GET 200 <a href="https://registry.npmjs.org/trim-newlines" rel="nofollow">https://registry.npmjs.org/trim-newlines</a> 179ms<br>
909 http fetch GET 200 <a href="https://registry.npmjs.org/globule" rel="nofollow">https://registry.npmjs.org/globule</a> 177ms<br>
910 http fetch GET 200 <a href="https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz</a> 162ms<br>
911 silly pacote range manifest for read-pkg-up@^1.0.1 fetched in 430ms<br>
912 http fetch GET 200 <a href="https://registry.npmjs.org/redent/-/redent-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/redent/-/redent-1.0.0.tgz</a> 196ms<br>
913 http fetch GET 200 <a href="https://registry.npmjs.org/camelcase-keys" rel="nofollow">https://registry.npmjs.org/camelcase-keys</a> 858ms<br>
914 silly pacote range manifest for redent@^1.0.0 fetched in 438ms<br>
915 silly pacote range manifest for graceful-fs@^4.1.2 fetched in 2ms<br>
916 silly pacote range manifest for mkdirp@^0.5.0 fetched in 2ms<br>
917 http fetch GET 200 <a href="https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz</a> 176ms<br>
918 silly pacote range manifest for trim-newlines@^1.0.0 fetched in 360ms<br>
919 silly pacote range manifest for npmlog@0 || 1 || 2 || 3 || 4 fetched in 2ms<br>
920 http fetch GET 200 <a href="https://registry.npmjs.org/globule/-/globule-1.3.1.tgz" rel="nofollow">https://registry.npmjs.org/globule/-/globule-1.3.1.tgz</a> 227ms<br>
921 silly pacote range manifest for globule@^1.0.0 fetched in 410ms<br>
922 silly pacote range manifest for request@^2.87.0 fetched in 6ms<br>
923 silly pacote range manifest for rimraf@2 fetched in 6ms<br>
924 http fetch GET 200 <a href="https://registry.npmjs.org/fstream" rel="nofollow">https://registry.npmjs.org/fstream</a> 248ms<br>
925 http fetch GET 200 <a href="https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz</a> 208ms<br>
926 silly pacote range manifest for camelcase-keys@^2.0.0 fetched in 1072ms<br>
927 http fetch GET 200 <a href="https://registry.npmjs.org/osenv" rel="nofollow">https://registry.npmjs.org/osenv</a> 238ms<br>
928 http fetch GET 200 <a href="https://registry.npmjs.org/semver/-/semver-5.3.0.tgz" rel="nofollow">https://registry.npmjs.org/semver/-/semver-5.3.0.tgz</a> 250ms<br>
929 silly pacote range manifest for semver@~5.3.0 fetched in 255ms<br>
930 silly pacote range manifest for which@1 fetched in 2ms<br>
931 http fetch GET 200 <a href="https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz" rel="nofollow">https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz</a> 256ms<br>
932 silly pacote range manifest for fstream@^1.0.0 fetched in 511ms<br>
933 http fetch GET 200 <a href="https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz" rel="nofollow">https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz</a> 451ms<br>
934 silly pacote range manifest for osenv@0 fetched in 694ms<br>
935 http fetch GET 200 <a href="https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz" rel="nofollow">https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz</a> 1043ms<br>
936 http fetch GET 200 <a href="https://registry.npmjs.org/nopt" rel="nofollow">https://registry.npmjs.org/nopt</a> 792ms<br>
937 silly pacote range manifest for normalize-package-data@^2.3.4 fetched in 1322ms<br>
938 http fetch GET 200 <a href="https://registry.npmjs.org/are-we-there-yet" rel="nofollow">https://registry.npmjs.org/are-we-there-yet</a> 438ms<br>
939 http fetch GET 200 <a href="https://registry.npmjs.org/console-control-strings" rel="nofollow">https://registry.npmjs.org/console-control-strings</a> 602ms<br>
940 http fetch GET 200 <a href="https://registry.npmjs.org/gauge" rel="nofollow">https://registry.npmjs.org/gauge</a> 765ms<br>
941 http fetch GET 200 <a href="https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz" rel="nofollow">https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz</a> 1325ms<br>
942 silly pacote range manifest for nopt@2 || 3 fetched in 2123ms<br>
943 http fetch GET 200 <a href="https://registry.npmjs.org/set-blocking" rel="nofollow">https://registry.npmjs.org/set-blocking</a> 1360ms<br>
944 http fetch GET 200 <a href="https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz</a> 1141ms<br>
945 silly pacote range manifest for console-control-strings@~1.1.0 fetched in 1748ms<br>
946 http fetch GET 200 <a href="https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz" rel="nofollow">https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz</a> 795ms<br>
947 http fetch GET 200 <a href="https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz" rel="nofollow">https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz</a> 1470ms<br>
948 silly pacote range manifest for gauge@~2.7.3 fetched in 1567ms<br>
949 silly pacote range manifest for are-we-there-yet@~1.1.2 fetched in 1919ms<br>
950 http fetch GET 304 <a href="https://registry.npmjs.org/aws-sign2" rel="nofollow">https://registry.npmjs.org/aws-sign2</a> 219ms (from cache)<br>
951 silly pacote range manifest for aws-sign2@~0.7.0 fetched in 220ms<br>
952 http fetch GET 200 <a href="https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz</a> 205ms<br>
953 silly pacote range manifest for set-blocking@~2.0.0 fetched in 1579ms<br>
954 http fetch GET 304 <a href="https://registry.npmjs.org/aws4" rel="nofollow">https://registry.npmjs.org/aws4</a> 186ms (from cache)<br>
955 silly pacote range manifest for aws4@^1.8.0 fetched in 187ms<br>
956 http fetch GET 304 <a href="https://registry.npmjs.org/caseless" rel="nofollow">https://registry.npmjs.org/caseless</a> 174ms (from cache)<br>
957 silly pacote range manifest for caseless@~0.12.0 fetched in 176ms<br>
958 http fetch GET 304 <a href="https://registry.npmjs.org/combined-stream" rel="nofollow">https://registry.npmjs.org/combined-stream</a> 182ms (from cache)<br>
959 http fetch GET 200 <a href="https://registry.npmjs.org/tar" rel="nofollow">https://registry.npmjs.org/tar</a> 2285ms<br>
960 silly pacote range manifest for combined-stream@~1.0.6 fetched in 188ms<br>
961 http fetch GET 304 <a href="https://registry.npmjs.org/extend" rel="nofollow">https://registry.npmjs.org/extend</a> 179ms (from cache)<br>
962 silly pacote range manifest for extend@~3.0.2 fetched in 181ms<br>
963 http fetch GET 304 <a href="https://registry.npmjs.org/forever-agent" rel="nofollow">https://registry.npmjs.org/forever-agent</a> 200ms (from cache)<br>
964 silly pacote range manifest for forever-agent@~0.6.1 fetched in 203ms<br>
965 http fetch GET 304 <a href="https://registry.npmjs.org/form-data" rel="nofollow">https://registry.npmjs.org/form-data</a> 207ms (from cache)<br>
966 silly pacote range manifest for form-data@~2.3.2 fetched in 209ms<br>
967 http fetch GET 304 <a href="https://registry.npmjs.org/har-validator" rel="nofollow">https://registry.npmjs.org/har-validator</a> 141ms (from cache)<br>
968 silly pacote range manifest for har-validator@~5.1.3 fetched in 143ms<br>
969 http fetch GET 304 <a href="https://registry.npmjs.org/http-signature" rel="nofollow">https://registry.npmjs.org/http-signature</a> 523ms (from cache)<br>
970 silly pacote range manifest for http-signature@~1.2.0 fetched in 527ms<br>
971 http fetch GET 304 <a href="https://registry.npmjs.org/is-typedarray" rel="nofollow">https://registry.npmjs.org/is-typedarray</a> 909ms (from cache)<br>
972 silly pacote range manifest for is-typedarray@~1.0.0 fetched in 911ms<br>
973 http fetch GET 304 <a href="https://registry.npmjs.org/isstream" rel="nofollow">https://registry.npmjs.org/isstream</a> 1124ms (from cache)<br>
974 http fetch GET 304 <a href="https://registry.npmjs.org/json-stringify-safe" rel="nofollow">https://registry.npmjs.org/json-stringify-safe</a> 1107ms (from cache)<br>
975 silly pacote range manifest for isstream@~0.1.2 fetched in 1127ms<br>
976 silly pacote range manifest for json-stringify-safe@~5.0.1 fetched in 1111ms<br>
977 http fetch GET 304 <a href="https://registry.npmjs.org/mime-types" rel="nofollow">https://registry.npmjs.org/mime-types</a> 1094ms (from cache)<br>
978 silly pacote range manifest for safe-buffer@^5.1.2 fetched in 8ms<br>
979 silly pacote range manifest for mime-types@~2.1.19 fetched in 1103ms<br>
980 http fetch GET 304 <a href="https://registry.npmjs.org/performance-now" rel="nofollow">https://registry.npmjs.org/performance-now</a> 334ms (from cache)<br>
981 silly pacote range manifest for performance-now@^2.1.0 fetched in 336ms<br>
982 http fetch GET 304 <a href="https://registry.npmjs.org/qs" rel="nofollow">https://registry.npmjs.org/qs</a> 165ms (from cache)<br>
983 silly pacote range manifest for qs@~6.5.2 fetched in 170ms<br>
984 silly pacote range manifest for glob@^7.0.0 fetched in 2ms<br>
985 silly pacote range manifest for lodash@^4.0.0 fetched in 4ms<br>
986 http fetch GET 304 <a href="https://registry.npmjs.org/tough-cookie" rel="nofollow">https://registry.npmjs.org/tough-cookie</a> 172ms (from cache)<br>
987 silly pacote range manifest for tough-cookie@~2.5.0 fetched in 175ms<br>
988 http fetch GET 304 <a href="https://registry.npmjs.org/tunnel-agent" rel="nofollow">https://registry.npmjs.org/tunnel-agent</a> 181ms (from cache)<br>
989 silly pacote range manifest for tunnel-agent@^0.6.0 fetched in 183ms<br>
990 http fetch GET 304 <a href="https://registry.npmjs.org/uuid" rel="nofollow">https://registry.npmjs.org/uuid</a> 167ms (from cache)<br>
991 silly pacote range manifest for uuid@^3.3.2 fetched in 170ms<br>
992 http fetch GET 304 <a href="https://registry.npmjs.org/oauth-sign" rel="nofollow">https://registry.npmjs.org/oauth-sign</a> 953ms (from cache)<br>
993 silly pacote range manifest for oauth-sign@~0.9.0 fetched in 954ms<br>
994 silly pacote range manifest for loose-envify@^1.2.0 fetched in 1ms<br>
995 http fetch GET 200 <a href="https://registry.npmjs.org/tar/-/tar-2.2.2.tgz" rel="nofollow">https://registry.npmjs.org/tar/-/tar-2.2.2.tgz</a> 1509ms<br>
996 silly pacote range manifest for tar@^2.0.0 fetched in 3799ms<br>
997 silly pacote range manifest for @babel/template@^7.8.3 fetched in 2ms<br>
998 http fetch GET 200 <a href="https://registry.npmjs.org/scss-tokenizer" rel="nofollow">https://registry.npmjs.org/scss-tokenizer</a> 213ms<br>
999 http fetch GET 304 <a href="https://registry.npmjs.org/readable-stream" rel="nofollow">https://registry.npmjs.org/readable-stream</a> 509ms (from cache)<br>
1000 silly pacote range manifest for readable-stream@^2.0.1 fetched in 514ms<br>
1001 http fetch GET 304 <a href="https://registry.npmjs.org/ansi-regex" rel="nofollow">https://registry.npmjs.org/ansi-regex</a> 487ms (from cache)<br>
1002 silly pacote range manifest for ansi-regex@^4.1.0 fetched in 492ms<br>
1003 http fetch GET 200 <a href="https://registry.npmjs.org/debug/-/debug-3.1.0.tgz" rel="nofollow">https://registry.npmjs.org/debug/-/debug-3.1.0.tgz</a> 512ms<br>
1004 silly pacote version manifest for debug@=3.1.0 fetched in 517ms<br>
1005 silly pacote range manifest for @babel/traverse@^7.8.6 fetched in 4ms<br>
1006 silly pacote range manifest for @babel/helper-validator-identifier@^7.9.0 fetched in 4ms<br>
1007 silly pacote range manifest for chalk@^2.0.0 fetched in 4ms<br>
1008 http fetch GET 200 <a href="https://registry.npmjs.org/jsesc" rel="nofollow">https://registry.npmjs.org/jsesc</a> 883ms<br>
1009 http fetch GET 200 <a href="https://registry.npmjs.org/yargs" rel="nofollow">https://registry.npmjs.org/yargs</a> 1547ms<br>
1010 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelper-member-expression-to-functions" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-member-expression-to-functions</a> 1283ms<br>
1011 http fetch GET 200 <a href="https://registry.npmjs.org/js-tokens" rel="nofollow">https://registry.npmjs.org/js-tokens</a> 1730ms<br>
1012 http fetch GET 200 <a href="https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz" rel="nofollow">https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz</a> 1625ms<br>
1013 silly pacote range manifest for jsesc@^2.5.1 fetched in 2514ms<br>
1014 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.3.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.3.tgz</a> 1404ms<br>
1015 silly pacote range manifest for @babel/helper-member-expression-to-functions@^7.8.3 fetched in 2694ms<br>
1016 silly pacote range manifest for lru-cache@^4.1.2 fetched in 3ms<br>
1017 http fetch GET 200 <a href="https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" rel="nofollow">https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz</a> 958ms<br>
1018 http fetch GET 200 <a href="https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz" rel="nofollow">https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz</a> 3099ms<br>
1019 silly pacote range manifest for js-tokens@^4.0.0 fetched in 2695ms<br>
1020 silly pacote range manifest for scss-tokenizer@^0.2.3 fetched in 3321ms<br>
1021 silly fetchPackageMetaData error for electron-to-chromium@^1.3.390 Response timeout while trying to fetch <a href="https://registry.npmjs.org/electron-to-chromium" rel="nofollow">https://registry.npmjs.org/electron-to-chromium</a> (over 30000ms)<br>
1022 http fetch GET 304 <a href="https://registry.npmjs.org/consolidate" rel="nofollow">https://registry.npmjs.org/consolidate</a> 1875ms (from cache)<br>
1023 http fetch GET 200 <a href="https://registry.npmjs.org/merge-source-map" rel="nofollow">https://registry.npmjs.org/merge-source-map</a> 2989ms<br>
1024 http fetch GET 200 <a href="https://registry.npmjs.org/vue-template-es2015-compiler" rel="nofollow">https://registry.npmjs.org/vue-template-es2015-compiler</a> 3254ms<br>
1025 http fetch GET 200 <a href="https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz" rel="nofollow">https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz</a> 3604ms<br>
1026 silly pacote range manifest for regenerator-runtime@^0.13.4 fetched in 3608ms<br>
1027 silly pacote range manifest for fast-deep-equal@^3.1.1 fetched in 1ms<br>
1028 http fetch GET 200 <a href="https://registry.npmjs.org/consolidate/-/consolidate-0.15.1.tgz" rel="nofollow">https://registry.npmjs.org/consolidate/-/consolidate-0.15.1.tgz</a> 3003ms<br>
1029 silly pacote range manifest for consolidate@^0.15.1 fetched in 4885ms<br>
1030 http fetch GET 200 <a href="https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.1.0.tgz</a> 1489ms<br>
1031 silly pacote range manifest for merge-source-map@^1.1.0 fetched in 4490ms<br>
1032 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelper-optimise-call-expression" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-optimise-call-expression</a> 7477ms<br>
1033 http fetch GET 304 <a href="https://registry.npmjs.org/json-schema-traverse" rel="nofollow">https://registry.npmjs.org/json-schema-traverse</a> 512ms (from cache)<br>
1034 http fetch GET 304 <a href="https://registry.npmjs.org/fast-json-stable-stringify" rel="nofollow">https://registry.npmjs.org/fast-json-stable-stringify</a> 622ms (from cache)<br>
1035 http fetch GET 304 <a href="https://registry.npmjs.org/uri-js" rel="nofollow">https://registry.npmjs.org/uri-js</a> 311ms (from cache)<br>
1036 silly pacote range manifest for json-schema-traverse@^0.4.1 fetched in 515ms<br>
1037 silly pacote range manifest for fast-json-stable-stringify@^2.0.0 fetched in 625ms<br>
1038 silly pacote range manifest for uri-js@^4.2.2 fetched in 314ms<br>
1039 silly pacote range manifest for escape-string-regexp@^1.0.5 fetched in 2ms<br>
1040 silly pacote range manifest for ansi-styles@^3.2.1 fetched in 5ms<br>
1041 silly pacote range manifest for supports-color@^5.3.0 fetched in 3ms<br>
1042 silly pacote range manifest for minimist@^1.2.0 fetched in 4ms<br>
1043 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.3.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.3.tgz</a> 205ms<br>
1044 http fetch GET 200 <a href="https://registry.npmjs.org/indexes-of" rel="nofollow">https://registry.npmjs.org/indexes-of</a> 195ms<br>
1045 silly pacote range manifest for @babel/helper-optimise-call-expression@^7.8.3 fetched in 7692ms<br>
1046 http fetch GET 200 <a href="https://registry.npmjs.org/uniq" rel="nofollow">https://registry.npmjs.org/uniq</a> 244ms<br>
1047 http fetch GET 304 <a href="https://registry.npmjs.org/has-flag" rel="nofollow">https://registry.npmjs.org/has-flag</a> 262ms (from cache)<br>
1048 silly pacote range manifest for has-flag@^3.0.0 fetched in 264ms<br>
1049 http fetch GET 200 <a href="https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz</a> 177ms<br>
1050 silly pacote range manifest for indexes-of@^1.0.1 fetched in 377ms<br>
1051 silly pacote range manifest for @babel/runtime@^7.8.4 fetched in 2ms<br>
1052 http fetch GET 200 <a href="https://registry.npmjs.org/regexpu-core" rel="nofollow">https://registry.npmjs.org/regexpu-core</a> 271ms<br>
1053 http fetch GET 200 <a href="https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz</a> 231ms<br>
1054 silly pacote range manifest for uniq@^1.0.1 fetched in 479ms<br>
1055 http fetch GET 200 <a href="https://registry.npmjs.org/private" rel="nofollow">https://registry.npmjs.org/private</a> 165ms<br>
1056 http fetch GET 200 <a href="https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.0.tgz" rel="nofollow">https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.0.tgz</a> 220ms<br>
1057 silly pacote range manifest for regexpu-core@^4.7.0 fetched in 498ms<br>
1058 silly pacote range manifest for @babel/traverse@^7.8.3 fetched in 4ms<br>
1059 silly pacote range manifest for js-tokens@^3.0.0 || ^4.0.0 fetched in 3ms<br>
1060 silly pacote range manifest for semver@^5.6.0 fetched in 2ms<br>
1061 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelper-wrap-function" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-wrap-function</a> 282ms<br>
1062 http fetch GET 200 <a href="https://registry.npmjs.org/private/-/private-0.1.8.tgz" rel="nofollow">https://registry.npmjs.org/private/-/private-0.1.8.tgz</a> 229ms<br>
1063 silly pacote range manifest for private@^0.1.8 fetched in 400ms<br>
1064 http fetch GET 200 <a href="https://registry.npmjs.org/prettier" rel="nofollow">https://registry.npmjs.org/prettier</a> 5547ms<br>
1065 http fetch GET 200 <a href="https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz</a> 189ms<br>
1066 silly pacote range manifest for find-up@^3.0.0 fetched in 193ms<br>
1067 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.8.3.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.8.3.tgz</a> 206ms<br>
1068 silly pacote range manifest for @babel/helper-wrap-function@^7.8.3 fetched in 494ms<br>
1069 http fetch GET 304 <a href="https://registry.npmjs.org/wrappy" rel="nofollow">https://registry.npmjs.org/wrappy</a> 239ms (from cache)<br>
1070 silly pacote range manifest for wrappy@1 fetched in 241ms<br>
1071 http fetch GET 304 <a href="https://registry.npmjs.org/brace-expansion" rel="nofollow">https://registry.npmjs.org/brace-expansion</a> 799ms (from cache)<br>
1072 silly pacote range manifest for brace-expansion@^1.1.7 fetched in 801ms<br>
1073 http fetch GET 200 <a href="https://registry.npmjs.org/locate-path" rel="nofollow">https://registry.npmjs.org/locate-path</a> 1085ms<br>
1074 http fetch GET 200 <a href="https://registry.npmjs.org/prr" rel="nofollow">https://registry.npmjs.org/prr</a> 1047ms<br>
1075 http fetch GET 200 <a href="https://registry.npmjs.org/isobject" rel="nofollow">https://registry.npmjs.org/isobject</a> 2071ms<br>
1076 http fetch GET 200 <a href="https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz</a> 2202ms<br>
1077 silly pacote range manifest for locate-path@^2.0.0 fetched in 3291ms<br>
1078 silly pacote range manifest for object-assign@^4.1.0 fetched in 2ms<br>
1079 http fetch GET 200 <a href="https://registry.npmjs.org/prr/-/prr-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/prr/-/prr-1.0.1.tgz</a> 2417ms<br>
1080 silly pacote range manifest for prr@~1.0.1 fetched in 3468ms<br>
1081 http fetch GET 200 <a href="https://registry.npmjs.org/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz" rel="nofollow">https://registry.npmjs.org/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz</a> 6428ms<br>
1082 silly pacote range manifest for vue-template-es2015-compiler@^1.9.0 fetched in 9688ms<br>
1083 silly pacote range manifest for glob@^7.1.3 fetched in 2ms<br>
1084 http fetch GET 200 <a href="https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz" rel="nofollow">https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz</a> 1352ms<br>
1085 silly pacote range manifest for isobject@^3.0.1 fetched in 3428ms<br>
1086 http fetch GET 200 <a href="https://registry.npmjs.org/strict-uri-encode" rel="nofollow">https://registry.npmjs.org/strict-uri-encode</a> 871ms<br>
1087 http fetch GET 200 <a href="https://registry.npmjs.org/is-plain-obj" rel="nofollow">https://registry.npmjs.org/is-plain-obj</a> 717ms<br>
1088 http fetch GET 200 <a href="https://registry.npmjs.org/copy-concurrently" rel="nofollow">https://registry.npmjs.org/copy-concurrently</a> 333ms<br>
1089 http fetch GET 200 <a href="https://registry.npmjs.org/aproba" rel="nofollow">https://registry.npmjs.org/aproba</a> 185ms<br>
1090 http fetch GET 200 <a href="https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz</a> 236ms<br>
1091 silly pacote range manifest for strict-uri-encode@^1.0.0 fetched in 1112ms<br>
1092 http fetch GET 200 <a href="https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz</a> 189ms<br>
1093 silly pacote range manifest for is-plain-obj@^1.0.0 fetched in 911ms<br>
1094 silly pacote range manifest for rimraf@^2.5.4 fetched in 1ms<br>
1095 http fetch GET 200 <a href="https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz" rel="nofollow">https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz</a> 236ms<br>
1096 http fetch GET 200 <a href="https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz" rel="nofollow">https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz</a> 227ms<br>
1097 silly pacote range manifest for copy-concurrently@^1.0.0 fetched in 580ms<br>
1098 silly pacote range manifest for aproba@^1.1.1 fetched in 421ms<br>
1099 http fetch GET 200 <a href="https://registry.npmjs.org/fs-write-stream-atomic" rel="nofollow">https://registry.npmjs.org/fs-write-stream-atomic</a> 197ms<br>
1100 http fetch GET 200 <a href="https://registry.npmjs.org/run-queue" rel="nofollow">https://registry.npmjs.org/run-queue</a> 235ms<br>
1101 http fetch GET 200 <a href="https://registry.npmjs.org/concat-stream" rel="nofollow">https://registry.npmjs.org/concat-stream</a> 191ms<br>
1102 http fetch GET 200 <a href="https://registry.npmjs.org/duplexify" rel="nofollow">https://registry.npmjs.org/duplexify</a> 260ms<br>
1103 http fetch GET 200 <a href="https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz" rel="nofollow">https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz</a> 246ms<br>
1104 silly pacote range manifest for fs-write-stream-atomic@^1.0.8 fetched in 447ms<br>
1105 http fetch GET 200 <a href="https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz" rel="nofollow">https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz</a> 197ms<br>
1106 silly pacote range manifest for run-queue@^1.0.3 fetched in 438ms<br>
1107 http fetch GET 200 <a href="https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz" rel="nofollow">https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz</a> 199ms<br>
1108 silly pacote range manifest for concat-stream@^1.5.0 fetched in 398ms<br>
1109 http fetch GET 200 <a href="https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz" rel="nofollow">https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz</a> 202ms<br>
1110 silly pacote range manifest for duplexify@^3.4.2 fetched in 469ms<br>
1111 http fetch GET 304 <a href="https://registry.npmjs.org/end-of-stream" rel="nofollow">https://registry.npmjs.org/end-of-stream</a> 208ms (from cache)<br>
1112 silly pacote range manifest for end-of-stream@^1.1.0 fetched in 210ms<br>
1113 http fetch GET 200 <a href="https://registry.npmjs.org/flush-write-stream" rel="nofollow">https://registry.npmjs.org/flush-write-stream</a> 261ms<br>
1114 http fetch GET 200 <a href="https://registry.npmjs.org/from2" rel="nofollow">https://registry.npmjs.org/from2</a> 192ms<br>
1115 http fetch GET 200 <a href="https://registry.npmjs.org/parallel-transform" rel="nofollow">https://registry.npmjs.org/parallel-transform</a> 320ms<br>
1116 http fetch GET 200 <a href="https://registry.npmjs.org/pump" rel="nofollow">https://registry.npmjs.org/pump</a> 311ms<br>
1117 http fetch GET 200 <a href="https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz" rel="nofollow">https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz</a> 251ms<br>
1118 silly pacote range manifest for flush-write-stream@^1.0.0 fetched in 517ms<br>
1119 http fetch GET 200 <a href="https://registry.npmjs.org/from2/-/from2-2.3.0.tgz" rel="nofollow">https://registry.npmjs.org/from2/-/from2-2.3.0.tgz</a> 330ms<br>
1120 silly pacote range manifest for from2@^2.1.0 fetched in 528ms<br>
1121 http fetch GET 200 <a href="https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz" rel="nofollow">https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz</a> 370ms<br>
1122 silly pacote range manifest for parallel-transform@^1.1.0 fetched in 695ms<br>
1123 http fetch GET 200 <a href="https://registry.npmjs.org/pump/-/pump-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/pump/-/pump-3.0.0.tgz</a> 430ms<br>
1124 silly pacote range manifest for pump@^3.0.0 fetched in 745ms<br>
1125 http fetch GET 200 <a href="https://registry.npmjs.org/pumpify" rel="nofollow">https://registry.npmjs.org/pumpify</a> 492ms<br>
1126 http fetch GET 200 <a href="https://registry.npmjs.org/stream-each" rel="nofollow">https://registry.npmjs.org/stream-each</a> 432ms<br>
1127 http fetch GET 200 <a href="https://registry.npmjs.org/through2" rel="nofollow">https://registry.npmjs.org/through2</a> 529ms<br>
1128 http fetch GET 200 <a href="https://registry.npmjs.org/yallist" rel="nofollow">https://registry.npmjs.org/yallist</a> 515ms<br>
1129 http fetch GET 200 <a href="https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz" rel="nofollow">https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz</a> 482ms<br>
1130 silly pacote range manifest for pumpify@^1.3.3 fetched in 979ms<br>
1131 http fetch GET 200 <a href="https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz" rel="nofollow">https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz</a> 452ms<br>
1132 silly pacote range manifest for stream-each@^1.1.0 fetched in 890ms<br>
1133 http fetch GET 200 <a href="https://registry.npmjs.org/through2/-/through2-2.0.5.tgz" rel="nofollow">https://registry.npmjs.org/through2/-/through2-2.0.5.tgz</a> 1699ms<br>
1134 silly pacote range manifest for through2@^2.0.0 fetched in 2236ms<br>
1135 http fetch GET 200 <a href="https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz" rel="nofollow">https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz</a> 1662ms<br>
1136 silly pacote range manifest for yallist@^3.0.2 fetched in 2181ms<br>
1137 http fetch GET 200 <a href="https://registry.npmjs.org/unique-slug" rel="nofollow">https://registry.npmjs.org/unique-slug</a> 2947ms<br>
1138 http fetch GET 304 <a href="https://registry.npmjs.org/array-union" rel="nofollow">https://registry.npmjs.org/array-union</a> 2964ms (from cache)<br>
1139 silly pacote range manifest for array-union@^1.0.1 fetched in 2967ms<br>
1140 silly pacote range manifest for pify@^2.0.0 fetched in 1ms<br>
1141 http fetch GET 200 <a href="https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz" rel="nofollow">https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz</a> 197ms<br>
1142 silly pacote range manifest for unique-slug@^2.0.0 fetched in 3149ms<br>
1143 http fetch GET 304 <a href="https://registry.npmjs.org/pinkie-promise" rel="nofollow">https://registry.npmjs.org/pinkie-promise</a> 233ms (from cache)<br>
1144 silly pacote range manifest for pinkie-promise@^2.0.0 fetched in 236ms<br>
1145 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fsource-list-map" rel="nofollow">https://registry.npmjs.org/@types%2fsource-list-map</a> 168ms<br>
1146 http fetch GET 200 <a href="https://registry.npmjs.org/is-path-inside" rel="nofollow">https://registry.npmjs.org/is-path-inside</a> 264ms<br>
1147 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fminimatch" rel="nofollow">https://registry.npmjs.org/@types%2fminimatch</a> 5856ms<br>
1148 http fetch GET 200 <a href="https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz" rel="nofollow">https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz</a> 981ms<br>
1149 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fevents" rel="nofollow">https://registry.npmjs.org/@types%2fevents</a> 5920ms<br>
1150 silly pacote range manifest for @types/source-list-map@* fetched in 1158ms<br>
1151 http fetch GET 200 <a href="https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz" rel="nofollow">https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz</a> 1732ms<br>
1152 silly pacote range manifest for @types/minimatch@* fetched in 7592ms<br>
1153 http fetch GET 200 <a href="https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz</a> 1731ms<br>
1154 http fetch GET 304 <a href="https://registry.npmjs.org/color-convert" rel="nofollow">https://registry.npmjs.org/color-convert</a> 1731ms (from cache)<br>
1155 silly pacote range manifest for color-convert@^1.9.3 fetched in 1734ms<br>
1156 silly pacote range manifest for @types/events@* fetched in 7666ms<br>
1157 silly pacote range manifest for @babel/helper-module-imports@^7.0.0 fetched in 7ms<br>
1158 silly pacote range manifest for @babel/plugin-syntax-jsx@^7.2.0 fetched in 2ms<br>
1159 http fetch GET 200 <a href="https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz</a> 2575ms<br>
1160 silly pacote range manifest for is-path-inside@^2.1.0 fetched in 2843ms<br>
1161 http fetch GET 200 <a href="https://registry.npmjs.org/chartjs-color-string" rel="nofollow">https://registry.npmjs.org/chartjs-color-string</a> 189ms<br>
1162 http fetch GET 200 <a href="https://registry.npmjs.org/html-tags" rel="nofollow">https://registry.npmjs.org/html-tags</a> 215ms<br>
1163 http fetch GET 200 <a href="https://registry.npmjs.org/lodash.kebabcase" rel="nofollow">https://registry.npmjs.org/lodash.kebabcase</a> 245ms<br>
1164 http fetch GET 200 <a href="https://registry.npmjs.org/svg-tags" rel="nofollow">https://registry.npmjs.org/svg-tags</a> 244ms<br>
1165 http fetch GET 200 <a href="https://registry.npmjs.org/chartjs-color-string/-/chartjs-color-string-0.6.0.tgz" rel="nofollow">https://registry.npmjs.org/chartjs-color-string/-/chartjs-color-string-0.6.0.tgz</a> 1202ms<br>
1166 silly pacote range manifest for chartjs-color-string@^0.6.0 fetched in 1395ms<br>
1167 silly pacote range manifest for camelcase@^5.0.0 fetched in 3ms<br>
1168 silly pacote range manifest for ansi-regex@^2.0.0 fetched in 1ms<br>
1169 http fetch GET 200 <a href="https://registry.npmjs.org/html-tags/-/html-tags-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/html-tags/-/html-tags-2.0.0.tgz</a> 1191ms<br>
1170 silly pacote range manifest for html-tags@^2.0.0 fetched in 1412ms<br>
1171 http fetch GET 200 <a href="https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz" rel="nofollow">https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz</a> 1181ms<br>
1172 silly pacote range manifest for lodash.kebabcase@^4.1.1 fetched in 1431ms<br>
1173 http fetch GET 200 <a href="https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz</a> 1191ms<br>
1174 silly pacote range manifest for svg-tags@^1.0.0 fetched in 1439ms<br>
1175 http fetch GET 200 <a href="https://registry.npmjs.org/pseudomap" rel="nofollow">https://registry.npmjs.org/pseudomap</a> 220ms<br>
1176 http fetch GET 200 <a href="https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz" rel="nofollow">https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz</a> 215ms<br>
1177 silly pacote range manifest for yallist@^2.1.2 fetched in 220ms<br>
1178 http fetch GET 200 <a href="https://registry.npmjs.org/isexe" rel="nofollow">https://registry.npmjs.org/isexe</a> 214ms<br>
1179 http fetch GET 200 <a href="https://registry.npmjs.org/currently-unhandled" rel="nofollow">https://registry.npmjs.org/currently-unhandled</a> 256ms<br>
1180 http fetch GET 200 <a href="https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz" rel="nofollow">https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz</a> 235ms<br>
1181 silly pacote range manifest for pseudomap@^1.0.2 fetched in 461ms<br>
1182 http fetch GET 304 <a href="https://registry.npmjs.org/signal-exit" rel="nofollow">https://registry.npmjs.org/signal-exit</a> 263ms (from cache)<br>
1183 silly pacote range manifest for signal-exit@^3.0.0 fetched in 265ms<br>
1184 http fetch GET 200 <a href="https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz</a> 293ms<br>
1185 silly pacote range manifest for isexe@^2.0.0 fetched in 514ms<br>
1186 http fetch GET 200 <a href="https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz" rel="nofollow">https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz</a> 318ms<br>
1187 silly pacote range manifest for currently-unhandled@^0.4.1 fetched in 580ms<br>
1188 http fetch GET 200 <a href="https://registry.npmjs.org/define-properties" rel="nofollow">https://registry.npmjs.org/define-properties</a> 552ms<br>
1189 http fetch GET 200 <a href="https://registry.npmjs.org/function-bind" rel="nofollow">https://registry.npmjs.org/function-bind</a> 968ms<br>
1190 http fetch GET 200 <a href="https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" rel="nofollow">https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz</a> 575ms<br>
1191 silly pacote range manifest for function-bind@^1.1.1 fetched in 1552ms<br>
1192 http fetch GET 200 <a href="https://registry.npmjs.org/has-symbols" rel="nofollow">https://registry.npmjs.org/has-symbols</a> 1635ms<br>
1193 http fetch GET 200 <a href="https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz" rel="nofollow">https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz</a> 278ms<br>
1194 silly pacote range manifest for find-up@^1.0.0 fetched in 283ms<br>
1195 http fetch GET 200 <a href="https://registry.npmjs.org/object-keys" rel="nofollow">https://registry.npmjs.org/object-keys</a> 2300ms<br>
1196 http fetch GET 200 <a href="https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz</a> 1208ms<br>
1197 silly pacote range manifest for has-symbols@^1.0.0 fetched in 2848ms<br>
1198 http fetch GET 200 <a href="https://registry.npmjs.org/read-pkg" rel="nofollow">https://registry.npmjs.org/read-pkg</a> 1072ms<br>
1199 http fetch GET 200 <a href="https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz" rel="nofollow">https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz</a> 2546ms<br>
1200 silly pacote range manifest for define-properties@^1.1.2 fetched in 3103ms<br>
1201 http fetch GET 200 <a href="https://registry.npmjs.org/indent-string" rel="nofollow">https://registry.npmjs.org/indent-string</a> 259ms<br>
1202 http fetch GET 200 <a href="https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz</a> 321ms<br>
1203 silly pacote range manifest for read-pkg@^1.0.0 fetched in 1399ms<br>
1204 silly pacote range manifest for glob@~7.1.1 fetched in 3ms<br>
1205 silly pacote range manifest for lodash@~4.17.12 fetched in 4ms<br>
1206 silly pacote range manifest for minimatch@~3.0.2 fetched in 1ms<br>
1207 http fetch GET 200 <a href="https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" rel="nofollow">https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz</a> 876ms<br>
1208 silly pacote range manifest for object-keys@^1.0.11 fetched in 3181ms<br>
1209 silly pacote range manifest for map-obj@^1.0.0 fetched in 2ms<br>
1210 silly pacote range manifest for inherits@~2.0.0 fetched in 2ms<br>
1211 silly pacote range manifest for mkdirp@>=0.5 0 fetched in 1ms<br>
1212 http fetch GET 200 <a href="https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz</a> 460ms<br>
1213 silly pacote range manifest for indent-string@^2.1.0 fetched in 726ms<br>
1214 http fetch GET 200 <a href="https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz" rel="nofollow">https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz</a> 614ms<br>
1215 silly pacote range manifest for camelcase@^2.0.0 fetched in 617ms<br>
1216 http fetch GET 304 <a href="https://registry.npmjs.org/os-homedir" rel="nofollow">https://registry.npmjs.org/os-homedir</a> 816ms (from cache)<br>
1217 silly pacote range manifest for os-homedir@^1.0.0 fetched in 817ms<br>
1218 silly pacote range manifest for resolve@^1.10.0 fetched in 1ms<br>
1219 silly pacote range manifest for semver@2 || 3 || 4 || 5 fetched in 2ms<br>
1220 http fetch GET 304 <a href="https://registry.npmjs.org/os-tmpdir" rel="nofollow">https://registry.npmjs.org/os-tmpdir</a> 1259ms (from cache)<br>
1221 silly pacote range manifest for os-tmpdir@^1.0.0 fetched in 1261ms<br>
1222 http fetch GET 200 <a href="https://registry.npmjs.org/validate-npm-package-license" rel="nofollow">https://registry.npmjs.org/validate-npm-package-license</a> 2822ms<br>
1223 http fetch GET 200 <a href="https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz" rel="nofollow">https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz</a> 369ms<br>
1224 silly pacote range manifest for validate-npm-package-license@^3.0.1 fetched in 3197ms<br>
1225 silly pacote range manifest for aproba@^1.0.3 fetched in 3ms<br>
1226 silly pacote range manifest for console-control-strings@^1.0.0 fetched in 1ms<br>
1227 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fhelper-explode-assignable-expression" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-explode-assignable-expression</a> 24946ms<br>
1228 http fetch GET 200 <a href="https://registry.npmjs.org/has-unicode" rel="nofollow">https://registry.npmjs.org/has-unicode</a> 992ms<br>
1229 http fetch GET 200 <a href="https://registry.npmjs.org/prettier/-/prettier-1.19.1.tgz" rel="nofollow">https://registry.npmjs.org/prettier/-/prettier-1.19.1.tgz</a> 24464ms<br>
1230 silly pacote range manifest for prettier@^1.18.2 fetched in 30019ms<br>
1231 http fetch GET 200 <a href="https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz" rel="nofollow">https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz</a> 240ms<br>
1232 silly pacote range manifest for has-unicode@^2.0.0 fetched in 1237ms<br>
1233 silly pacote range manifest for strip-ansi@^3.0.1 fetched in 2ms<br>
1234 http fetch GET 200 <a href="https://registry.npmjs.org/hosted-git-info" rel="nofollow">https://registry.npmjs.org/hosted-git-info</a> 4730ms<br>
1235 http fetch GET 304 <a href="https://registry.npmjs.org/string-width" rel="nofollow">https://registry.npmjs.org/string-width</a> 198ms (from cache)<br>
1236 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.3.tgz" rel="nofollow">https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.3.tgz</a> 357ms<br>
1237 silly pacote range manifest for @babel/helper-explode-assignable-expression@^7.8.3 fetched in 25308ms<br>
1238 http fetch GET 200 <a href="https://registry.npmjs.org/wide-align" rel="nofollow">https://registry.npmjs.org/wide-align</a> 175ms<br>
1239 http fetch GET 200 <a href="https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz" rel="nofollow">https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz</a> 203ms<br>
1240 silly pacote range manifest for hosted-git-info@^2.1.4 fetched in 4938ms<br>
1241 silly pacote range manifest for readable-stream@^2.0.6 fetched in 2ms<br>
1242 http fetch GET 200 <a href="https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz" rel="nofollow">https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz</a> 230ms<br>
1243 silly pacote range manifest for string-width@^1.0.1 fetched in 435ms<br>
1244 http fetch GET 200 <a href="https://registry.npmjs.org/delegates" rel="nofollow">https://registry.npmjs.org/delegates</a> 216ms<br>
1245 http fetch GET 200 <a href="https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz" rel="nofollow">https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz</a> 171ms<br>
1246 silly pacote range manifest for wide-align@^1.1.0 fetched in 351ms<br>
1247 silly pacote range manifest for combined-stream@^1.0.6 fetched in 3ms<br>
1248 silly pacote range manifest for mime-types@^2.1.12 fetched in 1ms<br>
1249 silly pacote range manifest for ajv@^6.5.5 fetched in 2ms<br>
1250 http fetch GET 304 <a href="https://registry.npmjs.org/delayed-stream" rel="nofollow">https://registry.npmjs.org/delayed-stream</a> 193ms (from cache)<br>
1251 silly pacote range manifest for delayed-stream@~1.0.0 fetched in 195ms<br>
1252 http fetch GET 200 <a href="https://registry.npmjs.org/strip-indent" rel="nofollow">https://registry.npmjs.org/strip-indent</a> 5988ms<br>
1253 http fetch GET 304 <a href="https://registry.npmjs.org/asynckit" rel="nofollow">https://registry.npmjs.org/asynckit</a> 179ms (from cache)<br>
1254 silly pacote range manifest for asynckit@^0.4.0 fetched in 180ms<br>
1255 http fetch GET 304 <a href="https://registry.npmjs.org/har-schema" rel="nofollow">https://registry.npmjs.org/har-schema</a> 180ms (from cache)<br>
1256 silly pacote range manifest for har-schema@^2.0.0 fetched in 182ms<br>
1257 http fetch GET 304 <a href="https://registry.npmjs.org/assert-plus" rel="nofollow">https://registry.npmjs.org/assert-plus</a> 165ms (from cache)<br>
1258 silly pacote range manifest for assert-plus@^1.0.0 fetched in 172ms<br>
1259 http fetch GET 200 <a href="https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz</a> 283ms<br>
1260 silly pacote range manifest for delegates@^1.0.0 fetched in 503ms<br>
1261 http fetch GET 200 <a href="https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz</a> 285ms<br>
1262 http fetch GET 304 <a href="https://registry.npmjs.org/jsprim" rel="nofollow">https://registry.npmjs.org/jsprim</a> 281ms (from cache)<br>
1263 silly pacote range manifest for jsprim@^1.2.2 fetched in 288ms<br>
1264 silly pacote range manifest for strip-indent@^1.0.1 fetched in 6289ms<br>
1265 silly pacote range manifest for safe-buffer@^5.0.1 fetched in 3ms<br>
1266 http fetch GET 304 <a href="https://registry.npmjs.org/sshpk" rel="nofollow">https://registry.npmjs.org/sshpk</a> 198ms (from cache)<br>
1267 silly pacote range manifest for sshpk@^1.7.0 fetched in 200ms<br>
1268 silly pacote range manifest for fstream@^1.0.12 fetched in 2ms<br>
1269 http fetch GET 304 <a href="https://registry.npmjs.org/mime-db" rel="nofollow">https://registry.npmjs.org/mime-db</a> 182ms (from cache)<br>
1270 silly pacote version manifest for [email protected] fetched in 184ms<br>
1271 silly pacote range manifest for inherits@~2.0.3 fetched in 1ms<br>
1272 http fetch GET 304 <a href="https://registry.npmjs.org/psl" rel="nofollow">https://registry.npmjs.org/psl</a> 225ms (from cache)<br>
1273 silly pacote range manifest for psl@^1.1.28 fetched in 228ms<br>
1274 http fetch GET 304 <a href="https://registry.npmjs.org/punycode" rel="nofollow">https://registry.npmjs.org/punycode</a> 183ms (from cache)<br>
1275 silly pacote range manifest for punycode@^2.1.1 fetched in 185ms<br>
1276 http fetch GET 200 <a href="https://registry.npmjs.org/block-stream" rel="nofollow">https://registry.npmjs.org/block-stream</a> 183ms<br>
1277 http fetch GET 304 <a href="https://registry.npmjs.org/core-util-is" rel="nofollow">https://registry.npmjs.org/core-util-is</a> 210ms (from cache)<br>
1278 silly pacote range manifest for core-util-is@~1.0.0 fetched in 212ms<br>
1279 http fetch GET 304 <a href="https://registry.npmjs.org/isarray" rel="nofollow">https://registry.npmjs.org/isarray</a> 200ms (from cache)<br>
1280 silly pacote range manifest for isarray@~1.0.0 fetched in 201ms<br>
1281 http fetch GET 304 <a href="https://registry.npmjs.org/process-nextick-args" rel="nofollow">https://registry.npmjs.org/process-nextick-args</a> 194ms (from cache)<br>
1282 silly pacote range manifest for process-nextick-args@~2.0.0 fetched in 195ms<br>
1283 http fetch GET 200 <a href="https://registry.npmjs.org/abbrev" rel="nofollow">https://registry.npmjs.org/abbrev</a> 4720ms<br>
1284 http fetch GET 304 <a href="https://registry.npmjs.org/string_decoder" rel="nofollow">https://registry.npmjs.org/string_decoder</a> 189ms (from cache)<br>
1285 silly pacote range manifest for string_decoder@~1.1.1 fetched in 191ms<br>
1286 http fetch GET 200 <a href="https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz" rel="nofollow">https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz</a> 225ms<br>
1287 silly pacote range manifest for block-stream@* fetched in 415ms<br>
1288 silly pacote range manifest for bluebird@^3.1.1 fetched in 2ms<br>
1289 silly pacote range manifest for punycode@^2.1.0 fetched in 1ms<br>
1290 http fetch GET 304 <a href="https://registry.npmjs.org/util-deprecate" rel="nofollow">https://registry.npmjs.org/util-deprecate</a> 197ms (from cache)<br>
1291 silly pacote range manifest for color-convert@^1.9.0 fetched in 2ms<br>
1292 silly pacote range manifest for util-deprecate@~1.0.1 fetched in 200ms<br>
1293 http fetch GET 200 <a href="https://registry.npmjs.org/ms/-/ms-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/ms/-/ms-2.0.0.tgz</a> 218ms<br>
1294 silly pacote version manifest for [email protected] fetched in 220ms<br>
1295 http fetch GET 200 <a href="https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz" rel="nofollow">https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz</a> 227ms<br>
1296 silly pacote range manifest for abbrev@1 fetched in 4951ms<br>
1297 http fetch GET 200 <a href="https://registry.npmjs.org/regenerate" rel="nofollow">https://registry.npmjs.org/regenerate</a> 679ms<br>
1298 http fetch GET 200 <a href="https://registry.npmjs.org/regjsgen" rel="nofollow">https://registry.npmjs.org/regjsgen</a> 678ms<br>
1299 http fetch GET 200 <a href="https://registry.npmjs.org/regjsparser" rel="nofollow">https://registry.npmjs.org/regjsparser</a> 788ms<br>
1300 http fetch GET 200 <a href="https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.1.tgz" rel="nofollow">https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.1.tgz</a> 298ms<br>
1301 silly pacote range manifest for regjsgen@^0.5.1 fetched in 985ms<br>
1302 http fetch GET 200 <a href="https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz" rel="nofollow">https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz</a> 353ms<br>
1303 silly pacote range manifest for regenerate@^1.4.0 fetched in 1037ms<br>
1304 http fetch GET 200 <a href="https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz" rel="nofollow">https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz</a> 236ms<br>
1305 silly pacote range manifest for regjsparser@^0.6.4 fetched in 1030ms<br>
1306 http fetch GET 200 <a href="https://registry.npmjs.org/unicode-match-property-ecmascript" rel="nofollow">https://registry.npmjs.org/unicode-match-property-ecmascript</a> 168ms<br>
1307 http fetch GET 200 <a href="https://registry.npmjs.org/unicode-match-property-value-ecmascript" rel="nofollow">https://registry.npmjs.org/unicode-match-property-value-ecmascript</a> 205ms<br>
1308 http fetch GET 200 <a href="https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz</a> 170ms<br>
1309 silly pacote range manifest for locate-path@^3.0.0 fetched in 175ms<br>
1310 http fetch GET 200 <a href="https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz" rel="nofollow">https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz</a> 202ms<br>
1311 silly pacote range manifest for unicode-match-property-ecmascript@^1.0.4 fetched in 377ms<br>
1312 http fetch GET 200 <a href="https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz" rel="nofollow">https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz</a> 209ms<br>
1313 silly pacote range manifest for unicode-match-property-value-ecmascript@^1.2.0 fetched in 419ms<br>
1314 http fetch GET 304 <a href="https://registry.npmjs.org/balanced-match" rel="nofollow">https://registry.npmjs.org/balanced-match</a> 157ms (from cache)<br>
1315 silly pacote range manifest for balanced-match@^1.0.0 fetched in 159ms<br>
1316 http fetch GET 200 <a href="https://registry.npmjs.org/js-base64" rel="nofollow">https://registry.npmjs.org/js-base64</a> 1610ms<br>
1317 http fetch GET 304 <a href="https://registry.npmjs.org/concat-map" rel="nofollow">https://registry.npmjs.org/concat-map</a> 183ms (from cache)<br>
1318 silly pacote version manifest for [email protected] fetched in 185ms<br>
1319 silly pacote range manifest for run-queue@^1.0.0 fetched in 2ms<br>
1320 http fetch GET 200 <a href="https://registry.npmjs.org/p-locate" rel="nofollow">https://registry.npmjs.org/p-locate</a> 217ms<br>
1321 http fetch GET 200 <a href="https://registry.npmjs.org/iferr" rel="nofollow">https://registry.npmjs.org/iferr</a> 232ms<br>
1322 http fetch GET 200 <a href="https://registry.npmjs.org/imurmurhash" rel="nofollow">https://registry.npmjs.org/imurmurhash</a> 165ms<br>
1323 http fetch GET 200 <a href="https://registry.npmjs.org/regenerate-unicode-properties" rel="nofollow">https://registry.npmjs.org/regenerate-unicode-properties</a> 1797ms<br>
1324 http fetch GET 200 <a href="https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz</a> 226ms<br>
1325 silly pacote range manifest for p-locate@^2.0.0 fetched in 449ms<br>
1326 silly pacote range manifest for readable-stream@1 || 2 fetched in 4ms<br>
1327 http fetch GET 200 <a href="https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz" rel="nofollow">https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz</a> 254ms<br>
1328 silly pacote range manifest for iferr@^0.1.5 fetched in 491ms<br>
1329 silly pacote range manifest for inherits@^2.0.3 fetched in 1ms<br>
1330 silly pacote range manifest for readable-stream@^2.2.2 fetched in 2ms<br>
1331 http fetch GET 200 <a href="https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" rel="nofollow">https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz</a> 241ms<br>
1332 silly pacote range manifest for imurmurhash@^0.1.4 fetched in 411ms<br>
1333 silly pacote range manifest for end-of-stream@^1.0.0 fetched in 1ms<br>
1334 silly pacote range manifest for inherits@^2.0.1 fetched in 1ms<br>
1335 silly pacote range manifest for readable-stream@^2.0.0 fetched in 2ms<br>
1336 http fetch GET 200 <a href="https://registry.npmjs.org/buffer-from" rel="nofollow">https://registry.npmjs.org/buffer-from</a> 862ms<br>
1337 http fetch GET 200 <a href="https://registry.npmjs.org/typedarray" rel="nofollow">https://registry.npmjs.org/typedarray</a> 825ms<br>
1338 http fetch GET 200 <a href="https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz" rel="nofollow">https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz</a> 2849ms<br>
1339 silly pacote range manifest for source-map@^0.4.2 fetched in 2854ms<br>
1340 silly pacote range manifest for once@^1.4.0 fetched in 2ms<br>
1341 silly pacote range manifest for readable-stream@^2.3.6 fetched in 2ms<br>
1342 http fetch GET 200 <a href="https://registry.npmjs.org/stream-shift" rel="nofollow">https://registry.npmjs.org/stream-shift</a> 810ms<br>
1343 http fetch GET 200 <a href="https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz" rel="nofollow">https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz</a> 200ms<br>
1344 silly pacote range manifest for buffer-from@^1.0.0 fetched in 1067ms<br>
1345 silly pacote range manifest for readable-stream@^2.1.5 fetched in 3ms<br>
1346 silly pacote range manifest for once@^1.3.1 fetched in 3ms<br>
1347 silly pacote range manifest for duplexify@^3.6.0 fetched in 5ms<br>
1348 http fetch GET 200 <a href="https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz" rel="nofollow">https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz</a> 204ms<br>
1349 http fetch GET 200 <a href="https://registry.npmjs.org/cyclist" rel="nofollow">https://registry.npmjs.org/cyclist</a> 187ms<br>
1350 silly pacote range manifest for typedarray@^0.0.6 fetched in 1034ms<br>
1351 silly pacote range manifest for readable-stream@~2.3.6 fetched in 2ms<br>
1352 http fetch GET 200 <a href="https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz</a> 201ms<br>
1353 silly pacote range manifest for stream-shift@^1.0.0 fetched in 1015ms<br>
1354 http fetch GET 200 <a href="https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz" rel="nofollow">https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz</a> 1310ms<br>
1355 silly pacote range manifest for regenerate-unicode-properties@^8.2.0 fetched in 3111ms<br>
1356 http fetch GET 200 <a href="https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz</a> 195ms<br>
1357 http fetch GET 200 <a href="https://registry.npmjs.org/pump/-/pump-2.0.1.tgz" rel="nofollow">https://registry.npmjs.org/pump/-/pump-2.0.1.tgz</a> 203ms<br>
1358 http fetch GET 304 <a href="https://registry.npmjs.org/xtend" rel="nofollow">https://registry.npmjs.org/xtend</a> 198ms (from cache)<br>
1359 silly pacote range manifest for cyclist@^1.0.1 fetched in 393ms<br>
1360 silly pacote range manifest for pump@^2.0.0 fetched in 217ms<br>
1361 silly pacote range manifest for xtend@~4.0.1 fetched in 207ms<br>
1362 http fetch GET 304 <a href="https://registry.npmjs.org/array-uniq" rel="nofollow">https://registry.npmjs.org/array-uniq</a> 187ms (from cache)<br>
1363 silly pacote range manifest for array-uniq@^1.0.1 fetched in 189ms<br>
1364 http fetch GET 304 <a href="https://registry.npmjs.org/pinkie" rel="nofollow">https://registry.npmjs.org/pinkie</a> 151ms (from cache)<br>
1365 silly pacote range manifest for pinkie@^2.0.0 fetched in 152ms<br>
1366 http fetch GET 200 <a href="https://registry.npmjs.org/path-is-inside" rel="nofollow">https://registry.npmjs.org/path-is-inside</a> 181ms<br>
1367 http fetch GET 304 <a href="https://registry.npmjs.org/color-name" rel="nofollow">https://registry.npmjs.org/color-name</a> 190ms (from cache)<br>
1368 silly pacote version manifest for [email protected] fetched in 192ms<br>
1369 silly pacote range manifest for object-keys@^1.0.12 fetched in 1ms<br>
1370 http fetch GET 200 <a href="https://registry.npmjs.org/array-find-index" rel="nofollow">https://registry.npmjs.org/array-find-index</a> 190ms<br>
1371 http fetch GET 304 <a href="https://registry.npmjs.org/color-name" rel="nofollow">https://registry.npmjs.org/color-name</a> 203ms (from cache)<br>
1372 http fetch GET 200 <a href="https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz</a> 158ms<br>
1373 silly pacote range manifest for path-exists@^2.0.0 fetched in 162ms<br>
1374 silly pacote range manifest for normalize-package-data@^2.3.2 fetched in 2ms<br>
1375 http fetch GET 200 <a href="https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz" rel="nofollow">https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz</a> 185ms<br>
1376 silly pacote range manifest for path-is-inside@^1.0.2 fetched in 372ms<br>
1377 http fetch GET 200 <a href="https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz" rel="nofollow">https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz</a> 276ms<br>
1378 silly pacote range manifest for array-find-index@^1.0.1 fetched in 471ms<br>
1379 http fetch GET 200 <a href="https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" rel="nofollow">https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz</a> 332ms<br>
1380 silly pacote range manifest for color-name@^1.0.0 fetched in 539ms<br>
1381 http fetch GET 200 <a href="https://registry.npmjs.org/path-type" rel="nofollow">https://registry.npmjs.org/path-type</a> 348ms<br>
1382 http fetch GET 200 <a href="https://registry.npmjs.org/load-json-file" rel="nofollow">https://registry.npmjs.org/load-json-file</a> 411ms<br>
1383 http fetch GET 200 <a href="https://registry.npmjs.org/repeating" rel="nofollow">https://registry.npmjs.org/repeating</a> 285ms<br>
1384 http fetch GET 200 <a href="https://registry.npmjs.org/spdx-correct" rel="nofollow">https://registry.npmjs.org/spdx-correct</a> 256ms<br>
1385 http fetch GET 200 <a href="https://registry.npmjs.org/spdx-expression-parse" rel="nofollow">https://registry.npmjs.org/spdx-expression-parse</a> 240ms<br>
1386 http fetch GET 200 <a href="https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz</a> 268ms<br>
1387 silly pacote range manifest for path-type@^1.0.0 fetched in 621ms<br>
1388 http fetch GET 200 <a href="https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz</a> 264ms<br>
1389 silly pacote range manifest for load-json-file@^1.0.0 fetched in 682ms<br>
1390 http fetch GET 200 <a href="https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz" rel="nofollow">https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz</a> 237ms<br>
1391 silly pacote range manifest for repeating@^2.0.0 fetched in 528ms<br>
1392 silly pacote range manifest for string-width@^1.0.2 || 2 fetched in 2ms<br>
1393 http fetch GET 200 <a href="https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz</a> 4ms (from cache)<br>
1394 silly pacote version manifest for [email protected] fetched in 7ms<br>
1395 http fetch GET 200 <a href="https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz" rel="nofollow">https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz</a> 309ms<br>
1396 silly pacote range manifest for spdx-correct@^3.0.0 fetched in 571ms<br>
1397 http fetch GET 200 <a href="https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz</a> 334ms<br>
1398 silly pacote range manifest for spdx-expression-parse@^3.0.0 fetched in 579ms<br>
1399 http fetch GET 200 <a href="https://registry.npmjs.org/code-point-at" rel="nofollow">https://registry.npmjs.org/code-point-at</a> 312ms<br>
1400 http fetch GET 200 <a href="https://registry.npmjs.org/js-base64/-/js-base64-2.5.2.tgz" rel="nofollow">https://registry.npmjs.org/js-base64/-/js-base64-2.5.2.tgz</a> 2888ms<br>
1401 silly pacote range manifest for js-base64@^2.1.8 fetched in 4503ms<br>
1402 http fetch GET 304 <a href="https://registry.npmjs.org/is-fullwidth-code-point" rel="nofollow">https://registry.npmjs.org/is-fullwidth-code-point</a> 327ms (from cache)<br>
1403 http fetch GET 304 <a href="https://registry.npmjs.org/extsprintf" rel="nofollow">https://registry.npmjs.org/extsprintf</a> 310ms (from cache)<br>
1404 silly pacote version manifest for [email protected] fetched in 312ms<br>
1405 http fetch GET 304 <a href="https://registry.npmjs.org/json-schema" rel="nofollow">https://registry.npmjs.org/json-schema</a> 277ms (from cache)<br>
1406 silly pacote version manifest for [email protected] fetched in 278ms<br>
1407 http fetch GET 304 <a href="https://registry.npmjs.org/verror" rel="nofollow">https://registry.npmjs.org/verror</a> 347ms (from cache)<br>
1408 silly pacote version manifest for [email protected] fetched in 350ms<br>
1409 http fetch GET 304 <a href="https://registry.npmjs.org/asn1" rel="nofollow">https://registry.npmjs.org/asn1</a> 642ms (from cache)<br>
1410 silly pacote range manifest for asn1@~0.2.3 fetched in 644ms<br>
1411 http fetch GET 304 <a href="https://registry.npmjs.org/getpass" rel="nofollow">https://registry.npmjs.org/getpass</a> 952ms (from cache)<br>
1412 silly pacote range manifest for getpass@^0.1.1 fetched in 954ms<br>
1413 http fetch GET 200 <a href="https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz</a> 1149ms<br>
1414 silly pacote range manifest for is-fullwidth-code-point@^1.0.0 fetched in 1481ms<br>
1415 http fetch GET 304 <a href="https://registry.npmjs.org/safer-buffer" rel="nofollow">https://registry.npmjs.org/safer-buffer</a> 920ms (from cache)<br>
1416 silly pacote range manifest for safer-buffer@^2.0.2 fetched in 921ms<br>
1417 http fetch GET 304 <a href="https://registry.npmjs.org/dashdash" rel="nofollow">https://registry.npmjs.org/dashdash</a> 1169ms (from cache)<br>
1418 silly pacote range manifest for dashdash@^1.12.0 fetched in 1171ms<br>
1419 silly pacote range manifest for safe-buffer@~5.1.0 fetched in 2ms<br>
1420 http fetch GET 200 <a href="https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz</a> 1557ms<br>
1421 silly pacote range manifest for code-point-at@^1.0.0 fetched in 1873ms<br>
1422 http fetch GET 304 <a href="https://registry.npmjs.org/jsbn" rel="nofollow">https://registry.npmjs.org/jsbn</a> 1455ms (from cache)<br>
1423 silly pacote range manifest for jsbn@~0.1.0 fetched in 1458ms<br>
1424 http fetch GET 304 <a href="https://registry.npmjs.org/tweetnacl" rel="nofollow">https://registry.npmjs.org/tweetnacl</a> 2039ms (from cache)<br>
1425 silly pacote range manifest for tweetnacl@~0.14.0 fetched in 2044ms<br>
1426 http fetch GET 304 <a href="https://registry.npmjs.org/ecc-jsbn" rel="nofollow">https://registry.npmjs.org/ecc-jsbn</a> 1994ms (from cache)<br>
1427 silly pacote range manifest for ecc-jsbn@~0.1.1 fetched in 1995ms<br>
1428 http fetch GET 304 <a href="https://registry.npmjs.org/bcrypt-pbkdf" rel="nofollow">https://registry.npmjs.org/bcrypt-pbkdf</a> 2019ms (from cache)<br>
1429 silly pacote range manifest for bcrypt-pbkdf@^1.0.0 fetched in 2021ms<br>
1430 http fetch GET 200 <a href="https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz" rel="nofollow">https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz</a> 2194ms<br>
1431 silly pacote range manifest for jsesc@~0.5.0 fetched in 2199ms<br>
1432 http fetch GET 200 <a href="https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz</a> 1927ms<br>
1433 silly pacote range manifest for p-locate@^3.0.0 fetched in 1932ms<br>
1434 http fetch GET 200 <a href="https://registry.npmjs.org/unicode-canonical-property-names-ecmascript" rel="nofollow">https://registry.npmjs.org/unicode-canonical-property-names-ecmascript</a> 1521ms<br>
1435 http fetch GET 200 <a href="https://registry.npmjs.org/unicode-property-aliases-ecmascript" rel="nofollow">https://registry.npmjs.org/unicode-property-aliases-ecmascript</a> 781ms<br>
1436 http fetch GET 200 <a href="https://registry.npmjs.org/amdefine" rel="nofollow">https://registry.npmjs.org/amdefine</a> 733ms<br>
1437 http fetch GET 200 <a href="https://registry.npmjs.org/parse-json" rel="nofollow">https://registry.npmjs.org/parse-json</a> 585ms<br>
1438 http fetch GET 200 <a href="https://registry.npmjs.org/strip-bom" rel="nofollow">https://registry.npmjs.org/strip-bom</a> 546ms<br>
1439 http fetch GET 200 <a href="https://registry.npmjs.org/p-limit" rel="nofollow">https://registry.npmjs.org/p-limit</a> 871ms<br>
1440 http fetch GET 200 <a href="https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz" rel="nofollow">https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz</a> 434ms<br>
1441 silly pacote range manifest for unicode-canonical-property-names-ecmascript@^1.0.4 fetched in 1960ms<br>
1442 http fetch GET 200 <a href="https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz</a> 196ms<br>
1443 silly pacote range manifest for unicode-property-aliases-ecmascript@^1.0.4 fetched in 988ms<br>
1444 silly pacote range manifest for is-fullwidth-code-point@^2.0.0 fetched in 2ms<br>
1445 silly pacote range manifest for strip-ansi@^4.0.0 fetched in 1ms<br>
1446 http fetch GET 200 <a href="https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz</a> 217ms<br>
1447 silly pacote range manifest for amdefine@>=0.0.4 fetched in 954ms<br>
1448 http fetch GET 200 <a href="https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz" rel="nofollow">https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz</a> 228ms<br>
1449 silly pacote range manifest for parse-json@^2.2.0 fetched in 819ms<br>
1450 http fetch GET 200 <a href="https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz" rel="nofollow">https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz</a> 4ms (from cache)<br>
1451 silly pacote version manifest for [email protected] fetched in 10ms<br>
1452 http fetch GET 200 <a href="https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz</a> 222ms<br>
1453 silly pacote range manifest for strip-bom@^2.0.0 fetched in 781ms<br>
1454 http fetch GET 200 <a href="https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz" rel="nofollow">https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz</a> 210ms<br>
1455 silly pacote range manifest for safer-buffer@~2.1.0 fetched in 2ms<br>
1456 silly pacote range manifest for p-limit@^1.1.0 fetched in 1088ms<br>
1457 silly pacote range manifest for safer-buffer@^2.1.0 fetched in 2ms<br>
1458 silly pacote range manifest for tweetnacl@^0.14.3 fetched in 1ms<br>
1459 http fetch GET 200 <a href="https://registry.npmjs.org/spdx-license-ids" rel="nofollow">https://registry.npmjs.org/spdx-license-ids</a> 228ms<br>
1460 http fetch GET 200 <a href="https://registry.npmjs.org/is-finite" rel="nofollow">https://registry.npmjs.org/is-finite</a> 332ms<br>
1461 http fetch GET 200 <a href="https://registry.npmjs.org/spdx-exceptions" rel="nofollow">https://registry.npmjs.org/spdx-exceptions</a> 211ms<br>
1462 http fetch GET 200 <a href="https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.0.tgz" rel="nofollow">https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.0.tgz</a> 196ms<br>
1463 silly pacote range manifest for extsprintf@^1.2.0 fetched in 203ms<br>
1464 silly pacote range manifest for ansi-regex@^3.0.0 fetched in 2ms<br>
1465 http fetch GET 200 <a href="https://registry.npmjs.org/number-is-nan" rel="nofollow">https://registry.npmjs.org/number-is-nan</a> 223ms<br>
1466 http fetch GET 200 <a href="https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" rel="nofollow">https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz</a> 224ms<br>
1467 silly pacote range manifest for p-limit@^2.0.0 fetched in 228ms<br>
1468 http fetch GET 200 <a href="https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz" rel="nofollow">https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz</a> 185ms<br>
1469 silly pacote range manifest for spdx-license-ids@^3.0.0 fetched in 418ms<br>
1470 http fetch GET 200 <a href="https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz" rel="nofollow">https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz</a> 231ms<br>
1471 silly pacote range manifest for spdx-exceptions@^2.1.0 fetched in 446ms<br>
1472 http fetch GET 200 <a href="https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz</a> 409ms<br>
1473 silly pacote range manifest for is-finite@^1.0.0 fetched in 750ms<br>
1474 http fetch GET 200 <a href="https://registry.npmjs.org/error-ex" rel="nofollow">https://registry.npmjs.org/error-ex</a> 390ms<br>
1475 http fetch GET 200 <a href="https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz</a> 388ms<br>
1476 silly pacote range manifest for number-is-nan@^1.0.0 fetched in 615ms<br>
1477 http fetch GET 304 <a href="https://registry.npmjs.org/is-utf8" rel="nofollow">https://registry.npmjs.org/is-utf8</a> 422ms (from cache)<br>
1478 silly pacote range manifest for is-utf8@^0.2.0 fetched in 424ms<br>
1479 http fetch GET 200 <a href="https://registry.npmjs.org/p-try" rel="nofollow">https://registry.npmjs.org/p-try</a> 401ms<br>
1480 http fetch GET 200 <a href="https://registry.npmjs.org/p-try" rel="nofollow">https://registry.npmjs.org/p-try</a> 451ms<br>
1481 http fetch GET 200 <a href="https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz" rel="nofollow">https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz</a> 365ms<br>
1482 silly pacote range manifest for error-ex@^1.2.0 fetched in 761ms<br>
1483 http fetch GET 200 <a href="https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz</a> 268ms<br>
1484 silly pacote range manifest for p-try@^1.0.0 fetched in 674ms<br>
1485 http fetch GET 200 <a href="https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" rel="nofollow">https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz</a> 226ms<br>
1486 silly pacote range manifest for p-try@^2.0.0 fetched in 681ms<br>
1487 http fetch GET 200 <a href="https://registry.npmjs.org/is-arrayish" rel="nofollow">https://registry.npmjs.org/is-arrayish</a> 209ms<br>
1488 http fetch GET 200 <a href="https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" rel="nofollow">https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz</a> 226ms<br>
1489 silly pacote range manifest for is-arrayish@^0.2.1 fetched in 439ms<br>
1490 http fetch GET 200 <a href="https://registry.npmjs.org/electron-to-chromium" rel="nofollow">https://registry.npmjs.org/electron-to-chromium</a> 74183ms<br>
1491 http fetch GET 200 <a href="https://registry.npmjs.org/yargs/-/yargs-7.1.0.tgz" rel="nofollow">https://registry.npmjs.org/yargs/-/yargs-7.1.0.tgz</a> 53014ms<br>
1492 silly pacote range manifest for yargs@^7.0.0 fetched in 54579ms<br>
1493 silly pacote range manifest for decamelize@^1.1.1 fetched in 12ms<br>
1494 silly pacote range manifest for set-blocking@^2.0.0 fetched in 1ms<br>
1495 silly pacote range manifest for string-width@^1.0.2 fetched in 1ms<br>
1496 http fetch GET 200 <a href="https://registry.npmjs.org/cliui" rel="nofollow">https://registry.npmjs.org/cliui</a> 212ms<br>
1497 http fetch GET 200 <a href="https://registry.npmjs.org/os-locale" rel="nofollow">https://registry.npmjs.org/os-locale</a> 334ms<br>
1498 http fetch GET 200 <a href="https://registry.npmjs.org/require-directory" rel="nofollow">https://registry.npmjs.org/require-directory</a> 344ms<br>
1499 http fetch GET 200 <a href="https://registry.npmjs.org/require-main-filename" rel="nofollow">https://registry.npmjs.org/require-main-filename</a> 374ms<br>
1500 http fetch GET 200 <a href="https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz</a> 400ms<br>
1501 silly pacote range manifest for camelcase@^3.0.0 fetched in 412ms<br>
1502 http fetch GET 200 <a href="https://registry.npmjs.org/which-module" rel="nofollow">https://registry.npmjs.org/which-module</a> 415ms<br>
1503 http fetch GET 200 <a href="https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz" rel="nofollow">https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz</a> 462ms<br>
1504 silly pacote range manifest for os-locale@^1.4.0 fetched in 802ms<br>
1505 http fetch GET 200 <a href="https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz" rel="nofollow">https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz</a> 500ms<br>
1506 silly pacote range manifest for require-directory@^2.1.1 fetched in 848ms<br>
1507 http fetch GET 200 <a href="https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz</a> 649ms<br>
1508 silly pacote range manifest for require-main-filename@^1.0.1 fetched in 1028ms<br>
1509 http fetch GET 200 <a href="https://registry.npmjs.org/get-caller-file" rel="nofollow">https://registry.npmjs.org/get-caller-file</a> 1039ms<br>
1510 http fetch GET 200 <a href="https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz" rel="nofollow">https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz</a> 636ms<br>
1511 silly pacote range manifest for y18n@^3.2.1 fetched in 641ms<br>
1512 http fetch GET 200 <a href="https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz</a> 636ms<br>
1513 silly pacote range manifest for which-module@^1.0.0 fetched in 1055ms<br>
1514 http fetch GET 200 <a href="https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz" rel="nofollow">https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz</a> 184ms<br>
1515 silly pacote range manifest for get-caller-file@^1.0.1 fetched in 1228ms<br>
1516 http fetch GET 200 <a href="https://registry.npmjs.org/lcid" rel="nofollow">https://registry.npmjs.org/lcid</a> 738ms<br>
1517 http fetch GET 200 <a href="https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz</a> 179ms<br>
1518 silly pacote range manifest for lcid@^1.0.0 fetched in 923ms<br>
1519 http fetch GET 200 <a href="https://registry.npmjs.org/yargs-parser" rel="nofollow">https://registry.npmjs.org/yargs-parser</a> 1214ms<br>
1520 http fetch GET 200 <a href="https://registry.npmjs.org/invert-kv" rel="nofollow">https://registry.npmjs.org/invert-kv</a> 336ms<br>
1521 http fetch GET 200 <a href="https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0.tgz" rel="nofollow">https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0.tgz</a> 271ms<br>
1522 silly pacote range manifest for yargs-parser@^5.0.0 fetched in 1493ms<br>
1523 http fetch GET 200 <a href="https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz</a> 208ms<br>
1524 silly pacote range manifest for invert-kv@^1.0.0 fetched in 548ms<br>
1525 http fetch GET 200 <a href="https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz" rel="nofollow">https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz</a> 2987ms<br>
1526 silly pacote range manifest for cliui@^3.2.0 fetched in 3205ms<br>
1527 http fetch GET 200 <a href="https://registry.npmjs.org/wrap-ansi" rel="nofollow">https://registry.npmjs.org/wrap-ansi</a> 309ms<br>
1528 http fetch GET 200 <a href="https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz</a> 241ms<br>
1529 silly pacote range manifest for wrap-ansi@^2.0.0 fetched in 555ms<br>
1530 http fetch GET 200 <a href="https://registry.npmjs.org/v-calendar/-/v-calendar-1.0.3.tgz" rel="nofollow">https://registry.npmjs.org/v-calendar/-/v-calendar-1.0.3.tgz</a> 204267ms<br>
1531 silly pacote range manifest for v-calendar@^1.0.0-beta.22 fetched in 226337ms<br>
1532 silly pacote range manifest for lodash@^4.17.11 fetched in 15ms<br>
1533 http fetch GET 200 <a href="https://registry.npmjs.org/date-fns" rel="nofollow">https://registry.npmjs.org/date-fns</a> 3460ms<br>
1534 http fetch GET 200 <a href="https://registry.npmjs.org/popper.js" rel="nofollow">https://registry.npmjs.org/popper.js</a> 6352ms<br>
1535 http fetch GET 200 <a href="https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz" rel="nofollow">https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz</a> 6985ms<br>
1536 silly pacote range manifest for popper.js@^1.14.7 fetched in 13347ms<br>
1537 warn deprecated [email protected]: You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1<br>
1538 http fetch GET 200 <a href="https://registry.npmjs.org/date-fns/-/date-fns-2.12.0.tgz" rel="nofollow">https://registry.npmjs.org/date-fns/-/date-fns-2.12.0.tgz</a> 18439ms<br>
1539 silly pacote range manifest for date-fns@^2.6.0 fetched in 21909ms<br>
1540 timing npm Completed in 316754ms<br>
1541 error cb() never called!<br>
1542 error This is an error with npm itself. Please report this error at:<br>
1543 error <a href="https://npm.community" rel="nofollow">https://npm.community</a></p>
<p dir="auto">`</p> | <h3 dir="auto">*Updated* as of 01/15/2021</h3>
<p dir="auto"><strong>Note: Please read <a href="https://github.com/npm/cli/wiki/%22cb()-never-called%3F-Exit-handler-never-called%3F-I'm-having-the-same-problem!%22">this doc</a> before filing a new issue.</strong></p> | 1 |
<h1 dir="auto">Summary of the new feature/enhancement</h1>
<p dir="auto">Can we hide app icon in taskbar after setting complete. and have a hot to show in desktop!</p>
<h1 dir="auto">Proposed technical implementation details (optional)</h1> | <p dir="auto">I would love to see an option to hide the tray icon.</p> | 1 |
<h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => 4.2.0</li>
<li>Operating System / Platform => Windows 10 64 Bit</li>
<li>Compiler => MSVC++ 14.24</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">The static variables named "__initialization_mutex" are never freed, causing (false) memory leak detections.<br>
For example one such variable is in modules/core/src/system.cpp .</p>
<p dir="auto">IPP also produces a lot of false positives since it leaves a lot of TLS objects on the heap without cleaning them up upon unloading the DLL (exiting the application). But IPP can be disabled.</p>
<p dir="auto">I have not yet checked if this issue is also present on linux or not.</p>
<h5 dir="auto">Steps to reproduce</h5>
<p dir="auto">I used <a href="https://docs.microsoft.com/en-us/visualstudio/debugger/finding-memory-leaks-using-the-crt-library?view=vs-2019" rel="nofollow">link</a> to check for memory leaks, linked OpenCV (compiled from source) as a DLL to my application.</p>
<p dir="auto">There is a solution in <a href="https://answers.opencv.org/question/121272/false-memory-leaks-in-mfc/" rel="nofollow">link</a> that gets rid of this issue in certain cases.</p> | <p dir="auto">From question asked on stackoverflow: <a href="http://stackoverflow.com/questions/32845535/opencv-3-0-visual-studio-memory-leak-detector-false-positive" rel="nofollow">http://stackoverflow.com/questions/32845535/opencv-3-0-visual-studio-memory-leak-detector-false-positive</a></p>
<p dir="auto">If I enabled memory leaks detector in Visual Studio (to detect leaks in my application) I have always some additional memory leaks from OpenCV and it's very difficult to find out the real memory leak from my application.</p>
<p dir="auto">The leak comes from function: opencv/modules/calib3d/src/stereobm.cpp file.<br>
In function: StereoBMImpl->compute() we have statement:<br>
if(ocl::useOpenCL() && disparr.isUMat() && params.textureThreshold == 0)</p>
<p dir="auto">The function: ocl::useOpenCL invokes getCoreTlsData() and this function executes operator new but never deletes this object:<br>
static TLSData *value = new TLSData();</p>
<p dir="auto">I disabled OpenCL but this code is still executed and memory leak is also reported.</p>
<p dir="auto">I suppose this error isn't dangerous because it's assignment to static object, but it makes very difficult to find out leaks in applications which links to OpenCV.</p> | 1 |
<h5 dir="auto">Issue Type:</h5>
<p dir="auto">“Feature Idea”</p>
<h5 dir="auto">Ansible Version:</h5>
<p dir="auto"><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/ansible/ansible/commit/c6b26ff7c79cd73c98b161022044f3678ab7378d/hovercard" href="https://github.com/ansible/ansible/commit/c6b26ff7c79cd73c98b161022044f3678ab7378d"><tt>c6b26ff</tt></a></p>
<h5 dir="auto">Summary:</h5>
<p dir="auto">Hi,<br>
I need to dump all the vars available at certain steps of playbook so I tried to follow <a href="https://coderwall.com/p/13lh6w" rel="nofollow">this tip</a>.<br>
At first it looks like it does what I need but then I noticed that dumping <code class="notranslate">vars</code> gives me variables specified only in role's vars file and no vars inherited from <code class="notranslate">group_vars/</code>.<br>
Inspecting <code class="notranslate">lib/ansible/runner/__init__.py</code> I see this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# use combined_cache and host_variables to template the module_vars
# we update the inject variables with the data we're about to template
# since some of the variables we'll be replacing may be contained there too
module_vars_inject = utils.combine_vars(host_variables, combined_cache.get(host, {}))
module_vars_inject = utils.combine_vars(self.module_vars, module_vars_inject)
module_vars = template.template(self.basedir, self.module_vars, module_vars_inject)"><pre class="notranslate"><code class="notranslate"># use combined_cache and host_variables to template the module_vars
# we update the inject variables with the data we're about to template
# since some of the variables we'll be replacing may be contained there too
module_vars_inject = utils.combine_vars(host_variables, combined_cache.get(host, {}))
module_vars_inject = utils.combine_vars(self.module_vars, module_vars_inject)
module_vars = template.template(self.basedir, self.module_vars, module_vars_inject)
</code></pre></div>
<p dir="auto">and I see that vars inherited from <code class="notranslate">group_vars</code> are contained in <code class="notranslate">host_variables</code>.<br>
Now I'm in doubt whether they should get in <code class="notranslate">module_vars</code> here and there's just a bug at this point<br>
or they should not and then I'd like to add them later to <code class="notranslate">inject</code> dict like it's done with <code class="notranslate">module_vars</code>:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="inject['vars'] = self.module_vars"><pre class="notranslate"><code class="notranslate">inject['vars'] = self.module_vars
</code></pre></div> | <p dir="auto">Currently if we are trying to register an instance that has not yet<br>
been registered with the elb an exception is thrown as follows:</p>
<p dir="auto">Traceback (most recent call last):<br>
File "/home/ubuntu/.ansible/tmp/ansible-1388916053.26-72858643329411/ec2_elb", line 1412, in<br>
main()<br>
File "/home/ubuntu/.ansible/tmp/ansible-1388916053.26-72858643329411/ec2_elb", line 335, in main<br>
elb_man.register(wait, enable_availability_zone)<br>
File "/home/ubuntu/.ansible/tmp/ansible-1388916053.26-72858643329411/ec2_elb", line 168, in register<br>
self.awaitelb_instance_state(lb, 'InService', initial_state)<br>
File "/home/ubuntu/.ansible/tmp/ansible-1388916053.26-72858643329411/ec2_elb", line 213, in awaitelb_instance_state<br>
if instance_state.state != initial_state.state:<br>
AttributeError: 'NoneType' object has no attribute 'state'</p>
<p dir="auto">This is expected because the code is querying the elb for the state of the new instance and it responds with a "InvalidInstance" response (as its not been registered with the ELB yet) and the code sets the value of the initial_state to None.</p>
<p dir="auto">This code change checks if the initial_state is None. If it is, its safe to assume that its state has changed.</p>
<p dir="auto">I have create <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="25068793" data-permission-text="Title is private" data-url="https://github.com/ansible/ansible/issues/5506" data-hovercard-type="pull_request" data-hovercard-url="/ansible/ansible/pull/5506/hovercard" href="https://github.com/ansible/ansible/pull/5506">#5506</a> as a suggested fix</p> | 0 |
<p dir="auto">Is there interest in adding the <a href="https://arxiv.org/abs/1908.08681" rel="nofollow">mish</a> activation function to <code class="notranslate">jax.nn</code>?</p>
<blockquote>
<p dir="auto">It has a much smoother curve vs relu, and in theory, that drives information more deeply through the network. It is slower than ReLU, but on average adds about 1-3% improvement vs ReLU. - LessW2020, Fastai forums</p>
</blockquote> | <p dir="auto">While implementing setdiff1d, I've come across this weird case where the <code class="notranslate">np.in1d</code> would return duplicate items if it finds such items and the <code class="notranslate">np.in1d</code> implementation would return the set-like array.</p>
<p dir="auto">I've attached a code sample to reproduce this below:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from jax import numpy as jnp # version: 0.2.3
import numpy as np # version: 1.19.2
a = jnp.array([3,-1,0,0,7,-3,-5,0,3,-5,-3,7,0,1,-1,-1,0,1,-1,0,-7,-4,3,-2])
b = jnp.array([-2,-3,-1,0,3,-2,6,0,1,0,0,-5,-2,0,0,0,-2,-2,6,2,-6,-3,-2,-3])
lax_ar = jnp.in1d(a, b, invert=True)
np_ar = np.in1d(a, b, assume_unique=True, invert=True)
print(a[lax_ar])
print(a[np_ar])"><pre class="notranslate"><code class="notranslate">from jax import numpy as jnp # version: 0.2.3
import numpy as np # version: 1.19.2
a = jnp.array([3,-1,0,0,7,-3,-5,0,3,-5,-3,7,0,1,-1,-1,0,1,-1,0,-7,-4,3,-2])
b = jnp.array([-2,-3,-1,0,3,-2,6,0,1,0,0,-5,-2,0,0,0,-2,-2,6,2,-6,-3,-2,-3])
lax_ar = jnp.in1d(a, b, invert=True)
np_ar = np.in1d(a, b, assume_unique=True, invert=True)
print(a[lax_ar])
print(a[np_ar])
</code></pre></div>
<p dir="auto">Upon further verification of this issue I've found that the problem reproduces due to numpy's implementation of in1d. I believe we might need to implement the sorting based option for longer sequences.</p>
<p dir="auto">Also, if it is possible, I would like to try and implement it :).</p> | 0 |
<h3 dir="auto">Version</h3>
<p dir="auto">2.6.10</p>
<h3 dir="auto">Reproduction link</h3>
<p dir="auto"><a href="https://jsfiddle.net/ae82rfnv/" rel="nofollow">https://jsfiddle.net/ae82rfnv/</a></p>
<h3 dir="auto">Steps to reproduce</h3>
<p dir="auto">While operating, carefully notice of the transitions</p>
<p dir="auto">Working flow</p>
<ol dir="auto">
<li>tick first box (parent transition plays)</li>
<li>tick second box (child transition plays)</li>
<li>untick second box (child transition plays)</li>
<li>untick first box (parent transition plays)</li>
</ol>
<p dir="auto">Broken flow n°1</p>
<ol dir="auto">
<li>tick first box (parent transition plays)</li>
<li>tick second box (child transition plays)</li>
<li>untick first box (only parent transition plays)</li>
</ol>
<p dir="auto">Broken flow n°2</p>
<ol dir="auto">
<li>tick second box (nothing happens)</li>
<li>tick first box (the 2 transitions play in sync)</li>
<li>untick first box (only parent transition plays)</li>
</ol>
<h3 dir="auto">What is expected?</h3>
<p dir="auto">While unmounting, a transition should search for nested transition and operates in sequence carefully, running children transition first, then playing its own transition before unmounting, so all children transition could run their "leave" transition carefully.</p>
<h3 dir="auto">What is actually happening?</h3>
<p dir="auto">Only the parent transiton runs, ignoring the children transition.</p>
<hr>
<p dir="auto">I understand why it does what it does as is, and it makes sense from mounting point of view ; where the logic fails is in the "final effect" : while the 2 transitions (parent and child) play correctly when mounting, it doesn't run "the opposite way/backwards" when unmounting.</p> | <h3 dir="auto">Version</h3>
<p dir="auto">2.5.22</p>
<h3 dir="auto">Reproduction link</h3>
<p dir="auto"><a href="https://jsfiddle.net/wx91uLft/" rel="nofollow">https://jsfiddle.net/wx91uLft/</a><br>
other: <a href="https://jsfiddle.net/ae82rfnv/" rel="nofollow">https://jsfiddle.net/ae82rfnv/</a></p>
<h3 dir="auto">Steps to reproduce</h3>
<ul dir="auto">
<li>Show/hide elements with the "Toggle" button.</li>
<li>Show/hide elements with the "Toggle Ticked" button. Shows a workaround.</li>
</ul>
<h3 dir="auto">What is expected?</h3>
<p dir="auto">All transitions should be triggered on leave, even for nested child elements.</p>
<h3 dir="auto">What is actually happening?</h3>
<p dir="auto">Transition classes don't get applied to nested child elements, when conditions for leaving transitions occur on the same tick.</p>
<p dir="auto">Workaround: Delaying the parent transitions by one tick fixes the problem.</p>
<hr>
<p dir="auto">This has been reported, but got closed due to the sample code did not use <code class="notranslate">appear</code> on the <code class="notranslate"><transition></code> elements. (See issues <a href="https://github.com/vuejs/vue/issues/7643" data-hovercard-type="issue" data-hovercard-url="/vuejs/vue/issues/7643/hovercard">#7643</a> and <a href="https://github.com/vuejs/vue/issues/9243" data-hovercard-type="issue" data-hovercard-url="/vuejs/vue/issues/9243/hovercard">#9243</a>)</p>
<p dir="auto">My example is more detailed and also provides a workaround.</p> | 1 |
<p dir="auto">So here's my setup (using pandas 0.16.2):</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=">>> midx = pd.MultiIndex.from_product([['bar', 'baz', 'foo', 'qux'], ['one', 'two']],names=['first','second'])
>>> df = pd.DataFrame(np.random.randint(10,size=(8,8)),index=midx)
>>> df
0 1 2 3 4 5 6 7
first second
bar one 0 5 5 5 6 2 6 8
two 2 6 9 0 3 6 7 9
baz one 9 0 9 9 2 5 7 4
two 4 8 1 2 9 2 8 1
foo one 2 7 3 6 5 5 5 2
two 3 4 6 2 7 7 1 2
qux one 0 8 5 9 5 5 7 3
two 7 4 0 7 3 6 8 6"><pre class="notranslate"><span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">midx</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">MultiIndex</span>.<span class="pl-en">from_product</span>([[<span class="pl-s">'bar'</span>, <span class="pl-s">'baz'</span>, <span class="pl-s">'foo'</span>, <span class="pl-s">'qux'</span>], [<span class="pl-s">'one'</span>, <span class="pl-s">'two'</span>]],<span class="pl-s1">names</span><span class="pl-c1">=</span>[<span class="pl-s">'first'</span>,<span class="pl-s">'second'</span>])
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">df</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>(<span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">randint</span>(<span class="pl-c1">10</span>,<span class="pl-s1">size</span><span class="pl-c1">=</span>(<span class="pl-c1">8</span>,<span class="pl-c1">8</span>)),<span class="pl-s1">index</span><span class="pl-c1">=</span><span class="pl-s1">midx</span>)
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">df</span>
<span class="pl-c1">0</span> <span class="pl-c1">1</span> <span class="pl-c1">2</span> <span class="pl-c1">3</span> <span class="pl-c1">4</span> <span class="pl-c1">5</span> <span class="pl-c1">6</span> <span class="pl-c1">7</span>
<span class="pl-s1">first</span> <span class="pl-s1">second</span>
<span class="pl-s1">bar</span> <span class="pl-s1">one</span> <span class="pl-c1">0</span> <span class="pl-c1">5</span> <span class="pl-c1">5</span> <span class="pl-c1">5</span> <span class="pl-c1">6</span> <span class="pl-c1">2</span> <span class="pl-c1">6</span> <span class="pl-c1">8</span>
<span class="pl-s1">two</span> <span class="pl-c1">2</span> <span class="pl-c1">6</span> <span class="pl-c1">9</span> <span class="pl-c1">0</span> <span class="pl-c1">3</span> <span class="pl-c1">6</span> <span class="pl-c1">7</span> <span class="pl-c1">9</span>
<span class="pl-s1">baz</span> <span class="pl-s1">one</span> <span class="pl-c1">9</span> <span class="pl-c1">0</span> <span class="pl-c1">9</span> <span class="pl-c1">9</span> <span class="pl-c1">2</span> <span class="pl-c1">5</span> <span class="pl-c1">7</span> <span class="pl-c1">4</span>
<span class="pl-s1">two</span> <span class="pl-c1">4</span> <span class="pl-c1">8</span> <span class="pl-c1">1</span> <span class="pl-c1">2</span> <span class="pl-c1">9</span> <span class="pl-c1">2</span> <span class="pl-c1">8</span> <span class="pl-c1">1</span>
<span class="pl-s1">foo</span> <span class="pl-s1">one</span> <span class="pl-c1">2</span> <span class="pl-c1">7</span> <span class="pl-c1">3</span> <span class="pl-c1">6</span> <span class="pl-c1">5</span> <span class="pl-c1">5</span> <span class="pl-c1">5</span> <span class="pl-c1">2</span>
<span class="pl-s1">two</span> <span class="pl-c1">3</span> <span class="pl-c1">4</span> <span class="pl-c1">6</span> <span class="pl-c1">2</span> <span class="pl-c1">7</span> <span class="pl-c1">7</span> <span class="pl-c1">1</span> <span class="pl-c1">2</span>
<span class="pl-s1">qux</span> <span class="pl-s1">one</span> <span class="pl-c1">0</span> <span class="pl-c1">8</span> <span class="pl-c1">5</span> <span class="pl-c1">9</span> <span class="pl-c1">5</span> <span class="pl-c1">5</span> <span class="pl-c1">7</span> <span class="pl-c1">3</span>
<span class="pl-s1">two</span> <span class="pl-c1">7</span> <span class="pl-c1">4</span> <span class="pl-c1">0</span> <span class="pl-c1">7</span> <span class="pl-c1">3</span> <span class="pl-c1">6</span> <span class="pl-c1">8</span> <span class="pl-c1">6</span></pre></div>
<p dir="auto">I recently found that I can select multiple levels by indexing with a tuple of tuples</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=">>> df.loc[( ('bar','baz'), ), :]
0 1 2 3 4 5 6 7
first second
bar one 0 5 5 5 6 2 6 8
two 2 6 9 0 3 6 7 9
baz one 9 0 9 9 2 5 7 4
two 4 8 1 2 9 2 8 1"><pre class="notranslate"><code class="notranslate">>>> df.loc[( ('bar','baz'), ), :]
0 1 2 3 4 5 6 7
first second
bar one 0 5 5 5 6 2 6 8
two 2 6 9 0 3 6 7 9
baz one 9 0 9 9 2 5 7 4
two 4 8 1 2 9 2 8 1
</code></pre></div>
<p dir="auto">Or even select at multiple depths of levels</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=">>> df.loc[( ('bar','baz'), ('one',) ), :]
0 1 2 3 4 5 6 7
first second
bar one 0 5 5 5 6 2 6 8
baz one 9 0 9 9 2 5 7 4"><pre class="notranslate"><code class="notranslate">>>> df.loc[( ('bar','baz'), ('one',) ), :]
0 1 2 3 4 5 6 7
first second
bar one 0 5 5 5 6 2 6 8
baz one 9 0 9 9 2 5 7 4
</code></pre></div>
<p dir="auto">The issue is this: if I add any levels to the index tuple that don't exist in the dataframe, pandas drops them silently</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=">>> df.loc[( ('bar','baz','xyz'), ('one',) ), :]
0 1 2 3 4 5 6 7
first second
bar one 0 5 5 5 6 2 6 8
baz one 9 0 9 9 2 5 7 4"><pre class="notranslate"><code class="notranslate">>>> df.loc[( ('bar','baz','xyz'), ('one',) ), :]
0 1 2 3 4 5 6 7
first second
bar one 0 5 5 5 6 2 6 8
baz one 9 0 9 9 2 5 7 4
</code></pre></div>
<p dir="auto">It seems to me like this should raise an exception since</p>
<ol dir="auto">
<li>The shape of the dataframe that is returned in this instance is not what you'd expect</li>
<li>There's no way to unambiguously fill the returned dataframe with NaNs where a level didn't exist (as is done in the case where there is only a single level index)</li>
</ol> | <p dir="auto">xref <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="9407965" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/2567" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/2567/hovercard" href="https://github.com/pandas-dev/pandas/issues/2567">#2567</a></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [27]: data = pd.DataFrame({'hr1': [514, 573], 'hr2': [545, 526],
...: 'team': ['Red Sox', 'Yankees'],
...: 'year1': [2007, 2008], 'year2': [2008, 2008]})
...:
In [28]: data
Out[28]:
hr1 hr2 team year1 year2
0 514 545 Red Sox 2007 2008
1 573 526 Yankees 2008 2008
In [29]: pd.lreshape(data, {'year': ['year1', 'year2'], 'hr': ['hr1', 'hr2']})
Out[29]:
team year hr
0 Red Sox 2007 514
1 Yankees 2008 573
2 Red Sox 2008 545
3 Yankees 2008 526
In [30]: pd.wide_to_long(data, ['hr', 'year'], 'team', 'index')
Out[30]:
hr year
team index
Red Sox 1 514 2007
Yankees 1 573 2008
Red Sox 2 545 2008
Yankees 2 526 2008"><pre class="notranslate"><code class="notranslate">In [27]: data = pd.DataFrame({'hr1': [514, 573], 'hr2': [545, 526],
...: 'team': ['Red Sox', 'Yankees'],
...: 'year1': [2007, 2008], 'year2': [2008, 2008]})
...:
In [28]: data
Out[28]:
hr1 hr2 team year1 year2
0 514 545 Red Sox 2007 2008
1 573 526 Yankees 2008 2008
In [29]: pd.lreshape(data, {'year': ['year1', 'year2'], 'hr': ['hr1', 'hr2']})
Out[29]:
team year hr
0 Red Sox 2007 514
1 Yankees 2008 573
2 Red Sox 2008 545
3 Yankees 2008 526
In [30]: pd.wide_to_long(data, ['hr', 'year'], 'team', 'index')
Out[30]:
hr year
team index
Red Sox 1 514 2007
Yankees 1 573 2008
Red Sox 2 545 2008
Yankees 2 526 2008
</code></pre></div>
<p dir="auto">So we should drop one of these.</p> | 0 |
<p dir="auto">The following throws a very confusing error (pandas 0.13.1):</p>
<p dir="auto">pd.DataFrame([[1,"abc", 1]], columns=["a", "b", "a"]).describe()</p>
<p dir="auto">File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\frame.py", line 3790, in describe<br>
numdata = self._get_numeric_data()<br>
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\generic.py", line 1894, in _get_numeric_data<br>
self._data.get_numeric_data()).<strong>finalize</strong>(self)<br>
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\internals.py", line 2596, in get_numeric_data<br>
return self.get_data(**kwargs)<br>
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\internals.py", line 2610, in get_data<br>
return self.combine(blocks)<br>
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\internals.py", line 2624, in combine<br>
return self.<strong>class</strong>(new_blocks, new_axes, do_integrity_check=False)<br>
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\internals.py", line 2037, in <strong>init</strong><br>
self._set_ref_locs(do_refs=True)<br>
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\internals.py", line 2189, in _set_ref_locs<br>
rl[loc] = (block, i)<br>
IndexError: list assignment index out of range</p>
<p dir="auto">pd.DataFrame([[1,"abc", 1]], columns=["a", "b", "a"]).info()<br>
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\frame.py", line 1443, in info<br>
counts = self.count()<br>
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\frame.py", line 3862, in count<br>
result = notnull(frame).sum(axis=axis)<br>
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\common.py", line 273, in notnull<br>
res = isnull(obj)<br>
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\common.py", line 125, in isnull<br>
return _isnull(obj)<br>
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\common.py", line 137, in _isnull_new<br>
return obj._constructor(obj._data.apply(lambda x: isnull(x.values)))<br>
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\internals.py", line 2384, in apply<br>
do_integrity_check=do_integrity_check)<br>
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\internals.py", line 2037, in <strong>init</strong><br>
self._set_ref_locs(do_refs=True)<br>
File "C:\Program Files\Python 3.3.3\lib\site-packages\pandas\core\internals.py", line 2177, in _set_ref_locs<br>
'have _ref_locs set' % (block, labels))<br>
AssertionError: Cannot create BlockManager._ref_locs because block [BoolBlock: [a, a], 2 x 1, dtype: bool] with duplicate items [Index(['a', 'b', 'a'], dtype='object')] does not have _ref_locs set</p>
<p dir="auto">Note that there are multiple ways to avoid the error:</p>
<ul dir="auto">
<li>not having duplicate column names</li>
<li>changing the type of column "b" or deleting it!</li>
</ul>
<p dir="auto">In my program I had duplicate names only accidently, but still this behaviour and dependence on the non-duplicate column looks like a bug to me.</p> | <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="In [88]: idx = pd.Index([1, 2, 3])
In [89]: idx.summary()
Out[89]: 'Int64Index: 3 entries, 1 to 3'"><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">88</span>]: <span class="pl-s1">idx</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">Index</span>([<span class="pl-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-c1">3</span>])
<span class="pl-v">In</span> [<span class="pl-c1">89</span>]: <span class="pl-s1">idx</span>.<span class="pl-en">summary</span>()
<span class="pl-v">Out</span>[<span class="pl-c1">89</span>]: <span class="pl-s">'Int64Index: 3 entries, 1 to 3'</span></pre></div> | 0 |
<h2 dir="auto">Bug Report</h2>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I would like to work on a fix!</li>
</ul>
<p dir="auto"><strong>Current Behavior</strong><br>
My config is set to <code class="notranslate">>=0.5% in GB</code>, but now adding this parameter brings the target version for Chrome down to v4. I've tried adding <code class="notranslate">>=0.5% in GB and not chrome</code> but no combination seems to shift the Chrome version. When it gets to <code class="notranslate">>=40% in GB</code> it will correctly use the last 2 versions flag for chrome.</p>
<p dir="auto">I'm not sure if this is a browserlist or caniuse issue, I tried the GB.js caniuselite file from a year ago to see if it was corrupted data but it made no change.</p>
<p dir="auto"><strong>Output</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="@babel/preset-env: `DEBUG` option
Using targets:
{
"android": "79",
"chrome": "4",
"edge": "79",
"firefox": "72",
"ie": "11",
"ios": "10.3",
"node": "12.16",
"opera": "65",
"safari": "12.1",
"samsung": "9.2"
}
Using modules transform: false
Using plugins:
proposal-nullish-coalescing-operator { "android":"79", "chrome":"4", "edge":"79", "ie":"11", "ios":"10.3", "node":"12.16", "opera":"65", "safari":"12.1", "samsung":"9.2" }
proposal-optional-chaining { "android":"79", "chrome":"4", "edge":"79", "firefox":"72", "ie":"11", "ios":"10.3", "node":"12.16", "opera":"65", "safari":"12.1", "samsung":"9.2" }
proposal-json-strings { "chrome":"4", "ie":"11", "ios":"10.3" }
proposal-optional-catch-binding { "chrome":"4", "ie":"11", "ios":"10.3" }
proposal-async-generator-functions { "chrome":"4", "ie":"11", "ios":"10.3" }
proposal-object-rest-spread { "chrome":"4", "ie":"11", "ios":"10.3" }
transform-dotall-regex { "chrome":"4", "firefox":"72", "ie":"11", "ios":"10.3" }
proposal-unicode-property-regex { "chrome":"4", "firefox":"72", "ie":"11", "ios":"10.3" }
transform-named-capturing-groups-regex { "chrome":"4", "firefox":"72", "ie":"11", "ios":"10.3" }
transform-async-to-generator { "chrome":"4", "ie":"11", "ios":"10.3" }
transform-exponentiation-operator { "chrome":"4", "ie":"11" }
transform-template-literals { "chrome":"4", "ie":"11", "ios":"10.3", "safari":"12.1" }
transform-literals { "chrome":"4", "ie":"11" }
transform-function-name { "chrome":"4", "ie":"11" }
transform-arrow-functions { "chrome":"4", "ie":"11" }
transform-block-scoped-functions { "chrome":"4" }
transform-classes { "chrome":"4", "ie":"11" }
transform-object-super { "chrome":"4", "ie":"11" }
transform-shorthand-properties { "chrome":"4", "ie":"11" }
transform-duplicate-keys { "chrome":"4", "ie":"11" }
transform-computed-properties { "chrome":"4", "ie":"11" }
transform-for-of { "chrome":"4", "ie":"11" }
transform-sticky-regex { "chrome":"4", "ie":"11" }
transform-unicode-regex { "chrome":"4", "ie":"11", "ios":"10.3" }
transform-spread { "chrome":"4", "ie":"11" }
transform-parameters { "chrome":"4", "ie":"11" }
transform-destructuring { "chrome":"4", "ie":"11" }
transform-block-scoping { "chrome":"4", "ie":"11", "ios":"10.3" }
transform-typeof-symbol { "chrome":"4", "ie":"11" }
transform-new-target { "chrome":"4", "ie":"11" }
transform-regenerator { "chrome":"4", "ie":"11" }
transform-member-expression-literals { "chrome":"4" }
transform-property-literals { "chrome":"4" }
transform-reserved-words { "chrome":"4" }
syntax-dynamic-import { "android":"79", "chrome":"4", "edge":"79", "firefox":"72", "ie":"11", "ios":"10.3", "node":"12.16", "opera":"65", "safari":"12.1", "samsung":"9.2" }"><pre class="notranslate"><code class="notranslate">@babel/preset-env: `DEBUG` option
Using targets:
{
"android": "79",
"chrome": "4",
"edge": "79",
"firefox": "72",
"ie": "11",
"ios": "10.3",
"node": "12.16",
"opera": "65",
"safari": "12.1",
"samsung": "9.2"
}
Using modules transform: false
Using plugins:
proposal-nullish-coalescing-operator { "android":"79", "chrome":"4", "edge":"79", "ie":"11", "ios":"10.3", "node":"12.16", "opera":"65", "safari":"12.1", "samsung":"9.2" }
proposal-optional-chaining { "android":"79", "chrome":"4", "edge":"79", "firefox":"72", "ie":"11", "ios":"10.3", "node":"12.16", "opera":"65", "safari":"12.1", "samsung":"9.2" }
proposal-json-strings { "chrome":"4", "ie":"11", "ios":"10.3" }
proposal-optional-catch-binding { "chrome":"4", "ie":"11", "ios":"10.3" }
proposal-async-generator-functions { "chrome":"4", "ie":"11", "ios":"10.3" }
proposal-object-rest-spread { "chrome":"4", "ie":"11", "ios":"10.3" }
transform-dotall-regex { "chrome":"4", "firefox":"72", "ie":"11", "ios":"10.3" }
proposal-unicode-property-regex { "chrome":"4", "firefox":"72", "ie":"11", "ios":"10.3" }
transform-named-capturing-groups-regex { "chrome":"4", "firefox":"72", "ie":"11", "ios":"10.3" }
transform-async-to-generator { "chrome":"4", "ie":"11", "ios":"10.3" }
transform-exponentiation-operator { "chrome":"4", "ie":"11" }
transform-template-literals { "chrome":"4", "ie":"11", "ios":"10.3", "safari":"12.1" }
transform-literals { "chrome":"4", "ie":"11" }
transform-function-name { "chrome":"4", "ie":"11" }
transform-arrow-functions { "chrome":"4", "ie":"11" }
transform-block-scoped-functions { "chrome":"4" }
transform-classes { "chrome":"4", "ie":"11" }
transform-object-super { "chrome":"4", "ie":"11" }
transform-shorthand-properties { "chrome":"4", "ie":"11" }
transform-duplicate-keys { "chrome":"4", "ie":"11" }
transform-computed-properties { "chrome":"4", "ie":"11" }
transform-for-of { "chrome":"4", "ie":"11" }
transform-sticky-regex { "chrome":"4", "ie":"11" }
transform-unicode-regex { "chrome":"4", "ie":"11", "ios":"10.3" }
transform-spread { "chrome":"4", "ie":"11" }
transform-parameters { "chrome":"4", "ie":"11" }
transform-destructuring { "chrome":"4", "ie":"11" }
transform-block-scoping { "chrome":"4", "ie":"11", "ios":"10.3" }
transform-typeof-symbol { "chrome":"4", "ie":"11" }
transform-new-target { "chrome":"4", "ie":"11" }
transform-regenerator { "chrome":"4", "ie":"11" }
transform-member-expression-literals { "chrome":"4" }
transform-property-literals { "chrome":"4" }
transform-reserved-words { "chrome":"4" }
syntax-dynamic-import { "android":"79", "chrome":"4", "edge":"79", "firefox":"72", "ie":"11", "ios":"10.3", "node":"12.16", "opera":"65", "safari":"12.1", "samsung":"9.2" }
</code></pre></div>
<p dir="auto"><strong>Expected behavior/code</strong><br>
When I remove the <code class="notranslate">>=0.5% in GB</code> I get the expected output</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="@babel/preset-env: `DEBUG` option
Using targets:
{
"android": "79",
"chrome": "79",
"edge": "79",
"firefox": "72",
"ie": "11",
"ios": "13",
"node": "10.19",
"opera": "65",
"safari": "12.1",
"samsung": "9.2"
}
Using modules transform: false
Using plugins:
proposal-nullish-coalescing-operator { "android":"79", "chrome":"79", "edge":"79", "ie":"11", "ios":"13", "node":"10.19", "opera":"65", "safari":"12.1", "samsung":"9.2" }
proposal-optional-chaining { "android":"79", "chrome":"79", "edge":"79", "firefox":"72", "ie":"11", "ios":"13", "node":"10.19", "opera":"65", "safari":"12.1", "samsung":"9.2" }
proposal-json-strings { "ie":"11" }
proposal-optional-catch-binding { "ie":"11" }
proposal-async-generator-functions { "ie":"11" }
proposal-object-rest-spread { "ie":"11" }
transform-dotall-regex { "firefox":"72", "ie":"11" }
proposal-unicode-property-regex { "firefox":"72", "ie":"11" }
transform-named-capturing-groups-regex { "firefox":"72", "ie":"11" }
transform-async-to-generator { "ie":"11" }
transform-exponentiation-operator { "ie":"11" }
transform-template-literals { "ie":"11", "safari":"12.1" }
transform-literals { "ie":"11" }
transform-function-name { "ie":"11" }
transform-arrow-functions { "ie":"11" }
transform-classes { "ie":"11" }
transform-object-super { "ie":"11" }
transform-shorthand-properties { "ie":"11" }
transform-duplicate-keys { "ie":"11" }
transform-computed-properties { "ie":"11" }
transform-for-of { "ie":"11" }
transform-sticky-regex { "ie":"11" }
transform-unicode-regex { "ie":"11" }
transform-spread { "ie":"11" }
transform-parameters { "ie":"11" }
transform-destructuring { "ie":"11" }
transform-block-scoping { "ie":"11" }
transform-typeof-symbol { "ie":"11" }
transform-new-target { "ie":"11" }
transform-regenerator { "ie":"11" }
syntax-dynamic-import { "android":"79", "chrome":"79", "edge":"79", "firefox":"72", "ie":"11", "ios":"13", "node":"10.19", "opera":"65", "safari":"12.1", "samsung":"9.2" }"><pre class="notranslate"><code class="notranslate">@babel/preset-env: `DEBUG` option
Using targets:
{
"android": "79",
"chrome": "79",
"edge": "79",
"firefox": "72",
"ie": "11",
"ios": "13",
"node": "10.19",
"opera": "65",
"safari": "12.1",
"samsung": "9.2"
}
Using modules transform: false
Using plugins:
proposal-nullish-coalescing-operator { "android":"79", "chrome":"79", "edge":"79", "ie":"11", "ios":"13", "node":"10.19", "opera":"65", "safari":"12.1", "samsung":"9.2" }
proposal-optional-chaining { "android":"79", "chrome":"79", "edge":"79", "firefox":"72", "ie":"11", "ios":"13", "node":"10.19", "opera":"65", "safari":"12.1", "samsung":"9.2" }
proposal-json-strings { "ie":"11" }
proposal-optional-catch-binding { "ie":"11" }
proposal-async-generator-functions { "ie":"11" }
proposal-object-rest-spread { "ie":"11" }
transform-dotall-regex { "firefox":"72", "ie":"11" }
proposal-unicode-property-regex { "firefox":"72", "ie":"11" }
transform-named-capturing-groups-regex { "firefox":"72", "ie":"11" }
transform-async-to-generator { "ie":"11" }
transform-exponentiation-operator { "ie":"11" }
transform-template-literals { "ie":"11", "safari":"12.1" }
transform-literals { "ie":"11" }
transform-function-name { "ie":"11" }
transform-arrow-functions { "ie":"11" }
transform-classes { "ie":"11" }
transform-object-super { "ie":"11" }
transform-shorthand-properties { "ie":"11" }
transform-duplicate-keys { "ie":"11" }
transform-computed-properties { "ie":"11" }
transform-for-of { "ie":"11" }
transform-sticky-regex { "ie":"11" }
transform-unicode-regex { "ie":"11" }
transform-spread { "ie":"11" }
transform-parameters { "ie":"11" }
transform-destructuring { "ie":"11" }
transform-block-scoping { "ie":"11" }
transform-typeof-symbol { "ie":"11" }
transform-new-target { "ie":"11" }
transform-regenerator { "ie":"11" }
syntax-dynamic-import { "android":"79", "chrome":"79", "edge":"79", "firefox":"72", "ie":"11", "ios":"13", "node":"10.19", "opera":"65", "safari":"12.1", "samsung":"9.2" }
</code></pre></div>
<p dir="auto"><strong>Babel Configuration (babel.config.js, .babelrc, package.json#babel, cli command, .eslintrc)</strong></p>
<ul dir="auto">
<li>Filename: <code class="notranslate">.babelrc</code></li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
"sourceType": "unambiguous",
"presets": [
[
"@babel/preset-env", {
"debug": true,
"modules": false,
"useBuiltIns": "usage",
"corejs": 3,
"targets": "last 2 versions, >=0.5% in GB, node 10, not IE <= 10, not dead"
}
],
"@babel/preset-react"
],
// Only use node polyfills for server files, no need for IE11 support on the server
"overrides": [{
"test": "./src/server",
"presets": [
[
"@babel/preset-env", {
"debug": true,
"modules": false,
"useBuiltIns": "usage",
"corejs": 3,
"targets": "node 12"
}
],
"@babel/preset-react"
]
}],
"plugins": [
"@babel/plugin-proposal-optional-chaining",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-transform-exponentiation-operator",
"syntax-dynamic-import",
"transform-async-to-generator",
"universal-import"
]
}"><pre class="notranslate"><code class="notranslate">{
"sourceType": "unambiguous",
"presets": [
[
"@babel/preset-env", {
"debug": true,
"modules": false,
"useBuiltIns": "usage",
"corejs": 3,
"targets": "last 2 versions, >=0.5% in GB, node 10, not IE <= 10, not dead"
}
],
"@babel/preset-react"
],
// Only use node polyfills for server files, no need for IE11 support on the server
"overrides": [{
"test": "./src/server",
"presets": [
[
"@babel/preset-env", {
"debug": true,
"modules": false,
"useBuiltIns": "usage",
"corejs": 3,
"targets": "node 12"
}
],
"@babel/preset-react"
]
}],
"plugins": [
"@babel/plugin-proposal-optional-chaining",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-transform-exponentiation-operator",
"syntax-dynamic-import",
"transform-async-to-generator",
"universal-import"
]
}
</code></pre></div>
<p dir="auto"><strong>Environment</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" System:
OS: macOS 10.15.3
Binaries:
Node: 12.16.1 - ~/.nvm/versions/node/v12.16.1/bin/node
Yarn: 1.19.1 - /usr/local/bin/yarn
npm: 6.13.4 - ~/.nvm/versions/node/v12.16.1/bin/npm
npmPackages:
@babel/core: ^7.8.6 => 7.8.6
@babel/plugin-proposal-class-properties: ^7.8.3 => 7.8.3
@babel/plugin-proposal-optional-chaining: ^7.8.3 => 7.8.3
@babel/preset-env: ^7.8.6 => 7.8.6
@babel/preset-react: ^7.8.3 => 7.8.3
@babel/register: ^7.8.6 => 7.8.6
babel-cli: ^6.26.0 => 6.26.0
babel-eslint: ^10.1.0 => 10.1.0
babel-loader: ^8.0.6 => 8.0.6
babel-plugin-syntax-dynamic-import: ^6.18.0 => 6.18.0
babel-plugin-transform-async-to-generator: ^6.24.1 => 6.24.1
babel-plugin-universal-import: ^4.0.0 => 4.0.0
eslint: ^6.6.0 => 6.8.0
webpack: ^4.16.5 => 4.41.6 "><pre class="notranslate"><code class="notranslate"> System:
OS: macOS 10.15.3
Binaries:
Node: 12.16.1 - ~/.nvm/versions/node/v12.16.1/bin/node
Yarn: 1.19.1 - /usr/local/bin/yarn
npm: 6.13.4 - ~/.nvm/versions/node/v12.16.1/bin/npm
npmPackages:
@babel/core: ^7.8.6 => 7.8.6
@babel/plugin-proposal-class-properties: ^7.8.3 => 7.8.3
@babel/plugin-proposal-optional-chaining: ^7.8.3 => 7.8.3
@babel/preset-env: ^7.8.6 => 7.8.6
@babel/preset-react: ^7.8.3 => 7.8.3
@babel/register: ^7.8.6 => 7.8.6
babel-cli: ^6.26.0 => 6.26.0
babel-eslint: ^10.1.0 => 10.1.0
babel-loader: ^8.0.6 => 8.0.6
babel-plugin-syntax-dynamic-import: ^6.18.0 => 6.18.0
babel-plugin-transform-async-to-generator: ^6.24.1 => 6.24.1
babel-plugin-universal-import: ^4.0.0 => 4.0.0
eslint: ^6.6.0 => 6.8.0
webpack: ^4.16.5 => 4.41.6
</code></pre></div>
<p dir="auto">Same issue in node 10.x</p>
<p dir="auto"><strong>Possible Solution</strong><br>
I have a feeling it's a browserlist issue with parsing the semvar</p> | <p dir="auto">The only place I saw "I'd like to use JavaScript inside .babelrc is here: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="175603667" data-permission-text="Title is private" data-url="https://github.com/babel/babel/issues/4449" data-hovercard-type="issue" data-hovercard-url="/babel/babel/issues/4449/hovercard" href="https://github.com/babel/babel/issues/4449">#4449</a>, so I am opening a proper issue about <code class="notranslate">.babelrc.js</code>.</p>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">I would like to be able to provide:</p>
<p dir="auto">.babelrc.js</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="module.exports = {
plugins: [
["babel-plugin-transform-cool", {
isCool: maybe => maybe ? 'yes' : 'no';
}]
]
};"><pre class="notranslate"><span class="pl-smi">module</span><span class="pl-kos">.</span><span class="pl-c1">exports</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
<span class="pl-c1">plugins</span>: <span class="pl-kos">[</span>
<span class="pl-kos">[</span><span class="pl-s">"babel-plugin-transform-cool"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span>
<span class="pl-en">isCool</span>: <span class="pl-s1">maybe</span> <span class="pl-c1">=></span> <span class="pl-s1">maybe</span> ? <span class="pl-s">'yes'</span> : <span class="pl-s">'no'</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">]</span>
<span class="pl-kos">]</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">And use the <code class="notranslate">isCool</code> option in the plugin like so: state.opts.isCool(true);</p>
<h3 dir="auto">Current Behavior</h3>
<p dir="auto">.babelrc only allows for JSON.</p>
<h3 dir="auto">Possible Solution</h3>
<p dir="auto">Use <code class="notranslate">babel-core</code> programmatically, this allows for any type of option (which may be seen as non-consistent with .babelrc).</p>
<h3 dir="auto">Context</h3>
<p dir="auto">ESLint allows this, I find it easier to reason about configuration files when they are written with JavaScript: comments, easy customization with ENV variables, no context switch (This is JavaScript).</p> | 0 |
<p dir="auto">All the downloadable packages are named "atom.x86_64.rpm" , could you please specify the version in the package names , it will be so helpful</p>
<p dir="auto">Thank you</p> | <p dir="auto">Can we get the version appended to the rpm, deb and dmg packages as they are built.</p>
<p dir="auto">I can't speak to dmg for mac, but it is considered standard practice to include the version and release as part of the filename in rpm and deb packages, especially since atom doesn't update itself and there are no YUM repos (yet).</p> | 1 |
<p dir="auto"><code class="notranslate">LoggingProxy.write()</code> currently always returns <code class="notranslate">None</code> (because in Python2 that was the correct return type!)</p>
<p dir="auto">From the <a href="https://docs.python.org/release/3.9.2/library/io.html#io.TextIOBase.write" rel="nofollow">Python docs</a>:</p>
<blockquote>
<p dir="auto"><code class="notranslate">write(s)</code><br>
Write the string s to the stream and return the number of characters written.</p>
</blockquote>
<p dir="auto">Therefore methods that rely on <code class="notranslate">sys.stdout.write()</code> expect <code class="notranslate">LoggingProxy</code> (which <code class="notranslate">celery</code> replaces <code class="notranslate">sys.stdout</code> with) to conform to the same <code class="notranslate">IO.write()</code> return type.</p>
<h1 dir="auto">Checklist</h1>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have verified that the issue exists against the <code class="notranslate">master</code> branch of Celery.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> This has already been asked to the <a href="https://groups.google.com/forum/#!forum/celery-users" rel="nofollow">discussion group</a> first.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the relevant section in the<br>
<a href="http://docs.celeryproject.org/en/latest/contributing.html#other-bugs" rel="nofollow">contribution guide</a><br>
on reporting bugs.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/issues?q=is%3Aissue+label%3A%22Issue+Type%3A+Bug+Report%22+-label%3A%22Category%3A+Documentation%22">issues list</a><br>
for similar or identical bug reports.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/pulls?q=is%3Apr+label%3A%22PR+Type%3A+Bugfix%22+-label%3A%22Category%3A+Documentation%22">pull requests list</a><br>
for existing proposed fixes.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/commits/master">commit log</a><br>
to find out if the bug was already fixed in the master branch.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included all related issues and possible duplicate issues<br>
in this issue (If there are none, check this box anyway).</li>
</ul>
<h2 dir="auto">Mandatory Debugging Information</h2>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have included the output of <code class="notranslate">celery -A proj report</code> in the issue.<br>
(if you are not able to do this, then at least specify the Celery<br>
version affected).</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have verified that the issue exists against the <code class="notranslate">master</code> branch of Celery.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have included the contents of <code class="notranslate">pip freeze</code> in the issue.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have included all the versions of all the external dependencies required<br>
to reproduce this bug.</li>
</ul>
<h2 dir="auto">Optional Debugging Information</h2>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> 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" checked=""> 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="6343957" data-permission-text="Title is private" data-url="https://github.com/celery/celery/issues/928" data-hovercard-type="issue" data-hovercard-url="/celery/celery/issues/928/hovercard" href="https://github.com/celery/celery/issues/928">#928</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=""><pre class="notranslate"><code class="notranslate"></code></pre></div>
<p dir="auto"></p>
</details>
<h1 dir="auto">Steps to Reproduce</h1>
<h2 dir="auto">Required Dependencies</h2>
<ul dir="auto">
<li><strong>Minimal Python Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Celery Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Kombu Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Broker Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Result Backend Version</strong>: N/A or Unknown</li>
<li><strong>Minimal OS and/or Kernel Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Broker Client Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Result Backend Client Version</strong>: N/A or Unknown</li>
</ul>
<h3 dir="auto">Python Packages</h3>
<details>
<summary><b><code class="notranslate">pip freeze</code> Output:</b></summary>
<p dir="auto">
</p><div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate"></code></pre></div>
<p dir="auto"></p>
</details>
<h3 dir="auto">Other Dependencies</h3>
<details>
<p dir="auto">
N/A
</p>
</details>
<h2 dir="auto">Minimally Reproducible Test Case</h2>
<details>
<p dir="auto">
</p><div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="p = LoggingProxy(logger, loglevel=logging.ERROR)
p.closed = False
num_chars = p.write('foo')
assert num_chars == 3"><pre class="notranslate"><span class="pl-s1">p</span> <span class="pl-c1">=</span> <span class="pl-v">LoggingProxy</span>(<span class="pl-s1">logger</span>, <span class="pl-s1">loglevel</span><span class="pl-c1">=</span><span class="pl-s1">logging</span>.<span class="pl-v">ERROR</span>)
<span class="pl-s1">p</span>.<span class="pl-s1">closed</span> <span class="pl-c1">=</span> <span class="pl-c1">False</span>
<span class="pl-s1">num_chars</span> <span class="pl-c1">=</span> <span class="pl-s1">p</span>.<span class="pl-en">write</span>(<span class="pl-s">'foo'</span>)
<span class="pl-k">assert</span> <span class="pl-s1">num_chars</span> <span class="pl-c1">==</span> <span class="pl-c1">3</span></pre></div>
<p dir="auto"></p>
</details>
<h1 dir="auto">Expected Behavior</h1>
<p dir="auto"><code class="notranslate">LoggingProxy</code> returns the number of characters/bytes written</p>
<h1 dir="auto">Actual Behavior</h1>
<p dir="auto"><code class="notranslate">LoggingProxy</code> returns <code class="notranslate">None</code></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"> 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"> 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"> 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"> 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"> I have included all related issues and possible duplicate issues<br>
in this issue (If there are none, check this box anyway).</li>
</ul>
<h2 dir="auto">Mandatory Debugging Information</h2>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have included the output of <code class="notranslate">celery -A proj report</code> in the issue.<br>
(if you are not able to do this, then at least specify the Celery<br>
version affected).</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have verified that the issue exists against the <code class="notranslate">master</code> branch of Celery.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have included the contents of <code class="notranslate">pip freeze</code> in the issue.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have included all the versions of all the external dependencies required<br>
to reproduce this bug.</li>
</ul>
<h2 dir="auto">Optional Debugging Information</h2>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one Python version<br>
and/or implementation.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one message broker and/or<br>
result backend.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one version of the message<br>
broker and/or result backend.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one operating system.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue on more than one workers pool.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue with autoscaling, retries,<br>
ETA/Countdown & rate limits disabled.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have tried reproducing the issue after downgrading<br>
and/or upgrading Celery and its dependencies.</li>
</ul>
<h2 dir="auto">Related Issues and Possible Duplicates</h2>
<h4 dir="auto">Related Issues</h4>
<ul dir="auto">
<li>None</li>
</ul>
<h4 dir="auto">Possible Duplicates</h4>
<ul dir="auto">
<li>None</li>
</ul>
<h2 dir="auto">Environment & Settings</h2>
<p dir="auto"><strong>Celery version</strong>:</p>
<details>
<summary><b><code class="notranslate">celery report</code> Output:</b></summary>
<p dir="auto">
</p><div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate"></code></pre></div>
<p dir="auto"></p>
</details>
<h1 dir="auto">Steps to Reproduce</h1>
<h2 dir="auto">Required Dependencies</h2>
<ul dir="auto">
<li><strong>Minimal Python Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Celery Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Kombu Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Broker Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Result Backend Version</strong>: N/A or Unknown</li>
<li><strong>Minimal OS and/or Kernel Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Broker Client Version</strong>: N/A or Unknown</li>
<li><strong>Minimal Result Backend Client Version</strong>: N/A or Unknown</li>
</ul>
<h3 dir="auto">Python Packages</h3>
<details>
<summary><b><code class="notranslate">pip freeze</code> Output:</b></summary>
<p dir="auto">
</p><div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate"></code></pre></div>
<p dir="auto"></p>
</details>
<h3 dir="auto">Other Dependencies</h3>
<details>
<p dir="auto">
N/A
</p>
</details>
<h2 dir="auto">Minimally Reproducible Test Case</h2>
<details>
<p dir="auto">
</p><div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"></pre></div>
<p dir="auto"></p>
</details>
<h1 dir="auto">Expected Behavior</h1>
<h1 dir="auto">Actual Behavior</h1> | 0 |
<p dir="auto">For certain well-chosen inputs, <code class="notranslate">group_var_float64</code> may return small negative values due to roundoff error. This then interferes with e.g. computing aggregate standard deviations:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=">>> import pandas as pd
>>> import numpy as np
>>> df = pd.DataFrame({'a': (0, 0, 0), 'b': 0.832845131556193 * np.ones(3)})
>>> df.groupby('a').std()
b
a
0 NaN"><pre class="notranslate"><span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-k">import</span> <span class="pl-s1">pandas</span> <span class="pl-k">as</span> <span class="pl-s1">pd</span>
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">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">0</span>, <span class="pl-c1">0</span>, <span class="pl-c1">0</span>), <span class="pl-s">'b'</span>: <span class="pl-c1">0.832845131556193</span> <span class="pl-c1">*</span> <span class="pl-s1">np</span>.<span class="pl-en">ones</span>(<span class="pl-c1">3</span>)})
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">df</span>.<span class="pl-en">groupby</span>(<span class="pl-s">'a'</span>).<span class="pl-en">std</span>()
<span class="pl-s1">b</span>
<span class="pl-s1">a</span>
<span class="pl-c1">0</span> <span class="pl-v">NaN</span></pre></div>
<p dir="auto">To see the cause of this in isolation, consider</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy as np
from pandas.algos import group_var_float64
out = np.array([[0.0]], dtype=np.float64)
counts = np.array([0])
values = 0.832845131556193 * np.ones((3, 1), dtype=np.float64)
labels = np.zeros(3, dtype=np.int)
group_var_float64(out, counts, values, labels)
print out # This prints [[ -1.48029737e-16]] on my machine."><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">from</span> <span class="pl-s1">pandas</span>.<span class="pl-s1">algos</span> <span class="pl-k">import</span> <span class="pl-s1">group_var_float64</span>
<span class="pl-s1">out</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">array</span>([[<span class="pl-c1">0.0</span>]], <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">np</span>.<span class="pl-s1">float64</span>)
<span class="pl-s1">counts</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">array</span>([<span class="pl-c1">0</span>])
<span class="pl-s1">values</span> <span class="pl-c1">=</span> <span class="pl-c1">0.832845131556193</span> <span class="pl-c1">*</span> <span class="pl-s1">np</span>.<span class="pl-en">ones</span>((<span class="pl-c1">3</span>, <span class="pl-c1">1</span>), <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">np</span>.<span class="pl-s1">float64</span>)
<span class="pl-s1">labels</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">zeros</span>(<span class="pl-c1">3</span>, <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">np</span>.<span class="pl-s1">int</span>)
<span class="pl-en">group_var_float64</span>(<span class="pl-s1">out</span>, <span class="pl-s1">counts</span>, <span class="pl-s1">values</span>, <span class="pl-s1">labels</span>)
<span class="pl-k">print</span> <span class="pl-s1">out</span> <span class="pl-c"># This prints [[ -1.48029737e-16]] on my machine.</span></pre></div>
<p dir="auto">The fix for this should be easy (round up negative values to zero). I can provide a fix (+ tests) if needed.</p>
<h2 dir="auto">INSTALLED VERSIONS</h2>
<p dir="auto">commit: None<br>
python: 2.7.6.final.0<br>
python-bits: 64<br>
OS: Darwin<br>
OS-release: 14.3.0<br>
machine: x86_64<br>
processor: i386<br>
byteorder: little<br>
LC_ALL: None<br>
LANG: nl_BE.UTF-8</p>
<p dir="auto">pandas: 0.16.1<br>
nose: 1.3.4<br>
Cython: 0.22<br>
numpy: 1.9.2<br>
scipy: 0.15.1<br>
statsmodels: None<br>
IPython: 3.1.0<br>
sphinx: 1.3.1<br>
patsy: None<br>
dateutil: 2.4.2<br>
pytz: 2014.9<br>
bottleneck: None<br>
tables: 3.1.1<br>
numexpr: 2.4<br>
matplotlib: 1.4.3<br>
openpyxl: None<br>
xlrd: None<br>
xlwt: None<br>
xlsxwriter: None<br>
lxml: None<br>
bs4: 4.3.2<br>
html5lib: 0.999<br>
httplib2: None<br>
apiclient: None<br>
sqlalchemy: 1.0.4<br>
pymysql: None<br>
psycopg2: None</p> | <p dir="auto">I propose adding a pipe method to GroupBy objects, having the same interface as <code class="notranslate">DataFrame.pipe</code>/<code class="notranslate">Series.pipe</code>.</p>
<p dir="auto">The use case is reusing a GroupBy object when doing calculations, see use case example below.</p>
<h2 dir="auto">Use case</h2>
<p dir="auto">A pipe is useful for succintly reusing Groupby objects in calculations, for example calculating prices given a column of revenue and a columns of quantity sold:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=">>> from numpy.random import choice, random
>>> n = 100_000
>>> df = pd.DataFrame({'Store': choice(['Store_1', 'Store_2'], n),
'Year': choice(['Year_1', 'Year_2', 'Year_3', 'Year_4'], n),
'Revenue': (np.random.random(n)*50+10).round(2),
'Quantity': np.random.randint(1, 10, size=n)})
>>> df.head(2)
Quantity Revenue Store Year
0 2 14.69 Store_1 Year_1
1 9 25.89 Store_2 Year_4"><pre class="notranslate"><span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-k">from</span> <span class="pl-s1">numpy</span>.<span class="pl-s1">random</span> <span class="pl-k">import</span> <span class="pl-s1">choice</span>, <span class="pl-s1">random</span>
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">n</span> <span class="pl-c1">=</span> <span class="pl-c1">100_000</span>
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">df</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>({<span class="pl-s">'Store'</span>: <span class="pl-en">choice</span>([<span class="pl-s">'Store_1'</span>, <span class="pl-s">'Store_2'</span>], <span class="pl-s1">n</span>),
<span class="pl-s">'Year'</span>: <span class="pl-en">choice</span>([<span class="pl-s">'Year_1'</span>, <span class="pl-s">'Year_2'</span>, <span class="pl-s">'Year_3'</span>, <span class="pl-s">'Year_4'</span>], <span class="pl-s1">n</span>),
<span class="pl-s">'Revenue'</span>: (<span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">random</span>(<span class="pl-s1">n</span>)<span class="pl-c1">*</span><span class="pl-c1">50</span><span class="pl-c1">+</span><span class="pl-c1">10</span>).<span class="pl-en">round</span>(<span class="pl-c1">2</span>),
<span class="pl-s">'Quantity'</span>: <span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">randint</span>(<span class="pl-c1">1</span>, <span class="pl-c1">10</span>, <span class="pl-s1">size</span><span class="pl-c1">=</span><span class="pl-s1">n</span>)})
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">df</span>.<span class="pl-en">head</span>(<span class="pl-c1">2</span>)
<span class="pl-v">Quantity</span> <span class="pl-v">Revenue</span> <span class="pl-v">Store</span> <span class="pl-v">Year</span>
<span class="pl-c1">0</span> <span class="pl-c1">2</span> <span class="pl-c1">14.69</span> <span class="pl-v">Store_1</span> <span class="pl-v">Year_1</span>
<span class="pl-c1">1</span> <span class="pl-c1">9</span> <span class="pl-c1">25.89</span> <span class="pl-v">Store_2</span> <span class="pl-v">Year_4</span></pre></div>
<p dir="auto">Then having <code class="notranslate">.pipe</code>, we could for example get prices per store/year like so</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=">>> (df.groupby(['Store', 'Year'])
... .pipe(lambda grp: grp.Revenue.sum()/grp.Quantity.sum())
... .unstack().round(2))
Year Year_1 Year_2 Year_3 Year_4
Store
Store_1 6.99 6.99 7.01 6.92
Store_2 6.95 6.98 6.97 6.96"><pre class="notranslate"><span class="pl-c1">>></span><span class="pl-c1">></span> (<span class="pl-s1">df</span>.<span class="pl-en">groupby</span>([<span class="pl-s">'Store'</span>, <span class="pl-s">'Year'</span>])
... .<span class="pl-en">pipe</span>(<span class="pl-k">lambda</span> <span class="pl-s1">grp</span>: <span class="pl-s1">grp</span>.<span class="pl-v">Revenue</span>.<span class="pl-en">sum</span>()<span class="pl-c1">/</span><span class="pl-s1">grp</span>.<span class="pl-v">Quantity</span>.<span class="pl-en">sum</span>())
... .<span class="pl-en">unstack</span>().<span class="pl-en">round</span>(<span class="pl-c1">2</span>))
<span class="pl-v">Year</span> <span class="pl-v">Year_1</span> <span class="pl-v">Year_2</span> <span class="pl-v">Year_3</span> <span class="pl-v">Year_4</span>
<span class="pl-v">Store</span>
<span class="pl-v">Store_1</span> <span class="pl-c1">6.99</span> <span class="pl-c1">6.99</span> <span class="pl-c1">7.01</span> <span class="pl-c1">6.92</span>
<span class="pl-v">Store_2</span> <span class="pl-c1">6.95</span> <span class="pl-c1">6.98</span> <span class="pl-c1">6.97</span> <span class="pl-c1">6.96</span></pre></div>
<p dir="auto">Note that the above is vectorized and piping makes the code succint and clear.</p>
<h2 dir="auto">Alternatives to .pipe</h2>
<p dir="auto">The alternatives would be:</p>
<ol dir="auto">
<li>use <code class="notranslate">.apply</code>,</li>
<li>create a function and call that with a GroupBy object as its argument</li>
<li>Create a price column</li>
</ol>
<p dir="auto">Option 1 is not good because of slowness.</p>
<p dir="auto">A pipe is just syntactic sugar for option 2, but would piping be more readable, especially it you're piping other stuff already.</p>
<p dir="auto">Creating a concrete calculated column is in some instances the right approach, but in other cases it is better to calculate stuff.</p> | 0 |
<p dir="auto">0.189.0 crash often......<br>
when I copy text</p> | <p dir="auto">I'm using Atom ver. 0.189.0 on Ubuntu 14.04.2 LTS. When I copy a piece of text in atom and I try to paste it the right-click menu either won't show up or will show up without giving me option to paste. The paste shortcut doesn't work either and it creates issues even if I try to copy and paste text from other programs (after I have coping something from atom). I have disable all the extra plugins, so it isn't a plugin issue. I didn't had this issue with the previous version (I am using webupd8 ppa). If I do a right click on a place where there isn't a text entry (meaning a place where it doesn't support paste anyway) the right click menu appears fine.</p> | 1 |
<p dir="auto">Example: <a href="https://github.com/symfony/symfony/blob/v3.1.3/src/Symfony/Component/Security/Core/Authentication/AuthenticationProviderManager.php#L33">https://github.com/symfony/symfony/blob/v3.1.3/src/Symfony/Component/Security/Core/Authentication/AuthenticationProviderManager.php#L33</a></p>
<p dir="auto">Could be like:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/**
* @var AuthenticationProviderInterface[]
*/
private $providers;"><pre class="notranslate"><code class="notranslate">/**
* @var AuthenticationProviderInterface[]
*/
private $providers;
</code></pre></div>
<p dir="auto">Or at least:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/**
* @var array
*/
private $providers;"><pre class="notranslate"><code class="notranslate">/**
* @var array
*/
private $providers;
</code></pre></div>
<p dir="auto">Adding PhpDocs would ease up reading the code, as one could just see the type of data stored in a field, instead of reading all the class' code, to reason what it contains. And of course, it would make IDE autocompletion better supported.</p>
<p dir="auto">I volunteer to add them and submit a PR.</p> | <p dir="auto">Hi,</p>
<p dir="auto">I recently upgrade from sf 2.3.9 to 2.3.10 and i'm surprised that elements cannot be removed from collections in forms.</p>
<p dir="auto">But after i debugged the symfony form's core, i found that there's a problem with the method onSubmit in class Symfony\Component\Form\Extension\Core\EventListener\ResizeFormListener.</p>
<p dir="auto">This is the source of problem:</p>
<p dir="auto">// The data mapper only adds, but does not remove items, so do this<br>
// here<br>
if ($this->allowDelete) {<br>
if ($data instanceof \IteratorAggregate) {<br>
$iter = $data->getIterator();<br>
while ($iter->valid()) {<br>
$name = $iter->key();<br>
if ($form->has($name)) {<br>
$iter->next();<br>
} else {<br>
$iter->offsetUnset($name);<br>
}<br>
}<br>
} else {<br>
foreach ($data as $name => $child) {<br>
if (!$form->has($name)) {<br>
unset($data[$name]);<br>
}<br>
}<br>
}<br>
}</p>
<p dir="auto">I fixed this problem by converting ArrayCollection to array in the getter of my form's model.</p> | 0 |
<p dir="auto">I am using torch1.5 + cuda10, call cuda-function with c++ code and use it in python by pybind.<br>
1、paste my c++ code, name bind_cudevice.cc<br>
2、compile bind_cudevice.cc with my g++ compile code<br>
3、paste my python code named test.py<br>
4、Finally you will see core dump, this core only with cuda10+torch1.5</p>
<p dir="auto">My Environment</p>
<ul dir="auto">
<li>PyTorch Version (e.g., 1.0):1.5</li>
<li>OS (e.g., Linux):Linux</li>
<li>How you installed PyTorch (<code class="notranslate">conda</code>, <code class="notranslate">pip</code>, source):source</li>
<li>Build command you used (if compiling from source):yes</li>
<li>Python version:3.6.8</li>
<li>CUDA/cuDNN version:Cuda10.0</li>
<li>GPU models and configuration:K40</li>
<li>Any other relevant information:</li>
</ul>
<p dir="auto">The c++ code as below:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#include <iostream>
#include <cublas_v2.h>
#include <cuda.h>
#include <cuda_runtime_api.h>
#include <cusparse.h>
#include <cusolverDn.h>
#include <curand.h>
#include <pybind11/pybind11.h>
class CuDevice {
public:
static CuDevice& Instantiate() {
CuDevice &ans = this_thread_device_;
if (!ans.initialized_)
ans.Initialize();
return ans;
}
private:
CuDevice(){};
public:
void Initialize() {
initialized_ = true;
cusolverDnCreate(&cusolverdn_handle_);
cusolverDnSetStream(cusolverdn_handle_, cudaStreamPerThread);
}
~CuDevice() {
std::cout << "in ~CuDevice" << std::endl;
if (cusolverdn_handle_) {
std::cout << "in ~CuDevice and cusolverdn_handle_" << std::endl;
cusolverDnDestroy(cusolverdn_handle_);
}
}
private:
bool initialized_;
cublasHandle_t cublas_handle_;
cusparseHandle_t cusparse_handle_;
curandGenerator_t curand_handle_;
cusolverDnHandle_t cusolverdn_handle_;
static thread_local CuDevice this_thread_device_;
//static CuDevice this_thread_device_;
};
thread_local CuDevice CuDevice::this_thread_device_ = CuDevice();
int init_cudevice(){
CuDevice::Instantiate();
std::cout << "hello world" << std::endl;
return 0;
}
PYBIND11_MODULE(example, m) {
m.def("init_cudevide",
&init_cudevice,
"select gpu id");
}"><pre class="notranslate"><code class="notranslate">#include <iostream>
#include <cublas_v2.h>
#include <cuda.h>
#include <cuda_runtime_api.h>
#include <cusparse.h>
#include <cusolverDn.h>
#include <curand.h>
#include <pybind11/pybind11.h>
class CuDevice {
public:
static CuDevice& Instantiate() {
CuDevice &ans = this_thread_device_;
if (!ans.initialized_)
ans.Initialize();
return ans;
}
private:
CuDevice(){};
public:
void Initialize() {
initialized_ = true;
cusolverDnCreate(&cusolverdn_handle_);
cusolverDnSetStream(cusolverdn_handle_, cudaStreamPerThread);
}
~CuDevice() {
std::cout << "in ~CuDevice" << std::endl;
if (cusolverdn_handle_) {
std::cout << "in ~CuDevice and cusolverdn_handle_" << std::endl;
cusolverDnDestroy(cusolverdn_handle_);
}
}
private:
bool initialized_;
cublasHandle_t cublas_handle_;
cusparseHandle_t cusparse_handle_;
curandGenerator_t curand_handle_;
cusolverDnHandle_t cusolverdn_handle_;
static thread_local CuDevice this_thread_device_;
//static CuDevice this_thread_device_;
};
thread_local CuDevice CuDevice::this_thread_device_ = CuDevice();
int init_cudevice(){
CuDevice::Instantiate();
std::cout << "hello world" << std::endl;
return 0;
}
PYBIND11_MODULE(example, m) {
m.def("init_cudevide",
&init_cudevice,
"select gpu id");
}
</code></pre></div> | <h2 dir="auto"><g-emoji class="g-emoji" alias="bug" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f41b.png">🐛</g-emoji> Bug</h2>
<p dir="auto">I am using cusolverDn in c++ and import it to python with pybind11.<br>
Segment Fault after use cusolverDnCreate() and cusolverDnDestroy() with torch.</p>
<p dir="auto">NOTE:</p>
<p dir="auto">###<strong>1: When the demo run with Torch1.2,it run success, the SegFault disappear, does it mean Torch 1.5 has some bug?</strong><br>
###<strong>2: This SegFault only appear with "thread_local", Does it provide some information for this bug?</strong><br>
###<strong>3: Please see test.py below, if we "import torch" after "import example", SegFault disappear.</strong><br>
###<strong>4: Torch have not link libcusolver.so, so we just link it once.</strong></p>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ezyang/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ezyang">@ezyang</a> say that upgarde cuda may fix this, but after i upgrade cuda to 10.2, SegFault as usual.</p>
<p dir="auto">cc please <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ezyang/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ezyang">@ezyang</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/gchanan/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gchanan">@gchanan</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/zou3519/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/zou3519">@zou3519</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/yf225/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/yf225">@yf225</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/glaringlee/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/glaringlee">@glaringlee</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ngimel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ngimel">@ngimel</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mcarilli/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mcarilli">@mcarilli</a></p>
<h2 dir="auto">To Reproduce</h2>
<p dir="auto">Steps to reproduce the behavior:</p>
<p dir="auto">1.paste the c++ code, name bind_cudevice.cc<br>
2.compile bind_cudevice.cc with my g++ compile code<br>
3.paste my python code named test.py<br>
4. just run test.py and see</p>
<p dir="auto">bind_cudevice.cc</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#include <iostream>
#include <cublas_v2.h>
#include <cuda.h>
#include <cuda_runtime_api.h>
#include <cusolverDn.h>
#include <cusolverSp.h>
#include <cusolverRf.h>
#include <pybind11/pybind11.h>
class CuDevice {
public:
CuDevice() {
initialized_ = true;
cudaSetDevice(0);
cusolverDnCreate(&cusolverdn_handle_);
cusolverDnSetStream(cusolverdn_handle_, cudaStreamPerThread);
}
~CuDevice() {
std::cout << "in ~CuDevice" << std::endl;
if (cusolverdn_handle_) {
std::cout << "in ~CuDevice and cusolverdn_handle_" << std::endl;
cusolverDnDestroy(cusolverdn_handle_);
std::cout << "Destory success" << std::endl;
}
}
private:
bool initialized_;
cusolverDnHandle_t cusolverdn_handle_;
};
int init_cudevice(){
thread_local CuDevice a = CuDevice();
std::cout << "hello world" << std::endl;
return 0;
}
PYBIND11_MODULE(example, m) {
m.def("init_cudevide",
&init_cudevice,
"select gpu id");
}"><pre class="notranslate"><code class="notranslate">#include <iostream>
#include <cublas_v2.h>
#include <cuda.h>
#include <cuda_runtime_api.h>
#include <cusolverDn.h>
#include <cusolverSp.h>
#include <cusolverRf.h>
#include <pybind11/pybind11.h>
class CuDevice {
public:
CuDevice() {
initialized_ = true;
cudaSetDevice(0);
cusolverDnCreate(&cusolverdn_handle_);
cusolverDnSetStream(cusolverdn_handle_, cudaStreamPerThread);
}
~CuDevice() {
std::cout << "in ~CuDevice" << std::endl;
if (cusolverdn_handle_) {
std::cout << "in ~CuDevice and cusolverdn_handle_" << std::endl;
cusolverDnDestroy(cusolverdn_handle_);
std::cout << "Destory success" << std::endl;
}
}
private:
bool initialized_;
cusolverDnHandle_t cusolverdn_handle_;
};
int init_cudevice(){
thread_local CuDevice a = CuDevice();
std::cout << "hello world" << std::endl;
return 0;
}
PYBIND11_MODULE(example, m) {
m.def("init_cudevide",
&init_cudevice,
"select gpu id");
}
</code></pre></div>
<p dir="auto">g++ compile code</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="
g++ -O3 -Wall -shared -std=c++11 -fPIC -I/usr/include/python3.6m -I./third-party/pybind11-2.2.4/include -I/usr/local/cuda/include -Wl,-rpath=/usr/local/cuda/lib64 -L/usr/local/cuda/lib64 -lcudart -lcusolver `python3 -m pybind11 --includes` binding_cudevice.cc -o example`python3-config --extension-suffix`
"><pre class="notranslate"><code class="notranslate">
g++ -O3 -Wall -shared -std=c++11 -fPIC -I/usr/include/python3.6m -I./third-party/pybind11-2.2.4/include -I/usr/local/cuda/include -Wl,-rpath=/usr/local/cuda/lib64 -L/usr/local/cuda/lib64 -lcudart -lcusolver `python3 -m pybind11 --includes` binding_cudevice.cc -o example`python3-config --extension-suffix`
</code></pre></div>
<p dir="auto">test.py</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import torch
import example
example.init_cudevide()"><pre class="notranslate"><code class="notranslate">import torch
import example
example.init_cudevide()
</code></pre></div>
<h2 dir="auto">Core Dump Info</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="(gdb) bt
#0 0x00007f78b6a391de in ?? () from /usr/local/cuda/lib64/libcusolver.so.10.0
#1 0x00007f78b6a5b4ca in ?? () from /usr/local/cuda/lib64/libcusolver.so.10.0
#2 0x00007f78b5db6e49 in ?? () from /usr/local/cuda/lib64/libcusolver.so.10.0
#3 0x00007f78b5b854c1 in cusolverDnDestroy () from /usr/local/cuda/lib64/libcusolver.so.10.0
#4 0x00007f78be143952 in kaldi::CuDevice::~CuDevice (this=0x2f18a38, __in_chrg=<optimized out>) at cu-device.cc:683
#5 0x00007f79880d7ad1 in (anonymous namespace)::run (p=<optimized out>) at /home/nwani/m3/conda-bld/compilers_linux-64_1560109574129/work/.build/x86_64-conda_cos6-linux-gnu/src/gcc/libstdc++-v3/libsupc++/atexit_thread.cc:75
#6 0x00007f79b752cc99 in __run_exit_handlers () from /usr/lib64/libc.so.6
#7 0x00007f79b752cce7 in exit () from /usr/lib64/libc.so.6
#8 0x00007f79b751550c in __libc_start_main () from /usr/lib64/libc.so.6
#9 0x0000000000400c20 in _start ()"><pre class="notranslate"><code class="notranslate">(gdb) bt
#0 0x00007f78b6a391de in ?? () from /usr/local/cuda/lib64/libcusolver.so.10.0
#1 0x00007f78b6a5b4ca in ?? () from /usr/local/cuda/lib64/libcusolver.so.10.0
#2 0x00007f78b5db6e49 in ?? () from /usr/local/cuda/lib64/libcusolver.so.10.0
#3 0x00007f78b5b854c1 in cusolverDnDestroy () from /usr/local/cuda/lib64/libcusolver.so.10.0
#4 0x00007f78be143952 in kaldi::CuDevice::~CuDevice (this=0x2f18a38, __in_chrg=<optimized out>) at cu-device.cc:683
#5 0x00007f79880d7ad1 in (anonymous namespace)::run (p=<optimized out>) at /home/nwani/m3/conda-bld/compilers_linux-64_1560109574129/work/.build/x86_64-conda_cos6-linux-gnu/src/gcc/libstdc++-v3/libsupc++/atexit_thread.cc:75
#6 0x00007f79b752cc99 in __run_exit_handlers () from /usr/lib64/libc.so.6
#7 0x00007f79b752cce7 in exit () from /usr/lib64/libc.so.6
#8 0x00007f79b751550c in __libc_start_main () from /usr/lib64/libc.so.6
#9 0x0000000000400c20 in _start ()
</code></pre></div>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">No error happen</p>
<h2 dir="auto">Environment</h2>
<ul dir="auto">
<li>PyTorch Version (e.g., 1.5):1.5</li>
<li>OS (e.g., Linux):Centos7</li>
<li>How you installed PyTorch (<code class="notranslate">conda</code>, <code class="notranslate">pip</code>, source):source</li>
<li>Build command you used (if compiling from source):</li>
<li>Python version:3.6.8</li>
<li>CUDA/cuDNN version:10.0</li>
<li>GPU models and configuration:K40</li>
<li>Any other relevant information:</li>
</ul>
<h2 dir="auto">Additional context</h2>
<p dir="auto">cuSolver is base cublas and cusparse, reference about cuSolver:<br>
<a href="https://docs.nvidia.com/cuda/archive/10.0/cusolver/index.html#cuSolverDNhandle" rel="nofollow">https://docs.nvidia.com/cuda/archive/10.0/cusolver/index.html#cuSolverDNhandle</a></p>
<p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ngimel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ngimel">@ngimel</a></p> | 1 |
<h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: windows 10
PowerToys version: 0.16.1
PowerToy module for which you are reporting the bug (if applicable): FancyZOnes and Window Walker"><pre class="notranslate"><code class="notranslate">Windows build number: windows 10
PowerToys version: 0.16.1
PowerToy module for which you are reporting the bug (if applicable): FancyZOnes and Window Walker
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<p dir="auto">Open chrome in two desktops, each window in different zone<br>
go to 1st zone, 1st chrome window,<br>
call for Window Walker, search for chrome window 2 title<br>
press Enter to switch to the second chrome window on the second desktop<br>
you will find its zone changed to the first window zone in the second desktop, not the zone you left</p>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">i should find the window in the zone i left</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">its zone will change to the other chrome window zone</p>
<h1 dir="auto">Screenshots</h1> | <p dir="auto">This issue is to keep track of all the FancyZones bugs related to Virtual Desktops.</p>
<ul dir="auto">
<li><a href="https://github.com/microsoft/PowerToys/issues/645" data-hovercard-type="issue" data-hovercard-url="/microsoft/PowerToys/issues/645/hovercard">Different layouts fight when assigned to different virtual desktops</a> <strong>FIXED</strong></li>
<li><a href="https://github.com/microsoft/PowerToys/issues/1018" data-hovercard-type="issue" data-hovercard-url="/microsoft/PowerToys/issues/1018/hovercard">Fancy Zones window re-arrange every active desktop switch</a> <strong>FIXED</strong></li>
<li><a href="https://github.com/microsoft/PowerToys/issues/1033" data-hovercard-type="issue" data-hovercard-url="/microsoft/PowerToys/issues/1033/hovercard">Windows don't stay in position</a> <strong>FIXED</strong></li>
<li><a href="https://github.com/microsoft/PowerToys/issues/935" data-hovercard-type="issue" data-hovercard-url="/microsoft/PowerToys/issues/935/hovercard">Windows losing zones after switching Virtual desktops</a> <strong>CAN'T REPRO</strong></li>
<li><a href="https://github.com/microsoft/PowerToys/issues/383" data-hovercard-type="issue" data-hovercard-url="/microsoft/PowerToys/issues/383/hovercard">Fancy Zones settings not retained across virtual desktops</a> <strong>FIXED</strong></li>
</ul> | 1 |
<p dir="auto">Is there a reason why allow-env does not support a whitelist?</p>
<p dir="auto">I like the idea of knowing explicitly what environment variables the program can access. Often a program should only be able to access a few variables such as <code class="notranslate">DEBUG</code>.</p>
<p dir="auto">Example invocation</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="DEBUG=* deno run --allow-env=DEBUG,TEST main.tsx"><pre class="notranslate"><code class="notranslate">DEBUG=* deno run --allow-env=DEBUG,TEST main.tsx
</code></pre></div>
<p dir="auto">Of course the current alternative is something like this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="env -i HOME=$HOME PWD=$PWD PATH=$PATH DEBUG=* TEST=$TEST deno run --allow-env main.ts"><pre class="notranslate"><code class="notranslate">env -i HOME=$HOME PWD=$PWD PATH=$PATH DEBUG=* TEST=$TEST deno run --allow-env main.ts
</code></pre></div> | <p dir="auto">Currently <code class="notranslate">--allow-env</code> gives program unlimited permission to access any environment variable. It's much strong privilege and there should be more limited permission control for them.</p>
<p dir="auto">Like <code class="notranslate">--allow-net=:9999</code>, how about these? <code class="notranslate">--allow-env=DEBUG</code>, <code class="notranslate">--allow-env=DENO_DIR,DENO_INSTALL</code></p>
<p dir="auto"><code class="notranslate">Deno.env()</code> should also be re-designed to get permitted variables.</p>
<p dir="auto">I think even if full access to envars given to the process, It's dangerous to return key-value pair of all environment variables because malicious attackers are able to know some secret informations if they don't know envar's name. So how about re-design <code class="notranslate">Deno.env</code> to immutable map-like object?</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Deno.env.get("DENO_DIR")
Deno.env.set("DEBUG", "*")
Deno.env.has("PORT")"><pre class="notranslate"><code class="notranslate">Deno.env.get("DENO_DIR")
Deno.env.set("DEBUG", "*")
Deno.env.has("PORT")
</code></pre></div> | 1 |
<p dir="auto">The following code works in requests 2.7.0 but raises an assertion error in 2.8.0:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import requests
session = requests.session()
session.headers.update({'x-api-key': 'blah', "Accept-Encoding": "gzip, deflate",
"User-Agent": "magnet-sdk-python"})
session.verify = True
req = requests.Request(method='POST', url='https://portal.niddel.com/api/v1-beta/alerts', params=None, json={'a': 1, 'b': 2})
req = session.prepare_request(req)
assert req.body"><pre class="notranslate"><code class="notranslate">import requests
session = requests.session()
session.headers.update({'x-api-key': 'blah', "Accept-Encoding": "gzip, deflate",
"User-Agent": "magnet-sdk-python"})
session.verify = True
req = requests.Request(method='POST', url='https://portal.niddel.com/api/v1-beta/alerts', params=None, json={'a': 1, 'b': 2})
req = session.prepare_request(req)
assert req.body
</code></pre></div>
<p dir="auto">Since I provided neither <code class="notranslate">files</code> nor <code class="notranslate">body</code>, I would have expected <code class="notranslate">json</code> to work.</p>
<p dir="auto">In case you need this info to reproduce the issue, all tests were performed on a Mac OS X with Python 2.7.10 (installed using homebrew).</p> | <p dir="auto">In version <code class="notranslate">2.7.0</code> I was using <code class="notranslate">Requests</code> constructor with <code class="notranslate">json</code> parameter specified, like:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="json_data = [ ... ];
r = requests.Request('POST', url, json=json_data)"><pre class="notranslate"><code class="notranslate">json_data = [ ... ];
r = requests.Request('POST', url, json=json_data)
</code></pre></div>
<p dir="auto">And in the <code class="notranslate">2.8.0</code> version this code does not work, because I do not specify <code class="notranslate">data</code> parameter. Inside constructor we get <code class="notranslate">self.data</code> assigned as <code class="notranslate">[] if data is None else data</code>, so we finally get <code class="notranslate">self.data</code> equal to <code class="notranslate">[]</code>.</p>
<p dir="auto">And because of this commit: <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/psf/requests/commit/7a0cd16c1a5be16f3df395ee12ed11d0ddde7837/hovercard" href="https://github.com/psf/requests/commit/7a0cd16c1a5be16f3df395ee12ed11d0ddde7837"><tt>7a0cd16</tt></a> we get <code class="notranslate">json</code> parameter ignored, because now we have to explicitly specify <code class="notranslate">data={}</code> when calling constructor, like:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="json_data = [ ... ];
r = requests.Request('POST', url, json=json_data, data={})"><pre class="notranslate"><code class="notranslate">json_data = [ ... ];
r = requests.Request('POST', url, json=json_data, data={})
</code></pre></div>
<p dir="auto">I think that this issue definitely breaks documented API.</p> | 1 |
<h5 dir="auto">System information (version)</h5>
<h5 dir="auto">Steps to reproduce</h5>
<h5 dir="auto">Issue submission checklist</h5>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I report the issue, it's not a question
</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I checked the problem with documentation, FAQ, open issues,<br>
answers.opencv.org, Stack Overflow, etc and have not found solution
</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I updated to latest OpenCV version and the issue is still there
</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> There is reproducer code and related data files: videos, images, onnx, etc
</li>
</ul> | <h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => 4.2.0</li>
<li>Operating System / Platform => Windows 64 Bit</li>
<li>Compiler => Visual Studio 2019</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">I built and installed OpenCV 4.2.0 from source on Windows following guides from <a href="https://drthitirat.wordpress.com/2019/01/20/opencv-python-build-opencv-4-0-1-dev-contrib-non-free-siftsurf-from-sources-on-windows-10-64-bit-os/" rel="nofollow">this blog post</a>. The build and installation finished without error and I can import and use the cv2 module in PyCharm. However, PyCharm warns "Cannot find reference 'xxxx' in '__init__.py' for all the submodules, functions, variables etc. from the cv2 module. As a result autocompletion deos not work at all. I googled but couldn't find any solution although there are similar problems reported before.</p>
<h5 dir="auto">Steps to reproduce</h5>
<h5 dir="auto">Issue submission checklist</h5>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I report the issue, it's not a question
</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I checked the problem with documentation, FAQ, open issues,<br>
answers.opencv.org, Stack Overflow, etc and have not found solution
</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I updated to latest OpenCV version and the issue is still there
</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> There is reproducer code and related data files: videos, images, onnx, etc
</li>
</ul> | 1 |
<p dir="auto">Previously with the chocolatey based install I was able to open a command prompt and type <code class="notranslate">atom .</code> to open atom in the current folder, and after that command executed, my prompt would simply continue and allow me to do other things in the folder.</p>
<p dir="auto">After the new install, when I type <code class="notranslate">atom .</code> I get the following output:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="λ atom .
App load time: 147ms
[4124:1211/011828:INFO:renderer_main.cc(204)] Renderer process started
[4656:1211/011830:INFO:CONSOLE(64)] "Window load time: 2304ms", source: file:///C:/Users/<myuser>/AppData/Local/atom/app-0.156.0/resources/app/static/index.js (64)
[4656:1211/011833:INFO:CONSOLE(536)] "Error deactivating package 'keybinding-resolver'", source: c:\Users\<myuser>\AppData\Local\atom\app-0.156.0\resources\app\src\package.js (536)"><pre class="notranslate"><code class="notranslate">λ atom .
App load time: 147ms
[4124:1211/011828:INFO:renderer_main.cc(204)] Renderer process started
[4656:1211/011830:INFO:CONSOLE(64)] "Window load time: 2304ms", source: file:///C:/Users/<myuser>/AppData/Local/atom/app-0.156.0/resources/app/static/index.js (64)
[4656:1211/011833:INFO:CONSOLE(536)] "Error deactivating package 'keybinding-resolver'", source: c:\Users\<myuser>\AppData\Local\atom\app-0.156.0\resources\app\src\package.js (536)
</code></pre></div>
<p dir="auto">And it blocks my prompt. I can either close Atom to get back to my prompt or CTRL-C (which obviously kills Atom)</p>
<p dir="auto">Is it possible to get the old behaviour back?</p> | <p dir="auto">After loading 146 I have a problem starting atom. I use <code class="notranslate">atom --dev .</code> in my console and instead of just starting atom it shows debug stuff I'm not familiar with and never returns to a prompt. It runs in the foreground instead of separately. This also happens in safe mode.</p>
<p dir="auto">This is what I see ...</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="C:\apps\autocomplete>App load time: 246ms
[9516:1113/150212:INFO:renderer_main.cc(204)] Renderer process started
[9652:1113/150214:INFO:CONSOLE(92)] "Download the React DevTools for a better development experience: http://fb.me/react-devtools"
, source: c:\Chocolatey\lib\atom.0.146.0\tools\atom\resources\app\node_modules\react-atom-fork\lib\React.js (92)
[9652:1113/150218:INFO:CONSOLE(46)] "Window load time: 4921ms", source: file:///C:/Chocolatey/lib/atom.0.146.0/tools/atom/resource
s/app/static/index.js (46)
[9652:1113/150219:INFO:CONSOLE(63)] "RESPONDER:", source: C:\apps\autocomplete\js\api.js (63)
[9652:1113/150219:INFO:CONSOLE(63)] "RESPONDER:", source: C:\apps\autocomplete\js\api.js (63)
[9652:1113/150219:INFO:CONSOLE(63)] "RESPONDER:", source: C:\apps\autocomplete\js\api.js (63)"><pre class="notranslate"><code class="notranslate">C:\apps\autocomplete>App load time: 246ms
[9516:1113/150212:INFO:renderer_main.cc(204)] Renderer process started
[9652:1113/150214:INFO:CONSOLE(92)] "Download the React DevTools for a better development experience: http://fb.me/react-devtools"
, source: c:\Chocolatey\lib\atom.0.146.0\tools\atom\resources\app\node_modules\react-atom-fork\lib\React.js (92)
[9652:1113/150218:INFO:CONSOLE(46)] "Window load time: 4921ms", source: file:///C:/Chocolatey/lib/atom.0.146.0/tools/atom/resource
s/app/static/index.js (46)
[9652:1113/150219:INFO:CONSOLE(63)] "RESPONDER:", source: C:\apps\autocomplete\js\api.js (63)
[9652:1113/150219:INFO:CONSOLE(63)] "RESPONDER:", source: C:\apps\autocomplete\js\api.js (63)
[9652:1113/150219:INFO:CONSOLE(63)] "RESPONDER:", source: C:\apps\autocomplete\js\api.js (63)
</code></pre></div>
<hr>
<h2 dir="auto">Repro Steps</h2>
<ol dir="auto">
<li>cd to project directory</li>
<li><code class="notranslate">atom --dev .</code></li>
</ol>
<p dir="auto"><strong>Expected:</strong> Return to prompt and load atom<br>
<strong>Actual:</strong> see above</p>
<h2 dir="auto">Versions</h2>
<ul dir="auto">
<li><strong>Atom:</strong> 0.146.0</li>
<li><strong>Atom-Shell:</strong> 0.19.1</li>
<li><strong>OS:</strong> Microsoft Windows 8.1 Pro with Media Center</li>
<li><strong>Misc</strong>
<ul dir="auto">
<li>�apm� �0.111.0�</li>
<li>�npm� �1.4.4�</li>
<li>�node� �0.10.33�</li>
<li>�python� �2.7.5�</li>
<li>�git� �1.7.11.msysgit.1�</li>
<li>�visual studio� �2013�</li>
</ul>
</li>
</ul>
<hr>
<p dir="auto">This report was created in and posted from the Atom editor using the package <code class="notranslate">bug-report</code> version 0.4.1.</p> | 1 |
<p dir="auto">Hello.</p>
<p dir="auto">Thank you for SQLAlchemy! It makes working with DB in Python a dream!</p>
<p dir="auto">I am wondering if I have run into a possible bug. I am getting a funny error when I have ENUMs in my tables in that the <code class="notranslate">before_create</code> statement seems to be ignored when the first CREATE statement is not CREATE TABLE, and thus failing to create the appropriate schema. Removing the ENUMs results in the expected behaviour working.</p>
<p dir="auto">Searches online and through the issues have turned up nothing for me.</p>
<p dir="auto">This was tested on SQLAlchemy 1.3.13, psycopg2 2.8.4, and postgresql 11.2.</p>
<p dir="auto">Thank you for your help.</p>
<p dir="auto">Below is a full example and trace.</p>
<p dir="auto">Anders.</p>
<p dir="auto">--</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""""
Describe test case that fails in SQLAlchemy using PostgreSQL
"""
import enum
from sqlalchemy import Table, Column, Integer, String, Enum, create_engine, event, DDL
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import relationship
from os import environ
Base = declarative_base()
class ReadTypesEnum(enum.Enum):
read1 = 1
read2 = 2
class Reads(Base):
"""
A table for reads. Each row corresponds to one FASTQ file.
"""
__tablename__ = "reads"
__table_args__ = {'schema':'test'}
id = Column(Integer, primary_key=True, unique=True, nullable=False)
filename = Column(String(100), nullable=False)
read_type = Column(Enum(ReadTypesEnum, inherit_schema=True))
if __name__ == "__main__":
# Create engine
db_uri = environ.get('SQLALCHEMY_DATABASE_URI')
engine = create_engine(db_uri, echo=True)
# create schema
event.listen(Base.metadata, 'before_create', DDL("CREATE SCHEMA IF NOT EXISTS test"))
# Create All Tables
Base.metadata.create_all(engine"><pre class="notranslate"><code class="notranslate">"""
Describe test case that fails in SQLAlchemy using PostgreSQL
"""
import enum
from sqlalchemy import Table, Column, Integer, String, Enum, create_engine, event, DDL
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import relationship
from os import environ
Base = declarative_base()
class ReadTypesEnum(enum.Enum):
read1 = 1
read2 = 2
class Reads(Base):
"""
A table for reads. Each row corresponds to one FASTQ file.
"""
__tablename__ = "reads"
__table_args__ = {'schema':'test'}
id = Column(Integer, primary_key=True, unique=True, nullable=False)
filename = Column(String(100), nullable=False)
read_type = Column(Enum(ReadTypesEnum, inherit_schema=True))
if __name__ == "__main__":
# Create engine
db_uri = environ.get('SQLALCHEMY_DATABASE_URI')
engine = create_engine(db_uri, echo=True)
# create schema
event.listen(Base.metadata, 'before_create', DDL("CREATE SCHEMA IF NOT EXISTS test"))
# Create All Tables
Base.metadata.create_all(engine
</code></pre></div>
<p dir="auto">I get the following error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="2020-02-12 19:03:29,230 INFO sqlalchemy.engine.base.Engine select version()
2020-02-12 19:03:29,231 INFO sqlalchemy.engine.base.Engine {}
2020-02-12 19:03:29,245 INFO sqlalchemy.engine.base.Engine select current_schema()
2020-02-12 19:03:29,245 INFO sqlalchemy.engine.base.Engine {}
2020-02-12 19:03:29,250 INFO sqlalchemy.engine.base.Engine SELECT CAST('test plain returns' AS VARCHAR(60)) AS anon_1
2020-02-12 19:03:29,251 INFO sqlalchemy.engine.base.Engine {}
2020-02-12 19:03:29,256 INFO sqlalchemy.engine.base.Engine SELECT CAST('test unicode returns' AS VARCHAR(60)) AS anon_1
2020-02-12 19:03:29,257 INFO sqlalchemy.engine.base.Engine {}
2020-02-12 19:03:29,260 INFO sqlalchemy.engine.base.Engine show standard_conforming_strings
2020-02-12 19:03:29,262 INFO sqlalchemy.engine.base.Engine {}
2020-02-12 19:03:29,268 INFO sqlalchemy.engine.base.Engine select relname from pg_class c join pg_namespace n on n.oid=c.relnamespace where n.nspname=%(schema)s and relname=%(name)s
2020-02-12 19:03:29,269 INFO sqlalchemy.engine.base.Engine {'schema': 'test', 'name': 'reads'}
2020-02-12 19:03:29,274 INFO sqlalchemy.engine.base.Engine
SELECT EXISTS (
SELECT * FROM pg_catalog.pg_type t, pg_catalog.pg_namespace n
WHERE t.typnamespace = n.oid
AND t.typname = %(typname)s
AND n.nspname = %(nspname)s
)
2020-02-12 19:03:29,279 INFO sqlalchemy.engine.base.Engine {'typname': 'readtypesenum', 'nspname': 'test'}
2020-02-12 19:03:29,283 INFO sqlalchemy.engine.base.Engine CREATE TYPE test.readtypesenum AS ENUM ('read1', 'read2')
2020-02-12 19:03:29,285 INFO sqlalchemy.engine.base.Engine {}
2020-02-12 19:03:29,288 INFO sqlalchemy.engine.base.Engine ROLLBACK
Traceback (most recent call last):
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/engine/base.py", line 1246, in _execute_context
cursor, statement, parameters, context
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/engine/default.py", line 588, in do_execute
cursor.execute(statement, parameters)
psycopg2.errors.InvalidSchemaName: schema "test" does not exist
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "test.py", line 39, in <module>
Base.metadata.create_all(engine)
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/sql/schema.py", line 4316, in create_all
ddl.SchemaGenerator, self, checkfirst=checkfirst, tables=tables
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/engine/base.py", line 2049, in _run_visitor
conn._run_visitor(visitorcallable, element, **kwargs)
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/engine/base.py", line 1618, in _run_visitor
visitorcallable(self.dialect, self, **kwargs).traverse_single(element)
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/sql/visitors.py", line 138, in traverse_single
return meth(obj, **kw)
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/sql/ddl.py", line 769, in visit_metadata
_ddl_runner=self,
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/event/attr.py", line 322, in __call__
fn(*args, **kw)
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/util/langhelpers.py", line 617, in __call__
return getattr(self.target, self.name)(*arg, **kw)
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/sql/sqltypes.py", line 1165, in _on_metadata_create
t._on_metadata_create(target, bind, **kw)
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/dialects/postgresql/base.py", line 1505, in _on_metadata_create
self.create(bind=bind, checkfirst=checkfirst)
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/dialects/postgresql/base.py", line 1436, in create
bind.execute(CreateEnumType(self))
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/engine/base.py", line 982, in execute
return meth(self, multiparams, params)
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/sql/ddl.py", line 72, in _execute_on_connection
return connection._execute_ddl(self, multiparams, params)
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/engine/base.py", line 1044, in _execute_ddl
compiled,
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/engine/base.py", line 1250, in _execute_context
e, statement, parameters, cursor, context
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/engine/base.py", line 1476, in _handle_dbapi_exception
util.raise_from_cause(sqlalchemy_exception, exc_info)
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/util/compat.py", line 398, in raise_from_cause
reraise(type(exception), exception, tb=exc_tb, cause=cause)
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/util/compat.py", line 152, in reraise
raise value.with_traceback(tb)
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/engine/base.py", line 1246, in _execute_context
cursor, statement, parameters, context
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/engine/default.py", line 588, in do_execute
cursor.execute(statement, parameters)
sqlalchemy.exc.ProgrammingError: (psycopg2.errors.InvalidSchemaName) schema "test" does not exist
[SQL: CREATE TYPE test.readtypesenum AS ENUM ('read1', 'read2')]"><pre class="notranslate"><code class="notranslate">2020-02-12 19:03:29,230 INFO sqlalchemy.engine.base.Engine select version()
2020-02-12 19:03:29,231 INFO sqlalchemy.engine.base.Engine {}
2020-02-12 19:03:29,245 INFO sqlalchemy.engine.base.Engine select current_schema()
2020-02-12 19:03:29,245 INFO sqlalchemy.engine.base.Engine {}
2020-02-12 19:03:29,250 INFO sqlalchemy.engine.base.Engine SELECT CAST('test plain returns' AS VARCHAR(60)) AS anon_1
2020-02-12 19:03:29,251 INFO sqlalchemy.engine.base.Engine {}
2020-02-12 19:03:29,256 INFO sqlalchemy.engine.base.Engine SELECT CAST('test unicode returns' AS VARCHAR(60)) AS anon_1
2020-02-12 19:03:29,257 INFO sqlalchemy.engine.base.Engine {}
2020-02-12 19:03:29,260 INFO sqlalchemy.engine.base.Engine show standard_conforming_strings
2020-02-12 19:03:29,262 INFO sqlalchemy.engine.base.Engine {}
2020-02-12 19:03:29,268 INFO sqlalchemy.engine.base.Engine select relname from pg_class c join pg_namespace n on n.oid=c.relnamespace where n.nspname=%(schema)s and relname=%(name)s
2020-02-12 19:03:29,269 INFO sqlalchemy.engine.base.Engine {'schema': 'test', 'name': 'reads'}
2020-02-12 19:03:29,274 INFO sqlalchemy.engine.base.Engine
SELECT EXISTS (
SELECT * FROM pg_catalog.pg_type t, pg_catalog.pg_namespace n
WHERE t.typnamespace = n.oid
AND t.typname = %(typname)s
AND n.nspname = %(nspname)s
)
2020-02-12 19:03:29,279 INFO sqlalchemy.engine.base.Engine {'typname': 'readtypesenum', 'nspname': 'test'}
2020-02-12 19:03:29,283 INFO sqlalchemy.engine.base.Engine CREATE TYPE test.readtypesenum AS ENUM ('read1', 'read2')
2020-02-12 19:03:29,285 INFO sqlalchemy.engine.base.Engine {}
2020-02-12 19:03:29,288 INFO sqlalchemy.engine.base.Engine ROLLBACK
Traceback (most recent call last):
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/engine/base.py", line 1246, in _execute_context
cursor, statement, parameters, context
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/engine/default.py", line 588, in do_execute
cursor.execute(statement, parameters)
psycopg2.errors.InvalidSchemaName: schema "test" does not exist
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "test.py", line 39, in <module>
Base.metadata.create_all(engine)
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/sql/schema.py", line 4316, in create_all
ddl.SchemaGenerator, self, checkfirst=checkfirst, tables=tables
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/engine/base.py", line 2049, in _run_visitor
conn._run_visitor(visitorcallable, element, **kwargs)
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/engine/base.py", line 1618, in _run_visitor
visitorcallable(self.dialect, self, **kwargs).traverse_single(element)
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/sql/visitors.py", line 138, in traverse_single
return meth(obj, **kw)
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/sql/ddl.py", line 769, in visit_metadata
_ddl_runner=self,
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/event/attr.py", line 322, in __call__
fn(*args, **kw)
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/util/langhelpers.py", line 617, in __call__
return getattr(self.target, self.name)(*arg, **kw)
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/sql/sqltypes.py", line 1165, in _on_metadata_create
t._on_metadata_create(target, bind, **kw)
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/dialects/postgresql/base.py", line 1505, in _on_metadata_create
self.create(bind=bind, checkfirst=checkfirst)
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/dialects/postgresql/base.py", line 1436, in create
bind.execute(CreateEnumType(self))
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/engine/base.py", line 982, in execute
return meth(self, multiparams, params)
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/sql/ddl.py", line 72, in _execute_on_connection
return connection._execute_ddl(self, multiparams, params)
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/engine/base.py", line 1044, in _execute_ddl
compiled,
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/engine/base.py", line 1250, in _execute_context
e, statement, parameters, cursor, context
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/engine/base.py", line 1476, in _handle_dbapi_exception
util.raise_from_cause(sqlalchemy_exception, exc_info)
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/util/compat.py", line 398, in raise_from_cause
reraise(type(exception), exception, tb=exc_tb, cause=cause)
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/util/compat.py", line 152, in reraise
raise value.with_traceback(tb)
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/engine/base.py", line 1246, in _execute_context
cursor, statement, parameters, context
File "/opt/conda/lib/python3.7/site-packages/sqlalchemy/engine/default.py", line 588, in do_execute
cursor.execute(statement, parameters)
sqlalchemy.exc.ProgrammingError: (psycopg2.errors.InvalidSchemaName) schema "test" does not exist
[SQL: CREATE TYPE test.readtypesenum AS ENUM ('read1', 'read2')]
</code></pre></div> | <p dir="auto"><strong>Migrated issue, originally created by Michael Bayer (<a href="https://github.com/zzzeek">@zzzeek</a>)</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from sqlalchemy import create_engine, event
eng = create_engine("mysql://scott:tiger@localhost/test", echo='debug')
@event.listens_for(eng, "first_connect", insert=True) # make sure we're the very first thing
@event.listens_for(eng, "connect")
def connect(dbapi_connection, connection_record):
cursor = dbapi_connection.cursor()
cursor.execute("SET sql_mode = 'STRICT_ALL_TABLES'")
conn = eng.connect()"><pre class="notranslate"><code class="notranslate">from sqlalchemy import create_engine, event
eng = create_engine("mysql://scott:tiger@localhost/test", echo='debug')
@event.listens_for(eng, "first_connect", insert=True) # make sure we're the very first thing
@event.listens_for(eng, "connect")
def connect(dbapi_connection, connection_record):
cursor = dbapi_connection.cursor()
cursor.execute("SET sql_mode = 'STRICT_ALL_TABLES'")
conn = eng.connect()
</code></pre></div> | 1 |
<h3 dir="auto">Describe the workflow you want to enable</h3>
<p dir="auto">Would be cool to have a preprocessor that maps dates (str or unixtime) to its' respective date parts: dayofmonth, dayofweek, hour,etc.</p>
<p dir="auto">There's any reason this is not included in sklearn?<br>
In case not, I could do a PR</p>
<h3 dir="auto">Describe your proposed solution</h3>
<blockquote>
<blockquote>
<blockquote>
<p dir="auto">from sklearn import preprocessing<br>
de = preprocessing.DateEncoder(datepart=['month','hour'], cyclic=True)<br>
de.fit(['2022-04-01 17:17:09.175803', '2022-04-01 17:17:09.175803', '2022-04-01 17:17:09.175803'])<br>
DateEncoder()<br>
de.datepart_<br>
array(['month','hour'])<br>
de.transform(['2022-04-01 17:17:09.175803', '2022-01-01 18:17:09.175803', '2022-03-01 02:17:09.175803'])<br>
array([ [cos(04/12), sin(04/12), cos(17/24), sin(17/24)],<br>
[cos(01/12), sin(01/12), cos(18/24), sin(18/24)],<br>
[cos(03/12), sin(03/12), cos(02/24), sin(02/24)]<br>
)</p>
</blockquote>
</blockquote>
</blockquote>
<h3 dir="auto">Describe alternatives you've considered, if relevant</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Additional context</h3>
<p dir="auto"><em>No response</em></p> | <h3 dir="auto">Describe the workflow you want to enable</h3>
<p dir="auto">Do we want to add a transformer for pandas datetimes?<br>
We haven't really added much based on pandas yet but this would be a pretty natural thing to add.<br>
You could argue that you can do something like <code class="notranslate">FunctionTransformer(lambda X: X.dt.dayofweek)</code> or similar for the other features (year, hour, minute, month...) but the problem with that is that you don't get feature names, which is terrible for interpretation.</p>
<p dir="auto">Featurizing datetimes is super common (the last ~10 datasets I worked on had it) and I think it's a workflow we should make easier.</p>
<h3 dir="auto">Describe your proposed solution</h3>
<p dir="auto">Implement a DateTimeTransformer that takes in maybe just a single column (that would work well with ColumnTransformer but is a bit different from other transformers, but quite similar to the CountVectorizer, so maybe if it takes a single column it should be <code class="notranslate">DateTimeVectorizer</code>) and a list of features to derive, like <code class="notranslate">dayofweek</code>, <code class="notranslate">dayofyear</code> etc, but which creates meaningful feature names.</p>
<h3 dir="auto">Describe alternatives you've considered, if relevant</h3>
<p dir="auto">An alternative would be to improve attaching feature names to <code class="notranslate">FunctionTransformer</code>, but this would still require some non-trivial code for datetimes, and they are just very very common.</p> | 1 |
<h1 dir="auto">Checklist</h1>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have verified that the issue exists against the <code class="notranslate">main</code> branch of Celery.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> This has already been asked to the <a href="https://github.com/celery/celery/discussions">discussions forum</a> first.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the relevant section in the<br>
<a href="https://docs.celeryq.dev/en/main/contributing.html#other-bugs" rel="nofollow">contribution guide</a><br>
on reporting bugs.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/issues?q=is%3Aissue+label%3A%22Issue+Type%3A+Bug+Report%22+-label%3A%22Category%3A+Documentation%22">issues list</a><br>
for similar or identical bug reports.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/pulls?q=is%3Apr+label%3A%22PR+Type%3A+Bugfix%22+-label%3A%22Category%3A+Documentation%22">pull requests list</a><br>
for existing proposed fixes.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/commits/main">commit log</a><br>
to find out if the bug was already fixed in the main 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" checked=""> I have verified that the issue exists against the <code class="notranslate">main</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>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="celery -A uniweb report
software -> celery:5.2.7 (dawn-chorus) kombu:5.3.0 py:3.9.17
billiard:3.6.4.0 redis:4.5.4
platform -> system:Linux arch:64bit
kernel version:3.10.0-1160.88.1.el7.x86_64 imp:CPython
loader -> celery.loaders.app.AppLoader
settings -> transport:sentinel results:redis://:**@django-cms-test-redis-headless:6379/7"><pre class="notranslate"><code class="notranslate">celery -A uniweb report
software -> celery:5.2.7 (dawn-chorus) kombu:5.3.0 py:3.9.17
billiard:3.6.4.0 redis:4.5.4
platform -> system:Linux arch:64bit
kernel version:3.10.0-1160.88.1.el7.x86_64 imp:CPython
loader -> celery.loaders.app.AppLoader
settings -> transport:sentinel results:redis://:**@django-cms-test-redis-headless:6379/7
</code></pre></div>
<p dir="auto">Our setup is Celery with Redis over Sentinel in a Kubernetes cluster. After upgrading Redis from version <a href="https://github.com/redis/redis-py/releases/tag/v4.5.4">4.5.4</a> to 4.5.5 the Celery worker crashed without any message. Return code after crashing is 0.</p>
<p dir="auto">The same image running on Docker-Swarm without Sentinel works flawlessly.</p>
<p dir="auto">pip freeze gives (I removed irrelevant packages):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="billiard==3.6.4.0
…
django-redis==5.2.0
…
hiredis==2.2.3
…
kombu==5.3.0
…
redis==4.5.5 # <= the culprit, by downgrading to 4.5.4, Celery works fine
requests==2.31.0
…
urllib3==1.26.16
…"><pre class="notranslate"><code class="notranslate">billiard==3.6.4.0
…
django-redis==5.2.0
…
hiredis==2.2.3
…
kombu==5.3.0
…
redis==4.5.5 # <= the culprit, by downgrading to 4.5.4, Celery works fine
requests==2.31.0
…
urllib3==1.26.16
…
</code></pre></div>
<p dir="auto"><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="5234245" data-permission-text="Title is private" data-url="https://github.com/celery/celery/discussions/8268" data-hovercard-type="discussion" data-hovercard-url="/celery/celery/discussions/8268/hovercard" href="https://github.com/celery/celery/discussions/8268">#8268</a> seems unrelated, because it has a different message.</p> | <p dir="auto">-I'm using celery Version: 4.1.1</p>
<p dir="auto">In the celery Task I'm using group, chain and chord from celery<br>
To excute the task I need to set the --concurrency=4<br>
everything works fine</p>
<p dir="auto">When I call pytest, using the worker for test (celery_session_worker) to test this task, a timeout excpetion occured.</p>
<p dir="auto">Can you please advise how I can use the <strong>celery_session_worke</strong>r with <strong>--concurrency=4.</strong></p>
<p dir="auto">Thanks in advance.</p> | 0 |
<h3 dir="auto">System info</h3>
<ul dir="auto">
<li>Playwright Version: v1.31.0</li>
<li>Operating System: macOS 13.2.1 Chip Apple M2</li>
<li>Browser: Chromium</li>
<li>Other info:</li>
</ul>
<h3 dir="auto">Source code</h3>
<p dir="auto"><strong>Playwright Server:</strong></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import * as playwright from "playwright";
export type BrowserTypes = "chromium" | "firefox" | "webkit";
export const launchOptions: playwright.LaunchOptions = {};
const chromiumDefaultArgs = [
"--disable-gpu",
"--disable-dev-shm-usage",
"--disable-setuid-sandbox",
"--no-sandbox",
"--no-zygote",
"--single-process",
];
const getLaunchOptions = (browser: BrowserTypes): playwright.LaunchOptions => {
let newLaunchOptions = {
...launchOptions,
};
if (browser === "chromium") {
newLaunchOptions = {
...newLaunchOptions,
args: [
...(launchOptions.args ? launchOptions.args : []),
...chromiumDefaultArgs,
],
};
}
return newLaunchOptions;
};
interface BrowserInstance {
[endPoint: string]: {
server: playwright.BrowserServer;
timer?: any;
browser: string;
guid: string;
};
}
class BrowserServer {
instances: BrowserInstance = {};
async launchServer(
browser: BrowserTypes,
socket: net.Socket
): Promise<playwright.BrowserServer> {
const server = await playwright[browser].launchServer(
getLaunchOptions(browser)
);
if (!server) {
return null;
}
const endPoint = server.wsEndpoint();
const guid = /((\w{4,12}-?)){5}/.exec(endPoint)[0];
this.instances[endPoint] = {
server,
browser,
guid,
};
socket.on("error", (err: any) => {
console.log(`ERROR: ${browser} - ${endPoint}`);
console.error(err);
});
socket.on("end", () => {
console.log("Socket ended successfully");
});
socket.on("close", async () => {
await this.kill(server);
});
const timeout =
process.env[BROWSER_SERVER_TIMEOUT] &&
Number.parseInt(process.env[BROWSER_SERVER_TIMEOUT]);
if (timeout) {
console.log(`Browser will close in ${timeout} seconds`);
}
return server;
}
getWsEndPoint(server: playwright.BrowserServer): string {
return server.wsEndpoint();
}
async killAll(): Promise<void> {
const { instances } = this;
for (const key in instances) {
const info = instances[key];
await this.kill(info.server);
}
}
async kill(server: playwright.BrowserServer): Promise<void> {
const endPoint = server.wsEndpoint();
// If instance is undefined then its already in the process of terminating.
if (!this.instances[endPoint]) {
return;
}
const { browser, guid } = this.instances[endPoint];
clearTimeout(this.instances[endPoint].timer);
console.log(`Terminating ${browser} (${guid})...`);
delete this.instances[endPoint];
await server.close();
console.log(`${browser} terminiated (${guid}).`);
}
}
export default BrowserServer;"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-c1">*</span> <span class="pl-k">as</span> <span class="pl-s1">playwright</span> <span class="pl-k">from</span> <span class="pl-s">"playwright"</span><span class="pl-kos">;</span>
<span class="pl-k">export</span> <span class="pl-s1">type</span> <span class="pl-v">BrowserTypes</span> <span class="pl-c1">=</span> <span class="pl-s">"chromium"</span> <span class="pl-c1">|</span> <span class="pl-s">"firefox"</span> <span class="pl-c1">|</span> <span class="pl-s">"webkit"</span><span class="pl-kos">;</span>
export <span class="pl-k">const</span> <span class="pl-s1">launchOptions</span>: <span class="pl-s1">playwright</span><span class="pl-kos">.</span><span class="pl-c1">LaunchOptions</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span><span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">chromiumDefaultArgs</span> <span class="pl-c1">=</span> <span class="pl-kos">[</span>
<span class="pl-s">"--disable-gpu"</span><span class="pl-kos">,</span>
<span class="pl-s">"--disable-dev-shm-usage"</span><span class="pl-kos">,</span>
<span class="pl-s">"--disable-setuid-sandbox"</span><span class="pl-kos">,</span>
<span class="pl-s">"--no-sandbox"</span><span class="pl-kos">,</span>
<span class="pl-s">"--no-zygote"</span><span class="pl-kos">,</span>
<span class="pl-s">"--single-process"</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">getLaunchOptions</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-s1">browser</span>: <span class="pl-v">BrowserTypes</span><span class="pl-kos">)</span>: <span class="pl-s1">playwright</span><span class="pl-kos">.</span><span class="pl-c1">LaunchOptions</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">let</span> <span class="pl-s1">newLaunchOptions</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
...<span class="pl-s1">launchOptions</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">browser</span> <span class="pl-c1">===</span> <span class="pl-s">"chromium"</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">newLaunchOptions</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
...<span class="pl-s1">newLaunchOptions</span><span class="pl-kos">,</span>
<span class="pl-c1">args</span>: <span class="pl-kos">[</span>
...<span class="pl-kos">(</span><span class="pl-s1">launchOptions</span><span class="pl-kos">.</span><span class="pl-c1">args</span> ? <span class="pl-s1">launchOptions</span><span class="pl-kos">.</span><span class="pl-c1">args</span> : <span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
...<span class="pl-s1">chromiumDefaultArgs</span><span class="pl-kos">,</span>
<span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">return</span> <span class="pl-s1">newLaunchOptions</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-s1">interface</span> <span class="pl-v">BrowserInstance</span> <span class="pl-kos">{</span>
<span class="pl-kos">[</span><span class="pl-s1">endPoint</span>: <span class="pl-s1">string</span><span class="pl-kos">]</span>: <span class="pl-kos">{</span>
server: <span class="pl-s1">playwright</span><span class="pl-kos">.</span><span class="pl-c1">BrowserServer</span><span class="pl-kos">;</span>
<span class="pl-s1">timer</span>?<span class="pl-s1"></span>: <span class="pl-s1">any</span><span class="pl-kos">;</span>
browser: <span class="pl-s1">string</span><span class="pl-kos">;</span>
guid: <span class="pl-s1">string</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">class</span> <span class="pl-v">BrowserServer</span> <span class="pl-kos">{</span>
<span class="pl-c1">instances</span>: <span class="pl-c1">BrowserInstance</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">async</span> <span class="pl-en">launchServer</span><span class="pl-kos">(</span>
<span class="pl-s1">browser</span>: <span class="pl-v">BrowserTypes</span><span class="pl-kos">,</span>
<span class="pl-s1">socket</span>: <span class="pl-s1">net</span><span class="pl-kos">.</span><span class="pl-v">Socket</span>
<span class="pl-kos">)</span>: <span class="pl-v">Promise</span><span class="pl-c1"><</span><span class="pl-s1">playwright</span><span class="pl-kos">.</span><span class="pl-v">BrowserServer</span><span class="pl-c1">></span> <span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-s1">server</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">playwright</span><span class="pl-kos">[</span><span class="pl-s1">browser</span><span class="pl-kos">]</span><span class="pl-kos">.</span><span class="pl-en">launchServer</span><span class="pl-kos">(</span>
<span class="pl-s1">getLaunchOptions</span><span class="pl-kos">(</span><span class="pl-s1">browser</span><span class="pl-kos">)</span>
<span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-c1">!</span><span class="pl-s1">server</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-c1">null</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">const</span> <span class="pl-s1">endPoint</span> <span class="pl-c1">=</span> <span class="pl-s1">server</span><span class="pl-kos">.</span><span class="pl-en">wsEndpoint</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">guid</span> <span class="pl-c1">=</span> <span class="pl-pds"><span class="pl-c1">/</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-cce">\w</span><span class="pl-kos">{</span>4,12<span class="pl-kos">}</span>-?<span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">{</span>5<span class="pl-kos">}</span><span class="pl-c1">/</span></span><span class="pl-kos">.</span><span class="pl-en">exec</span><span class="pl-kos">(</span><span class="pl-s1">endPoint</span><span class="pl-kos">)</span><span class="pl-kos">[</span><span class="pl-c1">0</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">instances</span><span class="pl-kos">[</span><span class="pl-s1">endPoint</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
server<span class="pl-kos">,</span>
browser<span class="pl-kos">,</span>
guid<span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-s1">socket</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">"error"</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-s1">err</span>: <span class="pl-s1">any</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">`ERROR: <span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">browser</span><span class="pl-kos">}</span></span> - <span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">endPoint</span><span class="pl-kos">}</span></span>`</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">error</span><span class="pl-kos">(</span><span class="pl-s1">err</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-s1">socket</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">"end"</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-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">"Socket ended successfully"</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-s1">socket</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">"close"</span><span class="pl-kos">,</span> <span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">await</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">kill</span><span class="pl-kos">(</span><span class="pl-s1">server</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">timeout</span> <span class="pl-c1">=</span>
<span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">[</span><span class="pl-c1">BROWSER_SERVER_TIMEOUT</span><span class="pl-kos">]</span> <span class="pl-c1">&&</span>
<span class="pl-v">Number</span><span class="pl-kos">.</span><span class="pl-en">parseInt</span><span class="pl-kos">(</span><span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">[</span><span class="pl-c1">BROWSER_SERVER_TIMEOUT</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">timeout</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">`Browser will close in <span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">timeout</span><span class="pl-kos">}</span></span> seconds`</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">return</span> <span class="pl-s1">server</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-en">getWsEndPoint</span><span class="pl-kos">(</span><span class="pl-s1">server</span>: <span class="pl-s1">playwright</span><span class="pl-kos">.</span><span class="pl-v">BrowserServer</span><span class="pl-kos">)</span>: <span class="pl-s1">string</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-s1">server</span><span class="pl-kos">.</span><span class="pl-en">wsEndpoint</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">async</span> <span class="pl-en">killAll</span><span class="pl-kos">(</span><span class="pl-kos">)</span>: <span class="pl-v">Promise</span><span class="pl-c1"><</span><span class="pl-k">void</span><span class="pl-c1">></span> <span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-kos">{</span> instances <span class="pl-kos">}</span> <span class="pl-c1">=</span> <span class="pl-smi">this</span><span class="pl-kos">;</span>
<span class="pl-k">for</span> <span class="pl-kos">(</span><span class="pl-k">const</span> <span class="pl-s1">key</span> <span class="pl-k">in</span> <span class="pl-s1">instances</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-s1">info</span> <span class="pl-c1">=</span> <span class="pl-s1">instances</span><span class="pl-kos">[</span><span class="pl-s1">key</span><span class="pl-kos">]</span><span class="pl-kos">;</span>
<span class="pl-k">await</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">kill</span><span class="pl-kos">(</span><span class="pl-s1">info</span><span class="pl-kos">.</span><span class="pl-c1">server</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">async</span> <span class="pl-en">kill</span><span class="pl-kos">(</span><span class="pl-s1">server</span>: <span class="pl-s1">playwright</span><span class="pl-kos">.</span><span class="pl-v">BrowserServer</span><span class="pl-kos">)</span>: <span class="pl-v">Promise</span><span class="pl-c1"><</span><span class="pl-k">void</span><span class="pl-c1">></span> <span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-s1">endPoint</span> <span class="pl-c1">=</span> <span class="pl-s1">server</span><span class="pl-kos">.</span><span class="pl-en">wsEndpoint</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">// If instance is undefined then its already in the process of terminating.</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-c1">!</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">instances</span><span class="pl-kos">[</span><span class="pl-s1">endPoint</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-kos">}</span>
<span class="pl-k">const</span> <span class="pl-kos">{</span> browser<span class="pl-kos">,</span> guid <span class="pl-kos">}</span> <span class="pl-c1">=</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">instances</span><span class="pl-kos">[</span><span class="pl-s1">endPoint</span><span class="pl-kos">]</span><span class="pl-kos">;</span>
<span class="pl-en">clearTimeout</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">instances</span><span class="pl-kos">[</span><span class="pl-s1">endPoint</span><span class="pl-kos">]</span><span class="pl-kos">.</span><span class="pl-c1">timer</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">`Terminating <span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">browser</span><span class="pl-kos">}</span></span> (<span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">guid</span><span class="pl-kos">}</span></span>)...`</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">delete</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">instances</span><span class="pl-kos">[</span><span class="pl-s1">endPoint</span><span class="pl-kos">]</span><span class="pl-kos">;</span>
<span class="pl-k">await</span> <span class="pl-s1">server</span><span class="pl-kos">.</span><span class="pl-en">close</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">`<span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">browser</span><span class="pl-kos">}</span></span> terminiated (<span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">guid</span><span class="pl-kos">}</span></span>).`</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-k">export</span> <span class="pl-k">default</span> <span class="pl-v">BrowserServer</span><span class="pl-kos">;</span></pre></div>
<hr>
<p dir="auto"><strong>Docker Server: some-registry/playwright-server:latest</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="FROM mcr.microsoft.com/playwright:v1.31.0-focal
ENV NODE_ENV=production
# Run everything after as non-privileged user.
USER pwuser
ENV PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1
ARG NPM_LOGLEVEL=info
# Create app directory
WORKDIR /home/pwuser
COPY package.json .
RUN npm install --loglevel ${NPM_LOGLEVEL} --force
COPY . .
CMD ["node", "build/src/main.js"]
EXPOSE 3000/tcp
EXPOSE 5000/tcp"><pre class="notranslate"><code class="notranslate">FROM mcr.microsoft.com/playwright:v1.31.0-focal
ENV NODE_ENV=production
# Run everything after as non-privileged user.
USER pwuser
ENV PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1
ARG NPM_LOGLEVEL=info
# Create app directory
WORKDIR /home/pwuser
COPY package.json .
RUN npm install --loglevel ${NPM_LOGLEVEL} --force
COPY . .
CMD ["node", "build/src/main.js"]
EXPOSE 3000/tcp
EXPOSE 5000/tcp
</code></pre></div>
<p dir="auto"><strong>Config file</strong></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// playwright.config.ts
import { Page } from "playwright-core";
import { expect, PlaywrightTestConfig, devices } from "@playwright/test";
const config: PlaywrightTestConfig = {
globalSetup: require.resolve("./playwright.global-setup"),
forbidOnly: !!process.env.CI,
timeout: 50000,
testMatch: /.*\.spec\.ts/,
testDir: "../../packages",
outputDir: "./test-results",
retries: process.env.CI ? 2 : 0,
reporter: [["html", { open: "never" }], process.env.CI ? ["dot"] : ["list"]],
webServer: [
{
command: "npm run serve",
port: 5000,
timeout: 50000,
reuseExistingServer: !process.env.CI
},
{
command:
"podman run --rm -p 3000:3000 some-registry/playwright-server:latest",
port: 3000,
timeout: 50000,
reuseExistingServer: !process.env.CI
}
],
use: {
baseURL: process.env.IP_ADDRESS || "http://localhost:5000/",
locale: "en-GB",
trace: "on-first-retry",
screenshot: "only-on-failure",
connectOptions: {
wsEndpoint: "ws://127.0.0.1:3000/"
}
},
expect: {
toHaveScreenshot: { maxDiffPixels: 10 }
},
projects: [
{
name: "chromium",
use: {
...devices["Desktop Chrome"],
viewport: { width: 1280, height: 1024 }
}
}
]
};
export default config;
"><pre class="notranslate"><span class="pl-c">// playwright.config.ts</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-v">Page</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"playwright-core"</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">expect</span><span class="pl-kos">,</span> <span class="pl-v">PlaywrightTestConfig</span><span class="pl-kos">,</span> <span class="pl-s1">devices</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"@playwright/test"</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">config</span>: <span class="pl-v">PlaywrightTestConfig</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
<span class="pl-c1">globalSetup</span>: <span class="pl-en">require</span><span class="pl-kos">.</span><span class="pl-en">resolve</span><span class="pl-kos">(</span><span class="pl-s">"./playwright.global-setup"</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c1">forbidOnly</span>: <span class="pl-c1">!</span><span class="pl-c1">!</span><span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">CI</span><span class="pl-kos">,</span>
<span class="pl-c1">timeout</span>: <span class="pl-c1">50000</span><span class="pl-kos">,</span>
<span class="pl-c1">testMatch</span>: <span class="pl-pds"><span class="pl-c1">/</span>.<span class="pl-c1">*</span><span class="pl-cce">\.</span>spec<span class="pl-cce">\.</span>ts<span class="pl-c1">/</span></span><span class="pl-kos">,</span>
<span class="pl-c1">testDir</span>: <span class="pl-s">"../../packages"</span><span class="pl-kos">,</span>
<span class="pl-c1">outputDir</span>: <span class="pl-s">"./test-results"</span><span class="pl-kos">,</span>
<span class="pl-c1">retries</span>: <span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">CI</span> ? <span class="pl-c1">2</span> : <span class="pl-c1">0</span><span class="pl-kos">,</span>
<span class="pl-c1">reporter</span>: <span class="pl-kos">[</span><span class="pl-kos">[</span><span class="pl-s">"html"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">open</span>: <span class="pl-s">"never"</span> <span class="pl-kos">}</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">CI</span> ? <span class="pl-kos">[</span><span class="pl-s">"dot"</span><span class="pl-kos">]</span> : <span class="pl-kos">[</span><span class="pl-s">"list"</span><span class="pl-kos">]</span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-c1">webServer</span>: <span class="pl-kos">[</span>
<span class="pl-kos">{</span>
<span class="pl-c1">command</span>: <span class="pl-s">"npm run serve"</span><span class="pl-kos">,</span>
<span class="pl-c1">port</span>: <span class="pl-c1">5000</span><span class="pl-kos">,</span>
<span class="pl-c1">timeout</span>: <span class="pl-c1">50000</span><span class="pl-kos">,</span>
<span class="pl-c1">reuseExistingServer</span>: <span class="pl-c1">!</span><span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">CI</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">{</span>
<span class="pl-c1">command</span>:
<span class="pl-s">"podman run --rm -p 3000:3000 some-registry/playwright-server:latest"</span><span class="pl-kos">,</span>
<span class="pl-c1">port</span>: <span class="pl-c1">3000</span><span class="pl-kos">,</span>
<span class="pl-c1">timeout</span>: <span class="pl-c1">50000</span><span class="pl-kos">,</span>
<span class="pl-c1">reuseExistingServer</span>: <span class="pl-c1">!</span><span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">CI</span>
<span class="pl-kos">}</span>
<span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-c1">use</span>: <span class="pl-kos">{</span>
<span class="pl-c1">baseURL</span>: <span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">IP_ADDRESS</span> <span class="pl-c1">||</span> <span class="pl-s">"http://localhost:5000/"</span><span class="pl-kos">,</span>
<span class="pl-c1">locale</span>: <span class="pl-s">"en-GB"</span><span class="pl-kos">,</span>
<span class="pl-c1">trace</span>: <span class="pl-s">"on-first-retry"</span><span class="pl-kos">,</span>
<span class="pl-c1">screenshot</span>: <span class="pl-s">"only-on-failure"</span><span class="pl-kos">,</span>
<span class="pl-c1">connectOptions</span>: <span class="pl-kos">{</span>
<span class="pl-c1">wsEndpoint</span>: <span class="pl-s">"ws://127.0.0.1:3000/"</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c1">expect</span>: <span class="pl-kos">{</span>
<span class="pl-c1">toHaveScreenshot</span>: <span class="pl-kos">{</span> <span class="pl-c1">maxDiffPixels</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-c1">projects</span>: <span class="pl-kos">[</span>
<span class="pl-kos">{</span>
<span class="pl-c1">name</span>: <span class="pl-s">"chromium"</span><span class="pl-kos">,</span>
<span class="pl-c1">use</span>: <span class="pl-kos">{</span>
...<span class="pl-s1">devices</span><span class="pl-kos">[</span><span class="pl-s">"Desktop Chrome"</span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-c1">viewport</span>: <span class="pl-kos">{</span> <span class="pl-c1">width</span>: <span class="pl-c1">1280</span><span class="pl-kos">,</span> <span class="pl-c1">height</span>: <span class="pl-c1">1024</span> <span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-kos">]</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">export</span> <span class="pl-k">default</span> <span class="pl-s1">config</span><span class="pl-kos">;</span></pre></div>
<p dir="auto"><strong>Test file (self-contained)</strong></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import { test, expect } from "@playwright/test";
test.describe("@component", () => {
test("should render my component correctly", async ({ page }) => {
await page.goto(`/path/my-component/`);
await page.waitForSelector("#test-container");
await expect(page).toHaveScreenshot();
});
});"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">test</span><span class="pl-kos">,</span> <span class="pl-s1">expect</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"@playwright/test"</span><span class="pl-kos">;</span>
<span class="pl-s1">test</span><span class="pl-kos">.</span><span class="pl-en">describe</span><span class="pl-kos">(</span><span class="pl-s">"@component"</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-en">test</span><span class="pl-kos">(</span><span class="pl-s">"should render my component correctly"</span><span class="pl-kos">,</span> <span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-kos">{</span> page <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">goto</span><span class="pl-kos">(</span><span class="pl-s">`/path/my-component/`</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">waitForSelector</span><span class="pl-kos">(</span><span class="pl-s">"#test-container"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">await</span> <span class="pl-en">expect</span><span class="pl-kos">(</span><span class="pl-s1">page</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toHaveScreenshot</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto"><strong>Steps</strong></p>
<ul dir="auto">
<li>Run the test <code class="notranslate">playwright test --update-snapshots --grep @component</code></li>
</ul>
<p dir="auto"><strong>Expected</strong><br>
No error while running chromium</p>
<p dir="auto"><strong>Actual</strong></p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/7147528/222090709-dcad7d9e-1c3e-4b3b-a01e-07b136f4319b.png"><img width="1421" alt="Screenshot 2023-03-01 at 09 54 21" src="https://user-images.githubusercontent.com/7147528/222090709-dcad7d9e-1c3e-4b3b-a01e-07b136f4319b.png" style="max-width: 100%;"></a></p>
<p dir="auto">I've been trying different chromium args but no luck. Before the Macbook M1 device, I was able to run the same setup with the following chromium args.</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const chromiumDefaultArgs = ["--disable-dev-shm-usage", "--no-sandbox"];"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">chromiumDefaultArgs</span> <span class="pl-c1">=</span> <span class="pl-kos">[</span><span class="pl-s">"--disable-dev-shm-usage"</span><span class="pl-kos">,</span> <span class="pl-s">"--no-sandbox"</span><span class="pl-kos">]</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">After changing to Macbook M1 device, the same setup failed and I've tried different args (see below). I was able to run tests in Firefox successfully but not in Chromium.</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const chromiumDefaultArgs = [
"--disable-gpu",
"--disable-dev-shm-usage",
"--disable-setuid-sandbox",
"--no-sandbox",
"--no-zygote",
"--single-process",
];"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">chromiumDefaultArgs</span> <span class="pl-c1">=</span> <span class="pl-kos">[</span>
<span class="pl-s">"--disable-gpu"</span><span class="pl-kos">,</span>
<span class="pl-s">"--disable-dev-shm-usage"</span><span class="pl-kos">,</span>
<span class="pl-s">"--disable-setuid-sandbox"</span><span class="pl-kos">,</span>
<span class="pl-s">"--no-sandbox"</span><span class="pl-kos">,</span>
<span class="pl-s">"--no-zygote"</span><span class="pl-kos">,</span>
<span class="pl-s">"--single-process"</span><span class="pl-kos">,</span>
<span class="pl-kos">]</span><span class="pl-kos">;</span></pre></div> | <h3 dir="auto">System info</h3>
<ul dir="auto">
<li>Playwright Version: [v1.32.2]</li>
<li>Operating System: [Windows 10]</li>
<li>Browser: [Firefox]</li>
</ul>
<h3 dir="auto">Source code</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I provided exact source code that allows reproducing the issue locally.</li>
</ul>
<p dir="auto"><strong>Config file</strong></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// playwright.config.ts
import { defineConfig, devices } from '@playwright/test';
export default defineConfig({
projects: [
{
name: 'chromium',
use: { ...devices['Desktop Chrome'], },
},
{
name: 'firefox',
use: { ...devices['Desktop Firefox'] },
},
});"><pre class="notranslate"><span class="pl-c">// playwright.config.ts</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">defineConfig</span><span class="pl-kos">,</span> <span class="pl-s1">devices</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'@playwright/test'</span><span class="pl-kos">;</span>
<span class="pl-k">export</span> <span class="pl-k">default</span> <span class="pl-en">defineConfig</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">projects</span>: <span class="pl-kos">[</span>
<span class="pl-kos">{</span>
<span class="pl-c1">name</span>: <span class="pl-s">'chromium'</span><span class="pl-kos">,</span>
<span class="pl-c1">use</span>: <span class="pl-kos">{</span> ...<span class="pl-s1">devices</span><span class="pl-kos">[</span><span class="pl-s">'Desktop Chrome'</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">{</span>
<span class="pl-c1">name</span>: <span class="pl-s">'firefox'</span><span class="pl-kos">,</span>
<span class="pl-c1">use</span>: <span class="pl-kos">{</span> ...<span class="pl-s1">devices</span><span class="pl-kos">[</span><span class="pl-s">'Desktop Firefox'</span><span class="pl-kos">]</span> <span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span><span class="pl-kos"></span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto"><strong>Test file (self-contained)</strong></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import * as sysPath from "node:path";
import { test, expect } from "@playwright/test";
test('should support exposeBinding/addInitScript/addScriptTag in dynamic iframes', async function({ page, browser }) {
await page.exposeBinding("intercept", ({ page, frame }, value) => {
console.log("intercepted", value);
});
await page.context().addInitScript(() => window['bar'] = 17);
await page.addInitScript(() => window['foo'] = 42);
await page.addInitScript(() => window['intercepted'] = typeof window.intercept === 'function');
let ready = () => {};
let iframes = 0;
console.log("start");
page.on("frameattached", frame => {
// TEST : url is always empty
console.log("frameattached %i, url [%s]", ++iframes, frame.url());
frame.addScriptTag({ content: `window['baz'] = 54` }).then(async script => {
// TEST : url is good on chromium
// TEST : url is good on firefox when the page is a local server
// TEST : url is empty on firefox when the page is a local file or a private website
console.log("addScriptTag, url [%s]", frame.url());
expect(await frame.evaluate(() => window['foo'])).toBe(42);
expect(await frame.evaluate(() => window['bar'])).toBe(17);
expect(await frame.evaluate(() => window['intercepted'])).toBe(true);
expect(await frame.evaluate(() => window['baz'])).toBe(54);
}, err => {
// iframes are purposely detached
// ignore detached frames
});
});
page.on("framedetached", frame => {
// TEST : url is always empty
console.log("framedetached %i, url [%s]", --iframes, frame.url());
if (iframes === 1) {
ready();
}
});
await page.goto(sysPath.join(__dirname, 'dynamic-oopif.html'));
// await page.goto('http://127.0.0.1:3000/dynamic-oopif.html');
console.log("wait for ready");
await new Promise((resolve, reject) => {
ready = resolve;
});
await page.waitForTimeout(1000);
console.log("ready");
expect(page.frames().length).toBe(2);
// TEST : url is good on chromium
// TEST : url is good on firefox when the page is a local server
// TEST : url is empty on firefox when the page is a local file or a private website
console.log("iframe, url [%s]", page.frames()[1].url());
expect(await page.frames()[0].evaluate(() => window['foo'])).toBe(42);
expect(await page.frames()[1].evaluate(() => window['foo'])).toBe(42);
expect(await page.frames()[0].evaluate(() => window['bar'])).toBe(17);
expect(await page.frames()[1].evaluate(() => window['bar'])).toBe(17);
expect(await page.frames()[0].evaluate(() => window['intercepted'])).toBe(true);
expect(await page.frames()[1].evaluate(() => window['intercepted'])).toBe(true);
// TEST : pass on chromium
// TEST : pass on firefox if the server is a local server
// TEST : fail on firefox if the server is a local file or a private website
expect(await page.frames()[1].evaluate(() => window['baz'])).toBe(54);
});"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-c1">*</span> <span class="pl-k">as</span> <span class="pl-s1">sysPath</span> <span class="pl-k">from</span> <span class="pl-s">"node:path"</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">test</span><span class="pl-kos">,</span> <span class="pl-s1">expect</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"@playwright/test"</span><span class="pl-kos">;</span>
<span class="pl-en">test</span><span class="pl-kos">(</span><span class="pl-s">'should support exposeBinding/addInitScript/addScriptTag in dynamic iframes'</span><span class="pl-kos">,</span> <span class="pl-k">async</span> <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">{</span> page<span class="pl-kos">,</span> browser <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">exposeBinding</span><span class="pl-kos">(</span><span class="pl-s">"intercept"</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-kos">{</span> page<span class="pl-kos">,</span> frame <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-s1">value</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">"intercepted"</span><span class="pl-kos">,</span> <span class="pl-s1">value</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">context</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">addInitScript</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-smi">window</span><span class="pl-kos">[</span><span class="pl-s">'bar'</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-c1">17</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">addInitScript</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-smi">window</span><span class="pl-kos">[</span><span class="pl-s">'foo'</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-c1">42</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">addInitScript</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-smi">window</span><span class="pl-kos">[</span><span class="pl-s">'intercepted'</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-k">typeof</span> <span class="pl-smi">window</span><span class="pl-kos">.</span><span class="pl-c1">intercept</span> <span class="pl-c1">===</span> <span class="pl-s">'function'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">let</span> <span class="pl-en">ready</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span><span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-k">let</span> <span class="pl-s1">iframes</span> <span class="pl-c1">=</span> <span class="pl-c1">0</span><span class="pl-kos">;</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">"start"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">"frameattached"</span><span class="pl-kos">,</span> <span class="pl-s1">frame</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-c">// TEST : url is always empty</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">"frameattached %i, url [%s]"</span><span class="pl-kos">,</span> <span class="pl-c1">++</span><span class="pl-s1">iframes</span><span class="pl-kos">,</span> <span class="pl-s1">frame</span><span class="pl-kos">.</span><span class="pl-en">url</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">frame</span><span class="pl-kos">.</span><span class="pl-en">addScriptTag</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">content</span>: <span class="pl-s">`window['baz'] = 54`</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-k">async</span> <span class="pl-s1">script</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-c">// TEST : url is good on chromium</span>
<span class="pl-c">// TEST : url is good on firefox when the page is a local server</span>
<span class="pl-c">// TEST : url is empty on firefox when the page is a local file or a private website</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">"addScriptTag, url [%s]"</span><span class="pl-kos">,</span> <span class="pl-s1">frame</span><span class="pl-kos">.</span><span class="pl-en">url</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">expect</span><span class="pl-kos">(</span><span class="pl-k">await</span> <span class="pl-s1">frame</span><span class="pl-kos">.</span><span class="pl-en">evaluate</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-smi">window</span><span class="pl-kos">[</span><span class="pl-s">'foo'</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toBe</span><span class="pl-kos">(</span><span class="pl-c1">42</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">expect</span><span class="pl-kos">(</span><span class="pl-k">await</span> <span class="pl-s1">frame</span><span class="pl-kos">.</span><span class="pl-en">evaluate</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-smi">window</span><span class="pl-kos">[</span><span class="pl-s">'bar'</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toBe</span><span class="pl-kos">(</span><span class="pl-c1">17</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">expect</span><span class="pl-kos">(</span><span class="pl-k">await</span> <span class="pl-s1">frame</span><span class="pl-kos">.</span><span class="pl-en">evaluate</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-smi">window</span><span class="pl-kos">[</span><span class="pl-s">'intercepted'</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toBe</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">expect</span><span class="pl-kos">(</span><span class="pl-k">await</span> <span class="pl-s1">frame</span><span class="pl-kos">.</span><span class="pl-en">evaluate</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-smi">window</span><span class="pl-kos">[</span><span class="pl-s">'baz'</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toBe</span><span class="pl-kos">(</span><span class="pl-c1">54</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-s1">err</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-c">// iframes are purposely detached</span>
<span class="pl-c">// ignore detached frames</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-s1">page</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">"framedetached"</span><span class="pl-kos">,</span> <span class="pl-s1">frame</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-c">// TEST : url is always empty</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">"framedetached %i, url [%s]"</span><span class="pl-kos">,</span> <span class="pl-c1">--</span><span class="pl-s1">iframes</span><span class="pl-kos">,</span> <span class="pl-s1">frame</span><span class="pl-kos">.</span><span class="pl-en">url</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">iframes</span> <span class="pl-c1">===</span> <span class="pl-c1">1</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-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">goto</span><span class="pl-kos">(</span><span class="pl-s1">sysPath</span><span class="pl-kos">.</span><span class="pl-en">join</span><span class="pl-kos">(</span><span class="pl-s1">__dirname</span><span class="pl-kos">,</span> <span class="pl-s">'dynamic-oopif.html'</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">// await page.goto('http://127.0.0.1:3000/dynamic-oopif.html');</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">"wait for ready"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">await</span> <span class="pl-k">new</span> <span class="pl-v">Promise</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-s1">resolve</span><span class="pl-kos">,</span> <span class="pl-s1">reject</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-en">ready</span> <span class="pl-c1">=</span> <span class="pl-s1">resolve</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">waitForTimeout</span><span class="pl-kos">(</span><span class="pl-c1">1000</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</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-en">expect</span><span class="pl-kos">(</span><span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">frames</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">length</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toBe</span><span class="pl-kos">(</span><span class="pl-c1">2</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">// TEST : url is good on chromium</span>
<span class="pl-c">// TEST : url is good on firefox when the page is a local server</span>
<span class="pl-c">// TEST : url is empty on firefox when the page is a local file or a private website</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">"iframe, url [%s]"</span><span class="pl-kos">,</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">frames</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">[</span><span class="pl-c1">1</span><span class="pl-kos">]</span><span class="pl-kos">.</span><span class="pl-en">url</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">expect</span><span class="pl-kos">(</span><span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">frames</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-kos">]</span><span class="pl-kos">.</span><span class="pl-en">evaluate</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-smi">window</span><span class="pl-kos">[</span><span class="pl-s">'foo'</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toBe</span><span class="pl-kos">(</span><span class="pl-c1">42</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">expect</span><span class="pl-kos">(</span><span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">frames</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">[</span><span class="pl-c1">1</span><span class="pl-kos">]</span><span class="pl-kos">.</span><span class="pl-en">evaluate</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-smi">window</span><span class="pl-kos">[</span><span class="pl-s">'foo'</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toBe</span><span class="pl-kos">(</span><span class="pl-c1">42</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">expect</span><span class="pl-kos">(</span><span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">frames</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-kos">]</span><span class="pl-kos">.</span><span class="pl-en">evaluate</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-smi">window</span><span class="pl-kos">[</span><span class="pl-s">'bar'</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toBe</span><span class="pl-kos">(</span><span class="pl-c1">17</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">expect</span><span class="pl-kos">(</span><span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">frames</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">[</span><span class="pl-c1">1</span><span class="pl-kos">]</span><span class="pl-kos">.</span><span class="pl-en">evaluate</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-smi">window</span><span class="pl-kos">[</span><span class="pl-s">'bar'</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toBe</span><span class="pl-kos">(</span><span class="pl-c1">17</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">expect</span><span class="pl-kos">(</span><span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">frames</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">[</span><span class="pl-c1">0</span><span class="pl-kos">]</span><span class="pl-kos">.</span><span class="pl-en">evaluate</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-smi">window</span><span class="pl-kos">[</span><span class="pl-s">'intercepted'</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toBe</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">expect</span><span class="pl-kos">(</span><span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">frames</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">[</span><span class="pl-c1">1</span><span class="pl-kos">]</span><span class="pl-kos">.</span><span class="pl-en">evaluate</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-smi">window</span><span class="pl-kos">[</span><span class="pl-s">'intercepted'</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toBe</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-c">// TEST : pass on chromium</span>
<span class="pl-c">// TEST : pass on firefox if the server is a local server</span>
<span class="pl-c">// TEST : fail on firefox if the server is a local file or a private website</span>
<span class="pl-en">expect</span><span class="pl-kos">(</span><span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">frames</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">[</span><span class="pl-c1">1</span><span class="pl-kos">]</span><span class="pl-kos">.</span><span class="pl-en">evaluate</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-smi">window</span><span class="pl-kos">[</span><span class="pl-s">'baz'</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toBe</span><span class="pl-kos">(</span><span class="pl-c1">54</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">dynamic-oopif.html</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<script>
const promiseTimeout = ms => {
return new Promise((resolve, reject) => {
setTimeout(resolve, ms);
});
};
window.addEventListener('DOMContentLoaded', async () => {
const iframes = [];
function frameattach() {
const iframe = document.createElement('iframe');
iframe.src = "https://fr.wikipedia.org/wiki/Main_Page";
document.body.appendChild(iframe);
iframes.push(iframe);
}
function framedetach() {
const iframe = iframes.pop();
document.body.removeChild(iframe);
}
await promiseTimeout(2000);
frameattach();
await promiseTimeout(1000);
frameattach();
framedetach();
}, false);
</script>"><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">script</span><span class="pl-kos">></span>
<span class="pl-k">const</span> <span class="pl-en">promiseTimeout</span> <span class="pl-c1">=</span> <span class="pl-s1">ms</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-k">new</span> <span class="pl-v">Promise</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-s1">resolve</span><span class="pl-kos">,</span> <span class="pl-s1">reject</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-en">setTimeout</span><span class="pl-kos">(</span><span class="pl-s1">resolve</span><span class="pl-kos">,</span> <span class="pl-s1">ms</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-smi">window</span><span class="pl-kos">.</span><span class="pl-en">addEventListener</span><span class="pl-kos">(</span><span class="pl-s">'DOMContentLoaded'</span><span class="pl-kos">,</span> <span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-s1">iframes</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">function</span> <span class="pl-en">frameattach</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">iframe</span> <span class="pl-c1">=</span> <span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-en">createElement</span><span class="pl-kos">(</span><span class="pl-s">'iframe'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">iframe</span><span class="pl-kos">.</span><span class="pl-c1">src</span> <span class="pl-c1">=</span> <span class="pl-s">"https://fr.wikipedia.org/wiki/Main_Page"</span><span class="pl-kos">;</span>
<span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-c1">body</span><span class="pl-kos">.</span><span class="pl-en">appendChild</span><span class="pl-kos">(</span><span class="pl-s1">iframe</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">iframes</span><span class="pl-kos">.</span><span class="pl-en">push</span><span class="pl-kos">(</span><span class="pl-s1">iframe</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">function</span> <span class="pl-en">framedetach</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">iframe</span> <span class="pl-c1">=</span> <span class="pl-s1">iframes</span><span class="pl-kos">.</span><span class="pl-en">pop</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-c1">body</span><span class="pl-kos">.</span><span class="pl-en">removeChild</span><span class="pl-kos">(</span><span class="pl-s1">iframe</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">await</span> <span class="pl-en">promiseTimeout</span><span class="pl-kos">(</span><span class="pl-c1">2000</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">frameattach</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">await</span> <span class="pl-en">promiseTimeout</span><span class="pl-kos">(</span><span class="pl-c1">1000</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">frameattach</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">framedetach</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-c1">false</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></pre></div>
<p dir="auto"><strong>Steps</strong></p>
<ul dir="auto">
<li>[Run the test]</li>
<li><code class="notranslate">node node_modules/playwright/cli.js test --project=firefox --headed oopif.spec.ts</code></li>
</ul>
<p dir="auto"><strong>Expected</strong></p>
<p dir="auto">frame.evaluate to return the correct value</p>
<p dir="auto"><strong>Actual</strong></p>
<p dir="auto">Error: frame.evaluate: Execution context was destroyed, most likely because of a navigation</p>
<div class="highlight highlight-text-adblock notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Running 1 test using 1 worker
[firefox] › oopif.spec.ts:4:5 › should support exposeBinding/addInitScript/addScriptTag in dynamic iframes
start
wait for ready
frameattached 1, url []
addScriptTag, url []
frameattached 2, url []
framedetached 1, url []
ready
iframe, url []
1) [firefox] › oopif.spec.ts:4:5 › should support exposeBinding/addInitScript/addScriptTag in dynamic iframes
Error: frame.evaluate: Execution context was destroyed, most likely because of a navigation.
65 |
66 | expect(await page.frames()[0].evaluate(() => window['foo'])).toBe(42);
> 67 | expect(await page.frames()[1].evaluate(() => window['foo'])).toBe(42);
| ^
68 | expect(await page.frames()[0].evaluate(() => window['bar'])).toBe(17);
69 | expect(await page.frames()[1].evaluate(() => window['bar'])).toBe(17);
70 | expect(await page.frames()[0].evaluate(() => window['intercepted'])).toBe(true);"><pre class="notranslate">Running 1 test using 1 worker
[firefox] › oopif.spec.ts:4:5 › should support exposeBinding/addInitScript/addScriptTag in dynamic iframes
start
wait for ready
frameattached 1, url []
addScriptTag, url []
frameattached 2, url []
framedetached 1, url []
ready
iframe, url []
1) [firefox] › oopif.spec.ts:4:5 › should support exposeBinding/addInitScript/addScriptTag in dynamic iframes
Error: frame.evaluate: Execution context was destroyed, most likely because of a navigation.
65 <span class="pl-k">|</span>
66 | expect(await page.frames()[0].evaluate(() => window['foo'])).toBe(42);
> 67 | expect(await page.frames()[1].evaluate(() => window['foo'])).toBe(42);
| <span class="pl-k">^</span>
68 | expect(await page.frames()[0].evaluate(() => window['bar'])).toBe(17);
69 | expect(await page.frames()[1].evaluate(() => window['bar'])).toBe(17);
70 | expect(await page.frames()[0].evaluate(() => window['intercepted'])).toBe(true);</pre></div>
<div class="highlight highlight-text-adblock notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Running 1 test using 1 worker
[chromium] › oopif.spec.ts:4:5 › should support exposeBinding/addInitScript/addScriptTag in dynamic iframes
start
wait for ready
frameattached 1, url []
addScriptTag, url [https://fr.wikipedia.org/wiki/Main_Page]
frameattached 2, url []
framedetached 1, url []
ready
iframe, url [https://fr.wikipedia.org/wiki/Wikip%C3%A9dia:Accueil_principal]
1 passed (7.3s)"><pre class="notranslate">Running 1 test using 1 worker
[chromium] › oopif.spec.ts:4:5 › should support exposeBinding/addInitScript/addScriptTag in dynamic iframes
start
wait for ready
frameattached 1, url []
addScriptTag, url [https://fr.wikipedia.org/wiki/Main_Page]
frameattached 2, url []
framedetached 1, url []
ready
iframe, url [https://fr.wikipedia.org/wiki/Wikip%C3%A9dia:Accueil_principal]
1 passed (7.3s)</pre></div> | 0 |
<h3 dir="auto">Is there an existing issue for this?</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the existing issues</li>
</ul>
<h3 dir="auto">This issue exists in the latest npm version</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I am using the latest npm</li>
</ul>
<h3 dir="auto">Current Behavior</h3>
<p dir="auto">When running an npm script with a colon (<code class="notranslate">:</code>) in its name, Windows will return a number of different errors.</p>
<p dir="auto">Sometimes the error is as follows:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="The filename, directory name, or volume label syntax is incorrect."><pre class="notranslate"><code class="notranslate">The filename, directory name, or volume label syntax is incorrect.
</code></pre></div>
<p dir="auto">At other times, this error occurs:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Error: ENOENT: no such file or directory, open 'C:\Users\Chris\AppData\Local\Temp\foo:bar-1656368147831.cmd'
at Object.openSync (node:fs:585:3)
at writeFileSync (node:fs:2170:35)
at makeSpawnArgs (C:\Program Files\nodejs\node_modules\npm\node_modules\@npmcli\run-script\lib\make-spawn-args.js:82:3)
at runScriptPkg (C:\Program Files\nodejs\node_modules\npm\node_modules\@npmcli\run-script\lib\run-script-pkg.js:57:55)
at runScript (C:\Program Files\nodejs\node_modules\npm\node_modules\@npmcli\run-script\lib\run-script.js:9:16)
at RunScript.run (C:\Program Files\nodejs\node_modules\npm\lib\commands\run-script.js:125:13)
at async module.exports (C:\Program Files\nodejs\node_modules\npm\lib\cli.js:78:5)"><pre class="notranslate"><code class="notranslate">Error: ENOENT: no such file or directory, open 'C:\Users\Chris\AppData\Local\Temp\foo:bar-1656368147831.cmd'
at Object.openSync (node:fs:585:3)
at writeFileSync (node:fs:2170:35)
at makeSpawnArgs (C:\Program Files\nodejs\node_modules\npm\node_modules\@npmcli\run-script\lib\make-spawn-args.js:82:3)
at runScriptPkg (C:\Program Files\nodejs\node_modules\npm\node_modules\@npmcli\run-script\lib\run-script-pkg.js:57:55)
at runScript (C:\Program Files\nodejs\node_modules\npm\node_modules\@npmcli\run-script\lib\run-script.js:9:16)
at RunScript.run (C:\Program Files\nodejs\node_modules\npm\lib\commands\run-script.js:125:13)
at async module.exports (C:\Program Files\nodejs\node_modules\npm\lib\cli.js:78:5)
</code></pre></div>
<p dir="auto">I haven't been able to nail down exactly what causes the differing behavior, sometimes they will alternate when I run the same command, in the same terminal session, one right after the other.</p>
<p dir="auto">Interestingly, when I highlight the name of the "missing" file in the VS Code integrated terminal, only the path up to the first colon is highlighted as being a navigable path.</p>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">When I use <code class="notranslate">npm run foo:bar</code>, I'd like it to successfully execute the script of the same name.</p>
<p dir="auto">When I roll back to npm 8.11.0 using nvm, I get the irritating <code class="notranslate">config global '--global', '--local' are deprecated. Use '--location=global' instead.</code> error, but I am able to successfully execute scripts with colons in their names.</p>
<h3 dir="auto">Workaround</h3>
<p dir="auto">I'm extremely confident that this issue between npm and the Windows filesystem is caused by the colons, because when I change the name of the script by replacing the colons with hyphens (<code class="notranslate">foo:bar</code> to <code class="notranslate">foo-bar</code>), the script works perfectly.</p>
<p dir="auto">When I mentioned this problem to my coworkers, they said that they were able to use scripts w/ colon names without issue. I had updated my npm that morning, but they were still using npm version <code class="notranslate">8.11</code>, so this error is definitely caused by something that was changed in the last few versions.</p>
<p dir="auto">I don't yet know whether npm 8.12 has similar problems.</p>
<h3 dir="auto">Steps To Reproduce</h3>
<p dir="auto">In a Windows 10 environment...</p>
<ol dir="auto">
<li>Install or update to npm 8.13.1</li>
<li>Initialize or navigate to a node.js project</li>
<li>Within the <code class="notranslate">scripts</code> section of <code class="notranslate">package.json</code>:<br>
a. Create a script with a colon in its name (ex. <code class="notranslate">foo:bar</code>)<br>
b. The actual contents of the script don't matter, just the name</li>
<li>From a command prompt or Powershell terminal, execute <code class="notranslate">npm run foo:bar</code> [or whatever the name of the script is]</li>
<li>Observe one of the above mentioned errors, either<br>
a. <code class="notranslate">filename, directory name, or volume label syntax is incorrect</code><br>
b. <code class="notranslate">no such file or directory</code></li>
</ol>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>npm: 8.13.1</li>
<li>Node.js: v16.15.1</li>
<li>OS Name: Windows 10 21H2 (Build 19044.1766)</li>
<li>System Model Name: Dell Precision 5550</li>
<li>npm config:</li>
</ul>
<div class="highlight highlight-source-ini notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="; "builtin" config from C:\Program Files\nodejs\node_modules\npm\npmrc
prefix = "C:\\Users\\Chris\\AppData\\Roaming\\npm"
; "global" config from C:\Users\Chris\AppData\Roaming\npm\etc\npmrc
include = ["dev"]
omit = []
; "user" config from C:\Users\Chris\.npmrc
strict-ssl = false
; "project" config from C:\Users\Chris\development\spotify-playlist-maker\.npmrc
always-auth = true
registry = "https://registry.npmjs.org/"
; node bin location = C:\Program Files\nodejs\node.exe
; node version = v16.15.1
; npm local prefix = C:\Users\Chris\development\spotify-playlist-maker
; npm version = 8.13.1
; cwd = C:\Users\Chris\development\spotify-playlist-maker
; HOME = C:\Users\Chris
; Run `npm config ls -l` to show all defaults."><pre class="notranslate"><span class="pl-c"><span class="pl-c">;</span> "builtin" config from C:\Program Files\nodejs\node_modules\npm\npmrc</span>
<span class="pl-k">prefix</span> = <span class="pl-s"><span class="pl-pds">"</span>C:\\Users\\Chris\\AppData\\Roaming\\npm<span class="pl-pds">"</span></span>
<span class="pl-c"><span class="pl-c">;</span> "global" config from C:\Users\Chris\AppData\Roaming\npm\etc\npmrc</span>
<span class="pl-k">include</span> = [<span class="pl-s"><span class="pl-pds">"</span>dev<span class="pl-pds">"</span></span>]
<span class="pl-k">omit</span> = []
<span class="pl-c"><span class="pl-c">;</span> "user" config from C:\Users\Chris\.npmrc</span>
<span class="pl-k">strict-ssl</span> = false
<span class="pl-c"><span class="pl-c">;</span> "project" config from C:\Users\Chris\development\spotify-playlist-maker\.npmrc</span>
<span class="pl-k">always-auth</span> = true
<span class="pl-k">registry</span> = <span class="pl-s"><span class="pl-pds">"</span>https://registry.npmjs.org/<span class="pl-pds">"</span></span>
<span class="pl-c"><span class="pl-c">;</span> node bin location = C:\Program Files\nodejs\node.exe</span>
<span class="pl-c"><span class="pl-c">;</span> node version = v16.15.1</span>
<span class="pl-c"><span class="pl-c">;</span> npm local prefix = C:\Users\Chris\development\spotify-playlist-maker</span>
<span class="pl-c"><span class="pl-c">;</span> npm version = 8.13.1</span>
<span class="pl-c"><span class="pl-c">;</span> cwd = C:\Users\Chris\development\spotify-playlist-maker</span>
<span class="pl-c"><span class="pl-c">;</span> HOME = C:\Users\Chris</span>
<span class="pl-c"><span class="pl-c">;</span> Run `npm config ls -l` to show all defaults.</span></pre></div> | <h3 dir="auto">Is there an existing issue for this?</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the existing issues</li>
</ul>
<h3 dir="auto">This issue exists in the latest npm version</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I am using the latest npm</li>
</ul>
<h3 dir="auto">Current Behavior</h3>
<p dir="auto">I am unable to run scripts defined in my package.json. <code class="notranslate">npm run <script></code> outputs <code class="notranslate">The filename, directory name, or volume label syntax is incorrect.</code> (translated from german 'Die Syntax für den Dateinamen, Verzeichnisnamen oder die Datenträgerbezeichnung ist falsch.')<br>
Downgrading to v8.12.2 for now as scripts are able to run using this npm version.</p>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">All scripts should run without an error.</p>
<h3 dir="auto">Steps To Reproduce</h3>
<ol dir="auto">
<li>Install the latest npm version 8.13.0 globally</li>
<li>Run any script defined in your package.json</li>
<li>See error: <code class="notranslate">The filename, directory name, or volume label syntax is incorrect.</code> (translated from german 'Die Syntax für den Dateinamen, Verzeichnisnamen oder die Datenträgerbezeichnung ist falsch.')</li>
</ol>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>npm: 8.13.0</li>
<li>Node.js: 16.15.1</li>
<li>OS Name: Windows 10</li>
<li>System Model Name: HP ZBook</li>
<li>npm config:</li>
</ul>
<div class="highlight highlight-source-ini notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="; "builtin" config from C:\Users\[retracted]\AppData\Roaming\npm\node_modules\npm\npmrc
prefix = "C:\\Users\\[retracted]\\AppData\\Roaming\\npm"
; "user" config from C:\Users\[retracted]\.npmrc
[retracted]:registry = "[retracted]"
[retracted]:registry = "[retracted]"
[retracted]
registry = "[retracted]"
; node bin location = C:\Program Files\nodejs\node.exe
; node version = v16.15.1
; npm local prefix = [retracted]
; npm version = 8.13.0
; cwd = [retracted]
; HOME = C:\Users\[retracted]
; Run `npm config ls -l` to show all defaults."><pre class="notranslate"><span class="pl-c"><span class="pl-c">;</span> "builtin" config from C:\Users\[retracted]\AppData\Roaming\npm\node_modules\npm\npmrc</span>
<span class="pl-k">prefix</span> = <span class="pl-s"><span class="pl-pds">"</span>C:\\Users\\[retracted]\\AppData\\Roaming\\npm<span class="pl-pds">"</span></span>
<span class="pl-c"><span class="pl-c">;</span> "user" config from C:\Users\[retracted]\.npmrc</span>
<span class="pl-en">[retracted]</span>:<span class="pl-k">registry</span> = <span class="pl-s"><span class="pl-pds">"</span>[retracted]<span class="pl-pds">"</span></span>
<span class="pl-en">[retracted]</span>:<span class="pl-k">registry</span> = <span class="pl-s"><span class="pl-pds">"</span>[retracted]<span class="pl-pds">"</span></span>
<span class="pl-en">[retracted]</span>
<span class="pl-k">registry</span> = <span class="pl-s"><span class="pl-pds">"</span>[retracted]<span class="pl-pds">"</span></span>
<span class="pl-c"><span class="pl-c">;</span> node bin location = C:\Program Files\nodejs\node.exe</span>
<span class="pl-c"><span class="pl-c">;</span> node version = v16.15.1</span>
<span class="pl-c"><span class="pl-c">;</span> npm local prefix = [retracted]</span>
<span class="pl-c"><span class="pl-c">;</span> npm version = 8.13.0</span>
<span class="pl-c"><span class="pl-c">;</span> cwd = [retracted]</span>
<span class="pl-c"><span class="pl-c">;</span> HOME = C:\Users\[retracted]</span>
<span class="pl-c"><span class="pl-c">;</span> Run `npm config ls -l` to show all defaults.</span></pre></div> | 1 |
<p dir="auto">I think that bootstrap should include icons on alert messages (errors/warnings/info/etc) by default. Having icons on alert messages would increase WCAG 2.0 (accessibility) across the web. The icons would allow colorblind users to understand messages easier.</p>
<p dir="auto">Drupal had to solve this problem recently. Here's the issue where they discussed it: <a href="http://drupal.org/node/874370" rel="nofollow">http://drupal.org/node/874370</a></p>
<p dir="auto">I recognize this as a duplicate of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1456987" data-permission-text="Title is private" data-url="https://github.com/twbs/bootstrap/issues/54" data-hovercard-type="issue" data-hovercard-url="/twbs/bootstrap/issues/54/hovercard" href="https://github.com/twbs/bootstrap/issues/54">#54</a> but I thought it might be time to revisit it since there are now icons available in the 2.0.</p>
<p dir="auto">Looking through the icons, I don't actually see any that would fit for the alert messages. But perhaps we could find another solution.</p>
<p dir="auto">Love to hear reactions to this.</p> | <p dir="auto">Bootstrap version 2.3.1<br>
Samsung S3 default android browser<br>
android 4.1.1</p>
<p dir="auto">the <select> looks identical to an <input> -- there's no dropdown "icon" on the right side.. for multiple <select multiple="multiple"> there's no "scrollbar" or content</p>
<p dir="auto">to duplicate, use default browser, surf to:</p>
<p dir="auto"><a href="http://twitter.github.io/bootstrap/base-css.html#forms" rel="nofollow">http://twitter.github.io/bootstrap/base-css.html#forms</a></p>
<p dir="auto">scroll down to the select area..<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/d3e9fa3add89a63b2ad82ec941953688778850109105d7531ea4f511b76812c2/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f313036353935392f3432383738362f35313362666266322d616531662d313165322d383661362d3065383565626538313463312e706e67"><img src="https://camo.githubusercontent.com/d3e9fa3add89a63b2ad82ec941953688778850109105d7531ea4f511b76812c2/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f313036353935392f3432383738362f35313362666266322d616531662d313165322d383661362d3065383565626538313463312e706e67" alt="Screenshot_2013-04-25-22-06-07" data-canonical-src="https://f.cloud.github.com/assets/1065959/428786/513bfbf2-ae1f-11e2-86a6-0e85ebe814c1.png" style="max-width: 100%;"></a></p> | 0 |
<p dir="auto">I don't know what happened</p> | <h2 dir="auto">Bug Report</h2>
<p dir="auto">When i test <code class="notranslate">RuleAlteredJobAPIImpl.stopClusterWriteDB</code> method<br>
<code class="notranslate">lock.tryLock()</code> execute succeed, but the <code class="notranslate">lock.isLocked()</code> return false.</p>
<h3 dir="auto">Which version of ShardingSphere did you use?</h3>
<p dir="auto">master <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/apache/shardingsphere/commit/b4f748242ca44dc4d3319d9b5a8f5ada08765f8a/hovercard" href="https://github.com/apache/shardingsphere/commit/b4f748242ca44dc4d3319d9b5a8f5ada08765f8a"><tt>b4f7482</tt></a></p>
<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"><code class="notranslate">lock.isLocked()</code> return success.</p>
<h3 dir="auto">Actual behavior</h3>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/101622833/167120472-ba08734b-ea5f-4ab3-9f92-c98b6e827f30.png"><img width="954" alt="image" src="https://user-images.githubusercontent.com/101622833/167120472-ba08734b-ea5f-4ab3-9f92-c98b6e827f30.png" style="max-width: 100%;"></a></p>
<h3 dir="auto">Reason analyze (If you can)</h3>
<h3 dir="auto">Steps to reproduce the behavior, such as: SQL to execute, sharding rule configuration, when exception occur etc.</h3>
<ul dir="auto">
<li>Step 1<br>
Start multiple proxy, they share the same zookeeperr configuration<br>
eg:<br>
proxy one is on port 3307, proxy two is on port 3308</li>
</ul>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/101622833/167120783-6aadbd9e-d723-4340-a16a-053f31517a7d.png"><img width="1439" alt="image" src="https://user-images.githubusercontent.com/101622833/167120783-6aadbd9e-d723-4340-a16a-053f31517a7d.png" style="max-width: 100%;"></a></p>
<p dir="auto">server.yaml</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="mode:
type: Cluster
repository:
type: ZooKeeper
props:
namespace: pg
server-lists: localhost:2181
retryIntervalMilliseconds: 500
timeToLiveSeconds: 60
maxRetries: 3
operationTimeoutMilliseconds: 500
overwrite: true
rules:
- !AUTHORITY
users:
- root@%:root
- sharding@:sharding
provider:
type: ALL_PRIVILEGES_PERMITTED
- !SQL_PARSER
sqlCommentParseEnabled: true
sqlStatementCache:
initialCapacity: 2000
maximumSize: 65535
concurrencyLevel: 4
parseTreeCache:
initialCapacity: 128
maximumSize: 1024
concurrencyLevel: 4
props:
max-connections-size-per-query: 1
kernel-executor-size: 16 # Infinite by default.
proxy-frontend-flush-threshold: 128 # The default value is 128.
proxy-hint-enabled: false
sql-show: true
check-table-metadata-enabled: false
show-process-list-enabled: false
# Proxy backend query fetch size. A larger value may increase the memory usage of ShardingSphere Proxy.
# The default value is -1, which means set the minimum value for different JDBC drivers.
proxy-backend-query-fetch-size: -1
check-duplicate-table-enabled: false
proxy-frontend-executor-size: 0 # Proxy frontend executor size. The default value is 0, which means let Netty decide.
# Available options of proxy backend executor suitable: OLAP(default), OLTP. The OLTP option may reduce time cost of writing packets to client, but it may increase the latency of SQL execution
# and block other clients if client connections are more than `proxy-frontend-executor-size`, especially executing slow SQL.
proxy-backend-executor-suitable: OLAP
proxy-frontend-max-connections: 0 # Less than or equal to 0 means no limitation.
sql-federation-enabled: false
# Available proxy backend driver type: JDBC (default), ExperimentalVertx
proxy-backend-driver-type: JDBC
proxy-mysql-default-version: 5.7.22 # In the absence of schema name, the default version will be used.
proxy-default-port: 3307 # Proxy default port.
proxy-frontend-database-protocol-type: PostgreSQL"><pre class="notranslate"><code class="notranslate">mode:
type: Cluster
repository:
type: ZooKeeper
props:
namespace: pg
server-lists: localhost:2181
retryIntervalMilliseconds: 500
timeToLiveSeconds: 60
maxRetries: 3
operationTimeoutMilliseconds: 500
overwrite: true
rules:
- !AUTHORITY
users:
- root@%:root
- sharding@:sharding
provider:
type: ALL_PRIVILEGES_PERMITTED
- !SQL_PARSER
sqlCommentParseEnabled: true
sqlStatementCache:
initialCapacity: 2000
maximumSize: 65535
concurrencyLevel: 4
parseTreeCache:
initialCapacity: 128
maximumSize: 1024
concurrencyLevel: 4
props:
max-connections-size-per-query: 1
kernel-executor-size: 16 # Infinite by default.
proxy-frontend-flush-threshold: 128 # The default value is 128.
proxy-hint-enabled: false
sql-show: true
check-table-metadata-enabled: false
show-process-list-enabled: false
# Proxy backend query fetch size. A larger value may increase the memory usage of ShardingSphere Proxy.
# The default value is -1, which means set the minimum value for different JDBC drivers.
proxy-backend-query-fetch-size: -1
check-duplicate-table-enabled: false
proxy-frontend-executor-size: 0 # Proxy frontend executor size. The default value is 0, which means let Netty decide.
# Available options of proxy backend executor suitable: OLAP(default), OLTP. The OLTP option may reduce time cost of writing packets to client, but it may increase the latency of SQL execution
# and block other clients if client connections are more than `proxy-frontend-executor-size`, especially executing slow SQL.
proxy-backend-executor-suitable: OLAP
proxy-frontend-max-connections: 0 # Less than or equal to 0 means no limitation.
sql-federation-enabled: false
# Available proxy backend driver type: JDBC (default), ExperimentalVertx
proxy-backend-driver-type: JDBC
proxy-mysql-default-version: 5.7.22 # In the absence of schema name, the default version will be used.
proxy-default-port: 3307 # Proxy default port.
proxy-frontend-database-protocol-type: PostgreSQL
</code></pre></div>
<ul dir="auto">
<li>Step 2</li>
</ul>
<blockquote>
<p dir="auto">make sure already install docker, IT test will use it.</p>
</blockquote>
<p dir="auto">open the class <code class="notranslate">org.apache.shardingsphere.integration.data.pipeline.cases.postgresql.PostgreSQLManualScalingIT</code><br>
edit run configuration. add <code class="notranslate">-Dit.cluster.env.type=native -Dit.env.postgresql.version=postgres:12</code></p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/101622833/167121628-8f9e6d88-5685-4dd4-a687-31cab183feac.png"><img width="1040" alt="image" src="https://user-images.githubusercontent.com/101622833/167121628-8f9e6d88-5685-4dd4-a687-31cab183feac.png" style="max-width: 100%;"></a></p>
<p dir="auto">then execute the IT test</p>
<p dir="auto">The final problem was<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/101622833/167122112-ab44e4ee-2222-4654-8c6c-cffd4db8df58.png"><img width="1190" alt="image" src="https://user-images.githubusercontent.com/101622833/167122112-ab44e4ee-2222-4654-8c6c-cffd4db8df58.png" style="max-width: 100%;"></a><br>
seems not lock succeed before.</p> | 0 |
<p dir="auto">I decided to try and run a node project of mine with the following arguments:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ deno run --node-modules-dir --allow-env --allow-sys ./src/main.ts --ext ts"><pre class="notranslate"><code class="notranslate">$ deno run --node-modules-dir --allow-env --allow-sys ./src/main.ts --ext ts
</code></pre></div>
<p dir="auto">It gave back the following error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="error: Parsing version constraints in the application-level package.json is more strict at the moment.
Not implemented scheme 'file'
at file:///{path/to/project}/src/main.ts:42:31"><pre class="notranslate"><code class="notranslate">error: Parsing version constraints in the application-level package.json is more strict at the moment.
Not implemented scheme 'file'
at file:///{path/to/project}/src/main.ts:42:31
</code></pre></div>
<p dir="auto">The library it was trying to import at <code class="notranslate">:42:31</code> was one with the following definition in the <code class="notranslate">package.json</code>:</p>
<div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{
"dependencies": {
"@my/library": "file:ext/my-library"
}
}"><pre class="notranslate">{
<span class="pl-ent">"dependencies"</span>: {
<span class="pl-ent">"@my/library"</span>: <span class="pl-s"><span class="pl-pds">"</span>file:ext/my-library<span class="pl-pds">"</span></span>
}
}</pre></div>
<p dir="auto">This is a relatively straightforward bug, and is pretty low-priority, but thought I'd write it up as I couldn't find a duplicate.</p>
<p dir="auto">Thanks for working on Deno!</p> | <p dir="auto">I have a node module <code class="notranslate">test_node</code> which is locally installed within the deno project into a <code class="notranslate">node_modules</code> folder via:</p>
<p dir="auto"><code class="notranslate">npm install --save ../test_node</code></p>
<p dir="auto">package.json:</p>
<div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{
"dependencies": {
"test_node": "file:../test_node"
}
}"><pre class="notranslate">{
<span class="pl-ent">"dependencies"</span>: {
<span class="pl-ent">"test_node"</span>: <span class="pl-s"><span class="pl-pds">"</span>file:../test_node<span class="pl-pds">"</span></span>
}
}</pre></div>
<p dir="auto">When I run with the <a href="https://deno.land/[email protected]/node/npm_specifiers#--node-modules-dir-flag" rel="nofollow">node-modules-dir</a> flag:<br>
<code class="notranslate">deno run -A --node-modules-dir index.js</code></p>
<p dir="auto">I get the following error:<br>
<code class="notranslate">error: npm package 'test_node' does not exist</code></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>
We are trying to create an external module which will be imported in main app.<br>
Here is the module :</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="export const MyHelloComponent = (props) => {
const [test, setTest] = useState();
return (<div>Hello</div>);
}"><pre lang="import" class="notranslate"><code class="notranslate">export const MyHelloComponent = (props) => {
const [test, setTest] = useState();
return (<div>Hello</div>);
}
</code></pre></div>
<p dir="auto">Importing this simple code into main app gives us the error :</p>
<blockquote>
<p dir="auto">Uncaught Invariant Violation: Hooks can only be called inside the body of a function component</p>
</blockquote>
<p dir="auto">Removing hooks this code works fine.</p>
<p dir="auto">We have followed instructions from <a href="https://reactjs.org/warnings/invalid-hook-call-warning.html#duplicate-react" rel="nofollow">https://reactjs.org/warnings/invalid-hook-call-warning.html#duplicate-react</a> but error still thrown</p>
<p dir="auto">If we link react as mentionned in documentation, works but it only can be done in development not in production.</p>
<p dir="auto">We are not the only one having this issue <a href="https://stackoverflow.com/questions/54916349/side-package-with-react-hooks-failing-with-invariant-violation-when-called-in" rel="nofollow">Side package with React Hooks failing with Invariant Violation when called in main package</a></p>
<p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem. 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></p>
<p dir="auto"><strong>Code from external component :</strong><br>
package.json</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
"name": "app-component",
"version": "1.0.0",
"main": "build/index.js",
"license": "MIT",
"private": true,
"peerDependencies": {
"react": "^16.8.4",
"react-dom": "^16.8.4"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/plugin-transform-regenerator": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.0",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"style-loader": "^0.23.1",
"styled-jsx": "^3.2.1",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3"
},
"scripts": {
"build": "./node_modules/.bin/webpack --mode production",
"dev": "./node_modules/.bin/webpack --mode development --watch"
},
"files": [
"build"
],
"dependencies": {
"@material-ui/core": "^3.9.2"
}
}"><pre class="notranslate"><code class="notranslate">{
"name": "app-component",
"version": "1.0.0",
"main": "build/index.js",
"license": "MIT",
"private": true,
"peerDependencies": {
"react": "^16.8.4",
"react-dom": "^16.8.4"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/plugin-transform-regenerator": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.0",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"style-loader": "^0.23.1",
"styled-jsx": "^3.2.1",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3"
},
"scripts": {
"build": "./node_modules/.bin/webpack --mode production",
"dev": "./node_modules/.bin/webpack --mode development --watch"
},
"files": [
"build"
],
"dependencies": {
"@material-ui/core": "^3.9.2"
}
}
</code></pre></div>
<p dir="auto">webpack.config.js</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="const path = require('path');
const pkg = require('./package.json');
const libraryName= pkg.name;
module.exports = (env, argv) => ({
entry: './src/index.js',
output: {
path: path.resolve(__dirname, 'build'),
filename: 'index.js',
library: libraryName,
libraryTarget: 'commonjs2',
publicPath: '/build/',
},
devtool: argv.mode !== 'production' ? 'inline-source-map': false,
module: {
rules: [
{
test: /\.js$/,
include: path.resolve(__dirname, 'src'),
exclude: /(node_modules|bower_components)/,
use: ['babel-loader']
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader']
},
]
},
resolve: {
alias: {
'react': path.resolve('./node_modules/react'),
'react-dom': path.resolve('./node_modules/react-dom'),
}
},
externals: {
react: "react",
"react-dom": "react-dom"
}
});"><pre class="notranslate"><code class="notranslate">const path = require('path');
const pkg = require('./package.json');
const libraryName= pkg.name;
module.exports = (env, argv) => ({
entry: './src/index.js',
output: {
path: path.resolve(__dirname, 'build'),
filename: 'index.js',
library: libraryName,
libraryTarget: 'commonjs2',
publicPath: '/build/',
},
devtool: argv.mode !== 'production' ? 'inline-source-map': false,
module: {
rules: [
{
test: /\.js$/,
include: path.resolve(__dirname, 'src'),
exclude: /(node_modules|bower_components)/,
use: ['babel-loader']
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader']
},
]
},
resolve: {
alias: {
'react': path.resolve('./node_modules/react'),
'react-dom': path.resolve('./node_modules/react-dom'),
}
},
externals: {
react: "react",
"react-dom": "react-dom"
}
});
</code></pre></div>
<p dir="auto">src/index.js</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="export * from './components/hello';"><pre class="notranslate"><code class="notranslate">export * from './components/hello';
</code></pre></div>
<p dir="auto">src/components/hello.js</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import React, { useState } from 'react';
export const MyHelloComponent = (props) => {
const [test, setTest] = useState();
return (<div>Hello</div>);
}"><pre class="notranslate"><code class="notranslate">import React, { useState } from 'react';
export const MyHelloComponent = (props) => {
const [test, setTest] = useState();
return (<div>Hello</div>);
}
</code></pre></div>
<p dir="auto"><strong>Code from main app:</strong><br>
webpack.config.js</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="module.exports = {
entry: './src/index.js',
output: {
path: __dirname + '/dist',
publicPath: '/dist/',
filename: 'bundle.js'
},
devServer: {
contentBase: './public',
},
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
use: ['babel-loader']
}
]
},
};"><pre class="notranslate"><code class="notranslate">module.exports = {
entry: './src/index.js',
output: {
path: __dirname + '/dist',
publicPath: '/dist/',
filename: 'bundle.js'
},
devServer: {
contentBase: './public',
},
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
use: ['babel-loader']
}
]
},
};
</code></pre></div>
<p dir="auto">package.json</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
"name": "react-app-shell",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --mode development"
},
"dependencies": {
"react": "^16.8.4",
"react-dom": "^16.8.4"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
}
}"><pre class="notranslate"><code class="notranslate">{
"name": "react-app-shell",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --mode development"
},
"dependencies": {
"react": "^16.8.4",
"react-dom": "^16.8.4"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
}
}
</code></pre></div>
<p dir="auto">src/index.js</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import React from "react";
import ReactDOM from "react-dom";
import {MyHelloComponent} from 'app-component';
class Welcome extends React.Component {
render() {
return <><h1>Main App</h1><MyHelloComponent/></>;
}
}
ReactDOM.render(<Welcome />, document.getElementById("root"));"><pre class="notranslate"><code class="notranslate">import React from "react";
import ReactDOM from "react-dom";
import {MyHelloComponent} from 'app-component';
class Welcome extends React.Component {
render() {
return <><h1>Main App</h1><MyHelloComponent/></>;
}
}
ReactDOM.render(<Welcome />, document.getElementById("root"));
</code></pre></div>
<p dir="auto">To be able to make it works, you have to do <code class="notranslate">yarn link</code> after (or before) having built it from component and <code class="notranslate">yarn link "app-component"</code> from main app.</p>
<p dir="auto"><strong>What is the expected behavior?</strong><br>
use hooks from external components works obviously.</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><br>
React 16.8.4 and with previous version it doest not work too</p> | <p dir="auto">I want to save a class instance, not just plain object, with <code class="notranslate">useRef</code> hook. And, I dont want to construct it each time hook function is invoked.</p>
<p dir="auto">Is it possible to do that?</p>
<p dir="auto">My thoughts were:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const instanceRef = useRef(() => new Instance())"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">instanceRef</span> <span class="pl-c1">=</span> <span class="pl-en">useRef</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-k">new</span> <span class="pl-v">Instance</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span></pre></div>
<p dir="auto">But <code class="notranslate">useRef</code> does not accept the <em>initial value</em> as a function (<code class="notranslate">useState</code> and <code class="notranslate">useReducer</code> could do that).<br>
Will that change in <em>alpha 3</em>?</p> | 0 |
<h2 dir="auto"><g-emoji class="g-emoji" alias="bug" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f41b.png">🐛</g-emoji> Bug</h2>
<p dir="auto">We have a number of machines with Threadripper CPUs, and 2 NVIDIA GPUs, some have 1070ti cards some 1080 some 1080ti and one with titanXp, they all displayed this behavior, when switching to using data parallel, training would fail, i.e. accuracy would not go up. We first saw this in our code base, but it also happens on the imagnet example from the pytorch examples repo</p>
<h2 dir="auto">To Reproduce</h2>
<p dir="auto">Steps to reproduce the behavior:</p>
<ol dir="auto">
<li>run the imagnet example for the examples repo in pytorch with dataparallel</li>
</ol>
<p dir="auto">these error messages were found in the dmesg log:</p>
<p dir="auto">[1118468.873266] nvidia 0000:0a:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x000f address=0x00000000ea13a000 flags=0x0020]<br>
[1118468.942145] nvidia 0000:0a:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x000f address=0x00000000ea139068 flags=0x0020]<br>
[1118468.942189] nvidia 0000:0a:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x000f address=0x00000000d0000040 flags=0x0020]<br>
[1118468.942227] nvidia 0000:0a:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x000f address=0x00000000d00007c0 flags=0x0020]<br>
[1118468.942265] nvidia 0000:0a:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x000f address=0x00000000d0001040 flags=0x0020]<br>
[1118468.942303] nvidia 0000:0a:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x000f address=0x00000000d0000f40 flags=0x0020]<br>
[1118468.942340] nvidia 0000:0a:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x000f address=0x00000000d00016c0 flags=0x0020]<br>
[1118468.942377] nvidia 0000:0a:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x000f address=0x00000000d0002040 flags=0x0020]<br>
[1118468.942414] nvidia 0000:0a:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x000f address=0x00000000d0001e40 flags=0x0020]<br>
[1118468.942452] nvidia 0000:0a:00.0: AMD-Vi: Event logged [IO_PAGE_FAULT domain=0x000f address=0x00000000d00025c0 flags=0x0020]<br>
[1118468.942489] AMD-Vi: Event logged [IO_PAGE_FAULT device=0a:00.0 domain=0x000f address=0x00000000d0003040 flags=0x0020]<br>
[1118468.942525] AMD-Vi: Event logged [IO_PAGE_FAULT device=0a:00.0 domain=0x000f address=0x00000000d0002d40 flags=0x0020]<br>
[1118468.942560] AMD-Vi: Event logged [IO_PAGE_FAULT device=0a:00.0 domain=0x000f address=0x00000000d00034c0 flags=0x0020]<br>
[1118468.942596] AMD-Vi: Event logged [IO_PAGE_FAULT device=0a:00.0 domain=0x000f address=0x00000000d0004040 flags=0x0020]<br>
[1118468.942632] AMD-Vi: Event logged [IO_PAGE_FAULT device=0a:00.0 domain=0x000f address=0x00000000d0003c40 flags=0x0020]<br>
[1118468.942667] AMD-Vi: Event logged [IO_PAGE_FAULT device=0a:00.0 domain=0x000f address=0x00000000d00043c0 flags=0x0020]<br>
[1118468.942703] AMD-Vi: Event logged [IO_PAGE_FAULT device=0a:00.0 domain=0x000f address=0x00000000d0005040 flags=0x0020]<br>
[1118468.942739] AMD-Vi: Event logged [IO_PAGE_FAULT device=0a:00.0 domain=0x000f address=0x00000000d0004b40 flags=0x0020]<br>
[1118468.942774] AMD-Vi: Event logged [IO_PAGE_FAULT device=0a:00.0 domain=0x000f address=0x00000000d00052c0 flags=0x0020]</p>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">accuracy would not pick up in most cases, it never picked up for the validation set. We managed to work around this problem by turning off IOMMU in the bios.</p>
<h2 dir="auto">Environment</h2>
<p dir="auto">PyTorch version: 0.4.1<br>
Is debug build: No<br>
CUDA used to build PyTorch: 9.0.176</p>
<p dir="auto">OS: Ubuntu 16.04.5 LTS<br>
GCC version: (Ubuntu 5.4.0-6ubuntu1~16.04.10) 5.4.0 20160609<br>
CMake version: version 3.5.1</p>
<p dir="auto">Python version: 2.7<br>
Is CUDA available: Yes<br>
CUDA runtime version: Could not collect<br>
GPU models and configuration:<br>
GPU 0: GeForce GTX 1080 Ti<br>
GPU 1: GeForce GTX 1080 Ti</p>
<p dir="auto">Nvidia driver version: 384.130<br>
cuDNN version: Probably one of the following:<br>
/usr/local/cuda-9.0/targets/x86_64-linux/lib/libcudnn.so.7.0.5<br>
/usr/local/cuda-9.0/targets/x86_64-linux/lib/libcudnn_static.a</p> | <p dir="auto">I'm having trouble getting multi-gpu via <code class="notranslate">DataParallel</code> across two Tesla K80 GPUs. The code I'm using is a modification of the MNIST example:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import torch
import torch.nn as nn
import torch.nn.functional as F
import torch.optim as optim
from torchvision import datasets, transforms
from torch.autograd import Variable
from data_parallel import DataParallel
train_loader = torch.utils.data.DataLoader(
datasets.MNIST('../data', train=True, download=True,
transform=transforms.Compose([
transforms.ToTensor(),
transforms.Normalize((0.1307,), (0.3081,))
])),
batch_size=256, shuffle=True, num_workers=2, pin_memory=True)
class Net(nn.Module):
def __init__(self):
super(Net, self).__init__()
self.conv1 = nn.Conv2d(1, 10, kernel_size=5)
self.conv2 = nn.Conv2d(10, 20, kernel_size=5)
self.fc1 = nn.Linear(320, 50)
self.fc2 = nn.Linear(50, 10)
def forward(self, x):
x = F.relu(F.max_pool2d(self.conv1(x), 2))
x = F.relu(F.max_pool2d(self.conv2(x), 2))
x = x.view(-1, 320)
x = F.relu(self.fc1(x))
x = self.fc2(x)
return F.log_softmax(x)
model = DataParallel(Net())
model.cuda()
optimizer = optim.SGD(model.parameters(), lr=0.01, momentum=0.9)
criterion = nn.NLLLoss().cuda()
model.train()
for batch_idx, (data, target) in enumerate(train_loader):
input_var = Variable(data.cuda())
target_var = Variable(target.cuda())
print('Getting model output')
output = model(input_var)
print('Got model output')
loss = criterion(output, target_var)
optimizer.zero_grad()
loss.backward()
optimizer.step()
print('Finished')"><pre class="notranslate"><code class="notranslate">import torch
import torch.nn as nn
import torch.nn.functional as F
import torch.optim as optim
from torchvision import datasets, transforms
from torch.autograd import Variable
from data_parallel import DataParallel
train_loader = torch.utils.data.DataLoader(
datasets.MNIST('../data', train=True, download=True,
transform=transforms.Compose([
transforms.ToTensor(),
transforms.Normalize((0.1307,), (0.3081,))
])),
batch_size=256, shuffle=True, num_workers=2, pin_memory=True)
class Net(nn.Module):
def __init__(self):
super(Net, self).__init__()
self.conv1 = nn.Conv2d(1, 10, kernel_size=5)
self.conv2 = nn.Conv2d(10, 20, kernel_size=5)
self.fc1 = nn.Linear(320, 50)
self.fc2 = nn.Linear(50, 10)
def forward(self, x):
x = F.relu(F.max_pool2d(self.conv1(x), 2))
x = F.relu(F.max_pool2d(self.conv2(x), 2))
x = x.view(-1, 320)
x = F.relu(self.fc1(x))
x = self.fc2(x)
return F.log_softmax(x)
model = DataParallel(Net())
model.cuda()
optimizer = optim.SGD(model.parameters(), lr=0.01, momentum=0.9)
criterion = nn.NLLLoss().cuda()
model.train()
for batch_idx, (data, target) in enumerate(train_loader):
input_var = Variable(data.cuda())
target_var = Variable(target.cuda())
print('Getting model output')
output = model(input_var)
print('Got model output')
loss = criterion(output, target_var)
optimizer.zero_grad()
loss.backward()
optimizer.step()
print('Finished')
</code></pre></div>
<p dir="auto">This doesn't throw an error, but hangs after it prints "Getting model output" and never returns. I traced this down to the <code class="notranslate">parallel_apply</code> spawning threads that then never finish. The line that hangs is <a href="https://github.com/pytorch/pytorch/blob/e50a1f19b3dc735f0710929b97b0af384aafe09b/torch/nn/parallel/parallel_apply.py#L25">here</a> where the threads are spawned using both GPU 0 and GPU 1, but never finish.</p>
<p dir="auto">This is only a problem when <code class="notranslate">CUDA_VISIBLE_DEVICES=0,1</code> as both GPU0 and GPU1 work perfectly well individually.</p>
<p dir="auto">Before running this, <code class="notranslate">nvidia-smi</code> shows</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="+------------------------------------------------------+
| NVIDIA-SMI 352.68 Driver Version: 352.68 |
|-------------------------------+----------------------+----------------------+
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
|===============================+======================+======================|
| 0 Tesla K80 Off | 0000:06:00.0 Off | 0 |
| N/A 40C P0 57W / 149W | 55MiB / 11519MiB | 0% Default |
+-------------------------------+----------------------+----------------------+
| 1 Tesla K80 Off | 0000:07:00.0 Off | 0 |
| N/A 35C P0 76W / 149W | 55MiB / 11519MiB | 99% Default |
+-------------------------------+----------------------+----------------------+
+-----------------------------------------------------------------------------+
| Processes: GPU Memory |
| GPU PID Type Process name Usage |
|=============================================================================|
| No running processes found |
+-----------------------------------------------------------------------------+"><pre class="notranslate"><code class="notranslate">+------------------------------------------------------+
| NVIDIA-SMI 352.68 Driver Version: 352.68 |
|-------------------------------+----------------------+----------------------+
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
|===============================+======================+======================|
| 0 Tesla K80 Off | 0000:06:00.0 Off | 0 |
| N/A 40C P0 57W / 149W | 55MiB / 11519MiB | 0% Default |
+-------------------------------+----------------------+----------------------+
| 1 Tesla K80 Off | 0000:07:00.0 Off | 0 |
| N/A 35C P0 76W / 149W | 55MiB / 11519MiB | 99% Default |
+-------------------------------+----------------------+----------------------+
+-----------------------------------------------------------------------------+
| Processes: GPU Memory |
| GPU PID Type Process name Usage |
|=============================================================================|
| No running processes found |
+-----------------------------------------------------------------------------+
</code></pre></div>
<p dir="auto">after running (while it hangs), <code class="notranslate">nvidia-smi</code> gives</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="+------------------------------------------------------+
| NVIDIA-SMI 352.68 Driver Version: 352.68 |
|-------------------------------+----------------------+----------------------+
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
|===============================+======================+======================|
| 0 Tesla K80 Off | 0000:06:00.0 Off | 0 |
| N/A 42C P0 69W / 149W | 251MiB / 11519MiB | 99% Default |
+-------------------------------+----------------------+----------------------+
| 1 Tesla K80 Off | 0000:07:00.0 Off | 0 |
| N/A 36C P0 90W / 149W | 249MiB / 11519MiB | 99% Default |
+-------------------------------+----------------------+----------------------+
+-----------------------------------------------------------------------------+
| Processes: GPU Memory |
| GPU PID Type Process name Usage |
|=============================================================================|
| 0 4785 C python 194MiB |
| 1 4785 C python 192MiB |
+-----------------------------------------------------------------------------+"><pre class="notranslate"><code class="notranslate">+------------------------------------------------------+
| NVIDIA-SMI 352.68 Driver Version: 352.68 |
|-------------------------------+----------------------+----------------------+
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
|===============================+======================+======================|
| 0 Tesla K80 Off | 0000:06:00.0 Off | 0 |
| N/A 42C P0 69W / 149W | 251MiB / 11519MiB | 99% Default |
+-------------------------------+----------------------+----------------------+
| 1 Tesla K80 Off | 0000:07:00.0 Off | 0 |
| N/A 36C P0 90W / 149W | 249MiB / 11519MiB | 99% Default |
+-------------------------------+----------------------+----------------------+
+-----------------------------------------------------------------------------+
| Processes: GPU Memory |
| GPU PID Type Process name Usage |
|=============================================================================|
| 0 4785 C python 194MiB |
| 1 4785 C python 192MiB |
+-----------------------------------------------------------------------------+
</code></pre></div>
<p dir="auto">and <code class="notranslate">top</code> shows the main python process and the two python subprocesses. Wondering if this could be something similar to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="202557169" data-permission-text="Title is private" data-url="https://github.com/pytorch/pytorch/issues/554" data-hovercard-type="issue" data-hovercard-url="/pytorch/pytorch/issues/554/hovercard" href="https://github.com/pytorch/pytorch/issues/554">#554</a>.</p>
<p dir="auto">Using <a href="https://github.com/tensorflow/models/blob/master/tutorials/image/cifar10/cifar10_multi_gpu_train.py">this</a> TensorFlow example, I get linear speedup using multiple GPUs as I change <code class="notranslate">CUDA_VISIBLE_DEVICES</code> so multiple K80s should certainly be viable.</p> | 1 |
<p dir="auto">Due to the way MSYS sandboxes file paths, paths passed to <code class="notranslate">cl.exe</code> are expanded into values which are invalid outside of MSYS.</p> | <p dir="auto">I anticipate a lot of "GEE I WONDER WHY I DIDN'T THINK OF THAT" when newcomers come into the channel asking how to make their types hashable, since the hash trait has some weirdo type signature, and the answer is "Derive this other typeclass you've never heard of before."</p>
<p dir="auto">Why can't we just make it be #[deriving(Hash)]? It also makes already-written code more legible.</p> | 0 |
<p dir="auto">Unlike the VS Code installer for Windows, the VS Code uninstaller for Windows is not signed. You can fix this by using the <code class="notranslate">SignTool</code> directive in your Inno Setup script. See <a href="http://www.jrsoftware.org/ishelp/index.php?topic=setup_signtool" rel="nofollow">http://www.jrsoftware.org/ishelp/index.php?topic=setup_signtool</a></p>
<p dir="auto">For dual signing it's easiest to use Inno Setup 5.5.8 instead of 5.5.6 as you currently use: 5.5.8 allows you to have two SignTool directives, one for the sha-1 signing and another for the sha-256 signing.</p> | <p dir="auto">At first, moving lines up and down didn't seem to work at all, but then I found a stranger issue. Notice how line 6 becomes a mix of lines 5 and 7:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/22350/15774263/c4dca018-297b-11e6-807a-319997effbfe.gif"><img src="https://cloud.githubusercontent.com/assets/22350/15774263/c4dca018-297b-11e6-807a-319997effbfe.gif" alt="bug" data-animated-image="" style="max-width: 100%;"></a></p>
<p dir="auto">Here's the buffer, notice the first line is empty, so you can move the lines up.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="
if (this.mergeDecorator) {
this.mergeDecorator.dispose();
this.mergeDecorator = null;
}
if (!this.contextService || !this.gitService) {
return;
}"><pre class="notranslate"><code class="notranslate">
if (this.mergeDecorator) {
this.mergeDecorator.dispose();
this.mergeDecorator = null;
}
if (!this.contextService || !this.gitService) {
return;
}
</code></pre></div>
<p dir="auto">Steps:</p>
<ul dir="auto">
<li>Put cursor right before the first <code class="notranslate">if</code></li>
<li>Duplicate cursor down 5 times</li>
<li>Move lines up</li>
</ul> | 0 |
<p dir="auto">Edit:<br>
Issue has been exported to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="321564727" data-permission-text="Title is private" data-url="https://github.com/vuejs/vue/issues/8156" data-hovercard-type="issue" data-hovercard-url="/vuejs/vue/issues/8156/hovercard" href="https://github.com/vuejs/vue/issues/8156">#8156</a></p>
<p dir="auto">So I deleted content from here so that there is no duplication!</p> | <h3 dir="auto">Version</h3>
<p dir="auto">2.6.11</p>
<h3 dir="auto">Reproduction link</h3>
<p dir="auto"><a href="https://codesandbox.io/s/epic-neumann-m8hqz" rel="nofollow">https://codesandbox.io/s/epic-neumann-m8hqz</a></p>
<h3 dir="auto">Steps to reproduce</h3>
<p dir="auto">Open link</p>
<h3 dir="auto">What is expected?</h3>
<p dir="auto">Should display button under the text</p>
<h3 dir="auto">What is actually happening?</h3>
<p dir="auto">Button is not displayed</p>
<hr>
<p dir="auto">I try to add separate vue component in svg. This component has foreginObject tag as root and contains button, wich was inserted thorought slot in another component. It do not work, I mean button is hidden in browser. However the button exist in DOM, more over has sizes</p>
<p dir="auto">At the same time if forigenObject tag is declared in component with svg it is work. I can see button.<br>
example: <a href="https://codesandbox.io/s/inspiring-mclaren-t1z09" rel="nofollow">https://codesandbox.io/s/inspiring-mclaren-t1z09</a></p>
<p dir="auto">I supose, there is porblem with slot content rendering in foreginObject, when forigenObject is root tag of separate component</p> | 0 |
<p dir="auto">Updated to the latest version of Atom 0.121.0. When opening Atom I am now forced into full screen mode.. Toggling the mode doesn't seem to fix the issue either.</p>
<p dir="auto">Possibly related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="40184034" data-permission-text="Title is private" data-url="https://github.com/atom/atom/issues/3256" data-hovercard-type="issue" data-hovercard-url="/atom/atom/issues/3256/hovercard" href="https://github.com/atom/atom/issues/3256">#3256</a> and <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="40187115" data-permission-text="Title is private" data-url="https://github.com/atom/atom/issues/3257" data-hovercard-type="issue" data-hovercard-url="/atom/atom/issues/3257/hovercard" href="https://github.com/atom/atom/issues/3257">#3257</a>?</p>
<p dir="auto">Attached is a screenshot:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/5354908/3915373/104bd2ba-235e-11e4-8952-3a3b4169b1a6.png"><img src="https://cloud.githubusercontent.com/assets/5354908/3915373/104bd2ba-235e-11e4-8952-3a3b4169b1a6.png" alt="screen shot 2014-08-13 at 7 51 19 pm" style="max-width: 100%;"></a></p> | <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/7317458/3932689/5819bcd0-246f-11e4-8973-451a17f7685f.png"><img src="https://cloud.githubusercontent.com/assets/7317458/3932689/5819bcd0-246f-11e4-8973-451a17f7685f.png" alt="screenshot_49" style="max-width: 100%;"></a></p>
<p dir="auto">stick on the bar at the top - no window around.<br>
fresh install from <a href="http://www.atom.io" rel="nofollow">www.atom.io</a> - version 0.122.0</p> | 1 |
<p dir="auto">In PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="331398278" data-permission-text="Title is private" data-url="https://github.com/pytorch/pytorch/issues/8354" data-hovercard-type="pull_request" data-hovercard-url="/pytorch/pytorch/pull/8354/hovercard" href="https://github.com/pytorch/pytorch/pull/8354">#8354</a> we noted that the autograd engine always clears its final callbacks on execute():</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="auto Engine::execute(const edge_list& roots,
const variable_list& inputs,
bool keep_graph,
bool create_graph,
const edge_list& outputs) -> variable_list {
std::call_once(start_threads_flag, &Engine::start_threads, this);
// NOLINTNEXTLINE(cppcoreguidelines-pro-type-const-cast)
validate_outputs(roots, const_cast<variable_list&>(inputs), [](const std::string& msg) {
return msg;
});
// Callbacks are only valid for the duration of this run and should always be cleared
ClearCallbacks _cb_guard(final_callbacks, post_callbacks_lock);"><pre class="notranslate"><code class="notranslate">auto Engine::execute(const edge_list& roots,
const variable_list& inputs,
bool keep_graph,
bool create_graph,
const edge_list& outputs) -> variable_list {
std::call_once(start_threads_flag, &Engine::start_threads, this);
// NOLINTNEXTLINE(cppcoreguidelines-pro-type-const-cast)
validate_outputs(roots, const_cast<variable_list&>(inputs), [](const std::string& msg) {
return msg;
});
// Callbacks are only valid for the duration of this run and should always be cleared
ClearCallbacks _cb_guard(final_callbacks, post_callbacks_lock);
</code></pre></div>
<p dir="auto">Which suggests that if execute() is called twice during a run of backward() then callbacks already enqueued from the first or outermost run will be destroyed. This is clearly unexpected.</p>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/apaszke/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/apaszke">@apaszke</a> and I think we could address this by associating final callbacks with backwards graphs and calling them as each graph finishes. We may also want to throw an error if a final callback is created outside of a backward graph it can be associated with.</p>
<p dir="auto">Edit: code formatting.</p> | <p dir="auto">Currently, <code class="notranslate">final_callbacks_</code> of an autograd engine is a vector shared by all backward passes on this engine. The autograd engine <a href="https://github.com/pytorch/pytorch/blob/936632b120aafd2d12233c1096d9000fe9554b77/torch/csrc/autograd/engine.cpp#L666">clears</a> final callbacks at the beginning of the backward call. With reentrant backward calls, the final callback enqueued by the original backward call will be cleared by the reentrant ones (learnt from <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/pritamdamania87/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/pritamdamania87">@pritamdamania87</a>). I was a little surprised on this API behavior as I queued a callback but it never fires. Would it be better if we attach these final callbacks to each graph task? For example, we could use a thread local stack to hold the current graph task, and then push and pop accordingly similar to what we did for <code class="notranslate">current_depth</code>. Thoughts?</p>
<p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ezyang/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ezyang">@ezyang</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ssnl/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ssnl">@ssnl</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/albanD/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/albanD">@albanD</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/zou3519/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/zou3519">@zou3519</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/gqchen/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gqchen">@gqchen</a></p> | 1 |
<p dir="auto">Describe what you were doing when the bug occurred:<br>
1.<br>
2.<br>
3.</p>
<hr>
<h2 dir="auto">Please do not remove the text below this line</h2>
<p dir="auto">DevTools version: 4.2.0-a8b8ffb89</p>
<p dir="auto">Call stack: at e (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:154414)<br>
at e (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:154999)<br>
at e (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:154999)<br>
at e (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:154999)<br>
at e (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:154999)<br>
at e (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:154999)<br>
at e (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:154999)<br>
at e (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:154999)<br>
at e (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:154999)<br>
at e (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:154999)</p>
<p dir="auto">Component stack: in dl<br>
in div<br>
in div<br>
in div<br>
in _o<br>
in Unknown<br>
in n<br>
in Unknown<br>
in div<br>
in div<br>
in zi<br>
in Ge<br>
in un<br>
in ba<br>
in Rc</p> | <p dir="auto">PLEASE INCLUDE REPRO INSTRUCTIONS AND EXAMPLE CODE</p>
<p dir="auto">I got this error when I click 'Ranked'.</p>
<hr>
<h2 dir="auto">Please do not remove the text below this line</h2>
<p dir="auto">DevTools version: 4.0.4-3c6a219</p>
<p dir="auto">Call stack: at chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:11:11441<br>
at Map.forEach ()<br>
at commitIndex (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:11:11387)<br>
at e.getRankedChartData (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:11:11920)<br>
at _i (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:56:277123)<br>
at Ha (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:43:55890)<br>
at Xl (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:43:98280)<br>
at Hl (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:43:84255)<br>
at Fl (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:43:81285)<br>
at chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:43:25363</p>
<p dir="auto">Component stack: in _i<br>
in div<br>
in div<br>
in div<br>
in Or<br>
in Unknown<br>
in n<br>
in Unknown<br>
in div<br>
in div<br>
in Ha<br>
in le<br>
in ve<br>
in ko<br>
in Ul</p> | 1 |
<p dir="auto"><a href="http://build.golang.org/log/a9043ae6a94865c40b47c457535a29c01a0f7449" rel="nofollow">http://build.golang.org/log/a9043ae6a94865c40b47c457535a29c01a0f7449</a></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="##### ../misc/cgo/testsanitizers
FATAL: MemorySanitizer can not mmap the shadow memory.
FATAL: Make sure to compile with -fPIE and to link with -pie.
FATAL: Disabling ASLR is known to cause this error.
FATAL: If running under GDB, try 'set disable-randomization off'.
==19420==Process memory map follows:
0x000000000000-0x200000000000
0x7f9c01070000-0x7f9c013c2000
0x7f9c013c2000-0x7f9c01544000 /lib/x86_64-linux-gnu/libc-2.13.so
0x7f9c01544000-0x7f9c01744000 /lib/x86_64-linux-gnu/libc-2.13.so
0x7f9c01744000-0x7f9c01748000 /lib/x86_64-linux-gnu/libc-2.13.so
0x7f9c01748000-0x7f9c01749000 /lib/x86_64-linux-gnu/libc-2.13.so
0x7f9c01749000-0x7f9c0174e000
0x7f9c0174e000-0x7f9c01763000 /lib/x86_64-linux-gnu/libgcc_s.so.1
0x7f9c01763000-0x7f9c01963000 /lib/x86_64-linux-gnu/libgcc_s.so.1
0x7f9c01963000-0x7f9c01964000 /lib/x86_64-linux-gnu/libgcc_s.so.1
0x7f9c01964000-0x7f9c01966000 /lib/x86_64-linux-gnu/libdl-2.13.so
0x7f9c01966000-0x7f9c01b66000 /lib/x86_64-linux-gnu/libdl-2.13.so
0x7f9c01b66000-0x7f9c01b67000 /lib/x86_64-linux-gnu/libdl-2.13.so
0x7f9c01b67000-0x7f9c01b68000 /lib/x86_64-linux-gnu/libdl-2.13.so
0x7f9c01b68000-0x7f9c01be9000 /lib/x86_64-linux-gnu/libm-2.13.so
0x7f9c01be9000-0x7f9c01de8000 /lib/x86_64-linux-gnu/libm-2.13.so
0x7f9c01de8000-0x7f9c01de9000 /lib/x86_64-linux-gnu/libm-2.13.so
0x7f9c01de9000-0x7f9c01dea000 /lib/x86_64-linux-gnu/libm-2.13.so
0x7f9c01dea000-0x7f9c01df1000 /lib/x86_64-linux-gnu/librt-2.13.so
0x7f9c01df1000-0x7f9c01ff0000 /lib/x86_64-linux-gnu/librt-2.13.so
0x7f9c01ff0000-0x7f9c01ff1000 /lib/x86_64-linux-gnu/librt-2.13.so
0x7f9c01ff1000-0x7f9c01ff2000 /lib/x86_64-linux-gnu/librt-2.13.so
0x7f9c01ff2000-0x7f9c02009000 /lib/x86_64-linux-gnu/libpthread-2.13.so
0x7f9c02009000-0x7f9c02208000 /lib/x86_64-linux-gnu/libpthread-2.13.so
0x7f9c02208000-0x7f9c02209000 /lib/x86_64-linux-gnu/libpthread-2.13.so
0x7f9c02209000-0x7f9c0220a000 /lib/x86_64-linux-gnu/libpthread-2.13.so
0x7f9c0220a000-0x7f9c0220e000
0x7f9c0220e000-0x7f9c0222e000 /lib/x86_64-linux-gnu/ld-2.13.so
0x7f9c0241e000-0x7f9c02427000
0x7f9c02428000-0x7f9c0242d000
0x7f9c0242d000-0x7f9c0242e000 /lib/x86_64-linux-gnu/ld-2.13.so
0x7f9c0242e000-0x7f9c0242f000 /lib/x86_64-linux-gnu/ld-2.13.so
0x7f9c0242f000-0x7f9c02430000
0x7f9c02430000-0x7f9c02741000 /tmp/go-build686805548/command-line-arguments/_obj/exe/msan
0x7f9c02941000-0x7f9c0294a000 /tmp/go-build686805548/command-line-arguments/_obj/exe/msan
0x7f9c0294a000-0x7f9c04da9000
0x7fff05fb0000-0x7fff05fd1000 [stack]
0x7fff05ffc000-0x7fff05ffe000 [vdso]
0x7fff05ffe000-0x7fff06000000 [vvar]
0xffffffffff600000-0xffffffffff601000 [vsyscall]
==19420==End of process memory map."><pre class="notranslate"><code class="notranslate">##### ../misc/cgo/testsanitizers
FATAL: MemorySanitizer can not mmap the shadow memory.
FATAL: Make sure to compile with -fPIE and to link with -pie.
FATAL: Disabling ASLR is known to cause this error.
FATAL: If running under GDB, try 'set disable-randomization off'.
==19420==Process memory map follows:
0x000000000000-0x200000000000
0x7f9c01070000-0x7f9c013c2000
0x7f9c013c2000-0x7f9c01544000 /lib/x86_64-linux-gnu/libc-2.13.so
0x7f9c01544000-0x7f9c01744000 /lib/x86_64-linux-gnu/libc-2.13.so
0x7f9c01744000-0x7f9c01748000 /lib/x86_64-linux-gnu/libc-2.13.so
0x7f9c01748000-0x7f9c01749000 /lib/x86_64-linux-gnu/libc-2.13.so
0x7f9c01749000-0x7f9c0174e000
0x7f9c0174e000-0x7f9c01763000 /lib/x86_64-linux-gnu/libgcc_s.so.1
0x7f9c01763000-0x7f9c01963000 /lib/x86_64-linux-gnu/libgcc_s.so.1
0x7f9c01963000-0x7f9c01964000 /lib/x86_64-linux-gnu/libgcc_s.so.1
0x7f9c01964000-0x7f9c01966000 /lib/x86_64-linux-gnu/libdl-2.13.so
0x7f9c01966000-0x7f9c01b66000 /lib/x86_64-linux-gnu/libdl-2.13.so
0x7f9c01b66000-0x7f9c01b67000 /lib/x86_64-linux-gnu/libdl-2.13.so
0x7f9c01b67000-0x7f9c01b68000 /lib/x86_64-linux-gnu/libdl-2.13.so
0x7f9c01b68000-0x7f9c01be9000 /lib/x86_64-linux-gnu/libm-2.13.so
0x7f9c01be9000-0x7f9c01de8000 /lib/x86_64-linux-gnu/libm-2.13.so
0x7f9c01de8000-0x7f9c01de9000 /lib/x86_64-linux-gnu/libm-2.13.so
0x7f9c01de9000-0x7f9c01dea000 /lib/x86_64-linux-gnu/libm-2.13.so
0x7f9c01dea000-0x7f9c01df1000 /lib/x86_64-linux-gnu/librt-2.13.so
0x7f9c01df1000-0x7f9c01ff0000 /lib/x86_64-linux-gnu/librt-2.13.so
0x7f9c01ff0000-0x7f9c01ff1000 /lib/x86_64-linux-gnu/librt-2.13.so
0x7f9c01ff1000-0x7f9c01ff2000 /lib/x86_64-linux-gnu/librt-2.13.so
0x7f9c01ff2000-0x7f9c02009000 /lib/x86_64-linux-gnu/libpthread-2.13.so
0x7f9c02009000-0x7f9c02208000 /lib/x86_64-linux-gnu/libpthread-2.13.so
0x7f9c02208000-0x7f9c02209000 /lib/x86_64-linux-gnu/libpthread-2.13.so
0x7f9c02209000-0x7f9c0220a000 /lib/x86_64-linux-gnu/libpthread-2.13.so
0x7f9c0220a000-0x7f9c0220e000
0x7f9c0220e000-0x7f9c0222e000 /lib/x86_64-linux-gnu/ld-2.13.so
0x7f9c0241e000-0x7f9c02427000
0x7f9c02428000-0x7f9c0242d000
0x7f9c0242d000-0x7f9c0242e000 /lib/x86_64-linux-gnu/ld-2.13.so
0x7f9c0242e000-0x7f9c0242f000 /lib/x86_64-linux-gnu/ld-2.13.so
0x7f9c0242f000-0x7f9c02430000
0x7f9c02430000-0x7f9c02741000 /tmp/go-build686805548/command-line-arguments/_obj/exe/msan
0x7f9c02941000-0x7f9c0294a000 /tmp/go-build686805548/command-line-arguments/_obj/exe/msan
0x7f9c0294a000-0x7f9c04da9000
0x7fff05fb0000-0x7fff05fd1000 [stack]
0x7fff05ffc000-0x7fff05ffe000 [vdso]
0x7fff05ffe000-0x7fff06000000 [vvar]
0xffffffffff600000-0xffffffffff601000 [vsyscall]
==19420==End of process memory map.
</code></pre></div>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ianlancetaylor/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ianlancetaylor">@ianlancetaylor</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/bradfitz/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/bradfitz">@bradfitz</a></p> | <pre class="notranslate">What steps will reproduce the problem?
Try to tokenize valid HTML where CDATA section contains 'tags'
What is the expected output?
No tokenization inside CDATA section is done.
See
<a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/tokenization.html#cdata-section-state" rel="nofollow">http://www.whatwg.org/specs/web-apps/current-work/multipage/tokenization.html#cdata-section-state</a>
What do you see instead?
html.Tokenizer will report <x> from "<![CDATA[ <x> ]]>"
Which compiler are you using (5g, 6g, 8g, gccgo)?
8g
Which operating system are you using?
Windows 7
Which revision are you using? (hg identify)
gowin32_2011-03-07.1 (unsure which hg revision really)
Please provide any additional information below.
This bug is related to 1661 where javascript code gets missparsed.
<a href="https://golang.org/issue/1661" rel="nofollow">issue #1661</a> would vanish for javascript which is properly enclosed
in a CDATA section if this bug would be solved.
Simple bug-triggering demo attached</pre>
<p dir="auto">Attachments:</p>
<ol dir="auto">
<li><a href="https://storage.googleapis.com/go-attachment/1751/0/bug.go" rel="nofollow">bug.go</a> (415 bytes)</li>
</ol> | 0 |
<p dir="auto">The workbench on visual studio online on Azure has a nice power-shell terminal to let user work with their workplace in cloud. Other mature IDE products also have term window in their workbench. That way, user can interactively exec some command without switch between desktop and vscode window.</p> | <p dir="auto">It would be great if vscode has integrated terminal feature refer vim or atom <a href="https://atom.io/packages/term3" rel="nofollow">https://atom.io/packages/term3</a></p>
<p dir="auto">I saw this suggestion pending in uservoice(<a href="https://visualstudio.uservoice.com/forums/293070-visual-studio-code/suggestions/7752357-integrated-terminal" rel="nofollow">https://visualstudio.uservoice.com/forums/293070-visual-studio-code/suggestions/7752357-integrated-terminal</a>) and repost here since it has specific repo</p> | 1 |
<h4 dir="auto">Problem description: ".resample" documentation too vague</h4>
<p dir="auto">url: <a href="http://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.resample.html" rel="nofollow">http://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.resample.html</a></p>
<p dir="auto">e.g.:</p>
<p dir="auto"><strong>rule:</strong> "The offset string or object representing target conversion"</p>
<p dir="auto">No idea what is meant by that but a more helpful description to amateurs like me seems to be e.g.:<br>
'a frequency or valid rule for re-sampling an inputted time-series object. Expressed as a string. '</p>
<p dir="auto">Where is the documentation on 'how'? Or is it deprecated. If so, why is it there?</p>
<p dir="auto">There are 13 parameters with only 9 descriptions.</p>
<p dir="auto">Lastly, I think that if documentation is structured, a better suited layout is in the form of tables with clear headers but I suppose the documentation is too far in for anyone to be motivated to change it!</p>
<p dir="auto">Best</p>
<p dir="auto">Ed</p> | <p dir="auto">Reference docs (see: <a href="http://pandas.pydata.org/pandas-docs/stable/generated/pandas.Series.resample.html" rel="nofollow">http://pandas.pydata.org/pandas-docs/stable/generated/pandas.Series.resample.html</a>):</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Add to docs the list of options that can be passed to <code class="notranslate">fill_method</code>. Some of which are <code class="notranslate">pad</code>, <code class="notranslate">bfill</code>, <code class="notranslate">ffill</code>.<br>
-- The list seems to be documented for the <code class="notranslate">method</code> on <code class="notranslate">fillna</code>: <a href="http://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.fillna.html#pandas.DataFrame.fillna" rel="nofollow">http://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.fillna.html#pandas.DataFrame.fillna</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> The <code class="notranslate">convention</code> parameter is not well documented. It is unclear what the values of <code class="notranslate">end</code> or <code class="notranslate">start</code> means (and the associated aliases). (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="208272187" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/15432" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/15432/hovercard" href="https://github.com/pandas-dev/pandas/issues/15432">#15432</a> is dupe), PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="243202766" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/16965" data-hovercard-type="pull_request" data-hovercard-url="/pandas-dev/pandas/pull/16965/hovercard" href="https://github.com/pandas-dev/pandas/pull/16965">#16965</a></li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> The <code class="notranslate">kind</code> parameters is also unclear. The best I could get from it was a infinite stack recursion: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="20220091" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/5026" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/5026/hovercard" href="https://github.com/pandas-dev/pandas/issues/5026">#5026</a>. (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="286106062" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/19084" data-hovercard-type="pull_request" data-hovercard-url="/pandas-dev/pandas/pull/19084/hovercard" href="https://github.com/pandas-dev/pandas/pull/19084">#19084</a>)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">how</code> can also be a function or list of functions, not only a string</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> for the <code class="notranslate">closed</code> and <code class="notranslate">label</code> keywords, I think it could be explained which are default in which cases (which is not always the same). In every case, that <code class="notranslate">label='right'</code> is default as stated in the docs (<a href="http://pandas.pydata.org/pandas-docs/dev/timeseries.html#up-and-downsampling" rel="nofollow">http://pandas.pydata.org/pandas-docs/dev/timeseries.html#up-and-downsampling</a>) is not true.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> A list of all available methods for <code class="notranslate">how</code></li>
</ul>
<p dir="auto">Tutorial docs:</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> example using custom <code class="notranslate">how</code> function</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> example showing how to use <code class="notranslate">base</code></li>
</ul> | 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/zeit/next.js/issues?q=is%3Aissue">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h2 dir="auto">Expected Behavior</h2>
<p dir="auto">There is a search page with infinite height(lazy load paging) for scrolling.When i clicked an item of search results on this page, i go to search detail page.That's ok for now.Then i want to go back the search page, i 've expected that the search page has rendered and after that set the past scroll position whose selected item on search results has.</p>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">But my last scroll position of search page has been kept but it set scroll before rendering search page.This causes that the search page flickers.Actually this flicker is more explicit on mobile than on web.</p>
<h2 dir="auto">Your Environment</h2>
<table role="table">
<thead>
<tr>
<th>Tech</th>
<th>Version</th>
</tr>
</thead>
<tbody>
<tr>
<td>next</td>
<td>5.0.1</td>
</tr>
<tr>
<td>node</td>
<td>8</td>
</tr>
<tr>
<td>OS</td>
<td>IOS</td>
</tr>
<tr>
<td>browser</td>
<td>Safari</td>
</tr>
</tbody>
</table> | <p dir="auto">Getting this when I try to reference a separate project (<code class="notranslate">repo/b/components/layout.js</code>):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ModuleParseError: Module parse failed: /path/to/repo/a/node_modules/react-hot-loader/webpack.js!/path/to/repo/b/components/layout.js Unexpected token (65:17)
You may need an appropriate loader to handle this file type.
| return <div></div>
..."><pre class="notranslate"><code class="notranslate">ModuleParseError: Module parse failed: /path/to/repo/a/node_modules/react-hot-loader/webpack.js!/path/to/repo/b/components/layout.js Unexpected token (65:17)
You may need an appropriate loader to handle this file type.
| return <div></div>
...
</code></pre></div>
<p dir="auto">The paths are like:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/repo/a
/repo/a/pages/page1.js
/repo/b
/repo/b/components/layout.js"><pre class="notranslate"><code class="notranslate">/repo/a
/repo/a/pages/page1.js
/repo/b
/repo/b/components/layout.js
</code></pre></div>
<p dir="auto">And in page1.js it is doing this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import Layout from '../../b/components/layout'"><pre class="notranslate"><code class="notranslate">import Layout from '../../b/components/layout'
</code></pre></div>
<p dir="auto">The next server is running from within repo a:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="cd repo/a
npm run dev # which is this:
babel-node --presets=es2015,stage-0 --plugins=transform-react-jsx,styled-jsx/babel server.js"><pre class="notranslate"><code class="notranslate">cd repo/a
npm run dev # which is this:
babel-node --presets=es2015,stage-0 --plugins=transform-react-jsx,styled-jsx/babel server.js
</code></pre></div>
<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 related are <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="221428310" data-permission-text="Title is private" data-url="https://github.com/vercel/next.js/issues/1706" data-hovercard-type="issue" data-hovercard-url="/vercel/next.js/issues/1706/hovercard" href="https://github.com/vercel/next.js/issues/1706">#1706</a> and <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="261800404" data-permission-text="Title is private" data-url="https://github.com/vercel/next.js/issues/3018" data-hovercard-type="issue" data-hovercard-url="/vercel/next.js/issues/3018/hovercard" href="https://github.com/vercel/next.js/issues/3018">#3018</a>.</li>
</ul>
<h2 dir="auto">Expected Behavior</h2>
<p dir="auto">Expected behavior is that I can load this JSX module from a separate repo outside of the main project.</p>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">Current behavior is that I can't abstract out code into a separate repo if it has JSX in it.</p>
<h2 dir="auto">Context</h2>
<p dir="auto">I can't refactor code into a shared lib.</p>
<h2 dir="auto">Your Environment</h2>
<table role="table">
<thead>
<tr>
<th>Tech</th>
<th>Version</th>
</tr>
</thead>
<tbody>
<tr>
<td>next</td>
<td>4beta2</td>
</tr>
<tr>
<td>node</td>
<td>8.4</td>
</tr>
</tbody>
</table> | 0 |
<p dir="auto">I tried to produce a stand-alone example but couldn't so far. Maybe the answer is already apparent though. This started happening just recently (maybe after updated pandas to 0.17.1) but worked well before. I'm doing a multi-column <code class="notranslate">agg</code> in a groupby. One of the columns is a datetime of which I want the first element:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="(Pdb) t.groupby(['block_dir']).first()
dt sid amount price symbol \
block_dir
1 2003-01-02 15:56:00+00:00 21719 -62 0.963811 AIRN "><pre class="notranslate"><code class="notranslate">(Pdb) t.groupby(['block_dir']).first()
dt sid amount price symbol \
block_dir
1 2003-01-02 15:56:00+00:00 21719 -62 0.963811 AIRN
</code></pre></div>
<p dir="auto">Works fine, however:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" order_sign block_time
block_dir
1 False 0
(Pdb) t.groupby(['block_dir']).agg({'dt': 'first'})
dt
block_dir
1 1041522960000000000"><pre class="notranslate"><code class="notranslate"> order_sign block_time
block_dir
1 False 0
(Pdb) t.groupby(['block_dir']).agg({'dt': 'first'})
dt
block_dir
1 1041522960000000000
</code></pre></div>
<h4 dir="auto">Expected Output</h4>
<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: 2.7.11.final.0
python-bits: 64
OS: Linux
OS-release: 3.13.0-77-generic
machine: x86_64
processor: x86_64
byteorder: little
LC_ALL: en_US.UTF-8
LANG: en_US.UTF-8
pandas: 0.17.1
nose: 1.3.7
pip: 8.0.2
setuptools: 19.6.2
Cython: 0.23.4
numpy: 1.10.4
scipy: 0.16.1
statsmodels: 0.6.1
IPython: 3.2.1
sphinx: 1.3.1
patsy: 0.4.0
dateutil: 2.4.2
pytz: 2015.4
blosc: None
bottleneck: 1.0.0
tables: 3.2.2
numexpr: 2.4.3
matplotlib: 1.4.3
openpyxl: None
xlrd: None
xlwt: None
xlsxwriter: None
lxml: None
bs4: 4.3.2
html5lib: None
httplib2: None
apiclient: None
sqlalchemy: 1.0.8
pymysql: None
psycopg2: 2.6.1 (dt dec pq3 ext)
Jinja2: None"><pre class="notranslate"><code class="notranslate">INSTALLED VERSIONS
------------------
commit: None
python: 2.7.11.final.0
python-bits: 64
OS: Linux
OS-release: 3.13.0-77-generic
machine: x86_64
processor: x86_64
byteorder: little
LC_ALL: en_US.UTF-8
LANG: en_US.UTF-8
pandas: 0.17.1
nose: 1.3.7
pip: 8.0.2
setuptools: 19.6.2
Cython: 0.23.4
numpy: 1.10.4
scipy: 0.16.1
statsmodels: 0.6.1
IPython: 3.2.1
sphinx: 1.3.1
patsy: 0.4.0
dateutil: 2.4.2
pytz: 2015.4
blosc: None
bottleneck: 1.0.0
tables: 3.2.2
numexpr: 2.4.3
matplotlib: 1.4.3
openpyxl: None
xlrd: None
xlwt: None
xlsxwriter: None
lxml: None
bs4: 4.3.2
html5lib: None
httplib2: None
apiclient: None
sqlalchemy: 1.0.8
pymysql: None
psycopg2: 2.6.1 (dt dec pq3 ext)
Jinja2: None
</code></pre></div> | <p dir="auto">Hi all,</p>
<p dir="auto">I've found an inconsistency between pandas 0.17 and 0.16.2 when aggregating on UTC timestamps. Here is a snippet to reproduce the problem:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy as np
import pandas as pd
np.random.seed(42)
data = pd.DataFrame({
'factor': np.random.randint(0, 3, size=60),
'time': pd.date_range('01/01/2000 00:00', periods=60, freq='s', tz='UTC')
})
gp = data.groupby('factor')
print(gp['time'].min())
print(gp['time'].max())"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-k">import</span> <span class="pl-s1">pandas</span> <span class="pl-k">as</span> <span class="pl-s1">pd</span>
<span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">seed</span>(<span class="pl-c1">42</span>)
<span class="pl-s1">data</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>({
<span class="pl-s">'factor'</span>: <span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">randint</span>(<span class="pl-c1">0</span>, <span class="pl-c1">3</span>, <span class="pl-s1">size</span><span class="pl-c1">=</span><span class="pl-c1">60</span>),
<span class="pl-s">'time'</span>: <span class="pl-s1">pd</span>.<span class="pl-en">date_range</span>(<span class="pl-s">'01/01/2000 00:00'</span>, <span class="pl-s1">periods</span><span class="pl-c1">=</span><span class="pl-c1">60</span>, <span class="pl-s1">freq</span><span class="pl-c1">=</span><span class="pl-s">'s'</span>, <span class="pl-s1">tz</span><span class="pl-c1">=</span><span class="pl-s">'UTC'</span>)
})
<span class="pl-s1">gp</span> <span class="pl-c1">=</span> <span class="pl-s1">data</span>.<span class="pl-en">groupby</span>(<span class="pl-s">'factor'</span>)
<span class="pl-en">print</span>(<span class="pl-s1">gp</span>[<span class="pl-s">'time'</span>].<span class="pl-en">min</span>())
<span class="pl-en">print</span>(<span class="pl-s1">gp</span>[<span class="pl-s">'time'</span>].<span class="pl-en">max</span>())</pre></div>
<p dir="auto">On 0.16.2 the output seems correct, i.e it returns timestamps:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [1]: %run bug_pandas.py
factor
0 2000-01-01 00:00:01+00:00
1 2000-01-01 00:00:07+00:00
2 2000-01-01 00:00:00+00:00
Name: time, dtype: object
factor
0 2000-01-01 00:00:57+00:00
1 2000-01-01 00:00:54+00:00
2 2000-01-01 00:00:59+00:00
Name: time, dtype: object"><pre class="notranslate"><code class="notranslate">In [1]: %run bug_pandas.py
factor
0 2000-01-01 00:00:01+00:00
1 2000-01-01 00:00:07+00:00
2 2000-01-01 00:00:00+00:00
Name: time, dtype: object
factor
0 2000-01-01 00:00:57+00:00
1 2000-01-01 00:00:54+00:00
2 2000-01-01 00:00:59+00:00
Name: time, dtype: object
</code></pre></div>
<p dir="auto">However on 0.17 it returns timestamps as integers:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [1]: %run bug_pandas.py
factor
0 946684801000000000
1 946684807000000000
2 946684800000000000
Name: time, dtype: int64
factor
0 946684857000000000
1 946684854000000000
2 946684859000000000
Name: time, dtype: int64"><pre class="notranslate"><code class="notranslate">In [1]: %run bug_pandas.py
factor
0 946684801000000000
1 946684807000000000
2 946684800000000000
Name: time, dtype: int64
factor
0 946684857000000000
1 946684854000000000
2 946684859000000000
Name: time, dtype: int64
</code></pre></div>
<p dir="auto">It should be noted that the problem doesn't appear with <code class="notranslate">tz=None</code>.</p>
<p dir="auto">Thanks for your help,</p>
<p dir="auto">Alexandre</p> | 1 |
<h4 dir="auto">Description</h4>
<p dir="auto">Clustering with MiniBatchKMeans produces indexing error.</p>
<p dir="auto">I have a crontab doing some clustering every hour. This error manifests around 4-5 times in a day. I assume the kmeans initialization is stochastic?</p>
<p dir="auto">Unfortunately right now I can't find a dataset for reproducing because the error happens stochastically on a dataset that is changing every hour. If I manage to find a reproducible dataset I will attach it to the issue.</p>
<h4 dir="auto">Steps/Code to Reproduce</h4>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from sklearn.cluster import MiniBatchKMeans
clusterobj = MiniBatchKMeans(n_clusters=1000)
clusterobj.fit(datconcat)"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">sklearn</span>.<span class="pl-s1">cluster</span> <span class="pl-k">import</span> <span class="pl-v">MiniBatchKMeans</span>
<span class="pl-s1">clusterobj</span> <span class="pl-c1">=</span> <span class="pl-v">MiniBatchKMeans</span>(<span class="pl-s1">n_clusters</span><span class="pl-c1">=</span><span class="pl-c1">1000</span>)
<span class="pl-s1">clusterobj</span>.<span class="pl-en">fit</span>(<span class="pl-s1">datconcat</span>)</pre></div>
<h4 dir="auto">Expected Results</h4>
<p dir="auto">No error</p>
<h4 dir="auto">Actual Results</h4>
<div class="highlight highlight-text-python-traceback notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Traceback (most recent call last):
File "metricdata.py", line 160, in cluster
clusterobj.fit(datconcat)
File "/shared/sdoerr/Software/anaconda3/lib/python3.5/site-packages/sklearn/cluster/k_means_.py", line 1382, in fit
init_size=init_size)
File "/shared/sdoerr/Software/anaconda3/lib/python3.5/site-packages/sklearn/cluster/k_means_.py", line 683, in _init_centroids
x_squared_norms=x_squared_norms)
File "/shared/sdoerr/Software/anaconda3/lib/python3.5/site-packages/sklearn/cluster/k_means_.py", line 113, in _k_init
X[candidate_ids], X, Y_norm_squared=x_squared_norms, squared=True)
IndexError: index 2772 is out of bounds for axis 0 with size 2772"><pre class="notranslate">Traceback (most recent call last):
File <span class="pl-s">"metricdata.py"</span>, line <span class="pl-c1">160</span>, in <span class="pl-en">cluster</span>
clusterobj.fit(datconcat)
File <span class="pl-s">"/shared/sdoerr/Software/anaconda3/lib/python3.5/site-packages/sklearn/cluster/k_means_.py"</span>, line <span class="pl-c1">1382</span>, in <span class="pl-en">fit</span>
init_size<span class="pl-k">=</span>init_size)
File <span class="pl-s">"/shared/sdoerr/Software/anaconda3/lib/python3.5/site-packages/sklearn/cluster/k_means_.py"</span>, line <span class="pl-c1">683</span>, in <span class="pl-en">_init_centroids</span>
x_squared_norms<span class="pl-k">=</span>x_squared_norms)
File <span class="pl-s">"/shared/sdoerr/Software/anaconda3/lib/python3.5/site-packages/sklearn/cluster/k_means_.py"</span>, line <span class="pl-c1">113</span>, in <span class="pl-en">_k_init</span>
X[candidate_ids], X, Y_norm_squared<span class="pl-k">=</span>x_squared_norms, squared<span class="pl-k">=</span><span class="pl-c1">True</span>)
<span class="pl-en">IndexError</span>: <span class="pl-s">index 2772 is out of bounds for axis 0 with size 2772</span></pre></div>
<h4 dir="auto">Versions</h4>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Linux-3.10.0-327.13.1.el7.x86_64-x86_64-with-centos-7.2.1511-Core
Python 3.5.2 |Anaconda custom (64-bit)| (default, Jul 2 2016, 17:53:06)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-1)]
NumPy 1.11.2
SciPy 0.18.1
Scikit-Learn 0.18"><pre class="notranslate"><code class="notranslate">Linux-3.10.0-327.13.1.el7.x86_64-x86_64-with-centos-7.2.1511-Core
Python 3.5.2 |Anaconda custom (64-bit)| (default, Jul 2 2016, 17:53:06)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-1)]
NumPy 1.11.2
SciPy 0.18.1
Scikit-Learn 0.18
</code></pre></div> | <h4 dir="auto">Description</h4>
<p dir="auto">Fitting a (20242848, 5) numpy array using any more than 4 clusters results in IndexError</p>
<h4 dir="auto">Steps/Code to Reproduce</h4>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from sklearn.cluster import KMeans
src = gdal.Open(fname)
img = src.ReadAsArray()
X = img.transpose(1,2,0).reshape(-1, img.shape[0])
print X.shape"><pre class="notranslate"><code class="notranslate">from sklearn.cluster import KMeans
src = gdal.Open(fname)
img = src.ReadAsArray()
X = img.transpose(1,2,0).reshape(-1, img.shape[0])
print X.shape
</code></pre></div>
<p dir="auto">(20242848, 5)</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="k_means = KMeans(n_clusters=4, n_jobs=-1, random_state=10)
k_means.fit(X)
labels = k_means.labels_
print labels.shape"><pre class="notranslate"><code class="notranslate">k_means = KMeans(n_clusters=4, n_jobs=-1, random_state=10)
k_means.fit(X)
labels = k_means.labels_
print labels.shape
</code></pre></div>
<p dir="auto">(20242848,)</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="k_means = KMeans(n_clusters=5, n_jobs=-1, random_state=10)
k_means.fit(X)
labels = k_means.labels_
print labels.shape"><pre class="notranslate"><code class="notranslate">k_means = KMeans(n_clusters=5, n_jobs=-1, random_state=10)
k_means.fit(X)
labels = k_means.labels_
print labels.shape
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="---------------------------------------------------------------------------
JoblibIndexError Traceback (most recent call last)
<ipython-input-22-379757258e42> in <module>()
1 k_means = KMeans(n_clusters=5, n_jobs=-1, random_state=10)
----> 2 k_means.fit(X)
3 labels = k_means.labels_
4
5 print labels.shape
[SHORTENED]
IndexError: index 20242848 is out of bounds for axis 0 with size 20242848
___________________________________________________________________________"><pre class="notranslate"><code class="notranslate">---------------------------------------------------------------------------
JoblibIndexError Traceback (most recent call last)
<ipython-input-22-379757258e42> in <module>()
1 k_means = KMeans(n_clusters=5, n_jobs=-1, random_state=10)
----> 2 k_means.fit(X)
3 labels = k_means.labels_
4
5 print labels.shape
[SHORTENED]
IndexError: index 20242848 is out of bounds for axis 0 with size 20242848
___________________________________________________________________________
</code></pre></div>
<h4 dir="auto">Expected Results</h4>
<p dir="auto">(20242848, )</p>
<h4 dir="auto">Actual Results</h4>
<h4 dir="auto">Versions</h4>
<p dir="auto">Windows-7-6.1.7601-SP1<br>
('Python', '2.7.11 |Anaconda 4.0.0 (64-bit)| (default, Feb 16 2016, 09:58:36) [MSC v.1500 64 bit (AMD64)]')<br>
('NumPy', '1.11.2')<br>
('SciPy', '0.18.1')<br>
('Scikit-Learn', '0.18')</p> | 1 |
<p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/scipy/ticket/1705" rel="nofollow">http://projects.scipy.org/scipy/ticket/1705</a> on 2012-07-20 by trac user ale.fener, assigned to unknown.</em></p>
<p dir="auto">Hi all.<br>
I was using the class gaussian_kde with a similar code snippet:</p>
<p dir="auto">density = gaussian_kde(data)<br>
xs = numpy.linspace(xmin, xmax, 2*len(data))<br>
ys = density(xs)</p>
<p dir="auto">the problem is that when data is an array of integers (dunno if it was a numpy array of ints or a python array of ints) then the array ys contains only zeros. There must be a division by an integer somewhere. Converting data to an array of floats solves the problem, but it took me quite some time to understand what was going on.</p> | <p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/scipy/ticket/1181" rel="nofollow">http://projects.scipy.org/scipy/ticket/1181</a> on 2010-05-28 by trac user jakebiesinger, assigned to unknown.</em></p>
<p dir="auto">Creating a gaussian_kde with integer data causes the evaluate function to return all 0's.</p>
<p dir="auto"><strong>Some info</strong>:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ python --version
Python 2.6.5
$ ipython --Version
0.10
In [13]: scipy.__version__
Out[13]: '0.7.2'"><pre class="notranslate"><code class="notranslate">$ python --version
Python 2.6.5
$ ipython --Version
0.10
In [13]: scipy.__version__
Out[13]: '0.7.2'
</code></pre></div>
<p dir="auto"><strong>Repro</strong>:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ ipython
In [1]: from scipy.stats import gaussian_kde
In [2]: import scipy
In [3]: randDistFromCenter = map(int, scipy.rand(10000) * 500 - 250) # should be uniform on [-250,250)
In [4]: k = gaussian_kde(randDistFromCenter)
/usr/lib/python2.6/dist-packages/scipy/stats/stats.py:1486: DeprecationWarning: scipy.stats.cov is deprecated; please update your code to use numpy.cov.
Please note that:
- numpy.cov rowvar argument defaults to true, not false
- numpy.cov bias argument defaults to false, not true
""", DeprecationWarning)
/usr/lib/python2.6/dist-packages/scipy/stats/stats.py:420: DeprecationWarning: scipy.stats.mean is deprecated; please update your code to use numpy.mean.
Please note that:
- numpy.mean axis argument defaults to None, not 0
- numpy.mean has a ddof argument to replace bias in a more general manner.
scipy.stats.mean(a, bias=True) can be replaced by numpy.mean(x,
axis=0, ddof=1).
axis=0, ddof=1).""", DeprecationWarning)
In [5]: x = scipy.linspace(-300,300,100)
In [6]: y = k.evaluate(x)
In [7]: y
Out[7]:
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, 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])
# the bandwidth/covariance is calculated correctly
In [8]: k.covariance
Out[8]: array([[ 523.56767608]])"><pre class="notranslate"><code class="notranslate">$ ipython
In [1]: from scipy.stats import gaussian_kde
In [2]: import scipy
In [3]: randDistFromCenter = map(int, scipy.rand(10000) * 500 - 250) # should be uniform on [-250,250)
In [4]: k = gaussian_kde(randDistFromCenter)
/usr/lib/python2.6/dist-packages/scipy/stats/stats.py:1486: DeprecationWarning: scipy.stats.cov is deprecated; please update your code to use numpy.cov.
Please note that:
- numpy.cov rowvar argument defaults to true, not false
- numpy.cov bias argument defaults to false, not true
""", DeprecationWarning)
/usr/lib/python2.6/dist-packages/scipy/stats/stats.py:420: DeprecationWarning: scipy.stats.mean is deprecated; please update your code to use numpy.mean.
Please note that:
- numpy.mean axis argument defaults to None, not 0
- numpy.mean has a ddof argument to replace bias in a more general manner.
scipy.stats.mean(a, bias=True) can be replaced by numpy.mean(x,
axis=0, ddof=1).
axis=0, ddof=1).""", DeprecationWarning)
In [5]: x = scipy.linspace(-300,300,100)
In [6]: y = k.evaluate(x)
In [7]: y
Out[7]:
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, 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])
# the bandwidth/covariance is calculated correctly
In [8]: k.covariance
Out[8]: array([[ 523.56767608]])
</code></pre></div>
<p dir="auto"><strong>Workaround:</strong> Convert the datatype to floats</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="k = gaussian_kde(scipy.array(randDistFromCenter, float))
y = k.evaluate(x)
[ 2.37718449e-05 4.59333855e-05 8.33629081e-05 1.42283310e-04
2.28733649e-04 3.46958715e-04 4.97636815e-04 6.76566775e-04
8.74448533e-04 1.07809127e-03 1.27285862e-03 1.44565290e-03
1.58750741e-03 1.69501260e-03 1.77025571e-03 1.81947393e-03
...."><pre class="notranslate"><code class="notranslate">k = gaussian_kde(scipy.array(randDistFromCenter, float))
y = k.evaluate(x)
[ 2.37718449e-05 4.59333855e-05 8.33629081e-05 1.42283310e-04
2.28733649e-04 3.46958715e-04 4.97636815e-04 6.76566775e-04
8.74448533e-04 1.07809127e-03 1.27285862e-03 1.44565290e-03
1.58750741e-03 1.69501260e-03 1.77025571e-03 1.81947393e-03
....
</code></pre></div> | 1 |
<p dir="auto">Pulling <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="345798181" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/28356" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/28356/hovercard?comment_id=409297092&comment_type=issue_comment" href="https://github.com/JuliaLang/julia/issues/28356#issuecomment-409297092">#28356 (comment)</a> out to a new issue since this second example doesn't seem to be exactly the same as the previous fix. In this case, a code which compiles a function call in the global scope is okay, but when the same function call is compiled in a local scope then compilation hangs. Using a recent nightly with the fix for <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="345798181" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/28356" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/28356/hovercard" href="https://github.com/JuliaLang/julia/issues/28356">#28356</a></p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" _ _ _(_)_ | A fresh approach to technical computing
(_) | (_) (_) | Documentation: https://docs.julialang.org
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 0.7.0-rc1.18 (2018-08-02 13:13 UTC)
_/ |\__'_|_|_|\__'_| | Commit 34b0dd097f (0 days old master)
|__/ | x86_64-w64-mingw32"><pre class="notranslate"> _ _ <span class="pl-c1">_</span>(_)_ <span class="pl-k">|</span> A fresh approach to technical computing
(_) <span class="pl-k">|</span> (_) (_) <span class="pl-k">|</span> Documentation<span class="pl-k">:</span> https<span class="pl-k">:</span><span class="pl-k">//</span>docs<span class="pl-k">.</span>julialang<span class="pl-k">.</span>org
_ _ _<span class="pl-k">|</span> <span class="pl-k">|</span>_ __ _ <span class="pl-k">|</span> Type <span class="pl-s"><span class="pl-pds">"</span>?<span class="pl-pds">"</span></span> <span class="pl-k">for</span> help, <span class="pl-s"><span class="pl-pds">"</span>]?<span class="pl-pds">"</span></span> <span class="pl-k">for</span> Pkg help.
<span class="pl-k">|</span> <span class="pl-k">|</span> <span class="pl-k">|</span> <span class="pl-k">|</span> <span class="pl-k">|</span> <span class="pl-k">|</span> <span class="pl-k">|</span><span class="pl-k">/</span> <span class="pl-s"><span class="pl-pds"><span class="pl-c1">_</span>`</span> | |</span>
<span class="pl-s"> | | |_| | | | (_| | | Version 0.7.0-rc1.18 (2018-08-02 13:13 UTC)</span>
<span class="pl-s"> _/ |<span class="pl-cce">\_</span>_'_|_|_|<span class="pl-cce">\_</span>_'_| | Commit 34b0dd097f (0 days old master)</span>
<span class="pl-s">|__/ | x86_64-w64-mingw32</span></pre></div>
<p dir="auto">I run the code:</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="using DiffEqBiological, StochasticDiffEq
model = @reaction_network rn begin
(d,1000), X ↔ 0
end d
i = 1.0
prob = SDEProblem(model,[1000.0+i],(0.,200.),[i])
sol = solve(prob, EM(), dt = 0.01)
for i in [1., 2., 3., 4., 5.]
prob = SDEProblem(model,[1000.0+i],(0.,200.),[i])
sol = solve(prob, EM(), dt = 0.01)
end"><pre class="notranslate"><span class="pl-k">using</span> DiffEqBiological, StochasticDiffEq
model <span class="pl-k">=</span> <span class="pl-c1">@reaction_network</span> rn <span class="pl-k">begin</span>
(d,<span class="pl-c1">1000</span>), X ↔ <span class="pl-c1">0</span>
<span class="pl-k">end</span> d
i <span class="pl-k">=</span> <span class="pl-c1">1.0</span>
prob <span class="pl-k">=</span> <span class="pl-c1">SDEProblem</span>(model,[<span class="pl-c1">1000.0</span><span class="pl-k">+</span>i],(<span class="pl-c1">0.</span>,<span class="pl-c1">200.</span>),[i])
sol <span class="pl-k">=</span> <span class="pl-c1">solve</span>(prob, <span class="pl-c1">EM</span>(), dt <span class="pl-k">=</span> <span class="pl-c1">0.01</span>)
<span class="pl-k">for</span> i <span class="pl-k">in</span> [<span class="pl-c1">1.</span>, <span class="pl-c1">2.</span>, <span class="pl-c1">3.</span>, <span class="pl-c1">4.</span>, <span class="pl-c1">5.</span>]
prob <span class="pl-k">=</span> <span class="pl-c1">SDEProblem</span>(model,[<span class="pl-c1">1000.0</span><span class="pl-k">+</span>i],(<span class="pl-c1">0.</span>,<span class="pl-c1">200.</span>),[i])
sol <span class="pl-k">=</span> <span class="pl-c1">solve</span>(prob, <span class="pl-c1">EM</span>(), dt <span class="pl-k">=</span> <span class="pl-c1">0.01</span>)
<span class="pl-k">end</span></pre></div>
<p dir="auto">and it's just fine. However, when I do not allow it to compile the <code class="notranslate">solve</code> call in the global scope first, it hangs at compilation.</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="using DiffEqBiological, StochasticDiffEq
model = @reaction_network rn begin
(d,1000), X ↔ 0
end d
for i in [1., 2., 3., 4., 5.]
prob = SDEProblem(model,[1000.0+i],(0.,200.),[i])
sol = solve(prob, EM(), dt = 0.01)
end"><pre class="notranslate"><span class="pl-k">using</span> DiffEqBiological, StochasticDiffEq
model <span class="pl-k">=</span> <span class="pl-c1">@reaction_network</span> rn <span class="pl-k">begin</span>
(d,<span class="pl-c1">1000</span>), X ↔ <span class="pl-c1">0</span>
<span class="pl-k">end</span> d
<span class="pl-k">for</span> i <span class="pl-k">in</span> [<span class="pl-c1">1.</span>, <span class="pl-c1">2.</span>, <span class="pl-c1">3.</span>, <span class="pl-c1">4.</span>, <span class="pl-c1">5.</span>]
prob <span class="pl-k">=</span> <span class="pl-c1">SDEProblem</span>(model,[<span class="pl-c1">1000.0</span><span class="pl-k">+</span>i],(<span class="pl-c1">0.</span>,<span class="pl-c1">200.</span>),[i])
sol <span class="pl-k">=</span> <span class="pl-c1">solve</span>(prob, <span class="pl-c1">EM</span>(), dt <span class="pl-k">=</span> <span class="pl-c1">0.01</span>)
<span class="pl-k">end</span></pre></div>
<p dir="auto">Given my working knowledge of the Julia compiler, both <code class="notranslate">solve</code> calls are compiling the same thing so <g-emoji class="g-emoji" alias="man_shrugging" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f937-2642.png">🤷♂️</g-emoji> I don't get it.</p>
<p dir="auto">Note that the example from <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="345798181" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/28356" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/28356/hovercard" href="https://github.com/JuliaLang/julia/issues/28356">#28356</a> displayed some of this behavior too, since the original example only ran into the issue when the <code class="notranslate">function integrator(...)</code> was involved. If you refactor it so that way it does the same commands in the REPL, then even before the <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="345798181" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/28356" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/28356/hovercard" href="https://github.com/JuliaLang/julia/issues/28356">#28356</a> fix there was no issue. Given <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/JeffBezanson/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/JeffBezanson">@JeffBezanson</a> 's comments about how the hang was due to inference generating unions, my guess is that somehow a difference in inference could be involved, but I'm of course not the expert on this so that could be totally wrong.</p> | <p dir="auto">How the heck does anyone get anything done in Julia 0.6.2 on 64-bit linux (ubuntu 16.04). It takes 22 seconds to load the plotting package <code class="notranslate">Gadfly</code> ??? It's not precompilation time, since it happens even after the package has been precompiled once. If I restart Julia, I <em>still</em> have to wait, sometimes even <em>longer</em> the second time.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# julia
_
_ _ _(_)_ | A fresh approach to technical computing
(_) | (_) (_) | Documentation: https://docs.julialang.org
_ _ _| |_ __ _ | Type "?help" for help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 0.6.2 (2017-12-13 18:08 UTC)
_/ |\__'_|_|_|\__'_| | Official http://julialang.org/ release
|__/ | x86_64-pc-linux-gnu
julia> tic(); using Gadfly; toc()
elapsed time: 22.640510854 seconds
22.640510854
julia> [ctl-D to exit]
# julia
_
_ _ _(_)_ | A fresh approach to technical computing
(_) | (_) (_) | Documentation: https://docs.julialang.org
_ _ _| |_ __ _ | Type "?help" for help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 0.6.2 (2017-12-13 18:08 UTC)
_/ |\__'_|_|_|\__'_| | Official http://julialang.org/ release
|__/ | x86_64-pc-linux-gnu
julia> tic(); using Gadfly; toc()
elapsed time: 28.402201721 seconds
28.402201721
julia> "><pre class="notranslate"><code class="notranslate"># julia
_
_ _ _(_)_ | A fresh approach to technical computing
(_) | (_) (_) | Documentation: https://docs.julialang.org
_ _ _| |_ __ _ | Type "?help" for help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 0.6.2 (2017-12-13 18:08 UTC)
_/ |\__'_|_|_|\__'_| | Official http://julialang.org/ release
|__/ | x86_64-pc-linux-gnu
julia> tic(); using Gadfly; toc()
elapsed time: 22.640510854 seconds
22.640510854
julia> [ctl-D to exit]
# julia
_
_ _ _(_)_ | A fresh approach to technical computing
(_) | (_) (_) | Documentation: https://docs.julialang.org
_ _ _| |_ __ _ | Type "?help" for help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 0.6.2 (2017-12-13 18:08 UTC)
_/ |\__'_|_|_|\__'_| | Official http://julialang.org/ release
|__/ | x86_64-pc-linux-gnu
julia> tic(); using Gadfly; toc()
elapsed time: 28.402201721 seconds
28.402201721
julia>
</code></pre></div> | 0 |
<p dir="auto">Sorry if this is a duplicate, but I didn't find anything...</p>
<p dir="auto">Why does:<br>
<code class="notranslate">ax.xaxis.set_ticks_position('right')</code> set<code class="notranslate">horizontalignment = 'left'</code> for the tick labels?</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="fig,ax=plt.subplots()
ax.plot(np.arange(-10,10))
ax.yaxis.set_ticks_position('right')"><pre class="notranslate"><code class="notranslate">fig,ax=plt.subplots()
ax.plot(np.arange(-10,10))
ax.yaxis.set_ticks_position('right')
</code></pre></div>
<p dir="auto">I'm not clear on why the ticks should change their horizontal alignment based on what side of the axis they are displayed on. I can <em>imagine</em> a technical difficulty in guessing how large the label is before it is drawn. Is this a layout manager issue?</p>
<p dir="auto">Most importantly for me, it makes colorbars look poor if they have negative values, and require a manual twiddle to make look good.</p> | <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import matplotlib.pyplot as plt
import matplotlib.axes as maxes
fig = plt.figure()
ax = maxes.Axes(fig, [0.1, 0.1, 0.9, 0.9])
print(fig.get_children())"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">pyplot</span> <span class="pl-k">as</span> <span class="pl-s1">plt</span>
<span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">axes</span> <span class="pl-k">as</span> <span class="pl-s1">maxes</span>
<span class="pl-s1">fig</span> <span class="pl-c1">=</span> <span class="pl-s1">plt</span>.<span class="pl-en">figure</span>()
<span class="pl-s1">ax</span> <span class="pl-c1">=</span> <span class="pl-s1">maxes</span>.<span class="pl-v">Axes</span>(<span class="pl-s1">fig</span>, [<span class="pl-c1">0.1</span>, <span class="pl-c1">0.1</span>, <span class="pl-c1">0.9</span>, <span class="pl-c1">0.9</span>])
<span class="pl-en">print</span>(<span class="pl-s1">fig</span>.<span class="pl-en">get_children</span>())</pre></div>
<p dir="auto">returns a list with no axes....</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[<matplotlib.patches.Rectangle object at 0x7f8d75707dc0>]"><pre class="notranslate"><code class="notranslate">[<matplotlib.patches.Rectangle object at 0x7f8d75707dc0>]
</code></pre></div>
<p dir="auto">For 3-d</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import matplotlib.pyplot as plt
import matplotlib.axes as maxes
from mpl_toolkits.mplot3d import Axes3D
fig = plt.figure()
ax = Axes3D(fig)
print(fig.get_children())"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">pyplot</span> <span class="pl-k">as</span> <span class="pl-s1">plt</span>
<span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">axes</span> <span class="pl-k">as</span> <span class="pl-s1">maxes</span>
<span class="pl-k">from</span> <span class="pl-s1">mpl_toolkits</span>.<span class="pl-s1">mplot3d</span> <span class="pl-k">import</span> <span class="pl-v">Axes3D</span>
<span class="pl-s1">fig</span> <span class="pl-c1">=</span> <span class="pl-s1">plt</span>.<span class="pl-en">figure</span>()
<span class="pl-s1">ax</span> <span class="pl-c1">=</span> <span class="pl-v">Axes3D</span>(<span class="pl-s1">fig</span>)
<span class="pl-en">print</span>(<span class="pl-s1">fig</span>.<span class="pl-en">get_children</span>())</pre></div>
<p dir="auto">has the axes attached:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[<matplotlib.patches.Rectangle object at 0x7fbc2968d160>, <mpl_toolkits.mplot3d.axes3d.Axes3D object at 0x7fbc2968df40>]"><pre class="notranslate"><code class="notranslate">[<matplotlib.patches.Rectangle object at 0x7fbc2968d160>, <mpl_toolkits.mplot3d.axes3d.Axes3D object at 0x7fbc2968df40>]
</code></pre></div>
<p dir="auto"><code class="notranslate">Axes3D.__init__</code> explicitly adds itself to its parent:</p>
<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/matplotlib/matplotlib/blob/c035f66d657b9211bc7f986c24c430e9e7314a6c/lib/mpl_toolkits/mplot3d/axes3d.py#L139">matplotlib/lib/mpl_toolkits/mplot3d/axes3d.py</a>
</p>
<p class="mb-0 color-fg-muted">
Line 139
in
<a data-pjax="true" class="commit-tease-sha" href="/matplotlib/matplotlib/commit/c035f66d657b9211bc7f986c24c430e9e7314a6c">c035f66</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="L139" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="139"></td>
<td id="LC139" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-s1">self</span>.<span class="pl-s1">figure</span>.<span class="pl-en">add_axes</span>(<span class="pl-s1">self</span>) </td>
</tr>
</tbody></table>
</div>
</div>
<p></p>
<p dir="auto">whereas no such thing happens for the base <code class="notranslate">Axes</code> class.</p>
<p dir="auto">Discovered as part of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="685869676" data-permission-text="Title is private" data-url="https://github.com/matplotlib/matplotlib/issues/18356" data-hovercard-type="pull_request" data-hovercard-url="/matplotlib/matplotlib/pull/18356/hovercard" href="https://github.com/matplotlib/matplotlib/pull/18356">#18356</a>, but discussing here because its orthogonal. But I think the behaviour here should be the same .</p> | 0 |
<h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: [19041.330]
PowerToys version: v0.19.0
PowerToy module for which you are reporting the bug (if applicable): PowerToys Run"><pre class="notranslate"><code class="notranslate">Windows build number: [19041.330]
PowerToys version: v0.19.0
PowerToy module for which you are reporting the bug (if applicable): PowerToys Run
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<p dir="auto">Altering the shortcut of PowerToys Run to ‘Win’ key + letter key will cause shortcut conflicts.<br>
If you change the shortcut to 'Win+R' and trigger it, the 'Start' will pop up sometimes.<br>
When you press the key quickly, the probability of this situation is very high.</p> | <h1 dir="auto">Summary of the new feature/enhancement</h1>
<p dir="auto">Although the intention of the shortcut guide is pretty great, I feel that the experience of forcing an overlay that covers the entire screen is quite jarring. This comes off as a very obstructive way of finding the shortcuts. I believe that the entire point of keyboard shortcuts is to get the searching out of the way.</p>
<h1 dir="auto">Proposed (not-so) technical implementation details</h1>
<p dir="auto">I propose a fork that can implement and polish just the shortcut guide to make it unobtrusive and seamless.<br>
This could also make it a stand-alone utility. (Although this is purely out of selfish reasons, I don't use any other PowerToys, but a standalone Keyboard Shortcut Guide that doesn't force me to search through an entire list of shortcuts would make my life a lot easier.)</p>
<p dir="auto">I still don't know how this could be done, but one of the ideas is to limit the number of shortcuts that are prompted.<br>
Other ideas include, allowing the users to position where they want the guide, or a tiny search box that pops up on long press of the windows key and you can text search for what you want to do and it filters out the shortcuts.<br>
Eventually you wouldn't need the guide because you'll end up remembering the shortcuts, but it'll still be around to help if you ever need it.</p>
<h1 dir="auto">What I need:</h1>
<p dir="auto">I would love to build this utility, I would really appreciate it if someone who knows how this could be accomplished helps me to build it. [ Read newbie programmer looking for a guide (pun-intended) on open-source things and PowerToys architecture. ]</p> | 0 |
<p dir="auto">IN MICROSOFT FORUM PEOPLE COLABORATE WITH SOLUTIONS IN ALL KIND OF WAYS</p>
<p dir="auto">IN GOOGLE ... "GURUS" CLOSE ISSUE FIRST - DRINK COFFE AND PLAY GAMES AT HOME</p>
<p dir="auto">GOOD LUCK ALPHABET !</p> | <p dir="auto">by <strong>Matthew.Ickstadt</strong>:</p>
<pre class="notranslate">I noticed a TODO in time.go which was still present in 1afdecdd77c1:
type Time struct {
// sec gives the number of seconds elapsed since
// January 1, year 1 00:00:00 UTC.
sec int64
// nsec specifies a non-negative nanosecond
// offset within the second named by Seconds.
// It must be in the range [0, 999999999].
//
// It is declared as uintptr instead of int32 or uint32
// to avoid garbage collector aliasing in the case where
// on a 64-bit system the int32 or uint32 field is written
// over the low half of a pointer, creating another pointer.
==> // TODO(rsc): When the garbage collector is completely
==> // precise, change back to int32.
==> nsec uintptr
// loc specifies the Location that should be used to
// determine the minute, hour, month, day, and year
// that correspond to this Time.
// Only the zero Time has a nil Location.
// In that case it is interpreted to mean UTC.
loc *Location
}
Now that the GC completely precise, I'm assuming this minor change can be made.</pre> | 0 |
<h3 dir="auto">Problem description</h3>
<p dir="auto"><em>SelectField</em> fullWidth makes the dropdown wider than the field.<br>
Dropdown works fine without fullWidth.<br>
There may also be an issue with alignment, given how it looks in the docs?</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/9392041/24867462/ee2f1614-1e15-11e7-8a6c-7ef7cc99b43f.png"><img src="https://cloud.githubusercontent.com/assets/9392041/24867462/ee2f1614-1e15-11e7-8a6c-7ef7cc99b43f.png" alt="screen shot 2017-04-10 at 17 45 34" style="max-width: 100%;"></a></p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/9392041/24905784/ca572706-1ebd-11e7-8e1e-4d28ee1f0270.png"><img src="https://cloud.githubusercontent.com/assets/9392041/24905784/ca572706-1ebd-11e7-8e1e-4d28ee1f0270.png" alt="screen shot 2017-04-11 at 13 49 54" style="max-width: 100%;"></a></p>
<h3 dir="auto">Link to minimal working code that reproduces the issue</h3>
<p dir="auto"><a href="https://www.webpackbin.com/bins/-KhR28JSn7eYpZwq3e3" rel="nofollow">https://www.webpackbin.com/bins/-KhR28JSn7eYpZwq3e3</a>_ (note that I couldn't get the Sandbox to update)</p>
<h3 dir="auto">Versions</h3>
<ul dir="auto">
<li>Material-UI: 0.17.2</li>
<li>React: 15.4.0</li>
<li>Browser: Chrome 57.0.2987.133 (64-bit)</li>
</ul> | <h1 dir="auto">Problem Description</h1>
<ol dir="auto">
<li>Create a Select Field explicitly specifying a width using autoWidth={true} with some MenuItem children</li>
<li>Open the drop down menu, the width of items more than select.</li>
</ol>
<h1 dir="auto">Versions</h1>
<p dir="auto">material-ui - 0.14.4<br>
react 0.14.3</p>
<p dir="auto">Select<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/5664043/14411474/051a59ee-ff52-11e5-8296-c480e03f481f.png"><img src="https://cloud.githubusercontent.com/assets/5664043/14411474/051a59ee-ff52-11e5-8296-c480e03f481f.png" alt="fjabxjf" style="max-width: 100%;"></a><br>
Opened select<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/5664043/14411476/13a610de-ff52-11e5-94b5-c03600be4e5a.png"><img src="https://cloud.githubusercontent.com/assets/5664043/14411476/13a610de-ff52-11e5-94b5-c03600be4e5a.png" alt="vaykpun" style="max-width: 100%;"></a></p> | 1 |
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" 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">The ListItemText component should change colour when an override is applied</p>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">Currently in order to override it I have to disable typography; is there any way to apply the color whilst maintaining the typography? I tried adding a Typography component as an element of the ListItemText but this doesn't work.</p>
<h2 dir="auto">Steps to Reproduce (for bugs)</h2>
<p dir="auto">See codesandbox here:</p>
<p dir="auto"><a href="https://codesandbox.io/s/2plyrzlvkp" rel="nofollow">https://codesandbox.io/s/2plyrzlvkp</a></p>
<p dir="auto">If you navigate to the demo.js you'll see the relevant code.</p>
<h2 dir="auto">Context</h2>
<p dir="auto">If you look at the codepen, the third item has the color red applied, but the typography is lost due to typography being disabled. Another option is providing another MuiThemeProvider that is specific to that, but that seems less than ideal; I thought the purpose of overrides was to get around that issue?</p>
<p dir="auto">The reason this presents itself as an issue is when using the dark theme (set to light at present in the codesandbox), the ListItemText uses white for the font color, but since the background is also white you end up being unable to see the text.</p>
<h2 dir="auto">Your Environment</h2>
<p dir="auto">It's all in the sandbox, using material ui next.</p> | <p dir="auto">I have a List that must be tightly packed. When I apply <code class="notranslate">dense</code> to it, it works great and displays just as I want. However, when I add it seems to ignore the <code class="notranslate">dense</code> setting.</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>
<p dir="auto">I found this: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="206623482" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/6098" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/6098/hovercard" href="https://github.com/mui/material-ui/issues/6098">#6098</a> but its a general observation and I am its not clear if this is a bug that will get fixed, or this is just how things work.</p>
<p dir="auto">If its a bug, great, I'll wait for a fix. If it's not a bug, I would love a recommendation on how I can force the list to work as I was hoping.</p>
<h2 dir="auto">Expected Behavior</h2>
<p dir="auto">That the row height would stay consistence no matter the controls used inside</p>
<h2 dir="auto">Steps to Reproduce (for bugs)</h2>
<p dir="auto">Here is a code sandbox that demos it;<br>
<a href="https://codesandbox.io/s/5kvvz6qw64" rel="nofollow">https://codesandbox.io/s/5kvvz6qw64</a></p>
<h2 dir="auto">Context</h2>
<p dir="auto">I have a list I need to be make selections in, but needs to take up much less room.</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>"material-ui": "^1.0.0-beta.21",</td>
</tr>
<tr>
<td>React</td>
<td>"react": "^16.1.0"</td>
</tr>
<tr>
<td>browser</td>
<td>Chrome 62.0.3202.94</td>
</tr>
</tbody>
</table> | 0 |
<p dir="auto">Duplicate of : <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398702542" data-permission-text="Title is private" data-url="https://github.com/facebook/react/issues/14583" data-hovercard-type="issue" data-hovercard-url="/facebook/react/issues/14583/hovercard" href="https://github.com/facebook/react/issues/14583">#14583</a></p>
<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>
Issue loading the js chunk files on IE11 (only). With the latest version of react 16.7.0 our app (which uses Suspense and Lazy) doesn't load all the needed js chunks. You need to navigate around the app to request other js chunks and eventually the app is fully loaded.</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. 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></p>
<p dir="auto">We have a routes.js file with all the routes of the app. It looks like this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="const Organisation = lazy(() => import('./pages/Organisation'));
const Services = lazy(() => import('./pages/Services'));
// all the other dynamic imports go here
// ...
const Page404 = lazy(() => import('./pages/Page404'));
export default (
<ErrorBoundary>
<Suspense fallback={<span />}>
<Switch>
<Redirect exact from="/" to="/organisation" />
<Route path="/organisation" component={Organisation} />
<Route path="/services" component={Services} />
<!-- All the other routes -->
<Route path="*" component={Page404} />
</Switch>
</Suspense>
</ErrorBoundary>
);"><pre class="notranslate"><code class="notranslate">const Organisation = lazy(() => import('./pages/Organisation'));
const Services = lazy(() => import('./pages/Services'));
// all the other dynamic imports go here
// ...
const Page404 = lazy(() => import('./pages/Page404'));
export default (
<ErrorBoundary>
<Suspense fallback={<span />}>
<Switch>
<Redirect exact from="/" to="/organisation" />
<Route path="/organisation" component={Organisation} />
<Route path="/services" component={Services} />
<!-- All the other routes -->
<Route path="*" component={Page404} />
</Switch>
</Suspense>
</ErrorBoundary>
);
</code></pre></div>
<p dir="auto">The route "/" is redirected to "/organisation" which returns the "Organisation" component. However, the Organisation component is not rendered, the chunk hasn't been requested on demand. If we navigate to "/services" the services chunk is requested on demand and loaded well. Then, if we go back to "/organisation" all is fine.</p>
<p dir="auto">There are no shown errors at all.</p>
<p dir="auto"><strong>What is the expected behavior?</strong><br>
The js chunks are requested on demand loaded and the components are rendered when we initially load the app.</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">This worked in all previous version of React that we tried since Lazy and Suspense was released in 16.3.0</p>
<p dir="auto">React version: 16.7.0<br>
OS: Win7<br>
Browser: IE11</p> | <p dir="auto"><strong>Do you want to request a <em>feature</em> or report a <em>bug</em>?</strong><br>
feature(maybe more like a discussion)</p>
<p dir="auto"><strong>What is the current behavior?</strong><br>
Assume that we have one custom hook:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="/* Typing with TS */
// to make this example reasonable,
// assuming that `fetchUser` and `fetchOrders` fetch data from different backends.
function useOrders(): Order[] {
const [orders, setOrders] = useState<Order[]>([]);
useEffect(() => {
fetchUser().then(user =>
fetchOrders(user).then(theOrders => setOrders(theOrders)),
);
}, []);
return orders;
}"><pre class="notranslate"><span class="pl-c">/* Typing with TS */</span>
<span class="pl-c">// to make this example reasonable,</span>
<span class="pl-c">// assuming that `fetchUser` and `fetchOrders` fetch data from different backends. </span>
<span class="pl-k">function</span> <span class="pl-en">useOrders</span><span class="pl-kos">(</span><span class="pl-kos">)</span>: <span class="pl-smi">Order</span><span class="pl-kos">[</span><span class="pl-kos">]</span> <span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-kos">[</span><span class="pl-s1">orders</span><span class="pl-kos">,</span> <span class="pl-s1">setOrders</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-en">useState</span><span class="pl-kos"><</span><span class="pl-smi">Order</span><span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">></span><span class="pl-kos">(</span><span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">useEffect</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-en">fetchUser</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-s1">user</span> <span class="pl-c1">=></span>
<span class="pl-en">fetchOrders</span><span class="pl-kos">(</span><span class="pl-s1">user</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-s1">theOrders</span> <span class="pl-c1">=></span> <span class="pl-en">setOrders</span><span class="pl-kos">(</span><span class="pl-s1">theOrders</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">return</span> <span class="pl-s1">orders</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">It works perfectly, but in other parts of application, I also need to fetch the <code class="notranslate">user</code> data, so I think I should split <code class="notranslate">useOrders</code> into two custom hooks to make the process of fetching user reusable:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="/* Typing with TS */
// before the backend responsing, the returned user is `null`
function useUser(): User | null {
const [user, setUser] = useState<User | null>(null);
useEffect(() => {
fetchUser().then(theUser => setUser(theUser));
}, []);
return user;
}
function useOrders(user: User): Order[] {
const [orders, setOrders] = useState<Order[]>([]);
useEffect(() => {
fetchOrders(user).then(theOrders => setOrders(theOrders));
}, [user]);
return orders;
}"><pre class="notranslate"><span class="pl-c">/* Typing with TS */</span>
<span class="pl-c">// before the backend responsing, the returned user is `null`</span>
<span class="pl-k">function</span> <span class="pl-en">useUser</span><span class="pl-kos">(</span><span class="pl-kos">)</span>: <span class="pl-smi">User</span> <span class="pl-c1">|</span> <span class="pl-c1">null</span> <span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-kos">[</span><span class="pl-s1">user</span><span class="pl-kos">,</span> <span class="pl-s1">setUser</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-en">useState</span><span class="pl-kos"><</span><span class="pl-smi">User</span> <span class="pl-c1">|</span> <span class="pl-c1">null</span><span class="pl-kos">></span><span class="pl-kos">(</span><span class="pl-c1">null</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">useEffect</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-en">fetchUser</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-s1">theUser</span> <span class="pl-c1">=></span> <span class="pl-en">setUser</span><span class="pl-kos">(</span><span class="pl-s1">theUser</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">return</span> <span class="pl-s1">user</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">function</span> <span class="pl-en">useOrders</span><span class="pl-kos">(</span><span class="pl-s1">user</span>: <span class="pl-smi">User</span><span class="pl-kos">)</span>: <span class="pl-smi">Order</span><span class="pl-kos">[</span><span class="pl-kos">]</span> <span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-kos">[</span><span class="pl-s1">orders</span><span class="pl-kos">,</span> <span class="pl-s1">setOrders</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-en">useState</span><span class="pl-kos"><</span><span class="pl-smi">Order</span><span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">></span><span class="pl-kos">(</span><span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">useEffect</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-en">fetchOrders</span><span class="pl-kos">(</span><span class="pl-s1">user</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-s1">theOrders</span> <span class="pl-c1">=></span> <span class="pl-en">setOrders</span><span class="pl-kos">(</span><span class="pl-s1">theOrders</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-s1">user</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">return</span> <span class="pl-s1">orders</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">But the two custom hooks can not work together properly:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function SomeComponent() {
const user = useUser();
// when user data is still fetching, the user will be null,
// so the next line will throw error(typing and runtime)
const orders = useOrders(user);
}"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-smi">SomeComponent</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">user</span> <span class="pl-c1">=</span> <span class="pl-en">useUser</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">// when user data is still fetching, the user will be null,</span>
<span class="pl-c">// so the next line will throw error(typing and runtime)</span>
<span class="pl-k">const</span> <span class="pl-s1">orders</span> <span class="pl-c1">=</span> <span class="pl-en">useOrders</span><span class="pl-kos">(</span><span class="pl-s1">user</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">Maybe I can determin whether the <code class="notranslate">user</code> is <code class="notranslate">null</code> inside <code class="notranslate">useOrders</code>, but it is hard to explain the meaning of <code class="notranslate">useOrders(null)</code>. Why should <code class="notranslate">useOrders</code> accepts <code class="notranslate">null</code>?</p>
<p dir="auto">So my solution is to wrap the component:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function SomeComponent({ user }: { user: User }) {
const orders = useOrders(user);
}
function Wrapper() {
const user = useUser();
if (user === null) {
return null;
}
return <SomeComponent user={user} />;
}
export default Wrapper;"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-smi">SomeComponent</span><span class="pl-kos">(</span><span class="pl-kos">{</span> user <span class="pl-kos">}</span>: <span class="pl-kos">{</span> <span class="pl-c1">user</span>: <span class="pl-smi">User</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">orders</span> <span class="pl-c1">=</span> <span class="pl-en">useOrders</span><span class="pl-kos">(</span><span class="pl-s1">user</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">function</span> <span class="pl-smi">Wrapper</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">user</span> <span class="pl-c1">=</span> <span class="pl-en">useUser</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">user</span> <span class="pl-c1">===</span> <span class="pl-c1">null</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">return</span> <span class="pl-c1">null</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-smi">SomeComponent</span><span class="pl-kos"></span> <span class="pl-s1">user</span><span class="pl-c1">=</span><span class="pl-kos">{</span>user<span class="pl-kos">}</span> <span class="pl-c1">/</span><span class="pl-c1">></span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">export</span> <span class="pl-k">default</span> <span class="pl-smi">Wrapper</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">I often fell into this hell when I tried to refactor existing code.</p>
<hr>
<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. 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></p>
<p dir="auto"><strong>What is the expected behavior?</strong><br>
I don't know, maybe a discussion is needed.</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><br>
React >= 16.8.0<br>
any supported browsers</p> | 0 |
<p dir="auto">If you can provide contextmanger for sns.set_theme ,it will be very convenient for contrel axes theme.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/33288114/111090474-cbf83100-856a-11eb-80cd-cce2341c3603.png"><img src="https://user-images.githubusercontent.com/33288114/111090474-cbf83100-856a-11eb-80cd-cce2341c3603.png" alt="image" style="max-width: 100%;"></a></p> | <p dir="auto">It is not convenient for to set theme for local axes.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/33288114/111060687-c30b4f00-84d9-11eb-9c89-f709983b29d4.png"><img src="https://user-images.githubusercontent.com/33288114/111060687-c30b4f00-84d9-11eb-9c89-f709983b29d4.png" alt="image" style="max-width: 100%;"></a></p> | 1 |
<h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: 10.0.18363.836
PowerToys version: 0.18.1
PowerToy module for which you are reporting the bug (if applicable): Settings"><pre class="notranslate"><code class="notranslate">Windows build number: 10.0.18363.836
PowerToys version: 0.18.1
PowerToy module for which you are reporting the bug (if applicable): Settings
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<p dir="auto">Install as Admin<br>
Log on as Admin and configure (including run at startup)<br>
Log off<br>
Log on as Standard User<br>
Launch Settings</p>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">Standard User can configure Settings, settings dialogue has headings and text the same as Admin (minus Admin features)</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">Settings dialogue is lacking all text for Standard User. As it loads there is a brief flash of the text that should be there, but by the time the user can click on any thing, the text is gone and the dialogue had nothing visible to click on (see screenshot)</p>
<h1 dir="auto">Screenshots</h1>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/45431447/82735759-ee8b3600-9d1b-11ea-9af0-476be94efd51.jpg"><img src="https://user-images.githubusercontent.com/45431447/82735759-ee8b3600-9d1b-11ea-9af0-476be94efd51.jpg" alt="PowerToys 0 18 1 Standard User settings dialogue" style="max-width: 100%;"></a></p> | <h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: Microsoft Windows [Version 10.0.18363.836]
PowerToys version: 0.18"><pre class="notranslate"><code class="notranslate">Windows build number: Microsoft Windows [Version 10.0.18363.836]
PowerToys version: 0.18
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<ul dir="auto">
<li>Right click on the tray icon</li>
<li>Select Settings</li>
</ul>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">Settings windows appears and allows me to make changes</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">The windows appears, it briefly shows all the settings (as expected) but then the window becomes empty, see screen shot.</p>
<h1 dir="auto">Screenshots</h1>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/5024446/82576203-72f58180-9b81-11ea-8a15-dd6db1a4d5f8.png"><img width="618" alt="PowerToysSettings" src="https://user-images.githubusercontent.com/5024446/82576203-72f58180-9b81-11ea-8a15-dd6db1a4d5f8.png" style="max-width: 100%;"></a></p> | 1 |
<p dir="auto">Declaration of Symfony\Bundle\AsseticBundle\Factory\Worker\UseControllerWorker::process() must be compatible with Assetic\Factory\Worker\WorkerInterface::process(Assetic\Asset\AssetInterface $asset, Assetic\Factory\AssetFactory $factory)</p> | <table role="table">
<thead>
<tr>
<th>Q</th>
<th>A</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bug report?</td>
<td>yes</td>
</tr>
<tr>
<td>Feature request?</td>
<td>no</td>
</tr>
<tr>
<td>BC Break report?</td>
<td>no</td>
</tr>
<tr>
<td>RFC?</td>
<td>no</td>
</tr>
<tr>
<td>Symfony version</td>
<td>2.8, 3.x</td>
</tr>
</tbody>
</table>
<p dir="auto">I am dealing with a problem when I was scraping a specific website, which the content is not created properly. So I could catch if there is any written in the file, the domCrawler stops the content's creation on that point.</p>
<p dir="auto">Should it be the correct behavior or it should identify the last html closed tag?</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head></head>
<body>
<script type="application/javascript">
function example() {
var newWindow = window.open('about:blank', 'ImageWindow');
newWindow.document.write('<html><title>x</title><body><img src="imgSrc" alt=floorplan/></body></html>');
return false;
}
</script>
<div id="example">dom crawler example</div>
</body>
</html>"><pre class="notranslate"><span class="pl-c1"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"<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">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">script</span> <span class="pl-c1">type</span>="<span class="pl-s">application/javascript</span>"<span class="pl-kos">></span>
<span class="pl-k">function</span> <span class="pl-en">example</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">var</span> <span class="pl-s1">newWindow</span> <span class="pl-c1">=</span> <span class="pl-smi">window</span><span class="pl-kos">.</span><span class="pl-en">open</span><span class="pl-kos">(</span><span class="pl-s">'about:blank'</span><span class="pl-kos">,</span> <span class="pl-s">'ImageWindow'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">newWindow</span><span class="pl-kos">.</span><span class="pl-c1">document</span><span class="pl-kos">.</span><span class="pl-en">write</span><span class="pl-kos">(</span><span class="pl-s">'<html><title>x</title><body><img src="imgSrc" alt=floorplan/></body></html>'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">return</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-ent">script</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">example</span>"<span class="pl-kos">></span>dom crawler example<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> | 0 |
<p dir="auto"><strong>TypeScript Version:</strong></p>
<p dir="auto">1.8.9 / (1.9.0-dev.20160409)</p>
<p dir="auto"><strong>Code</strong></p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="/// <reference path="react.d.ts"/>
import * as React from 'react';
const Test = ({children}) => <span>{children}</span>;
<Test>123</Test>;"><pre class="notranslate"><span class="pl-c">/// <reference path="react.d.ts"/></span>
<span class="pl-k">import</span> <span class="pl-c1">*</span> <span class="pl-k">as</span> <span class="pl-smi">React</span> <span class="pl-k">from</span> <span class="pl-s">'react'</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-smi">Test</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-kos">{</span>children<span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos"><</span><span class="pl-smi">span</span><span class="pl-kos">></span><span class="pl-kos">{</span>children<span class="pl-kos">}</span><span class="pl-c1"><</span><span class="pl-pds"><span class="pl-c1">/</span>span>;</span><span class="pl-c1"></span>
<span class="pl-c1"><</span><span class="pl-smi">Test</span><span class="pl-c1">></span><span class="pl-c1">123</span><span class="pl-c1"><</span><span class="pl-c1">/</span>Test>;</pre></div>
<p dir="auto"><strong>Expected behavior:</strong></p>
<p dir="auto">No errors.</p>
<p dir="auto"><strong>Actual behavior:</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="test.tsx(7,1): error TS2324: Property 'children' is missing in type 'IntrinsicAttributes & { children: any; }'."><pre class="notranslate"><code class="notranslate">test.tsx(7,1): error TS2324: Property 'children' is missing in type 'IntrinsicAttributes & { children: any; }'.
</code></pre></div>
<p dir="auto">If I change the JSX to:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="React.createElement(Test, null, "123");"><pre class="notranslate"><span class="pl-smi">React</span><span class="pl-kos">.</span><span class="pl-en">createElement</span><span class="pl-kos">(</span><span class="pl-smi">Test</span><span class="pl-kos">,</span> <span class="pl-c1">null</span><span class="pl-kos">,</span> <span class="pl-s">"123"</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">there is no error reported.</p> | <p dir="auto">say I have:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="class Parent extends React.Component<{children:any}, {}>{
render() {
return <div> {this.props.children}</div>
}
}
class Container extends React.Component<{},{}> {
render() {
return <Parent> //typescript shows error here cause no 'children' attribute present
<h2>Hello</Hello>
</Parent>
}
}"><pre class="notranslate"><code class="notranslate">class Parent extends React.Component<{children:any}, {}>{
render() {
return <div> {this.props.children}</div>
}
}
class Container extends React.Component<{},{}> {
render() {
return <Parent> //typescript shows error here cause no 'children' attribute present
<h2>Hello</Hello>
</Parent>
}
}
</code></pre></div>
<p dir="auto">In this case, <code class="notranslate">Container</code> is calling <code class="notranslate">Parent</code> correctly by passing in the children as nested elements.<br>
However, Typescript still complains that it doesnt see an explicit 'children' attribute.</p>
<p dir="auto">Typescript should know that 'children' attribute is special.</p>
<p dir="auto">TS version 1.7.3</p> | 1 |
<h3 dir="auto">Preflight Checklist</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the issue tracker for an issue that matches the one I want to file, without success.</li>
</ul>
<h3 dir="auto">Issue Details</h3>
<ul dir="auto">
<li><strong>Electron Version:</strong>
<ul dir="auto">
<li>10.1.3</li>
</ul>
</li>
<li><strong>Operating System:</strong>
<ul dir="auto">
<li>Ubuntu 20.04 x64</li>
</ul>
</li>
<li><strong>Last Known Working Electron version:</strong>
<ul dir="auto">
<li>4.0.5</li>
</ul>
</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">I'm trying to create a transparent Electronjs frame on Ubuntu.</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">Black background</p>
<p dir="auto">`const { app, BrowserWindow } = require('electron')</p>
<p dir="auto">function createWindow () {<br>
const win = new BrowserWindow({<br>
width: 800,<br>
height: 600,<br>
frame: false, // open for original windows state<br>
transparent: true,<br>
webPreferences: {<br>
nodeIntegration: true<br>
}<br>
})</p>
<p dir="auto">win.loadFile('index.html')<br>
//win.webContents.openDevTools()<br>
}</p>
<p dir="auto">app.whenReady().then(createWindow)</p>
<p dir="auto">app.on('window-all-closed', () => {<br>
if (process.platform !== 'darwin') {<br>
app.quit()<br>
}<br>
})</p>
<p dir="auto">app.on('activate', () => {<br>
if (BrowserWindow.getAllWindows().length === 0) {<br>
createWindow()<br>
}<br>
})`</p>
<h3 dir="auto">Screenshots</h3>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/51656705/96429371-89276c80-1209-11eb-8592-256156047940.png"><img src="https://user-images.githubusercontent.com/51656705/96429371-89276c80-1209-11eb-8592-256156047940.png" alt="Screenshot from 2020-10-19 12-49-07" style="max-width: 100%;"></a></p> | <h3 dir="auto">Preflight Checklist</h3>
<ul dir="auto">
<li>[ x] I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li>
<li>[ x] 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>[ x] I have searched the issue tracker for an issue that matches the one I want to file, without success.</li>
</ul>
<h3 dir="auto">Issue Details</h3>
<p dir="auto">Transparent failed in v10.0.0 and v11.0.0-beta. 1, but normal in v4-v9.</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const onAppReady = () =>{
let parent = new BrowserWindow({
width: 300,
height: 300,
transparent: true,
frame: true
})
parent.loadFile('main.html')
}
app.on('ready', () =>setTimeout(onAppReady, 500))"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-en">onAppReady</span> <span class="pl-c1">=</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">let</span> <span class="pl-s1">parent</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">width</span>: <span class="pl-c1">300</span><span class="pl-kos">,</span>
<span class="pl-c1">height</span>: <span class="pl-c1">300</span><span class="pl-kos">,</span>
<span class="pl-c1">transparent</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c1">frame</span>: <span class="pl-c1">true</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-s1">parent</span><span class="pl-kos">.</span><span class="pl-en">loadFile</span><span class="pl-kos">(</span><span class="pl-s">'main.html'</span><span class="pl-kos">)</span>
<span class="pl-kos">}</span>
<span class="pl-s1">app</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">'ready'</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span><span class="pl-en">setTimeout</span><span class="pl-kos">(</span><span class="pl-en">onAppReady</span><span class="pl-kos">,</span> <span class="pl-c1">500</span><span class="pl-kos">)</span><span class="pl-kos">)</span></pre></div>
<ul dir="auto">
<li>
<p dir="auto"><strong>Electron Version:</strong><br>
v10.0.0 and v11.0.0-beta.1</p>
</li>
<li>
<p dir="auto"><strong>Operating System:</strong><br>
x86_64 Linux version 5.4.50-amd64-desktop (deepin@deepin-PC)<br>
(gcc version 8.3.0 (Uos 8.3.0.3-3+rebuild))</p>
</li>
<li>
<p dir="auto"><strong>Last Known Working Electron version:</strong><br>
v9.2.1</p>
</li>
</ul>
<h3 dir="auto">Screenshots</h3>
<p dir="auto">v9.2.1<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/24741025/91416281-c151a500-e881-11ea-862c-730e7fb769f4.png"><img src="https://user-images.githubusercontent.com/24741025/91416281-c151a500-e881-11ea-862c-730e7fb769f4.png" alt="image" style="max-width: 100%;"></a><br>
v10.0.0<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/24741025/91416474-02e25000-e882-11ea-96d4-a5a60e2e4c73.png"><img src="https://user-images.githubusercontent.com/24741025/91416474-02e25000-e882-11ea-96d4-a5a60e2e4c73.png" alt="image" style="max-width: 100%;"></a></p>
<h3 dir="auto">Additional Information</h3>
<p dir="auto">I have tested v4/v5/v9 are normal, only v10 - v11 failed.</p> | 1 |
<p dir="auto">Hello.</p>
<p dir="auto">I'm trying to make my own camera with blackjack and hookers :)<br>
Doing it mostly by using the source of THREE.FirstPersonCamera and have faced a problem with updating the scene calling:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="this.supr.update.call( this );"><pre class="notranslate"><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">supr</span><span class="pl-kos">.</span><span class="pl-c1">update</span><span class="pl-kos">.</span><span class="pl-en">call</span><span class="pl-kos">(</span> <span class="pl-smi">this</span> <span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">I can't call directly render()-function because it belongs to different scope. Certainly, i can bind handlers in main-part of the code, but i think, it would be better to avoid duplicates.<br>
Code here:<br>
<a href="http://93.186.103.193/" rel="nofollow">http://93.186.103.193/</a></p> | <p dir="auto">Sometimes I get this error.</p>
<p dir="auto">Steps to reproduce the behavior:</p>
<ol dir="auto">
<li>Load a gltf model with r124, Idk</li>
<li>Look into browser console</li>
<li>See error</li>
</ol>
<p dir="auto"><em><strong>Code</strong></em></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="let manager = new THREE.LoadingManager, loader = new GLTFLoader( manager );
...
loader.load( config.path, function( result ) {
// nothing special here"><pre class="notranslate"><span class="pl-k">let</span> <span class="pl-s1">manager</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-c1">THREE</span><span class="pl-kos">.</span><span class="pl-c1">LoadingManager</span><span class="pl-kos">,</span> <span class="pl-s1">loader</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-v">GLTFLoader</span><span class="pl-kos">(</span> <span class="pl-s1">manager</span> <span class="pl-kos">)</span><span class="pl-kos">;</span>
...
<span class="pl-s1">loader</span><span class="pl-kos">.</span><span class="pl-c1">load</span><span class="pl-kos">(</span> <span class="pl-s1">config</span><span class="pl-kos">.</span><span class="pl-c1">path</span><span class="pl-kos">,</span> <span class="pl-k">function</span><span class="pl-kos">(</span> <span class="pl-s1">result</span> <span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-c">// nothing special here</span></pre></div>
<p dir="auto"><em><strong>Live example</strong></em></p>
<p dir="auto">n/a</p>
<p dir="auto"><strong>Expected behavior</strong></p>
<p dir="auto">The error never happens</p>
<p dir="auto"><strong>Screenshots</strong></p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/242577/103602373-2ee69f80-4f0c-11eb-9a4d-21621c0812f6.png"><img src="https://user-images.githubusercontent.com/242577/103602373-2ee69f80-4f0c-11eb-9a4d-21621c0812f6.png" alt="gltfloader stack" style="max-width: 100%;"></a></p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/242577/103602413-40c84280-4f0c-11eb-8b11-447fb2c40caa.png"><img src="https://user-images.githubusercontent.com/242577/103602413-40c84280-4f0c-11eb-8b11-447fb2c40caa.png" alt="gltfloader code" style="max-width: 100%;"></a></p>
<p dir="auto"><strong>Platform:</strong></p>
<ul dir="auto">
<li>Device: Desktop</li>
<li>OS: Windows 10</li>
<li>Browser: Firefox</li>
<li>Three.js version: r124</li>
</ul> | 0 |
<h3 dir="auto">Apache Airflow version</h3>
<p dir="auto">Other Airflow 2 version (please specify below)</p>
<h3 dir="auto">What happened</h3>
<p dir="auto">I have a three node airflow cluster, after upgrade 2.6.0 from 2.3.4, task can't show log in webui. and when task in running state, i can see log in webui, however, after task is failed or sucess, task log is gone, only left hostname.<br>
<a target="_blank" rel="noopener noreferrer" href="https://user-images.githubusercontent.com/115528312/243629716-5657a7ec-8b4d-4191-92a5-16dc63665eb7.png"><img src="https://user-images.githubusercontent.com/115528312/243629716-5657a7ec-8b4d-4191-92a5-16dc63665eb7.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">by the way, airflow webserver、woker、scheduler process don't have error log.<br>
master node get logs requese is fine:<br>
<a target="_blank" rel="noopener noreferrer" href="https://user-images.githubusercontent.com/115528312/243649822-5ef8e421-95b5-4c83-a6aa-5898a9c7c20e.png"><img src="https://user-images.githubusercontent.com/115528312/243649822-5ef8e421-95b5-4c83-a6aa-5898a9c7c20e.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">and, use api get logs, have same issue:<br>
<a target="_blank" rel="noopener noreferrer" href="https://user-images.githubusercontent.com/115528312/243661420-340ef41a-e365-4b90-8e14-2a544ee81c72.png"><img src="https://user-images.githubusercontent.com/115528312/243661420-340ef41a-e365-4b90-8e14-2a544ee81c72.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">upgrade steps:</p>
<ol dir="auto">
<li>
<p dir="auto">step-1<br>
AIRFLOW_VERSION=2.6.0<br>
PYTHON_VERSION="$(python3 --version | cut -d " " -f 2 | cut -d "." -f 1-2)"<br>
pip3 install "apache-airflow==${AIRFLOW_VERSION}" --upgrade --constraint /home/airflow/deploy/upgrade/up_to_2_6_0/constraints-3.9.txt</p>
</li>
<li>
<p dir="auto">step-2<br>
kill worker process</p>
</li>
<li>
<p dir="auto">upgrade db<br>
airflow db upgrade</p>
</li>
</ol>
<h3 dir="auto">What you think should happen instead</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">How to reproduce</h3>
<p dir="auto">upgrade 2.6.0 from 2.3.4</p>
<h3 dir="auto">Operating System</h3>
<p dir="auto">centos7.6</p>
<h3 dir="auto">Versions of Apache Airflow Providers</h3>
<p dir="auto">2.6.0</p>
<h3 dir="auto">Deployment</h3>
<p dir="auto">Other</p>
<h3 dir="auto">Deployment details</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Anything else</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Are you willing to submit PR?</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Yes I am willing to submit a PR!</li>
</ul>
<h3 dir="auto">Code of Conduct</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow this project's <a href="https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a></li>
</ul> | <p dir="auto"><strong>Description</strong></p>
<p dir="auto">The old documentation for <a href="https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=139628154" rel="nofollow">First time contributor's</a> should be reviewed and incorporated in <a href="https://airflow.apache.org/blog/" rel="nofollow">Apache Airflow Blog</a></p>
<p dir="auto"><strong>Use case / motivation</strong></p>
<p dir="auto">To remove documentation duplication and clean it up.</p>
<p dir="auto"><strong>Related Issues</strong></p>
<p dir="auto"><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="673709470" data-permission-text="Title is private" data-url="https://github.com/apache/airflow/issues/10178" data-hovercard-type="issue" data-hovercard-url="/apache/airflow/issues/10178/hovercard" href="https://github.com/apache/airflow/issues/10178">#10178</a></p> | 0 |
<p dir="auto">I customized and downloaded bootstrap. The modal backdrop in the customized version is too dark. It is not the behaviour when downloading 3.0 directly</p> | <p dir="auto">Hi!</p>
<p dir="auto">I just generated a customized version and the modal background is totally black (I also generated a version without any change to be sure it wasn't me that caused that):</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/7c884cd09470c8345f0304ad6c0a9768a9b9ad1b1cf415c28d5eb6df1beb82ab/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f353238373238352f313030393333382f66653335323434612d306233362d313165332d393531332d3962363637663362646665652e706e67"><img src="https://camo.githubusercontent.com/7c884cd09470c8345f0304ad6c0a9768a9b9ad1b1cf415c28d5eb6df1beb82ab/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f353238373238352f313030393333382f66653335323434612d306233362d313165332d393531332d3962363637663362646665652e706e67" alt="image" data-canonical-src="https://f.cloud.github.com/assets/5287285/1009338/fe35244a-0b36-11e3-9513-9b667f3bdfee.png" style="max-width: 100%;"></a></p>
<p dir="auto">The download link on the home page does have transparency:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/c35f738d5bc9c495c9e5c3e792a7c2a713e064f7ba536da495ecd6830f696e96/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f353238373238352f313030393335332f33396635313138342d306233372d313165332d383231622d3263396365363830626339352e706e67"><img src="https://camo.githubusercontent.com/c35f738d5bc9c495c9e5c3e792a7c2a713e064f7ba536da495ecd6830f696e96/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f353238373238352f313030393335332f33396635313138342d306233372d313165332d383231622d3263396365363830626339352e706e67" alt="image" data-canonical-src="https://f.cloud.github.com/assets/5287285/1009353/39f51184-0b37-11e3-821b-2c9ce680bc95.png" style="max-width: 100%;"></a></p> | 1 |
<h3 dir="auto">Preflight Checklist</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the 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> 12.0.0-beta.11 and higher
<ul dir="auto">
<li>
</li>
</ul>
</li>
<li><strong>Operating System:</strong> macOS 10.15 and 11.0
<ul dir="auto">
<li>
</li>
</ul>
</li>
<li><strong>Last Known Working Electron version:</strong> 12.0.0-beta.10
<ul dir="auto">
<li>
</li>
</ul>
</li>
</ul>
<p dir="auto">Testcase:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" mainWindow = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
nodeIntegration: true
},
titleBarStyle: 'hidden'
})"><pre class="notranslate"><code class="notranslate"> mainWindow = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
nodeIntegration: true
},
titleBarStyle: 'hidden'
})
</code></pre></div>
<p dir="auto">Working behavior (in beta 10 and lower):</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/10314059/104553589-85d13080-5600-11eb-99ff-f347a26e3829.png"><img width="368" alt="Screen Shot 2021-01-14 at 12 27 37 AM" src="https://user-images.githubusercontent.com/10314059/104553589-85d13080-5600-11eb-99ff-f347a26e3829.png" style="max-width: 100%;"></a></p>
<p dir="auto">Broken behavior (in beta 11):</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/10314059/104553604-8f5a9880-5600-11eb-9652-41a437561a96.png"><img width="572" alt="Screen Shot 2021-01-14 at 12 30 30 AM" src="https://user-images.githubusercontent.com/10314059/104553604-8f5a9880-5600-11eb-9652-41a437561a96.png" style="max-width: 100%;"></a></p>
<p dir="auto"><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="762770729" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/26960" data-hovercard-type="pull_request" data-hovercard-url="/electron/electron/pull/26960/hovercard" href="https://github.com/electron/electron/pull/26960">#26960</a> looks related?</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>12.0.0-beta.14</li>
</ul>
</li>
<li><strong>Operating System:</strong>
<ul dir="auto">
<li>macOS 11.0.1</li>
</ul>
</li>
<li><strong>Last Known Working Electron version:</strong>
<ul dir="auto">
<li>11.1.1</li>
</ul>
</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">The fullscreen button should be enabled and work, see this image from electron 11.1.1</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/5129086/104339611-14a65600-54f8-11eb-82d9-a7e00aa28643.png"><img src="https://user-images.githubusercontent.com/5129086/104339611-14a65600-54f8-11eb-82d9-a7e00aa28643.png" alt="Screenshot 2021-01-12 at 17 02 51" style="max-width: 100%;"></a></p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">The fullscreen button is disabled and does not work, see this image from electron 12.0.0-beta.14.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/5129086/104340509-0c9ae600-54f9-11eb-8aa5-38d95b6f77cc.png"><img src="https://user-images.githubusercontent.com/5129086/104340509-0c9ae600-54f9-11eb-8aa5-38d95b6f77cc.png" alt="Screenshot 2021-01-12 at 17 10 10" style="max-width: 100%;"></a></p>
<h3 dir="auto">To Reproduce</h3>
<p dir="auto">Simply take any project and update to Electron 12.0.0-beta.14</p> | 1 |
<p dir="auto">When outputting <code class="notranslate">debugger</code> keywords in my code and connecting my IDE to the node debugger it is breaking in the compiled code, not the uncompiled code. Sourcemaps are stripped from custom codes/pages/etc.</p>
<p dir="auto">The commons.js and main.js files follow the sourcemaps settings (<code class="notranslate">devtool: cheap-module-eval-source-map</code> in webpack settings by default)</p>
<p dir="auto">Could this be related with the custom babel setting that are used for node?<br>
-> <a href="https://github.com/zeit/next.js/blob/v3-beta/server/build/webpack.js#L205">https://github.com/zeit/next.js/blob/v3-beta/server/build/webpack.js#L205</a> <g-emoji class="g-emoji" alias="thinking" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f914.png">🤔</g-emoji></p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h2 dir="auto">Expected Behavior</h2>
<p dir="auto">The compiled custom code in the .next/dist folder should have sourcemaps generated according to settings in webpack/babel.</p>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">No sourcemaps are generated for custom code accessible for server side debugging. The sourcemaps are however accessible on client side.</p>
<h2 dir="auto">Steps to Reproduce (for bugs)</h2>
<ol dir="auto">
<li>Create a next.js project with a index.js page and sourcemaps enabled (at time of writing the default setting)</li>
<li>Run <code class="notranslate">next</code>to start dev server</li>
<li>Open <code class="notranslate">.next/dist/pages/index.js</code> and scroll down to the bottom of the file. It will have no <code class="notranslate">//# sourceMappingURL</code> comment</li>
<li>Open <code class="notranslate">.next/dist/main.js</code> and scroll down to the bottom of the file. It will have a <code class="notranslate">//# sourceMappingURL</code> comment!</li>
</ol> | <h1 dir="auto">Bug report</h1>
<h2 dir="auto">Describe the bug</h2>
<p dir="auto">viewport tag gets duplicated in the browser (there's no custom viewport tag provided).</p>
<h2 dir="auto">To Reproduce</h2>
<p dir="auto">This occurs on our site, but I've noticed that nextns.org has the same issue, so the instructions are for it:</p>
<ol dir="auto">
<li>Go to <a href="https://nextjs.org" rel="nofollow">https://nextjs.org</a></li>
<li>Wait for the page to load</li>
<li>Inspect the element tree</li>
<li>Search for <code class="notranslate">"viewport"</code>, you'll see two occurrences</li>
</ol>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">There should only be one.</p>
<h2 dir="auto">Screenshots</h2>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/242202/64430115-773f4480-d0af-11e9-99fd-0b8be4ad6d73.png"><img src="https://user-images.githubusercontent.com/242202/64430115-773f4480-d0af-11e9-99fd-0b8be4ad6d73.png" alt="image" style="max-width: 100%;"></a></p>
<h2 dir="auto">System information</h2>
<ul dir="auto">
<li>OS: macOS</li>
<li>Browser (if applies): Chrome</li>
<li>Version of Next.js: 9.0.5</li>
</ul> | 0 |
<p dir="auto">Currently (as of TypeScript 0.9), TypeScript supports overloading on constants, but string constants only.</p>
<p dir="auto">This seems like a slightly arbitrary restriction, although I do agree that strings are the most obvious case where this is necessary. I do think there is (at least) one more case that comes up frequently though: booleans.</p>
<h3 dir="auto">Motivation</h3>
<p dir="auto">My current motiviating example for this is in Lodash's _.flatten function: <a href="https://lodash.com/docs#flatten" rel="nofollow">https://lodash.com/docs#flatten</a></p>
<p dir="auto">This takes a boolean 2nd argument; a flag which changes the behaviour of the method slightly. If true, it recursively flattens, and if false it only flattens a single level.</p>
<p dir="auto">Lodash also has _.flatten / _.flattenDeep methods without boolean arguments that follow each of these behaviours respectively without the flag. While I think we can agree that generally using the different methods where possible is often better, this still gets a lot of use, and boolean flags for this sort of thing are pretty common generally.</p>
<p dir="auto">Notably, these two (recursive/non-recursive) behaviours do have different type signatures, as you can see in the DefinitelyTyped definitions of all three different methods (<a href="https://github.com/borisyankov/DefinitelyTyped/blob/master/lodash/lodash.d.ts#L848-L881">https://github.com/borisyankov/DefinitelyTyped/blob/master/lodash/lodash.d.ts#L848-L881</a>). The method with the boolean signature though has to be overly general to cover both cases, even though when the flag passed is constant we can easily be more specific at compile time.</p>
<h3 dir="auto">Design</h3>
<p dir="auto">Exactly the same as for string constants (<a href="https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md#3.9.2.4">https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md#3.9.2.4</a>), but with true/false values.</p>
<p dir="auto">See below for examples:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="interface MyClass {
serialize(x: true): string;
serialize(x: false): number;
serialize(x: boolean): string | number;
}
var obj: MyClass;
var aBoolean: boolean = Math.random() >= 0.5;
// Valid:
var x: string = obj.serialize(true);
var y: number = obj.serialize(false);
var z: string|number = obj.serialize(aBoolean);
// Not valid:
var a: number = obj.serialize(true);
var b: string = obj.serialize(false)
var c: number = obj.serialize(aBoolean);
var d: string = obj.serialize(aBoolean);"><pre class="notranslate"><span class="pl-k">interface</span> <span class="pl-smi">MyClass</span> <span class="pl-kos">{</span>
<span class="pl-c1">serialize</span><span class="pl-kos">(</span><span class="pl-s1">x</span>: <span class="pl-c1">true</span><span class="pl-kos">)</span>: <span class="pl-smi">string</span><span class="pl-kos">;</span>
<span class="pl-c1">serialize</span><span class="pl-kos">(</span><span class="pl-s1">x</span>: <span class="pl-c1">false</span><span class="pl-kos">)</span>: <span class="pl-smi">number</span><span class="pl-kos">;</span>
<span class="pl-c1">serialize</span><span class="pl-kos">(</span><span class="pl-s1">x</span>: <span class="pl-smi">boolean</span><span class="pl-kos">)</span>: <span class="pl-smi">string</span> <span class="pl-c1">|</span> <span class="pl-smi">number</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">var</span> <span class="pl-s1">obj</span>: <span class="pl-smi">MyClass</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">aBoolean</span>: <span class="pl-smi">boolean</span> <span class="pl-c1">=</span> <span class="pl-smi">Math</span><span class="pl-kos">.</span><span class="pl-en">random</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">>=</span> <span class="pl-c1">0.5</span><span class="pl-kos">;</span>
<span class="pl-c">// Valid:</span>
<span class="pl-k">var</span> <span class="pl-s1">x</span>: <span class="pl-smi">string</span> <span class="pl-c1">=</span> <span class="pl-s1">obj</span><span class="pl-kos">.</span><span class="pl-en">serialize</span><span class="pl-kos">(</span><span class="pl-c1">true</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">y</span>: <span class="pl-smi">number</span> <span class="pl-c1">=</span> <span class="pl-s1">obj</span><span class="pl-kos">.</span><span class="pl-en">serialize</span><span class="pl-kos">(</span><span class="pl-c1">false</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">z</span>: <span class="pl-smi">string</span><span class="pl-c1">|</span><span class="pl-smi">number</span> <span class="pl-c1">=</span> <span class="pl-s1">obj</span><span class="pl-kos">.</span><span class="pl-en">serialize</span><span class="pl-kos">(</span><span class="pl-s1">aBoolean</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">// Not valid:</span>
<span class="pl-k">var</span> <span class="pl-s1">a</span>: <span class="pl-smi">number</span> <span class="pl-c1">=</span> <span class="pl-s1">obj</span><span class="pl-kos">.</span><span class="pl-en">serialize</span><span class="pl-kos">(</span><span class="pl-c1">true</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">b</span>: <span class="pl-smi">string</span> <span class="pl-c1">=</span> <span class="pl-s1">obj</span><span class="pl-kos">.</span><span class="pl-en">serialize</span><span class="pl-kos">(</span><span class="pl-c1">false</span><span class="pl-kos">)</span>
<span class="pl-k">var</span> <span class="pl-s1">c</span>: <span class="pl-smi">number</span> <span class="pl-c1">=</span> <span class="pl-s1">obj</span><span class="pl-kos">.</span><span class="pl-en">serialize</span><span class="pl-kos">(</span><span class="pl-s1">aBoolean</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">var</span> <span class="pl-s1">d</span>: <span class="pl-smi">string</span> <span class="pl-c1">=</span> <span class="pl-s1">obj</span><span class="pl-kos">.</span><span class="pl-en">serialize</span><span class="pl-kos">(</span><span class="pl-s1">aBoolean</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> | <p dir="auto">For instance, in the following example where we declare the return type as an array type, we go from</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function foo(): blah[] {/**/"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">foo</span><span class="pl-kos">(</span><span class="pl-kos">)</span>: <span class="pl-smi">blah</span><span class="pl-kos">[</span><span class="pl-kos">]</span> <span class="pl-kos">{</span><span class="pl-c">/**/</span><span class="pl-kos"></span></pre></div>
<p dir="auto">to</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function foo(): blah[]{
/**/"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">foo</span><span class="pl-kos">(</span><span class="pl-kos">)</span>: <span class="pl-smi">blah</span><span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">{</span>
<span class="pl-c">/**/</span><span class="pl-kos"></span></pre></div>
<p dir="auto">Notice the lack of whitespace between the <code class="notranslate">blah[]</code> and the <code class="notranslate">{</code>.</p> | 0 |
<h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Feature Idea</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">gce module<br>
gce_metadata module</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.5.0b1
config file = /work/ansible/git/ansible/ansible.cfg
configured module search path = [u'/home/ansible/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
ansible python module location = /work/ansible/virt-2.7/lib/python2.7/site-packages/ansible
executable location = /work/ansible/virt-2.7/bin/ansible
python version = 2.7.5 (default, Aug 4 2017, 00:39:18) [GCC 4.8.5 20150623 (Red Hat 4.8.5-16)]
"><pre class="notranslate"><code class="notranslate">ansible 2.5.0b1
config file = /work/ansible/git/ansible/ansible.cfg
configured module search path = [u'/home/ansible/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
ansible python module location = /work/ansible/virt-2.7/lib/python2.7/site-packages/ansible
executable location = /work/ansible/virt-2.7/bin/ansible
python version = 2.7.5 (default, Aug 4 2017, 00:39:18) [GCC 4.8.5 20150623 (Red Hat 4.8.5-16)]
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<p dir="auto">ANSIBLE_PIPELINING(/work/ansible/git/ansible/ansible.cfg) = True<br>
CACHE_PLUGIN(/work/ansible/git/ansible/ansible.cfg) = jsonfile<br>
CACHE_PLUGIN_CONNECTION(/work/ansible/git/ansible/ansible.cfg) = /work/ansible/cache<br>
CACHE_PLUGIN_TIMEOUT(/work/ansible/git/ansible/ansible.cfg) = 86400<br>
DEFAULT_FORKS(/work/ansible/git/ansible/ansible.cfg) = 25<br>
DEFAULT_GATHERING(/work/ansible/git/ansible/ansible.cfg) = smart<br>
DEFAULT_REMOTE_USER(/work/ansible/git/ansible/ansible.cfg) = ansible<br>
DEFAULT_ROLES_PATH(/work/ansible/git/ansible/ansible.cfg) = [u'/work/ansible/git/ansible/roles']<br>
PERSISTENT_CONNECT_TIMEOUT(/work/ansible/git/ansible/ansible.cfg) = 30<br>
RETRY_FILES_ENABLED(/work/ansible/git/ansible/ansible.cfg) = False</p>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<p dir="auto">LSB Version: :core-4.1-amd64:core-4.1-noarch<br>
Distributor ID: CentOS<br>
Description: CentOS Linux release 7.4.1708 (Core)<br>
Release: 7.4.1708<br>
Codename: Core</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">There is currently no gce module to directly manage metadata within gce.<br>
Metadata management is enabled within the gce module, but it cannot be changed or used except when creating an instance.</p>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<p dir="auto">Utilize it as a simple module with fields for required information to interact with GCE and then another field with metadata, populated with the same hash/dictionary data as the gce module.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" gce_metadata:
instance_name: example1
zone: us-central1-a
state: present
service_account_email: "{{ service_account_email }}"
credentials_file: "{{ credentials_file }}"
project_id: "{{ project_id }}"
metadata : '{ "key1" : "value1","key2" : "value2", "key3" : "value3" }'"><pre class="notranslate"><code class="notranslate"> gce_metadata:
instance_name: example1
zone: us-central1-a
state: present
service_account_email: "{{ service_account_email }}"
credentials_file: "{{ credentials_file }}"
project_id: "{{ project_id }}"
metadata : '{ "key1" : "value1","key2" : "value2", "key3" : "value3" }'
</code></pre></div>
<h5 dir="auto">EXPECTED RESULTS</h5>
<p dir="auto">The expected results would be to set/confirm metadata fields provided within the module on a GCE instance.</p>
<h5 dir="auto">ACTUAL RESULTS</h5>
<p dir="auto">Currently this is not something that can be done with ansible, if attempting to use the gce module you cannot just interact with metadata unless you configure all other options to match the current instance setup, which takes most possibilities of automation out of the use case.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""><pre class="notranslate"><code class="notranslate">
</code></pre></div> | <h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Feature Request</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">module: yum</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.3.2.0
config file = /ifs/ansible.cfg
configured module search path = [u'/opt/ansible/ansible_boot/.virtenv/ifs/lib/python2.7/site-packages/ansible/modules', u'/ifs/library']
python version = 2.7.5 (default, Oct 11 2015, 17:47:16) [GCC 4.8.3 20140911 (Red Hat 4.8.3-9)]"><pre class="notranslate"><code class="notranslate">ansible 2.3.2.0
config file = /ifs/ansible.cfg
configured module search path = [u'/opt/ansible/ansible_boot/.virtenv/ifs/lib/python2.7/site-packages/ansible/modules', u'/ifs/library']
python version = 2.7.5 (default, Oct 11 2015, 17:47:16) [GCC 4.8.3 20140911 (Red Hat 4.8.3-9)]
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<p dir="auto">RHEL7 & RHEL7</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">When upgrading the packages, even if yum/dracut can't build the kernel initramfs due to too not enough space in <code class="notranslate">/boot</code>, the command completes successfully. This is revealed on reboot, as the kernel panics because no initramfs was built.</p>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<p dir="auto">As long as the <code class="notranslate">/boot</code> partition is too small to build a new kernel initramfs for the newly installed kernel, yum will show dracut failing, ansible will not fail the task.</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="- hosts: all
tasks:
- name: (pre_event) Free space in /boot partition is greater than 40MB
shell: df -P /boot | grep -e "^/dev" | tr -s ' ' | cut -d ' ' -f 4
register: boot_partition_space
# 40MB
failed_when: boot_partition_space.stdout|int >= 40000
# Kernel has to be an update - else name=kernel
- name: (pre_event) Update all packages on the system
yum:
name: '*'
state: latest"><pre class="notranslate">- <span class="pl-ent">hosts</span>: <span class="pl-s">all</span>
<span class="pl-ent">tasks</span>:
- <span class="pl-ent">name</span>: <span class="pl-s">(pre_event) Free space in /boot partition is greater than 40MB</span>
<span class="pl-ent">shell</span>: <span class="pl-s">df -P /boot | grep -e "^/dev" | tr -s ' ' | cut -d ' ' -f 4</span>
<span class="pl-ent">register</span>: <span class="pl-s">boot_partition_space</span>
<span class="pl-c"><span class="pl-c">#</span> 40MB</span>
<span class="pl-ent">failed_when</span>: <span class="pl-s">boot_partition_space.stdout|int >= 40000</span>
<span class="pl-c"><span class="pl-c">#</span> Kernel has to be an update - else name=kernel</span>
- <span class="pl-ent">name</span>: <span class="pl-s">(pre_event) Update all packages on the system</span>
<span class="pl-ent">yum</span>:
<span class="pl-ent">name</span>: <span class="pl-s"><span class="pl-pds">'</span>*<span class="pl-pds">'</span></span>
<span class="pl-ent">state</span>: <span class="pl-s">latest</span></pre></div>
<h5 dir="auto">EXPECTED RESULTS</h5>
<p dir="auto">The second task should fail when dracut fails to build the kernel initramfs</p>
<h5 dir="auto">ACTUAL RESULTS</h5>
<p dir="auto">After the following script runs, and a reboot is issued, the server cannot boot up, as it always encounters a kernel panic.</p>
<p dir="auto">Stdout:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[...]
Cleanup : ncurses-base-5.9-13.20130511.el7.noarch 1012/1013
Cleanup : libgcc-4.8.5-11.el7.x86_64 1013/1013
2661 blocks
gzip: stdout: No space left on device
dracut: creation of /boot/initramfs-3.10.0-693.2.2.el7.x86_64.img failed
mkinitrd failed
warning: %posttrans(kernel-3.10.0-693.2.2.el7.x86_64) scriptlet failed, exit status 1
Uploading Package Profile
Verifying : zlib-1.2.7-17.el7.i686 1/1013
Verifying : yum-rhn-plugin-2.0.1-9.el7.noarch 2/1013
[...]"><pre class="notranslate"><code class="notranslate">[...]
Cleanup : ncurses-base-5.9-13.20130511.el7.noarch 1012/1013
Cleanup : libgcc-4.8.5-11.el7.x86_64 1013/1013
2661 blocks
gzip: stdout: No space left on device
dracut: creation of /boot/initramfs-3.10.0-693.2.2.el7.x86_64.img failed
mkinitrd failed
warning: %posttrans(kernel-3.10.0-693.2.2.el7.x86_64) scriptlet failed, exit status 1
Uploading Package Profile
Verifying : zlib-1.2.7-17.el7.i686 1/1013
Verifying : yum-rhn-plugin-2.0.1-9.el7.noarch 2/1013
[...]
</code></pre></div>
<p dir="auto">From our custom logging callback plugin:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" "changed": true,
"msg": "Warning: RPMDB altered outside of yum.\n** Found 1 pre-existing rpmdb problem(s), 'yum check' output follows:\nkatello-ca-consumer-rhelsatsy01exdu.ent.oclc.org-1.0-12.noarch is a duplicate with katello-ca-consumer-rhelsatsy01exdu.ent.oclc.org-1.0-7.noarch\nNon-fatal POSTTRANS scriptlet failure in rpm package kernel-3.10.0-693.2.2.el7.x86_64\n",
"rc": 0,"><pre class="notranslate"><code class="notranslate"> "changed": true,
"msg": "Warning: RPMDB altered outside of yum.\n** Found 1 pre-existing rpmdb problem(s), 'yum check' output follows:\nkatello-ca-consumer-rhelsatsy01exdu.ent.oclc.org-1.0-12.noarch is a duplicate with katello-ca-consumer-rhelsatsy01exdu.ent.oclc.org-1.0-7.noarch\nNon-fatal POSTTRANS scriptlet failure in rpm package kernel-3.10.0-693.2.2.el7.x86_64\n",
"rc": 0,
</code></pre></div>
<p dir="auto">So even though the return code is 0 for the yum command, - I would appreciate if the yum module would be able to catch this.</p> | 0 |
<h1 dir="auto">Bug report</h1>
<h2 dir="auto">Describe the bug</h2>
<p dir="auto">If we use <code class="notranslate">next/dynamic</code> to import components in several files, we experience a flashing "loading..." text when the client mounts.</p>
<p dir="auto">If we only import one place, it works fine.<br>
It also works fine in development.</p>
<h2 dir="auto">To Reproduce</h2>
<p dir="auto">Codesandbox example below shows that the <code class="notranslate">One</code> component flashes with "loading" text since it is imported twice, while the <code class="notranslate">Two</code> component does not flash, because it is only imported once.</p>
<p dir="auto"><a href="https://codesandbox.io/s/qqy7x4r26w" rel="nofollow"><img src="https://camo.githubusercontent.com/90808661433696bc57dce8d4ad732307b5cec6270e6b846f114dcd7ee7f9458a/68747470733a2f2f636f646573616e64626f782e696f2f7374617469632f696d672f706c61792d636f646573616e64626f782e737667" alt="Edit next-dynamic-import-bug" data-canonical-src="https://codesandbox.io/static/img/play-codesandbox.svg" style="max-width: 100%;"></a></p>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">I expect the dynamic import to behave the same in development and production, as well as it not causing a flash when the client mounts.</p>
<h2 dir="auto">Screenshots</h2>
<p dir="auto">If applicable, add screenshots to help explain your problem.</p>
<h2 dir="auto">System information</h2>
<ul dir="auto">
<li>OS: macOS mojave</li>
<li>Browser: Chrome 69.0.3497.100</li>
<li>Version of Next.js: 7.0.2</li>
</ul> | <h1 dir="auto">Bug report</h1>
<h2 dir="auto">Describe the bug</h2>
<p dir="auto">If we use <code class="notranslate">next/dynamic</code> to import components in several files, we experience a flashing "loading..." text when the client mounts.</p>
<p dir="auto">If we only import one place, it works fine.<br>
It also works fine in development.</p>
<h2 dir="auto">To Reproduce</h2>
<p dir="auto">Codesandbox example below shows that the <code class="notranslate">One</code> component flashes with "loading" text since it is imported twice, while the <code class="notranslate">Two</code> component does not flash, because it is only imported once.</p>
<p dir="auto"><a href="https://codesandbox.io/s/qqy7x4r26w" rel="nofollow"><img src="https://camo.githubusercontent.com/90808661433696bc57dce8d4ad732307b5cec6270e6b846f114dcd7ee7f9458a/68747470733a2f2f636f646573616e64626f782e696f2f7374617469632f696d672f706c61792d636f646573616e64626f782e737667" alt="Edit next-dynamic-import-bug" data-canonical-src="https://codesandbox.io/static/img/play-codesandbox.svg" style="max-width: 100%;"></a></p>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">I expect the dynamic import to behave the same in development and production, as well as it not causing a flash when the client mounts.</p>
<h2 dir="auto">Screenshots</h2>
<p dir="auto">If applicable, add screenshots to help explain your problem.</p>
<h2 dir="auto">System information</h2>
<ul dir="auto">
<li>OS: macOS mojave</li>
<li>Browser: Chrome 69.0.3497.100</li>
<li>Version of Next.js: 7.0.2</li>
</ul> | 1 |
<h3 dir="auto">Describe the issue:</h3>
<p dir="auto">In a very specific context, numpy incorrectly asserts that <code class="notranslate">0 + 1 == 2</code>!</p>
<h3 dir="auto">Reproduce the code example:</h3>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy as np
# only works in fresh interpreter, possibly uninitialized variable?
assert np.add(0., 1, where=False) == 2.
assert np.add(0., 1, where=False) == 1.
assert np.add(0., 1, where=False) == 1."><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-c"># only works in fresh interpreter, possibly uninitialized variable?</span>
<span class="pl-k">assert</span> <span class="pl-s1">np</span>.<span class="pl-en">add</span>(<span class="pl-c1">0.</span>, <span class="pl-c1">1</span>, <span class="pl-s1">where</span><span class="pl-c1">=</span><span class="pl-c1">False</span>) <span class="pl-c1">==</span> <span class="pl-c1">2.</span>
<span class="pl-k">assert</span> <span class="pl-s1">np</span>.<span class="pl-en">add</span>(<span class="pl-c1">0.</span>, <span class="pl-c1">1</span>, <span class="pl-s1">where</span><span class="pl-c1">=</span><span class="pl-c1">False</span>) <span class="pl-c1">==</span> <span class="pl-c1">1.</span>
<span class="pl-k">assert</span> <span class="pl-s1">np</span>.<span class="pl-en">add</span>(<span class="pl-c1">0.</span>, <span class="pl-c1">1</span>, <span class="pl-s1">where</span><span class="pl-c1">=</span><span class="pl-c1">False</span>) <span class="pl-c1">==</span> <span class="pl-c1">1.</span></pre></div>
<h3 dir="auto">Error message:</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">NumPy/Python version information:</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="1.21.2 3.9.5 (default, Jun 26 2021, 07:40:15)
[GCC 6.3.0 20170516]"><pre class="notranslate"><code class="notranslate">1.21.2 3.9.5 (default, Jun 26 2021, 07:40:15)
[GCC 6.3.0 20170516]
</code></pre></div>
<p dir="auto">Then I upgraded numpy to</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="1.22.4 3.9.5 (default, Jun 26 2021, 07:40:15)
[GCC 6.3.0 20170516]"><pre class="notranslate"><code class="notranslate">1.22.4 3.9.5 (default, Jun 26 2021, 07:40:15)
[GCC 6.3.0 20170516]
</code></pre></div>
<p dir="auto">and the problem persists.</p> | <p dir="auto">First of all, thank you so much for the work on Numpy--an incredible contribution to science and progress.</p>
<h3 dir="auto">Reproducing code example:</h3>
<p dir="auto">Numpy has excellent support for functional programming patterns, and the hundreds of <code class="notranslate">np.*</code> functions I regularly use act as pure functions with no side effects.</p>
<p dir="auto">The current behavior of <code class="notranslate">np.negative</code> breaks this pattern, and is not deterministic:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=">>> import numpy as np
>>> np.negative(np.arange(5), where=np.array([0,0,1,1,0],dtype=bool))
array([ 94871006724704, 171798691860, -2,
-3, 4285579895102272626])
>>> np.negative(np.arange(5), where=np.array([0,0,1,1,0],dtype=bool))
array([ 94871006750048, 140541164903200, -2, -3,
48])
>>> x = np.arange(5)
>>> np.negative(x,out=x, where=np.array([0,0,1,1,0],dtype=bool))
array([ 0, 1, -2, -3, 4])"><pre class="notranslate"><span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">np</span>.<span class="pl-en">negative</span>(<span class="pl-s1">np</span>.<span class="pl-en">arange</span>(<span class="pl-c1">5</span>), <span class="pl-s1">where</span><span class="pl-c1">=</span><span class="pl-s1">np</span>.<span class="pl-en">array</span>([<span class="pl-c1">0</span>,<span class="pl-c1">0</span>,<span class="pl-c1">1</span>,<span class="pl-c1">1</span>,<span class="pl-c1">0</span>],<span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">bool</span>))
<span class="pl-en">array</span>([ <span class="pl-c1">94871006724704</span>, <span class="pl-c1">171798691860</span>, <span class="pl-c1">-</span><span class="pl-c1">2</span>,
<span class="pl-c1">-</span><span class="pl-c1">3</span>, <span class="pl-c1">4285579895102272626</span>])
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">np</span>.<span class="pl-en">negative</span>(<span class="pl-s1">np</span>.<span class="pl-en">arange</span>(<span class="pl-c1">5</span>), <span class="pl-s1">where</span><span class="pl-c1">=</span><span class="pl-s1">np</span>.<span class="pl-en">array</span>([<span class="pl-c1">0</span>,<span class="pl-c1">0</span>,<span class="pl-c1">1</span>,<span class="pl-c1">1</span>,<span class="pl-c1">0</span>],<span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">bool</span>))
<span class="pl-en">array</span>([ <span class="pl-c1">94871006750048</span>, <span class="pl-c1">140541164903200</span>, <span class="pl-c1">-</span><span class="pl-c1">2</span>, <span class="pl-c1">-</span><span class="pl-c1">3</span>,
<span class="pl-c1">48</span>])
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">arange</span>(<span class="pl-c1">5</span>)
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">np</span>.<span class="pl-en">negative</span>(<span class="pl-s1">x</span>,<span class="pl-s1">out</span><span class="pl-c1">=</span><span class="pl-s1">x</span>, <span class="pl-s1">where</span><span class="pl-c1">=</span><span class="pl-s1">np</span>.<span class="pl-en">array</span>([<span class="pl-c1">0</span>,<span class="pl-c1">0</span>,<span class="pl-c1">1</span>,<span class="pl-c1">1</span>,<span class="pl-c1">0</span>],<span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">bool</span>))
<span class="pl-en">array</span>([ <span class="pl-c1">0</span>, <span class="pl-c1">1</span>, <span class="pl-c1">-</span><span class="pl-c1">2</span>, <span class="pl-c1">-</span><span class="pl-c1">3</span>, <span class="pl-c1">4</span>])</pre></div>
<p dir="auto">Thus, np.negative does not act as a mathematical function, which is confusing and error-prone. It's hard to imagine that a user would ever want uninitialized values in the returned values.</p>
<p dir="auto">A quick search on github reveals that there are thousands (if not hundreds of thousands) of instances where code introduces uninitialized values due to calls to <code class="notranslate">np.negative</code>: <a href="https://github.com/search?q=%22np.negative%22&type=Code">https://github.com/search?q=%22np.negative%22&type=Code</a></p>
<p dir="auto">Based on reading <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="130202287" data-permission-text="Title is private" data-url="https://github.com/numpy/numpy/issues/7158" data-hovercard-type="issue" data-hovercard-url="/numpy/numpy/issues/7158/hovercard" href="https://github.com/numpy/numpy/issues/7158">#7158</a>, I believe this issue applies to all <code class="notranslate">ufunc</code>. I understand in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="322603885" data-permission-text="Title is private" data-url="https://github.com/numpy/numpy/issues/11086" data-hovercard-type="pull_request" data-hovercard-url="/numpy/numpy/pull/11086/hovercard" href="https://github.com/numpy/numpy/pull/11086">#11086</a> that the documentation was improved, but I wanted to open this issue to highlight both the danger of uninitialized values being returned, as well as how frequently in the wild these uninitialized values are silently corrupting data.</p>
<h3 dir="auto">Numpy/Python version information:</h3>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=">>> import sys, numpy; print(numpy.__version__, sys.version)
1.19.1 3.8.5 (default, Aug 5 2020, 08:36:46)
[GCC 7.3.0]"><pre class="notranslate"><span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-k">import</span> <span class="pl-s1">sys</span>, <span class="pl-s1">numpy</span>; <span class="pl-en">print</span>(<span class="pl-s1">numpy</span>.<span class="pl-s1">__version__</span>, <span class="pl-s1">sys</span>.<span class="pl-s1">version</span>)
<span class="pl-c1">1.19</span>.<span class="pl-c1">1</span> <span class="pl-c1">3.8</span>.<span class="pl-c1">5</span> (<span class="pl-s1">default</span>, <span class="pl-v">Aug</span> <span class="pl-c1">5</span> <span class="pl-c1">2020</span>, <span class="pl-c1">08</span>:<span class="pl-c1">36</span>:<span class="pl-c1">46</span>)
[<span class="pl-v">GCC</span> <span class="pl-c1">7.3</span><span class="pl-c1">.0</span>]</pre></div>
<h3 dir="auto">(Edit) Proposed default behavior</h3>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=">>> def wrapped_negative(x, out=None, where=True):
... if (out is None):
... temp = x[()]
... else:
... temp = out
... return np.negative(x, out=temp, where=where)
>>> wrapped_negative(np.arange(5), where=np.array([0,0,1,1,0],dtype=bool))
array([ 0, 1, -2, -3, 4])"><pre class="notranslate"><span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-k">def</span> <span class="pl-en">wrapped_negative</span>(<span class="pl-s1">x</span>, <span class="pl-s1">out</span><span class="pl-c1">=</span><span class="pl-c1">None</span>, <span class="pl-s1">where</span><span class="pl-c1">=</span><span class="pl-c1">True</span>):
... <span class="pl-k">if</span> (<span class="pl-s1">out</span> <span class="pl-c1">is</span> <span class="pl-c1">None</span>):
... <span class="pl-s1">temp</span> <span class="pl-c1">=</span> <span class="pl-s1">x</span>[()]
... <span class="pl-s1">else</span>:
... <span class="pl-s1">temp</span> <span class="pl-c1">=</span> <span class="pl-s1">out</span>
... <span class="pl-s1">return</span> <span class="pl-s1">np</span>.<span class="pl-en">negative</span>(<span class="pl-s1">x</span>, <span class="pl-s1">out</span><span class="pl-c1">=</span><span class="pl-s1">temp</span>, <span class="pl-s1">where</span><span class="pl-c1">=</span><span class="pl-s1">where</span>)
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-en">wrapped_negative</span>(<span class="pl-s1">np</span>.<span class="pl-en">arange</span>(<span class="pl-c1">5</span>), <span class="pl-s1">where</span><span class="pl-c1">=</span><span class="pl-s1">np</span>.<span class="pl-en">array</span>([<span class="pl-c1">0</span>,<span class="pl-c1">0</span>,<span class="pl-c1">1</span>,<span class="pl-c1">1</span>,<span class="pl-c1">0</span>],<span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">bool</span>))
<span class="pl-en">array</span>([ <span class="pl-c1">0</span>, <span class="pl-c1">1</span>, <span class="pl-c1">-</span><span class="pl-c1">2</span>, <span class="pl-c1">-</span><span class="pl-c1">3</span>, <span class="pl-c1">4</span>])</pre></div> | 1 |
<p dir="auto">Challenge <a href="https://www.freecodecamp.com/challenges/steamroller#?solution=var%20result%20%3D%20%5B%5D%3B%0Afunction%20steamrollArray%28arr%29%20%7B%0A%20%20%2F%2F%20I'm%20a%20steamroller%2C%20baby%0A%20%20for%28var%20i%20%3D%200%3B%20i%3Carr.length%3B%20i%2B%2B%29%0A%20%20%20%20%7B%0A%20%20%20%20%20%20if%28Array.isArray%28arr%5Bi%5D%29%29%0A%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20steamrollArray%28arr%5Bi%5D%29%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20else%20if%28!Array.isArray%28arr%5Bi%5D%29%20%26%26%20arr%5Bi%5D%20!%3D%3D%20null%29%0A%20%20%20%20%20%20%20%20%7B%20%0A%20%20%20%20%20%20%20%20%20%20result.push%28arr%5Bi%5D%29%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20return%20result%3B%0A%7D%0A%0AsteamrollArray%28%5B1%2C%20%7B%7D%2C%20%5B3%2C%20%5B%5B4%5D%5D%5D%5D%29%3B%0A" rel="nofollow">Steamroller</a> has an issue.<br>
User Agent is: <code class="notranslate">Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36</code>.<br>
Please describe how to reproduce this issue, and include links to screenshots if possible.</p>
<p dir="auto">My code:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var result = [];
function steamrollArray(arr) {
// I'm a steamroller, baby
for(var i = 0; i<arr.length; i++)
{
if(Array.isArray(arr[i]))
{
steamrollArray(arr[i]);
}
else if(!Array.isArray(arr[i]) && arr[i] !== null)
{
result.push(arr[i]);
}
}
return result;
}
steamrollArray([1, {}, [3, [[4]]]]);
"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">result</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">function</span> <span class="pl-en">steamrollArray</span><span class="pl-kos">(</span><span class="pl-s1">arr</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-c">// I'm a steamroller, baby</span>
<span class="pl-k">for</span><span class="pl-kos">(</span><span class="pl-k">var</span> <span class="pl-s1">i</span> <span class="pl-c1">=</span> <span class="pl-c1">0</span><span class="pl-kos">;</span> <span class="pl-s1">i</span><span class="pl-c1"><</span><span class="pl-s1">arr</span><span class="pl-kos">.</span><span class="pl-c1">length</span><span class="pl-kos">;</span> <span class="pl-s1">i</span><span class="pl-c1">++</span><span class="pl-kos">)</span>
<span class="pl-kos">{</span>
<span class="pl-k">if</span><span class="pl-kos">(</span><span class="pl-v">Array</span><span class="pl-kos">.</span><span class="pl-en">isArray</span><span class="pl-kos">(</span><span class="pl-s1">arr</span><span class="pl-kos">[</span><span class="pl-s1">i</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">)</span>
<span class="pl-kos">{</span>
<span class="pl-en">steamrollArray</span><span class="pl-kos">(</span><span class="pl-s1">arr</span><span class="pl-kos">[</span><span class="pl-s1">i</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">else</span> <span class="pl-k">if</span><span class="pl-kos">(</span><span class="pl-c1">!</span><span class="pl-v">Array</span><span class="pl-kos">.</span><span class="pl-en">isArray</span><span class="pl-kos">(</span><span class="pl-s1">arr</span><span class="pl-kos">[</span><span class="pl-s1">i</span><span class="pl-kos">]</span><span class="pl-kos">)</span> <span class="pl-c1">&&</span> <span class="pl-s1">arr</span><span class="pl-kos">[</span><span class="pl-s1">i</span><span class="pl-kos">]</span> <span class="pl-c1">!==</span> <span class="pl-c1">null</span><span class="pl-kos">)</span>
<span class="pl-kos">{</span>
<span class="pl-s1">result</span><span class="pl-kos">.</span><span class="pl-en">push</span><span class="pl-kos">(</span><span class="pl-s1">arr</span><span class="pl-kos">[</span><span class="pl-s1">i</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-k">return</span> <span class="pl-s1">result</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-en">steamrollArray</span><span class="pl-kos">(</span><span class="pl-kos">[</span><span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-kos">{</span><span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-c1">3</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-kos">[</span><span class="pl-c1">4</span><span class="pl-kos">]</span><span class="pl-kos">]</span><span class="pl-kos">]</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> | <h4 dir="auto">Challenge Name</h4>
<p dir="auto">Mainly JavaScript challenges</p>
<h4 dir="auto">Issue Description</h4>
<p dir="auto">We've had many coding issues made on GitHub (a list of some from the past few months: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="163600609" data-permission-text="Title is private" data-url="https://github.com/freeCodeCamp/freeCodeCamp/issues/9532" data-hovercard-type="issue" data-hovercard-url="/freeCodeCamp/freeCodeCamp/issues/9532/hovercard" href="https://github.com/freeCodeCamp/freeCodeCamp/issues/9532">#9532</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="160217089" data-permission-text="Title is private" data-url="https://github.com/freeCodeCamp/freeCodeCamp/issues/9137" data-hovercard-type="issue" data-hovercard-url="/freeCodeCamp/freeCodeCamp/issues/9137/hovercard" href="https://github.com/freeCodeCamp/freeCodeCamp/issues/9137">#9137</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="159891587" data-permission-text="Title is private" data-url="https://github.com/freeCodeCamp/freeCodeCamp/issues/9118" data-hovercard-type="issue" data-hovercard-url="/freeCodeCamp/freeCodeCamp/issues/9118/hovercard" href="https://github.com/freeCodeCamp/freeCodeCamp/issues/9118">#9118</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="158433844" data-permission-text="Title is private" data-url="https://github.com/freeCodeCamp/freeCodeCamp/issues/8940" data-hovercard-type="issue" data-hovercard-url="/freeCodeCamp/freeCodeCamp/issues/8940/hovercard" href="https://github.com/freeCodeCamp/freeCodeCamp/issues/8940">#8940</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="159492002" data-permission-text="Title is private" data-url="https://github.com/freeCodeCamp/freeCodeCamp/issues/9058" data-hovercard-type="issue" data-hovercard-url="/freeCodeCamp/freeCodeCamp/issues/9058/hovercard" href="https://github.com/freeCodeCamp/freeCodeCamp/issues/9058">#9058</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="152881272" data-permission-text="Title is private" data-url="https://github.com/freeCodeCamp/freeCodeCamp/issues/8436" data-hovercard-type="issue" data-hovercard-url="/freeCodeCamp/freeCodeCamp/issues/8436/hovercard" href="https://github.com/freeCodeCamp/freeCodeCamp/issues/8436">#8436</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="150636738" data-permission-text="Title is private" data-url="https://github.com/freeCodeCamp/freeCodeCamp/issues/8266" data-hovercard-type="issue" data-hovercard-url="/freeCodeCamp/freeCodeCamp/issues/8266/hovercard" href="https://github.com/freeCodeCamp/freeCodeCamp/issues/8266">#8266</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="148879419" data-permission-text="Title is private" data-url="https://github.com/freeCodeCamp/freeCodeCamp/issues/8156" data-hovercard-type="issue" data-hovercard-url="/freeCodeCamp/freeCodeCamp/issues/8156/hovercard" href="https://github.com/freeCodeCamp/freeCodeCamp/issues/8156">#8156</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="148062631" data-permission-text="Title is private" data-url="https://github.com/freeCodeCamp/freeCodeCamp/issues/8092" data-hovercard-type="issue" data-hovercard-url="/freeCodeCamp/freeCodeCamp/issues/8092/hovercard" href="https://github.com/freeCodeCamp/freeCodeCamp/issues/8092">#8092</a> [comment within this issue], <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="142091010" data-permission-text="Title is private" data-url="https://github.com/freeCodeCamp/freeCodeCamp/issues/7655" data-hovercard-type="issue" data-hovercard-url="/freeCodeCamp/freeCodeCamp/issues/7655/hovercard" href="https://github.com/freeCodeCamp/freeCodeCamp/issues/7655">#7655</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="138860379" data-permission-text="Title is private" data-url="https://github.com/freeCodeCamp/freeCodeCamp/issues/7441" data-hovercard-type="issue" data-hovercard-url="/freeCodeCamp/freeCodeCamp/issues/7441/hovercard" href="https://github.com/freeCodeCamp/freeCodeCamp/issues/7441">#7441</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="142057158" data-permission-text="Title is private" data-url="https://github.com/freeCodeCamp/freeCodeCamp/issues/7629" data-hovercard-type="issue" data-hovercard-url="/freeCodeCamp/freeCodeCamp/issues/7629/hovercard" href="https://github.com/freeCodeCamp/freeCodeCamp/issues/7629">#7629</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="139386806" data-permission-text="Title is private" data-url="https://github.com/freeCodeCamp/freeCodeCamp/issues/7470" data-hovercard-type="issue" data-hovercard-url="/freeCodeCamp/freeCodeCamp/issues/7470/hovercard" href="https://github.com/freeCodeCamp/freeCodeCamp/issues/7470">#7470</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="139065109" data-permission-text="Title is private" data-url="https://github.com/freeCodeCamp/freeCodeCamp/issues/7453" data-hovercard-type="issue" data-hovercard-url="/freeCodeCamp/freeCodeCamp/issues/7453/hovercard" href="https://github.com/freeCodeCamp/freeCodeCamp/issues/7453">#7453</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="138873931" data-permission-text="Title is private" data-url="https://github.com/freeCodeCamp/freeCodeCamp/issues/7442" data-hovercard-type="issue" data-hovercard-url="/freeCodeCamp/freeCodeCamp/issues/7442/hovercard" href="https://github.com/freeCodeCamp/freeCodeCamp/issues/7442">#7442</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="122093245" data-permission-text="Title is private" data-url="https://github.com/freeCodeCamp/freeCodeCamp/issues/5290" data-hovercard-type="issue" data-hovercard-url="/freeCodeCamp/freeCodeCamp/issues/5290/hovercard" href="https://github.com/freeCodeCamp/freeCodeCamp/issues/5290">#5290</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="119586186" data-permission-text="Title is private" data-url="https://github.com/freeCodeCamp/freeCodeCamp/issues/4819" data-hovercard-type="issue" data-hovercard-url="/freeCodeCamp/freeCodeCamp/issues/4819/hovercard" href="https://github.com/freeCodeCamp/freeCodeCamp/issues/4819">#4819</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="119054058" data-permission-text="Title is private" data-url="https://github.com/freeCodeCamp/freeCodeCamp/issues/4733" data-hovercard-type="issue" data-hovercard-url="/freeCodeCamp/freeCodeCamp/issues/4733/hovercard" href="https://github.com/freeCodeCamp/freeCodeCamp/issues/4733">#4733</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="118604482" data-permission-text="Title is private" data-url="https://github.com/freeCodeCamp/freeCodeCamp/issues/4686" data-hovercard-type="issue" data-hovercard-url="/freeCodeCamp/freeCodeCamp/issues/4686/hovercard" href="https://github.com/freeCodeCamp/freeCodeCamp/issues/4686">#4686</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="115240930" data-permission-text="Title is private" data-url="https://github.com/freeCodeCamp/freeCodeCamp/issues/4187" data-hovercard-type="issue" data-hovercard-url="/freeCodeCamp/freeCodeCamp/issues/4187/hovercard" href="https://github.com/freeCodeCamp/freeCodeCamp/issues/4187">#4187</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="111610389" data-permission-text="Title is private" data-url="https://github.com/freeCodeCamp/freeCodeCamp/issues/3755" data-hovercard-type="issue" data-hovercard-url="/freeCodeCamp/freeCodeCamp/issues/3755/hovercard" href="https://github.com/freeCodeCamp/freeCodeCamp/issues/3755">#3755</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="96227595" data-permission-text="Title is private" data-url="https://github.com/freeCodeCamp/freeCodeCamp/issues/1345" data-hovercard-type="issue" data-hovercard-url="/freeCodeCamp/freeCodeCamp/issues/1345/hovercard" href="https://github.com/freeCodeCamp/freeCodeCamp/issues/1345">#1345</a>) on why their code doesn't work, which turn out to be because they have a global variable they mutate with their function.</p>
<h4 dir="auto">Proposed Fix (Updated)</h4>
<p dir="auto"><del>Somewhere early in the JavaScript challenges have a note on how the tests work, in that they will only run your function and any global variables mutated in the process will keep their state.</del></p>
<ul dir="auto">
<li>Detect unsafe global variable code and wrap them in isolated blocked scope.</li>
<li>Display a notification in such cases if applicable and tests fail to run.</li>
</ul>
<p dir="auto">cc/ <a class="team-mention js-team-mention notranslate" data-error-text="Failed to load team members" data-id="1720971" data-permission-text="Team members are private" data-url="/orgs/freeCodeCamp/teams/moderators/members" data-hovercard-type="team" data-hovercard-url="/orgs/freeCodeCamp/teams/moderators/hovercard" href="https://github.com/orgs/freeCodeCamp/teams/moderators">@freeCodeCamp/moderators</a></p> | 1 |
<p dir="auto">When displaying an image with <code class="notranslate">matshow</code>, the values <code class="notranslate">x,y</code> of the cursor position is displayed. It would be useful to also display the value of the array at this position (tuple for RGB image with imshow).</p> | <p dir="auto">In Matlab, imshow pets you see the data value under the mouse cursor. This would be helpful in Matplotlib. I'm thinking it would go at to bottom of the window where the mouse-position text is.</p>
<p dir="auto">This seems like it should be easy to add. I'm just not sure where I need to look to add it. If someone can tell me where to look, I'll take a stab at it. Where is the code that does the x=, y= text?</p> | 1 |
<p dir="auto">When selecting a new 'Canvas zone' I should, as a user, click on 'edit layout'. However, I am able to click on 'Apply'. The screen closes, but nothing happens and the zone is never created.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/9866362/94425985-2a804d00-018d-11eb-8105-4390bfe1dba3.png"><img src="https://user-images.githubusercontent.com/9866362/94425985-2a804d00-018d-11eb-8105-4390bfe1dba3.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">Additionally, the 'create new layout' button is visualized as a zone itself.<br>
Would make more sense to have this as an action button that will create the zone and takes you to the Canvas zone editor directly.</p>
<p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/enricogior/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/enricogior">@enricogior</a></p> | <p dir="auto">If no custom layout exists the entry "create new custom" could be automatically selected.<br>
And instead of the button 'Apply' the button 'Edit selected layout' should be selected.</p>
<h3 dir="auto">Expected behavior</h3>
<p dir="auto">If I switch to "custom Layouts" and there is no Layout exists, the entry "create new custom" is selected. That indicates that clicking on "edit selected Layout" creates a new one.</p>
<p dir="auto">Without existing custom layout or when the item "create new custom" is selected the button <code class="notranslate">Apply</code> shouldn't work. Instead only the button <code class="notranslate">Edit selected layout</code> should be selected and should working.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/61519853/79635030-98503380-816e-11ea-8f34-e0d2e269de86.png"><img src="https://user-images.githubusercontent.com/61519853/79635030-98503380-816e-11ea-8f34-e0d2e269de86.png" alt="image" style="max-width: 100%;"></a></p>
<h3 dir="auto">Actual behavior</h3>
<p dir="auto">The entry "create new custom" is not selected. But I can create a new Layout while only clicking at "Edit selected layout".</p>
<p dir="auto">It also makes no sense, that in this situation the button <code class="notranslate">Apply</code> is selected and works!</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/61519853/79633518-57ecb780-8166-11ea-9ece-b3d4d3c6df35.png"><img src="https://user-images.githubusercontent.com/61519853/79633518-57ecb780-8166-11ea-9ece-b3d4d3c6df35.png" alt="image" style="max-width: 100%;"></a></p> | 1 |
<p dir="auto">If I run a test with<br>
<code class="notranslate">shuffle(np.arange(10), random_state=0)</code><br>
<del>I will get a different result when another test was run before.</del><br>
it is more complicated...</p> | <p dir="auto">When I run<br>
<code class="notranslate">nosetests sklearn</code><br>
everything looks fine, If I do<br>
<code class="notranslate">nosetests sklearn/svm/tests/</code><br>
I get an error in <code class="notranslate">test_sparse.py</code>, but when I do<br>
<code class="notranslate">nosetests sklearn/svm/tests/test_sparse.py</code><br>
I get no error.</p>
<p dir="auto">I guess this has something to do with the shuffling of the dataset or other random things.<br>
I thought the way it is written the shuffling is done once and for all for all the tests so I don't really understand how this can happen. Any ideas?</p> | 1 |
<p dir="auto">Hi, i have example of own defined hook which returns always memorized callback <code class="notranslate">setValue</code>:</p>
<p dir="auto"><strong>Problem</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" const [value, setValue] = useAppState( ... );
"><pre class="notranslate"><code class="notranslate"> const [value, setValue] = useAppState( ... );
</code></pre></div>
<p dir="auto">Then <code class="notranslate">setValue</code> used in hook which required deps, for example useEffect:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" useEffect(() => {
if (value != 'a') {
setValue('a');
}
}, [value]);"><pre class="notranslate"><code class="notranslate"> useEffect(() => {
if (value != 'a') {
setValue('a');
}
}, [value]);
</code></pre></div>
<p dir="auto">But unlike 'useState' this generates an error:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/5655858/158798838-82fb7ffe-9907-4db2-8276-3230a68610a8.png"><img src="https://user-images.githubusercontent.com/5655858/158798838-82fb7ffe-9907-4db2-8276-3230a68610a8.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">I am found source which contain function to check this here:</p>
<p dir="auto"><a href="https://github.com/facebook/react/blob/9198a5cec0936a21a5ba194a22fcbac03eba5d1d/packages/eslint-plugin-react-hooks/src/ExhaustiveDeps.js">https://github.com/facebook/react/blob/9198a5cec0936a21a5ba194a22fcbac03eba5d1d/packages/eslint-plugin-react-hooks/src/ExhaustiveDeps.js</a></p>
<p dir="auto"><strong>Suggestion</strong><br>
Add configuration options to set own hooks to be handled as out of the box</p> | <p dir="auto">Right now only <code class="notranslate">useRef</code> and other first-party hooks are allowed to return a stable result that is not required to be listed in the dependencies array of other hooks.</p>
<p dir="auto">We have the <code class="notranslate">react-hooks/exhaustive-deps</code>' <code class="notranslate">additionalHooks</code> option to specify additional hooks that take dependencies arrays, but we don't have a way to describe a hook that returns a stable result.</p>
<p dir="auto">An example of such hook could be:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const useLatest = (value) => {
const ref = useRef(value);
ref.current = value;
return ref;
};"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-en">useLatest</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-s1">value</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">ref</span> <span class="pl-c1">=</span> <span class="pl-en">useRef</span><span class="pl-kos">(</span><span class="pl-s1">value</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">ref</span><span class="pl-kos">.</span><span class="pl-c1">current</span> <span class="pl-c1">=</span> <span class="pl-s1">value</span><span class="pl-kos">;</span>
<span class="pl-k">return</span> <span class="pl-s1">ref</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">It would be extremely useful being able to define custom hooks like this with a rule that could look like the following:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=""react-hooks/exhaustive-deps": [
"warn",
{
"stableKnownHookValues": "(useLatest|useSomethingElse)"
}
]"><pre class="notranslate"><code class="notranslate">"react-hooks/exhaustive-deps": [
"warn",
{
"stableKnownHookValues": "(useLatest|useSomethingElse)"
}
]
</code></pre></div>
<p dir="auto">I'd be willing to work on a PR if this idea is deemed useful.</p> | 1 |
<h3 dir="auto">Model description</h3>
<p dir="auto">Hi,</p>
<p dir="auto">My name is Alexander, I am writing to you on behalf of Silero, a company maintaining our project <a href="https://github.com/snakers4/silero-models">silero-models</a>.<br>
We noticed that our models are rehosted here - <a href="https://huggingface.co/spaces/pytorch/silero_tts" rel="nofollow">https://huggingface.co/spaces/pytorch/silero_tts</a> or here <a href="https://huggingface.co/spaces?search=silero" rel="nofollow">https://huggingface.co/spaces?search=silero</a>.<br>
We did not explicitly grant Hugging Face, Inc. any sort of permission to rehost, relicense and profit from our work and models.<br>
Moreover it openly disregards our CC BY-NC-SA license.<br>
Please immediately remove any of our models from your website and / or any of your resources.</p>
<p dir="auto">Best,<br>
Alexander</p>
<h3 dir="auto">Open source status</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> The model implementation is available</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> The model weights are available</li>
</ul>
<h3 dir="auto">Provide useful links for the implementation</h3>
<p dir="auto"><em>No response</em></p> | <p dir="auto">Hi,</p>
<p dir="auto">My name is Alexander, I am writing to you on behalf of Silero, a company maintaining our project <a href="https://github.com/snakers4/silero-models">silero-models</a>.<br>
We noticed that our models are hosted here - <a href="https://huggingface.co/spaces/pytorch/silero_tts" rel="nofollow">https://huggingface.co/spaces/pytorch/silero_tts</a> or here <a href="https://huggingface.co/spaces?search=silero" rel="nofollow">https://huggingface.co/spaces?search=silero</a>.<br>
We did not explicitly grant Hugging Face, Inc. any sort of permission to rehost, relicense and profit from our work and models.<br>
Moreover it openly disregards our CC BY-NC-SA license.<br>
Please immediately remove any of our models from your website and / or any of your resources.</p>
<p dir="auto">Best,<br>
Alexander</p> | 1 |
<p dir="auto">On Elasticsearch 1.2.1, running the command</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="PUT /vd-rsa-2014-06-10-17/_settings
{
"index" : {
"cache.filter.expire" : "5m"
}
}"><pre class="notranslate"><code class="notranslate">PUT /vd-rsa-2014-06-10-17/_settings
{
"index" : {
"cache.filter.expire" : "5m"
}
}
</code></pre></div>
<p dir="auto">returns:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
"error": "ElasticsearchIllegalArgumentException[Can't update non dynamic settings[[index.cache.filter.expire]] for open indices[[vd-rsa-2014-06-10-17]]]",
"status": 400
}"><pre class="notranslate"><code class="notranslate">{
"error": "ElasticsearchIllegalArgumentException[Can't update non dynamic settings[[index.cache.filter.expire]] for open indices[[vd-rsa-2014-06-10-17]]]",
"status": 400
}
</code></pre></div>
<p dir="auto">This should have worked, according to the documentation on the site and <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="798387" data-permission-text="Title is private" data-url="https://github.com/elastic/elasticsearch/issues/874" data-hovercard-type="issue" data-hovercard-url="/elastic/elasticsearch/issues/874/hovercard" href="https://github.com/elastic/elasticsearch/issues/874">#874</a></p> | <p dir="auto">On Elasticsearch 1.2.1, running the command</p>
<p dir="auto">PUT /vd-rsa-2014-06-10-17/_settings<br>
{<br>
"index" : {<br>
"cache.filter.expire" : "5m"<br>
}<br>
}</p>
<p dir="auto">gives mes:</p>
<p dir="auto">{<br>
"error": "ElasticsearchIllegalArgumentException[Can't update non dynamic settings[[index.cache.filter.expire]] for open indices[[vd-rsa-2014-06-10-17]]]",<br>
"status": 400<br>
}</p>
<p dir="auto">This should have worked, according to the documentation on the site and <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="798387" data-permission-text="Title is private" data-url="https://github.com/elastic/elasticsearch/issues/874" data-hovercard-type="issue" data-hovercard-url="/elastic/elasticsearch/issues/874/hovercard" href="https://github.com/elastic/elasticsearch/issues/874">#874</a></p> | 1 |
<p dir="auto">I tried using "keyboard.press(control+shift+k)" in the msedge browser to Duplicate Browser Tabs in the same state, but it gave an error.</p>
<p dir="auto">so Is there any way to Duplicate Browser Tabs. thanks.</p> | <h3 dir="auto">System info</h3>
<ul dir="auto">
<li>Playwright Version: [v1.33.0]</li>
<li>Operating System: [All, Windows 11, Ubuntu 20, macOS 13.2, etc.]</li>
<li>Browser: [All, Chromium, Firefox, WebKit]</li>
<li>Other info:</li>
</ul>
<h3 dir="auto">Source code</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I provided exact source code that allows reproducing the issue locally.</li>
</ul>
<p dir="auto"><strong>Link to the GitHub repository with the repro</strong></p>
<p dir="auto">[<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1717122877" data-permission-text="Title is private" data-url="https://github.com/microsoft/playwright/issues/23158" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/playwright/pull/23158/hovercard" href="https://github.com/microsoft/playwright/pull/23158">/pull/23158</a>]</p>
<p dir="auto"><strong>Expected</strong><br>
10 files of 50MB or 30MB should be added to input</p>
<p dir="auto"><strong>Actual</strong></p>
<p dir="auto">files are not added to input</p> | 0 |
<h3 dir="auto">Preflight Checklist</h3>
<ul dir="auto">
<li>[ I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project. ]</li>
<li>[ 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>[ 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>Electron v11.0.4</li>
</ul>
</li>
<li><strong>Operating System:</strong>
<ul dir="auto">
<li>Windows 10</li>
</ul>
</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">I am using net.request. usually net.request will return set-cookie in the response only in 200 response. In case of redirect response like 301, 304, the set-cookie header will not be returned even though it exists on the header. It should be returned.</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">set-cookie response header is not coming in the response</p>
<p dir="auto">Please check this link. Already someone asked the same issue..<br>
<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="628014135" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/23865" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/23865/hovercard" href="https://github.com/electron/electron/issues/23865">#23865</a></p> | <ul dir="auto">
<li><strong>Electron Version:</strong><br>
-4.0.4</li>
<li><strong>Operating System:</strong><br>
-Window 10</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">I'm checking for update in every 3 hours. So If update is available I'll create a dialog.showMessageBox popup and it will notify the user that update is available do you want to download. Again in next 3 hours the popup will appear but this time 2 popups will appear and in next 3 hour 3 and so on.</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">When popup is hide it should removed from the memory.</p>
<h3 dir="auto">To Reproduce</h3>
<h3 dir="auto">Screenshots</h3>
<h3 dir="auto">Additional Information</h3>
<p dir="auto">main.js</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const {app, BrowserWindow, dialog, ipcMain} = require('electron'); // Load electron and import it's modules
const {autoUpdater} = require('electron-updater'); // electron updater to update the application on run-time.
const log = require('electron-log');
const downloadProgressBar = require('electron-progressbar'); // progressbar to show update downloading process.
console.dir(dialog.showMessageBox)
const appData = require('./config.js');
let CONFIG_DATA = appData.module;
const server = 'http://localhost:8080';
let isPageLoaded = false;
let updateAvailabelPopup = null;
let errorPopup = null;
let progressWindow = null;
let installUpdatePopup = null;
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
let win;
let downloadProgress = 0;
autoUpdater.logger = log;
autoUpdater.logger.transports.file.level = 'info';
autoUpdater.autoDownload = CONFIG_DATA.updateAutoDownload; // update auto download is false.
autoUpdater.autoInstallOnAppQuit = CONFIG_DATA.autoInstallOnAppQuit; // app install on quit automatically is false.
//autoUpdater.channel = 'latest';
process.env.NODE_ENV = CONFIG_DATA.developmentMode; // set mode to production.
function createWindow () {
// Create the browser window.
win = new BrowserWindow({width: CONFIG_DATA.windowWidth, height: CONFIG_DATA.windowHeight, fullscreen: CONFIG_DATA.isFullScreenScreen});
win.setMenu(null);
// Open the DevTools.
win.webContents.openDevTools();
// Emitted when the window is closed.
win.on('closed', () => {
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
win = null;
});
}
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on('ready', () => {
autoUpdater.setFeedURL(server);
autoUpdater.checkForUpdates(); // Initiate the checking for latest update.
setInterval(() => {
autoUpdater.checkForUpdates();
}, 1000 * 60 * 3);
createWindow(); // Create the game window.
});
// Quit when all windows are closed.
app.on('window-all-closed', () => {
// On macOS it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
app.quit();
}
});
app.on('activate', () => {
// On macOS it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (win === null) {
createWindow();
}
});
// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and require them here.
app.on("test",(arg) => {
win.webContents.print({silent: false});
});
// check if update is availabel.
autoUpdater.on('checking-for-update', () => {
// If update is availabel download it now or later.
console.log('checking for update......!!!!!!')
autoUpdater.on('update-available', (ev,info) => {
updateAvailabelPopup = dialog.showMessageBox({
type: 'info',
title: 'Update Availabel',
messgae: 'A new Update availabel. Please update now.',
buttons: ['Update', 'No'],
cancelId: 1
}, (index, val) => {
if(index === 1){
// if user cancel update load the game.
if(!isPageLoaded)
loadPage();
return;
}else{
// If update have any error.
autoUpdater.on('error', (ev, err) => {
win.quit();
errorPopup = dialog.showMessageBox({
type: 'info',
title: 'Error',
message: 'Error...',
detail: err,
cancelId: 1
});
});
// Download the update.
autoUpdater.downloadUpdate();
//if( process.platform !== 'win32'){
progressWindow = new downloadProgressBar({
title: 'Downloading Update...',
text: 'Downloading Update. Please Wait...',
detail: 'Wait...',
indeterminate: CONFIG_DATA.progressType
})
autoUpdater.on('download-progress', ({percent}) => {
console.log('download progress')
progressWindow.value = percent;
downloadProgress = percent;
});
progressWindow.on('progress', (value) => {
progressWindow.detail = downloadProgress.toFixed(1);
})
.on('aborted', function() {
if(win) win.quit();
});
//}
// Update is downloaded.
autoUpdater.on('update-downloaded', (event, releaseNotes, releaseName) => {
progressWindow.setCompleted();
console.log('update downloaded')
const dialogOptns = {
type: 'info',
title: 'Update Ready..!!',
message: process.platform === 'win32' ? releaseNotes : releaseName,
buttons: ['Yes', 'Later'] ,
cancelId: 1
}
installUpdatePopup = dialog.showMessageBox(dialogOptns, (response) => {
if(response === 0) autoUpdater.quitAndInstall();
else if(!isPageLoaded) loadPage();
})
})
}
})
});
// Load the game if update is not availabel.
autoUpdater.on('update-not-available', (ev,info) => {
// and load the index.html of the app.
if(!isPageLoaded){
loadPage();
}
});
if(isPageLoaded){
win.reload()
}
});
function loadPage(ref){
isPageLoaded = true;
win.loadFile('app/index.html');
}
function cleanUp(popupArray){
console.log(popupArray)
for(let popup of popupArray){
if(popup !== null && popup !== undefined){
popup.destroy();
}
}
}"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-kos">{</span>app<span class="pl-kos">,</span> BrowserWindow<span class="pl-kos">,</span> dialog<span class="pl-kos">,</span> ipcMain<span class="pl-kos">}</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'electron'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Load electron and import it's modules</span>
<span class="pl-k">const</span> <span class="pl-kos">{</span>autoUpdater<span class="pl-kos">}</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'electron-updater'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// electron updater to update the application on run-time.</span>
<span class="pl-k">const</span> <span class="pl-s1">log</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'electron-log'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">downloadProgressBar</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'electron-progressbar'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// progressbar to show update downloading process.</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">dir</span><span class="pl-kos">(</span><span class="pl-s1">dialog</span><span class="pl-kos">.</span><span class="pl-c1">showMessageBox</span><span class="pl-kos">)</span>
<span class="pl-k">const</span> <span class="pl-s1">appData</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'./config.js'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">let</span> <span class="pl-c1">CONFIG_DATA</span> <span class="pl-c1">=</span> <span class="pl-s1">appData</span><span class="pl-kos">.</span><span class="pl-c1">module</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">server</span> <span class="pl-c1">=</span> <span class="pl-s">'http://localhost:8080'</span><span class="pl-kos">;</span>
<span class="pl-k">let</span> <span class="pl-s1">isPageLoaded</span> <span class="pl-c1">=</span> <span class="pl-c1">false</span><span class="pl-kos">;</span>
<span class="pl-k">let</span> <span class="pl-s1">updateAvailabelPopup</span> <span class="pl-c1">=</span> <span class="pl-c1">null</span><span class="pl-kos">;</span>
<span class="pl-k">let</span> <span class="pl-s1">errorPopup</span> <span class="pl-c1">=</span> <span class="pl-c1">null</span><span class="pl-kos">;</span>
<span class="pl-k">let</span> <span class="pl-s1">progressWindow</span> <span class="pl-c1">=</span> <span class="pl-c1">null</span><span class="pl-kos">;</span>
<span class="pl-k">let</span> <span class="pl-s1">installUpdatePopup</span> <span class="pl-c1">=</span> <span class="pl-c1">null</span><span class="pl-kos">;</span>
<span class="pl-c">// Keep a global reference of the window object, if you don't, the window will</span>
<span class="pl-c">// be closed automatically when the JavaScript object is garbage collected.</span>
<span class="pl-k">let</span> <span class="pl-s1">win</span><span class="pl-kos">;</span>
<span class="pl-k">let</span> <span class="pl-s1">downloadProgress</span> <span class="pl-c1">=</span> <span class="pl-c1">0</span><span class="pl-kos">;</span>
<span class="pl-s1">autoUpdater</span><span class="pl-kos">.</span><span class="pl-c1">logger</span> <span class="pl-c1">=</span> <span class="pl-s1">log</span><span class="pl-kos">;</span>
<span class="pl-s1">autoUpdater</span><span class="pl-kos">.</span><span class="pl-c1">logger</span><span class="pl-kos">.</span><span class="pl-c1">transports</span><span class="pl-kos">.</span><span class="pl-c1">file</span><span class="pl-kos">.</span><span class="pl-c1">level</span> <span class="pl-c1">=</span> <span class="pl-s">'info'</span><span class="pl-kos">;</span>
<span class="pl-s1">autoUpdater</span><span class="pl-kos">.</span><span class="pl-c1">autoDownload</span> <span class="pl-c1">=</span> <span class="pl-c1">CONFIG_DATA</span><span class="pl-kos">.</span><span class="pl-c1">updateAutoDownload</span><span class="pl-kos">;</span> <span class="pl-c">// update auto download is false.</span>
<span class="pl-s1">autoUpdater</span><span class="pl-kos">.</span><span class="pl-c1">autoInstallOnAppQuit</span> <span class="pl-c1">=</span> <span class="pl-c1">CONFIG_DATA</span><span class="pl-kos">.</span><span class="pl-c1">autoInstallOnAppQuit</span><span class="pl-kos">;</span> <span class="pl-c">// app install on quit automatically is false.</span>
<span class="pl-c">//autoUpdater.channel = 'latest';</span>
<span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">NODE_ENV</span> <span class="pl-c1">=</span> <span class="pl-c1">CONFIG_DATA</span><span class="pl-kos">.</span><span class="pl-c1">developmentMode</span><span class="pl-kos">;</span> <span class="pl-c">// set mode to production.</span>
<span class="pl-k">function</span> <span class="pl-en">createWindow</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-c">// Create the browser window.</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">width</span>: <span class="pl-c1">CONFIG_DATA</span><span class="pl-kos">.</span><span class="pl-c1">windowWidth</span><span class="pl-kos">,</span> <span class="pl-c1">height</span>: <span class="pl-c1">CONFIG_DATA</span><span class="pl-kos">.</span><span class="pl-c1">windowHeight</span><span class="pl-kos">,</span> <span class="pl-c1">fullscreen</span>: <span class="pl-c1">CONFIG_DATA</span><span class="pl-kos">.</span><span class="pl-c1">isFullScreenScreen</span><span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">win</span><span class="pl-kos">.</span><span class="pl-en">setMenu</span><span class="pl-kos">(</span><span class="pl-c1">null</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">// Open the DevTools.</span>
<span class="pl-s1">win</span><span class="pl-kos">.</span><span class="pl-c1">webContents</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-c">// Emitted when the window is closed.</span>
<span class="pl-s1">win</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">'closed'</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">// Dereference the window object, usually you would store windows</span>
<span class="pl-c">// in an array if your app supports multi windows, this is the time</span>
<span class="pl-c">// when you should delete the corresponding element.</span>
<span class="pl-s1">win</span> <span class="pl-c1">=</span> <span class="pl-c1">null</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-c">// This method will be called when Electron has finished</span>
<span class="pl-c">// initialization and is ready to create browser windows.</span>
<span class="pl-c">// Some APIs can only be used after this event occurs.</span>
<span class="pl-s1">app</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">'ready'</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-s1">autoUpdater</span><span class="pl-kos">.</span><span class="pl-en">setFeedURL</span><span class="pl-kos">(</span><span class="pl-s1">server</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">autoUpdater</span><span class="pl-kos">.</span><span class="pl-en">checkForUpdates</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Initiate the checking for latest update.</span>
<span class="pl-en">setInterval</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-s1">autoUpdater</span><span class="pl-kos">.</span><span class="pl-en">checkForUpdates</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-c1">1000</span> <span class="pl-c1">*</span> <span class="pl-c1">60</span> <span class="pl-c1">*</span> <span class="pl-c1">3</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">createWindow</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Create the game window.</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">// Quit when all windows are closed.</span>
<span class="pl-s1">app</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">'window-all-closed'</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">// On macOS it is common for applications and their menu bar</span>
<span class="pl-c">// to stay active until the user quits explicitly with Cmd + Q</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">platform</span> <span class="pl-c1">!==</span> <span class="pl-s">'darwin'</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">app</span><span class="pl-kos">.</span><span class="pl-en">quit</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">app</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">'activate'</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">// On macOS it's common to re-create a window in the app when the</span>
<span class="pl-c">// dock icon is clicked and there are no other windows open.</span>
<span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">win</span> <span class="pl-c1">===</span> <span class="pl-c1">null</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-en">createWindow</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">// In this file you can include the rest of your app's specific main process</span>
<span class="pl-c">// code. You can also put them in separate files and require them here.</span>
<span class="pl-s1">app</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">"test"</span><span class="pl-kos">,</span><span class="pl-kos">(</span><span class="pl-s1">arg</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-s1">win</span><span class="pl-kos">.</span><span class="pl-c1">webContents</span><span class="pl-kos">.</span><span class="pl-en">print</span><span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-c1">silent</span>: <span class="pl-c1">false</span><span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">// check if update is availabel.</span>
<span class="pl-s1">autoUpdater</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">'checking-for-update'</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">// If update is availabel download it now or later.</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">'checking for update......!!!!!!'</span><span class="pl-kos">)</span>
<span class="pl-s1">autoUpdater</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">'update-available'</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-s1">ev</span><span class="pl-kos">,</span><span class="pl-s1">info</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-s1">updateAvailabelPopup</span> <span class="pl-c1">=</span> <span class="pl-s1">dialog</span><span class="pl-kos">.</span><span class="pl-en">showMessageBox</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">type</span>: <span class="pl-s">'info'</span><span class="pl-kos">,</span>
<span class="pl-c1">title</span>: <span class="pl-s">'Update Availabel'</span><span class="pl-kos">,</span>
<span class="pl-c1">messgae</span>: <span class="pl-s">'A new Update availabel. Please update now.'</span><span class="pl-kos">,</span>
<span class="pl-c1">buttons</span>: <span class="pl-kos">[</span><span class="pl-s">'Update'</span><span class="pl-kos">,</span> <span class="pl-s">'No'</span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-c1">cancelId</span>: <span class="pl-c1">1</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-s1">index</span><span class="pl-kos">,</span> <span class="pl-s1">val</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">if</span><span class="pl-kos">(</span><span class="pl-s1">index</span> <span class="pl-c1">===</span> <span class="pl-c1">1</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-c">// if user cancel update load the game.</span>
<span class="pl-k">if</span><span class="pl-kos">(</span><span class="pl-c1">!</span><span class="pl-s1">isPageLoaded</span><span class="pl-kos">)</span>
<span class="pl-en">loadPage</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-kos">}</span><span class="pl-k">else</span><span class="pl-kos">{</span>
<span class="pl-c">// If update have any error.</span>
<span class="pl-s1">autoUpdater</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">'error'</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-s1">ev</span><span class="pl-kos">,</span> <span class="pl-s1">err</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-s1">win</span><span class="pl-kos">.</span><span class="pl-en">quit</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">errorPopup</span> <span class="pl-c1">=</span> <span class="pl-s1">dialog</span><span class="pl-kos">.</span><span class="pl-en">showMessageBox</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">type</span>: <span class="pl-s">'info'</span><span class="pl-kos">,</span>
<span class="pl-c1">title</span>: <span class="pl-s">'Error'</span><span class="pl-kos">,</span>
<span class="pl-c1">message</span>: <span class="pl-s">'Error...'</span><span class="pl-kos">,</span>
<span class="pl-c1">detail</span>: <span class="pl-s1">err</span><span class="pl-kos">,</span>
<span class="pl-c1">cancelId</span>: <span class="pl-c1">1</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">// Download the update.</span>
<span class="pl-s1">autoUpdater</span><span class="pl-kos">.</span><span class="pl-en">downloadUpdate</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">//if( process.platform !== 'win32'){</span>
<span class="pl-s1">progressWindow</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-s1">downloadProgressBar</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">title</span>: <span class="pl-s">'Downloading Update...'</span><span class="pl-kos">,</span>
<span class="pl-c1">text</span>: <span class="pl-s">'Downloading Update. Please Wait...'</span><span class="pl-kos">,</span>
<span class="pl-c1">detail</span>: <span class="pl-s">'Wait...'</span><span class="pl-kos">,</span>
<span class="pl-c1">indeterminate</span>: <span class="pl-c1">CONFIG_DATA</span><span class="pl-kos">.</span><span class="pl-c1">progressType</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-s1">autoUpdater</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">'download-progress'</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-kos">{</span>percent<span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">'download progress'</span><span class="pl-kos">)</span>
<span class="pl-s1">progressWindow</span><span class="pl-kos">.</span><span class="pl-c1">value</span> <span class="pl-c1">=</span> <span class="pl-s1">percent</span><span class="pl-kos">;</span>
<span class="pl-s1">downloadProgress</span> <span class="pl-c1">=</span> <span class="pl-s1">percent</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">progressWindow</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">'progress'</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-s1">value</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-s1">progressWindow</span><span class="pl-kos">.</span><span class="pl-c1">detail</span> <span class="pl-c1">=</span> <span class="pl-s1">downloadProgress</span><span class="pl-kos">.</span><span class="pl-en">toFixed</span><span class="pl-kos">(</span><span class="pl-c1">1</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">'aborted'</span><span class="pl-kos">,</span> <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">if</span><span class="pl-kos">(</span><span class="pl-s1">win</span><span class="pl-kos">)</span> <span class="pl-s1">win</span><span class="pl-kos">.</span><span class="pl-en">quit</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">//}</span>
<span class="pl-c">// Update is downloaded.</span>
<span class="pl-s1">autoUpdater</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">'update-downloaded'</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-s1">event</span><span class="pl-kos">,</span> <span class="pl-s1">releaseNotes</span><span class="pl-kos">,</span> <span class="pl-s1">releaseName</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-s1">progressWindow</span><span class="pl-kos">.</span><span class="pl-en">setCompleted</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">'update downloaded'</span><span class="pl-kos">)</span>
<span class="pl-k">const</span> <span class="pl-s1">dialogOptns</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
<span class="pl-c1">type</span>: <span class="pl-s">'info'</span><span class="pl-kos">,</span>
<span class="pl-c1">title</span>: <span class="pl-s">'Update Ready..!!'</span><span class="pl-kos">,</span>
<span class="pl-c1">message</span>: <span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">platform</span> <span class="pl-c1">===</span> <span class="pl-s">'win32'</span> ? <span class="pl-s1">releaseNotes</span> : <span class="pl-s1">releaseName</span><span class="pl-kos">,</span>
<span class="pl-c1">buttons</span>: <span class="pl-kos">[</span><span class="pl-s">'Yes'</span><span class="pl-kos">,</span> <span class="pl-s">'Later'</span><span class="pl-kos">]</span> <span class="pl-kos">,</span>
<span class="pl-c1">cancelId</span>: <span class="pl-c1">1</span>
<span class="pl-kos">}</span>
<span class="pl-s1">installUpdatePopup</span> <span class="pl-c1">=</span> <span class="pl-s1">dialog</span><span class="pl-kos">.</span><span class="pl-en">showMessageBox</span><span class="pl-kos">(</span><span class="pl-s1">dialogOptns</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-s1">response</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">if</span><span class="pl-kos">(</span><span class="pl-s1">response</span> <span class="pl-c1">===</span> <span class="pl-c1">0</span><span class="pl-kos">)</span> <span class="pl-s1">autoUpdater</span><span class="pl-kos">.</span><span class="pl-en">quitAndInstall</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">else</span> <span class="pl-k">if</span><span class="pl-kos">(</span><span class="pl-c1">!</span><span class="pl-s1">isPageLoaded</span><span class="pl-kos">)</span> <span class="pl-en">loadPage</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">// Load the game if update is not availabel.</span>
<span class="pl-s1">autoUpdater</span><span class="pl-kos">.</span><span class="pl-en">on</span><span class="pl-kos">(</span><span class="pl-s">'update-not-available'</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-s1">ev</span><span class="pl-kos">,</span><span class="pl-s1">info</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-c">// and load the index.html of the app.</span>
<span class="pl-k">if</span><span class="pl-kos">(</span><span class="pl-c1">!</span><span class="pl-s1">isPageLoaded</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-en">loadPage</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">if</span><span class="pl-kos">(</span><span class="pl-s1">isPageLoaded</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">reload</span><span class="pl-kos">(</span><span class="pl-kos">)</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">function</span> <span class="pl-en">loadPage</span><span class="pl-kos">(</span><span class="pl-s1">ref</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-s1">isPageLoaded</span> <span class="pl-c1">=</span> <span class="pl-c1">true</span><span class="pl-kos">;</span>
<span class="pl-s1">win</span><span class="pl-kos">.</span><span class="pl-en">loadFile</span><span class="pl-kos">(</span><span class="pl-s">'app/index.html'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">function</span> <span class="pl-en">cleanUp</span><span class="pl-kos">(</span><span class="pl-s1">popupArray</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s1">popupArray</span><span class="pl-kos">)</span>
<span class="pl-k">for</span><span class="pl-kos">(</span><span class="pl-k">let</span> <span class="pl-s1">popup</span> <span class="pl-k">of</span> <span class="pl-s1">popupArray</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-k">if</span><span class="pl-kos">(</span><span class="pl-s1">popup</span> <span class="pl-c1">!==</span> <span class="pl-c1">null</span> <span class="pl-c1">&&</span> <span class="pl-s1">popup</span> <span class="pl-c1">!==</span> <span class="pl-c1">undefined</span><span class="pl-kos">)</span><span class="pl-kos">{</span>
<span class="pl-s1">popup</span><span class="pl-kos">.</span><span class="pl-en">destroy</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span></pre></div> | 0 |
<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="data_frame.groupby(pd.TimeGrouper('D', convention='start', key=time_column)).count()
data_frame.groupby([pd.TimeGrouper('D', convention='start', key=time_column)]).count()"><pre class="notranslate"><span class="pl-s1">data_frame</span>.<span class="pl-en">groupby</span>(<span class="pl-s1">pd</span>.<span class="pl-v">TimeGrouper</span>(<span class="pl-s">'D'</span>, <span class="pl-s1">convention</span><span class="pl-c1">=</span><span class="pl-s">'start'</span>, <span class="pl-s1">key</span><span class="pl-c1">=</span><span class="pl-s1">time_column</span>)).<span class="pl-en">count</span>()
<span class="pl-s1">data_frame</span>.<span class="pl-en">groupby</span>([<span class="pl-s1">pd</span>.<span class="pl-v">TimeGrouper</span>(<span class="pl-s">'D'</span>, <span class="pl-s1">convention</span><span class="pl-c1">=</span><span class="pl-s">'start'</span>, <span class="pl-s1">key</span><span class="pl-c1">=</span><span class="pl-s1">time_column</span>)]).<span class="pl-en">count</span>()</pre></div>
<p dir="auto">give below two different outputs</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" location price profit type
time
2017-07-23 1 1 1 1
2017-07-24 0 0 0 0
2017-07-25 1 1 1 1
2017-07-26 1 1 1 1
2017-07-27 3 3 3 3
2017-07-28 6 6 6 6"><pre class="notranslate"><code class="notranslate"> location price profit type
time
2017-07-23 1 1 1 1
2017-07-24 0 0 0 0
2017-07-25 1 1 1 1
2017-07-26 1 1 1 1
2017-07-27 3 3 3 3
2017-07-28 6 6 6 6
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" location price profit type
time
2017-07-23 1 1 1 1
2017-07-25 1 1 1 1
2017-07-26 1 1 1 1
2017-07-27 3 3 3 3
2017-07-28 6 6 6 6"><pre class="notranslate"><code class="notranslate"> location price profit type
time
2017-07-23 1 1 1 1
2017-07-25 1 1 1 1
2017-07-26 1 1 1 1
2017-07-27 3 3 3 3
2017-07-28 6 6 6 6
</code></pre></div>
<h4 dir="auto">Problem description</h4>
<p dir="auto">The origin data frame doesn't contain a record in 2017-07-24, you can see if I use time grouper with convention='start' lonely, the 2017-07-24 item has been filled, but if by group list, that item hasn't been filled</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: 2.7.10.final.0<br>
python-bits: 64<br>
OS: Darwin<br>
OS-release: 16.7.0<br>
machine: x86_64<br>
processor: i386<br>
byteorder: little<br>
LC_ALL: None<br>
LANG: None<br>
LOCALE: None.None</p>
<p dir="auto">pandas: 0.20.3<br>
pytest: None<br>
pip: 9.0.1<br>
setuptools: 36.2.0<br>
Cython: None<br>
numpy: 1.13.1<br>
scipy: 0.19.1<br>
xarray: None<br>
IPython: None<br>
sphinx: None<br>
patsy: None<br>
dateutil: 2.6.1<br>
pytz: 2017.2<br>
blosc: None<br>
bottleneck: None<br>
tables: None<br>
numexpr: None<br>
feather: None<br>
matplotlib: None<br>
openpyxl: None<br>
xlrd: None<br>
xlwt: None<br>
xlsxwriter: None<br>
lxml: None<br>
bs4: None<br>
html5lib: 0.9999999<br>
sqlalchemy: None<br>
pymysql: None<br>
psycopg2: None<br>
jinja2: None<br>
s3fs: None<br>
pandas_gbq: None<br>
pandas_datareader: None</p>
</details> | <h4 dir="auto">Code Sample</h4>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="
>>> df.groupby(pd.Grouper(freq='H')).agg({'value': 'mean'})
timestamp delta_t
2016-06-07 00:00:00 2.729111e+11
2016-06-07 01:00:00 NaN
2016-06-07 02:00:00 NaN
2016-06-07 03:00:00 NaN
2016-06-07 04:00:00 NaN
...
>>> df.groupby([pd.Grouper(freq='H')]).agg({'value': 'mean'})
timestamp delta_t
2016-06-07 2.729111e+11
2016-07-07 2.509444e+11
2016-07-13 2.775778e+11
2016-07-15 2.490556e+11
2016-07-16 2.676190e+11"><pre class="notranslate"><span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">df</span>.<span class="pl-en">groupby</span>(<span class="pl-s1">pd</span>.<span class="pl-v">Grouper</span>(<span class="pl-s1">freq</span><span class="pl-c1">=</span><span class="pl-s">'H'</span>)).<span class="pl-en">agg</span>({<span class="pl-s">'value'</span>: <span class="pl-s">'mean'</span>})
<span class="pl-s1">timestamp</span> <span class="pl-s1">delta_t</span>
<span class="pl-c1">2016</span><span class="pl-c1">-</span><span class="pl-c1">06</span><span class="pl-c1">-</span><span class="pl-c1">07</span> <span class="pl-c1">00</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span> <span class="pl-c1">2.729111e+11</span>
<span class="pl-c1">2016</span><span class="pl-c1">-</span><span class="pl-c1">06</span><span class="pl-c1">-</span><span class="pl-c1">07</span> <span class="pl-c1">01</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span> <span class="pl-v">NaN</span>
<span class="pl-c1">2016</span><span class="pl-c1">-</span><span class="pl-c1">06</span><span class="pl-c1">-</span><span class="pl-c1">07</span> <span class="pl-c1">02</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span> <span class="pl-v">NaN</span>
<span class="pl-c1">2016</span><span class="pl-c1">-</span><span class="pl-c1">06</span><span class="pl-c1">-</span><span class="pl-c1">07</span> <span class="pl-c1">03</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span> <span class="pl-v">NaN</span>
<span class="pl-c1">2016</span><span class="pl-c1">-</span><span class="pl-c1">06</span><span class="pl-c1">-</span><span class="pl-c1">07</span> <span class="pl-c1">04</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span> <span class="pl-v">NaN</span>
...
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">df</span>.<span class="pl-en">groupby</span>([<span class="pl-s1">pd</span>.<span class="pl-v">Grouper</span>(<span class="pl-s1">freq</span><span class="pl-c1">=</span><span class="pl-s">'H'</span>)]).<span class="pl-en">agg</span>({<span class="pl-s">'value'</span>: <span class="pl-s">'mean'</span>})
<span class="pl-s1">timestamp</span> <span class="pl-s1">delta_t</span>
<span class="pl-c1">2016</span><span class="pl-c1">-</span><span class="pl-c1">06</span><span class="pl-c1">-</span><span class="pl-c1">07</span> <span class="pl-c1">2.729111e+11</span>
<span class="pl-c1">2016</span><span class="pl-c1">-</span><span class="pl-c1">07</span><span class="pl-c1">-</span><span class="pl-c1">07</span> <span class="pl-c1">2.509444e+11</span>
<span class="pl-c1">2016</span><span class="pl-c1">-</span><span class="pl-c1">07</span><span class="pl-c1">-</span><span class="pl-c1">13</span> <span class="pl-c1">2.775778e+11</span>
<span class="pl-c1">2016</span><span class="pl-c1">-</span><span class="pl-c1">07</span><span class="pl-c1">-</span><span class="pl-c1">15</span> <span class="pl-c1">2.490556e+11</span>
<span class="pl-c1">2016</span><span class="pl-c1">-</span><span class="pl-c1">07</span><span class="pl-c1">-</span><span class="pl-c1">16</span> <span class="pl-c1">2.676190e+11</span></pre></div>
<h4 dir="auto">Problem description</h4>
<p dir="auto">This is an inconsistent behavior, and there is no mention to this on groupby or Grouper documentation.</p>
<h4 dir="auto">Expected Output</h4>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=">>> df.groupby([pd.Grouper(freq='H')]).agg({'value': 'mean'})
timestamp delta_t
2016-06-07 00:00:00 2.729111e+11
2016-06-07 01:00:00 NaN
2016-06-07 02:00:00 NaN
2016-06-07 03:00:00 NaN
2016-06-07 04:00:00 NaN"><pre class="notranslate"><span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">df</span>.<span class="pl-en">groupby</span>([<span class="pl-s1">pd</span>.<span class="pl-v">Grouper</span>(<span class="pl-s1">freq</span><span class="pl-c1">=</span><span class="pl-s">'H'</span>)]).<span class="pl-en">agg</span>({<span class="pl-s">'value'</span>: <span class="pl-s">'mean'</span>})
<span class="pl-s1">timestamp</span> <span class="pl-s1">delta_t</span>
<span class="pl-c1">2016</span><span class="pl-c1">-</span><span class="pl-c1">06</span><span class="pl-c1">-</span><span class="pl-c1">07</span> <span class="pl-c1">00</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span> <span class="pl-c1">2.729111e+11</span>
<span class="pl-c1">2016</span><span class="pl-c1">-</span><span class="pl-c1">06</span><span class="pl-c1">-</span><span class="pl-c1">07</span> <span class="pl-c1">01</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span> <span class="pl-v">NaN</span>
<span class="pl-c1">2016</span><span class="pl-c1">-</span><span class="pl-c1">06</span><span class="pl-c1">-</span><span class="pl-c1">07</span> <span class="pl-c1">02</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span> <span class="pl-v">NaN</span>
<span class="pl-c1">2016</span><span class="pl-c1">-</span><span class="pl-c1">06</span><span class="pl-c1">-</span><span class="pl-c1">07</span> <span class="pl-c1">03</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span> <span class="pl-v">NaN</span>
<span class="pl-c1">2016</span><span class="pl-c1">-</span><span class="pl-c1">06</span><span class="pl-c1">-</span><span class="pl-c1">07</span> <span class="pl-c1">04</span>:<span class="pl-c1">00</span>:<span class="pl-c1">00</span> <span class="pl-v">NaN</span></pre></div>
<h4 dir="auto">Output of <code class="notranslate">pd.show_versions()</code></h4>
<details>
pandas: 0.20.2
pytest: 3.1.1
pip: 9.0.1
setuptools: 27.2.0
Cython: 0.25.2
numpy: 1.12.1
scipy: 0.19.0
xarray: 0.9.6
IPython: 6.1.0
sphinx: 1.5.6
patsy: 0.4.1
dateutil: 2.6.0
pytz: 2017.2
blosc: None
bottleneck: 1.2.1
tables: 3.3.0
numexpr: 2.6.2
feather: None
matplotlib: 2.0.2
openpyxl: 2.4.7
xlrd: 1.0.0
xlwt: 1.2.0
xlsxwriter: 0.9.6
lxml: 3.8.0
bs4: 4.6.0
html5lib: 0.999
sqlalchemy: 1.1.10
pymysql: None
psycopg2: None
jinja2: 2.9.6
s3fs: None
pandas_gbq: None
pandas_datareader: None
</details> | 1 |
<h1 dir="auto">Bug report</h1>
<p dir="auto"><strong>What is the current behavior?</strong></p>
<p dir="auto">When I click the button to lazy-load a module which was already been prefetched (I can see it in the network tab), another network request for the same module is done.</p>
<p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce.</strong></p>
<p dir="auto">Minimal repository: <a href="https://github.com/pldg/test-webpack-dynamic-import-prefetch">test-webpack-dynamic-import-prefetch</a></p>
<p dir="auto"><strong>What is the expected behavior?</strong></p>
<p dir="auto">If the button is clicked that lazy-module should be called from the browser's cache without additional network request.</p>
<p dir="auto"><strong>Other relevant information:</strong></p>
<p dir="auto">webpack version: 4.18<br>
Node.js version: 8.11<br>
Operating System: Windows 10<br>
Additional tools: Chrome 69</p> | <p dir="auto">I want to use webpack to bundle unit tests in the test-folder. Therefore I want to search the test-folder for js-files and add these files to the bundle created by webpack. Is it possible to add multiple entry points like <code class="notranslate">.addEntry()</code> in browserify?</p> | 0 |
<p dir="auto">Please go to Stack Overflow for help and support:</p>
<p dir="auto"><a href="https://stackoverflow.com/questions/tagged/keras" rel="nofollow">https://stackoverflow.com/questions/tagged/keras</a></p>
<p dir="auto">If you open a GitHub issue, here is our policy:</p>
<ol dir="auto">
<li>It must be a bug, a feature request, or a significant problem with the<br>
documentation (for small docs fixes please send a PR instead).</li>
<li>The form below must be filled out.</li>
</ol>
<p dir="auto"><strong>Here's why we have that policy</strong>: Keras developers respond to issues. We want to focus on work that benefits the whole community, e.g., fixing bugs and adding features. Support only helps individuals. GitHub also notifies thousands of people when issues are filed. We want them to see you communicating an interesting problem, rather than being redirected to Stack Overflow.</p>
<hr>
<h3 dir="auto">System information</h3>
<ul dir="auto">
<li><strong>Have I written custom code (as opposed to using a stock example script<br>
provided in Keras)</strong>:</li>
<li><strong>OS Platform and Distribution (e.g., Linux Ubuntu 16.04)</strong>:</li>
<li><strong>TensorFlow installed from (source or binary)</strong>:</li>
<li><strong>TensorFlow version (use command below)</strong>:</li>
<li><strong>Python version</strong>:</li>
<li><strong>Bazel version (if compiling from source)</strong>:</li>
<li><strong>GPU model and memory</strong>:</li>
<li><strong>Exact command to reproduce</strong>:</li>
</ul>
<p dir="auto">You can collect some of this information using our environment capture script:</p>
<p dir="auto"><a href="https://github.com/tensorflow/tensorflow/tree/master/tools/tf_env_collect.sh">https://github.com/tensorflow/tensorflow/tree/master/tools/tf_env_collect.sh</a></p>
<p dir="auto">You can obtain the TensorFlow version with:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="python -c "import tensorflow as tf; print(tf.version.GIT_VERSION, tf.version.VERSION)""><pre class="notranslate">python -c <span class="pl-s"><span class="pl-pds">"</span>import tensorflow as tf; print(tf.version.GIT_VERSION, tf.version.VERSION)<span class="pl-pds">"</span></span></pre></div>
<h3 dir="auto">Describe the problem</h3>
<p dir="auto">Describe the problem clearly here. Be sure to convey here why it's a bug in Keras or why the requested feature is needed.</p>
<h3 dir="auto">Source code / logs</h3>
<p dir="auto">Include any logs or source code that would be helpful to diagnose the problem. If including tracebacks, please include the full traceback. Large logs and files should be attached. Try to provide a reproducible test case that is the bare minimum necessary to generate the problem.</p> | <p dir="auto">Currently, Keras builds the computational graph in a <code class="notranslate">top-down</code> fashion. That is, starting from the final output tensor and recursively calling <code class="notranslate">get_output()</code> until reaching the input. This is fine for <code class="notranslate">sequential</code> models, since layers are stacked linearly and the computational flow is a straight line. However, for <code class="notranslate">graph</code> models, the computational flow could have branches, and this <code class="notranslate">top-down</code> fashion will incur redundancy because <code class="notranslate">self.get_output()</code> will "repeat" the downstream computations at the branching point. Consider the following example:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="X = T.vector('X')
B = X * 3
Z1 = B + 1
Z2 = B + 2
Y = Z1 + Z2
theano.printing.pydotprint(Y)"><pre class="notranslate"><code class="notranslate">X = T.vector('X')
B = X * 3
Z1 = B + 1
Z2 = B + 2
Y = Z1 + Z2
theano.printing.pydotprint(Y)
</code></pre></div>
<p dir="auto">The graph looks like <a href="http://i.cs.hku.hk/~pcyin/graph1.png" rel="nofollow">this</a> (as one can imagine)</p>
<p dir="auto">When implemented in Keras:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# helper layer
class LambdaLayer(Layer):
def __init__(self, func):
super(LambdaLayer, self).__init__()
self.func = func
def get_output(self, train=False):
X = self.get_input(train)
return self.func(X)
g = Graph()
g.add_input('X', ndim=1)
mul = LambdaLayer(lambda x: x * 3)
g.add_node(mul, name='mul', input='X')
add1 = LambdaLayer(lambda x: x + 1)
add2 = LambdaLayer(lambda x: x + 2)
add3 = LambdaLayer(lambda x: x['1'] + x['2'])
g.add_node(add1, name='add1', input='mul')
g.add_node(add2, name='add2', input='mul')
# I modified Keras to support multiple inputs, no Merge layer required here
g.add_node(add3, name='add3', inputs={'1': 'add1', '2': 'add2'}, create_output=True)
theano.printing.pydotprint(g.get_output())"><pre class="notranslate"><code class="notranslate"># helper layer
class LambdaLayer(Layer):
def __init__(self, func):
super(LambdaLayer, self).__init__()
self.func = func
def get_output(self, train=False):
X = self.get_input(train)
return self.func(X)
g = Graph()
g.add_input('X', ndim=1)
mul = LambdaLayer(lambda x: x * 3)
g.add_node(mul, name='mul', input='X')
add1 = LambdaLayer(lambda x: x + 1)
add2 = LambdaLayer(lambda x: x + 2)
add3 = LambdaLayer(lambda x: x['1'] + x['2'])
g.add_node(add1, name='add1', input='mul')
g.add_node(add2, name='add2', input='mul')
# I modified Keras to support multiple inputs, no Merge layer required here
g.add_node(add3, name='add3', inputs={'1': 'add1', '2': 'add2'}, create_output=True)
theano.printing.pydotprint(g.get_output())
</code></pre></div>
<p dir="auto">The graph looks like <a href="http://i.cs.hku.hk/~pcyin/graph2.png" rel="nofollow">this</a>. <code class="notranslate">X * 3</code> repeats twice.</p>
<p dir="auto">Of cause we can count on Theano's optimizer to reduce the redundancy, but when it comes to large graph models with complicated wiring. The optimization will take quite a long time (Actually I have a graph model with lots of branching and it takes 8 hours to compile). Does it seem better to build computational graph in bottom-up fashion?</p> | 0 |
<p dir="auto"><strong>Apache Airflow version</strong>: <code class="notranslate">2.0.1</code></p>
<p dir="auto"><strong>Kubernetes version (if you are using kubernetes)</strong> (use <code class="notranslate">kubectl version</code>):<br>
<code class="notranslate">Client Version: version.Info{Major:"1", Minor:"18", GitVersion:"v1.18.1", GitCommit:"7879fc12a63337efff607952a323df90cdc7a335", GitTreeState:"clean", BuildDate:"2020-04-10T21:53:58Z", GoVersion:"go1.14.2", Compiler:"gc", Platform:"darwin/amd64"}</code></p>
<p dir="auto"><code class="notranslate">Server Version: version.Info{Major:"1", Minor:"16+", GitVersion:"v1.16.15-gke.7800", GitCommit:"cef3156c566a1d1a4b23ee360a760f45bfbaaac1", GitTreeState:"clean", BuildDate:"2020-12-14T09:12:37Z", GoVersion:"go1.13.15b4", Compiler:"gc", Platform:"linux/amd64"}</code></p>
<p dir="auto"><strong>Environment</strong>:</p>
<ul dir="auto">
<li><strong>Cloud provider or hardware configuration</strong>: <code class="notranslate">GKE</code></li>
<li><strong>OS</strong> (e.g. from /etc/os-release):</li>
<li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>):</li>
<li><strong>Install tools</strong>:</li>
<li><strong>Others</strong>: We use scheduler HA with 2 instances.</li>
</ul>
<p dir="auto"><strong>What happened</strong>:</p>
<ul dir="auto">
<li>We are running Airflow 2.0.1 using KubernetesExecutor and PostgreSQL 9.6.2.</li>
<li>Task is <code class="notranslate">up_for_retry</code> after its worker pod fails to start</li>
<li>It gets stuck in <code class="notranslate">queued</code> state</li>
<li>It runs only after a scheduler restart.</li>
</ul>
<p dir="auto"><strong>What you expected to happen</strong>:</p>
<ul dir="auto">
<li>Task gets rescheduled and runs successfully.</li>
</ul>
<p dir="auto"><strong>How to reproduce it</strong>:</p>
<p dir="auto"><strong>Anything else we need to know</strong>:</p>
<p dir="auto">Logs below.</p>
<details>
<p dir="auto">Its upstream task succeeds and schedules it via fast follow.<br>
<code class="notranslate">[2021-03-01 17:08:51,306] {taskinstance.py:1166} INFO - Marking task as SUCCESS. dag_id=datalake_dag_id, task_id=processidlogs, execution_date=20210301T163000, start_date=20210301T170546, end_date=20210301T170851</code></p>
<p dir="auto"><code class="notranslate">[2021-03-01 17:08:51,339] {taskinstance.py:1220} INFO - 1 downstream tasks scheduled from follow-on schedule check</code></p>
<p dir="auto"><code class="notranslate">[2021-03-01 17:08:51,357] {local_task_job.py:146} INFO - Task exited with return code 0</code></p>
<p dir="auto">Task is attempted to be run.</p>
<p dir="auto"><code class="notranslate">[2021-03-01 17:08:52,229] {scheduler_job.py:1105} INFO - Sending TaskInstanceKey(dag_id='datalake_dag_id', task_id='delta_id_logs', execution_date=datetime.datetime(2021, 3, 1, 16, 30, tzinfo=Timezone('UTC')), try_number=1) to executor with priority 1 and queue default</code></p>
<p dir="auto"><code class="notranslate">[2021-03-01 17:08:52,308] {kubernetes_executor.py:306} DEBUG - Kubernetes running for command ['airflow', 'tasks', 'run', 'datalake_dag_id', 'delta_id_logs', '2021-03-01T16:30:00+00:00', '--local', '--pool', 'default_pool', '--subdir', '/opt/airflow/dags/data_lake/some_tasks/some_tasks.py']</code></p>
<p dir="auto"><code class="notranslate">[2021-03-01 17:08:52,332] {scheduler_job.py:1206} INFO - Executor reports execution of datalake_dag_id.delta_id_logs execution_date=2021-03-01 16:30:00+00:00 exited with status queued for try_number 1</code></p>
<p dir="auto">Pod fails to start.</p>
<p dir="auto"><code class="notranslate">[2021-03-01 17:12:17,319] {kubernetes_executor.py:197} INFO - Event: Failed to start pod datalakedagiddeltaidlogs.5fa98ae3856f4cb4b6c8810ac13e5c6a, will reschedule</code></p>
<p dir="auto">It is put as up_for_reschedule.</p>
<p dir="auto"><code class="notranslate">[2021-03-01 17:12:23,912] {kubernetes_executor.py:343} DEBUG - Processing task ('datalakedagiddeltaidlogs.5fa98ae3856f4cb4b6c8810ac13e5c6a', 'prod', 'up_for_reschedule', {'dag_id': 'datalake_dag_id', 'task_id': 'delta_id_logs', 'execution_date': '2021-03-01T16:30:00+00:00', 'try_number': '1'}, '1172208829')</code></p>
<p dir="auto"><code class="notranslate">[2021-03-01 17:12:23,930] {kubernetes_executor.py:528} INFO - Changing state of (TaskInstanceKey(dag_id='datalake_dag_id', task_id='delta_id_logs', execution_date=datetime.datetime(2021, 3, 1, 16, 30, tzinfo=tzlocal()), try_number=1), 'up_for_reschedule', 'datalakedagiddeltaidlogs.5fa98ae3856f4cb4b6c8810ac13e5c6a', 'prod', '1172208829') to up_for_reschedule</code></p>
<p dir="auto"><code class="notranslate">[2021-03-01 17:12:23,941] {scheduler_job.py:1206} INFO - Executor reports execution of datalake_dag_id.delta_id_logs execution_date=2021-03-01 16:30:00+00:00 exited with status up_for_reschedule for try_number 1</code></p>
<p dir="auto">A few minutes later, another scheduler finds it in queued state.</p>
<p dir="auto"><code class="notranslate">[2021-03-01 17:15:39,177] {taskinstance.py:851} DEBUG - Dependencies all met for <TaskInstance: datalake_dag_id.delta_id_logs 2021-03-01 16:30:00+00:00 [queued]></code></p>
<p dir="auto"><code class="notranslate">[2021-03-01 17:15:40,477] {taskinstance.py:866} DEBUG - <TaskInstance: datalake_dag_id.delta_id_logs 2021-03-01 16:30:00+00:00 [queued]> dependency 'Not In Retry Period' PASSED: True, The context specified that being in a retry period was permitted.</code></p>
<p dir="auto"><code class="notranslate">[2021-03-01 17:15:40,478] {taskinstance.py:866} DEBUG - <TaskInstance: datalake_dag_id.delta_id_logs 2021-03-01 16:30:00+00:00 [queued]> dependency 'Previous Dagrun State' PASSED: True, The task did not have depends_on_past set.</code></p>
<p dir="auto">It stays in that state for another hour and a half until the scheduler is restarted.</p>
<p dir="auto">Finally, it is rescheduled.<br>
<code class="notranslate">[2021-03-01 18:58:10,475] {kubernetes_executor.py:463} INFO - TaskInstance: <TaskInstance: datalake_dag_id.delta_id_logs 2021-03-01 16:30:00+00:00 [queued]> found in queued state but was not launched, rescheduling</code></p>
</details>
<p dir="auto">Other tasks run fine while that one is stuck in queued state. We have a cron job to restart the scheduler as a hack to recover from when such cases happen, but we would like to avoid it as much as possible.</p>
<p dir="auto">We run 60 DAGs with 50-100 tasks each every 30 minutes. We have been seeing this issue at least once daily since we upgraded to Airflow 2.0.1.</p>
<p dir="auto">I understand there are some open issues about the scheduler or tasks getting stuck. But I could not tell if this is related, since hundreds of other tasks run as expected. Apologies if this turns out to be a duplicate of an existing issue. Thank you.</p> | <p dir="auto"><strong>Apache Airflow version</strong>: 2.1.0</p>
<p dir="auto"><strong>What happened</strong>:</p>
<p dir="auto">When I tried to call <code class="notranslate">logging.exception()</code>, the task instances fails.</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="def func():
import logging
logging.exception("some error message")
with dag:
p = PythonOperator(
task_id='test',
python_callable=func,
)"><pre class="notranslate"><span class="pl-k">def</span> <span class="pl-en">func</span>():
<span class="pl-k">import</span> <span class="pl-s1">logging</span>
<span class="pl-s1">logging</span>.<span class="pl-en">exception</span>(<span class="pl-s">"some error message"</span>)
<span class="pl-k">with</span> <span class="pl-s1">dag</span>:
<span class="pl-s1">p</span> <span class="pl-c1">=</span> <span class="pl-v">PythonOperator</span>(
<span class="pl-s1">task_id</span><span class="pl-c1">=</span><span class="pl-s">'test'</span>,
<span class="pl-s1">python_callable</span><span class="pl-c1">=</span><span class="pl-s1">func</span>,
)</pre></div>
<details>
<summary>task failure stack strace</summary>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last):
File "/usr/local/lib/python3.7/site-packages/airflow/models/taskinstance.py", line 1138, in _run_raw_task
self._prepare_and_execute_task_with_callbacks(context, task)
File "/usr/local/lib/python3.7/site-packages/airflow/models/taskinstance.py", line 1311, in _prepare_and_execute_task_with_callbacks
result = self._execute_task(context, task_copy)
File "/usr/local/lib/python3.7/site-packages/airflow/models/taskinstance.py", line 1341, in _execute_task
result = task_copy.execute(context=context)
File "/usr/local/lib/python3.7/site-packages/airflow/operators/python.py", line 117, in execute
return_value = self.execute_callable()
File "/usr/local/lib/python3.7/site-packages/airflow/operators/python.py", line 128, in execute_callable
return self.python_callable(*self.op_args, **self.op_kwargs)
File "/usr/local/airflow/src/__main__.py", line 12, in main
src.file_get_sftp(sftp_site_folder,dest_dir)
File "/usr/local/airflow/src/controller/source.py", line 102, in file_get_sftp
logging.exception("Destination directory doesn't exist")
File "/usr/local/lib/python3.7/logging/__init__.py", line 1967, in exception
error(msg, *args, exc_info=exc_info, **kwargs)
File "/usr/local/lib/python3.7/logging/__init__.py", line 1959, in error
root.error(msg, *args, **kwargs)
File "/usr/local/lib/python3.7/logging/__init__.py", line 1407, in error
self._log(ERROR, msg, args, **kwargs)
File "/usr/local/lib/python3.7/logging/__init__.py", line 1514, in _log
self.handle(record)
File "/usr/local/lib/python3.7/logging/__init__.py", line 1523, in handle
if (not self.disabled) and self.filter(record):
File "/usr/local/lib/python3.7/logging/__init__.py", line 751, in filter
result = f.filter(record)
File "/usr/local/lib/python3.7/site-packages/airflow/utils/log/secrets_masker.py", line 161, in filter
exc.args = (self.redact(v) for v in exc.args)
AttributeError: 'NoneType' object has no attribute 'args'"><pre class="notranslate"><code class="notranslate">Traceback (most recent call last):
File "/usr/local/lib/python3.7/site-packages/airflow/models/taskinstance.py", line 1138, in _run_raw_task
self._prepare_and_execute_task_with_callbacks(context, task)
File "/usr/local/lib/python3.7/site-packages/airflow/models/taskinstance.py", line 1311, in _prepare_and_execute_task_with_callbacks
result = self._execute_task(context, task_copy)
File "/usr/local/lib/python3.7/site-packages/airflow/models/taskinstance.py", line 1341, in _execute_task
result = task_copy.execute(context=context)
File "/usr/local/lib/python3.7/site-packages/airflow/operators/python.py", line 117, in execute
return_value = self.execute_callable()
File "/usr/local/lib/python3.7/site-packages/airflow/operators/python.py", line 128, in execute_callable
return self.python_callable(*self.op_args, **self.op_kwargs)
File "/usr/local/airflow/src/__main__.py", line 12, in main
src.file_get_sftp(sftp_site_folder,dest_dir)
File "/usr/local/airflow/src/controller/source.py", line 102, in file_get_sftp
logging.exception("Destination directory doesn't exist")
File "/usr/local/lib/python3.7/logging/__init__.py", line 1967, in exception
error(msg, *args, exc_info=exc_info, **kwargs)
File "/usr/local/lib/python3.7/logging/__init__.py", line 1959, in error
root.error(msg, *args, **kwargs)
File "/usr/local/lib/python3.7/logging/__init__.py", line 1407, in error
self._log(ERROR, msg, args, **kwargs)
File "/usr/local/lib/python3.7/logging/__init__.py", line 1514, in _log
self.handle(record)
File "/usr/local/lib/python3.7/logging/__init__.py", line 1523, in handle
if (not self.disabled) and self.filter(record):
File "/usr/local/lib/python3.7/logging/__init__.py", line 751, in filter
result = f.filter(record)
File "/usr/local/lib/python3.7/site-packages/airflow/utils/log/secrets_masker.py", line 161, in filter
exc.args = (self.redact(v) for v in exc.args)
AttributeError: 'NoneType' object has no attribute 'args'
</code></pre></div>
</details>
<p dir="auto"><strong>What you expected to happen</strong>:</p>
<p dir="auto">I expect an exception message to be printed out.</p>
<p dir="auto"><strong>How to reproduce it</strong>:</p>
<ol dir="auto">
<li>Create a simple DAG that calls <code class="notranslate">logging.exception()</code></li>
<li>Execute the function</li>
</ol>
<p dir="auto"><strong>Anything else we need to know</strong>:</p>
<p dir="auto">This issue was created for the PR (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="900588486" data-permission-text="Title is private" data-url="https://github.com/apache/airflow/issues/16047" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/16047/hovercard" href="https://github.com/apache/airflow/pull/16047">#16047</a>).</p> | 0 |
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" File "C:\[path]\api\utilities\tokenizers.py", line 4, in <module>
gpt2 = GPT2TokenizerFast.from_pretrained("gpt2")
File "C:\[path]\venv\lib\site-packages\transformers\tokenization_utils_base.py", line 1750, in from_pretrained
commit_hash = extract_commit_hash(resolved_vocab_files[file_id], commit_hash)
File "C:\[path]\venv\lib\site-packages\transformers\utils\hub.py", line 225, in extract_commit_hash
search = re.search(r"snapshots/([^/]+)/", resolved_file)
File "C:\Program Files\Python310\lib\re.py", line 200, in search
return _compile(pattern, flags).search(string)
TypeError: expected string or bytes-like object"><pre class="notranslate"><code class="notranslate"> File "C:\[path]\api\utilities\tokenizers.py", line 4, in <module>
gpt2 = GPT2TokenizerFast.from_pretrained("gpt2")
File "C:\[path]\venv\lib\site-packages\transformers\tokenization_utils_base.py", line 1750, in from_pretrained
commit_hash = extract_commit_hash(resolved_vocab_files[file_id], commit_hash)
File "C:\[path]\venv\lib\site-packages\transformers\utils\hub.py", line 225, in extract_commit_hash
search = re.search(r"snapshots/([^/]+)/", resolved_file)
File "C:\Program Files\Python310\lib\re.py", line 200, in search
return _compile(pattern, flags).search(string)
TypeError: expected string or bytes-like object
</code></pre></div>
<p dir="auto">Just started getting this error today, any idea for a workaround or a good version to rollback to?</p> | <p dir="auto">Just some context, we use <code class="notranslate">TRANSFORMERS_OFFLINE=1</code> in the NeMo CI to ensure we load from the local cache. With the latest transformers version we noticed this bug in our CI!</p>
<h3 dir="auto">System Info</h3>
<ul dir="auto">
<li><code class="notranslate">transformers</code> version: 4.22.1</li>
<li>Platform: Linux-5.15.0-41-generic-x86_64-with-glibc2.31</li>
<li>Python version: 3.9.12</li>
<li>Huggingface_hub version: 0.9.1</li>
<li>PyTorch version (GPU?): 1.12.1+cu113 (True)</li>
<li>Tensorflow version (GPU?): not installed (NA)</li>
<li>Flax version (CPU?/GPU?/TPU?): not installed (NA)</li>
<li>Jax version: not installed</li>
<li>JaxLib version: not installed</li>
<li>Using GPU in script?: no</li>
<li>Using distributed or parallel set-up in script?: no</li>
</ul>
<h3 dir="auto">Who can help?</h3>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/SaulLu/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/SaulLu">@SaulLu</a></p>
<h3 dir="auto">Information</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> The official example scripts</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> My own modified scripts</li>
</ul>
<h3 dir="auto">Tasks</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> An officially supported task in the <code class="notranslate">examples</code> folder (such as GLUE/SQuAD, ...)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> My own task or dataset (give details below)</li>
</ul>
<h3 dir="auto">Reproduction</h3>
<p dir="auto">Create this script <code class="notranslate">reprod.py</code>:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from transformers import AutoTokenizer
AutoTokenizer.from_pretrained(pretrained_model_name_or_path='gpt2')"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">transformers</span> <span class="pl-k">import</span> <span class="pl-v">AutoTokenizer</span>
<span class="pl-v">AutoTokenizer</span>.<span class="pl-en">from_pretrained</span>(<span class="pl-s1">pretrained_model_name_or_path</span><span class="pl-c1">=</span><span class="pl-s">'gpt2'</span>)</pre></div>
<p dir="auto">run:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="python reprod.py
TRANSFORMERS_OFFLINE=1 python reprod.py"><pre class="notranslate"><code class="notranslate">python reprod.py
TRANSFORMERS_OFFLINE=1 python reprod.py
</code></pre></div>
<p dir="auto">First one runs successfully, second one fails:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last):
File "/home/snarenthiran/NeMo/reprod.py", line 3, in <module>
AutoTokenizer.from_pretrained(pretrained_model_name_or_path='gpt2')
File "/home/snarenthiran/anaconda3/lib/python3.9/site-packages/transformers/models/auto/tokenization_auto.py", line 549, in from_pretrained
tokenizer_config = get_tokenizer_config(pretrained_model_name_or_path, **kwargs)
File "/home/snarenthiran/anaconda3/lib/python3.9/site-packages/transformers/models/auto/tokenization_auto.py", line 418, in get_tokenizer_config
commit_hash = extract_commit_hash(resolved_config_file, commit_hash)
File "/home/snarenthiran/anaconda3/lib/python3.9/site-packages/transformers/utils/hub.py", line 225, in extract_commit_hash
search = re.search(r"snapshots/([^/]+)/", resolved_file)
File "/home/snarenthiran/anaconda3/lib/python3.9/re.py", line 201, in search
return _compile(pattern, flags).search(string)
TypeError: expected string or bytes-like object"><pre class="notranslate"><code class="notranslate">Traceback (most recent call last):
File "/home/snarenthiran/NeMo/reprod.py", line 3, in <module>
AutoTokenizer.from_pretrained(pretrained_model_name_or_path='gpt2')
File "/home/snarenthiran/anaconda3/lib/python3.9/site-packages/transformers/models/auto/tokenization_auto.py", line 549, in from_pretrained
tokenizer_config = get_tokenizer_config(pretrained_model_name_or_path, **kwargs)
File "/home/snarenthiran/anaconda3/lib/python3.9/site-packages/transformers/models/auto/tokenization_auto.py", line 418, in get_tokenizer_config
commit_hash = extract_commit_hash(resolved_config_file, commit_hash)
File "/home/snarenthiran/anaconda3/lib/python3.9/site-packages/transformers/utils/hub.py", line 225, in extract_commit_hash
search = re.search(r"snapshots/([^/]+)/", resolved_file)
File "/home/snarenthiran/anaconda3/lib/python3.9/re.py", line 201, in search
return _compile(pattern, flags).search(string)
TypeError: expected string or bytes-like object
</code></pre></div>
<h3 dir="auto">Expected behavior</h3>
<p dir="auto">To create the tokenizer from the local files.</p> | 1 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.