id
int64
393k
2.82B
repo
stringclasses
68 values
title
stringlengths
1
936
body
stringlengths
0
256k
labels
stringlengths
2
508
priority
stringclasses
3 values
severity
stringclasses
3 values
547,775,296
terminal
Investigate and ensure `wt.exe` is always `argv[0]`
I have seen Windows executables receive arguments BOTH ways. I don't know what the circumstance is offhand that makes it happen one way or the other. You will want to deal with both the presence and absence of your own executable name at `argv[0]`. _Originally posted by @miniksa in https://github.com/microsoft/terminal/pull/4023_ If it's not, then we'll need to mitigate this somehow, since we're leaning on that pretty hard at the moment
Help Wanted,Product-Terminal,Issue-Task,Area-CodeHealth
low
Major
547,784,389
svelte
Checkbox group value is removed if it's not present in available options (pagination/infinite scroll for example)
**Describe the bug** Scenario: I have a checkbox list that is lazily loaded as user scrolls. So when editing, some selected values may not be in the initial list of options in the checkbox group. When I select an option, my other values (from not-loaded pages of results) get removed from the selected value of the checkbox group. **To Reproduce** https://svelte.dev/repl/bae11298adea464cb73e255ead0104b0?version=3.16.7 **Expected behavior** Concat/push to the `value` rather than get rid of options that aren't in the list currently. **Information about your Svelte project:** - Browser: Chrome Version 79.0.3945.88 (Official Build) (64-bit) - Operating system: Windows 10 - Svelte version: 3.16.7 - bundler: Webpack **Severity** I can workaround by handling on:click of the checkbox
feature request,awaiting submitter,temp-stale
low
Critical
547,789,836
rust
Support Visual Studio heap profiler in MSVC targets
Cland and MSVC support adding special debug info that can be recognized by the MSVC debugging tools for performing heap profiling. Right now all of the allocations from Rust code are put into an "Unresolved allocations" bucket with no stack frames attached to them, which makes them quite useless. Since LLVM 9 the backend supports generating the appropriate codeview information if the frontend creates the right metadata, so it would be great to allow rustc to generate that metadata. Based on: * https://releases.llvm.org/9.0.0/tools/clang/docs/ReleaseNotes.html#windows-support * https://clang.llvm.org/docs/AttributeReference.html#allocator * https://bugs.llvm.org/show_bug.cgi?id=38491 * https://reviews.llvm.org/rL368230 Clang frontend work: * https://github.com/llvm-mirror/clang/blob/e3b053c27cfd74468e946437526d061c7d88bd27/lib/Sema/SemaDeclAttr.cpp#L6395-L6407 * https://github.com/llvm-mirror/clang/blob/8b10d16729147455fc92b35d180968be9792b880/lib/CodeGen/CGCall.cpp#L4402-L4405 * https://github.com/llvm-mirror/clang/blob/05441b0db7bf23d206dfc865b5c5bde17da1dab0/lib/CodeGen/CGExprScalar.cpp#L2029-L2033 * https://github.com/llvm-mirror/clang/blob/14947e8df1c27d3babf2c01b53c0c2bf2bfb9bd1/lib/CodeGen/CGDebugInfo.cpp#L2050-L2062 We might be able to tie this into the existing GlobalAllocator support. This work may need to wait until https://github.com/rust-lang/rust/pull/67759 has merged, however.
A-debuginfo,T-compiler,O-windows-msvc
low
Critical
547,794,915
pytorch
DistributedDataParallel non-floating point dtype parameter with requires_grad=False
## 🐛 Bug 1. Using DistributedDataParallel 2. on a model that has at-least one non-floating point dtype parameter with requires_grad=False 3. with a WORLD_SIZE <= nGPUs/2 on the machine results in an error "Only Tensors of floating point dtype can require gradients". ## To Reproduce Steps to reproduce the behavior: 1. Use a machine which has at least 4 GPUs 2. Build pytorch from source for python3.6 OR use one of the available docker images. 3. Run the following command: "BACKEND=nccl WORLD_SIZE=2 TEMP_DIR=/tmp python3.6 test_distributed.py --verbose TestDistBackend.test_DistributedDataParallel" The model used in the test has a `long` (`int64`) parameter with `requires_grad=False`: https://github.com/pytorch/pytorch/blob/master/test/test_distributed.py#L59 On a ROCm build of PyTorch, I get the below stack trace (although this issue isn't ROCm-specific): ``` Traceback (most recent call last): File "/usr/lib/python3.6/multiprocessing/process.py", line 258, in _bootstrap self.run() File "/usr/lib/python3.6/multiprocessing/process.py", line 93, in run self._target(*self._args, **self._kwargs) File "test_distributed.py", line 2097, in _run getattr(self, self.id().split(".")[2])() File "test_distributed.py", line 2023, in wrapper fn(self) File "test_distributed.py", line 117, in wrapper return func(*args, **kwargs) File "test_distributed.py", line 133, in wrapper return func(*args, **kwargs) File "test_distributed.py", line 1849, in test_DistributedDataParallel self._test_DistributedDataParallel(gpu_subset=gpus, rank=rank) File "test_distributed.py", line 1784, in _test_DistributedDataParallel model_DDP, device_ids=gpu_subset File "/root/.local/lib/python3.6/site-packages/torch/nn/parallel/distributed.py", line 305, in __init__ self._ddp_init_helper() File "/root/.local/lib/python3.6/site-packages/torch/nn/parallel/distributed.py", line 323, in _ddp_init_helper self._module_copies = replicate(self.module, self.device_ids, detach=True) File "/root/.local/lib/python3.6/site-packages/torch/nn/parallel/replicate.py", line 147, in replicate setattr(replica, key, Parameter(param)) File "/root/.local/lib/python3.6/site-packages/torch/nn/parameter.py", line 26, in __new__ return torch.Tensor._make_subclass(cls, data, requires_grad) RuntimeError: Only Tensors of floating point dtype can require gradients FAIL ``` ## Expected behavior Test should pass. ## Environment ``` Collecting environment information... PyTorch version: 1.4.0a0+b8f50d9 Is debug build: No CUDA used to build PyTorch: Could not collect OS: Ubuntu 16.04.5 LTS GCC version: Could not collect CMake version: version 3.6.3 Python version: 3.6 Is CUDA available: Yes CUDA runtime version: Could not collect GPU models and configuration: Could not collect Nvidia driver version: Could not collect cuDNN version: Could not collect ROCm version: 2.10 Versions of relevant libraries: [pip3] numpy==1.17.4 [pip3] torch==1.4.0a0+b8f50d9 [pip3] torchvision==0.4.2 [conda] Could not collect ``` cc @pietern @mrshenli @pritamdamania87 @zhaojuanmao @satgera @rohan-varma @gqchen @aazzolini @xush6528 @osalpekar
oncall: distributed,triaged
low
Critical
547,802,399
pytorch
[discussion] Relax optimizer constructor constraints for simplicity
`lr` is required. However if we do call `load_state_dict` after optimizer construction, the passed state overwrites the `lr` value just passed to the constructor (and we have no convenience method for updating the `lr` of all `param_groups` if we want to use a new `lr` even after restoring optimizer state and momentum buffers). ``` >>> torch.optim.SGD([torch.Tensor()]) Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/miniconda/lib/python3.7/site-packages/torch/optim/sgd.py", line 64, in __init__ super(SGD, self).__init__(params, defaults) File "/miniconda/lib/python3.7/site-packages/torch/optim/optimizer.py", line 51, in __init__ self.add_param_group(param_group) File "/miniconda/lib/python3.7/site-packages/torch/optim/optimizer.py", line 207, in add_param_group name) ValueError: parameter group didn't specify a value of required optimization parameter lr ``` #### Less pertinent: Passing an empty param list is impossible, but passing a `requires_grad=False` like above is possible (or having parameters without grad in runtime). For simplifying the code it may be easier to remove this check and allow empty param sets (in this case the `optimizer.step` won't do anything; an anyway optimizers inside step usually filter out params without grads, so they already support empty effective param lists). ``` >>> torch.optim.SGD() Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: __init__() missing 1 required positional argument: 'params' >>> torch.optim.SGD([]) Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/miniconda/lib/python3.7/site-packages/torch/optim/sgd.py", line 64, in __init__ super(SGD, self).__init__(params, defaults) File "/miniconda/lib/python3.7/site-packages/torch/optim/optimizer.py", line 46, in __init__ raise ValueError("optimizer got an empty parameter list") ValueError: optimizer got an empty parameter list ``` cc @vincentqb
module: optimizer,triaged,enhancement
low
Critical
547,816,113
pytorch
Inaccurate batched GRU results on CPU
## 🐛 Bug On the CPU, running a GRU (same applies to LSTM & RNN) in batches rather than a single batch produces slightly different results for some of the inputs. However, when run on a GPU, the results are identical as expected. The differences are small, but still they should be exactly zero on both CPU and GPU. ## To Reproduce The following code snippet shows the problem - the output tensor should be zero everywhere. ``` import torch import torch.nn as nn width = 512 x = torch.randn((100, 100, 22)) xx = torch.empty((0, width)) gru = nn.GRU(22, width, batch_first=False, num_layers=1, bidirectional=False) # Run GRU in two batches of 50 xx = torch.cat((xx, gru(x[:, 0:50, :])[0][-1, :, :])) xx = torch.cat((xx, gru(x[:, 50:100, :])[0][-1, :, :])) # Run GRU in a single batch yy = gru(x)[0][-1, :, :] # Result tensor should be zero xx -= yy for i in range(100): print(xx[i, 0].item()) ``` ## Expected behavior When running on the CPU, GRU results for minibatches of inputs should not differ from a single batch of the same inputs. ## Environment PyTorch version: 1.3.1 Is debug build: No CUDA used to build PyTorch: 10.1.243 OS: CentOS Linux 7 (Core) GCC version: (GCC) 4.8.5 20150623 (Red Hat 4.8.5-39) CMake version: version 2.8.12.2 Python version: 3.7 Is CUDA available: Yes CUDA runtime version: 8.0.61 GPU models and configuration: GPU 0: TITAN V GPU 1: Quadro RTX 8000 GPU 2: Quadro K2200 Nvidia driver version: 440.44 cuDNN version: /usr/local/cuda-8.0/lib64/libcudnn.so.5.1.10 ## Additional context <!-- Add any other context about the problem here. --> cc @VitalyFedyunin @zou3519
module: nn,module: rnn,module: cpu,triaged,module: numerical-reproducibility
low
Critical
547,820,933
material-ui
[material-ui] Add Number Input component
I noticed in the Material-UI's roadmap a Numeric Input component to be built. If nobody has took the lead then I can help. Recently I had to develop a component like that for a personal project (first screenshot below). - [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate. ## Summary 💡 I didn't look deeply but I think about a `<NumericField />` wrapping a `<TextField />`. This text field component would render the step buttons. ## Examples 🌈 <img width="111" alt="Capture d’écran 2020-09-04 à 13 45 42" src="https://user-images.githubusercontent.com/3165635/92236070-00e94400-eeb5-11ea-9800-017000617fde.png"> <img width="139" alt="Capture d’écran 2020-09-04 à 13 46 23" src="https://user-images.githubusercontent.com/3165635/92236096-0b0b4280-eeb5-11ea-90ea-c4252a520126.png"> ## Motivation 🔦 Sometimes we want to force an `input` to only accept numbers, but the support for `type="number"` has limitations: - Firefox and Safari are allowing to type any value, even non-digit characters #18923 - Chrome allows entering any amount when `max` is set: https://github.com/mui-org/material-ui/issues/9313#issuecomment-731267593. It should likely round to the max when blurring the field. - Chrome allows chars like `e`, #10582. - Using the mouse wheel changes the value, instead of scrolling https://github.com/mui-org/material-ui/issues/10582#issuecomment-603118446, https://github.com/mui-org/material-ui/issues/7960 ## TODO - [ ] Update: https://mui.com/material-ui/react-text-field/#type-quot-number-quot when this is released. ## Benchmarks https://mui-org.notion.site/Input-Number-component-364825a7bec94381809ac11ff05b4cc0
new feature,design: material,waiting for 👍,linked in docs,component: number field
high
Critical
547,827,310
terminal
Inconsistent gutters/margins on HiDPI displays with `snapToGridOnResize`
It looks like on my 200% scale device it's snapping at the half-grid. --- A 50x15 window at 150% scale with Ctrl+Shift+A: ![image](https://github.com/microsoft/terminal/assets/2256941/141f7b81-3fde-4fff-8b94-323dadb0c56b) After resizing the window to 51x15: ![image](https://github.com/microsoft/terminal/assets/2256941/69a06f9d-f245-48bc-80fc-2718c293bb1d)
Help Wanted,Issue-Bug,Area-TerminalControl,Area-Settings,Product-Terminal,Priority-3,good first issue
low
Major
547,838,627
flutter
[IOS]Rendering issue unicode miscellaneous symbols with Chinese symbols
## Steps to Reproduce Add a `Text` widget to demo project: ``` Text('☞关门') ``` Then flutter run on iOS Simulator. Please notice the Unicode symbol ☞ before the Chinese symbols, It will make Chinese symbol rendering to Japanese symbol. They both have the same Unicode code U+5173 U+95E8 Expected: ![image](https://user-images.githubusercontent.com/8072733/72121642-a552cf00-3396-11ea-913c-2405c961aba7.png) Actual: ![image](https://user-images.githubusercontent.com/8072733/72121591-72a8d680-3396-11ea-9f25-c95c88626cee.png) **Target Platform:** iOS **Target OS version/browser:** All **Devices:** Simulator or devices <details> <summary>Logs</summary> ``` [ +28 ms] executing: [/Users/jun/fvm/versions/1.7.8+hotfix.4/] git log -n 1 --pretty=format:%H [ +46 ms] Exit code 0 from: git log -n 1 --pretty=format:%H [ ] 20e59316b8b8474554b38493b8ca888794b0234a [ ] executing: [/Users/jun/fvm/versions/1.7.8+hotfix.4/] git describe --match v*.*.* --first-parent --long --tags [ +15 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags [ ] v1.7.8+hotfix.4-0-g20e59316b [ +12 ms] executing: [/Users/jun/fvm/versions/1.7.8+hotfix.4/] git rev-parse --abbrev-ref --symbolic @{u} [ +19 ms] Exit code 128 from: git rev-parse --abbrev-ref --symbolic @{u} [ ] fatal: HEAD does not point to a branch [ +7 ms] executing: [/Users/jun/fvm/versions/1.7.8+hotfix.4/] git rev-parse --abbrev-ref HEAD [ +16 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD [ ] HEAD [ +352 ms] executing: /Users/jun/Library/Android/sdk/platform-tools/adb devices -l [ +10 ms] Exit code 0 from: /Users/jun/Library/Android/sdk/platform-tools/adb devices -l [ ] List of devices attached [ +11 ms] executing: idevice_id -h [ +2 ms] [idevice_id, -h] failed with Invalid argument(s): Cannot find executable for idevice_id. [ +1 ms] /usr/bin/xcrun simctl list --json devices [ +220 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ +3 ms] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ +1 ms] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ +127 ms] Launching lib/main.dart on iPhone X in debug mode... [ +6 ms] executing: /usr/bin/defaults read /Users/jun/Desktop/flutter_sample_178/ios/Runner/Info CFBundleIdentifier [ +53 ms] Exit code 0 from: /usr/bin/defaults read /Users/jun/Desktop/flutter_sample_178/ios/Runner/Info CFBundleIdentifier [ ] $(PRODUCT_BUNDLE_IDENTIFIER) [ +12 ms] Building Runner.app for B79F2938-A6AD-4502-9FF8-15B653CEFC4A. [ +19 ms] executing: script /dev/null /usr/bin/log stream --style syslog --predicate processImagePath CONTAINS "B79F2938-A6AD-4502-9FF8-15B653CEFC4A" [ +43 ms] [DEVICE LOG] Filtering the log data using "processImagePath CONTAINS "B79F2938-A6AD-4502-9FF8-15B653CEFC4A"" [ +184 ms] Skipping kernel compilation. Fingerprint match. [ +75 ms] Building bundle [ +2 ms] Writing asset files to build/flutter_assets [ +66 ms] Wrote build/flutter_assets [ +9 ms] executing: [/Users/jun/Desktop/flutter_sample_178/ios/] /usr/bin/xcodebuild -list [ +858 ms] Information about project "Runner": Targets: Runner Build Configurations: Debug Release Profile If no build configuration is specified and -scheme is not passed then "Release" is used. Schemes: Runner [ +3 ms] Trying to resolve native pub services. [ +1 ms] Looking for YAML at 'pubspec.yaml' [ +1 ms] No services specified in the manifest [ ] Found 0 service definition(s). [ ] Copying service frameworks to '/Users/jun/Desktop/flutter_sample_178/ios/Frameworks'. [ ] Creating service definitions manifest at '/Users/jun/Desktop/flutter_sample_178/ios/ServiceDefinitions.json' [ +34 ms] Running Xcode build... [ +1 ms] executing: [/Users/jun/Desktop/flutter_sample_178/ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/jun/Desktop/flutter_sample_178/build/ios -sdk iphonesimulator -arch x86_64 FLUTTER_SUPPRESS_ANALYTICS=true [+5208 ms] Build settings from command line: ARCHS = x86_64 BUILD_DIR = /Users/jun/Desktop/flutter_sample_178/build/ios FLUTTER_SUPPRESS_ANALYTICS = true SDKROOT = iphonesimulator11.4 VERBOSE_SCRIPT_LOGGING = YES === BUILD TARGET Runner OF PROJECT Runner WITH CONFIGURATION Debug === Check dependencies PhaseScriptExecution Run\ Script /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh cd /Users/jun/Desktop/flutter_sample_178/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=jun 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/jun/Desktop/flutter_sample_178/build/ios export BUILD_ROOT=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Products export BUILD_STYLE= export BUILD_VARIANTS=normal export BUILT_PRODUCTS_DIR=/Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator export CACHE_ROOT=/var/folders/y_/6yzwnz8s1txf44x99m82cbww0000gp/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode export CCHROOT=/var/folders/y_/6yzwnz8s1txf44x99m82cbww0000gp/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode export CHMOD=/bin/chmod export CHOWN=/usr/sbin/chown export CLANG_ANALYZER_NONNULL=YES export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x export CLANG_CXX_LIBRARY=libc++ export CLANG_ENABLE_MODULES=YES export CLANG_ENABLE_OBJC_ARC=YES export CLANG_MODULES_BUILD_SESSION_FILE=/Users/jun/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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses export CLEAN_PRECOMPS=YES export CLONE_HEADERS=NO export CODESIGNING_FOLDER_PATH=/Users/jun/Desktop/flutter_sample_178/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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/CompositeSDKs export COMPRESS_PNG_FILES=YES export CONFIGURATION=Debug export CONFIGURATION_BUILD_DIR=/Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator export CONFIGURATION_TEMP_DIR=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/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_9.4.app/Contents/Developer/Platforms/iPhoneOS.platform export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode_9.4.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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources export DERIVED_FILE_DIR=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources export DERIVED_SOURCES_DIR=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode_9.4.app/Contents/Developer/Applications export DEVELOPER_BIN_DIR=/Applications/Xcode_9.4.app/Contents/Developer/usr/bin export DEVELOPER_DIR=/Applications/Xcode_9.4.app/Contents/Developer export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode_9.4.app/Contents/Developer/Library/Frameworks export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode_9.4.app/Contents/Developer/Library/Frameworks export DEVELOPER_LIBRARY_DIR=/Applications/Xcode_9.4.app/Contents/Developer/Library export DEVELOPER_SDK_DIR=/Applications/Xcode_9.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs export DEVELOPER_TOOLS_DIR=/Applications/Xcode_9.4.app/Contents/Developer/Tools export DEVELOPER_USR_DIR=/Applications/Xcode_9.4.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_9.4.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/jun/Desktop/flutter_sample_178/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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList export FIXED_FILES_DIR=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles export FLUTTER_APPLICATION_PATH=/Users/jun/Desktop/flutter_sample_178 export FLUTTER_BUILD_DIR=build export FLUTTER_BUILD_NAME=1.0.0 export FLUTTER_BUILD_NUMBER=1 export FLUTTER_FRAMEWORK_DIR=/Users/jun/fvm/versions/1.7.8+hotfix.4/bin/cache/artifacts/engine/ios export FLUTTER_ROOT=/Users/jun/fvm/versions/1.7.8+hotfix.4 export FLUTTER_SUPPRESS_ANALYTICS=true export FLUTTER_TARGET=/Users/jun/Desktop/flutter_sample_178/lib/main.dart export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks export FRAMEWORK_FLAG_PREFIX=-framework export FRAMEWORK_SEARCH_PATHS="/Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator /Users/jun/Desktop/flutter_sample_178/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/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator/include " export HIDE_BITCODE_SYMBOLS=YES export HOME=/Users/jun 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=jun 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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/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_9.4.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/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator /Users/jun/Desktop/flutter_sample_178/ios/Flutter" export LINKER_DISPLAYS_MANGLED_NAMES=NO export LINK_FILE_LIST_normal_x86_64=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/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=18D109 export MAC_OS_X_VERSION_ACTUAL=101403 export MAC_OS_X_VERSION_MAJOR=101400 export MAC_OS_X_VERSION_MINOR=1403 export METAL_LIBRARY_FILE_BASE=default export METAL_LIBRARY_OUTPUT_DIR=/Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator/Runner.app export MODULE_CACHE_DIR=/Users/jun/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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects export OBJECT_FILE_DIR_normal=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal export OBJROOT=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/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_9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode_9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode_9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode_9.4.app/Contents/Developer/usr/bin:/Applications/Xcode_9.4.app/Contents/Developer/usr/local/bin:/Applications/Xcode_9.4.app/Contents/Developer/Tools:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/Library/Flutter/bin:/Users/jun/.aff/bin:/Users/jun/.pub-cache/bin:/Users/jun/depot_tools:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/sbin" export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode_9.4.app/Contents/Developer/Headers /Applications/Xcode_9.4.app/Contents/Developer/SDKs /Applications/Xcode_9.4.app/Contents/Developer/Platforms" export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist export PFE_FILE_C_DIALECTS=objective-c export PKGINFO_FILE_PATH=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo export PKGINFO_PATH=Runner.app/PkgInfo export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode_9.4.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr export PLATFORM_DIR=/Applications/Xcode_9.4.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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO export PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders export PRODUCT_BUNDLE_IDENTIFIER=com.example.app export PRODUCT_MODULE_NAME=Runner export PRODUCT_NAME=Runner export PRODUCT_SETTINGS_PATH=/Users/jun/Desktop/flutter_sample_178/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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/DerivedSources export PROJECT_DIR=/Users/jun/Desktop/flutter_sample_178/ios export PROJECT_FILE_PATH=/Users/jun/Desktop/flutter_sample_178/ios/Runner.xcodeproj export PROJECT_NAME=Runner export PROJECT_TEMP_DIR=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build export PROJECT_TEMP_ROOT=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources export REZ_OBJECTS_DIR=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects export REZ_SEARCH_PATHS="/Users/jun/Desktop/flutter_sample_178/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_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk export SDK_DIR=/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk export SDK_DIR_iphonesimulator11_4=/Applications/Xcode_9.4.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/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator/DerivedSources export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks export SHARED_PRECOMPS_DIR=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/PrecompiledHeaders export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport export SKIP_INSTALL=NO export SOURCE_ROOT=/Users/jun/Desktop/flutter_sample_178/ios export SRCROOT=/Users/jun/Desktop/flutter_sample_178/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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/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_9.4.app/Contents/Developer/Applications export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode_9.4.app/Contents/Developer/usr/bin export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode_9.4.app/Contents/Developer/Applications/Utilities/Built Examples" export SYSTEM_DEVELOPER_DIR=/Applications/Xcode_9.4.app/Contents/Developer export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode_9.4.app/Contents/Developer/ADC Reference Library" export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode_9.4.app/Contents/Developer/Applications/Graphics Tools" export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode_9.4.app/Contents/Developer/Applications/Java Tools" export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode_9.4.app/Contents/Developer/Applications/Performance Tools" export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode_9.4.app/Contents/Developer/ADC Reference Library/releasenotes" export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode_9.4.app/Contents/Developer/Tools export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode_9.4.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools" export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode_9.4.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools" export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode_9.4.app/Contents/Developer/usr export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode_9.4.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/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator export TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder" export TARGET_NAME=Runner export TARGET_TEMP_DIR=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_DIR=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_FILES_DIR=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_FILE_DIR=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_ROOT=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault export TOOLCHAIN_DIR=/Applications/Xcode_9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO export UID=502 export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app export UNSTRIPPED_PRODUCT=NO export USER=jun export USER_APPS_DIR=/Users/jun/Applications export USER_LIBRARY_DIR=/Users/jun/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=jun 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_9.4.app/Contents/Developer/Library/Xcode export XCODE_PRODUCT_BUILD_VERSION=9F1027a export XCODE_VERSION_ACTUAL=0940 export XCODE_VERSION_MAJOR=0900 export XCODE_VERSION_MINOR=0940 export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices export YACC=yacc export arch=x86_64 export variant=normal /bin/sh -c /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh ♦ mkdir -p -- /Users/jun/Desktop/flutter_sample_178/ios/Flutter ♦ rm -rf -- /Users/jun/Desktop/flutter_sample_178/ios/Flutter/App.framework ♦ rm -rf -- /Users/jun/Desktop/flutter_sample_178/ios/Flutter/Flutter.framework ♦ cp -r -- /Users/jun/fvm/versions/1.7.8+hotfix.4/bin/cache/artifacts/engine/ios/Flutter.framework /Users/jun/Desktop/flutter_sample_178/ios/Flutter ♦ find /Users/jun/Desktop/flutter_sample_178/ios/Flutter/Flutter.framework -type f -exec chmod a-w {} ; ♦ mkdir -p -- /Users/jun/Desktop/flutter_sample_178/ios/Flutter/App.framework ♦ eval ♦ cp -- /Users/jun/Desktop/flutter_sample_178/ios/Flutter/AppFrameworkInfo.plist /Users/jun/Desktop/flutter_sample_178/ios/Flutter/App.framework/Info.plist ♦ /Users/jun/fvm/versions/1.7.8+hotfix.4/bin/flutter --verbose build bundle --target-platform=ios --target=/Users/jun/Desktop/flutter_sample_178/lib/main.dart --debug --depfile=build/snapshot_blob.bin.d --asset-dir=/Users/jun/Desktop/flutter_sample_178/ios/Flutter/App.framework/flutter_assets [ +22 ms] executing: [/Users/jun/fvm/versions/1.7.8+hotfix.4/] git log -n 1 --pretty=format:%H [ +43 ms] Exit code 0 from: git log -n 1 --pretty=format:%H [ ] 20e59316b8b8474554b38493b8ca888794b0234a [ ] executing: [/Users/jun/fvm/versions/1.7.8+hotfix.4/] git describe --match v*.*.* --first-parent --long --tags [ +23 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags [ ] v1.7.8+hotfix.4-0-g20e59316b [ +18 ms] executing: [/Users/jun/fvm/versions/1.7.8+hotfix.4/] git rev-parse --abbrev-ref --symbolic @{u} [ +8 ms] Exit code 128 from: git rev-parse --abbrev-ref --symbolic @{u} [ ] fatal: HEAD does not point to a branch [ +4 ms] executing: [/Users/jun/fvm/versions/1.7.8+hotfix.4/] git rev-parse --abbrev-ref HEAD [ +8 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD [ ] HEAD [ +110 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ +4 ms] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ +925 ms] Skipping kernel compilation. Fingerprint match. [ +82 ms] Building bundle [ +1 ms] Writing asset files to /Users/jun/Desktop/flutter_sample_178/ios/Flutter/App.framework/flutter_assets [ +87 ms] Wrote /Users/jun/Desktop/flutter_sample_178/ios/Flutter/App.framework/flutter_assets [ +10 ms] "flutter bundle" took 1,210ms. [ ] "flutter bundle" took 1,210ms. Project /Users/jun/Desktop/flutter_sample_178 built and packaged successfully. CompileC /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/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/jun/Desktop/flutter_sample_178/ios export LANG=en_US.US-ASCII export PATH="/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode_9.4.app/Contents/Developer/usr/bin:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/Library/Flutter/bin:.:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/.aff/bin:/Users/jun/.pub-cache/bin:.:/Users/jun/depot_tools:/Users/jun/Library/Flutter/bin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/sbin:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/Library/Flutter/bin:.:/Users/jun/.aff/bin:/Users/jun/depot_tools" /Applications/Xcode_9.4.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/jun/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/jun/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_9.4.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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Index/DataStore -iquote /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator/include -I/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator -F/Users/jun/Desktop/flutter_sample_178/ios/Flutter -MMD -MT dependencies -MF /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.d --serialize-diagnostics /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.dia -c /Users/jun/Desktop/flutter_sample_178/ios/Runner/main.m -o /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.o CompileC /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/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/jun/Desktop/flutter_sample_178/ios export LANG=en_US.US-ASCII export PATH="/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode_9.4.app/Contents/Developer/usr/bin:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/Library/Flutter/bin:.:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/.aff/bin:/Users/jun/.pub-cache/bin:.:/Users/jun/depot_tools:/Users/jun/Library/Flutter/bin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/sbin:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/Library/Flutter/bin:.:/Users/jun/.aff/bin:/Users/jun/depot_tools" /Applications/Xcode_9.4.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/jun/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/jun/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_9.4.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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Index/DataStore -iquote /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator/include -I/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator -F/Users/jun/Desktop/flutter_sample_178/ios/Flutter -MMD -MT dependencies -MF /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.d --serialize-diagnostics /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.dia -c /Users/jun/Desktop/flutter_sample_178/ios/Runner/GeneratedPluginRegistrant.m -o /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o CompileC /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/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/jun/Desktop/flutter_sample_178/ios export LANG=en_US.US-ASCII export PATH="/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode_9.4.app/Contents/Developer/usr/bin:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/Library/Flutter/bin:.:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/.aff/bin:/Users/jun/.pub-cache/bin:.:/Users/jun/depot_tools:/Users/jun/Library/Flutter/bin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/sbin:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/Library/Flutter/bin:.:/Users/jun/.aff/bin:/Users/jun/depot_tools" /Applications/Xcode_9.4.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/jun/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/jun/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_9.4.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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Index/DataStore -iquote /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator/include -I/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator -F/Users/jun/Desktop/flutter_sample_178/ios/Flutter -MMD -MT dependencies -MF /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.d --serialize-diagnostics /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.dia -c /Users/jun/Desktop/flutter_sample_178/ios/Runner/AppDelegate.m -o /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o Ld /Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator/Runner.app/Runner normal x86_64 cd /Users/jun/Desktop/flutter_sample_178/ios export IPHONEOS_DEPLOYMENT_TARGET=8.0 export PATH="/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode_9.4.app/Contents/Developer/usr/bin:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/Library/Flutter/bin:.:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/.aff/bin:/Users/jun/.pub-cache/bin:.:/Users/jun/depot_tools:/Users/jun/Library/Flutter/bin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/sbin:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/Library/Flutter/bin:.:/Users/jun/.aff/bin:/Users/jun/depot_tools" /Applications/Xcode_9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk -L/Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator -L/Users/jun/Desktop/flutter_sample_178/ios/Flutter -F/Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator -F/Users/jun/Desktop/flutter_sample_178/ios/Flutter -filelist /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app-Simulated.xcent -framework Flutter -framework App -Xlinker -dependency_info -Xlinker /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat -o /Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator/Runner.app/Runner ld: warning: linking ObjC for iOS Simulator, but dylib (/Users/jun/Desktop/flutter_sample_178/ios/Flutter/Flutter.framework/Flutter) was compiled for MacOSX PBXCp Flutter/App.framework /Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework cd /Users/jun/Desktop/flutter_sample_178/ios export PATH="/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode_9.4.app/Contents/Developer/usr/bin:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/Library/Flutter/bin:.:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/.aff/bin:/Users/jun/.pub-cache/bin:.:/Users/jun/depot_tools:/Users/jun/Library/Flutter/bin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/sbin:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/Library/Flutter/bin:.:/Users/jun/.aff/bin:/Users/jun/depot_tools" 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/jun/Desktop/flutter_sample_178/ios/Flutter/App.framework /Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator/Runner.app/Frameworks PBXCp Flutter/Flutter.framework /Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework cd /Users/jun/Desktop/flutter_sample_178/ios export PATH="/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode_9.4.app/Contents/Developer/usr/bin:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/Library/Flutter/bin:.:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/.aff/bin:/Users/jun/.pub-cache/bin:.:/Users/jun/depot_tools:/Users/jun/Library/Flutter/bin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/sbin:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/Library/Flutter/bin:.:/Users/jun/.aff/bin:/Users/jun/depot_tools" 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/jun/Desktop/flutter_sample_178/ios/Flutter/Flutter.framework /Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator/Runner.app/Frameworks CodeSign /Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework cd /Users/jun/Desktop/flutter_sample_178/ios export CODESIGN_ALLOCATE=/Applications/Xcode_9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate export PATH="/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode_9.4.app/Contents/Developer/usr/bin:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/Library/Flutter/bin:.:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/.aff/bin:/Users/jun/.pub-cache/bin:.:/Users/jun/depot_tools:/Users/jun/Library/Flutter/bin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/sbin:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/Library/Flutter/bin:.:/Users/jun/.aff/bin:/Users/jun/depot_tools" Signing Identity: "-" /usr/bin/codesign --force --sign - --preserve-metadata=identifier,entitlements,flags --timestamp=none /Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework CodeSign /Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework cd /Users/jun/Desktop/flutter_sample_178/ios export CODESIGN_ALLOCATE=/Applications/Xcode_9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate export PATH="/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode_9.4.app/Contents/Developer/usr/bin:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/Library/Flutter/bin:.:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/.aff/bin:/Users/jun/.pub-cache/bin:.:/Users/jun/depot_tools:/Users/jun/Library/Flutter/bin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/sbin:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/Library/Flutter/bin:.:/Users/jun/.aff/bin:/Users/jun/depot_tools" Signing Identity: "-" /usr/bin/codesign --force --sign - --preserve-metadata=identifier,entitlements,flags --timestamp=none /Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework PhaseScriptExecution Thin\ Binary /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh cd /Users/jun/Desktop/flutter_sample_178/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=jun 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/jun/Desktop/flutter_sample_178/build/ios export BUILD_ROOT=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Products export BUILD_STYLE= export BUILD_VARIANTS=normal export BUILT_PRODUCTS_DIR=/Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator export CACHE_ROOT=/var/folders/y_/6yzwnz8s1txf44x99m82cbww0000gp/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode export CCHROOT=/var/folders/y_/6yzwnz8s1txf44x99m82cbww0000gp/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode export CHMOD=/bin/chmod export CHOWN=/usr/sbin/chown export CLANG_ANALYZER_NONNULL=YES export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x export CLANG_CXX_LIBRARY=libc++ export CLANG_ENABLE_MODULES=YES export CLANG_ENABLE_OBJC_ARC=YES export CLANG_MODULES_BUILD_SESSION_FILE=/Users/jun/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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses export CLEAN_PRECOMPS=YES export CLONE_HEADERS=NO export CODESIGNING_FOLDER_PATH=/Users/jun/Desktop/flutter_sample_178/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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/CompositeSDKs export COMPRESS_PNG_FILES=YES export CONFIGURATION=Debug export CONFIGURATION_BUILD_DIR=/Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator export CONFIGURATION_TEMP_DIR=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/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_9.4.app/Contents/Developer/Platforms/iPhoneOS.platform export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode_9.4.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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources export DERIVED_FILE_DIR=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources export DERIVED_SOURCES_DIR=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode_9.4.app/Contents/Developer/Applications export DEVELOPER_BIN_DIR=/Applications/Xcode_9.4.app/Contents/Developer/usr/bin export DEVELOPER_DIR=/Applications/Xcode_9.4.app/Contents/Developer export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode_9.4.app/Contents/Developer/Library/Frameworks export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode_9.4.app/Contents/Developer/Library/Frameworks export DEVELOPER_LIBRARY_DIR=/Applications/Xcode_9.4.app/Contents/Developer/Library export DEVELOPER_SDK_DIR=/Applications/Xcode_9.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs export DEVELOPER_TOOLS_DIR=/Applications/Xcode_9.4.app/Contents/Developer/Tools export DEVELOPER_USR_DIR=/Applications/Xcode_9.4.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_9.4.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/jun/Desktop/flutter_sample_178/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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList export FIXED_FILES_DIR=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles export FLUTTER_APPLICATION_PATH=/Users/jun/Desktop/flutter_sample_178 export FLUTTER_BUILD_DIR=build export FLUTTER_BUILD_NAME=1.0.0 export FLUTTER_BUILD_NUMBER=1 export FLUTTER_FRAMEWORK_DIR=/Users/jun/fvm/versions/1.7.8+hotfix.4/bin/cache/artifacts/engine/ios export FLUTTER_ROOT=/Users/jun/fvm/versions/1.7.8+hotfix.4 export FLUTTER_SUPPRESS_ANALYTICS=true export FLUTTER_TARGET=/Users/jun/Desktop/flutter_sample_178/lib/main.dart export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks export FRAMEWORK_FLAG_PREFIX=-framework export FRAMEWORK_SEARCH_PATHS="/Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator /Users/jun/Desktop/flutter_sample_178/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/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator/include " export HIDE_BITCODE_SYMBOLS=YES export HOME=/Users/jun 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=jun 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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/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_9.4.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/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator /Users/jun/Desktop/flutter_sample_178/ios/Flutter" export LINKER_DISPLAYS_MANGLED_NAMES=NO export LINK_FILE_LIST_normal_x86_64=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/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=18D109 export MAC_OS_X_VERSION_ACTUAL=101403 export MAC_OS_X_VERSION_MAJOR=101400 export MAC_OS_X_VERSION_MINOR=1403 export METAL_LIBRARY_FILE_BASE=default export METAL_LIBRARY_OUTPUT_DIR=/Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator/Runner.app export MODULE_CACHE_DIR=/Users/jun/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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects export OBJECT_FILE_DIR_normal=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal export OBJROOT=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/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_9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode_9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode_9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode_9.4.app/Contents/Developer/usr/bin:/Applications/Xcode_9.4.app/Contents/Developer/usr/local/bin:/Applications/Xcode_9.4.app/Contents/Developer/Tools:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/Library/Flutter/bin:/Users/jun/.aff/bin:/Users/jun/.pub-cache/bin:/Users/jun/depot_tools:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/sbin" export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode_9.4.app/Contents/Developer/Headers /Applications/Xcode_9.4.app/Contents/Developer/SDKs /Applications/Xcode_9.4.app/Contents/Developer/Platforms" export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist export PFE_FILE_C_DIALECTS=objective-c export PKGINFO_FILE_PATH=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo export PKGINFO_PATH=Runner.app/PkgInfo export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode_9.4.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr export PLATFORM_DIR=/Applications/Xcode_9.4.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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO export PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders export PRODUCT_BUNDLE_IDENTIFIER=com.example.app export PRODUCT_MODULE_NAME=Runner export PRODUCT_NAME=Runner export PRODUCT_SETTINGS_PATH=/Users/jun/Desktop/flutter_sample_178/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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/DerivedSources export PROJECT_DIR=/Users/jun/Desktop/flutter_sample_178/ios export PROJECT_FILE_PATH=/Users/jun/Desktop/flutter_sample_178/ios/Runner.xcodeproj export PROJECT_NAME=Runner export PROJECT_TEMP_DIR=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build export PROJECT_TEMP_ROOT=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources export REZ_OBJECTS_DIR=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects export REZ_SEARCH_PATHS="/Users/jun/Desktop/flutter_sample_178/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_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk export SDK_DIR=/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk export SDK_DIR_iphonesimulator11_4=/Applications/Xcode_9.4.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/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator/DerivedSources export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks export SHARED_PRECOMPS_DIR=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/PrecompiledHeaders export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport export SKIP_INSTALL=NO export SOURCE_ROOT=/Users/jun/Desktop/flutter_sample_178/ios export SRCROOT=/Users/jun/Desktop/flutter_sample_178/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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/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_9.4.app/Contents/Developer/Applications export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode_9.4.app/Contents/Developer/usr/bin export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode_9.4.app/Contents/Developer/Applications/Utilities/Built Examples" export SYSTEM_DEVELOPER_DIR=/Applications/Xcode_9.4.app/Contents/Developer export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode_9.4.app/Contents/Developer/ADC Reference Library" export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode_9.4.app/Contents/Developer/Applications/Graphics Tools" export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode_9.4.app/Contents/Developer/Applications/Java Tools" export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode_9.4.app/Contents/Developer/Applications/Performance Tools" export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode_9.4.app/Contents/Developer/ADC Reference Library/releasenotes" export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode_9.4.app/Contents/Developer/Tools export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode_9.4.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools" export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode_9.4.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools" export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode_9.4.app/Contents/Developer/usr export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode_9.4.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/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator export TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder" export TARGET_NAME=Runner export TARGET_TEMP_DIR=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_DIR=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_FILES_DIR=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_FILE_DIR=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build export TEMP_ROOT=/Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault export TOOLCHAIN_DIR=/Applications/Xcode_9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO export UID=502 export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app export UNSTRIPPED_PRODUCT=NO export USER=jun export USER_APPS_DIR=/Users/jun/Applications export USER_LIBRARY_DIR=/Users/jun/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=jun 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_9.4.app/Contents/Developer/Library/Xcode export XCODE_PRODUCT_BUILD_VERSION=9F1027a export XCODE_VERSION_ACTUAL=0940 export XCODE_VERSION_MAJOR=0900 export XCODE_VERSION_MINOR=0940 export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices export YACC=yacc export arch=x86_64 export variant=normal /bin/sh -c /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh Touch /Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator/Runner.app cd /Users/jun/Desktop/flutter_sample_178/ios export PATH="/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode_9.4.app/Contents/Developer/usr/bin:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/Library/Flutter/bin:.:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/.aff/bin:/Users/jun/.pub-cache/bin:.:/Users/jun/depot_tools:/Users/jun/Library/Flutter/bin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/sbin:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/Library/Flutter/bin:.:/Users/jun/.aff/bin:/Users/jun/depot_tools" /usr/bin/touch -c /Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator/Runner.app CodeSign /Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator/Runner.app cd /Users/jun/Desktop/flutter_sample_178/ios export CODESIGN_ALLOCATE=/Applications/Xcode_9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate export PATH="/Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode_9.4.app/Contents/Developer/usr/bin:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/Library/Flutter/bin:.:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/.aff/bin:/Users/jun/.pub-cache/bin:.:/Users/jun/depot_tools:/Users/jun/Library/Flutter/bin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/sbin:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/Library/Flutter/bin:.:/Users/jun/.aff/bin:/Users/jun/depot_tools" Signing Identity: "-" /usr/bin/codesign --force --sign - --entitlements /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent --timestamp=none /Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator/Runner.app ** BUILD SUCCEEDED ** [ +24 ms] Running Xcode build... (completed in 5,225ms, longer than expected) [ +1 ms] Xcode build done. 5.2s [ +1 ms] executing: [/Users/jun/Desktop/flutter_sample_178/ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/jun/Desktop/flutter_sample_178/build/ios -sdk iphonesimulator -arch x86_64 FLUTTER_SUPPRESS_ANALYTICS=true -showBuildSettings [ +962 ms] Exit code 0 from: /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/jun/Desktop/flutter_sample_178/build/ios -sdk iphonesimulator -arch x86_64 FLUTTER_SUPPRESS_ANALYTICS=true -showBuildSettings [ ] Build settings from command line: ARCHS = x86_64 BUILD_DIR = /Users/jun/Desktop/flutter_sample_178/build/ios FLUTTER_SUPPRESS_ANALYTICS = true 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 = jun 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/jun/Desktop/flutter_sample_178/build/ios BUILD_ROOT = /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Products BUILD_STYLE = BUILD_VARIANTS = normal BUILT_PRODUCTS_DIR = /Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator CACHE_ROOT = /var/folders/y_/6yzwnz8s1txf44x99m82cbww0000gp/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode CCHROOT = /var/folders/y_/6yzwnz8s1txf44x99m82cbww0000gp/C/com.apple.DeveloperTools/9.4-9F1027a/Xcode CHMOD = /bin/chmod CHOWN = /usr/sbin/chown CLANG_ANALYZER_NONNULL = YES CLANG_CXX_LANGUAGE_STANDARD = gnu++0x CLANG_CXX_LIBRARY = libc++ CLANG_ENABLE_MODULES = YES CLANG_ENABLE_OBJC_ARC = YES CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES CLANG_WARN_BOOL_CONVERSION = YES CLANG_WARN_COMMA = YES CLANG_WARN_CONSTANT_CONVERSION = YES CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR CLANG_WARN_EMPTY_BODY = YES CLANG_WARN_ENUM_CONVERSION = YES CLANG_WARN_INFINITE_RECURSION = YES CLANG_WARN_INT_CONVERSION = YES CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES CLANG_WARN_OBJC_LITERAL_CONVERSION = YES CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR CLANG_WARN_RANGE_LOOP_ANALYSIS = YES CLANG_WARN_STRICT_PROTOTYPES = YES CLANG_WARN_SUSPICIOUS_MOVE = YES CLANG_WARN_UNREACHABLE_CODE = YES CLANG_WARN__DUPLICATE_METHOD_MATCH = YES CLASS_FILE_DIR = /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses CLEAN_PRECOMPS = YES CLONE_HEADERS = NO CODESIGNING_FOLDER_PATH = /Users/jun/Desktop/flutter_sample_178/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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/CompositeSDKs COMPRESS_PNG_FILES = YES CONFIGURATION = Debug CONFIGURATION_BUILD_DIR = /Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator CONFIGURATION_TEMP_DIR = /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/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_9.4.app/Contents/Developer/Platforms/iPhoneOS.platform CORRESPONDING_DEVICE_PLATFORM_NAME = iphoneos CORRESPONDING_DEVICE_SDK_DIR = /Applications/Xcode_9.4.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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources DERIVED_FILE_DIR = /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources DERIVED_SOURCES_DIR = /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode_9.4.app/Contents/Developer/Applications DEVELOPER_BIN_DIR = /Applications/Xcode_9.4.app/Contents/Developer/usr/bin DEVELOPER_DIR = /Applications/Xcode_9.4.app/Contents/Developer DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode_9.4.app/Contents/Developer/Library/Frameworks DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode_9.4.app/Contents/Developer/Library/Frameworks DEVELOPER_LIBRARY_DIR = /Applications/Xcode_9.4.app/Contents/Developer/Library DEVELOPER_SDK_DIR = /Applications/Xcode_9.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs DEVELOPER_TOOLS_DIR = /Applications/Xcode_9.4.app/Contents/Developer/Tools DEVELOPER_USR_DIR = /Applications/Xcode_9.4.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_9.4.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/jun/Desktop/flutter_sample_178/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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList FIXED_FILES_DIR = /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles FLUTTER_APPLICATION_PATH = /Users/jun/Desktop/flutter_sample_178 FLUTTER_BUILD_DIR = build FLUTTER_BUILD_NAME = 1.0.0 FLUTTER_BUILD_NUMBER = 1 FLUTTER_FRAMEWORK_DIR = /Users/jun/fvm/versions/1.7.8+hotfix.4/bin/cache/artifacts/engine/ios FLUTTER_ROOT = /Users/jun/fvm/versions/1.7.8+hotfix.4 FLUTTER_SUPPRESS_ANALYTICS = true FLUTTER_TARGET = /Users/jun/Desktop/flutter_sample_178/lib/main.dart FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks FRAMEWORK_FLAG_PREFIX = -framework FRAMEWORK_SEARCH_PATHS = /Users/jun/Desktop/flutter_sample_178/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/jun 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 = jun 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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/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_9.4.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/jun/Desktop/flutter_sample_178/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 = 18D109 MAC_OS_X_VERSION_ACTUAL = 101403 MAC_OS_X_VERSION_MAJOR = 101400 MAC_OS_X_VERSION_MINOR = 1403 METAL_LIBRARY_FILE_BASE = default METAL_LIBRARY_OUTPUT_DIR = /Users/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator/Runner.app MODULE_CACHE_DIR = /Users/jun/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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects OBJECT_FILE_DIR_normal = /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal OBJROOT = /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/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_9.4.app/Contents/Developer/usr/bin:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/Library/Flutter/bin:.:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/.aff/bin:/Users/jun/.pub-cache/bin:.:/Users/jun/depot_tools:/Users/jun/Library/Flutter/bin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/sbin:/Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin:/Users/jun/Library/Android/sdk/platform-tools:/Users/jun/Library/Flutter/bin:.:/Users/jun/.aff/bin:/Users/jun/depot_tools PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode_9.4.app/Contents/Developer/Headers /Applications/Xcode_9.4.app/Contents/Developer/SDKs /Applications/Xcode_9.4.app/Contents/Developer/Platforms PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist PFE_FILE_C_DIALECTS = objective-c PKGINFO_FILE_PATH = /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo PKGINFO_PATH = Runner.app/PkgInfo PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode_9.4.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr PLATFORM_DIR = /Applications/Xcode_9.4.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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders PRODUCT_BUNDLE_IDENTIFIER = com.example.app PRODUCT_MODULE_NAME = Runner PRODUCT_NAME = Runner PRODUCT_SETTINGS_PATH = /Users/jun/Desktop/flutter_sample_178/ios/Runner/Info.plist PRODUCT_TYPE = com.apple.product-type.application PROFILING_CODE = NO PROJECT = Runner PROJECT_DERIVED_FILE_DIR = /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/DerivedSources PROJECT_DIR = /Users/jun/Desktop/flutter_sample_178/ios PROJECT_FILE_PATH = /Users/jun/Desktop/flutter_sample_178/ios/Runner.xcodeproj PROJECT_NAME = Runner PROJECT_TEMP_DIR = /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build PROJECT_TEMP_ROOT = /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources REZ_OBJECTS_DIR = /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/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_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk SDK_DIR = /Applications/Xcode_9.4.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk SDK_DIR_iphonesimulator11_4 = /Applications/Xcode_9.4.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/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator/DerivedSources SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks SHARED_PRECOMPS_DIR = /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/PrecompiledHeaders SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport SKIP_INSTALL = NO SOURCE_ROOT = /Users/jun/Desktop/flutter_sample_178/ios SRCROOT = /Users/jun/Desktop/flutter_sample_178/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/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/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_9.4.app/Contents/Developer/Applications SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode_9.4.app/Contents/Developer/usr/bin SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode_9.4.app/Contents/Developer/Applications/Utilities/Built Examples SYSTEM_DEVELOPER_DIR = /Applications/Xcode_9.4.app/Contents/Developer SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode_9.4.app/Contents/Developer/ADC Reference Library SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode_9.4.app/Contents/Developer/Applications/Graphics Tools SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode_9.4.app/Contents/Developer/Applications/Java Tools SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode_9.4.app/Contents/Developer/Applications/Performance Tools SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode_9.4.app/Contents/Developer/ADC Reference Library/releasenotes SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode_9.4.app/Contents/Developer/Tools SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode_9.4.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode_9.4.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode_9.4.app/Contents/Developer/usr SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode_9.4.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/jun/Desktop/flutter_sample_178/build/ios/Debug-iphonesimulator TARGET_NAME = Runner TARGET_TEMP_DIR = /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build TEMP_DIR = /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build TEMP_FILES_DIR = /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build TEMP_FILE_DIR = /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build TEMP_ROOT = /Users/jun/Library/Developer/Xcode/DerivedData/Runner-eysikfwsngfkieddjefbwinfifgd/Build/Intermediates.noindex TOOLCHAIN_DIR = /Applications/Xcode_9.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO UID = 502 UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app UNSTRIPPED_PRODUCT = NO USER = jun USER_APPS_DIR = /Users/jun/Applications USER_LIBRARY_DIR = /Users/jun/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 = jun 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_9.4.app/Contents/Developer/Library/Xcode XCODE_PRODUCT_BUILD_VERSION = 9F1027a XCODE_VERSION_ACTUAL = 0940 XCODE_VERSION_MAJOR = 0900 XCODE_VERSION_MINOR = 0940 XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices YACC = yacc arch = x86_64 variant = normal [ +154 ms] executing: /usr/bin/xcrun simctl install B79F2938-A6AD-4502-9FF8-15B653CEFC4A /Users/jun/Desktop/flutter_sample_178/build/ios/iphonesimulator/Runner.app [ +555 ms] executing: /usr/bin/defaults read /Users/jun/Desktop/flutter_sample_178/build/ios/iphonesimulator/Runner.app/Info CFBundleIdentifier [ +186 ms] Exit code 0 from: /usr/bin/defaults read /Users/jun/Desktop/flutter_sample_178/build/ios/iphonesimulator/Runner.app/Info CFBundleIdentifier [ ] com.example.app [ ] executing: /usr/bin/xcrun simctl launch B79F2938-A6AD-4502-9FF8-15B653CEFC4A com.example.app --enable-dart-profiling --enable-checked-mode --verify-entry-points --observatory-port=0 [ +204 ms] com.example.app: 93798 [ ] Waiting for observatory port to be available... [ +200 ms] [DEVICE LOG] Timestamp (process)[PID] [ ] [DEVICE LOG] 2020-01-10 10:53:53.393433+0800 localhost Runner[93798]: (CoreFoundation) Created Activity ID: 0x17eee91, Description: Loading Preferences From System CFPrefsD For Search List [ ] [DEVICE LOG] 2020-01-10 10:53:53.393435+0800 localhost Runner[93798]: (CoreFoundation) Created Activity ID: 0x17eee90, Description: Loading Preferences From System CFPrefsD For Search List [ +6 ms] [DEVICE LOG] 2020-01-10 10:53:53.402266+0800 localhost Runner[93798]: (CoreFoundation) Created Activity ID: 0x17eee92, Description: Loading Preferences From System CFPrefsD For Search List [ +4 ms] [DEVICE LOG] 2020-01-10 10:53:53.407081+0800 localhost Runner[93798]: (libAccessibility.dylib) [com.apple.Accessibility:AccessibilitySupport] Retrieving resting unlock: 0 [ +181 ms] [DEVICE LOG] 2020-01-10 10:53:53.587848+0800 localhost Runner[93798]: (Flutter) flutter: Observatory listening on http://127.0.0.1:64282/x3ZvTUDA7bw=/ [ +4 ms] Observatory URL on device: http://127.0.0.1:64282/x3ZvTUDA7bw=/ [ +4 ms] Connecting to service protocol: http://127.0.0.1:64282/x3ZvTUDA7bw=/ [ +180 ms] Successfully connected to service protocol: http://127.0.0.1:64282/x3ZvTUDA7bw=/ [ +2 ms] Sending to VM service: getVM({}) [ +4 ms] Result: {type: VM, name: vm, architectureBits: 64, targetCPU: x64, hostCPU: Intel(R) Core(TM) i5-8259U CPU @ 2.30GHz, version: 2.4.0 (Wed Jun 19 11:53:45 2019 +0200) on "ios_x64", _profilerMode: VM, _nativeZoneMemoryUsage: 0, pid: 93798, startTime: 157862... [ +4 ms] Sending to VM service: getIsolate({isolateId: isolates/1008162004}) [ +3 ms] Sending to VM service: _flutter.listViews({}) [ +1 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0x7faa8c817c20, isolate: {type: @Isolate, fixedId: true, id: isolates/1008162004, name: main.dart$main-1008162004, number: 1008162004}}]} [ +6 ms] DevFS: Creating new filesystem on the device (null) [ ] Sending to VM service: _createDevFS({fsName: flutter_sample_178}) [ +19 ms] Result: {type: Isolate, id: isolates/1008162004, name: main, number: 1008162004, _originNumber: 1008162004, startTime: 1578624833490, _heaps: {new: {type: HeapSpace, name: new, vmName: Scavenger, collections: 0, avgCollectionPeriodMillis: 0.0, used: 52428... [ +14 ms] Result: {type: FileSystem, name: flutter_sample_178, uri: file:///Users/jun/Library/Developer/CoreSimulator/Devices/B79F2938-A6AD-4502-9FF8-15B653CEFC4A/data/Containers/Data/Application/D0240A63-55D9-4486-9792-0341B671C915/tmp/flutter_sample_1783p2K1B/flu... [ ] DevFS: Created new filesystem on the device (file:///Users/jun/Library/Developer/CoreSimulator/Devices/B79F2938-A6AD-4502-9FF8-15B653CEFC4A/data/Containers/Data/Application/D0240A63-55D9-4486-9792-0341B671C915/tmp/flutter_sample_1783p2K1B/flutter_sample_178/) [ +1 ms] Updating assets [ +61 ms] Scanned through 0 files in 0ms [ +1 ms] Syncing files to device iPhone X... [ +1 ms] Scanning asset files [ +2 ms] <- reset [ ] Compiling dart to kernel with 0 updated files [ +8 ms] /Users/jun/fvm/versions/1.7.8+hotfix.4/bin/cache/dart-sdk/bin/dart /Users/jun/fvm/versions/1.7.8+hotfix.4/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /Users/jun/fvm/versions/1.7.8+hotfix.4/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --strong --target=flutter --output-dill build/app.dill --packages /Users/jun/Desktop/flutter_sample_178/.packages --filesystem-scheme org-dartlang-root [ +8 ms] <- compile package:app/main.dart [ +118 ms] -> result 76148c3a-dfd9-4c42-878e-542f676b9ae5 [+1138 ms] -> 76148c3a-dfd9-4c42-878e-542f676b9ae5 [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/collection.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/algorithms.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/canonicalized_map.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/combined_wrappers/combined_iterable.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/combined_wrappers/combined_list.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/combined_wrappers/combined_map.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/comparators.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/empty_unmodifiable_set.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/wrappers.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/equality.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/equality_map.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/equality_set.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/functions.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/iterable_zip.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/priority_queue.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/queue_list.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/union_set.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/unmodifiable_wrappers.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/union_set_controller.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/collection-1.14.11/lib/src/utils.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/meta-1.1.6/lib/meta.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/typed_data-1.1.6/lib/typed_buffers.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/hash.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/vector_math_64.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/aabb2.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/aabb3.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/colors.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/frustum.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/intersection_result.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/matrix2.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/matrix3.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/matrix4.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/obb3.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/plane.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/quad.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/quaternion.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/ray.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/sphere.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/third_party/noise.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/triangle.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/vector.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/vector2.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/vector3.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/vector4.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/constants.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/error_helpers.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/opengl.dart [ ] -> +file:///Users/jun/.pub-cache/hosted/pub.dartlang.org/vector_math-2.0.8/lib/src/vector_math_64/utilities.dart [ ] -> +file:///Users/jun/Desktop/flutter_sample_178/lib/main.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/animation.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/cupertino.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/foundation.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/gestures.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/material.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/painting.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/physics.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/rendering.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/scheduler.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/semantics.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/services.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/animation/animation.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/animation/animation_controller.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/animation/listener_helpers.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/animation/animations.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/animation/curves.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/animation/tween.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/animation/tween_sequence.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/cupertino/action_sheet.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/object.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/box.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/cupertino/activity_indicator.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/ticker_provider.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/cupertino/app.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/cupertino/bottom_tab_bar.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/cupertino/button.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/cupertino/colors.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/cupertino/date_picker.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/cupertino/dialog.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/cupertino/icons.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/cupertino/localizations.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/cupertino/nav_bar.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/foundation/diagnostics.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/cupertino/page_scaffold.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/cupertino/picker.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/cupertino/refresh.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/cupertino/route.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/cupertino/scrollbar.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/cupertino/segmented_control.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/cupertino/slider.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/cupertino/switch.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/cupertino/tab_scaffold.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/cupertino/tab_view.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/cupertino/text_field.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/automatic_keep_alive.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/cupertino/text_selection.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/cupertino/text_theme.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/cupertino/theme.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/cupertino/thumb_painter.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/foundation/_bitfield_io.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/foundation/_isolates_io.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/foundation/_platform_io.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/foundation/annotations.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/foundation/assertions.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/foundation/basic_types.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/foundation/binding.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/foundation/bitfield.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/foundation/change_notifier.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/foundation/collections.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/foundation/consolidate_response.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/foundation/constants.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/foundation/debug.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/foundation/isolates.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/foundation/key.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/foundation/licenses.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/foundation/node.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/foundation/observer_list.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/foundation/platform.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/foundation/print.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/foundation/profile.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/foundation/serialization.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/foundation/synchronous_future.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/foundation/unicode.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/gestures/arena.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/gestures/binding.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/gestures/constants.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/gestures/converter.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/gestures/debug.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/gestures/drag.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/gestures/drag_details.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/gestures/eager.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/gestures/events.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/gestures/force_press.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/gestures/hit_test.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/gestures/long_press.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/gestures/lsq_solver.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/gestures/monodrag.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/gestures/mouse_tracking.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/gestures/multidrag.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/gestures/multitap.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/gestures/pointer_router.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/gestures/pointer_signal_resolver.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/gestures/recognizer.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/gestures/scale.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/gestures/tap.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/gestures/team.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/gestures/velocity_tracker.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/about.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/animated_icons.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/animated_icons/animated_icons.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/animated_icons/animated_icons_data.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/animated_icons/data/add_event.g.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/animated_icons/data/arrow_menu.g.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/animated_icons/data/close_menu.g.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/animated_icons/data/ellipsis_search.g.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/animated_icons/data/event_add.g.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/animated_icons/data/home_menu.g.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/animated_icons/data/list_view.g.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/animated_icons/data/menu_arrow.g.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/animated_icons/data/menu_close.g.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/animated_icons/data/menu_home.g.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/animated_icons/data/pause_play.g.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/animated_icons/data/play_pause.g.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/animated_icons/data/search_ellipsis.g.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/animated_icons/data/view_list.g.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/app.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/app_bar.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/app_bar_theme.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/arc.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/back_button.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/bottom_app_bar.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/bottom_app_bar_theme.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/bottom_navigation_bar.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/bottom_sheet.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/bottom_sheet_theme.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/button.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/button_bar.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/button_theme.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/card.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/card_theme.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/checkbox.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/checkbox_list_tile.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/chip.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/chip_theme.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/circle_avatar.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/color_scheme.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/colors.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/constants.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/data_table.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/data_table_source.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/date_picker.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/debug.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/dialog.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/dialog_theme.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/divider.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/drawer.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/drawer_header.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/dropdown.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/binding.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/expand_icon.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/expansion_panel.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/expansion_tile.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/feedback.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/flat_button.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/flexible_space_bar.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/floating_action_button.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/floating_action_button_location.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/floating_action_button_theme.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/flutter_logo.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/grid_tile.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/grid_tile_bar.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/icon_button.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/icons.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/ink_decoration.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/ink_highlight.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/ink_ripple.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/ink_splash.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/ink_well.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/input_border.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/input_decorator.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/list_tile.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/material.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/material_button.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/material_localizations.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/material_state.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/mergeable_material.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/outline_button.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/page.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/page_transitions_theme.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/paginated_data_table.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/popup_menu.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/progress_indicator.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/radio.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/radio_list_tile.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/raised_button.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/range_slider.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/refresh_indicator.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/reorderable_list.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/scaffold.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/scrollbar.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/search.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/shadows.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/slider.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/slider_theme.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/snack_bar.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/snack_bar_theme.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/stepper.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/switch.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/switch_list_tile.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/tab_bar_theme.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/tab_controller.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/tab_indicator.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/tabs.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/text_field.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/text_form_field.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/text_selection.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/text_theme.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/theme.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/theme_data.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/time.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/time_picker.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/toggleable.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/tooltip.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/typography.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/material/user_accounts_drawer_header.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/_network_image_io.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/alignment.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/basic_types.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/beveled_rectangle_border.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/binding.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/border_radius.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/borders.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/box_border.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/box_decoration.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/box_fit.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/box_shadow.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/circle_border.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/clip.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/colors.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/continuous_rectangle_border.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/debug.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/decoration.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/decoration_image.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/edge_insets.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/flutter_logo.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/fractional_offset.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/geometry.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/gradient.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/image_cache.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/image_decoder.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/image_provider.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/image_resolution.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/image_stream.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/inline_span.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/matrix_utils.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/notched_shapes.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/paint_utilities.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/placeholder_span.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/rounded_rectangle_border.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/shader_warm_up.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/shape_decoration.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/stadium_border.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/strut_style.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/text_painter.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/text_span.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/painting/text_style.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/physics/clamped_simulation.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/physics/friction_simulation.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/physics/gravity_simulation.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/physics/simulation.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/physics/spring_simulation.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/physics/tolerance.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/physics/utils.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/animated_size.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/binding.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/services/binding.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/scheduler/binding.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/semantics/binding.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/custom_layout.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/custom_paint.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/debug.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/debug_overflow_indicator.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/editable.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/error.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/flex.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/flow.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/image.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/layer.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/list_body.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/list_wheel_viewport.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/paragraph.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/performance_overlay.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/platform_view.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/proxy_box.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/rotated_box.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/shifted_box.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/sliver.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/sliver_fill.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/sliver_fixed_extent_list.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/sliver_grid.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/sliver_list.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/sliver_multi_box_adaptor.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/sliver_padding.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/sliver_persistent_header.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/stack.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/table.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/table_border.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/texture.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/tweens.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/view.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/viewport.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/viewport_offset.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/rendering/wrap.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/scheduler/debug.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/scheduler/priority.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/scheduler/ticker.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/semantics/debug.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/semantics/semantics.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/semantics/semantics_event.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/semantics/semantics_service.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/services/asset_bundle.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/services/binary_messenger.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/services/clipboard.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/services/font_loader.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/services/haptic_feedback.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/services/keyboard_key.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/services/keyboard_maps.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/services/message_codec.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/services/message_codecs.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/services/platform_channel.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/services/platform_messages.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/services/platform_views.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/services/raw_keyboard.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/services/raw_keyboard_android.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/services/raw_keyboard_fuchsia.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/services/raw_keyboard_linux.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/services/raw_keyboard_macos.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/services/system_channels.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/services/system_chrome.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/services/system_navigator.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/services/system_sound.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/services/text_editing.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/services/text_formatter.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/services/text_input.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/actions.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/animated_cross_fade.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/animated_list.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/animated_size.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/animated_switcher.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/annotated_region.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/app.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/async.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/banner.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/basic.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/bottom_navigation_bar_item.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/container.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/debug.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/dismissible.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/drag_target.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/draggable_scrollable_sheet.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/scroll_notification.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/editable_text.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/fade_in_image.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/focus_manager.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/focus_scope.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/focus_traversal.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/form.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/framework.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/gesture_detector.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/grid_paper.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/heroes.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/icon.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/icon_data.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/icon_theme.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/icon_theme_data.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/image.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/image_icon.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/implicit_animations.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/inherited_model.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/inherited_notifier.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/layout_builder.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/list_wheel_scroll_view.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/localizations.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/media_query.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/modal_barrier.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/navigation_toolbar.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/navigator.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/nested_scroll_view.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/notification_listener.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/orientation_builder.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/overlay.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/overscroll_indicator.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/page_storage.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/page_view.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/pages.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/performance_overlay.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/placeholder.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/platform_view.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/preferred_size.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/primary_scroll_controller.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/raw_keyboard_listener.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/routes.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/safe_area.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/scroll_activity.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/scroll_configuration.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/scroll_context.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/scroll_controller.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/scroll_metrics.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/scroll_physics.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/scroll_position.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/scroll_position_with_single_context.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/scroll_simulation.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/scroll_view.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/scrollable.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/scrollbar.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/semantics_debugger.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/shortcuts.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/single_child_scroll_view.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/size_changed_layout_notifier.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/sliver.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/sliver_persistent_header.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/sliver_prototype_extent_list.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/spacer.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/status_transitions.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/table.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/text.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/text_selection.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/texture.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/title.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/transitions.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/unique_widget.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/value_listenable_builder.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/viewport.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/visibility.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/widget_inspector.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/widget_span.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/src/widgets/will_pop_scope.dart [ ] -> +file:///Users/jun/fvm/versions/1.7.8+hotfix.4/packages/flutter/lib/widgets.dart [ ] -> 76148c3a-dfd9-4c42-878e-542f676b9ae5 build/app.dill 0 [ ] Updating files [ +70 ms] DevFS: Sync finished [ ] Syncing files to device iPhone X... (completed in 1,404ms) [ ] Synced 0.9MB. [ +1 ms] Sending to VM service: _flutter.listViews({}) [ +1 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0x7faa8c817c20, isolate: {type: @Isolate, fixedId: true, id: isolates/1008162004, name: main.dart$main-1008162004, number: 1008162004}}]} [ ] <- accept [ ] Connected to _flutterView/0x7faa8c817c20. [ +1 ms] 🔥 To hot reload changes while running, press "r". To hot restart (and rebuild state), press "R". [ ] An Observatory debugger and profiler on iPhone X is available at: http://127.0.0.1:64282/x3ZvTUDA7bw=/ [ ] For a more detailed help message, press "h". To detach, press "d"; to quit, press "q". [+2807 ms] Application finished. ``` </details> ``` Analyzing flutter_sample_178... No issues found! (ran in 6.1s) ``` ``` Doctor summary (to see all details, run flutter doctor -v): [✓] Flutter (Channel unknown, v1.7.8+hotfix.4, on Mac OS X 10.14.3 18D109, locale en-CN) [!] Android toolchain - develop for Android devices (Android SDK version 28.0.3) ! Some Android licenses not accepted. To resolve this, run: flutter doctor --android-licenses [✓] Xcode - develop for iOS and macOS (Xcode 9.4) [✗] iOS tools - develop for iOS devices ✗ libimobiledevice and ideviceinstaller are not installed. To install with Brew, run: brew update brew install --HEAD usbmuxd brew link usbmuxd brew install --HEAD libimobiledevice brew install ideviceinstaller ✗ ios-deploy not installed. To install: brew install ios-deploy [✓] Chrome - develop for the web [✓] Android Studio (version 3.5) [!] VS Code (version 1.38.1) ✗ Flutter extension not installed; install from https://marketplace.visualstudio.com/items?itemName=Dart-Code.flutter [✓] Connected device (3 available) ! Doctor found issues in 3 categories. ```
platform-ios,engine,a: internationalization,a: typography,has reproducible steps,P2,found in release: 3.3,found in release: 3.6,team-ios,triaged-ios
low
Critical
547,851,247
godot
misleading display of exported properties when out of defined range
**Godot version:** 3.2beta5 **OS/device including version:** Windows 10 **Issue description:** I'm not sure if this is a bug or just a usability issue. Let me know if it should be in proposals. Let's say I export three properties like this: ```GDScript export(int, -10, -1) var exported_int export(String, "a", "b", "c") var exported_string export(float, 10,100) var exported_float ``` They will show in the editor like this: ![image](https://user-images.githubusercontent.com/526829/72123583-7ad62700-3340-11ea-9aca-eaad8f7d440c.png) If I print their values it will print: 0 for exported_int nothing (empty string) for exported_string 0 for exported_float If I'm a game designer just tweaking some gameplay params I have no way to tell whether what's shown in the editor is the actual default value. It could be the default value, it could be null coerced to the property type or it could be another value outside the hint range. As a programmer I also expect that an unassigned variable is set to null, yet for exported properties null is coerced to the property type. I think the editor should at least print a gdscript warning saying that properties exported with a hinted range should be initialized to a value within said range. Either that or the inspector should show some warning next to the property with a popup showing the real value and a message saying it's out of the displayable range. **Steps to reproduce:** 1 - Attach the script supplied below to any node 2 - Take note of the values shown by the inspector for the exported properties 3 - Run the project The values printed out are not the ones shown in the inspector **Minimal reproduction project:** ```GDScript extends Node export(int, -10, -1) var exported_int export(String, "a", "b", "c") var exported_string export(float, 10,100) var exported_float func _ready(): printt(exported_int, exported_int == null) #prints 0 False printt(exported_string, exported_string == null, exported_string == "") #prints False True printt(exported_float, exported_float == null) #prints 0 False pass ```
bug,topic:editor,confirmed
low
Critical
547,892,980
pytorch
Dockerfile for people to quick-start contributing
It could be nice to have a Dockerfile with ccache and other things mentioned in CONTRIBUTING.md pre-configured and tweaked. Also, the [README.md](https://raw.githubusercontent.com/pytorch/pytorch/master/README.md) forgets to mention CONTRIBUTING.md even in Contributing section (though this is not a big deal).
triaged,enhancement,module: docker
medium
Major
547,914,704
angular
unexpected transition happened with router change after calling applicationRef.attachView
<!--🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅 Oh hi there! 😄 To expedite issue processing please search open and closed issues before submitting a new one. Existing issues often contain information about workarounds, resolution, or progress updates. 🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅🔅--> # 🐞 bug report ### Affected Package `@angular/animations` `@angular/router` ### Is this a regression? no ### Description The unexpected transition will happen when router change after attaching the component with the `applicationRef.attachView` ## 🔬 Minimal Reproduction Angular 8.x: https://stackblitz.com/edit/angular-router-transition-bug?file=src/app/app.component.ts Angular 9.0.0-rc.8: https://stackblitz.com/edit/github-va6d8q?file=src/app/app.component.ts 1. click the router link, you would find the unexpected transition happened 2. comment this line `this.applicationRef.attachView(view.hostView);` 3. click the router link again, you would find the transition won't happen anymore. remove the `BrowserAnimationsModule` could also stop the transition bug, so maybe the `BrowserAnimationsModule` cause the root issue. ## 🔥 Exception or Error the unexpected transition happened when router change ![Kapture 2020-01-10 at 15 32 20](https://user-images.githubusercontent.com/1506722/72134234-72243600-33be-11ea-8249-687619966abe.gif) ## 🌍 Your Environment **Angular Version:** The bug still exists in the latest angular [version 9.0.0-rc.8](https://github.com/vthinkxie/ng-transition-bug), It breaks all transition style in our components after any overlay created with `@angular/cdk` <pre><code> @angular-devkit/architect 0.803.21 @angular-devkit/build-angular 0.803.21 @angular-devkit/build-optimizer 0.803.21 @angular-devkit/build-webpack 0.803.21 @angular-devkit/core 8.3.21 @angular-devkit/schematics 8.3.21 @angular/cdk 8.2.3 @angular/cli 8.3.21 @ngtools/webpack 8.3.21 @schematics/angular 8.3.21 @schematics/update 0.803.21 rxjs 6.4.0 typescript 3.5.3 webpack 4.39.2 </code></pre> **Anything else relevant?** I have debugged this issue with DOM breakpoint and find that the className was added in different sequence if there is an attached view, which caused this issue. 1. the transition className was added immediately after router change if there is **no attached view**, this is the expected behavior. <img width="1465" alt="without-attach" src="https://user-images.githubusercontent.com/1506722/72401103-183cbb00-3786-11ea-8e38-2081dd137f27.png"> 2. the transition className was not added after router change if **there is an attached view**, and the className was added in the next tick, which caused the unexpected transition. this is not the expected behavior. <img width="1467" alt="after-attched" src="https://user-images.githubusercontent.com/1506722/72401135-28ed3100-3786-11ea-8ada-a2d770c8a6f8.png"> Here is one [ng-zorro-antd bug](https://stackblitz.com/edit/ng-zorro-antd-start-qgr95a?file=src%2Fapp%2Fhome%2Fhome.component.html) caused by this issue Hope it could be fixed before angular 9 release ref [@angular/cdk](https://github.com/angular/components/issues/14646)
type: bug/fix,area: animations,freq2: medium,area: router,state: confirmed,P4
medium
Critical
547,916,649
go
runtime: make.bat hangs
I have Windows 7 computer - windows/amd64. I am building Go from source using go1.4 as bootstrap. I am using commit 56d6b87 I am running make.bat command. ### What did you expect to see? I expected make.bat command finish successfully. ### What did you see instead? make.bat never finishes. It hangs, for example, like this: ``` c:\Users\alexb\dev\go\src>make Building Go cmd/dist using c:\users\alexb\dev\\go1.4 Building Go toolchain1 using c:\users\alexb\dev\\go1.4. Building Go bootstrap cmd/go (go_bootstrap) using Go toolchain1. Building Go toolchain2 using go_bootstrap and Go toolchain1. Building Go toolchain3 using go_bootstrap and Go toolchain2. ``` I used process explorer https://docs.microsoft.com/en-us/sysinternals/downloads/process-explorer to examine process tree, and that is what I see: ![image](https://user-images.githubusercontent.com/9796621/72126258-97fe0a80-33bf-11ea-94a7-01c393539a08.png) I also used WinDbg to attach to go_bootstrap.exe (pid 9788) and print stacks of all its threads. And that is what I see: ``` 0:019> !uniqstack Processing 20 threads, please wait . 0 Id: 263c.23d8 Suspend: 1 Teb: 000007ff`fffde000 Unfrozen Start: go_bootstrap+0x648e0 (00000000`004648e0) Priority: 0 Priority class: 32 Affinity: f Child-SP RetAddr Call Site 00000000`0022fae8 000007fe`fcc710ac ntdll!ZwWaitForSingleObject+0xa 00000000`0022faf0 00000000`0046494e KERNELBASE!WaitForSingleObjectEx+0x9c 00000000`0022fb90 00000000`00b37be0 go_bootstrap+0x6494e 00000000`0022fb98 00000000`004270d3 go_bootstrap+0x737be0 00000000`0022fba0 00000000`00000000 go_bootstrap+0x270d3 . 1 Id: 263c.314c Suspend: 1 Teb: 000007ff`fffdc000 Unfrozen Start: tmmon64+0x8adac (00000000`7478adac) Priority: 0 Priority class: 32 Affinity: f Child-SP RetAddr Call Site 00000000`0302fcb8 000007fe`fcc71430 ntdll!ZwWaitForMultipleObjects+0xa 00000000`0302fcc0 00000000`76df06c0 KERNELBASE!GetCurrentProcess+0x40 00000000`0302fdc0 00000000`747aeed4 kernel32!WaitForMultipleObjects+0xb0 00000000`0302fe50 00000000`7478ad07 tmmon64+0xaeed4 00000000`0302ff00 00000000`7478aeae tmmon64+0x8ad07 00000000`0302ff30 00000000`76df59cd tmmon64+0x8aeae 00000000`0302ff60 00000000`76f2a561 kernel32!BaseThreadInitThunk+0xd 00000000`0302ff90 00000000`00000000 ntdll!RtlUserThreadStart+0x21 . 2 Id: 263c.2d5c Suspend: 1 Teb: 000007ff`fffda000 Unfrozen Start: ntdll!RtlDestroyHandleTable+0x270 (00000000`76f1f6f0) Priority: 0 Priority class: 32 Affinity: f Child-SP RetAddr Call Site 00000000`0322fcc8 00000000`76f1ed15 ntdll!ZwWaitForWorkViaWorkerFactory+0xa 00000000`0322fcd0 00000000`76df59cd ntdll!RtlValidateHeap+0x155 00000000`0322ff60 00000000`76f2a561 kernel32!BaseThreadInitThunk+0xd 00000000`0322ff90 00000000`00000000 ntdll!RtlUserThreadStart+0x21 . 3 Id: 263c.e74 Suspend: 1 Teb: 000007ff`fffd6000 Unfrozen Start: ntdll!TpIsTimerSet+0x8b0 (00000000`76f1a280) Priority: 0 Priority class: 32 Affinity: f Child-SP RetAddr Call Site 00000000`0342fcb8 00000000`76f1a3c7 ntdll!ZwWaitForMultipleObjects+0xa 00000000`0342fcc0 00000000`76df59cd ntdll!TpIsTimerSet+0x9f7 00000000`0342ff60 00000000`76f2a561 kernel32!BaseThreadInitThunk+0xd 00000000`0342ff90 00000000`00000000 ntdll!RtlUserThreadStart+0x21 . 4 Id: 263c.196c Suspend: 1 Teb: 000007ff`fffd4000 Unfrozen Start: go_bootstrap+0x64d00 (00000000`00464d00) Priority: 0 Priority class: 32 Affinity: f Child-SP RetAddr Call Site 00000000`28e5eb68 00000000`76f48f58 ntdll!ZwWaitForSingleObject+0xa 00000000`28e5eb70 00000000`76f48e54 ntdll!RtlDeNormalizeProcessParams+0x5a8 00000000`28e5ec20 000007fe`fa3b7f0b ntdll!RtlDeNormalizeProcessParams+0x4a4 00000000`28e5ec50 000007fe`fa3b8504 TmUmEvt64+0x17f0b 00000000`28e5eeb0 000007fe`fa3b8c96 TmUmEvt64+0x18504 00000000`28e5ef10 000007fe`fa4565ca TmUmEvt64+0x18c96 00000000`28e5efa0 000007fe`fa455f8e TmUmEvt64+0xb65ca 00000000`28e5f000 000007fe`fa410686 TmUmEvt64+0xb5f8e 00000000`28e5f150 000007fe`fa439730 TmUmEvt64+0x70686 00000000`28e5f260 00000000`7472f146 TmUmEvt64+0x99730 00000000`28e5f4a0 00000000`747e2d7d tmmon64+0x2f146 00000000`28e5f580 00000000`747e29f4 tmmon64+0xe2d7d 00000000`28e5f640 00000000`74733748 tmmon64+0xe29f4 00000000`28e5f6b0 000007fe`fcc77c3f tmmon64+0x33748 00000000`28e5f780 00000000`0046494e KERNELBASE!ResumeThread+0xf 00000000`28e5f7b0 ffffffff`ffffffff go_bootstrap+0x6494e 00000000`28e5f7b8 00000000`00000001 0xffffffff`ffffffff 00000000`28e5f7c0 ffffffff`ffffffff 0x1 00000000`28e5f7c8 00000000`28e5f928 0xffffffff`ffffffff 00000000`28e5f7d0 00000000`00000000 0x28e5f928 . 5 Id: 263c.3204 Suspend: 1 Teb: 000007ff`fffae000 Unfrozen Start: go_bootstrap+0x64d00 (00000000`00464d00) Priority: 0 Priority class: 32 Affinity: f Child-SP RetAddr Call Site 00000000`2905fb08 000007fe`fcc710ac ntdll!ZwWaitForSingleObject+0xa 00000000`2905fb10 00000000`0046494e KERNELBASE!WaitForSingleObjectEx+0x9c 00000000`2905fbb0 000000c0`0002c980 go_bootstrap+0x6494e 00000000`2905fbb8 00000000`00000000 0xc0`0002c980 . 6 Id: 263c.32f0 Suspend: 1 Teb: 000007ff`fffac000 Unfrozen Start: go_bootstrap+0x64d00 (00000000`00464d00) Priority: 0 Priority class: 32 Affinity: f Child-SP RetAddr Call Site 00000000`2925fb08 000007fe`fcc710ac ntdll!ZwWaitForSingleObject+0xa 00000000`2925fb10 00000000`0046494e KERNELBASE!WaitForSingleObjectEx+0x9c 00000000`2925fbb0 000000c0`0002cd00 go_bootstrap+0x6494e 00000000`2925fbb8 00000000`00000164 0xc0`0002cd00 00000000`2925fbc0 7fffffff`00000000 0x164 00000000`2925fbc8 00000000`00000160 0x7fffffff`00000000 00000000`2925fbd0 000000c0`004c6300 0x160 00000000`2925fbd8 00000000`2925fcc0 0xc0`004c6300 00000000`2925fbe0 00000000`0043daa2 0x2925fcc0 00000000`2925fbe8 00000000`00b36bf8 go_bootstrap+0x3daa2 00000000`2925fbf0 00000000`00000000 go_bootstrap+0x736bf8 . 7 Id: 263c.29d8 Suspend: 1 Teb: 000007ff`fffaa000 Unfrozen Start: go_bootstrap+0x64d00 (00000000`00464d00) Priority: 0 Priority class: 32 Affinity: f Child-SP RetAddr Call Site 00000000`2945fb08 000007fe`fcc710ac ntdll!ZwWaitForSingleObject+0xa 00000000`2945fb10 00000000`0046494e KERNELBASE!WaitForSingleObjectEx+0x9c 00000000`2945fbb0 000000c0`00080280 go_bootstrap+0x6494e 00000000`2945fbb8 00000000`00000000 0xc0`00080280 . 8 Id: 263c.104c Suspend: 1 Teb: 000007ff`fffa8000 Unfrozen Start: go_bootstrap+0x64d00 (00000000`00464d00) Priority: 0 Priority class: 32 Affinity: f Child-SP RetAddr Call Site 00000000`29a8fb08 000007fe`fcc710ac ntdll!ZwWaitForSingleObject+0xa 00000000`29a8fb10 00000000`0046494e KERNELBASE!WaitForSingleObjectEx+0x9c 00000000`29a8fbb0 000000c0`00206280 go_bootstrap+0x6494e 00000000`29a8fbb8 00000000`00000000 0xc0`00206280 . 9 Id: 263c.31b4 Suspend: 1 Teb: 000007ff`fffa6000 Unfrozen Start: go_bootstrap+0x64d00 (00000000`00464d00) Priority: 0 Priority class: 32 Affinity: f Child-SP RetAddr Call Site 00000000`29ccfb08 000007fe`fcc710ac ntdll!ZwWaitForSingleObject+0xa 00000000`29ccfb10 00000000`0046494e KERNELBASE!WaitForSingleObjectEx+0x9c 00000000`29ccfbb0 000000c0`00207080 go_bootstrap+0x6494e 00000000`29ccfbb8 00000000`00000000 0xc0`00207080 . 10 Id: 263c.2b14 Suspend: 1 Teb: 000007ff`fffa4000 Unfrozen Start: go_bootstrap+0x64d00 (00000000`00464d00) Priority: 0 Priority class: 32 Affinity: f Child-SP RetAddr Call Site 00000000`29eceb68 00000000`76f48f58 ntdll!ZwWaitForSingleObject+0xa 00000000`29eceb70 00000000`76f48e54 ntdll!RtlDeNormalizeProcessParams+0x5a8 00000000`29ecec20 000007fe`fa3b7f0b ntdll!RtlDeNormalizeProcessParams+0x4a4 00000000`29ecec50 000007fe`fa3b8504 TmUmEvt64+0x17f0b 00000000`29eceeb0 000007fe`fa3b8c96 TmUmEvt64+0x18504 00000000`29ecef10 000007fe`fa4565ca TmUmEvt64+0x18c96 00000000`29ecefa0 000007fe`fa455f8e TmUmEvt64+0xb65ca 00000000`29ecf000 000007fe`fa410686 TmUmEvt64+0xb5f8e 00000000`29ecf150 000007fe`fa439730 TmUmEvt64+0x70686 00000000`29ecf260 00000000`7472f146 TmUmEvt64+0x99730 00000000`29ecf4a0 00000000`747e2d7d tmmon64+0x2f146 00000000`29ecf580 00000000`747e29f4 tmmon64+0xe2d7d 00000000`29ecf640 00000000`74733748 tmmon64+0xe29f4 00000000`29ecf6b0 000007fe`fcc77c3f tmmon64+0x33748 00000000`29ecf780 00000000`0046494e KERNELBASE!ResumeThread+0xf 00000000`29ecf7b0 ffffffff`ffffffff go_bootstrap+0x6494e 00000000`29ecf7b8 00000000`00000000 0xffffffff`ffffffff . 11 Id: 263c.30b4 Suspend: 1 Teb: 000007ff`fffa2000 Unfrozen Start: go_bootstrap+0x64d00 (00000000`00464d00) Priority: 0 Priority class: 32 Affinity: f Child-SP RetAddr Call Site 00000000`2a10fb08 000007fe`fcc710ac ntdll!ZwWaitForSingleObject+0xa 00000000`2a10fb10 00000000`0046494e KERNELBASE!WaitForSingleObjectEx+0x9c 00000000`2a10fbb0 000000c0`00195400 go_bootstrap+0x6494e 00000000`2a10fbb8 00000000`00000009 0xc0`00195400 00000000`2a10fbc0 00000000`00000000 0x9 . 12 Id: 263c.30fc Suspend: 1 Teb: 000007ff`fffa0000 Unfrozen Start: go_bootstrap+0x64d00 (00000000`00464d00) Priority: 0 Priority class: 32 Affinity: f Child-SP RetAddr Call Site 00000000`2a30f248 00000000`76f48f58 ntdll!ZwWaitForSingleObject+0xa 00000000`2a30f250 00000000`76f48e54 ntdll!RtlDeNormalizeProcessParams+0x5a8 00000000`2a30f300 000007fe`fa3b7f0b ntdll!RtlDeNormalizeProcessParams+0x4a4 00000000`2a30f330 000007fe`fa3b8504 TmUmEvt64+0x17f0b 00000000`2a30f590 000007fe`fa3b8c96 TmUmEvt64+0x18504 00000000`2a30f5f0 000007fe`fa4565ca TmUmEvt64+0x18c96 00000000`2a30f680 000007fe`fa455f8e TmUmEvt64+0xb65ca 00000000`2a30f6e0 000007fe`fa410686 TmUmEvt64+0xb5f8e 00000000`2a30f830 000007fe`fa4363b0 TmUmEvt64+0x70686 00000000`2a30f940 00000000`7472f146 TmUmEvt64+0x963b0 00000000`2a30fb80 00000000`747e2d7d tmmon64+0x2f146 00000000`2a30fc60 00000000`747e29f4 tmmon64+0xe2d7d 00000000`2a30fd20 00000000`74732869 tmmon64+0xe29f4 00000000`2a30fd90 00000000`0046494e tmmon64+0x32869 00000000`2a30fe60 000000c0`00306100 go_bootstrap+0x6494e 00000000`2a30fe68 000000c0`0016b840 0xc0`00306100 00000000`2a30fe70 00000000`2a30fe60 0xc0`0016b840 00000000`2a30fe78 00000000`00000000 0x2a30fe60 . 13 Id: 263c.13a0 Suspend: 2 Teb: 000007ff`fff9e000 Unfrozen Start: go_bootstrap+0x64d00 (00000000`00464d00) Priority: 0 Priority class: 32 Affinity: f Child-SP RetAddr Call Site 00000000`2a50ec50 000007fe`fa3b8504 TmUmEvt64+0x17fa0 00000000`2a50eeb0 000007fe`fa3b8c96 TmUmEvt64+0x18504 00000000`2a50ef10 000007fe`fa4565ca TmUmEvt64+0x18c96 00000000`2a50efa0 000007fe`fa455f8e TmUmEvt64+0xb65ca 00000000`2a50f000 000007fe`fa410686 TmUmEvt64+0xb5f8e 00000000`2a50f150 000007fe`fa439730 TmUmEvt64+0x70686 00000000`2a50f260 00000000`7472f146 TmUmEvt64+0x99730 00000000`2a50f4a0 00000000`747e2d7d tmmon64+0x2f146 00000000`2a50f580 00000000`747e29f4 tmmon64+0xe2d7d 00000000`2a50f640 00000000`74733748 tmmon64+0xe29f4 00000000`2a50f6b0 000007fe`fcc77c3f tmmon64+0x33748 00000000`2a50f780 00000000`0046494e KERNELBASE!ResumeThread+0xf 00000000`2a50f7b0 ffffffff`ffffffff go_bootstrap+0x6494e 00000000`2a50f7b8 00000000`00000000 0xffffffff`ffffffff . 15 Id: 263c.1c34 Suspend: 1 Teb: 000007ff`fff9a000 Unfrozen Start: go_bootstrap+0x64d00 (00000000`00464d00) Priority: 0 Priority class: 32 Affinity: f Child-SP RetAddr Call Site 00000000`2a90faf8 000007fe`fcc710ac ntdll!ZwWaitForSingleObject+0xa 00000000`2a90fb00 00000000`0046494e KERNELBASE!WaitForSingleObjectEx+0x9c 00000000`2a90fba0 000000c0`003b9400 go_bootstrap+0x6494e 00000000`2a90fba8 ffffffff`fff85ee0 0xc0`003b9400 00000000`2a90fbb0 00000000`00000000 0xffffffff`fff85ee0 . 16 Id: 263c.2530 Suspend: 1 Teb: 000007ff`fff98000 Unfrozen Start: go_bootstrap+0x64d00 (00000000`00464d00) Priority: 0 Priority class: 32 Affinity: f Child-SP RetAddr Call Site 00000000`2ab0fb08 000007fe`fcc710ac ntdll!ZwWaitForSingleObject+0xa 00000000`2ab0fb10 00000000`0046494e KERNELBASE!WaitForSingleObjectEx+0x9c 00000000`2ab0fbb0 000000c0`003b9780 go_bootstrap+0x6494e 00000000`2ab0fbb8 00000000`00000009 0xc0`003b9780 00000000`2ab0fbc0 00000000`00000000 0x9 . 17 Id: 263c.3114 Suspend: 1 Teb: 000007ff`fff96000 Unfrozen Start: go_bootstrap+0x64d00 (00000000`00464d00) Priority: 0 Priority class: 32 Affinity: f Child-SP RetAddr Call Site 00000000`2ad0fb08 000007fe`fcc710ac ntdll!ZwWaitForSingleObject+0xa 00000000`2ad0fb10 00000000`0046494e KERNELBASE!WaitForSingleObjectEx+0x9c 00000000`2ad0fbb0 000000c0`00508d00 go_bootstrap+0x6494e 00000000`2ad0fbb8 00000000`00000000 0xc0`00508d00 . 18 Id: 263c.3344 Suspend: 3 Teb: 000007ff`fff94000 Unfrozen Start: go_bootstrap+0x64d00 (00000000`00464d00) Priority: 0 Priority class: 32 Affinity: f Child-SP RetAddr Call Site 00000000`2af0fb08 000007fe`fcc71430 ntdll!ZwWaitForMultipleObjects+0xa 00000000`2af0fb10 00000000`76df06c0 KERNELBASE!GetCurrentProcess+0x40 00000000`2af0fc10 00000000`0046494e kernel32!WaitForMultipleObjects+0xb0 00000000`2af0fca0 000007ff`fff94000 go_bootstrap+0x6494e 00000000`2af0fca8 00000000`00000000 0x7ff`fff94000 . 19 Id: 263c.3128 Suspend: 1 Teb: 000007ff`fff92000 Unfrozen Start: ntdll!DbgUiRemoteBreakin (00000000`76ff2dd0) Priority: 0 Priority class: 32 Affinity: f Child-SP RetAddr Call Site 00000000`2b10ff28 00000000`76ff2e08 ntdll!DbgBreakPoint 00000000`2b10ff30 00000000`76df59cd ntdll!DbgUiRemoteBreakin+0x38 00000000`2b10ff60 00000000`76f2a561 kernel32!BaseThreadInitThunk+0xd 00000000`2b10ff90 00000000`00000000 ntdll!RtlUserThreadStart+0x21 Total threads: 20 Duplicate callstacks: 1 (windbg thread #s follow): 14 ``` I was able to use Delve to examine this bug once (see https://github.com/golang/go/issues/35775#issuecomment-571967772), but not anymore. Delve just fails to attach now. I can reproduce this pretty reliably on this particular computer - make.bat never completes. Sometimes it hangs in go_bootstrap.exe and sometimes in compile.exe. Sometimes there are more than single hung compile.exe. I can make problem go away, if I change source code to have runtime.preemptMSupported set to false. /cc @aclements Alex
OS-Windows,NeedsInvestigation,compiler/runtime
low
Critical
547,939,637
TypeScript
Allow conditionally setting optional properties in a mapped type
<!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please help us by doing the following steps before logging an issue: * Search: https://github.com/Microsoft/TypeScript/search?type=Issues * Read the FAQ, especially the "Common Feature Requests" section: https://github.com/Microsoft/TypeScript/wiki/FAQ --> ## Search Terms conditional optional mapped type ## Suggestion Allow us to conditionally apply `?` to a property in a mapped type ## Use Cases I have a function: ``` function myFunction(one: string, two: number, three: number){} ``` but I want to map the params to ``` function myFunction(one: string, two?: number, three?: number){} ``` ## Examples Suggested approach: ``` type MapParams<T> = { [P in keyof T]: T[P] extends string ? T[P] : | ?T[P] } ``` (or something similar) This is the closest I could come: ``` type MapParams<T> = { [P in keyof T]: T[P] extends string ? T[P] : | T[P] | undefined } ``` but that produces ``` function myFunction(one: string, two: number | undefined, three: number | undefined){} myFunction("", undefined, undefined) ``` [Playground](http://www.typescriptlang.org/play/?ssl=10&ssc=41&pln=10&pc=1#code/FAMwrgdgxgLglgewgAgLYE8BilaIgCiQFMAuZAZxgCc4IBzAGmRgHcEyIxUAjIqpmAAsqRUsk48+ASmQBvZAF9gwGOgAORZAFkAhmoAKOqjtTkAPABUAfMgC8c4MifIA2vuS1kAayLoEIZAsAXTILNyDkIgAPGCIIABNyCmpaOmQAfkDw5DIAHyz9CPzIeKIQWiJ44CVQHHgkND0NeOxoeoIAOi6jOnIyXQMjE3NDY1QiWKpzVQ1-NCw6vCsrGXka1CbK1twkfAAiPaYSsor4o4STiEqpZQ21Zu32-b2ZAHpXikEEMAAbeOQ2FQvEA) ## Checklist My suggestion meets these guidelines: * [x] This wouldn't be a breaking change in existing TypeScript/JavaScript code * [x] This wouldn't change the runtime behavior of existing JavaScript code * [x] This could be implemented without emitting different JS based on the types of the expressions * [x] This isn't a runtime feature (e.g. library functionality, non-ECMAScript syntax with JavaScript output, etc.) * [x] This feature would agree with the rest of [TypeScript's Design Goals](https://github.com/Microsoft/TypeScript/wiki/TypeScript-Design-Goals).
Suggestion,Awaiting More Feedback
low
Critical
547,954,311
flutter
AppBar title `overflow:TextOverflow.ellipses` cuts too much text
TextOverflow.ellipses | overflow: TextOverflow.fade title width is correct: :-------------------------:|:-------------------------: ![ellipsize](https://user-images.githubusercontent.com/44832968/72140431-d08eeb80-33a1-11ea-932f-3a3c93820eac.png) | ![fade](https://user-images.githubusercontent.com/44832968/72140640-3b402700-33a2-11ea-9ed7-0adb4c59f223.png)
platform-android,platform-ios,framework,f: material design,a: typography,has reproducible steps,found in release: 2.10,found in release: 2.13,team-design,triaged-design
low
Major
547,965,762
opencv
Make deb package fails with dpkg-shlibdeps error
##### System information (version) - OpenCV => 4.2.0-dev (master) - Operating System / Platform => Ubuntu 18.04 x86_64 - Compiler => gcc7.4.0 cmake3.10 ##### Detailed description When using the `make package` command to build a DEB package from a fresh opencv clone, the make command fails with the following error: ``` CMake Error at /usr/share/cmake-3.10/Modules/CPackDeb.cmake:709 (message): CPackDeb: dpkg-shlibdeps: 'dpkg-shlibdeps: error: cannot find library libopencv_highgui.so.4.2 needed by ./usr/bin/opencv_interactive-calibration (ELF format: 'elf64-x86-64' abi: '0201003e00000000'; RPATH: '/usr/local/lib') [... cut many similar ones ... ] ``` I already tried to follow the related issue #14115 , but without success. ##### Steps to reproduce Use the following dockerfile to reproduce the error. ```.dockerfile FROM ubuntu:bionic # install packages RUN apt-get update && apt-get install -y apt-utils RUN apt-get install -y \ build-essential \ cmake \ git \ file # clone and compile opencv RUN git clone https://github.com/opencv/opencv.git RUN mkdir -p opencv/build WORKDIR opencv/build RUN cmake -DCPACK_GENERATOR=DEB -DCPACK_BINARY_DEB=ON -DCPACK_DEBIAN_PACKAGE_SHLIBDEPS=FALSE -DCPACK_PACKAGE_VERSION=4.2.0 -DEXTRAMODULES_VCSVERSION=4.2.0 -DOPENCV_VCSVERSION=4.2.0 .. RUN make -j RUN make package ``` And run docker with ```.bash docker image build -t compile_ocv:1.0 . docker container run --detach --name test compile_ocv:1.0 ```
priority: low,category: build/install
low
Critical
547,986,017
pytorch
run detectron test test_spatial_narrow_as_op.py fails
i wonder whether caffe2 support CUDA10.2 and cudnn10.2. i compile pytorch on win10 and installed successfully. i could run small regression task successfully. however when run the test_spatial_narrow_as_op.py test, it always fails with the log: " [E ..\caffe2\core\init_intrinsics_check.cc:43] CPU feature avx is present on your machine, but the Caffe2 binary is not compiled with it. It means you may not get the full speed of your CPU. [E ..\caffe2\core\init_intrinsics_check.cc:43] CPU feature avx2 is present on your machine, but the Caffe2 binary is not compiled with it. It means you may not get the full speed of your CPU. [E ..\caffe2\core\init_intrinsics_check.cc:43] CPU feature fma is present on your machine, but the Caffe2 binary is not compiled with it. It means you may not get the full speed of your CPU. Found Detectron ops lib: C:\Users\szx3gg\Programs\Python\Python38-64\Lib\site-packages\torch/lib\caffe2_detectron_ops_gpu.dll c.shape: (2, 256, 35, 87) F.c.shape: (2, 3, 2, 2) F ====================================================================== FAIL: test_large_forward (__main__.SpatialNarrowAsOpTest) ---------------------------------------------------------------------- Traceback (most recent call last): File "test_spatial_narrow_as_op.py", line 70, in test_large_forward self._run_test(A, B) File "test_spatial_narrow_as_op.py", line 56, in _run_test np.testing.assert_allclose(C, C_ref, rtol=1e-5, atol=1e-08) File "C:\Users\szx3gg\Programs\Python\Python38-64\Lib\site-packages\numpy\testing\_private\utils.py", line 1532, in assert_allclose assert_array_compare(compare, actual, desired, err_msg=str(err_msg), File "C:\Users\szx3gg\Programs\Python\Python38-64\Lib\site-packages\numpy\testing\_private\utils.py", line 846, in assert_array_compare raise AssertionError(msg) AssertionError: Not equal to tolerance rtol=1e-05, atol=1e-08 Mismatched elements: 1559040 / 1559040 (100%) Max absolute difference: 5.026066 Max relative difference: 1. x: array([[[[0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.], [0., 0., 0., ..., 0., 0., 0.],... y: array([[[[ 9.423651e-01, 1.103046e+00, -3.403718e-01, ..., 1.799662e+00, 6.770432e-01, -2.352981e-01], [ 1.366407e+00, 1.219485e+00, -2.637292e-01, ...,... ====================================================================== FAIL: test_small_forward_and_gradient (__main__.SpatialNarrowAsOpTest) ---------------------------------------------------------------------- Traceback (most recent call last): File "test_spatial_narrow_as_op.py", line 61, in test_small_forward_and_gradient self._run_test(A, B, check_grad=True) File "test_spatial_narrow_as_op.py", line 56, in _run_test np.testing.assert_allclose(C, C_ref, rtol=1e-5, atol=1e-08) File "C:\Users\szx3gg\Programs\Python\Python38-64\Lib\site-packages\numpy\testing\_private\utils.py", line 1532, in assert_allclose assert_array_compare(compare, actual, desired, err_msg=str(err_msg), File "C:\Users\szx3gg\Programs\Python\Python38-64\Lib\site-packages\numpy\testing\_private\utils.py", line 846, in assert_array_compare raise AssertionError(msg) AssertionError: Not equal to tolerance rtol=1e-05, atol=1e-08 Mismatched elements: 24 / 24 (100%) Max absolute difference: 2.239709 Max relative difference: 1. x: array([[[[0., 0.], [0., 0.]], ... y: array([[[[-0.423967, -0.105844], [-0.583256, 1.152265]], ... ---------------------------------------------------------------------- Ran 3 tests in 1.238s FAILED (failures=2) "
caffe2
low
Critical
547,990,687
pytorch
Extend `ConcatDataset` to return dataset index
## 🚀 Feature This feature would extend `torch.utils.data.ConcatDataset` to return the data set index from which a sample originated. ## Motivation This would be useful when the user wants to keep track of which data set each sample comes from. The use case I have in mind is multi-task learning when using data sets that contain mutually exclusive labels (e.g. dataset A contains labels for Task A, and dataset B contains labels for task B) as opposed to all labels being present in a single data set. In this case, it is still possible to do multi-task learning by pooling examples from different source, if one keeps track of which source each example in a batch came from, which is the motivation behind this request. ## Pitch The feature would consist of two changes: * adding an extra `return_index` argument to the class (defaulting to `False`) * adding `dataset_idx` to the return if `return_index` is set to `True` (https://github.com/pytorch/pytorch/blob/8ea49e7a0897b77a2cd6bf854efd80ef593acf02/torch/utils/data/dataset.py#L207) cc @SsnL
module: dataloader,triaged,enhancement,small
low
Major
548,031,043
vscode
Improve header(h1/h2/h3) styling in hover markdown
Our LSP server produces markdown for hover, and the way headers are rendered doesn't seem ideal. Two main issues: # Font sizes are too large This natural-looking markdown: `````markdown # function `x` --- `void x();` ````` renders with an extremely large title that's inconsistent with overall VSCode font sizes. ![image](https://user-images.githubusercontent.com/548993/72149988-bd314f80-33a4-11ea-816e-f032e4837137.png) There's a fairly easy workaround of using `<h3>` (`###`) instead, but this isn't ideal for language servers that are supposed to be portable across editors. # Too much spacing There's a lot of value in popups being unobtrusive, and the default margin of 1em h1/h2/h3 is very high for such a context. For the following markdown: `````markdown ### function `x` --- `void x();` ````` The current rendering is margin-heavy: ![image](https://user-images.githubusercontent.com/548993/72150443-d5ee3500-33a5-11ea-97a2-4178d6e6d8dd.png) With top/bottom margin reduced to `0.5em`, IMO this is at least as easy to read: ![image](https://user-images.githubusercontent.com/548993/72150375-b525df80-33a5-11ea-82ed-33be95c9188b.png)
bug,polish,workbench-hover
low
Major
548,032,029
flutter
Can't showModalBottomSheet inside of RouteObserver.didPop
I am listen Navigetor navigatorObservers and when user exist form some screens I want to show modal popup. I call showModalBottomSheet inside MyRouteObserver.didPop method and have error. **Target Platform:** Android **Target OS version/browser:** Android 8.1.0, MINU 10.2 ## Logs ``` [ +8 ms] V/FA (29143): Setting current screen to name, class: /, Flutter [ +1 ms] I/flutter (29143): 10-01-2020–14:35:44:3544 [feedback_bloc]: didPop: previousRouteName - /, routeName - /place [ ] I/flutter (29143): 10-01-2020–14:35:44:3544 [feedback_bloc]: place card closed -> show feedback bottom sheet [ ] I/flutter (29143): 10-01-2020–14:35:44:3544 [feedback_bloc]: showFeedbackBottomSheet [ ] V/FA (29143): Recording user engagement, ms: 5406 [ +5 ms] I/flutter (29143): Flutter error caught by Crashlytics plugin: [ +6 ms] D/FA (29143): Logging event (FE): screen_view(_vs), Bundle[{firebase_event_origin(_o)=auto, firebase_previous_class(_pc)=Flutter, firebase_previous_id(_pi)=-6308074188998608129, firebase_previous_screen(_pn)=/place, firebase_screen_class(_sc)=Flutter, firebase_screen_id(_si)=-6308074188998608128, firebase_screen(_sn)=/}] [ +43 ms] I/flutter (29143): ══╡ EXCEPTION CAUGHT BY FOUNDATION LIBRARY ╞════════════════════════════════════════════════════════ [ ] I/flutter (29143): The following assertion was thrown while dispatching notifications for ValueNotifier<RefreshStatus>: [ ] I/flutter (29143): 'package:flutter/src/widgets/navigator.dart': Failed assertion: line 1782 pos 12: '!_debugLocked': [ ] I/flutter (29143): is not true. [ ] I/flutter (29143): [ +2 ms] I/flutter (29143): Either the assertion indicates an error in the framework itself, or we should provide substantially [ ] I/flutter (29143): more information in this error message to help you determine and fix the underlying cause. [ ] I/flutter (29143): In either case, please report this assertion by filing a bug on GitHub: [ ] I/flutter (29143): https://github.com/flutter/flutter/issues/new?template=BUG.md [ +3 ms] I/flutter (29143): [ ] I/flutter (29143): When the exception was thrown, this was the stack: [ ] I/flutter (29143): #2 NavigatorState.push (package:flutter/src/widgets/navigator.dart:1782:12) [ ] I/flutter (29143): #3 showModalBottomSheet (package:flutter/src/material/bottom_sheet.dart:532:65) [ ] I/flutter (29143): #4 FeedbackBloc.showFeedbackBottomSheet (package:gohere/domain/feedback_bloc.dart:119:5) [ ] I/flutter (29143): #5 FeedbackBloc.didPop (package:gohere/domain/feedback_bloc.dart:90:7) [ ] I/flutter (29143): #6 NavigatorState.pop (package:flutter/src/widgets/navigator.dart:2136:20) [ ] I/flutter (29143): #7 Navigator.pop (package:flutter/src/widgets/navigator.dart:1387:34) [ ] I/flutter (29143): #8 _PlacePageState._exit (package:gohere/ui/page/place_page.dart:330:15) [ ] I/flutter (29143): #9 RefreshIndicatorState._handleModeChange (package:pull_to_refresh/src/internals/indicator_wrap.dart:275:50) [ ] I/flutter (29143): #10 ChangeNotifier.notifyListeners (package:flutter/src/foundation/change_notifier.dart:206:21) [ ] I/flutter (29143): #11 ValueNotifier.value= (package:flutter/src/foundation/change_notifier.dart:273:5) [ ] I/flutter (29143): #12 IndicatorStateMixin.mode= (package:pull_to_refresh/src/internals/indicator_wrap.dart:552:28) [ ] I/flutter (29143): #13 RefreshIndicatorState._dispatchModeByOffset.<anonymous closure> (package:pull_to_refresh/src/internals/indicator_wrap.dart:218:11) [ ] I/flutter (29143): (elided 15 frames from class _AssertionError and package dart:async) [ ] I/flutter (29143): [ ] I/flutter (29143): The ValueNotifier<RefreshStatus> sending notification was: [ ] I/flutter (29143): ValueNotifier<RefreshStatus>#61913(RefreshStatus.refreshing) [ ] I/flutter (29143): ════════════════════════════════════════════════════════════════════════════════════════════════════ [ +18 ms] D/FA (29143): Logging event (FE): user_engagement(_e), Bundle[{firebase_event_origin(_o)=auto, engagement_time_msec(_et)=5406, firebase_screen_class(_sc)=Flutter, firebase_screen_id(_si)=-6308074188998608129, firebase_screen(_sn)=/place}] [ +32 ms] I/flutter (29143): 10-01-2020–14:35:44:3544 [video_service]: setVideoUrl called for: https://api.terra-incognita.tk/static/d38cd2ae-22ef-4618-9e0b-1f4da8eb0a8f [ ] I/flutter (29143): 10-01-2020–14:35:44:3544 [video_service]: Same vide ``` ``` flutter doctor -v [✓] Flutter (Channel dev, v1.13.7, on Mac OS X 10.15.2 19C57, locale en-RU) • Flutter version 1.13.7 at /Users/sanekyy/Programs/flutter • Framework revision a3bbdfb23a (7 days ago), 2020-01-03 16:19:11 -0500 • Engine revision eb139936eb • Dart version 2.8.0 (build 2.8.0-dev.0.0 2f57602411) [✓] Android toolchain - develop for Android devices (Android SDK version 29.0.2) • Android SDK at /Users/sanekyy/Library/Android/sdk • Android NDK location not configured (optional; useful for native profiling support) • Platform android-29, build-tools 29.0.2 • Java binary at: /Users/sanekyy/Library/Application Support/JetBrains/Toolbox/apps/AndroidStudio/ch-0/191.6010548/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java • Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405) • All Android licenses accepted. [✓] Xcode - develop for iOS and macOS (Xcode 11.3) • Xcode at /Applications/Xcode.app/Contents/Developer • Xcode 11.3, Build version 11C29 • CocoaPods version 1.8.3 [✓] Chrome - develop for the web • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome [✓] Android Studio (version 3.5) • Android Studio at /Users/sanekyy/Library/Application Support/JetBrains/Toolbox/apps/AndroidStudio/ch-0/191.6010548/Android Studio.app/Contents • Flutter plugin version 42.1.1 • Dart plugin version 191.8593 • Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405) [!] IntelliJ IDEA Ultimate Edition (version 2019.3.1) • IntelliJ at /Users/sanekyy/Applications/JetBrains Toolbox/IntelliJ IDEA Ultimate.app ✗ Flutter plugin not installed; this adds Flutter specific functionality. ✗ Dart plugin not installed; this adds Dart specific functionality. • For information about installing plugins, see https://flutter.dev/intellij-setup/#installing-the-plugins [!] VS Code (version 1.41.1) • VS Code at /Applications/Visual Studio Code.app/Contents ✗ Flutter extension not installed; install from https://marketplace.visualstudio.com/items?itemName=Dart-Code.flutter [✓] Connected device (4 available) • Redmi Note 6 Pro • 3193ac21 • android-arm64 • Android 8.1.0 (API 27) • macOS • macOS • darwin-x64 • Mac OS X 10.15.2 19C57 • Chrome • chrome • web-javascript • Google Chrome 79.0.3945.117 • Web Server • web-server • web-javascript • Flutter Tools ! Doctor found issues in 2 categories. ```
framework,f: material design,d: stackoverflow,has reproducible steps,found in release: 3.3,found in release: 3.5,team-design,triaged-design
low
Critical
548,035,610
terminal
Feature request: Presentation mode
# Description of the new feature/enhancement It would be great if Terminal provides a feature to switch to a "presentation mode". Presentation mode means: - Switch to a configurable font size - Switch to a configurable color scheme (foreground / background color) for better contrast The presentation mode should toggle to the better contrast / larger font and also be able to toggle back to the previous profile settings. # Additional info: I really like to give talks, and if I happen to have some things I need to show on console, I'd love to use Terminal. However, I don't want to add new additional profiles just for presentations, and then copy the presentation profiles over to different shells (which would in fact double my profile count). Also, if I want to change stuff on the presentation profiles, I'd have to do every change for every presentation profile. So adding separate presentation profiles is just a hacky workaround that involves a lot of work.
Issue-Feature,Area-Extensibility,Product-Terminal
low
Major
548,044,132
pytorch
Internal assert failed using multiple GPUs with DataParallel
## 🐛 Bug I'm getting a runtime error with a "please report a bug" message, as below: ``` Traceback (most recent call last): File "./src/main.py", line 83, in <module> app.run(main) File "/home/s1717552/torchaq/aqenv/lib64/python3.6/site-packages/absl/app.py", line 299, in run _run_main(main, args) File "/home/s1717552/torchaq/aqenv/lib64/python3.6/site-packages/absl/app.py", line 250, in _run_main sys.exit(main(argv)) File "./src/main.py", line 64, in main agent.train() File "/home/s1717552/torchaq/src/agents/model_agent.py", line 173, in train self.train_one_epoch() File "/home/s1717552/torchaq/src/agents/model_agent.py", line 209, in train_one_epoch loss = self.step_train(batch, self.tgt_field) File "/home/s1717552/torchaq/src/agents/aq_agent.py", line 95, in step_train output, logits = self.decode_teacher_force(self.model, batch, 'q') File "/home/s1717552/torchaq/aqenv/lib64/python3.6/site-packages/torch/nn/modules/module.py", line 541, in __call__ result = self.forward(*input, **kwargs) File "/home/s1717552/torchaq/src/models/samplers/teacher_force.py", line 25, in forward pred_logits, _ = model(batch, output) File "/home/s1717552/torchaq/aqenv/lib64/python3.6/site-packages/torch/nn/modules/module.py", line 541, in __call__ result = self.forward(*input, **kwargs) File "/home/s1717552/torchaq/aqenv/lib64/python3.6/site-packages/torch/nn/parallel/data_parallel.py", line 152, in forward outputs = self.parallel_apply(replicas, inputs, kwargs) File "/home/s1717552/torchaq/aqenv/lib64/python3.6/site-packages/torch/nn/parallel/data_parallel.py", line 162, in parallel_apply return parallel_apply(replicas, inputs, kwargs, self.device_ids[:len(replicas)]) File "/home/s1717552/torchaq/aqenv/lib64/python3.6/site-packages/torch/nn/parallel/parallel_apply.py", line 85, in parallel_apply output.reraise() File "/home/s1717552/torchaq/aqenv/lib64/python3.6/site-packages/torch/_utils.py", line 385, in reraise raise self.exc_type(msg) RuntimeError: Caught RuntimeError in replica 0 on device 0. Original Traceback (most recent call last): File "/home/s1717552/torchaq/aqenv/lib64/python3.6/site-packages/torch/nn/parallel/parallel_apply.py", line 60, in _worker output = module(*input, **kwargs) File "/home/s1717552/torchaq/aqenv/lib64/python3.6/site-packages/torch/nn/modules/module.py", line 541, in __call__ result = self.forward(*input, **kwargs) File "/home/s1717552/torchaq/src/models/aq_transformer.py", line 208, in forward memory = self.encoder_projection(memory_full) File "/home/s1717552/torchaq/aqenv/lib64/python3.6/site-packages/torch/nn/modules/module.py", line 533, in __call__ result = hook(self, input) File "/home/s1717552/torchaq/aqenv/lib64/python3.6/site-packages/torch/nn/utils/weight_norm.py", line 55, in __call__ setattr(module, self.name, self.compute_weight(module)) File "/home/s1717552/torchaq/aqenv/lib64/python3.6/site-packages/torch/nn/utils/weight_norm.py", line 18, in compute_weight return _weight_norm(v, g, self.dim) RuntimeError: diff_view_meta->output_nr_ == 0 INTERNAL ASSERT FAILED at /pytorch/torch/csrc/autograd/variable.cpp:134, please report a bug to PyTorch. ``` The model trains without a problem on a single GPU, but fails when using `DataParallel` on multiple GPUs. Wrapping the model with `DataParallel` when only one GPU is available still works OK. ## To Reproduce This happens when using DataParallel with a pre-built complex model. I'm not sure how to create a minimal code example to recreate the problem? ## Expected behavior N/A ## Environment PyTorch version: 1.3.1 Is debug build: No CUDA used to build PyTorch: 10.1.243 OS: Scientific Linux release 7.6 (Nitrogen) GCC version: (GCC) 4.8.5 20150623 (Red Hat 4.8.5-36) CMake version: version 2.8.12.2 Python version: 3.6 Is CUDA available: Yes CUDA runtime version: Could not collect GPU models and configuration: GPU 0: GeForce RTX 2080 Ti GPU 1: GeForce RTX 2080 Ti GPU 2: GeForce RTX 2080 Ti GPU 3: GeForce RTX 2080 Ti Nvidia driver version: 440.44 cuDNN version: /usr/lib64/libcudnn.so.6.5.18 Versions of relevant libraries: [pip3] numpy==1.17.4 [pip3] torch==1.3.1 [conda] Could not collect ## Additional context N/A cc @ngimel
module: cuda,triaged,module: assert failure,module: data parallel
low
Critical
548,063,962
TypeScript
RegExp named capture groups don't get transpiled
**TypeScript Version:** 3.7.2 (3.7.4 and nightly (3.8.0) as well) **Search Terms:** Named capture groups Named capturing groups Regex ES2018.RegExp **Expected behavior:** The named capture group in the regex gets transpiled to the correct target (`es5` in our case). Something like what [`@babel/plugin-transform-named-capturing-groups-regex`](https://babeljs.io/docs/en/babel-plugin-transform-named-capturing-groups-regex) does? **Actual behavior:** The named capture group ends up in the compiled code while only Chrome currently supports this. **Related Issues:** https://github.com/microsoft/TypeScript/issues/31241 **Code** ``` const regex = /^(?<name>[A-Za-z]+)/; const match = regex.exec('MatchThis-NotThis'); console.log(match); ``` **Live Playground** [Here](https://www.typescriptlang.org/v2/en/play#code/MYewdgzgLgBATgUwOYIB4wLwwPQD0AUA-ADxgCGAtggHwDaAggLQBaZjAXgLoDUAlNgG4AUKEiwKZKMAAWmeMjQA6NAmD4A5AFlJMgCrSAlhEYA5EFH1H1vYaIggANgkUOQSfBKnSbQA) **Additional information** I'm not 100% sure if this is something that TypeScript actually should be doing so if that's not the case I'd like to get some details on how to properly transpile this.
Suggestion,In Discussion
low
Major
548,075,774
go
runtime: Go 1.14/Windows asynchronous preemption mechanism likely incompatible with debugging
If I understand correctly asynchronous preemption is implemented in Windows by: 1. Calling SuspendThread on the target thread 2. Waiting for SuspendThread to take effect by calling GetThreadContext 3. Injecting a function call on the target thread by manipulating the context and calling SetThreadContext 4. Calling ResumeThread on the target thread This procedure being implemented by preemptM in src/runtime/os_windows.go. However, from what I can observe, it seems that GetThreadContext will also return when the target thread get suspended after hitting a software breakpoint (placed by a debugger). This has two effects: first the breakpoint will be missed (because preemptM will manipulate the thread context to insert a function call, masking the breakpoint), secondly the return address for the injected call will be in the middle of an instruction (because the software breakpoint was partially overwriting an instruction). A debugger that knows about this can work around it by checking if a thread is stopped on the entry point of asyncPreempt, and fix its return address. For this to work however preemptM needs to fully finish its context manipulation, if it ends up being stopped between the point where GetThreadContext returns and SetThreadContext is called the same problem will happen. I'm not sure that there is a way to use software breakpoints with Go 1.14 with async preemption, as it currently is. Did I misunderstand anything?
help wanted,OS-Windows,NeedsInvestigation,Debugging,compiler/runtime
low
Critical
548,082,758
pytorch
Internal assert failure for user IValue unwrapping
## 🐛 Bug <!-- A clear and concise description of what the bug is. --> when i'm loading a torchscript model in c++, bug: ``` libc++abi.dylib: terminating with uncaught exception of type c10::Error: isTensor() INTERNAL ASSERT FAILED at /Users/sjf/libtorch/include/ATen/core/ivalue_inl.h:86, please report a bug to PyTorch. Expected Tensor but got Tuple (toTensor at /Users/sjf/libtorch/include/ATen/core/ivalue_inl.h:86) frame #0: c10::Error::Error(c10::SourceLocation, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) + 135 (0x104a289e7 in libc10.dylib) frame #1: c10::IValue::toTensor() && + 289 (0x1049a2b81 in test) frame #2: main + 651 (0x1049a1ddb in test) frame #3: start + 1 (0x7fff666cf7fd in libdyld.dylib) frame #4: 0x0 + 1 (0x1 in ???) zsh: abort ./test ``` ## To Reproduce Steps to reproduce the behavior: 1. Firstly, i have converted my own pytorch model to torch script via tracing. 2. Here is my cmakelists.txt ``` cmake_minimum_required(VERSION 3.0 FATAL_ERROR) project(custom_ops) find_package(Torch REQUIRED) add_executable(test main.cpp) target_link_libraries(test "${TORCH_LIBRARIES}") set_property(TARGET test PROPERTY CXX_STANDARD 11) ``` 3. Here is my cpp code ```cpp #include <torch/script.h> #include <iostream> #include <memory> int main(int argc, const char* argv[]) { torch::jit::script::Module module; try { module = torch::jit::load("/Users/alon/Downloads/bise_x39_102.pt"); } catch (const c10::Error& e) { std::cerr << "error loading the model\n"; return -1; } std::vector<torch::jit::IValue> inputs; inputs.push_back(torch::ones({1, 3, 384, 384})); at::Tensor output = module.forward(inputs).toTensor(); } ``` when i run it, it have bugs, i'm sure it has something wrong in the last row of cpp code, but i have no idea what's wrong with it. <!-- If you have a code sample, error messages, stack traces, please provide it here as well --> ## Expected behavior <!-- A clear and concise description of what you expected to happen. --> ## Environment Please copy and paste the output from our [environment collection script](https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py) (or fill out the checklist below manually). You can get the script and run it with: ``` wget https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py # For security purposes, please check the contents of collect_env.py before running it. python collect_env.py ``` - PyTorch Version (e.g., 1.0):1.3 - OS (e.g., Linux):MACOSX 10.15.2 - How you installed PyTorch (`conda`, `pip`, source):pip - Build command you used (if compiling from source): - Python version:3.7.4 - CUDA/cuDNN version: None - GPU models and configuration: None - Any other relevant information: ## Additional context <!-- Add any other context about the problem here. --> cc @suo
oncall: jit,triaged
low
Critical
548,118,352
TypeScript
No overload expects 5 arguments, but overloads do exist that expect either 5 or 9 arguments (CanvasRenderingContext2D.drawImage)
**TypeScript Version:** 3.7.2 <!-- Search terms you tried before logging this (so others can find this issue more easily) --> **Search Terms:** Canvas, Destructuring, Argument count error **Expected behavior:** No type errors **Actual behavior:** No overload expects 5 arguments, but overloads do exist that expect either 5 or 9 arguments. **Code** ```ts type Rect = [number, number, number, number] const clipRect: Rect = [0, 0, 100, 100] const canvas = document.createElement('canvas') const ctx = canvas.getContext('2d')! const img = new Image() ctx.drawImage(img, ...clipRect, 0, 0, 200, 200) // ^ No overload expects 5 arguments, // but overloads do exist that expect either 5 or 9 arguments. ``` <details><summary><b>Output</b></summary> ```ts "use strict"; const clipRect = [0, 0, 100, 100]; const canvas = document.createElement('canvas'); const ctx = canvas.getContext('2d'); const img = new Image(); ctx.drawImage(img, ...clipRect, 0, 0, 200, 200); ``` </details> <details><summary><b>Compiler Options</b></summary> ```json { "compilerOptions": { "noImplicitAny": true, "strictNullChecks": true, "strictFunctionTypes": true, "strictPropertyInitialization": true, "strictBindCallApply": true, "noImplicitThis": true, "noImplicitReturns": true, "useDefineForClassFields": false, "alwaysStrict": true, "allowUnreachableCode": false, "allowUnusedLabels": false, "downlevelIteration": false, "noEmitHelpers": false, "noLib": false, "noStrictGenericChecks": false, "noUnusedLocals": false, "noUnusedParameters": false, "esModuleInterop": true, "preserveConstEnums": false, "removeComments": false, "skipLibCheck": false, "checkJs": false, "allowJs": false, "declaration": true, "experimentalDecorators": false, "emitDecoratorMetadata": false, "target": "ES2017", "module": "ESNext" } } ``` </details> **Playground Link:** [Provided](https://www.typescriptlang.org/play/#code/C4TwDgpgBAShDGwoF4oG0B2BXAtgIwgCcAaKbfI08gks3GgXQCh4B7DAZyXgBsBLMHEQAuWAiSo0ABlIyoARilzFU5m07cAhhgBumjiigATVvFwQMwAHTxCETcAgBRHhBwXgACgDk8bXo5vAEoWdi4oRAAPQz9dfSsAcwhgAGF2R0ivbwAmI2CAQlCNKD4cBMMMCAB3KABJHE0kzxCoqyNCTSr6xohPUoTSKyHeASFgWQmobKVSaakgoA)
Bug
low
Critical
548,137,956
rust
Confusing "expected reference, found ..." error when trying to chain Iterator<T> and Iterator<&T>
I'm running rustc 1.40.0. The code: ```rust fn main() { let a = (0..3).chain([3, 4, 5].iter()); } ``` Trying to compile it results in: ``` % rustc test1.rs error[E0271]: type mismatch resolving `<std::slice::Iter<'_, {integer}> as std::iter::IntoIterator>::Item == {integer}` --> test1.rs:2:20 | 2 | let a = (0..3).chain([3, 4, 5].iter()); | ^^^^^ expected reference, found integer | = note: expected type `&{integer}` found type `{integer}` error: aborting due to previous error For more information about this error, try `rustc --explain E0271`. ``` If one focues one the `^^^^^ expected reference, found integer` line (as I did) one is faced with the following difficulties: 1. It's the `chain` identifier that's underlined/pointed towards here which is (to me) confusing 2. If I follow the "expected reference, found integer" advice naively and without trying to get to the bottom of things I may think "ok, the problem is with the `chain` call, it expects references but I give it integers, let's add references" and produce the following: ```rust fn main() { let a = (0..3).chain([&3, &4, &5].iter()); } ``` And the error gets even more confusing: ``` % rustc test2.rs error[E0271]: type mismatch resolving `<std::slice::Iter<'_, &{integer}> as std::iter::IntoIterator>::Item == {integer}` --> test2.rs:2:20 | 2 | let a = (0..3).chain([&3, &4, &5].iter()); | ^^^^^ expected reference, found integer | = note: expected type `&&{integer}` found type `{integer}` error: aborting due to previous error For more information about this error, try `rustc --explain E0271`. ``` That attempt to fix things was of course totally incorrect, but the error messages don't help here.
C-enhancement,A-diagnostics,T-compiler,A-iterators,D-confusing
low
Critical
548,170,619
storybook
build-storybook should build stories with "Static Site Generation" (SSG) for improved perf/SEO
**Is your feature request related to a problem? Please describe.** I'm always frustrated when I navigate to a page and see the page skeleton while the stories are fetched instead of just showing the full menu/first page immediately. There's already a build step, so this seems possible. **Describe the solution you'd like** I'd like to see a solution where static pages are generated from stories without showing the generic storybook skeleton: ![image](https://user-images.githubusercontent.com/130445/72168559-037db300-3393-11ea-9665-57f04dd20721.png) **Describe alternatives you've considered** With tools like Gatsby and NextJS bringing support for SSG, I could set up a separate site that utilizes the new CSF format and maybe host it there, but that wouldn't be ideal. **Are you able to assist bring the feature to reality?** Yes with guidance since I don't have familiarity with the storybook internals. **Additional context** N/A
feature request,core
low
Major
548,186,206
flutter
[web][firefox] support Clipboard.getData platform message on Firefox
Firefox only supports `readText` if the target element is in content editable mode. See: https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Editable_content See: https://developer.mozilla.org/en-US/docs/Web/API/Clipboard_API
framework,engine,platform-web,browser: firefox,P2,team-web,triaged-web
low
Minor
548,191,759
pytorch
Sobol point implementation
## 🐛 Bug <!-- A clear and concise description of what the bug is. --> ## To Reproduce Steps to reproduce the behavior: ``` from torch.quasirandom import SobolEngine from torch import where print('These issues all concern the implementation of Sobol points \n') print('The zeroth unscrambled Sobol point should always be zero.') print('But the implementation here starts with the first point, (0.5, 0.5, ...)') sobol = SobolEngine(dimension=5, scramble=False) x = sobol.draw(1) print(x) print('Can this be rectified? \n') print('With probability one, a scrambled Sobol point should never have a coordinate = 1') print('But with this implementation, it happens far too often') for ii in range(0,100): sobol = SobolEngine(dimension=64, scramble=True, seed=ii) x = sobol.draw(2**16) where1 = where(x==1) if len(where1[0]): print('When seed =',ii) print(' Sobol point coordinate is 1 at:',where1) print('Can this be rectified?') ``` <!-- If you have a code sample, error messages, stack traces, please provide it here as well --> ## Expected behavior The first point in an unscrambled Sobol sequence should be the vector 0 All coordinates of (scrambled) Sobol points should be less than 1 <!-- A clear and concise description of what you expected to happen. --> ## Environment Please copy and paste the output from our [environment collection script](https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py) (or fill out the checklist below manually). You can get the script and run it with: ``` wget https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py # For security purposes, please check the contents of collect_env.py before running it. python collect_env.py ``` - PyTorch Version (e.g., 1.3.1): - Mac OS Catalina and Linux - How you installed PyTorch (`conda`, `pip`, source): pip - Build command you used (if compiling from source): no compiling - Python version: 3.7 - CUDA/cuDNN version: NA - GPU models and configuration: NA - Any other relevant information: ## Additional context Submitter and team are highly invested in low discrepancy sequence software and would be quite interested in engaging the developers of SobolEngine <!-- Add any other context about the problem here. -->
triaged,module: random
medium
Critical
548,236,039
TypeScript
import fix / autocomplete requires type checking JS/JSX
Extracted issue from https://code.visualstudio.com/docs/nodejs/working-with-javascript#_type-checking-javascript Auto complete of imports in JS/JSX files does not work properly [unless](https://code.visualstudio.com/docs/nodejs/working-with-javascript#_type-checking-javascript) type checking of JS/JSX files is explicitly enabled. This is counter intuitive, and forces the user to endure potentially unwanted type errors in order to have working autocomplete of imports. It's extra confusing because the autocomplete does work for symbols exported from modules that are already imported (so it seems like it should work but is flaky). It took me a long time to find this problem.
Suggestion,Awaiting More Feedback
low
Critical
548,269,418
godot
Custom drawing on TileMap node draws behind tiles
I'm attempting to draw outlines over a TileMap by implementing _draw() in the TileMap's script, but all custom drawing objects appear behind the tiles instead of on top of them. Godot Version 3.2b4 Mac OS X 10.15.2 (Catalina) Intel HD Graphics 615 1536 MB
documentation,topic:2d
low
Major
548,275,461
node
new tls.TLSSocket issue
<!-- Thank you for reporting a possible bug in Node.js. Please fill in as much of the template below as you can. Version: output of `node -v` Platform: output of `uname -a` (UNIX), or version and 32 or 64-bit (Windows) Subsystem: if known, please specify the affected core module name If possible, please provide code that demonstrates the problem, keeping it as simple and free of external dependencies as you can. --> * **Version**: 10.x+ * **Platform**: All * **Subsystem**: tls <!-- Please provide more details below this comment. --> When I try to create a secure connection over an existing stream, implementing something similar to STARTTLS, the suggested way is to use new tls.TLSSocket(<duplex stream>). I also want to use mutual certification authentication but the tlsSocket.authorized is never set to true for the Server even when the client certificate is signed correctly by the expected CA. From the _tls_wrap.js code, it seems this flag is only set for the server when the underlying stream is an actual socket. On the client side things are working as expected, as the client side connection is created with tls.connect(). It used to be that the deprecated pair returned by tls.createSecurePair() has access to the internal SSL object, which I can use verifyError() to check the validity of the client certificate. But this hidden feature has also been removed in recent versions. What is the correct approach to mca for "upgraded" connection?
confirmed-bug,tls,doc
low
Critical
548,328,904
flutter
Breaking Change Proposal: ButtonBar's buttonPadding's vertical padding
When defining a `ButtonBar`'s padding, only the horizontal value is used, and only in [a very particular way](https://github.com/flutter/flutter/blob/master/packages/flutter/lib/src/material/button_bar.dart#L167): ``` switch (buttonTheme.layoutBehavior) { case ButtonBarLayoutBehavior.padded: return Padding( padding: EdgeInsets.symmetric( vertical: 2.0 * paddingUnit, horizontal: paddingUnit, ), child: child, ); case ButtonBarLayoutBehavior.constrained: return Container( padding: EdgeInsets.symmetric(horizontal: paddingUnit), constraints: const BoxConstraints(minHeight: 52.0), alignment: Alignment.center, child: child, ); ``` This is particularly restrictive because it forces the vertical padding to be tied to the passed in horizontal padding. ## Proposal I propose that that the vertical padding be made separate from the horizontal padding. This would break any users who have defined a custom `buttonPadding`, since their vertical padding might change unexpectedly. cc/ @HansMuller, looking at the history of the file, maybe there's some necessity to the way it's currently implemented that I'm missing on
framework,f: material design,c: proposal,team-design,triaged-design
low
Minor
548,334,965
pytorch
Reduce degrees of freedom in strides so that they unambiguously specify layout permutation
In the memory layout work in https://github.com/pytorch/pytorch/issues/19092 we have a problem where strides undetermine the layout of a tensor when size = 1 or 0. In particular, if I have a tensor with size `(1, 1, 1, 1)`, it is impossible to tell (from the strides) if it is an NHWC or NCHW tensor (or indeed, any other permutation of the layout). This is because when size = 1 or 0, strides are undetermined, The strides are undetermined because the indexing formula `stride * index` always has `index = 0`, so it doesn't matter what you pick for strides. So you may very well find that your tensor has strides `(1, 1, 1, 1)` which doesn't tell you anything about its memory layout. We argue that we should fully specify the strides of this tensor from a set of sentinel strides, resolving the ambiguity of whether or not you have an NHWC or NCHW tensor. In the example above, your strides would either be `(D0, D1, D2, D3)` (NCHW) or `(D0, D3, D1, D2)` (a NHWC physical, logically viewed as NCHW via the permutation (0, 3, 1, 2); notice that the layout permutation is **reverse** of the view permutation). When strides are uniquely determined, the layout also is uniquely determined, solving the information loss problem. ## The scheme Intuitively, the layout permutation of a tensor is the `dims` that when run on `permute(*dims)` that would have taken the physical layout of a tensor to its logical layout. So for example, a NHWC tensor viewed as a NCHW tensor has the layout permutation `(0, 3, 1, 2)`, because `nhwc.permute(0, 3, 1, 2)` gives you channels-first. The idea is to add enough information to strides so that we can always recover the layout permutation from it. We reserve a set of distinguished stride values `D0`, `D1`, `D2` ... which compare unequal with natural strides. The mnemonic for these distinguished stride values is that `D0` is `stride(0)` of a contiguous tensor, if the stride would otherwise be undetermined (e.g., its corresponding size is 1, or the tensor is empty). Let `undetermined_stride(0) = D0` and so forth. We define a total order on undetermined strides `D0 > D1 > D2 > ...` (the order is in reverse of the natural order on the indices, for symmetry with the fact that with a contiguous tensor, the largest strides are associated with the lowest dimension). The strides for a contiguous tensor with the identity layout permutation (e.g., NCHW) of size `sizes` is computed in the following way: ``` def identity_permutation_contiguous_strides(sizes): stride = 1 dim = len(sizes) strides = [0] * dim is_empty = any(s == 0 for s in sizes); for i in range(dim - 1, -1, -1): # dim - 1 to 0 inclusive if sizes[i] == 1 or is_empty: strides[i] = undetermined_stride(i) else: strides[i] = stride stride *= size[i] ``` Examples: * sizes = (2, 2, 2), strides = (4, 2, 1) * sizes = (2, 1, 2), strides = (2, D1, 1) * sizes = (2, 0, 2), strides = (D0, D1, D2) Invariants: * Every stride in strides is unique. * `is_undetermined_stride(stride[i])` if and only if `size[i] == 1` or `numel == 0` * A size of a tensor *uniquely* determines what strides it has (but not vice versa; consider an empty tensor) With these undetermined strides, we can now unambiguously identify if a tensor is NCHW contiguous or NHWC contiguous, by doing a direct equality comparison with the appropriately permuted strides of the contiguous strides for that size. ``` def is_nchw_contiguous(t): return t.dim() == 4 and identity_permutation_contiguous_strides(t.size()) == t.stride() def permute(xs, permutation): return (xs[i] for i in permutation) def is_nhwc_contiguous(t): return t.dim() == 4 and permute(identity_permutation_contiguous_strides(t.size()), (0, 3, 1, 2)) == t.stride() ``` With more work, you can also determine the permutation based on the strides, even if they're not contiguous. ``` def permutation_of(strides): # Invariant: # if strides[i] == undetermined_stride(j), # then permutation[i] = j # # Invariant: # if permutation[i] > permutation[j] # and not is_undetermined_stride(strides[i]) # and not is_undetermined_stride(strides[j]), # then strides[i] < strides[j] # (note that the comparison here is inverted # since strides are ordered in decreasing order) # Partition strides into determined/undetermined strides determined_stride_indices = [] undetermined_stride_indices = [] for i, s in enumerate(strides): if is_undetermined_stride(s): undetermined_stride_indices.append(i) else: determined_stride_indices.append(i) # Sort determined_stride_indices.sort(key=lambda i: strides[i], reverse=True) undetermined_stride_indices.sort(key=lambda i: strides[i], reverse=True) # Reassemble permutation permutation = [-1] * len(strides) permutation_i = 0 determined_i = 0 undetermined_i = 0 for i in range(0, len(strides)): if undetermined_i < len(undetermined_stride_indices): j = undetermined_stride_indices[undetermined_i] if strides[j] == undetermined_stride(i): permutation[j] = permutation_i permutation_i += 1 undetermined_i += 1 continue j = determined_stride_indices[determined_i] permutation[j] = permutation_i permutation_i += 1 determined_i += 1 return permutation ``` ## Discussion * Zero strides are canonically placed at the end of the dimension order. This is a little arbitrary; they could be put anywhere in the order, but we put them at the end so we can use the natural ordering between 0 < 1 * Layout permutations account for “weird strides”, e.g., rolling windows. The tie-break when strides are equal prefers ordering larger windows before smaller windows; this is also an arbitrary choice. * The result of contiguous() operation should result in strides with the identity permutation. This diverges with our behavior in some cases today `torch.randn(2,3,1,4).permute(0,1,3,2).contiguous()`; we should change this behavior. (h/t Natalia for this example) ## Propagation rules * Layout permutation propagation is largely determined by strides. If an operation produces a tensor whose strides uniquely determine a layout permutation, we don’t have to give any further rules for layout permutation propagation. * Operators should behave *consistently* with respect to permutations: in other words, if an operator produces a layout permutation given some input layout permutation on a specific size/stride, it should produce that layout permutation for *all* sizes and strides consistent with the input layout permutation. * Example: Interpolate on a 2x2 tensor preserves permutation in the output. Thus, it should preserve permutation for 1x1 tensors. * In general, operations either preserve permutation, or explicitly change the permutation (transposes). ## Physical representation We specified the existence of undetermined strides; how should we actually represent them? We observe: * Value of stride doesn’t matter when size = 1, or when you have an empty tensor * We represent strides as 64-bit integers, but we never actually use all of the bits in a 64-bit integer (since you can’t possibly have that much memory) Proposal: instead of storing strides, we store strides in a packed format: ``` +-------------+-----------------------------------+ | tag (2 bit) | stride (62 bit) | +-------------+-----------------------------------+ tag meanings: 00 - regular stride 11 - reserved for negative strides 01 - reserved 10 - permutation sentinel ``` We require the stride for every dimension with size = 1 to be assigned a unique permutation sentinel (but we do not prescribe any other requirements on the sentinel). So for example, for a tensor of size (3, 3, 1, 1), the strides may be (3, 1, Sentinel 0, Sentinel 1). If a tensor is empty, we require every stride to be a unique permutation sentinel. With sentinels, the induced layout permutation is guaranteed to be unique and can be derived directly from the strides. As a further optimization, well known permutations (such as the identity permutation, or NHWC) could be recorded in a separate field for quick checking. Memory format names like “channels_first” or “channels_last” correspond to families of permutations over arbitrary dimensionality. (NCHW would represent a permutation for fixed dim=4).
triaged,enhancement
low
Major
548,361,713
flutter
CupertinoNavigationBar's "Close", "Back", and "Cancel" buttons are not localized.
## "Close" button Originally reported here: https://stackoverflow.com/questions/59487887/flutter-cupertino-app-close-button-not-translated Reproduced Below: > I am writing an iOS App with Cupertino Style in flutter. > > The app should be available in English and German. I am using the following translation delegates in the CupertinoApp: > > RefreshLocalizations.delegate, > GlobalCupertinoLocalizations.delegate, > GlobalWidgetsLocalizations.delegate, > GlobalMaterialLocalizations.delegate, > Unfortunately, the "Close" button in the CupertinoNavigationBar is not not translated. > > Why? And how can I change this? > ## "Back" button https://github.com/flutter/flutter/blob/449079d4f16f1e85ed1b015e08e6d6072c965d75/packages/flutter/lib/src/cupertino/nav_bar.dart#L2032-L2034 ## "Cancel" button Introduced by https://github.com/flutter/flutter/pull/159120
framework,a: internationalization,f: cupertino,has reproducible steps,found in release: 3.3,found in release: 3.7,team-design,triaged-design
low
Major
548,383,662
rust
Error message for closure with async block needs improvement
[Playground](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=5647c313a3c5d73b83bbf27401991c07) ```rust fn do_stuff(foo: Option<Foo>) { require_fn_trait(|| async { if foo.map_or(false, |f| f.foo()) { panic!("foo"); } //ready(()) }) } ``` gives ``` error[E0507]: cannot move out of `foo`, a captured variable in an `Fn` closure --> src/lib.rs:14:31 | 13 | fn do_stuff(foo: Option<Foo>) { | --- captured outer variable 14 | require_fn_trait(|| async { | _______________________________^ 15 | | if foo.map_or(false, |f| f.foo()) { | | --- | | | | | move occurs because `foo` has type `std::option::Option<Foo>`, which does not implement the `Copy` trait | | move occurs due to use in generator 16 | | panic!("foo"); 17 | | } 18 | | //ready(()) 19 | | }) | |_____^ move out of `foo` occurs here | help: consider borrowing the `Option`'s content | 14 | require_fn_trait(|| async { 15 | if foo.map_or(false, |f| f.foo()) { 16 | panic!("foo"); 17 | } 18 | //ready(()) 19 | }.as_ref()) | ``` Note `move occurs due to use in generator`. Also, the code is being output twice, for some reason. If you take this out of the async context by removing `async` and uncommenting `ready(())`, you get a better suggestion to use `as_ref()` and an all-around cleaner error message: ``` error[E0507]: cannot move out of `foo`, a captured variable in an `Fn` closure --> src/lib.rs:15:12 | 13 | fn do_stuff(foo: Option<Foo>) { | --- captured outer variable 14 | require_fn_trait(|| { 15 | if foo.map_or(false, |f| f.foo()) { | ^^^ | | | move occurs because `foo` has type `std::option::Option<Foo>`, which does not implement the `Copy` trait | help: consider borrowing the `Option`'s content: `foo.as_ref()` ``` Thanks to @JakeEhrlich for originally reporting this.
C-enhancement,A-diagnostics,P-medium,A-closures,T-compiler,A-async-await,AsyncAwait-Triaged,D-confusing
low
Critical
548,416,001
godot
Indentation errors loading space indented project into tab indented editor
**Godot version:** Godot 3.2 beta 5 **OS/device including version:** Linux Mint 18.2 **Issue description:** When testing a project from an unrelated issue (#34963) I encountered a parse error when loading the project: `Parser Error: Mixed tabs and spaces in indentation` The author had used the Godot IDE in space indentation mode, and my IDE was set to tabs (with 4 spaces to a tab). When running the project, my editor auto-converted each group of 4 spaces to tabs, however, this caused problems because the authored file contained 'odd' numbers of spaces. This means that projects authored as space indented cannot be currently guaranteed to work in tab indented editor. It is also painful to manually fix this problem. **Steps to reproduce:** By trial and error I figured out the problem occurs in the following situation: ``` ...if true: ....print("hello") ``` This parses and runs fine when using spaces. However when auto converting to tabs, the first line is used as is with spaces, however the second line is converted to a tab, which then triggers the `mixed tabs and spaces in indentation` error. **Minimal reproduction project:** [TabsSpaces.zip](https://github.com/godotengine/godot/files/4049248/TabsSpaces.zip) If you load the minimal project when your editor is set to spaces, it will work. If you load it when the IDE is set to tabs, it will error with the parse error.
bug,topic:gdscript,confirmed
low
Critical
548,418,083
pytorch
build pytorch from source fauled: undefined reference to `cusparseGetErrorString(cusparseStatus_t)'
## 🐛 Bug ## To Reproduce Steps to reproduce the behavior: follow the instruction from [](https://github.com/pytorch/pytorch) > git clone --recursive https://github.com/pytorch/pytorch > cd pytorch > git submodule sync > git submodule update --init --recursive > export CMAKE_PREFIX_PATH=${CONDA_PREFIX:-"$(dirname $(which conda))/../"} > python setup.py install ## Environment Please copy and paste the output from our [environment collection script](https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py) (or fill out the checklist below manually). You can get the script and run it with: ``` wget https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py # For security purposes, please check the contents of collect_env.py before running it. python collect_env.py ``` building pytorch failed, thus no libtorch_global_deps.so was generated and collect_env.py cannot run. - PyTorch Version (e.g., 1.0): latest, with commit 927c2a02b0b29a0fafcced8d65896dd417023067 - OS (e.g., Linux): Linux - How you installed PyTorch (`conda`, `pip`, source): source - Build command you used (if compiling from source): as described above - Python version: 3.7.4, anaconda - CUDA/cuDNN version: cuda 10.1, cudnn 7.1.3 - GPU models and configuration: Nvidia GTX 1070 - Any other relevant information: ## Error message The error message is listed below. [2372/2767] Linking CXX executable bin/graph_test FAILED: bin/graph_test : && /usr/bin/c++ -fvisibility-inlines-hidden -fopenmp -DUSE_FBGEMM -DUSE_QNNPACK -DUSE_PYTORCH_QNNPACK -O2 -fPIC -Wno-narrowing -Wall -Wextra -Wno-missing-field-initializers -Wno-type-limits -Wno-array-bounds -Wno-unknown-pragmas -Wno-sign-compare -Wno-unused-parameter -Wno-unused-variable -Wno-unused-function -Wno-unused-result -Wno-strict-overflow -Wno-strict-aliasing -Wno-error=deprecated-declarations -Wno-error=pedantic -Wno-error=redundant-decls -Wno-error=old-style-cast -fdiagnostics-color=always -Wno-unused-but-set-variable -Wno-maybe-uninitialized -fno-math-errno -fno-trapping-math -DHAVE_AVX_CPU_DEFINITION -DHAVE_AVX2_CPU_DEFINITION -O3 -rdynamic -Wl,-rpath -Wl,/usr/local/lib -Wl,--enable-new-dtags -pthread caffe2/CMakeFiles/graph_test.dir/core/graph_test.cc.o -o bin/graph_test -L/home/v-doxia/anaconda3/lib -Wl,-rpath,/home/v-doxia/anaconda3/lib:/home/v-doxia/working/pytorch/build/lib:/usr/local/cuda-10.1/lib64:/usr/local/cuda/lib64: lib/libgtest_main.a -Wl,--no-as-needed,/home/v-doxia/working/pytorch/build/lib/libtorch.so -Wl,--as-needed -Wl,--no-as-needed,/home/v-doxia/working/pytorch/build/lib/libtorch_cpu.so -Wl,--as-needed lib/libprotobuf.a -lmkl_intel_lp64 -lmkl_gnu_thread -lmkl_core -fopenmp -lpthread -lm /usr/lib/x86_64-linux-gnu/libdl.so lib/libmkldnn.a -Wl,--no-as-needed,/home/v-doxia/working/pytorch/build/lib/libtorch_cuda.so -Wl,--as-needed lib/libc10_cuda.so lib/libc10.so /usr/local/cuda-10.1/lib64/libnvToolsExt.so /usr/local/cuda-10.1/lib64/libcudart.so /usr/local/cuda-10.1/lib64/libcufft.so /usr/local/cuda-10.1/lib64/libcurand.so /usr/lib/x86_64-linux-gnu/libcublas.so /usr/local/cuda/lib64/libcudnn.so lib/libgtest.a -pthread && : /home/v-doxia/working/pytorch/build/lib/libtorch_cuda.so: undefined reference to `cusparseGetErrorString(cusparseStatus_t)' collect2: error: ld returned 1 exit status [2373/2767] Linking CXX executable bin/roi_align_op_gpu_test FAILED: bin/roi_align_op_gpu_test : && /usr/bin/c++ -fvisibility-inlines-hidden -fopenmp -DUSE_FBGEMM -DUSE_QNNPACK -DUSE_PYTORCH_QNNPACK -O2 -fPIC -Wno-narrowing -Wall -Wextra -Wno-missing-field-initializers -Wno-type-limits -Wno-array-bounds -Wno-unknown-pragmas -Wno-sign-compare -Wno-unused-parameter -Wno-unused-variable -Wno-unused-function -Wno-unused-result -Wno-strict-overflow -Wno-strict-aliasing -Wno-error=deprecated-declarations -Wno-error=pedantic -Wno-error=redundant-decls -Wno-error=old-style-cast -fdiagnostics-color=always -Wno-unused-but-set-variable -Wno-maybe-uninitialized -fno-math-errno -fno-trapping-math -DHAVE_AVX_CPU_DEFINITION -DHAVE_AVX2_CPU_DEFINITION -O3 -rdynamic -Wl,-rpath -Wl,/usr/local/lib -Wl,--enable-new-dtags -pthread -rdynamic caffe2/CMakeFiles/roi_align_op_gpu_test.dir/operators/roi_align_op_gpu_test.cc.o -o bin/roi_align_op_gpu_test -L/home/v-doxia/anaconda3/lib -Wl,-rpath,/usr/local/cuda-10.1/lib64:/home/v-doxia/anaconda3/lib:/home/v-doxia/working/pytorch/build/lib:/usr/local/cuda/lib64: /usr/local/cuda-10.1/lib64/libcudart.so lib/libgtest_main.a -Wl,--no-as-needed,/home/v-doxia/working/pytorch/build/lib/libtorch.so -Wl,--as-needed -Wl,--no-as-needed,/home/v-doxia/working/pytorch/build/lib/libtorch_cpu.so -Wl,--as-needed lib/libprotobuf.a -lmkl_intel_lp64 -lmkl_gnu_thread -lmkl_core -fopenmp -lpthread -lm -ldl lib/libmkldnn.a -Wl,--no-as-needed,/home/v-doxia/working/pytorch/build/lib/libtorch_cuda.so -Wl,--as-needed lib/libc10_cuda.so lib/libc10.so /usr/local/cuda-10.1/lib64/libnvToolsExt.so /usr/local/cuda-10.1/lib64/libcudart.so /usr/local/cuda-10.1/lib64/libcufft.so /usr/local/cuda-10.1/lib64/libcurand.so -lcublas /usr/local/cuda/lib64/libcudnn.so lib/libgtest.a -pthread && : /home/v-doxia/working/pytorch/build/lib/libtorch_cuda.so: undefined reference to `cusparseGetErrorString(cusparseStatus_t)' collect2: error: ld returned 1 exit status [2375/2767] Linking CXX executable bin/operator_fallback_gpu_test FAILED: bin/operator_fallback_gpu_test : && /usr/bin/c++ -fvisibility-inlines-hidden -fopenmp -DUSE_FBGEMM -DUSE_QNNPACK -DUSE_PYTORCH_QNNPACK -O2 -fPIC -Wno-narrowing -Wall -Wextra -Wno-missing-field-initializers -Wno-type-limits -Wno-array-bounds -Wno-unknown-pragmas -Wno-sign-compare -Wno-unused-parameter -Wno-unused-variable -Wno-unused-function -Wno-unused-result -Wno-strict-overflow -Wno-strict-aliasing -Wno-error=deprecated-declarations -Wno-error=pedantic -Wno-error=redundant-decls -Wno-error=old-style-cast -fdiagnostics-color=always -Wno-unused-but-set-variable -Wno-maybe-uninitialized -fno-math-errno -fno-trapping-math -DHAVE_AVX_CPU_DEFINITION -DHAVE_AVX2_CPU_DEFINITION -O3 -rdynamic -Wl,-rpath -Wl,/usr/local/lib -Wl,--enable-new-dtags -pthread -rdynamic caffe2/CMakeFiles/operator_fallback_gpu_test.dir/operators/operator_fallback_gpu_test.cc.o -o bin/operator_fallback_gpu_test -L/home/v-doxia/anaconda3/lib -Wl,-rpath,/usr/local/cuda-10.1/lib64:/home/v-doxia/anaconda3/lib:/home/v-doxia/working/pytorch/build/lib:/usr/local/cuda/lib64: /usr/local/cuda-10.1/lib64/libcudart.so lib/libgtest_main.a -Wl,--no-as-needed,/home/v-doxia/working/pytorch/build/lib/libtorch.so -Wl,--as-needed -Wl,--no-as-needed,/home/v-doxia/working/pytorch/build/lib/libtorch_cpu.so -Wl,--as-needed lib/libprotobuf.a -lmkl_intel_lp64 -lmkl_gnu_thread -lmkl_core -fopenmp -lpthread -lm -ldl lib/libmkldnn.a -Wl,--no-as-needed,/home/v-doxia/working/pytorch/build/lib/libtorch_cuda.so -Wl,--as-needed lib/libc10_cuda.so lib/libc10.so /usr/local/cuda-10.1/lib64/libnvToolsExt.so /usr/local/cuda-10.1/lib64/libcudart.so /usr/local/cuda-10.1/lib64/libcufft.so /usr/local/cuda-10.1/lib64/libcurand.so -lcublas /usr/local/cuda/lib64/libcudnn.so lib/libgtest.a -pthread && : /home/v-doxia/working/pytorch/build/lib/libtorch_cuda.so: undefined reference to `cusparseGetErrorString(cusparseStatus_t)' collect2: error: ld returned 1 exit status [2376/2767] Linking CXX executable bin/utility_ops_gpu_test FAILED: bin/utility_ops_gpu_test : && /usr/bin/c++ -fvisibility-inlines-hidden -fopenmp -DUSE_FBGEMM -DUSE_QNNPACK -DUSE_PYTORCH_QNNPACK -O2 -fPIC -Wno-narrowing -Wall -Wextra -Wno-missing-field-initializers -Wno-type-limits -Wno-array-bounds -Wno-unknown-pragmas -Wno-sign-compare -Wno-unused-parameter -Wno-unused-variable -Wno-unused-function -Wno-unused-result -Wno-strict-overflow -Wno-strict-aliasing -Wno-error=deprecated-declarations -Wno-error=pedantic -Wno-error=redundant-decls -Wno-error=old-style-cast -fdiagnostics-color=always -Wno-unused-but-set-variable -Wno-maybe-uninitialized -fno-math-errno -fno-trapping-math -DHAVE_AVX_CPU_DEFINITION -DHAVE_AVX2_CPU_DEFINITION -O3 -rdynamic -Wl,-rpath -Wl,/usr/local/lib -Wl,--enable-new-dtags -pthread -rdynamic caffe2/CMakeFiles/utility_ops_gpu_test.dir/operators/utility_ops_gpu_test.cc.o -o bin/utility_ops_gpu_test -L/home/v-doxia/anaconda3/lib -Wl,-rpath,/usr/local/cuda-10.1/lib64:/home/v-doxia/anaconda3/lib:/home/v-doxia/working/pytorch/build/lib:/usr/local/cuda/lib64: /usr/local/cuda-10.1/lib64/libcudart.so lib/libgtest_main.a -Wl,--no-as-needed,/home/v-doxia/working/pytorch/build/lib/libtorch.so -Wl,--as-needed -Wl,--no-as-needed,/home/v-doxia/working/pytorch/build/lib/libtorch_cpu.so -Wl,--as-needed lib/libprotobuf.a -lmkl_intel_lp64 -lmkl_gnu_thread -lmkl_core -fopenmp -lpthread -lm -ldl lib/libmkldnn.a -Wl,--no-as-needed,/home/v-doxia/working/pytorch/build/lib/libtorch_cuda.so -Wl,--as-needed lib/libc10_cuda.so lib/libc10.so /usr/local/cuda-10.1/lib64/libnvToolsExt.so /usr/local/cuda-10.1/lib64/libcudart.so /usr/local/cuda-10.1/lib64/libcufft.so /usr/local/cuda-10.1/lib64/libcurand.so -lcublas /usr/local/cuda/lib64/libcudnn.so lib/libgtest.a -pthread && : /home/v-doxia/working/pytorch/build/lib/libtorch_cuda.so: undefined reference to `cusparseGetErrorString(cusparseStatus_t)' collect2: error: ld returned 1 exit status [2387/2767] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_misc.cpp.o ninja: build stopped: subcommand failed. Traceback (most recent call last): File "setup.py", line 737, in <module> build_deps() File "setup.py", line 316, in build_deps cmake=cmake) File "/home/v-doxia/working/pytorch/tools/build_pytorch_libs.py", line 62, in build_caffe2 cmake.build(my_env) File "/home/v-doxia/working/pytorch/tools/setup_helpers/cmake.py", line 339, in build self.run(build_args, my_env) File "/home/v-doxia/working/pytorch/tools/setup_helpers/cmake.py", line 141, in run check_call(command, cwd=self.build_dir, env=env) File "/home/v-doxia/anaconda3/lib/python3.7/subprocess.py", line 347, in check_call raise CalledProcessError(retcode, cmd) ## Some ideas I search the code base and find a definition of `cusparseGetErrorString(cusparseStatus_t)` at pytorch/aten/src/ATen/native/sparse/cuda/SparseCUDABlas.cu: ``` #if (!((CUSPARSE_VER_MAJOR >= 10) && (CUSPARSE_VER_MINOR >= 2))) const char* cusparseGetErrorString(cusparseStatus_t status) { switch(status) { case CUSPARSE_STATUS_SUCCESS: return "success"; case CUSPARSE_STATUS_NOT_INITIALIZED: return "library not initialized"; case CUSPARSE_STATUS_ALLOC_FAILED: return "resource allocation failed"; case CUSPARSE_STATUS_INVALID_VALUE: return "an invalid numeric value was used as an argument"; case CUSPARSE_STATUS_ARCH_MISMATCH: return "an absent device architectural feature is required"; case CUSPARSE_STATUS_MAPPING_ERROR: return "an access to GPU memory space failed"; case CUSPARSE_STATUS_EXECUTION_FAILED: return "the GPU program failed to execute"; case CUSPARSE_STATUS_INTERNAL_ERROR: return "an internal operation failed"; case CUSPARSE_STATUS_MATRIX_TYPE_NOT_SUPPORTED: return "the matrix type is not supported by this function"; case CUSPARSE_STATUS_ZERO_PIVOT: return "an entry of the matrix is either structural zero or numerical zero (singular block)"; default: return "unknown error"; } } #endif ``` I check the version of the cusparse installed on the machine and find the code above will be be compiled due to the `#if`. So the undefined symbol should be the function provided by Nvidia cuSPARSE, but I think I do not find '-lcusparse' in the command in the error log. Will this be the reason for this error?
module: build,triaged
medium
Critical
548,426,995
godot
Getter method is called for no reason and callstack is growing while execution is stoped at breakpoint
**Godot version:** v3.2.beta.custom_build.406dac191 **OS/device including version:** Windows 10 **Issue description:** Getter method is called on a variable that is not being accessed when I call any method of that class ![godotbug-gdscript2](https://user-images.githubusercontent.com/11059246/73358224-6f6e7f80-429e-11ea-9f9f-1ee7ae9234fe.gif) **Minimal reproduction project:** [GDScriptBug.zip](https://github.com/godotengine/godot/files/4049350/GDScriptBug.zip)
bug,topic:gdscript,confirmed
low
Critical
548,433,777
flutter
UiKitView doesn't rebuild with changing state
I'm trying to dynamically change UiKitView with state. When I change creationParams "value", it doesn't rebuild UiKitView. Is it possible to rebuild UiKitView with changing state? ``` return Container( child: UiKitView( viewType: 'any', creationParams: <String, dynamic>{ "value": value, }, creationParamsCodec: StandardMessageCodec(), ), ); ```
platform-ios,framework,engine,a: platform-views,c: rendering,has reproducible steps,P2,team-ios,triaged-ios,found in release: 3.19,found in release: 3.21
low
Major
548,452,218
youtube-dl
Support RTP
I am using the 2020-01-01 version of youtube-dl in windows environment . Last year youtube-dl worked perfectly on this website , however probably some changes were probably made in website streaming service . Example of streaming link : https://www.rtp.pt/play/p6383/italia-selvagem-os-maiores-predadores Error from youtube-dl : youtube-dl --verbose -F https://www.rtp.pt/play/p6383/italia-selvagem- os-maiores-predadores [debug] System config: [] [debug] User config: [] [debug] Custom config: [] [debug] Command-line args: ['--verbose', '-F', 'https://www.rtp.pt/play/p6383/it alia-selvagem-os-maiores-predadores'] [debug] Encodings: locale cp1252, fs mbcs, out cp437, pref cp1252 [debug] youtube-dl version 2020.01.01 [debug] Python version 3.4.4 (CPython) - Windows-7-6.1.7601-SP1 [debug] exe versions: ffmpeg N-92458-gfc94e9704e, ffprobe N-92458-gfc94e9704e [debug] Proxy map: {} [RTP] italia-selvagem-os-maiores-predadores: Downloading webpage ERROR: italia-selvagem-os-maiores-predadores: Failed to parse JSON (caused by V alueError("Expecting ',' delimiter: line 11 column 11 (char 715)",)); please rep ort this issue on https://yt-dl.org/bug . Make sure you are using the latest ver sion; type youtube-dl -U to update. Be sure to call youtube-dl with the --verb ose flag and include its complete output. Traceback (most recent call last): File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\ytdl-org\tmpj4acy7 ln\build\youtube_dl\extractor\common.py", line 899, in _parse_json File "C:\Python\Python34\lib\json\__init__.py", line 318, in loads File "C:\Python\Python34\lib\json\decoder.py", line 343, in decode File "C:\Python\Python34\lib\json\decoder.py", line 359, in raw_decode ValueError: Expecting ',' delimiter: line 11 column 11 (char 715) Traceback (most recent call last): File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\ytdl-org\tmpj4acy7 ln\build\youtube_dl\extractor\common.py", line 899, in _parse_json File "C:\Python\Python34\lib\json\__init__.py", line 318, in loads File "C:\Python\Python34\lib\json\decoder.py", line 343, in decode File "C:\Python\Python34\lib\json\decoder.py", line 359, in raw_decode ValueError: Expecting ',' delimiter: line 11 column 11 (char 715) During handling of the above exception, another exception occurred: Traceback (most recent call last): File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\ytdl-org\tmpj4acy7 ln\build\youtube_dl\YoutubeDL.py", line 796, in extract_info File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\ytdl-org\tmpj4acy7 ln\build\youtube_dl\extractor\common.py", line 530, in extract File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\ytdl-org\tmpj4acy7 ln\build\youtube_dl\extractor\rtp.py", line 37, in _real_extract File "C:\Users\dst\AppData\Roaming\Build archive\youtube-dl\ytdl-org\tmpj4acy7 ln\build\youtube_dl\extractor\common.py", line 903, in _parse_json youtube_dl.utils.ExtractorError: italia-selvagem-os-maiores-predadores: Failed t o parse JSON (caused by ValueError("Expecting ',' delimiter: line 11 column 11 (char 715)",)); please report this issue on https://yt-dl.org/bug . Make sure yo u are using the latest version; type youtube-dl -U to update. Be sure to call youtube-dl with the --verbose flag and include its complete output.
broken-IE
low
Critical
548,453,109
scrcpy
rendering is not smooth in scrcpy on 60fps . i have noticed .. motion blur is not there mirroring
performance
low
Major
548,453,392
godot
Infinite loop in Physics2DServerSW::_update_shapes with Multi-Threaded physics
___ ***Bugsquad note:** This issue has been confirmed several times already. No need to confirm it further.* ___ **Godot version:** Godot 3.2.beta 6 (commit 02cd144222) **OS/device including version:** MacOSX 10.14.6 (18G95) **Issue description:** I have a lot of KinematicBody2D in one scene. In `_physics_process` I call `move_and_collide` and some times the game hungs up with logs: ``` ERROR: remove: Condition ' p_elem->_root != this ' is true. At: ./core/self_list.h:84. ``` This lines repeates many times. Actually infinite amount of times, because it prints from the infinite loop. I catched the bug with xcode debugger and it shows me that the problem is in `void Physics2DServerSW::_update_shapes()`: https://github.com/godotengine/godot/blob/02cd1442227127604549159d66b9bfc68a193dd3/servers/physics_2d/physics_2d_server_sw.cpp#L1421 I have no ideas why `pending_shape_update_list` became broken. Does anybody have? **Steps to reproduce:** **Minimal reproduction project:**
bug,confirmed,topic:physics,needs testing,topic:2d
low
Critical
548,453,889
react-native
fetch implementation does not support streams from the spec - needs implementation in React Native core
<!-- Please provide a clear and concise description of what the bug is. Include screenshots if needed. Please test using the latest React Native release to make sure your issue has not already been fixed: http://facebook.github.io/react-native/docs/upgrading.html --> React Native has not implemented fetch on top of native APIs, and the fetch polyfill built on top of XHR does not support streams where `response.body` is a getter for a `ReadableStream`. React Native version: <!-- Run `react-native info` in your terminal and copy the results here. --> `0.61.4` ## Steps To Reproduce Use `fetch` and see that `response.body` is undefined rather than a getter for a `ReadableStream` according the the fetch spec. <!-- Issues without reproduction steps or code are likely to stall. --> Describe what you expected to happen: I expected for `response.body` to be defined. ## Related issues https://github.com/facebook/react-native/issues/9629 https://github.com/facebook/react-native/issues/12912 https://github.com/github/fetch/issues/746#issuecomment-573251497 (cc @MattiasBuelens)
🌐Networking,Bug
high
Critical
548,468,736
godot
Translating a node by gizmo with Snap Mode factors the scale of a parent in the translation regardless of Local Space Mode on/off.
**Godot version:** Godot Engine v.3.1.2.stable.official **OS/device including version:** Windows 10 Pro, 64-bit, Version: 1909, Build: 18363.535 **Issue description:** If you have a parent node and a child node, and you give any fractional scaling to the parent and not the child, moving the child by gizmo in Snap Mode while the Local Space Mode is **deactivated** changes the child's translation **with the parent's scaling multiplier factored in**, passing a fractional transform value into the inspector, and moving the node by less than 1 in global space, which is expected behavior. However, if you move that child node in Snap Mode while doing it with Local Space Mode **activated** it should move the child by a flat 1 in its local space, passing a translation transform of 1 in the inspector, and perfectly aligning it with other objects of size 1 and local scale of 1 which are also children of the same scaled parent. Instead, the child's translation by dragging the gizmo is factoring in the parent's scale regardless if Local Space Mode is activated or deactivated, and if you move one of the children with snap, and it gets misaligned with the other children nodes. **Steps to reproduce:** Add a spatial node, add a a few mesh instance cubes of size 1 and scale of 1, make them be children of the spatial. Move them around with the gizmo with Snap Mode activated with the standard snap value of 1, and they will align neatly with the grid and with each other, making snapped level build easy as intended. Now give a fractional scale to the parent and move the cubes again with the gizmo. Regardless if Local Space Mode is activated or not, their position on the viewport and the corresponding translation value in the inspector will be affected by the parent's scaling multiplier, making cubes snap to misaligned positions and interfering with level build. Manually typing the translation to integers in the inspector will fix their alignment, so you have type positions instead of using the gizmos to place objects if all objects in the scene are children to a scaled parent. **Minimal reproduction project:** [ScaledParentSnapBug.zip](https://github.com/godotengine/godot/files/4049734/ScaledParentSnapBug.zip)
bug,topic:editor,confirmed
low
Critical
548,494,973
go
gollvm: failure to build on Arch Linux
### What operating system and processor architecture are you using (`go env`)? x86_64 Arch Linux ```text $ uname -a Linux omikron 5.4.10.a-1-hardened #1 SMP PREEMPT Thu, 09 Jan 2020 20:14:59 +0000 x86_64 GNU/Linux ``` (Failure building go, so I can't run `go env`, but if there's any more info I'm happy to edit this as need be) ### What did you do? ```shell mkdir -p gollvm-workarea cd gollvm-workarea git clone https://github.com/llvm/llvm-project.git cd llvm-project/llvm/tools git clone https://go.googlesource.com/gollvm cd gollvm git clone https://go.googlesource.com/gofrontend cd libgo git clone https://github.com/libffi/libffi.git git clone https://github.com/ianlancetaylor/libbacktrace.git cd ~/projects/personal/gollvm-workarea/ mkdir -p build.rel && cd build.rel cmake -DCMAKE_BUILD_TYPE=Release -DLLVM_USE_LINKER=gold -G Ninja -DLLVM_TARGETS_TO_BUILD="X86" ../llvm-project/llvm/ ninja gollvm ``` ### What did you expect to see? I expected to be able to build gollvm successfully. ### What did you see instead? Results in: [THESE](https://gist.github.com/SecurityInsanity/ab35254ef8cfd6c8206d3572657587d2) error logs. After doing some digging I realized it was missing some fields in `gen-sysinfo.go`, so I manually added in the [following fields](https://gist.github.com/SecurityInsanity/c00fc6fa07e5984b6cf82aa405db24eb) to the very bottom of the file. Running ninja again then results in: [THIS](https://gist.github.com/SecurityInsanity/513f83354182edcf8f7ee018531f8fb5) error message. This looks similar to some output posted on #26405 in terms of editing a file, and seeing failure to link to cri.o. As such I'm going to post the two commands requested in that issue in case it's of help: ``` $ echo "package tiny" > tiny.go $ ./bin/llvm-goc -v -c tiny.go gollvm version 1 (experimental) [LLVM version 10] Candidate GCC install: version: 9.2.0 foundTriple: x86_64-pc-linux-gnu libPath: /usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0 parentLibPath: /usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0/../.. installPath: /usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0 ProgramPaths: FilePaths: /usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0 Target: x86_64-unknown-linux-gnu ./bin/llvm-goc -S tiny.go -L/home/cynthia/projects/personal/gollvm-workarea/build.rel/./bin/../lib64 -o /tmp/compile-393cb7.s /usr/bin/as --64 -o tiny.o /tmp/compile-393cb7.s $ clang -c -v himom.c clang version 9.0.1 Target: x86_64-pc-linux-gnu Thread model: posix InstalledDir: /usr/bin Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-pc-linux-gnu/9.2.0 Found candidate GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/9.2.0 Found candidate GCC installation: /usr/lib/gcc/x86_64-pc-linux-gnu/9.2.0 Found candidate GCC installation: /usr/lib64/gcc/x86_64-pc-linux-gnu/9.2.0 Selected GCC installation: /usr/bin/../lib64/gcc/x86_64-pc-linux-gnu/9.2.0 Candidate multilib: .;@m64 Candidate multilib: 32;@m32 Selected multilib: .;@m64 clang-9: error: no such file or directory: 'himom.c' ```
NeedsInvestigation
low
Critical
548,500,937
TypeScript
Force Override Declarations Types
<!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Please help us by doing the following steps before logging an issue: * Search: https://github.com/Microsoft/TypeScript/search?type=Issues * Read the FAQ, especially the "Common Feature Requests" section: https://github.com/Microsoft/TypeScript/wiki/FAQ --> ## Search Terms <!-- List of keywords you searched for before creating this issue. Write them down here so that others can find this suggestion more easily --> declaration module merging override interface ## Suggestion <!-- A summary of what you'd like to see added or changed --> Add a way to force override declarations for modules in the workspace. Typescript allows you to create a global.d.ts to add global declarations. How about an override.d.ts or an *.override.d.ts file to override existing modules declarations in the user workspace. ## Use Cases <!-- What do you want to use this for? What shortcomings exist with current approaches? --> Lets say you install a node module package and type. You see that the type parameter isn't type safe so you use declaration merging to create a more type safe declaration. However, when you use the module type as a variables type or choose to extending it, it automatically uses the types folder declaration first since the type parameter used fits the node_modules declaration type parameter, however that type would not fit the type parameter the user created. This is because declaration merging selects the most appropriate types in order. If the type was to not match the first declaration type it would move on until reaching the appropriate type, which wouldn't work in this use case. ## Examples <!-- Show how this would be used and what the behavior would be --> ```ts // Node Module module declaration file declare module "react-router" { interface RouteComponentProps<Params extends { [K in keyof Params]?: string | undefined }> { params: Params; } } // User Defined Type declaration file export type NoRequired<T extends {}> = { [C in keyof T]: T[C] extends Required<T>[C] ? never : T[C]; }; declare module "react-router" { interface RouteComponentProps<Params extends NoRequired<Params> }> { params: Params; } } // Using the Interface import { RouteComponentProps } from "react-router"; // I don't want to extend RouteComponentProps<{ page: string }>, but I can. export interface CRUDComponentProps extends RouteComponentProps<{ page: string }> { serverName: string; clientName: string; } ``` As you can see the type is accepted as the node modules declaration type instead of a user defined declaration type. There no other way of overriding it other than removing it manually from the the node_modules type file. ## Checklist My suggestion meets these guidelines: * [ ] A way of force overriding a type (preferably an override.d.ts or an *.override.d.ts file) * [ ] A way to sort the order in which declaration merging happens
Suggestion,In Discussion
high
Critical
548,515,393
godot
Editor Allows Using Abstract C# Resource Types
**Godot version:** 3.1.2.stable.mono.official **OS/device including version:** Manjaro Linux x86_64 Linux Kernel 5.4.6-2-MANJARO **Issue description:** Editor allows the attachment of C# scripts to fields that accept them as if they are concrete implementations. When calling abstract functions that would normally be implemented by a derived class the runtime crashes and Mono produces the following crash log: [mono_crash.2e2ed3546.5.json.txt](https://github.com/godotengine/godot/files/4050150/mono_crash.2e2ed3546.5.json.txt) **Steps to reproduce:** 1. Create new C# script and define an abstract class that extends `Resource`. 2. Declare at least one abstract method on the class. 3. Create a resource that uses the abstract class' C# file as its script. 4. Call one the abstract class' unimplemented methods at runtime. **Minimal reproduction project:** [Example.zip](https://github.com/godotengine/godot/files/4050159/Example.zip)
bug,topic:editor,topic:dotnet
low
Critical
548,515,710
terminal
Allow tab title and window title to update independently
<!-- 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨 I ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING: 1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement. 2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further explanation or engagement. 3. If I write an issue that has many duplicates, the core team may close my issue without further explanation or engagement (and without necessarily spending time to find the exact duplicate ID number). 4. If I leave the title incomplete when filing the issue, the core team may close my issue without further explanation or engagement. 5. If I file something completely blank in the body, the core team may close my issue without further explanation or engagement. All good? Then proceed! --> # Description of the new feature/enhancement Currently the window title, as seen in the taskbar button, and window titlebar if "showTabsInTitleBar" is set to false, are always the same as the tab title for the current tab, This would allow those two to differ. The intended use case would be to set a short title for a tab, e.g. "PS" for PowerShell, while allowing the application title to show as the window title, where it might contain the current path, e.g. "PS C;\Users\username" <!-- A clear and concise description of what the problem is that the new feature would solve. Describe why and how a user would use this new functionality (if applicable). --> # Proposed technical implementation details (optional) This will require a new setting "suppressApplicationTitleInTab" that would have a similar effect to the current "suppressApplicationTitle", but instead of altering both the tab title and window title as the current setting does, it would only force tabTitle into the tab. <!-- A clear and concise description of what you want to happen. --> # Notes I've already been working on this, and have a branch in my fork of this repo that has a working implementation. However, before I create a PR, I'd like to run the idea past the team, so that they can look it over and give a final go/no-go decision. If you want to see it in action, fork my repo: https://github.com/dgnuff/terminal and take a look at branch features/title, 868e39e .
Issue-Feature,Help Wanted,Area-UserInterface,Product-Terminal
low
Critical
548,518,189
pytorch
Out-of-date link to pytorch ci dockerfiles in jenkins readme
The Jenkins [readme.md](https://github.com/pytorch/pytorch/blob/master/.jenkins/pytorch/README.md) contains the broken link `https://github.com/pietern/pytorch-dockerfiles/blob/master/build.sh`. This repository has been moved on 11/11/2019, and it looks like the link should be replaced with `https://github.com/pytorch/pytorch-ci-dockerfiles/blob/master/build.sh`. Edit: It looks like I was looking in the wrong place. The CI dockerfiles are also included in a [subdirectory](https://github.com/pytorch/pytorch/tree/master/.circleci). I'm not sure where the link is intended to be pointing, however.
module: docs,triaged
low
Critical
548,519,494
godot
multiple Polygon2D with shared edges don't render properly
**Godot version:** 3.1.1 **OS/device including version:** Linux/Fedora 30 **Issue description:** When two instances of Polygon2D share an edge it sometimes leads to one of them not being rendered properly. **Steps to reproduce:** I haven't fully figured out what leads to this bug. In the reproduction project are three scenes that all display this bug. In each of them "Polygon2D2" is not being rendered properly in the Editor and when running the game it flickers between the proper rendering and the wrong one. When the visibility of "Polygon2D" is toggled off it is rendered properly. **Minimal reproduction project:** [Polygon2DBug.zip](https://github.com/godotengine/godot/files/4050209/Polygon2DBug.zip)
bug,topic:rendering
low
Critical
548,521,711
go
cmd/go: allow `go run .` in module mode without a go.mod file
### What version of Go are you using (`go version`)? <pre> $ go version go version go1.14beta1 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Yes ### What did you do? * Create a simple hello world project with only one `main.go` file. * Set `GO111MODULE=on` * Run `go run .` in the project folder. ### What did you expect to see? Run okay. ### What did you see instead? ``` go: cannot find main module; see 'go help modules' ``` or for a git repository ``` go: cannot find main module, but found .git/config in /path/to/projects/helloworld to create a module there, run: go mod init ```
NeedsFix
high
Critical
548,531,827
rust
Can't compile with emscripten on windows (rust.metadata.bin) The end of the file was unexpectedly encountered
The following output shows a new project without modification but compilation fails ``` D:\Code>D:\toolchain\emsdk\emsdk_env.bat Adding directories to PATH: PATH += D:\toolchain\emsdk PATH += D:\toolchain\emsdk\upstream\emscripten PATH += D:\toolchain\emsdk\node\12.9.1_64bit\bin PATH += D:\toolchain\emsdk\python\2.7.13.1_64bit\python-2.7.13.amd64 PATH += D:\toolchain\emsdk\java\8.152_64bit\bin Setting environment variables: EMSDK = D:/toolchain/emsdk EM_CONFIG = C:\Users\sekai\.emscripten EMSDK_NODE = D:\toolchain\emsdk\node\12.9.1_64bit\bin\node.exe EMSDK_PYTHON = D:\toolchain\emsdk\python\2.7.13.1_64bit\python-2.7.13.amd64\python.exe JAVA_HOME = D:\toolchain\emsdk\java\8.152_64bit D:\Code>cargo new rust-emscripten-test Created binary (application) `rust-emscripten-test` package D:\Code>cd rust-emscripten-test D:\Code\rust-emscripten-test>cargo build --target=wasm32-unknown-emscripten Compiling rust-emscripten-test v0.1.0 (D:\Code\rust-emscripten-test) error: linking with `emcc.bat` failed: exit code: 1 | = note: "cmd" "/c" "emcc.bat" "-s" "DISABLE_EXCEPTION_CATCHING=0" "-L" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib" "D:\\Code\\rust-emscripten-test\\target\\wasm32-unknown-emscripten\\debug\\deps\\rust_emscripten_test.1bjuck14l0ffwfns.rcgu.o" "D:\\Code\\rust-emscripten-test\\target\\wasm32-unknown-emscripten\\debug\\deps\\rust_emscripten_test.1q3di4gz2b9t8zn5.rcgu.o" "D:\\Code\\rust-emscripten-test\\target\\wasm32-unknown-emscripten\\debug\\deps\\rust_emscripten_test.1ykwen4cd5q90e52.rcgu.o" "D:\\Code\\rust-emscripten-test\\target\\wasm32-unknown-emscripten\\debug\\deps\\rust_emscripten_test.4ossifeikpvnv8oq.rcgu.o" "D:\\Code\\rust-emscripten-test\\target\\wasm32-unknown-emscripten\\debug\\deps\\rust_emscripten_test.56kwdmqbw2cm8id5.rcgu.o" "D:\\Code\\rust-emscripten-test\\target\\wasm32-unknown-emscripten\\debug\\deps\\rust_emscripten_test.5gq8h1mxltrihvjq.rcgu.o" "-o" "D:\\Code\\rust-emscripten-test\\target\\wasm32-unknown-emscripten\\debug\\deps\\rust_emscripten_test.js" "-s" "EXPORTED_FUNCTIONS=[\"_main\",\"_rust_eh_personality\"]" "D:\\Code\\rust-emscripten-test\\target\\wasm32-unknown-emscripten\\debug\\deps\\rust_emscripten_test.41vpw4plt3ujpvww.rcgu.o" "-O0" "--memory-init-file" "0" "-g4" "-s" "DEFAULT_LIBRARY_FUNCS_TO_INCLUDE=[]" "-L" "D:\\Code\\rust-emscripten-test\\target\\wasm32-unknown-emscripten\\debug\\deps" "-L" "D:\\Code\\rust-emscripten-test\\target\\debug\\deps" "-L" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib\\libstd-b6414ae168385702.rlib" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib\\libpanic_unwind-efbc2c947951b8cc.rlib" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib\\libhashbrown-b177382d9a04ffbe.rlib" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib\\librustc_std_workspace_alloc-ba7d2244d33447d5.rlib" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib\\libbacktrace-39569dc87e4ea301.rlib" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib\\librustc_demangle-f83165e777dccb8d.rlib" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib\\libunwind-10b085de263b1750.rlib" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib\\libcfg_if-9a4a22edf44da957.rlib" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib\\liblibc-68fabc677efa98de.rlib" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib\\liballoc-026dc0061b48e8b6.rlib" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib\\librustc_std_workspace_core-7bf75bb619341145.rlib" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib\\libcore-ef54709e300503ed.rlib" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib\\libcompiler_builtins-4ed27d8420cb4abc.rlib" "-l" "c" "-s" "ERROR_ON_UNDEFINED_SYMBOLS=1" "-s" "ASSERTIONS=1" "-s" "ABORTING_MALLOC=0" "-Wl,--fatal-warnings" = note: shared:WARNING: ignoring unsupported linker flag: `--fatal-warnings` no symbols D:/toolchain/emsdk/upstream/bin\llvm-nm.exe: error: C:\Users\sekai\.rustup\toolchains\stable-x86_64-pc-windows-msvc\lib\rustlib\wasm32-unknown-emscripten\lib\libpanic_unwind-efbc2c947951b8cc.rlib(rust.metadata.bin) The end of the file was unexpectedly encountered Traceback (most recent call last): File "D:\toolchain\emsdk\upstream\emscripten\emcc.py", line 3748, in <module> sys.exit(run(sys.argv)) File "D:\toolchain\emsdk\upstream\emscripten\emcc.py", line 1993, in run ensure_archive_index(input_file) File "D:\toolchain\emsdk\upstream\emscripten\emcc.py", line 476, in ensure_archive_index stdout = run_process([shared.LLVM_NM, '--print-armap', archive_file], stdout=PIPE).stdout File "D:\toolchain\emsdk\upstream\emscripten\tools\shared.py", line 195, in run_process result.check_returncode() File "D:\toolchain\emsdk\upstream\emscripten\tools\shared.py", line 168, in check_returncode raise Py2CalledProcessError(returncode=self.returncode, cmd=self.args, output=self.stdout, stderr=self.stderr) tools.shared.Py2CalledProcessError: Command '['D:/toolchain/emsdk/upstream/bin\\llvm-nm.exe', '--print-armap', 'C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib\\libpanic_unwind-efbc2c947951b8cc.rlib']' returned non-zero exit status 1 error: aborting due to previous error error: could not compile `rust-emscripten-test`. To learn more, run the command again with --verbose. ``` emcc works fine with pure C hello world example ``` D:\Code\rust-emscripten-test>emcc ./hello_world.c cache:INFO: generating system library: libcompiler_rt.a... (this will be cached in "C:\Users\sekai\.emscripten_cache\wasm-obj\libcompiler_rt.a" for subsequent builds) cache:INFO: - ok cache:INFO: generating system library: libc-wasm.a... (this will be cached in "C:\Users\sekai\.emscripten_cache\wasm-obj\libc-wasm.a" for subsequent builds) cache:INFO: - ok cache:INFO: generating system library: libdlmalloc.a... (this will be cached in "C:\Users\sekai\.emscripten_cache\wasm-obj\libdlmalloc.a" for subsequent builds) cache:INFO: - ok cache:INFO: generating system library: libpthread_stub.a... (this will be cached in "C:\Users\sekai\.emscripten_cache\wasm-obj\libpthread_stub.a" for subsequent builds) cache:INFO: - ok cache:INFO: generating system library: libc_rt_wasm.a... (this will be cached in "C:\Users\sekai\.emscripten_cache\wasm-obj\libc_rt_wasm.a" for subsequent builds) cache:INFO: - ok cache:INFO: generating system library: libsockets.a... (this will be cached in "C:\Users\sekai\.emscripten_cache\wasm-obj\libsockets.a" for subsequent builds) cache:INFO: - ok D:\Code\rust-emscripten-test>node a.out.js Hello world! ``` ``` rustc 1.40.0 (73528e339 2019-12-16) binary: rustc commit-hash: 73528e339aae0f17a15ffa49a8ac608f50c6cf14 commit-date: 2019-12-16 host: x86_64-pc-windows-msvc release: 1.40.0 LLVM version: 9.0 ``` ``` emcc (Emscripten gcc/clang-like replacement + linker emulating GNU ld) 1.39.5 clang version 10.0.0 (Cswircachegitchromium.googlesource.com-external-github.com-llvm-llvm--project be2b7ea89ab43d6827634fbdbbd2661e1f242527) Target: x86_64-pc-windows-msvc Thread model: posix InstalledDir: D:/toolchain/emsdk/upstream/bin shared:INFO: (Emscripten: Running sanity checks) ``` verbose output: ``` D:\Code\rust-emscripten-test>cargo build --target=wasm32-unknown-emscripten --verbose Compiling rust-emscripten-test v0.1.0 (D:\Code\rust-emscripten-test) Running `rustc --edition=2018 --crate-name rust_emscripten_test src\main.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C debuginfo=2 -C metadata=0017e6a98f95d3ef --out-dir D:\Code\rust-emscripten-test\target\wasm32-unknown-emscripten\debug\deps --target wasm32-unknown-emscripten -C incremental=D:\Code\rust-emscripten-test\target\wasm32-unknown-emscripten\debug\incremental -L dependency=D:\Code\rust-emscripten-test\target\wasm32-unknown-emscripten\debug\deps -L dependency=D:\Code\rust-emscripten-test\target\debug\deps` error: linking with `emcc.bat` failed: exit code: 1 | = note: "cmd" "/c" "emcc.bat" "-s" "DISABLE_EXCEPTION_CATCHING=0" "-L" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib" "D:\\Code\\rust-emscripten-test\\target\\wasm32-unknown-emscripten\\debug\\deps\\rust_emscripten_test.1bjuck14l0ffwfns.rcgu.o" "D:\\Code\\rust-emscripten-test\\target\\wasm32-unknown-emscripten\\debug\\deps\\rust_emscripten_test.1q3di4gz2b9t8zn5.rcgu.o" "D:\\Code\\rust-emscripten-test\\target\\wasm32-unknown-emscripten\\debug\\deps\\rust_emscripten_test.1ykwen4cd5q90e52.rcgu.o" "D:\\Code\\rust-emscripten-test\\target\\wasm32-unknown-emscripten\\debug\\deps\\rust_emscripten_test.4ossifeikpvnv8oq.rcgu.o" "D:\\Code\\rust-emscripten-test\\target\\wasm32-unknown-emscripten\\debug\\deps\\rust_emscripten_test.56kwdmqbw2cm8id5.rcgu.o" "D:\\Code\\rust-emscripten-test\\target\\wasm32-unknown-emscripten\\debug\\deps\\rust_emscripten_test.5gq8h1mxltrihvjq.rcgu.o" "-o" "D:\\Code\\rust-emscripten-test\\target\\wasm32-unknown-emscripten\\debug\\deps\\rust_emscripten_test.js" "-s" "EXPORTED_FUNCTIONS=[\"_main\",\"_rust_eh_personality\"]" "D:\\Code\\rust-emscripten-test\\target\\wasm32-unknown-emscripten\\debug\\deps\\rust_emscripten_test.41vpw4plt3ujpvww.rcgu.o" "-O0" "--memory-init-file" "0" "-g4" "-s" "DEFAULT_LIBRARY_FUNCS_TO_INCLUDE=[]" "-L" "D:\\Code\\rust-emscripten-test\\target\\wasm32-unknown-emscripten\\debug\\deps" "-L" "D:\\Code\\rust-emscripten-test\\target\\debug\\deps" "-L" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib\\libstd-b6414ae168385702.rlib" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib\\libpanic_unwind-efbc2c947951b8cc.rlib" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib\\libhashbrown-b177382d9a04ffbe.rlib" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib\\librustc_std_workspace_alloc-ba7d2244d33447d5.rlib" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib\\libbacktrace-39569dc87e4ea301.rlib" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib\\librustc_demangle-f83165e777dccb8d.rlib" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib\\libunwind-10b085de263b1750.rlib" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib\\libcfg_if-9a4a22edf44da957.rlib" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib\\liblibc-68fabc677efa98de.rlib" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib\\liballoc-026dc0061b48e8b6.rlib" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib\\librustc_std_workspace_core-7bf75bb619341145.rlib" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib\\libcore-ef54709e300503ed.rlib" "C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib\\libcompiler_builtins-4ed27d8420cb4abc.rlib" "-l" "c" "-s" "ERROR_ON_UNDEFINED_SYMBOLS=1" "-s" "ASSERTIONS=1" "-s" "ABORTING_MALLOC=0" "-Wl,--fatal-warnings" = note: shared:WARNING: ignoring unsupported linker flag: `--fatal-warnings` no symbols D:/toolchain/emsdk/upstream/bin\llvm-nm.exe: error: C:\Users\sekai\.rustup\toolchains\stable-x86_64-pc-windows-msvc\lib\rustlib\wasm32-unknown-emscripten\lib\libpanic_unwind-efbc2c947951b8cc.rlib(rust.metadata.bin) The end of the file was unexpectedly encountered Traceback (most recent call last): File "D:\toolchain\emsdk\upstream\emscripten\emcc.py", line 3748, in <module> sys.exit(run(sys.argv)) File "D:\toolchain\emsdk\upstream\emscripten\emcc.py", line 1993, in run ensure_archive_index(input_file) File "D:\toolchain\emsdk\upstream\emscripten\emcc.py", line 476, in ensure_archive_index stdout = run_process([shared.LLVM_NM, '--print-armap', archive_file], stdout=PIPE).stdout File "D:\toolchain\emsdk\upstream\emscripten\tools\shared.py", line 195, in run_process result.check_returncode() File "D:\toolchain\emsdk\upstream\emscripten\tools\shared.py", line 168, in check_returncode raise Py2CalledProcessError(returncode=self.returncode, cmd=self.args, output=self.stdout, stderr=self.stderr) tools.shared.Py2CalledProcessError: Command '['D:/toolchain/emsdk/upstream/bin\\llvm-nm.exe', '--print-armap', 'C:\\Users\\sekai\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\wasm32-unknown-emscripten\\lib\\libpanic_unwind-efbc2c947951b8cc.rlib']' returned non-zero exit status 1 error: aborting due to previous error error: could not compile `rust-emscripten-test`. Caused by: process didn't exit successfully: `rustc --edition=2018 --crate-name rust_emscripten_test src\main.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C debuginfo=2 -C metadata=0017e6a98f95d3ef --out-dir D:\Code\rust-emscripten-test\target\wasm32-unknown-emscripten\debug\deps --target wasm32-unknown-emscripten -C incremental=D:\Code\rust-emscripten-test\target\wasm32-unknown-emscripten\debug\incremental -L dependency=D:\Code\rust-emscripten-test\target\wasm32-unknown-emscripten\debug\deps -L dependency=D:\Code\rust-emscripten-test\target\debug\deps` (exit code: 1) ```
O-windows,O-wasm,C-bug,O-emscripten
low
Critical
548,547,958
godot
RichTextLabel Forced focus_mode when selection_enabled is active
**Godot version:** Godot Mono 3.2 Beta 2 **OS/device including version:** Manjaro Arch Linux **Issue description:** RichTextLabel is forced into acting like having a `focus_mode` of All regardless of `focus_mode` property when `selection_enabled` is set to true. If this is intended behavior, I'll be willing to submit an issue to the docs on the subject, as it should at least be documented. **Steps to reproduce:** 1. Create a new project with a scene containing only a RichTextLabel 2. Set the RichTextLabel's `focus_mode` to None and `selection_enabled` to true 3. Play game and click on the RichTextLabel
discussion,topic:gui
low
Minor
548,562,597
godot
Racy construct in Ref<>::unref could lead to invalid memory accesses
**Godot version:** Tag: `3.1.2-stable` **OS/device including version:** Any multi-threaded environment. **Issue description:** I assume the reader is familiar with issues of data races. The effect of races is that they may cause rare crashes. I was compelled to study this after playing a game I was enjoying, but found it crashed after 30m-1h of gameplay. As in #32081 (Data races when running Godot), the thread sanitizer highlights a number of problematic constructs. Consider the following sequence involving two threads on an object. Initial state: refcount is 2. Step | Thread 1 | Thread 2 ------------ |------------ | ------------- 1 | [Call `Ref<>::unref()`](https://github.com/godotengine/godot/blob/0587df4aa5f2977350cc80b1522cdc1e483c4515/core/reference.h#L262) | - 2 | [Enter `Reference::unreference()`](https://github.com/godotengine/godot/blob/0587df4aa5f2977350cc80b1522cdc1e483c4515/core/reference.cpp#L85) | - 3 | Set [`die = false` and `refcount-- == 1`](https://github.com/godotengine/godot/blob/0587df4aa5f2977350cc80b1522cdc1e483c4515/core/reference.cpp#L87) | - 4 | (thread suspends, e.g. [after executing line 87](https://github.com/godotengine/godot/blob/0587df4aa5f2977350cc80b1522cdc1e483c4515/core/reference.cpp#L87), as can happen for all sorts of reasons at any point in the code at the whim of the CPU or operating system) | (thread wakes up) 5 | - | Call `Ref<>::unref()` 6 | - | Progress all the way through the unreferencing 7 | - | `die = true`, `refcount-- == 0`, [enter `memdelete()`](https://github.com/godotengine/godot/blob/0587df4aa5f2977350cc80b1522cdc1e483c4515/core/reference.h#L267) 8 | - | Object is deleted, it's no longer valid to access members of the `Ref<>`. 9 | - | e.g. Thread goes on and allocates new stuff in the space of the old `Ref<>`. 10 | (thread resumes) | - 11 | [`refcount.get() <= 1`](https://github.com/godotengine/godot/blob/0587df4aa5f2977350cc80b1522cdc1e483c4515/core/reference.cpp#L89) is true | - 12 | Due to step 8, all subsequent uses of `this` are undefined behaviour and can cause arbitrary memory corruption | - 13 | For example, [`get_script_instance()`](https://github.com/godotengine/godot/blob/0587df4aa5f2977350cc80b1522cdc1e483c4515/core/reference.cpp#L90) accesses a [`member variable`](https://github.com/godotengine/godot/blob/0587df4aa5f2977350cc80b1522cdc1e483c4515/core/object.h#L685) of the ref, but the ref has been deleted and replaced with other content in timestep step 7. This sequence of events is very unlikely in any given case, but it can happen, and is not valid. If my interpretation and understanding above is correct, it could manifest in rare and difficult to reproduce crashes. I also want to tip my hat towards this comment in the code, which I think is indicative that it is known that this construct may be responsible for crashes, but the reasons haven't yet been pinpointed. What I have described above could be one such a cause for these crashes (but no doubt there maybe other issues hiding around this construct). https://github.com/godotengine/godot/blob/0587df4aa5f2977350cc80b1522cdc1e483c4515/core/reference.h#L262-L267 **Steps to reproduce:** Study code, think, and be aware of issues relating to reference counts, threading and race conditions. **What might a fix look like?** Presumably this condition: https://github.com/godotengine/godot/blob/0587df4aa5f2977350cc80b1522cdc1e483c4515/core/reference.cpp#L89 ... is here because scripts may hold one of the references, and it needs to be notified. The exact intent from the comments is opaque to me. Reading the code alone it is very difficult for me to convince myself that it works as intended, given that there may be multiple threads executing in parallel. I think some it would be useful to discuss the relationship between these objects, and what purpose notifying the script has. What follows are some thoughts on this side. It seems that once `unref()` has been called, one should not do any more member accesses. One way to avoid this would be to do the member accesses before calling `unref()`. The API at the moment involves feeding the whole object into e.g. [`CSharpLanguage::refcount_incremented_instance_binding`](https://github.com/godotengine/godot/blob/0587df4aa5f2977350cc80b1522cdc1e483c4515/modules/mono/csharp_script.cpp#L1219-L1221), which it uses to query the refcount (something that should be determined once, atomically, along with the unref, throughout the whole process); it is also used to obtain the associated [script binding `get_script_instance_binding`](https://github.com/godotengine/godot/blob/0587df4aa5f2977350cc80b1522cdc1e483c4515/modules/mono/csharp_script.cpp#L1227). I think these things could be stored up-front, then do the unref, then communicate to the managed side that the unmanaged side has gone, but without referring to unmanaged objects. Something which makes this hard to analyse, I think, is that the refcount is effectively being used to store two pieces of overlapping information. 1) Is there a managed side to deal with, 2) the refcount. It might make sense to disentangle these things. But care must be taken to only update all of the pieces of state consistently and atomically (e.g. using a mutex). One final thought, an "obvious" solution is just to shove a mutex member variable around [`Reference::unreference`](https://github.com/godotengine/godot/blob/0587df4aa5f2977350cc80b1522cdc1e483c4515/core/reference.cpp#L86) so that only one unreference operation can take place per object at once. This too would make things a bit easier to reason about. But I think there are deeper issues surrounding the way this is written, and shoving a mutex in feels like a band-aid, compared to fixing issues such as multiple accesses to `refcount.get()`, which may be inconsistent and racy in a multi-threaded environment.
bug,topic:core,crash
low
Critical
548,566,468
flutter
Gradient with transparent colors is displayed incorrectly
See an example, please: https://dartpad.dev/ca37cbc0053cab2e9f4d050c85a42d93 The colors between the stops look too dark. Compare it with HTML where gradients work as expected: https://gistpreview.github.io/?a57d7165d47845ec045847c34b3df18e https://gist.github.com/t-artikov/a57d7165d47845ec045847c34b3df18e I believe, the problem is how Flutter takes transparency into account when interpolating colors. See https://github.com/flutter/flutter/issues/48534 for more info. Flutter version: 1.12.13+hotfix.5
engine,c: API break,has reproducible steps,P2,found in release: 3.3,found in release: 3.7,team-engine,triaged-engine
low
Major
548,572,482
pytorch
Batch convolutional layer with 5d weight tensor that is not contiguous
## 🚀 Feature Given a batch of images, having a shape (b, c, h, w). Given a batch of weight tensors, concatenated together with shape (b, out_features, in_features, kernel_height, kernel_width) which is not contiguous (can not view as (b * out_features, in_features, kernel_height, kernel_width) without copying). Perform a convolution that uses each 4d weight tensor to convolve the corresponding 3d image. torch.conv2d with parameter groups=b can be used to solve the problem when the 5d weight tensor is contiguous. See https://github.com/pytorch/pytorch/issues/17983 . ## Motivation For example, if one want to calculate the Jacobian matrix (i.e. the gradient with respect to parameters for each input in a batch), he can first create a 5d weight tensor using torch.expand() efficiently, then perform batch convolutional layer, and finally backpropagate. In such case, weight tensor is not contiguous. For another application, consider an encoder-decoder network. If an encoder layer shares the same convolutional kernel with the decoder layer, then the weight tensor of the encoder layer is the transpose of the decoder layer, thus not contiguous. ## Alternatives Of course one can use torch.conv2d with group parameter groups=b. However, reshaping the 5d tensor to 4d (b * out_features, in_features, kernel_height, kernel_width) is needed. If the tensor is not contiguous, it will involve a copy operation which is really time consuming. ## Additional context For implementing batch convolutional layer using conv2d with group, see https://github.com/pytorch/pytorch/issues/17983 .
feature,triaged
low
Minor
548,605,662
excalidraw
Suggestion - create a GatsbyJS transformer
Great tool ! Thanks for publishing this. Given the JSON document describes a diagram, it would be great to include these diagrams as PNGs in a static page built with Gatsby. A GatsbyJS transformer could transform nodes with a special MIME type to PNG image nodes.
enhancement,help wanted
low
Major
548,612,820
flutter
Framework color lerping logic assumes it can always use Color.lerp
For instance, ColorTween takes a Color, which could be an HSVColor or HSLColor, which, have their own lerping algorithms and may be not precisely compatible with `Color.lerp`. See also https://github.com/flutter/flutter/issues/48534
framework,a: animation,P2,team-framework,triaged-framework
low
Minor
548,626,750
godot
Some details that affect the interactive experience
1.Ignore if this is for the convenience of setting the default tab.When godot is opened, the leftmost panel defaults to the leftmost tab, which is usually the scene panel, but if the user accidentally swaps the position of the scene tab and the resource import tab, after godot starts, it will choose the default import tab. I don't think users generally think that this is related to the order of tabs, so it will cause confusion(like me 😔). 2.If the user switches between two or more different scenes,when the user switches tabs, if the 3d tab is selected, the editor will automatically switch to the 2d tab.The other 3 tags don't have this problem.
usability
low
Minor
548,629,537
rust
Export low-level common interfaces for mutex, condvar, etc.
I'd like to work directly with `std::sys_common` mutex and condvar types. Is there any way to do this short of a custom rustc build with a modified standard library?
T-libs-api,C-feature-request
low
Major
548,637,142
scrcpy
Wake the computer from the android or even prevent it to fall in sleep mode
Hello, first of all, very good job ! For me, the main goal is to use "scrcpy" in order to show documents when i am making a demo at work. For example, showing a map or a picture on a bigger screen. I searched the forum "issues" and found several results about caffeinate etc ... But my goal is exactly the opposite. I want to prevent the computer to fall into sleep mode, without sacrificing the security and battery life when on a laptop. Or better, be able to wake it thanks to some action on the phone. In addition, when using any secure method like pasword input for session logging, it would be great to input the password on the phone but, without seeing it on the computers screen. (because of the visual keyboard).
feature request
low
Minor
548,646,273
TypeScript
Type definition for what `for await` takes
I haven't found this request on the current issues so I'm opening one. ## Search Terms "for await" asynchronous generators ## Suggestion If `for await` can take both an `Iterable` and an `AsyncIterable` then I'd like a type alias ``` type ForAwaitable<T> = Iterable<T> | AsyncIterable<T>; // or maybe ForAwaitable<T, U = T> = Iterable<T> | AsyncIterable<U>; ``` Better names are welcome. <!-- A summary of what you'd like to see added or changed --> ## Use Cases ``` type ForAwaitable<T> = Iterable<T> | AsyncIterable<T>; async function foo(chunks: ForAwaitable<Buffer>): Promise<void> { for await (const chunk of chunks) { // ... } } await foo(someReadableStream); await foo(inMemoryBufferArray); ``` Looking at https://tc39.es/proposal-async-iteration/#sec-createasyncfromsynciterator and after a test, if an object has both fields `Symbol.asyncIterator` and `Symbol.iterator` then the former takes precedence, but that use case should rarely happen. ## Checklist My suggestion meets these guidelines: * [x] This wouldn't be a breaking change in existing TypeScript/JavaScript code * [x] This wouldn't change the runtime behavior of existing JavaScript code * [x] This could be implemented without emitting different JS based on the types of the expressions * [x] This isn't a runtime feature (e.g. library functionality, non-ECMAScript syntax with JavaScript output, etc.) * [x] This feature would agree with the rest of [TypeScript's Design Goals](https://github.com/Microsoft/TypeScript/wiki/TypeScript-Design-Goals).
Suggestion,Awaiting More Feedback
low
Minor
548,737,507
pytorch
logsumexp with subtraction
## 🚀 Feature scikit's implementation of logsumexp accepts a supplemental array of scaling factors that allow for subtraction instead of just addition. https://docs.scipy.org/doc/scipy-0.19.0/reference/generated/scipy.misc.logsumexp.html ## Motivation I'm doing work with log probabilities and need to subtract some likelihoods from each other. Currently I have to move to linear probabilities first. ## Pitch If logsumexp is operating over a dimension of size N, accept an additional tensor of size (N,) of scaling factors, to match the functionality in scikit https://docs.scipy.org/doc/scipy-0.19.0/reference/generated/scipy.misc.logsumexp.html ## Alternatives subtraction of probabilities in linear space, but this has numerical stability issues obviously.
feature,triaged,module: reductions
low
Major
548,775,457
pytorch
torch.gt ge lt le
## 🐛 Bug The output of `torch.gt` looks wrong! `sum(torch.gt(0.12)) < sum(torch.gt(0.14)) ` Does the torch.gt (thr) function get elements in the tensor that are larger than thr? ![image](https://user-images.githubusercontent.com/21007783/72240967-84051380-3620-11ea-950f-c1ac15b6d9e5.png) I saved this [tensor](https://drive.google.com/open?id=1OcsUP32vMHJUVCVcs9gmeEufYohOCZSx) - PyTorch Version (1.1.0): - OS (Ubuntu18.04): - How you installed PyTorch (`conda`, `pip`, source):pip - Python version:3.6 - CUDA/cuDNN version:10 cc @ezyang @gchanan @zou3519
triaged,module: type promotion
low
Critical
548,796,844
opencv
Run Converted .pb model by using OpenCV's DNN Module
Hello, i have generated a .h5 model by using https://github.com/matterport/Mask_RCNN code. Then, i have converted the .h5 model to .pb by using https://github.com/bendangnuksung/mrcnn_serving_ready code. After that, to generate .pbtxt file, i am trying to use https://github.com/opencv/opencv/blob/master/samples/dnn/tf_text_graph_mask_rcnn.py code. I am getting following error: > Traceback (most recent call last): File "tf_text_graph_mask_rcnn.py", line 86, in <module> assert(graph_def.node[0].op == 'Placeholder') IndexError: list index out of range I am getting same error, even if i create sorted_graph by using following code: import tensorflow as tf from tensorflow.tools.graph_transforms import TransformGraph with tf.gfile.FastGFile('C:/Users/Dell/Desktop/learnopencv-master/learnopencv-master/Mask-RCNN/IG/mask_frozen_graph.pb ', 'rb') as f: graph_def = tf.GraphDef() graph_def.ParseFromString(f.read()) graph_def = TransformGraph(graph_def, ['image_tensor'], ['detection_boxes', 'detection_classes', 'detection_scores', 'num_detections'], ['sort_by_execution_order']) with tf.gfile.FastGFile('sorted_mask_inference_graph.pb', 'wb') as f: f.write(graph_def.SerializeToString()) After i have tried all of these, i have tested with OpenCV's dnn module the generated .pb file with a previosly working .pbtxt file i am getting following error: > File "mask_rcnn.py", line 108, in <module> net = cv.dnn.readNetFromTensorflow(modelWeights, textGraph); cv2.error: OpenCV(4.1.2) C:\projects\opencv-python\opencv\modules\dnn\src\tensorflow\tf_importer.cpp:1583: error: (-2:Unspecified error) Input layer not found: Preprocessor/mul/x in function 'cv::dnn::dnn4_v20190902::`anonymous-namespace'::TFImporter::populateNet' graph.pbtxt is working .pbtxt file, mask_frozen_graph.pb is converted from mask_rcnn_signal_0040.h5 file, NucleusConfig.txt is configuration file that is used for training MatterPort's code, pipeline__.config is trying to use for generate .pbtxt with tf_text_graph_mask_rcnn.py, at the atteched Drive link: https://drive.google.com/open?id=1kNDP09h8ykHWcYSIs_g-1f3-khfXD544 I am waiting for your help. I want to run MatterPort's model with OpenCV dnn module. I do not want to use Tensorflow OD API, because I'm not sure to get as successful as the matterport's model and also I am not sure how should i create training folder structure.
feature,category: dnn
low
Critical
548,831,996
flutter
Make height/width optional for `SizedOverflowBox`
It would be convenient if `SizedOverflowBox` would allow only height or only width to be specified, like is the case for `SizedBox`.
framework,c: proposal,P3,team-framework,triaged-framework
low
Minor
548,859,548
go
x/net/ipv4: missing error handling in the Header.Marshal method
In the ipv4.Header.Marshal method, the code does not handle the possible error returned by h.Src.To4(). On the other hand, the possible error returned by h.Dst.To4() is handled correctly. Another small issue is that the slice returned by To4() is still sliced (`ip[:net.IPv4len]`); this is unnecessary. See https://github.com/golang/net/blob/master/ipv4/header.go#L92
NeedsInvestigation
low
Critical
548,889,643
flutter
Incoorporate AllowMultipleGestureRecognizer functionality in GestureDetector
## Use case Apps run into situations where overlapping widgets need to respond to gestures, e.g.: a calendar app, which is able to both drag calendar items, as well as scroll through a list of those same calendar items. ## Proposal Currently the only way I am able to get this functionality is through "AllowMultipleGestureRecognizer" (see: https://www.davidanaya.io/flutter/combine-multiple-gestures.html). I find this method rather complex, and requiring a lot of boilerplate code. If it is possible to incorporate this into the basic functionality of a GestureDetector, it would make things a lot easier in my opinion.
framework,f: gestures,c: proposal,P3,team-framework,triaged-framework
low
Minor
548,919,723
flutter
CustomScrollView doesn't affect WebView internal scrolling
**Background:** I tried using CustomScrollView to integrate an "endless content" in a WebView underneath my "native Flutter Widgets UI". In my case the "native" content will usually also be scrollable (not exclusively ListView & PageView). - I've set up an arbitrary height for the WebView, hoping the Sliver approach would control inner content scrolling. - I used SliverToBoxAdapter to wrap around the WebView. See sample code: [listview_webview_screen.txt](https://github.com/flutter/flutter/files/4053573/listview_webview_screen.txt) **Problem:** This resulted in WebView content is not scrolling at all, seems that CustomScrollView doesn't recognise web content as it would native content. It makes a lot of sense but is there any baked solution in Flutter? **I also tried:** - Replacing the Sliver type around the WebView to SliverFillRemaining and SliverFillViewPort: WebView was not showing, just a blank white area. **Finally:** - I do understand WebView content is not drawn/calculated the same way as "native" UI (Be it Flutter Widgets, Android/iOS views). But do feel the power of an SDK is to bridge these very gaps. - We do have a patched up/over complex attempt at solving this (incl. custom GestureRecognizers, simple math calculations & scroll switching flags. You can see it [pressing this link](https://github.com/flutter/flutter/issues/48708), under "Our Current Hybrid Solution": - In the issue bellow and in issues mentioned in our "Current Hybrid Solution" post, other programmers report encountering very similar issues. Similar Issue: #31243
framework,f: scrolling,p: webview,customer: product,package,team-ecosystem,has reproducible steps,P3,found in release: 2.2,found in release: 2.5,triaged-ecosystem
low
Major
548,935,056
godot
Node2D::set_scale hack to prevent 0 scale should be reviewed
**Godot version:** 3.2 master (087ffc8b) `Node2D::set_scale()` has a hack to prevent setting the scale to 0, which would lead to some errors being raised, likely in various places (to be defined), but at least in `Transform2D::affine_invert`. https://github.com/godotengine/godot/blob/087ffc8b5aafafba8fbb17d0689c0ceb88baa27a/scene/2d/node_2d.cpp#L175-L180 https://github.com/godotengine/godot/blob/087ffc8b5aafafba8fbb17d0689c0ceb88baa27a/core/math/transform_2d.cpp#L47-L53 The `Node2D` hack was added back in 2014 in ed6d9463d26, but without explanations. With #35073, I applied the same logic for `Control::set_scale` and `Light2D::set_texture_scale` to avoid similar errors in `affine_invert`. As discussed with @reduz, we should review this code for 4.0 and hopefully do away with the hack, and instead ensure that we can properly support a scale of 0 without errors. If anything, the hack could be moved downstream so that only the transform is affected but not the scale property. BTW `Spatial` should in theory suffer from similar issues but seems not to (or no longer to, there used to be bug reports about 3D nodes too), so it might have been fixed differently there.
enhancement,discussion,topic:core,topic:2d
low
Critical
548,954,668
animate.css
[feature request] Configurable magnitude
It would be cool if there were a helper class to determine the magnitude of the motion, this could be very useful for smaller elements!
feature request,v5,under consideration
medium
Major
548,990,325
pytorch
Improve cuda OOM message
This is based on https://github.com/pytorch/pytorch/issues/31497 (after the last messages with @albanD and @ezyang) Condensed, I had a script there that printed: ```python print('memory_allocated', torch.cuda.memory_allocated() / 1e9, 'memory_cached', torch.cuda.memory_cached() / 1e9) ``` in a model eval loop. And at some point it got an OOM: ``` memory_allocated 9.7478528 memory_cached 22.013804544 memory_allocated 11.03991552 memory_cached 24.29550592 RuntimeError: CUDA out of memory. Tried to allocate 152.00 MiB (GPU 0; 31.72 GiB total capacity; 24.89 GiB already allocated; 6.12 MiB free; 30.70 GiB reserved in total by PyTorch) ``` Some things: 1. `torch.cuda.memory_allocated()` of 11Gb is not reported in OOM message 2. Terminology discrepancy: `torch.cuda.memory_cached` seems to be equivalent to "already allocated" from OOM message. In presence of also existing `torch.cuda.memory_allocated` this is confusing. Probably the OOM message should also say `cached`. Otherwise, it's pretty easy to mix up allocated, cached, reserved. 3. It would be nice for the OOM message to include by default a small glossary/explainer explaining all these various memory counters. Related: my previous issue about feature request of adding by default some measure of fragmentation: https://github.com/pytorch/pytorch/issues/29554, my old issue about allocator stats https://github.com/pytorch/pytorch/issues/1529. Recently there were a few reports of default allocator causing problems with very varying batch sizes (myself included). To confirm the guess, it would be nice to have an easily interpretable allocator state visualization / dump (super cool would be to have a way to dump an HTML vis). Currently there exists `torch.cuda.memory_stats`, `torch.cuda.memory_usage` and `torch.cuda.memory_snapshot`. It would be nice to have some default advice on what to save / use when debugging for suspected fragmentation. In addition, they are not searchable for whatever reason: https://pytorch.org/docs/master/search.html?q=memory_usage&check_keywords=yes&area=default# cc @ngimel @jlin27 @mruberry
module: docs,module: bootcamp,module: cuda,triaged
low
Critical
549,057,513
pytorch
TensorRT: CheckDims() need adjustment for EXPLICIT_BATCH?
## 🐛 Bug I'm trying to get TensorRT v7 to work with PyTorch 1.3.1. Starting with the 1.3.1 release branch, I: - cherry-picked https://github.com/pytorch/pytorch/commit/1e2049c56676646932473456bfb6db547648e9a6 for TRT v6 support - brought the onnx-tensorrt submodule forward to https://github.com/onnx/onnx-tensorrt/commit/84b5be1d6fc03564f2c0dba85a2ee75bad242c2e for TRT v7 support With those changes, the ONNX model parsing tests in `caffe2/python/trt/test_trt.py` fail with: ``` RuntimeError: [enforce fail at tensorrt_op_trt.cc:25] . Mismatched dimensions between TRT input (5) and C2 input (4) ``` Which is coming from `CheckDims()`: https://github.com/pytorch/pytorch/blob/master/caffe2/contrib/tensorrt/tensorrt_op_trt.cc#L19 With a simple TRT python program I find: - TRT v6 / no-`EXPLICIT_BATCH`: `engine.get_binding_shape(0) = (3, 224, 224)` - TRT v7 / with-`EXPLICIT_BATCH`: `engine.get_binding_shape(0) = (1, 3, 224, 224)` It looks to me like `EXPLICIT_BATCH` is doing what its name suggests and including the batch-size dimension. And so maybe `CheckDims()` needs to be sensitive to the TRT version (or use of `EXPLICIT_BATCH`) as in the other code paths adjusted by 1e2049c56676646932473456bfb6db547648e9a6 Maybe @drnikolaev could comment? ## To Reproduce Steps to reproduce the behavior: 1. Clone the 1.3.1 source 1. Cherry-pick https://github.com/pytorch/pytorch/commit/1e2049c56676646932473456bfb6db547648e9a6 1. Update onnx-tensorrt submodule to https://github.com/onnx/onnx-tensorrt/commit/84b5be1d6fc03564f2c0dba85a2ee75bad242c2e 1. Build 1. `python -m mytest test_trt.py` ## Expected behavior ONNX parser tests in `test_trt.py` should pass ## Environment - PyTorch Version (e.g., 1.0): 1.3.1 - OS (e.g., Linux): RHEL 7.7 - How you installed PyTorch (`conda`, `pip`, source): built from source - Build command you used (if compiling from source): see above - Python version: 3.6.9 - CUDA/cuDNN version: CUDA 10.2, cuDNN 7.6.5 - GPU models and configuration: V100 - Any other relevant information: See above, TensorRT 7.0.0.11
caffe2,triaged
low
Critical
549,097,685
opencv
Julia Bindings for OpenCV
## Bindings and Tests for the Julia Language * Author: Archit Rungta / @archit120 * Link: [Raised Issue](https://github.com/opencv/opencv/issues/16233) * Status: **Draft** * Platforms: **All** * Complexity: 2-3 Man-Months ## Introduction and Rationale Julia is a popular dynamic language used for scientific and numerical computing, with performance comparable to traditional statically-typed languages. It has powerful libraries for many different tasks such as FluxMl and Zygote. However, the JuliaImages library lacks a lot of functionality. There are two existing OpenCV wrappers: https://github.com/JuliaOpenCV and https://github.com/maxruby/OpenCV.jl. Both of these do not work with current version of Julia and have been abandoned for multiple years now. The only way of using OpenCV from Julia right now is to call the Python bindings for OpenCV using PyCall.jl This is aimed at creating bindings for Julia which are similar in scope and ease-of-use to OpenCV's Python bindings. Furthermore, test files similar to Python should be created. ## Proposed solution The solution is to build wrapping for Julia similar to how they are constructed for Python. Ref [1]. Julia has a library CxxWrap.jl which provides the needed functionality of creating Julia wrappers in C++ This wrapper will then call the C++ OpenCV code. All functionality of OpenCV would then be exposed to be called from Julia code. ## Impact on existing code, compatibility The changes will not affect any other part of OpenCV's functionality. A seperate folder for Julia bindings will contain all the related code. Only a flag for make configuration has to be added which can be off by default. ## Possible alternatives Julia supports an alternative form of wrapping using Cxx.jl Unlike CxxWrap this requires wrapper code to be written in Julia. Another alternative is to build the Julia bindings on top of Python. This method, however, is not as preferable because of extra dependencies and overheads. ## References 1. [Description of How Python Bindings Work](https://docs.opencv.org/4.1.0/da/d49/tutorial_py_bindings_basics.html) 2. [Some Work on CxxWrap based binding](https://github.com/clynamen/opencv)
GSoC
low
Major
549,108,755
go
os: please clarify the purpose of Process.Release method
### What version of Go are you using (`go version`)? <pre> go version go1.13.5 linux/amd64 </pre> ### Does this issue reproduce with the latest release? Yes indeed. ### What operating system and processor architecture are you using (`go env`)? linux on amd64 ### What did you do? Run the code below: <pre> package main import ( "fmt" "os/exec" "time" ) func main() { p := exec.Command("/usr/bin/yes") if err := p.Start(); err != nil { panic(err) } if err := p.Process.Kill(); err != nil { panic(err) } fmt.Println("yes is now a zombie process") time.Sleep(10 * time.Second) if err := p.Process.Release(); err != nil { panic(err) } fmt.Println("yes remains a zombie process") time.Sleep(10 * time.Second) } </pre> ### What did you expect to see? The documentation of [Process.Release](https://golang.org/pkg/os/#Process.Release) states: ``` Release releases any resources associated with the Process p, rendering it unusable in the future. Release only needs to be called if Wait is not. ``` It leaves a false impression that caller should invoke `Release()` if the caller does not intend to consume the process exit status - "... only needs to be called if Wait is not", even though doing so leaves a zombie process on the system. Please clarify that `Release()` is not intended to replace `Wait()` at all in the function's description.
Documentation,help wanted,NeedsFix
low
Minor
549,117,517
material-ui
[Select] Keyboard navigation doesn't work on Firefox with NVDA enabled
<!-- Provide a general summary of the issue in the Title above --> <!-- Thank you very much for contributing to Material-UI by creating an issue! ❤️ To avoid duplicate issues we ask you to check off the following list. --> <!-- Checked checkbox should look like this: [x] --> - [x] The issue is present in the latest release. - [x] I have searched the [issues](https://github.com/mui-org/material-ui/issues) of this repository and believe that this is not a duplicate. ## Current Behavior 😯 <!-- Describe what happens instead of the expected behavior. --> On Firefox, with NVDA enabled, if a menu item has been selected the up and down arrow keys will no longer navigate through the menu items. (In some circumstances navigation prior to a selection isn't possible, and only the first option can be chosen) ## Expected Behavior 🤔 <!-- Describe what should happen. --> After selecting a menu item, keyboard navigation should be able to switch between menu items. ## Steps to Reproduce 🕹 <!-- Provide a link to a live example (you can use codesandbox.io) and an unambiguous set of steps to reproduce this bug. Include code to reproduce, if relevant (which it most likely is). This codesandbox.io template _may_ be a good starting point: https://codesandbox.io/s/github/mui-org/material-ui/tree/master/examples/create-react-app If you're using typescript a better starting point would be https://codesandbox.io/s/github/mui-org/material-ui/tree/master/examples/create-react-app-with-typescript If YOU DO NOT take time to provide a codesandbox.io reproduction, should the COMMUNITY take time to help you? --> Issue can be reproduced on the select component page: https://material-ui.com/components/selects/ NVDA download here: https://www.nvaccess.org/download/ Steps: 0. On a windows machine install and enable NVDA, open Firefox 1. Using Tab to navigate, hover the select component 2. Use Enter to open the menu 3. With the Up and Down arrow keys navigate between the menu options (If a selection has already been made and is not just a placeholder, the issue can be seen here) 4. Select an option with Enter 5. Use Enter to open the menu again, the arrow keys are no longer able to navigate between menu items ## Context 🔦 <!-- What are you trying to accomplish? How has this issue affected you? Providing context helps us come up with a solution that is most useful in the real world. --> This impacts the accessibility of anything using a select component. ## Your Environment 🌎 <!-- Include as many relevant details about the environment with which you experienced the bug. If you encounter issues with typescript please include version and tsconfig. --> | Tech | Version | | ----------- | ------- | | Material-UI | v4.3.1 | | React | v16.8.0 | | Browser | Firefox |
accessibility,component: select
medium
Critical
549,131,816
pytorch
Inconsistent linking flags result in error when building lib/libc10_cuda.so
## 🐛 Bug Relevant portion of the output from "python setup.py build": [346/2990] Linking CXX shared library lib/libc10_cuda.so FAILED: lib/libc10_cuda.so : && /opt/apps/gcc/8.3.0/bin/g++ -fPIC -Wno-deprecated -fvisibility-inlines-hidden -fopenmp -DUSE_FBGEMM -DUSE_QNNPACK -DUSE_PYTORCH_QNNPACK -O2 -fPIC -Wno-narrowing -Wall -Wextra -Wno-missing-field-initializers -Wno-type-limits -Wno-array-bounds -Wno-unknown-pragmas -Wno-sign-compare -Wno-unused-parameter -Wno-unused-variable -Wno-unused-function -Wno-unused-result -Wno-strict-overflow -Wno-strict-aliasing -Wno-error=deprecated-declarations -Wno-stringop-overflow -Wno-error=pedantic -Wno-error=redundant-decls -Wno-error=old-style-cast -fdiagnostics-color=always -faligned-new -Wno-unused-but-set-variable -Wno-maybe-uninitialized -fno-math-errno -fno-trapping-math -Wno-stringop-overflow -O3 -Wl,--no-as-needed -rdynamic -shared -Wl,-soname,libc10_cuda.so -o lib/libc10_cuda.so c10/cuda/CMakeFiles/c10_cuda.dir/CUDAStream.cpp.o c10/cuda/CMakeFiles/c10_cuda.dir/CUDACachingAllocator.cpp.o c10/cuda/CMakeFiles/c10_cuda.dir/impl/CUDAGuardImpl.cpp.o c10/cuda/CMakeFiles/c10_cuda.dir/impl/CUDATest.cpp.o -Wl,-rpath,/export/repositories/pytorch-admix/BUILD/pytorch-cuda_1.4.0.a0_python3.8.0-1.4.0.a0/pytorch-1.4.0.a0/build/lib: -lcudart lib/libc10.so && : /usr/bin/ld: cannot find -lcudart The earlier output from the above build command lists configuration found by cmake for cuda as expected and as provided by the environment: -- USE_CUDA : 1 -- CUDA static link : OFF -- USE_CUDNN : 1 -- CUDA version : 10.1 -- cuDNN version : 7.6.4 -- CUDA root directory : /opt/apps/cuda/10.1.243 -- CUDA library : /opt/apps/cuda/10.1.243/lib64/stubs/libcuda.so -- cudart library : /opt/apps/cuda/10.1.243/lib64/libcudart.so -- cublas library : /opt/apps/cuda/10.1.243/lib64/libcublas.so -- cufft library : /opt/apps/cuda/10.1.243/lib64/libcufft.so -- curand library : /opt/apps/cuda/10.1.243/lib64 Build flags set: export USE_CUDA=1 USE_CUDNN=1 export USE_MKLDNN=1 USE_MKLDNN_CBLAS=1 export USE_FFMPEG=1 Environment. I am building from source without conda, on CentOS 7.6. Environment is set with modules and includes CUDA_HOME, LD_LIBRARY_PATH, CPPFLAGS, LDFLAGS which all list expected locations of installed cuda, ffmpeg, fftw, cudnn. PyTorch version: 1.4.0a0+36d17f4 OS: CentOS Linux release 7.6.1810 (Core) GCC version: (GCC) 8.3.0 CMake version: version 3.12.3 Python version: 3.8 CUDA runtime version: 10.1.243 cuDNN version: /usr/lib64/libcudnn.so.7.6.4 numpy==1.17.2 After cmake configuration in generated build.ninja file the settings for building shared library are: # ============================================================================= # Link build statements for SHARED_LIBRARY target c10_cuda ############################################# # Link the shared library lib/libc10_cuda.so build lib/libc10_cuda.so: CXX_SHARED_LIBRARY_LINKER__c10_cuda c10/cuda/CMakeFiles/c10_cuda.dir/CUDAStream.cpp.o c10/cuda/CMakeFiles/c10_cuda.dir/CUDACachingAllocator.cpp.o c10/cuda/CMakeFiles/c10_cuda.dir/impl/CUDAGuardImpl.cpp.o c10/cuda/CMakeFiles/c10_cuda.dir/impl/CUDATest.cpp.o | /opt/apps/cuda/10.1.243/lib64/libcudart.so lib/libc10.so || lib/libc10.so LANGUAGE_COMPILE_FLAGS = -Wno-deprecated -fvisibility-inlines-hidden -fopenmp -DUSE_FBGEMM -DUSE_QNNPACK -DUSE_PYTORCH_QNNPACK -O2 -fPIC -Wno-narrowing -Wall -Wextra -Wno-missing-field-initializers -Wno-type-limits -Wno-array-bounds -Wno-unknown-pragmas -Wno-sign-compare -Wno-unused-parameter -Wno-unused-variable -Wno-unused-function -Wno-unused-result -Wno-strict-overflow -Wno-strict-aliasing -Wno-error=deprecated-declarations -Wno-stringop-overflow -Wno-error=pedantic -Wno-error=redundant-decls -Wno-error=old-style-cast -fdiagnostics-color=always -faligned-new -Wno-unused-but-set-variable -Wno-maybe-uninitialized -fno-math-errno -fno-trapping-math -Wno-stringop-overflow -O3 LINK_FLAGS = -Wl,--no-as-needed -rdynamic LINK_LIBRARIES = -Wl,-rpath,/export/repositories/pytorch-admix/BUILD/pytorch-cuda_1.4.0.a0_python3.8.0-1.4.0.a0/pytorch-1.4.0.a0/build/lib: -lcudart lib/libc10.so OBJECT_DIR = c10/cuda/CMakeFiles/c10_cuda.dir POST_BUILD = : PRE_LINK = : SONAME = libc10_cuda.so SONAME_FLAG = -Wl,-soname, TARGET_FILE = lib/libc10_cuda.so It looks like while libcudart.so is found by cmake configure process, its location is not passed correctly during the compile stage and per this build.ninja snippet the compilation fails. My LDFLAGS variable is set to include cuda and compiler libraries: LDFLAGS=-L/opt/apps/cuda/10.1.243/lib64 -Wl,-rpath,/opt/apps/cuda/10.1.243/lib64 -L/opt/apps/cuda/10.1.243/nvvm/lib64 -Wl,-rpath,/opt/apps/cuda/10.1.243/nvvm/lib64 -L/opt/apps/cuda/10.1.243/cublas/lib64 -Wl,-rpath,/opt/apps/cuda/10.1.243/cublas/lib64 -L/opt/apps/cuda/10.1.243/extras/CUPTI/lib64/lib64 -Wl,-rpath,/opt/apps/cuda/10.1.243/extras/CUPTI/lib64/lib64 -L/opt/apps/cuda/10.1.243/extras/Debugger/lib64/lib64 -Wl,-rpath,/opt/apps/cuda/10.1.243/extras/Debugger/lib64/lib64 -L/opt/apps/fftw/3.3.8/lib -Wl,-rpath,/opt/apps/fftw/3.3.8/lib -L/opt/intel/compilers_and_libraries_2019.5.281/linux/tbb/lib/intel64 -L/opt/intel/compilers_and_libraries_2019.5.281/linux/compiler/lib/intel64 -L/opt/intel/compilers_and_libraries_2019.5.281/linux/mkl/lib/intel64 -L/opt/apps/gcc/8.3.0/lib64 -Wl,-rpath,/opt/apps/gcc/8.3.0/lib64 But it looks like LDFLAGS variable is not taken into account. Both LD_LIBRARY_PATH and LIBRARY_PATH are set to include cuda libraries as well. Per compile from source docs or setup.py, I don't see any other variables that need to be set. Please advise what changes are needed to compile pytorch with cuda from source. I have cpu only pytorch version compiled successfully using the same settings (minus cuda). cc @ngimel
module: build,module: cuda,triaged
low
Critical
549,139,119
godot
RID constructor mismatched types
**Godot version:** 3.2 beta 6 **Issue description:** The RID constructor takes an Object, but generates an error saying "No constructor of RID(Object). Documentation says RID creates an ID for a Resource. However, passing a typed resource also creates the same error. Maybe the docs should be updated if this is intended behaviour, because it is not clear how and what the RID object is for. **Steps to reproduce:** ![Godot_v3 2-beta6_win64_YFWiwukEfd](https://user-images.githubusercontent.com/15088582/72286050-a3ae3300-3644-11ea-9b36-8c6613e4eff4.png) ![Godot_v3 2-beta6_win64_PvgHueZedI](https://user-images.githubusercontent.com/15088582/72286055-a6108d00-3644-11ea-805c-eab3faecd29c.png) **Minimal reproduction project:** [RID bug.zip](https://github.com/godotengine/godot/files/4055435/RID.bug.zip)
bug,topic:gdscript
low
Critical
549,148,786
terminal
Feature request: Dynamic settings attribute(s) toggle
<!-- 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨 I ACKNOWLEDGE THE FOLLOWING BEFORE PROCEEDING: 1. If I delete this entire template and go my own path, the core team may close my issue without further explanation or engagement. 2. If I list multiple bugs/concerns in this one issue, the core team may close my issue without further explanation or engagement. 3. If I write an issue that has many duplicates, the core team may close my issue without further explanation or engagement (and without necessarily spending time to find the exact duplicate ID number). 4. If I leave the title incomplete when filing the issue, the core team may close my issue without further explanation or engagement. 5. If I file something completely blank in the body, the core team may close my issue without further explanation or engagement. All good? Then proceed! --> # Description of the new feature/enhancement Recently, a few issues have popped up expressing an interest in a feature which could support the dynamic switching of the colors and styling settings attributes of an open `Profile`. The following settings attributes could be made to support dynamic switching: - `colorScheme` (if nothing else this is a must support) - `foreground` - `background` - `backgroundImage` - `fontSize` - `fontFace` - `requestedTheme` Issues which are related to this generic feature request: - #4176, supporting switching to a presentation mode - #4066, supporting switching between light/dark `colorScheme`/theme - #3687, supporting switching between `colorScheme`s (this one wants different `colorScheme` per tab, rather than all tabs of a certain profile) <!-- A clear and concise description of what the problem is that the new feature would solve. Describe why and how a user would use this new functionality (if applicable). --> # Proposed technical implementation details (optional) It would make sense to implement the switching trigger as a shortcut key binding which changes the present tab's `colorScheme` to a preset scheme. When the `colorScheme` has been switched and the shortcut key is pressed again it could return to the default scheme for the tab's profile. Potentially this shortcut key could be bound to switch not only the `colorScheme` but also other settings attributes as well (like `fontSize`). The return to default behavior could be applied to all the switched attributes. <!-- A clear and concise description of what you want to happen. -->
Issue-Feature,Area-Extensibility,Product-Terminal
low
Critical
549,151,003
storybook
CSS breaks syntax highlighting in Storybook docs
**Describe the bug** The CSS from the Gentellela (a bootstrap admin template) overides the .tags and pre/code css selectors which breaks the syntax highlighting in storybook docs. gentellela include in `preview-head.html` ```html <link href="https://cdnjs.cloudflare.com/ajax/libs/gentelella/1.4.0/css/custom.min.css" rel="stylesheet"> ``` **Screenshots** If applicable, add screenshots to help explain your problem. ![image](https://user-images.githubusercontent.com/10500823/72287490-261efe80-3615-11ea-9690-e9ccfcd13155.png) ![image](https://user-images.githubusercontent.com/10500823/72289388-025db780-3619-11ea-92e0-860a74017994.png) **Potential Solution** use hash classes instead of 'tag' 'text' etc... ![image](https://user-images.githubusercontent.com/10500823/72287866-d260e500-3615-11ea-88c9-dcf62b70f30a.png) **System:** Please paste the results of `npx -p @storybook/cli@next sb info` here. ``` Environment Info: System: OS: Linux 5.0 Debian GNU/Linux 9 (stretch) 9 (stretch) CPU: (4) x64 Intel(R) Core(TM) i5-7400 CPU @ 3.00GHz Binaries: Node: 11.15.0 - /usr/bin/node npm: 6.7.0 - /usr/bin/npm npmPackages: @storybook/addon-a11y: ^5.2.8 => 5.2.8 @storybook/addon-docs: ^5.3.0-rc.1 => 5.3.0-rc.1 @storybook/addon-storyshots: ^5.2.8 => 5.2.0 ``` Thank you for storybook :heart: , :smile: :cat:
bug,compatibility with other tools,theming,addon: docs
low
Critical
549,160,283
terminal
Pull conhost measurements with low/no future relevancy
After a meeting with the data team, we decided to pull a bunch of the interactivity measurements from `conhost.exe` that we're not planning on using ever again (primarily because Terminal is becoming/has become the face of user interactivity so we don't need to really measure how people are interacting with conhost.exe anymore to make a decision.) This represents walking through the events and pulling them. We're still planning on leaving events that may influence feature decisions in the new Terminal (or help us identify people who cannot complete their workflow in Terminal and are stuck on `conhost.exe`.)
Product-Conhost,Issue-Task,Area-Quality,Gathering-Data
low
Minor
549,164,276
flutter
Please copy the description in the generated web/manifest.json from pubspec.yaml
In the `web/manifest.json` that is generated by `flutter create`, please copy the description from `pubspec.yaml`. /cc @RedBrogdon
c: new feature,tool,platform-web,P2,team-web,triaged-web
low
Minor
549,170,037
go
proposal: net/http: add accessor for number of listeners and connections
Hi, running a http/server it would be helpfully to know the count of listeners and connections, for monitoring reasons. The server already has the fields **listeners** and **activeConn**. What about adding methods like _GetCurrentListenersCount_ and _GetActiveConnectionsCount_?
Proposal,FeatureRequest
low
Minor
549,195,457
pytorch
Idempotency Keys for RPC Retry
Implement Idempotency Keys to ensure we can safely retry RPC's with functions that aren't idempotent (such as RPC's from user code like UDF's). These keys must also be flushed at some regular time intervals (otherwise this may use far too much memory). Parent Issue: #32119 cc @pietern @mrshenli @pritamdamania87 @zhaojuanmao @satgera @gqchen @aazzolini @rohan-varma @xush6528 @jjlilley @osalpekar
triaged,module: rpc
low
Minor
549,197,566
TypeScript
`inherit` keyword as shorthand to refer to super class fields and methods.
## Search Terms Inherit, inheritance, type inference, subclass, superclass, override, ## Suggestion This issue addresses the lack of easy way to refer to types of fields or methods of a base class or implemented interfaces without a high amount of repetition. Proposed is a keyword `inherit` which will act as a type alias which is contextually resolved for the corresponding type of the base class. A simpler way to understand this proposal is to think of it as a solution to #10570 by offering an explicit but convenient way to refer to the base class, let us look at a typical example: ```typescript abstract class Geometry { public abstract model: "square" | "circle"; } class Canvas extends Geometry { // initially set to square but still allow to change to circle later. public model = "square"; // ERROR ^ Type 'string' is not assignable to type '"square" | "circle"' } ``` In this case we want to preserve the same type for field `model` from the class `Geometry`. the most obvious solution is to rewrite `"square" | "circle"` but we can do a little better by instead using `Geometry["model"]` to allow for changes in the base class to propagate automatically. ```typescript class Canvas extends Geometry { public model: Geometry["model"] = "square"; // This way we explicitly inherit the same type as base class. } ``` This is better but still requires us to refer to the base class and rewrite the field name for each field initialized in this way. The proposed solution is to add a keyword `inherit` which will use the base class and the field name to resolve to the appropriate type. ```typescript class Canvas extends Geometry { public model: inherit = "square"; // This would be equivalent to above example using Geometry["model"] } ``` Here is an [example playground](https://www.typescriptlang.org/play/index.html#code/C4TwDgpgBAYgrgOwMZQLxQBQDocEMBOA5gM4BcUuCIA2gLoCUaAfBVQNwBQHA9N1IQEsAbhARQEcALYAjCPigB7AGbiF+SbgA2UMAVySIwOcSiyla6MAAW0fBGLAdeg0fwAaKNYEnBIk9ehcMDB8BRCBXCNPcGhzeQCoOwcnfH1DOSwePgC7KEkBQitHWQooAHdcEE8FKAATCCUBBEsrb0SIJDh8YmEITSrpOEc41TKoAUc2hQR+8r7tesbm2qgRgAZqqAAWCiIpUWBiTN5FHLLvFra7YC6EE1woB3wmwigkaYdKRwgADzBNXBNF5QTQCfLASICabjMRg-4QAwICHAKEITKgSBQADihgASvZgAAFZwAHhgUF+RgQtRM8GQHkJFJ+VJp4iksnwLHQjMpolZGwA-LAmSyTBhsHgiGQYUo5FAAIL0VBMSggRhC+VQcjNET4DhQA1aqA85l8kwARigQvJvOpYowPzW5FVHhwWAIJHITVl8kVzFYaqtCqNOrk+sN5BNoqgACYgzbTXbMA6nQGPD9zc6qK7JZ6ZXK-cqA+rg9qILrwwbIyKzVAAMzxmtJ8WOrMgdOZtNQH4x0guqBuj3S70FxhF1UlzVliuGo1R2s7a1N1kt1P9jNt9O99d1vvZge54cIH0KscsCdBqficth2fkABEuIAogBlAAqxvluPlAFkn2+n1xF8oAAeQAOQAGQATSgABJH9CQgp8-zAgCABFYBA3EoAAVUZN8QO2Y1cVgrCFVxLEcJQt8X3vLgMWgABpCAQGIEClB-QwrAUGkSQAIVwYgIDfGIuSgABvKBqEYmEoAAaxY5QoAEoSRMgWhyBU4SYmk2hl1pRAUCFGTpzlABfagFJAJStLUiBaE4bgAConP1Jy6gRD5gFSFFoSU7ixgSAADJobGeYAgvkliyjUFYYrgTQ4rUOSKBMGL8Dk4FzmsJl-gEJAJmiTEPX2JEjjcqAAAFdFSSRlME7TMQAWhhVwhKQXyxCU216hWaQGreAFiHuakKE0bQ4U0BEDggFYmlcJRcCQewKuq5xYAEPoVhahJGi28Q0kUeQXG4lYEEO2RgTgITaiwcYVEJBQTDaBAFEce8YE2xL708VoTEka7HDABR5s2B4Tp4zIoHctbauNJ6oBa6ZoGUUgKtnDHZw+r7ah+kYEgYxQVASRYmlm1YccwRZcASyYVFexxfFEeh0cxzHH0MW48bUX7bE5-AxEJpSEgh2pWbZrHiVq7n5AeGq0lcInebyLieMwWDah+R5IAKvaTGBnpOpZ6GJfZ-EHBl0okiB5x0nkCV3SlegoZh+W6o1rWWrKGwxEe56THvKX9B+rx-eVg2JlRJWEjdu2PHF03yh9+Gw45i3fraNoEgkGQ5SU2O2tMBoLGV62UgVjI3O4DhCdCuQJn4hq7I8T79p6sU-f0zBA+cH6AB8oA5m4Bf7wfzeAe8S2Y1j2M46weOIRvVNEo0rJspuYnoNxKxTrvsa20ee+lqAB6HrmT7HgkfvQffvu32cPa7jBO-bweg8kQ-x5+oUc45EMb3wGOa8M5DRiRfomVkt9cZBlsjpVuiVaA700hvSA1B4G1D0q-OkSAd5CnAdGM+I8gz4mHggOyS9GoQDQTjWgTAkG71fkfYOQZ3520XrA1B6DaHUA9ogu8DCIEBy-kGHEwBx7vwoXZahW1aAeA9nQ-hoZ5AnCQANb2choCdxem9RQzRo42CIkgbi+UVqKIAWwKAKi1FhWgBwqhXDxgmAZqUJQhlOqrB5sjfR0AjEg2Wv4KwkR2gAEc4ACFyA8VxyBOpcFifNOQi1lr1SEhJHee1EranZHITgs5zAKAwLgTJud3CmHIE8F49ByDSAUAoKalAcmGn6vgApRSOQeGkGU7yLwPBIAFG2Sppgal1IQJwMyXAkBDRMC+OA0hxiSHhIiQ4yToDiTSTjL0CAwoNy0h4e86TcZiXNA0g0eSWkwi2cAChuy8n3l2e-W5UA1hMHaRsi5VzB43Lub3Dw5omADLruFd5eyakPMIQge8LBVkS2uLcTw+A4AQGOVAMZs4mlnIBdshquymmgvuR4J5OYsDW1efXS5OzB44t2V-H5fySWAvJfeSll9SEQtSdC-mgt4WIp3mMsZWRygCHGhSfAoR5DQn2QEoJBBoDONJssXRpgBoTMEsQGuMQ4JgQAGryggrBNClp0AYrJVij5EBBW412egiFjk+CEEMCiBArwC7GA8GXN2HgeYwoFkVPmoTwlqsxLBLVOq9VxkNZs0lQL9m4u+VAX5HAgA) where I define `inherit` as a type alias where the arguments could be gained automatically from the context of where it is used. This would also support being used in method parameters and return types which would be equivalent to using `Parameters` and `ReturnType` where appropriate. For example each of these 3 declarations would be equivelent to the following comment ```typescript class WithInherit extends Base { a: inherit; // a: Base["a"] b: Readonly<inherit>; // note that we can also compose it with other types // b: Readonly<Base["b"]> foo(param: inherit): inherit {} // foo(param: Parameters<Base["foo"]>[0]): ReturnType<Base["foo"]>{} } ``` This would also address #2000 with additional capability, if all parameters and return type use `inherit` it will ensure the call signature exactly matches the super class. except without forcing redefining it and allowing extensions like `Readonly<inherit>` shown above or `"fly" | inherit` shown below. ## Use Cases and Examples ### Composition The proposed keyword would not be required to use alone but could be used like any other type alias. This means that further additions to the original type can be done such as `Partial<inherit>` or similar. Consider this example where we want to override a method `doAction` to accept additional kinds of parameters: ```typescript class FlyingRobot extends Robot { doAction(action: inherit | "fly"){ // type of input is either "fly" or something the base class supports if(action == "fly"){ // support our case return this.fly() } else { // any other value must be valid to base class since we used inherit. return super.doAction(action); } } fly(){} } ``` This allows us to support an obvious variation of the type defined by the base class and can be easily understood and written without even looking at the original declaration of `Robot[“doAction”]`. ### Interfaces and Multiple Implementations In the event that a class implements several interfaces, `inherit` will look up fields on an intersection of the base class (if present) and all implemented interfaces: ```typescript class Foo extends Base implements A, B { a: inherit; // resolves to (Base & A & B)["a"] } ``` For cases where multiple interfaces would define the same method or field `inherit` would resolve to the intersection of all necessary values, or in the case of method overrides resolve only to the last method to remain consistent with `Parameters` and similar constructs. ### Constraints, Valid and Invalid Uses. The `inherit` keyword only makes sense inside a class that either extends another class and/or implements at least one interface. If there is no base class then an error should be raised. As well the `inherit` keyword would only be applicable in one of the following positions: - Instance field - Getter return value - Setter parameter - Method parameter - Method rest parameter - Method return value For parameters and return types, if the corresponding field on the base class is not a function then a compile error should be thrown. Either with a very similar message to the one thrown by `Parameters<0>` or one more specific like “cannot inherit parameter when super field “foo” is not a function”. For rest parameters, `inherit` should be equivalent to a `extends / infer` statement with the same number of other parameters as specified, with all other types set to `any` for the inference. So if the function is written like `foo(a: number, b: string, …rest: inherit)` the inherit would resolve like this: `Base[“foo”] extends (a:any, b:any, ...rest: infer T)=>any ? T : never`. And the `never` there would never be used since if `Base[“foo”]` is not a function then a compile error is thrown. Any other case even where `Base[“foo”]` takes only 1 parameter will still give valid results for the rest parameter. Note that for fields initialized to arrow functions, it is not valid to use `inherit` in the parameters or return type of the arrow function. Instead the full field can use `inherit` then the parameters will be inferred using normal means: [Playground Link](https://www.typescriptlang.org/play/index.html#code/JYOwLgpgTgZghgYwgAgEJwM4oN4ChkHIwD2xAFHAFzIZhSgDmANMgEbUgCuAtq9AJTUAbsWAATANy4AvrgD0c5GAAWwDMjXIxEGKAhiaxJcrhhjKAA4AbOAE8GUYpxAGA7sCtXkCYtwseUUGQAZgA6AHZcMFsLQJBlaGAzAF5kCmpaehBmNg4ePih+ZGSAPmQRcSlcBBsMdQBRAA84PytA1ohuCHB1dCxkPEJkBWQ4UZc2ZASoFBMhFBUFmP1RzjBfU2AEOE9bUbrgBhAV1kwV4hBzJWXkBmB5kHxCEmJqUGmk4rS4FlYi0oG0ik0iAA) ```typescript class Example implements Base { // a and b here are automatically typed when `inherit` resolves to a valid function type. this is nothing new. foo: inherit = (a, b) => {}; } ``` ### Cases that don’t work Methods with several overloads and methods with generics are 2 cases where the currently existing `Parameters` and similar construct cannot fully capture the information. This proposal would suggest that no additional work be done to let `inherit` do any extra work in these cases but does recognize that that would be possible in the future. This means that if a method has a generic the `inherit` keyword will only use the constraint without preserving the generic. Similarly when a method has several overloads `inherit` will only use the type specified in the last overload which without specifying the other necessary call signatures is not valid. ## Checklist My suggestion meets these guidelines: * [x] This wouldn't be a breaking change in existing TypeScript/JavaScript code `*` * [x] This wouldn't change the runtime behavior of existing JavaScript code * [x] This could be implemented without emitting different JS based on the types of the expressions * [x] This isn't a runtime feature (e.g. library functionality, non-ECMAScript syntax with JavaScript output, etc.) * [x] This feature would agree with the rest of [TypeScript's Design Goals](https://github.com/Microsoft/TypeScript/wiki/TypeScript-Design-Goals). `*` in order to not break any existing code that may use a type alias called `inherit`, this would need to allow the keyword to be shadowed similar to other built in names.
Suggestion,In Discussion
medium
Critical
549,201,741
PowerToys
Make windows Acrylic / Transparent
# Summary of the new feature/enhancement It would be so awesome (if not necessarily easy to code) to be able to select areas of ANY application that you wanted to make acrylic. Example: "Acrylicize" Outlook so that everything but the list of messages and the message frame was transparent with a blurred background to help focus the user on what matters (just the next evolution from using the dark theme with it). # Proposed technical implementation details Such a PowerToy would allow: 1. Selecting an app 1. Selecting one or more areas to modify 1. Seting transparency, blur, tint, and/or other visual effects to be applied to the objects seen through those elements, possibly with some presets like "Windows Acrylic", of course 1. Selecting what the transparent areas reveal: 1. The applications beneath it (the way Windows does such things currently) 1. The desktop background (act as if applications beneath it do not exist) 1. The applications beneath it when not maximized and the desktop background when maximized (I suggest this be the default because it's awesome) 1. Enabling/disabling per app (and remember settings while disabled) 1. Resetting settings per app (to go back to defaults in case things get weird) 1. Changes to be saved across application close/open and system restarts, of course. 1. Starting automatically with Windows as a service, etc. A user should never have to draw areas that should be affected but rather select existing window elements both on classic/legacy applications and UWP apps, just as developers are currently used to doing when using "developer mode" on all modern browsers. This will obviously cause some serious redraw and possibly some performance issues, so there should probably be warnings to that effect.
Idea-New PowerToy
medium
Major
549,205,424
flutter
Ensure Android embedding v2 works with Dart callback registration
An issue was found with the `android_alarm_manager` that exposed the following detail about the v2 Android embedding: > The plugin was attempting to perform the callback lookup before an instance of FlutterEngine was created. However, the callback cache isn't populated until FlutterMain::Init is called, so we querying an empty map resulting in a failed lookup. We should probably check that the cache has actually been initialized when a lookup request has been issued and then throw or assert after outputting a message stating that a FlutterEngine instance must be created before performing a callback lookup. As reported here: https://github.com/flutter/flutter/issues/47406 This ticket is to work with @bkonyi to determine what, if anything, should be altered in the v2 embedding to help Dart callback registration play nice with the v2 embedding.
platform-android,engine,P2,team-android,triaged-android
low
Critical
549,206,007
pytorch
Slighty out of tolerance for `test_mv` and `test_cholesky_solve_batched_cuda_float64`
## 🐛 Bug <!-- A clear and concise description of what the bug is. --> Seeing these two failures when running `test/test_torch.py` ``` ====================================================================== FAIL: test_mv (__main__.TestTorch) ---------------------------------------------------------------------- Traceback (most recent call last): File "test_torch.py", line 848, in test_mv _test_mv(torch.randn(100, 100, dtype=torch.float32), torch.randn(100, dtype=torch.float32)) File "test_torch.py", line 846, in _test_mv self.assertEqual(res1, res2) File "/home/jenkins/pytorch/test/common_utils.py", line 859, in assertEqual assertTensorsEqual(x, y) File "/home/jenkins/pytorch/test/common_utils.py", line 829, in assertTensorsEqual self.assertLessEqual(max_err, prec, message) AssertionError: tensor(1.0014e-05) not less than or equal to 1e-05 : ====================================================================== FAIL: test_cholesky_solve_batched_cuda_float64 (__main__.TestTorchDeviceTypeCUDA) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/jenkins/pytorch/test/common_utils.py", line 678, in wrapper method(*args, **kwargs) File "/home/jenkins/pytorch/test/common_device_type.py", line 197, in instantiated_test result = test(self, device_arg, dtype) File "/home/jenkins/pytorch/test/common_device_type.py", line 337, in dep_fn return fn(slf, device, *args, **kwargs) File "/home/jenkins/pytorch/test/common_device_type.py", line 337, in dep_fn return fn(slf, device, *args, **kwargs) File "test_torch.py", line 7518, in test_cholesky_solve_batched cholesky_solve_batch_helper((5, batchsize), (batchsize, 5, 10), upper) File "test_torch.py", line 7515, in cholesky_solve_batch_helper self.assertLessEqual(b.dist(torch.matmul(A, x_act)), 2e-12) # Correctness check AssertionError: tensor(2.0572e-12, device='cuda:0', dtype=torch.float64) not less than or equal to 2e-12 ``` ## To Reproduce Steps to reproduce the behavior: 1. Build from source on ppc64le 2. Run `test/test_torch.py` <!-- If you have a code sample, error messages, stack traces, please provide it here as well --> ## Expected behavior The tests should pass ## Environment Please copy and paste the output from our PyTorch version: N/A Is debug build: N/A CUDA used to build PyTorch: N/A OS: Ubuntu 18.04.2 LTS GCC version: (Ubuntu 7.3.0-27ubuntu1~18.04) 7.3.0 CMake version: Could not collect Python version: 2.7 Is CUDA available: N/A CUDA runtime version: Could not collect GPU models and configuration: GPU 0: Tesla V100-SXM2-16GB GPU 1: Tesla V100-SXM2-16GB GPU 2: Tesla V100-SXM2-16GB GPU 3: Tesla V100-SXM2-16GB Nvidia driver version: 440.33.01 cuDNN version: Could not collect ## Additional context I'm with IBM and we have a bunch of Power systems we can test things out on if you guys have suggestions
module: tests,triaged
low
Critical
549,211,187
create-react-app
Build a CLI interface for `react-scripts`
### Is your proposal related to a problem? Currently, `react-scripts` is just a simple "script", with almost zero arguments/flags. ``` $ yarn run react-scripts Unknown script "undefined". $ yarn run react-scripts --help Unknown script "--help". ``` This can cause 1. Make users confusing without `--help` 2. Difficult to add more features. For example, I want to build my project with a NODE_ENV value different than "production". With a CLI interface, I can use something like `vue-cli-service build --env test` to present this feature. A complete CLI interface can solve these issues. ### Describe the solution you'd like <!-- Provide a clear and concise description of what you want to happen. --> Maybe we can choose a famous npm package to implement it. [commander](https://github.com/tj/commander.js) for example, who has already been installed by `react-scripts`: `react-scripts` > `html-webpack-plugin` > `html-minifier` > `commander` And of course, there are many other options in the JS world. ### Describe alternatives you've considered <!-- Let us know about other solutions you've tried or researched. --> N/A ### Additional context <!-- Is there anything else you can add about the proposal? You might want to link to related issues here, if you haven't already. --> N/A
issue: proposal,needs triage
low
Minor
549,218,283
pytorch
torch.nn.functional.normalize epsilon too small for half precision
`torch.nn.functional.normalize` uses an epsilon of 1e-12. This value is too small for half precision and gets evaluated as zero (`torch.HalfTensor([1e-12]) == 0`). This causes nans in half precision when the norm is evaluated as zero. This should be fixable by increasing the epsilon to 1e-6. cc @albanD @mruberry
module: numerical-stability,module: nn,triaged,module: half,module: norms and normalization
low
Minor
549,220,190
flutter
"flutter build ios-framework" version check for generating podspec should happen during command validation
## Steps to Reproduce 1. Check master channel of Flutter. Make sure it's not tagged by a version (dev, beta, etc). 1. In an add-to-app Flutter module, run: ``` flutter build ios-framework --xcframework --cocoapods --no-universal --output=/Users/m/Projects/MyApp/Flutter ``` **Expected results:** <!-- what did you want to see? --> Fail immediately: ``` $flutter build ios-framework --xcframework --cocoapods --no-universal --output=/Users/m/Projects/MyApp/Flutter --cocoapods is only supported on the dev, beta, or stable channels. Detected version is 1.13.9-pre.69 ``` **Actual results:** <!-- what did you see? --> Started building, deleted the output directory, then failed. ``` flutter build ios-framework --xcframework --cocoapods --no-universal --output=/Users/m/Projects/MyApp/Flutter Building framework for com.example.flutterapp in debug mode... ├─Creating Flutter.podspec... 0ms --cocoapods is only supported on the dev, beta, or stable channels. Detected version is 1.13.9-pre.69
platform-ios,tool,a: existing-apps,P3,team-ios,triaged-ios
low
Critical
549,244,299
flutter
Avoid unnecessary syscall to get current time in MessageLoopFuchsia::WakeUp.
[`MessageLoopFuchsia::Wakeup`](https://github.com/flutter/engine/blob/fb526223045198114ee328c25b748b075b07abac/fml/platform/fuchsia/message_loop_fuchsia.cc#L26) is implemented via `async::PostDelayedTask`. This requires the calculation of the delay by requesting the current time (via a syscall) and subtracting that from the target timepoint. That syscall can be avoided by using the target timepoint directly in `async::PostTaskForTime` instead.
customer: fuchsia,engine,platform-fuchsia,P2,team-engine,triaged-engine
low
Major
549,244,888
pytorch
We should change DeprecationWarnings to UserWarnings in 27361
See https://github.com/pytorch/pytorch/pull/27361 This uses DeprecationWarnings, but we usually use UserWarnings because many python versions filter DeprecationWarnings by default, making them pretty much useless.
module: docs,triaged
low
Minor
549,259,632
flutter
`flutter create` doesn't create `fuchsia` directory
We probably would want to guard this behind some flag, but there should be some way to create the necessary meta.cmx etc. via the tool.
c: new feature,tool,platform-fuchsia,P3,team-tool,triaged-tool
low
Minor
549,278,849
pytorch
pin_memory may change the type of instance returned by collate_fn.
## 🐛 Bug <!-- A clear and concise description of what the bug is. --> Setting `pin_memory=True` to dataloader sometimes converts custom classes to native python types. ## To Reproduce I have a class representing batched data, which I inherit from `dict` as follows: ```python class TrainingBatch(dict): def __init__(self, instances: List[TrainingInstance]): # Implement logic equivalent to `collate_fn` here. ... def to(self, *args, **kwargs): # Implement casting and device transfer logic here. ... ``` Hence `collate_fn` simply looks like this: ```python def collate_fn(instances: List[TrainingInstance]) -> TrainingBatch: return TrainingBatch(instances) ``` ### Main issue: I set `pin_memory=True` to the dataloader, and here is what I get: ```python >>> batch = next(iter(dataloader)) >>> type(batch) <class 'dict'> ``` ## Expected behaviour ```python >>> type(batch) <class 'TrainingBatch'> ``` ## Bug: The bug is here: https://github.com/pytorch/pytorch/blob/master/torch/utils/data/_utils/pin_memory.py#L56 This `hasttr(data, "pin_memory")` should be the first condition to be checked, so custom classes can implement their own `pin_memory` method. ## Environment - PyTorch Version (e.g., 1.0): v1.3.1 - OS (e.g., Linux): Linux - How you installed PyTorch (`conda`, `pip`, source): `conda` - Build command you used (if compiling from source): None - Python version: 3.6.8 cc @SsnL
module: dataloader,triaged
low
Critical
549,307,001
godot
Vulkan: GIProbe Reflection does not take sky into account
**Godot version:** Godot 3.2 Beta 5, Godot 4 Vulkan **OS/device including version:** Windows 10 64 bit **Issue description:** When using GIProbe the sky is not taken into account in reflections. This is most visible in metallic chrome surfaces. Godot 3.2 Beta 5 ![Godot32_GIProbe_NoSkyInreflections](https://user-images.githubusercontent.com/11403345/72311432-a57ef300-3652-11ea-9d83-291a3788ae60.PNG) Godot 4 ![Godot4_GIProbe_NoSkyInreflections](https://user-images.githubusercontent.com/11403345/72311441-b0398800-3652-11ea-9975-31c4d0d9cdd8.PNG) **Steps to reproduce:** Add a plane to the scene, add a sphere with a chrome material, and add a GIProbe and bake. **Minimal reproduction project:** [GIProbeSkyReflections.zip](https://github.com/godotengine/godot/files/4057179/GIProbeSkyReflections.zip)
bug,topic:rendering,confirmed,topic:3d
low
Major
549,309,266
react
Bug: I shouldn't own the DOM fixtures website
Some folks at Google are helping us to think through some ideas to help our input code be more sane, and we discovered that our DOM Text Fixtures site (http://react-dom-fixtures.surge.sh) was both: - _Very_ out of date - Owned by me Both seem fixable. However I think a good first start is to figure out a way to publicly host the fixtures where I am not a bottleneck. What do you think? Could we setup a deploy process - maybe with netlify - to deploy the fixtures automatically?
Component: Build Infrastructure,Type: Needs Investigation
low
Critical
549,313,229
TypeScript
Don't escape valid Unicode characters in strings
<!-- 🚨 STOP 🚨 𝗦𝗧𝗢𝗣 🚨 𝑺𝑻𝑶𝑷 🚨 Half of all issues filed here are duplicates, answered in the FAQ, or not appropriate for the bug tracker. Even if you think you've found a *bug*, please read the FAQ first, especially the Common "Bugs" That Aren't Bugs section! Please help us by doing the following steps before logging an issue: * Search: https://github.com/Microsoft/TypeScript/search?type=Issues * Read the FAQ: https://github.com/Microsoft/TypeScript/wiki/FAQ Please fill in the *entire* template below. --> <!-- Please try to reproduce the issue with the latest published version. It may have already been fixed. For npm: `typescript@next` This is also the 'Nightly' version in the playground: http://www.typescriptlang.org/play/?ts=Nightly --> **TypeScript Version:** 3.7.4 **Code** ```ts const sf = createSourceFile( 'aaa', 'const a: string = "哈哈"', ScriptTarget.Latest ) // try to do sth in transfrom. const result = transform(sf, []) const printer = createPrinter() const printed = printer.printNode( EmitHint.SourceFile, result.transformed[0], sf ) console.log(printed) ``` **Expected behavior:** const a: string = "哈哈" **Actual behavior:** const a: string = "\u54C8\u54C8"; I am trying to use compiler api to do some transform. but the Printer seems could not generate the decoded unicode characters. wonder how to do this right?
Bug,Help Wanted,Effort: Difficult
medium
Critical