text1
stringlengths
0
536k
text2
stringlengths
0
536k
label
int64
0
1
<p dir="auto">Hi,</p> <p dir="auto">We have discovered that Celery might be swallowing a raised exception during task discovering, resulting in silently ignoring tasks.</p> <p dir="auto">We run Celery in a Django Project. We run the autodiscover process to fetch all the tasks defined in each one of our tasks.py file in our installed apps packages. We want Celery Beat to fire periodical tasks using Crontab.</p> <p dir="auto">Steps to reproduce :</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# In function.py def add2(number): return number + 2 raise Exception() # In tasks.py from celery import shared_task from . import function @shared_task def add2(number): return function.add2(number) # In settings.py CELERY_BEAT_SCHEDULE = { 'test_tasks': { 'task': 'path.to.task.add2, 'schedule': crontab(hour=0, minute=0) } }"><pre class="notranslate"><code class="notranslate"># In function.py def add2(number): return number + 2 raise Exception() # In tasks.py from celery import shared_task from . import function @shared_task def add2(number): return function.add2(number) # In settings.py CELERY_BEAT_SCHEDULE = { 'test_tasks': { 'task': 'path.to.task.add2, 'schedule': crontab(hour=0, minute=0) } } </code></pre></div> <p dir="auto">I mention that tasks.py is not imported by any other module. It seems to us that when discovering tasks Celery will be the only one trying to import it from a string, so we can’t see the issue happening unless we manually try to import it ; that is actually how we discovered our issue.</p> <p dir="auto">Cheers,<br> Adrien Czerny</p>
<h2 dir="auto">Checklist</h2> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included the output of <code class="notranslate">celery -A proj report</code> in the issue.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have verified that the issue exists against the <code class="notranslate">master</code> branch of Celery.</li> </ul> <h2 dir="auto">Steps to reproduce</h2> <p dir="auto">Import error in django app's tasks.py module causes the import to silently fail, but allows the celery process to otherwise start properly. No warnings or errors are emitted.</p> <p dir="auto">Demo; <a href="https://github.com/pnovotnak/celery/tree/bugreport/silent-exception-django-loader/examples/django">https://github.com/pnovotnak/celery/tree/bugreport/silent-exception-django-loader/examples/django</a></p> <h2 dir="auto">Expected behavior</h2> <p dir="auto">Blow up at load time, or at least emit an error in the logs explaining why some tasks were not loaded.</p> <h2 dir="auto">Actual behavior</h2> <p dir="auto">Nothing is emitted, making determining why tasks are not being loaded an extremely painful experience when it should be trivially easy.</p> <p dir="auto">Against master;</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ celery -A proj worker -l info ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ [email protected] v4.0.2 (latentcall) Darwin-16.5.0-x86_64-i386-64bit 2017-04-18 20:07:55 [config] .&gt; app: proj:0x105e10cc0 .&gt; transport: amqp://guest:**@localhost:5672// .&gt; results: sqlite:///results.sqlite .&gt; concurrency: 8 (prefork) .&gt; task events: OFF (enable -E to monitor tasks in this worker) [queues] .&gt; celery exchange=celery(direct) key=celery [tasks] . proj.celery.debug_task [2017-04-18 20:07:55,450: INFO/MainProcess] Connected to amqp://guest:**@127.0.0.1:5672// [2017-04-18 20:07:55,464: INFO/MainProcess] mingle: searching for neighbors [2017-04-18 20:07:56,499: INFO/MainProcess] mingle: all alone [2017-04-18 20:07:56,514: WARNING/MainProcess] /Users/pnovotnak/Documents/Cyrus/celery/examples/django/env/lib/python3.6/site-packages/celery-4.0.2-py3.6.egg/celery/fixups/django.py:202: UserWarning: Using settings.DEBUG leads to a memory leak, never use this setting in production environments! warnings.warn('Using settings.DEBUG leads to a memory leak, never ' [2017-04-18 20:07:56,514: INFO/MainProcess] [email protected] ready."><pre class="notranslate"><code class="notranslate">$ celery -A proj worker -l info ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ ÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ [email protected] v4.0.2 (latentcall) Darwin-16.5.0-x86_64-i386-64bit 2017-04-18 20:07:55 [config] .&gt; app: proj:0x105e10cc0 .&gt; transport: amqp://guest:**@localhost:5672// .&gt; results: sqlite:///results.sqlite .&gt; concurrency: 8 (prefork) .&gt; task events: OFF (enable -E to monitor tasks in this worker) [queues] .&gt; celery exchange=celery(direct) key=celery [tasks] . proj.celery.debug_task [2017-04-18 20:07:55,450: INFO/MainProcess] Connected to amqp://guest:**@127.0.0.1:5672// [2017-04-18 20:07:55,464: INFO/MainProcess] mingle: searching for neighbors [2017-04-18 20:07:56,499: INFO/MainProcess] mingle: all alone [2017-04-18 20:07:56,514: WARNING/MainProcess] /Users/pnovotnak/Documents/Cyrus/celery/examples/django/env/lib/python3.6/site-packages/celery-4.0.2-py3.6.egg/celery/fixups/django.py:202: UserWarning: Using settings.DEBUG leads to a memory leak, never use this setting in production environments! warnings.warn('Using settings.DEBUG leads to a memory leak, never ' [2017-04-18 20:07:56,514: INFO/MainProcess] [email protected] ready. </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="software -&gt; celery:4.0.2 (latentcall) kombu:4.0.2 py:3.6.1 billiard:3.5.0.2 py-amqp:2.1.4 platform -&gt; system:Darwin arch:64bit imp:CPython loader -&gt; celery.loaders.app.AppLoader settings -&gt; transport:amqp results:db+sqlite:///results.sqlite ABSOLUTE_URL_OVERRIDES: { } ADMINS: () ALLOWED_HOSTS: [] APPEND_SLASH: True AUTHENTICATION_BACKENDS: ['django.contrib.auth.backends.ModelBackend'] AUTH_PASSWORD_VALIDATORS: '********' AUTH_USER_MODEL: 'auth.User' CACHES: { 'default': {'BACKEND': 'django.core.cache.backends.locmem.LocMemCache'}} CACHE_MIDDLEWARE_ALIAS: 'default' CACHE_MIDDLEWARE_KEY_PREFIX: '********' CACHE_MIDDLEWARE_SECONDS: 600 CELERY_ACCEPT_CONTENT: ['json'] CELERY_BROKER_URL: 'amqp://guest:********@localhost:5672//' CELERY_RESULT_BACKEND: 'db+sqlite:///results.sqlite' CELERY_TASK_SERIALIZER: 'json' CSRF_COOKIE_AGE: 31449600 CSRF_COOKIE_DOMAIN: None CSRF_COOKIE_HTTPONLY: False CSRF_COOKIE_NAME: 'csrftoken' CSRF_COOKIE_PATH: '/' CSRF_COOKIE_SECURE: False CSRF_FAILURE_VIEW: 'django.views.csrf.csrf_failure' CSRF_HEADER_NAME: 'HTTP_X_CSRFTOKEN' CSRF_TRUSTED_ORIGINS: [] CSRF_USE_SESSIONS: False DATABASES: { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'HOST': '', 'NAME': 'test.db', 'PASSWORD': '********', 'PORT': '', 'USER': ''}} DATABASE_ROUTERS: '********' DATA_UPLOAD_MAX_MEMORY_SIZE: 2621440 DATA_UPLOAD_MAX_NUMBER_FIELDS: 1000 DATETIME_FORMAT: 'N j, Y, P' DATETIME_INPUT_FORMATS: ['%Y-%m-%d %H:%M:%S', '%Y-%m-%d %H:%M:%S.%f', '%Y-%m-%d %H:%M', '%Y-%m-%d', '%m/%d/%Y %H:%M:%S', '%m/%d/%Y %H:%M:%S.%f', '%m/%d/%Y %H:%M', '%m/%d/%Y', '%m/%d/%y %H:%M:%S', '%m/%d/%y %H:%M:%S.%f', '%m/%d/%y %H:%M', '%m/%d/%y'] DATE_FORMAT: 'N j, Y' DATE_INPUT_FORMATS: ['%Y-%m-%d', '%m/%d/%Y', '%m/%d/%y', '%b %d %Y', '%b %d, %Y', '%d %b %Y', '%d %b, %Y', '%B %d %Y', '%B %d, %Y', '%d %B %Y', '%d %B, %Y'] DEBUG: True DEBUG_PROPAGATE_EXCEPTIONS: False DECIMAL_SEPARATOR: '.' DEFAULT_CHARSET: 'utf-8' DEFAULT_CONTENT_TYPE: 'text/html' DEFAULT_EXCEPTION_REPORTER_FILTER: 'django.views.debug.SafeExceptionReporterFilter' DEFAULT_FILE_STORAGE: 'django.core.files.storage.FileSystemStorage' DEFAULT_FROM_EMAIL: 'webmaster@localhost' DEFAULT_INDEX_TABLESPACE: '' DEFAULT_TABLESPACE: '' DISALLOWED_USER_AGENTS: [] EMAIL_BACKEND: 'django.core.mail.backends.smtp.EmailBackend' EMAIL_HOST: 'localhost' EMAIL_HOST_PASSWORD: '********' EMAIL_HOST_USER: '' EMAIL_PORT: 25 EMAIL_SSL_CERTFILE: None EMAIL_SSL_KEYFILE: '********' EMAIL_SUBJECT_PREFIX: '[Django] ' EMAIL_TIMEOUT: None EMAIL_USE_LOCALTIME: False EMAIL_USE_SSL: False EMAIL_USE_TLS: False FILE_CHARSET: 'utf-8' FILE_UPLOAD_DIRECTORY_PERMISSIONS: None FILE_UPLOAD_HANDLERS: ['django.core.files.uploadhandler.MemoryFileUploadHandler', 'django.core.files.uploadhandler.TemporaryFileUploadHandler'] FILE_UPLOAD_MAX_MEMORY_SIZE: 2621440 FILE_UPLOAD_PERMISSIONS: None FILE_UPLOAD_TEMP_DIR: None FIRST_DAY_OF_WEEK: 0 FIXTURE_DIRS: [] FORCE_SCRIPT_NAME: None FORMAT_MODULE_PATH: None FORM_RENDERER: 'django.forms.renderers.DjangoTemplates' IGNORABLE_404_URLS: [] INSTALLED_APPS: ('django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.messages', 'django.contrib.staticfiles', 'django.contrib.admin', 'demoapp') INTERNAL_IPS: [] LANGUAGES: [('af', 'Afrikaans'), ('ar', 'Arabic'), ('ast', 'Asturian'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('dsb', 'Lower Sorbian'), ('el', 'Greek'), ('en', 'English'), ('en-au', 'Australian English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-co', 'Colombian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy', 'Frisian'), ('ga', 'Irish'), ('gd', 'Scottish Gaelic'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hsb', 'Upper Sorbian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('io', 'Ido'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('mr', 'Marathi'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmål'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-hans', 'Simplified Chinese'), ('zh-hant', 'Traditional Chinese')] LANGUAGES_BIDI: ['he', 'ar', 'fa', 'ur'] LANGUAGE_CODE: 'en-us' LANGUAGE_COOKIE_AGE: None LANGUAGE_COOKIE_DOMAIN: None LANGUAGE_COOKIE_NAME: 'django_language' LANGUAGE_COOKIE_PATH: '/' LOCALE_PATHS: [] LOGGING: { 'disable_existing_loggers': False, 'filters': { 'require_debug_false': { '()': 'django.utils.log.RequireDebugFalse'}}, 'handlers': { 'mail_admins': { 'class': 'django.utils.log.AdminEmailHandler', 'filters': ['require_debug_false'], 'level': 'ERROR'}}, 'loggers': { 'django.request': { 'handlers': ['mail_admins'], 'level': 'ERROR', 'propagate': True}}, 'version': 1} LOGGING_CONFIG: 'logging.config.dictConfig' LOGIN_REDIRECT_URL: '/accounts/profile/' LOGIN_URL: '/accounts/login/' LOGOUT_REDIRECT_URL: None MANAGERS: () MEDIA_ROOT: '' MEDIA_URL: '' MESSAGE_STORAGE: 'django.contrib.messages.storage.fallback.FallbackStorage' MIDDLEWARE: None MIDDLEWARE_CLASSES: ('django.middleware.common.CommonMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware') MIGRATION_MODULES: { } MONTH_DAY_FORMAT: 'F j' NUMBER_GROUPING: 0 PASSWORD_HASHERS: '********' PASSWORD_RESET_TIMEOUT_DAYS: '********' PREPEND_WWW: False ROOT_URLCONF: 'proj.urls' SECRET_KEY: '********' SECURE_BROWSER_XSS_FILTER: False SECURE_CONTENT_TYPE_NOSNIFF: False SECURE_HSTS_INCLUDE_SUBDOMAINS: False SECURE_HSTS_PRELOAD: False SECURE_HSTS_SECONDS: 0 SECURE_PROXY_SSL_HEADER: None SECURE_REDIRECT_EXEMPT: [] SECURE_SSL_HOST: None SECURE_SSL_REDIRECT: False SERVER_EMAIL: 'root@localhost' SESSION_CACHE_ALIAS: 'default' SESSION_COOKIE_AGE: 1209600 SESSION_COOKIE_DOMAIN: None SESSION_COOKIE_HTTPONLY: True SESSION_COOKIE_NAME: 'sessionid' SESSION_COOKIE_PATH: '/' SESSION_COOKIE_SECURE: False SESSION_ENGINE: 'django.contrib.sessions.backends.db' SESSION_EXPIRE_AT_BROWSER_CLOSE: False SESSION_FILE_PATH: None SESSION_SAVE_EVERY_REQUEST: False SESSION_SERIALIZER: 'django.contrib.sessions.serializers.JSONSerializer' SETTINGS_MODULE: 'proj.settings' SHORT_DATETIME_FORMAT: 'm/d/Y P' SHORT_DATE_FORMAT: 'm/d/Y' SIGNING_BACKEND: 'django.core.signing.TimestampSigner' SILENCED_SYSTEM_CHECKS: [] SITE_ID: 1 STATICFILES_DIRS: () STATICFILES_FINDERS: ('django.contrib.staticfiles.finders.FileSystemFinder', 'django.contrib.staticfiles.finders.AppDirectoriesFinder') STATICFILES_STORAGE: 'django.contrib.staticfiles.storage.StaticFilesStorage' STATIC_ROOT: '' STATIC_URL: '/static/' TEMPLATES: [] TEMPLATE_DEBUG: True TEMPLATE_DIRS: () TEMPLATE_LOADERS: ('django.template.loaders.filesystem.Loader', 'django.template.loaders.app_directories.Loader') TEST_NON_SERIALIZED_APPS: [] TEST_RUNNER: 'django.test.runner.DiscoverRunner' THOUSAND_SEPARATOR: ',' TIME_FORMAT: 'P' TIME_INPUT_FORMATS: ['%H:%M:%S', '%H:%M:%S.%f', '%H:%M'] TIME_ZONE: 'America/Chicago' USE_ETAGS: False USE_I18N: True USE_L10N: True USE_THOUSAND_SEPARATOR: False USE_TZ: True USE_X_FORWARDED_HOST: False USE_X_FORWARDED_PORT: False WSGI_APPLICATION: 'proj.wsgi.application' X_FRAME_OPTIONS: 'SAMEORIGIN' YEAR_MONTH_FORMAT: 'F Y' is_overridden: &lt;bound method Settings.is_overridden of &lt;Settings &quot;proj.settings&quot;&gt;&gt;"><pre class="notranslate"><code class="notranslate">software -&gt; celery:4.0.2 (latentcall) kombu:4.0.2 py:3.6.1 billiard:3.5.0.2 py-amqp:2.1.4 platform -&gt; system:Darwin arch:64bit imp:CPython loader -&gt; celery.loaders.app.AppLoader settings -&gt; transport:amqp results:db+sqlite:///results.sqlite ABSOLUTE_URL_OVERRIDES: { } ADMINS: () ALLOWED_HOSTS: [] APPEND_SLASH: True AUTHENTICATION_BACKENDS: ['django.contrib.auth.backends.ModelBackend'] AUTH_PASSWORD_VALIDATORS: '********' AUTH_USER_MODEL: 'auth.User' CACHES: { 'default': {'BACKEND': 'django.core.cache.backends.locmem.LocMemCache'}} CACHE_MIDDLEWARE_ALIAS: 'default' CACHE_MIDDLEWARE_KEY_PREFIX: '********' CACHE_MIDDLEWARE_SECONDS: 600 CELERY_ACCEPT_CONTENT: ['json'] CELERY_BROKER_URL: 'amqp://guest:********@localhost:5672//' CELERY_RESULT_BACKEND: 'db+sqlite:///results.sqlite' CELERY_TASK_SERIALIZER: 'json' CSRF_COOKIE_AGE: 31449600 CSRF_COOKIE_DOMAIN: None CSRF_COOKIE_HTTPONLY: False CSRF_COOKIE_NAME: 'csrftoken' CSRF_COOKIE_PATH: '/' CSRF_COOKIE_SECURE: False CSRF_FAILURE_VIEW: 'django.views.csrf.csrf_failure' CSRF_HEADER_NAME: 'HTTP_X_CSRFTOKEN' CSRF_TRUSTED_ORIGINS: [] CSRF_USE_SESSIONS: False DATABASES: { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'HOST': '', 'NAME': 'test.db', 'PASSWORD': '********', 'PORT': '', 'USER': ''}} DATABASE_ROUTERS: '********' DATA_UPLOAD_MAX_MEMORY_SIZE: 2621440 DATA_UPLOAD_MAX_NUMBER_FIELDS: 1000 DATETIME_FORMAT: 'N j, Y, P' DATETIME_INPUT_FORMATS: ['%Y-%m-%d %H:%M:%S', '%Y-%m-%d %H:%M:%S.%f', '%Y-%m-%d %H:%M', '%Y-%m-%d', '%m/%d/%Y %H:%M:%S', '%m/%d/%Y %H:%M:%S.%f', '%m/%d/%Y %H:%M', '%m/%d/%Y', '%m/%d/%y %H:%M:%S', '%m/%d/%y %H:%M:%S.%f', '%m/%d/%y %H:%M', '%m/%d/%y'] DATE_FORMAT: 'N j, Y' DATE_INPUT_FORMATS: ['%Y-%m-%d', '%m/%d/%Y', '%m/%d/%y', '%b %d %Y', '%b %d, %Y', '%d %b %Y', '%d %b, %Y', '%B %d %Y', '%B %d, %Y', '%d %B %Y', '%d %B, %Y'] DEBUG: True DEBUG_PROPAGATE_EXCEPTIONS: False DECIMAL_SEPARATOR: '.' DEFAULT_CHARSET: 'utf-8' DEFAULT_CONTENT_TYPE: 'text/html' DEFAULT_EXCEPTION_REPORTER_FILTER: 'django.views.debug.SafeExceptionReporterFilter' DEFAULT_FILE_STORAGE: 'django.core.files.storage.FileSystemStorage' DEFAULT_FROM_EMAIL: 'webmaster@localhost' DEFAULT_INDEX_TABLESPACE: '' DEFAULT_TABLESPACE: '' DISALLOWED_USER_AGENTS: [] EMAIL_BACKEND: 'django.core.mail.backends.smtp.EmailBackend' EMAIL_HOST: 'localhost' EMAIL_HOST_PASSWORD: '********' EMAIL_HOST_USER: '' EMAIL_PORT: 25 EMAIL_SSL_CERTFILE: None EMAIL_SSL_KEYFILE: '********' EMAIL_SUBJECT_PREFIX: '[Django] ' EMAIL_TIMEOUT: None EMAIL_USE_LOCALTIME: False EMAIL_USE_SSL: False EMAIL_USE_TLS: False FILE_CHARSET: 'utf-8' FILE_UPLOAD_DIRECTORY_PERMISSIONS: None FILE_UPLOAD_HANDLERS: ['django.core.files.uploadhandler.MemoryFileUploadHandler', 'django.core.files.uploadhandler.TemporaryFileUploadHandler'] FILE_UPLOAD_MAX_MEMORY_SIZE: 2621440 FILE_UPLOAD_PERMISSIONS: None FILE_UPLOAD_TEMP_DIR: None FIRST_DAY_OF_WEEK: 0 FIXTURE_DIRS: [] FORCE_SCRIPT_NAME: None FORMAT_MODULE_PATH: None FORM_RENDERER: 'django.forms.renderers.DjangoTemplates' IGNORABLE_404_URLS: [] INSTALLED_APPS: ('django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.messages', 'django.contrib.staticfiles', 'django.contrib.admin', 'demoapp') INTERNAL_IPS: [] LANGUAGES: [('af', 'Afrikaans'), ('ar', 'Arabic'), ('ast', 'Asturian'), ('az', 'Azerbaijani'), ('bg', 'Bulgarian'), ('be', 'Belarusian'), ('bn', 'Bengali'), ('br', 'Breton'), ('bs', 'Bosnian'), ('ca', 'Catalan'), ('cs', 'Czech'), ('cy', 'Welsh'), ('da', 'Danish'), ('de', 'German'), ('dsb', 'Lower Sorbian'), ('el', 'Greek'), ('en', 'English'), ('en-au', 'Australian English'), ('en-gb', 'British English'), ('eo', 'Esperanto'), ('es', 'Spanish'), ('es-ar', 'Argentinian Spanish'), ('es-co', 'Colombian Spanish'), ('es-mx', 'Mexican Spanish'), ('es-ni', 'Nicaraguan Spanish'), ('es-ve', 'Venezuelan Spanish'), ('et', 'Estonian'), ('eu', 'Basque'), ('fa', 'Persian'), ('fi', 'Finnish'), ('fr', 'French'), ('fy', 'Frisian'), ('ga', 'Irish'), ('gd', 'Scottish Gaelic'), ('gl', 'Galician'), ('he', 'Hebrew'), ('hi', 'Hindi'), ('hr', 'Croatian'), ('hsb', 'Upper Sorbian'), ('hu', 'Hungarian'), ('ia', 'Interlingua'), ('id', 'Indonesian'), ('io', 'Ido'), ('is', 'Icelandic'), ('it', 'Italian'), ('ja', 'Japanese'), ('ka', 'Georgian'), ('kk', 'Kazakh'), ('km', 'Khmer'), ('kn', 'Kannada'), ('ko', 'Korean'), ('lb', 'Luxembourgish'), ('lt', 'Lithuanian'), ('lv', 'Latvian'), ('mk', 'Macedonian'), ('ml', 'Malayalam'), ('mn', 'Mongolian'), ('mr', 'Marathi'), ('my', 'Burmese'), ('nb', 'Norwegian Bokmål'), ('ne', 'Nepali'), ('nl', 'Dutch'), ('nn', 'Norwegian Nynorsk'), ('os', 'Ossetic'), ('pa', 'Punjabi'), ('pl', 'Polish'), ('pt', 'Portuguese'), ('pt-br', 'Brazilian Portuguese'), ('ro', 'Romanian'), ('ru', 'Russian'), ('sk', 'Slovak'), ('sl', 'Slovenian'), ('sq', 'Albanian'), ('sr', 'Serbian'), ('sr-latn', 'Serbian Latin'), ('sv', 'Swedish'), ('sw', 'Swahili'), ('ta', 'Tamil'), ('te', 'Telugu'), ('th', 'Thai'), ('tr', 'Turkish'), ('tt', 'Tatar'), ('udm', 'Udmurt'), ('uk', 'Ukrainian'), ('ur', 'Urdu'), ('vi', 'Vietnamese'), ('zh-hans', 'Simplified Chinese'), ('zh-hant', 'Traditional Chinese')] LANGUAGES_BIDI: ['he', 'ar', 'fa', 'ur'] LANGUAGE_CODE: 'en-us' LANGUAGE_COOKIE_AGE: None LANGUAGE_COOKIE_DOMAIN: None LANGUAGE_COOKIE_NAME: 'django_language' LANGUAGE_COOKIE_PATH: '/' LOCALE_PATHS: [] LOGGING: { 'disable_existing_loggers': False, 'filters': { 'require_debug_false': { '()': 'django.utils.log.RequireDebugFalse'}}, 'handlers': { 'mail_admins': { 'class': 'django.utils.log.AdminEmailHandler', 'filters': ['require_debug_false'], 'level': 'ERROR'}}, 'loggers': { 'django.request': { 'handlers': ['mail_admins'], 'level': 'ERROR', 'propagate': True}}, 'version': 1} LOGGING_CONFIG: 'logging.config.dictConfig' LOGIN_REDIRECT_URL: '/accounts/profile/' LOGIN_URL: '/accounts/login/' LOGOUT_REDIRECT_URL: None MANAGERS: () MEDIA_ROOT: '' MEDIA_URL: '' MESSAGE_STORAGE: 'django.contrib.messages.storage.fallback.FallbackStorage' MIDDLEWARE: None MIDDLEWARE_CLASSES: ('django.middleware.common.CommonMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware') MIGRATION_MODULES: { } MONTH_DAY_FORMAT: 'F j' NUMBER_GROUPING: 0 PASSWORD_HASHERS: '********' PASSWORD_RESET_TIMEOUT_DAYS: '********' PREPEND_WWW: False ROOT_URLCONF: 'proj.urls' SECRET_KEY: '********' SECURE_BROWSER_XSS_FILTER: False SECURE_CONTENT_TYPE_NOSNIFF: False SECURE_HSTS_INCLUDE_SUBDOMAINS: False SECURE_HSTS_PRELOAD: False SECURE_HSTS_SECONDS: 0 SECURE_PROXY_SSL_HEADER: None SECURE_REDIRECT_EXEMPT: [] SECURE_SSL_HOST: None SECURE_SSL_REDIRECT: False SERVER_EMAIL: 'root@localhost' SESSION_CACHE_ALIAS: 'default' SESSION_COOKIE_AGE: 1209600 SESSION_COOKIE_DOMAIN: None SESSION_COOKIE_HTTPONLY: True SESSION_COOKIE_NAME: 'sessionid' SESSION_COOKIE_PATH: '/' SESSION_COOKIE_SECURE: False SESSION_ENGINE: 'django.contrib.sessions.backends.db' SESSION_EXPIRE_AT_BROWSER_CLOSE: False SESSION_FILE_PATH: None SESSION_SAVE_EVERY_REQUEST: False SESSION_SERIALIZER: 'django.contrib.sessions.serializers.JSONSerializer' SETTINGS_MODULE: 'proj.settings' SHORT_DATETIME_FORMAT: 'm/d/Y P' SHORT_DATE_FORMAT: 'm/d/Y' SIGNING_BACKEND: 'django.core.signing.TimestampSigner' SILENCED_SYSTEM_CHECKS: [] SITE_ID: 1 STATICFILES_DIRS: () STATICFILES_FINDERS: ('django.contrib.staticfiles.finders.FileSystemFinder', 'django.contrib.staticfiles.finders.AppDirectoriesFinder') STATICFILES_STORAGE: 'django.contrib.staticfiles.storage.StaticFilesStorage' STATIC_ROOT: '' STATIC_URL: '/static/' TEMPLATES: [] TEMPLATE_DEBUG: True TEMPLATE_DIRS: () TEMPLATE_LOADERS: ('django.template.loaders.filesystem.Loader', 'django.template.loaders.app_directories.Loader') TEST_NON_SERIALIZED_APPS: [] TEST_RUNNER: 'django.test.runner.DiscoverRunner' THOUSAND_SEPARATOR: ',' TIME_FORMAT: 'P' TIME_INPUT_FORMATS: ['%H:%M:%S', '%H:%M:%S.%f', '%H:%M'] TIME_ZONE: 'America/Chicago' USE_ETAGS: False USE_I18N: True USE_L10N: True USE_THOUSAND_SEPARATOR: False USE_TZ: True USE_X_FORWARDED_HOST: False USE_X_FORWARDED_PORT: False WSGI_APPLICATION: 'proj.wsgi.application' X_FRAME_OPTIONS: 'SAMEORIGIN' YEAR_MONTH_FORMAT: 'F Y' is_overridden: &lt;bound method Settings.is_overridden of &lt;Settings "proj.settings"&gt;&gt; </code></pre></div>
1
<h1 dir="auto">Environment</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: [run `[Environment]::OSVersion` for powershell, or `ver` for cmd] Windows Terminal version (if applicable): Platform ServicePack Version VersionString -------- ----------- ------- ------------- Win32NT 10.0.18362.0 Microsoft Windows NT 10.0.18362.0 Windows Terminal version Version: 0.5.2762.0"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: [run `[Environment]::OSVersion` for powershell, or `ver` for cmd] Windows Terminal version (if applicable): Platform ServicePack Version VersionString -------- ----------- ------- ------------- Win32NT 10.0.18362.0 Microsoft Windows NT 10.0.18362.0 Windows Terminal version Version: 0.5.2762.0 </code></pre></div> <p dir="auto">Also observed on my other Windows system</p> <h1 dir="auto">Steps to reproduce</h1> <p dir="auto">Triggered by an automatic update of the application.</p> <h1 dir="auto">Expected behavior</h1> <p dir="auto">The application updates normally</p> <h1 dir="auto">Actual behavior</h1> <p dir="auto">The application is stuck updating at about 50%:</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/3680671/66335197-54db5980-e8ef-11e9-9a65-7cbe67e0a53c.png"><img src="https://user-images.githubusercontent.com/3680671/66335197-54db5980-e8ef-11e9-9a65-7cbe67e0a53c.png" alt="image" style="max-width: 100%;"></a></p>
<h1 dir="auto">Environment</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Microsoft Windows [Version 10.0.18362.239]"><pre lang="none" class="notranslate"><code class="notranslate">Microsoft Windows [Version 10.0.18362.239] </code></pre></div> <h1 dir="auto">Steps to reproduce</h1> <p dir="auto">In a standard CMD console window, from the properties dialog:</p> <ol dir="auto"> <li>Terminal ~ ENABLE "Disable Scroll-Forward"</li> <li>Layout ~ decrease "Screen Buffer Size / Height" to be equal to "Window Size / Height"</li> </ol> <h1 dir="auto">Expected behavior</h1> <p dir="auto">The vertical scrollbar should disappear.</p> <h1 dir="auto">Actual behavior</h1> <p dir="auto">The vertical scrollbar remains, fully or partially obscuring the last column of text characters (depending on font/size?).</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/80132/63137052-45e4c480-bf9a-11e9-8403-e0b9628a50cd.png"><img src="https://user-images.githubusercontent.com/80132/63137052-45e4c480-bf9a-11e9-8403-e0b9628a50cd.png" alt="Screenshot" style="max-width: 100%;"></a></p> <p dir="auto">The obscuring behavior can be seen on the longer lines in the screenshot.</p>
0
<ul dir="auto"> <li>VSCode Version: 1.1.1</li> <li>OS Version: Debian Jessie</li> </ul> <p dir="auto">Hello,</p> <p dir="auto">I did not foud this usefull feature inside the user shortcut parameter: duplicate the current line<br> Using any jetbrains IDE I am used to do this with this shortcut: ctrl+d</p> <p dir="auto">Lets see if I am the only one who wants this feature inside vscode or if it is worth it to implement it.</p>
<p dir="auto">Would be nice to have acme-like mouse chording. Would be even nicer letting the user configure the preferred mouse chord actions.</p> <p dir="auto"><a href="http://acme.cat-v.org/mouse" rel="nofollow">http://acme.cat-v.org/mouse</a></p>
0
<h2 dir="auto">Environment info</h2> <ul dir="auto"> <li><code class="notranslate">transformers</code> version: 4.1.1</li> <li>Platform: AWS Sagemaker</li> <li>Python version: 3.6</li> <li>PyTorch version (GPU?): 1.6</li> <li>Tensorflow version (GPU?):</li> <li>Using GPU in script?: YES</li> <li>Using distributed or parallel set-up in script?: YES</li> </ul> <h3 dir="auto">Who can help</h3> <p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/LysandreJik/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/LysandreJik">@LysandreJik</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/sgugger/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/sgugger">@sgugger</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/alexorona/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/alexorona">@alexorona</a></p> <h2 dir="auto">Information</h2> <p dir="auto">Model I am using (Bert, XLNet ...): GPT2</p> <p dir="auto">The problem arises when using:</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> the official example scripts: (give details below)</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> my own modified scripts: (give details below)</li> </ul> <p dir="auto">The tasks I am working on is:</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> an official GLUE/SQUaD task: (give the name)</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> my own task or dataset: (give details below)</li> </ul> <p dir="auto">I am fine-tuning GPT2 using my own dataset, using the examples/language-modelling/run_clm.py script, and I want to use the new model_parallel feature in v4.1.1. I am using a multi-gpu instance (AWS p3.8xlarge - with 4 gpus).</p> <p dir="auto">But I get this error:<br> AssertionError: DistributedDataParallel device_ids and output_device arguments only work with single-device CUDA modules, but got device_ids [2], output_device 2, and module parameters {device(type='cpu')}.</p> <h2 dir="auto">To reproduce</h2> <p dir="auto">Steps to reproduce the behavior:</p> <ol dir="auto"> <li>Run run_clm.py with the following params:</li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="python -m torch.distributed.launch \ --nproc_per_node 4 run_clm.py \ --do_train \ --do_eval \ --fp16 \ --logging_first_step \ --model_parallel \ --evaluation_strategy epoch \ --logging_steps 50 \ --model_name_or_path gpt2 \ --model_type gpt2 \ --num_train_epochs 1 \ --output_dir /opt/ml/model/ \ --per_device_eval_batch_size 2 \ --per_device_train_batch_size 2 \ --save_steps 50 \ --save_total_limit 1 \ --train_file /opt/ml/input/data/data/train.txt \ --validation_file /opt/ml/input/data/data/val.txt"><pre class="notranslate"><code class="notranslate">python -m torch.distributed.launch \ --nproc_per_node 4 run_clm.py \ --do_train \ --do_eval \ --fp16 \ --logging_first_step \ --model_parallel \ --evaluation_strategy epoch \ --logging_steps 50 \ --model_name_or_path gpt2 \ --model_type gpt2 \ --num_train_epochs 1 \ --output_dir /opt/ml/model/ \ --per_device_eval_batch_size 2 \ --per_device_train_batch_size 2 \ --save_steps 50 \ --save_total_limit 1 \ --train_file /opt/ml/input/data/data/train.txt \ --validation_file /opt/ml/input/data/data/val.txt </code></pre></div> <ol start="2" dir="auto"> <li>I get this error when training starts:</li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last): File &quot;run_clm.py&quot;, line 374, in &lt;module&gt; main() File &quot;run_clm.py&quot;, line 344, in main trainer.train(model_path=model_path) File &quot;/opt/conda/lib/python3.6/site-packages/transformers/trainer.py&quot;, line 681, in train else True File &quot;/opt/conda/lib/python3.6/site-packages/torch/nn/parallel/distributed.py&quot;, line 282, in __init__ #015 95%|����������| 62/65 [00:04&lt;00:00, 12.58ba/s] ).format(device_ids, output_device, {p.device for p in module.parameters()}) AssertionError: DistributedDataParallel device_ids and output_device arguments only work with single-device CUDA modules, but got device_ids [1], output_device 1, and module parameters {device(type='cpu')}. #015 98%|����������| 64/65 [00:05&lt;00:00, 12.26ba/s]#015100%|����������| 65/65 [00:05&lt;00:00, 12.61ba/s] Traceback (most recent call last): File &quot;run_clm.py&quot;, line 374, in &lt;module&gt; main() File &quot;run_clm.py&quot;, line 344, in main trainer.train(model_path=model_path) File &quot;/opt/conda/lib/python3.6/site-packages/transformers/trainer.py&quot;, line 681, in train else True File &quot;/opt/conda/lib/python3.6/site-packages/torch/nn/parallel/distributed.py&quot;, line 282, in __init__ ).format(device_ids, output_device, {p.device for p in module.parameters()}) AssertionError: DistributedDataParallel device_ids and output_device arguments only work with single-device CUDA modules, but got device_ids [2], output_device 2, and module parameters {device(type='cpu')}. #015 95%|����������| 62/65 [00:05&lt;00:00, 11.84ba/s]#015 98%|����������| 64/65 [00:05&lt;00:00, 12.18ba/s]#015100%|����������| 65/65 [00:05&lt;00:00, 12.60ba/s] Traceback (most recent call last): File &quot;run_clm.py&quot;, line 374, in &lt;module&gt; main() File &quot;run_clm.py&quot;, line 344, in main trainer.train(model_path=model_path) File &quot;/opt/conda/lib/python3.6/site-packages/transformers/trainer.py&quot;, line 681, in train else True File &quot;/opt/conda/lib/python3.6/site-packages/torch/nn/parallel/distributed.py&quot;, line 282, in __init__ ).format(device_ids, output_device, {p.device for p in module.parameters()}) AssertionError: DistributedDataParallel device_ids and output_device arguments only work with single-device CUDA modules, but got device_ids [3], output_device 3, and module parameters {device(type='cpu')}. #015 98%|����������| 64/65 [00:05&lt;00:00, 11.50ba/s]#015100%|����������| 65/65 [00:05&lt;00:00, 12.48ba/s] [INFO|trainer.py:388] 2020-12-22 00:54:34,892 &gt;&gt; The following columns in the training set don't have a corresponding argument in `GPT2LMHeadModel.forward` and have been ignored: . [INFO|trainer.py:388] 2020-12-22 00:54:34,892 &gt;&gt; The following columns in the evaluation set don't have a corresponding argument in `GPT2LMHeadModel.forward` and have been ignored: . Traceback (most recent call last): File &quot;run_clm.py&quot;, line 374, in &lt;module&gt; main() File &quot;run_clm.py&quot;, line 344, in main trainer.train(model_path=model_path) File &quot;/opt/conda/lib/python3.6/site-packages/transformers/trainer.py&quot;, line 681, in train else True File &quot;/opt/conda/lib/python3.6/site-packages/torch/nn/parallel/distributed.py&quot;, line 282, in __init__ ).format(device_ids, output_device, {p.device for p in module.parameters()}) AssertionError: DistributedDataParallel device_ids and output_device arguments only work with single-device CUDA modules, but got device_ids [0], output_device 0, and module parameters {device(type='cpu')}. Traceback (most recent call last): File &quot;/opt/conda/lib/python3.6/runpy.py&quot;, line 193, in _run_module_as_main &quot;__main__&quot;, mod_spec) File &quot;/opt/conda/lib/python3.6/runpy.py&quot;, line 85, in _run_code exec(code, run_globals) File &quot;/opt/conda/lib/python3.6/site-packages/torch/distributed/launch.py&quot;, line 261, in &lt;module&gt; main() File &quot;/opt/conda/lib/python3.6/site-packages/torch/distributed/launch.py&quot;, line 257, in main cmd=cmd) subprocess.CalledProcessError: Command '['/opt/conda/bin/python', '-u', 'run_clm.py', '--local_rank=3', '--do_train', '--do_eval', '--fp16', '--logging_first_step', '--model_parallel', '--evaluation_strategy', 'epoch', '--logging_steps', '50', '--model_name_or_path', 'gpt2', '--model_type', 'gpt2', '--num_train_epochs', '1', '--output_dir', '/opt/ml/model/', '--per_device_eval_batch_size', '2', '--per_device_train_batch_size', '2', '--save_steps', '50', '--save_total_limit', '1', '--train_file', '/opt/ml/input/data/data/train.txt', '--validation_file', '/opt/ml/input/data/data/val.txt']' returned non-zero exit status 1."><pre class="notranslate"><code class="notranslate">Traceback (most recent call last): File "run_clm.py", line 374, in &lt;module&gt; main() File "run_clm.py", line 344, in main trainer.train(model_path=model_path) File "/opt/conda/lib/python3.6/site-packages/transformers/trainer.py", line 681, in train else True File "/opt/conda/lib/python3.6/site-packages/torch/nn/parallel/distributed.py", line 282, in __init__ #015 95%|����������| 62/65 [00:04&lt;00:00, 12.58ba/s] ).format(device_ids, output_device, {p.device for p in module.parameters()}) AssertionError: DistributedDataParallel device_ids and output_device arguments only work with single-device CUDA modules, but got device_ids [1], output_device 1, and module parameters {device(type='cpu')}. #015 98%|����������| 64/65 [00:05&lt;00:00, 12.26ba/s]#015100%|����������| 65/65 [00:05&lt;00:00, 12.61ba/s] Traceback (most recent call last): File "run_clm.py", line 374, in &lt;module&gt; main() File "run_clm.py", line 344, in main trainer.train(model_path=model_path) File "/opt/conda/lib/python3.6/site-packages/transformers/trainer.py", line 681, in train else True File "/opt/conda/lib/python3.6/site-packages/torch/nn/parallel/distributed.py", line 282, in __init__ ).format(device_ids, output_device, {p.device for p in module.parameters()}) AssertionError: DistributedDataParallel device_ids and output_device arguments only work with single-device CUDA modules, but got device_ids [2], output_device 2, and module parameters {device(type='cpu')}. #015 95%|����������| 62/65 [00:05&lt;00:00, 11.84ba/s]#015 98%|����������| 64/65 [00:05&lt;00:00, 12.18ba/s]#015100%|����������| 65/65 [00:05&lt;00:00, 12.60ba/s] Traceback (most recent call last): File "run_clm.py", line 374, in &lt;module&gt; main() File "run_clm.py", line 344, in main trainer.train(model_path=model_path) File "/opt/conda/lib/python3.6/site-packages/transformers/trainer.py", line 681, in train else True File "/opt/conda/lib/python3.6/site-packages/torch/nn/parallel/distributed.py", line 282, in __init__ ).format(device_ids, output_device, {p.device for p in module.parameters()}) AssertionError: DistributedDataParallel device_ids and output_device arguments only work with single-device CUDA modules, but got device_ids [3], output_device 3, and module parameters {device(type='cpu')}. #015 98%|����������| 64/65 [00:05&lt;00:00, 11.50ba/s]#015100%|����������| 65/65 [00:05&lt;00:00, 12.48ba/s] [INFO|trainer.py:388] 2020-12-22 00:54:34,892 &gt;&gt; The following columns in the training set don't have a corresponding argument in `GPT2LMHeadModel.forward` and have been ignored: . [INFO|trainer.py:388] 2020-12-22 00:54:34,892 &gt;&gt; The following columns in the evaluation set don't have a corresponding argument in `GPT2LMHeadModel.forward` and have been ignored: . Traceback (most recent call last): File "run_clm.py", line 374, in &lt;module&gt; main() File "run_clm.py", line 344, in main trainer.train(model_path=model_path) File "/opt/conda/lib/python3.6/site-packages/transformers/trainer.py", line 681, in train else True File "/opt/conda/lib/python3.6/site-packages/torch/nn/parallel/distributed.py", line 282, in __init__ ).format(device_ids, output_device, {p.device for p in module.parameters()}) AssertionError: DistributedDataParallel device_ids and output_device arguments only work with single-device CUDA modules, but got device_ids [0], output_device 0, and module parameters {device(type='cpu')}. Traceback (most recent call last): File "/opt/conda/lib/python3.6/runpy.py", line 193, in _run_module_as_main "__main__", mod_spec) File "/opt/conda/lib/python3.6/runpy.py", line 85, in _run_code exec(code, run_globals) File "/opt/conda/lib/python3.6/site-packages/torch/distributed/launch.py", line 261, in &lt;module&gt; main() File "/opt/conda/lib/python3.6/site-packages/torch/distributed/launch.py", line 257, in main cmd=cmd) subprocess.CalledProcessError: Command '['/opt/conda/bin/python', '-u', 'run_clm.py', '--local_rank=3', '--do_train', '--do_eval', '--fp16', '--logging_first_step', '--model_parallel', '--evaluation_strategy', 'epoch', '--logging_steps', '50', '--model_name_or_path', 'gpt2', '--model_type', 'gpt2', '--num_train_epochs', '1', '--output_dir', '/opt/ml/model/', '--per_device_eval_batch_size', '2', '--per_device_train_batch_size', '2', '--save_steps', '50', '--save_total_limit', '1', '--train_file', '/opt/ml/input/data/data/train.txt', '--validation_file', '/opt/ml/input/data/data/val.txt']' returned non-zero exit status 1. </code></pre></div> <h2 dir="auto">Expected behavior</h2> <p dir="auto">I expect the fine-tuning script to run successfully.</p> <p dir="auto">If I remove the --model_parallel in the args, then it does run successfully in distributed mode. But I want to use this new feature to reduce memory usage, and increase batch_size</p>
<h1 dir="auto"><g-emoji class="g-emoji" alias="question" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2753.png">❓</g-emoji> Questions &amp; Help</h1> <p dir="auto">I saw that "dynamic masking" was mentioned on the README file for language modeling:<br> "In accordance to the RoBERTa paper, we use dynamic masking rather than static masking. The model may, therefore, converge slightly slower (over-fitting takes more epochs)."</p> <p dir="auto">I couldn't find which class this method is implemented in and how to enable this feature during pre-training using the Trainer class. Could someone please help me?</p> <p dir="auto">Thank you very much in advance.</p>
0
<h2 dir="auto">🐛 Bug</h2> <h2 dir="auto">To Reproduce</h2> <p dir="auto">Steps to reproduce the behavior:<br> 19-12-18 Nightly Build Verion Runtime error<br> Occurs when running a program</p> <p dir="auto">also How do I use a Nightly version with a different date?<br> The build time is too long and needs a different version.<br> Thanks All<br> call stack</p> <div class="highlight highlight-source-c++ notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="ntdll.dll!00007ff92825fe0e() Unknown KernelBase.dll!00007ff92529a839() Unknown vcruntime140d.dll!00007ff904ba82b0() Unknown c10.dll!c10::util::detail::extract(c10::basic_string_view&lt;char&gt; prefix, c10::basic_string_view&lt;char&gt; suffix, c10::basic_string_view&lt;char&gt; str) line 51 C++ c10.dll!c10::util::detail::fully_qualified_type_name_impl&lt;float&gt;() line 62 C++ c10.dll!c10::util::get_fully_qualified_type_name&lt;float&gt;() line C++ c10.dll!caffe2::detail::_makeTypeMetaDataInstance&lt;float&gt;() line 298 C++ c10.dll!caffe2::TypeMeta::_typeMetaDataInstance&lt;float&gt;() line 44 C++ c10.dll!caffe2::TypeMeta::Make&lt;float&gt;() line C++ c10.dll!c10::`dynamic initializer for 'default_dtype''() line 5 C++"><pre class="notranslate">ntdll.dll!00007ff92825fe0e() Unknown KernelBase.dll!00007ff92529a839() Unknown vcruntime140d.dll!00007ff904ba82b0() Unknown c10.dll!c10::util::detail::extract(c10::basic_string_view&lt;<span class="pl-k">char</span>&gt; prefix, c10::basic_string_view&lt;<span class="pl-k">char</span>&gt; suffix, c10::basic_string_view&lt;<span class="pl-k">char</span>&gt; str) line <span class="pl-c1">51</span> C++ c10.dll!c10::util::detail::fully_qualified_type_name_impl&lt;<span class="pl-k">float</span>&gt;() line <span class="pl-c1">62</span> C++ c10.dll!c10::util::get_fully_qualified_type_name&lt;<span class="pl-k">float</span>&gt;() line C++ c10.dll!caffe2::detail::_makeTypeMetaDataInstance&lt;<span class="pl-k">float</span>&gt;() line <span class="pl-c1">298</span> C++ c10.dll!caffe2::TypeMeta::_typeMetaDataInstance&lt;<span class="pl-k">float</span>&gt;() line <span class="pl-c1">44</span> C++ c10.dll!caffe2::TypeMeta::Make&lt;<span class="pl-k">float</span>&gt;() line C++ c10.dll!c10::`dynamic initializer <span class="pl-k">for</span> <span class="pl-s"><span class="pl-pds">'</span>default_dtype<span class="pl-pds">'</span><span class="pl-pds">'</span>() line 5 C++</span></pre></div> <p dir="auto">break point</p> <div class="highlight highlight-source-c++ notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="template &lt;typename T&gt; inline C10_TYPENAME_CONSTEXPR string_view fully_qualified_type_name_impl() noexcept { #if defined(_MSC_VER) return extract(//&lt;&lt; here &quot;class c10::string_view __cdecl c10::util::detail::fully_qualified_type_name_impl&lt;&quot;, &quot;&gt;(void)&quot;, __FUNCSIG__); #elif defined(__clang__) return extract( &quot;c10::string_view c10::util::detail::fully_qualified_type_name_impl() [T = &quot;, &quot;]&quot;, __PRETTY_FUNCTION__); #elif defined(__GNUC__) return extract( #if C10_TYPENAME_SUPPORTS_CONSTEXPR &quot;constexpr c10::string_view c10::util::detail::fully_qualified_type_name_impl() [with T = &quot;, #else &quot;c10::string_view c10::util::detail::fully_qualified_type_name_impl() [with T = &quot;, #endif &quot;; c10::string_view = c10::basic_string_view&lt;char&gt;]&quot;, __PRETTY_FUNCTION__); #endif"><pre class="notranslate"><span class="pl-k">template </span>&lt;<span class="pl-k">typename</span> T&gt; <span class="pl-k">inline</span> C10_TYPENAME_CONSTEXPR string_view <span class="pl-en">fully_qualified_type_name_impl</span>() <span class="pl-k">noexcept</span> { #<span class="pl-k">if</span> defined(_MSC_VER) <span class="pl-k">return</span> <span class="pl-c1">extract</span>(<span class="pl-c"><span class="pl-c">//</span>&lt;&lt; here</span> <span class="pl-s"><span class="pl-pds">"</span>class c10::string_view __cdecl c10::util::detail::fully_qualified_type_name_impl&lt;<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>&gt;(void)<span class="pl-pds">"</span></span>, __FUNCSIG__); #<span class="pl-k">elif</span> defined(__clang__) <span class="pl-k">return</span> <span class="pl-c1">extract</span>( <span class="pl-s"><span class="pl-pds">"</span>c10::string_view c10::util::detail::fully_qualified_type_name_impl() [T = <span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>]<span class="pl-pds">"</span></span>, __PRETTY_FUNCTION__); #<span class="pl-k">elif</span> defined(__GNUC__) <span class="pl-k">return</span> <span class="pl-c1">extract</span>( #<span class="pl-k">if</span> C10_TYPENAME_SUPPORTS_CONSTEXPR <span class="pl-s"><span class="pl-pds">"</span>constexpr c10::string_view c10::util::detail::fully_qualified_type_name_impl() [with T = <span class="pl-pds">"</span></span>, #<span class="pl-k">else</span> <span class="pl-s"><span class="pl-pds">"</span>c10::string_view c10::util::detail::fully_qualified_type_name_impl() [with T = <span class="pl-pds">"</span></span>, #<span class="pl-k">endif</span> <span class="pl-s"><span class="pl-pds">"</span>; c10::string_view = c10::basic_string_view&lt;char&gt;]<span class="pl-pds">"</span></span>, __PRETTY_FUNCTION__); #<span class="pl-k">endif</span></pre></div> <h2 dir="auto">Expected behavior</h2> <h2 dir="auto">Environment</h2> <p dir="auto">Please copy and paste the output from our<br> <a href="https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py" rel="nofollow">environment collection script</a><br> (or fill out the checklist below manually).</p> <p dir="auto">You can get the script and run it with:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="PyTorch version: 1.4.0.dev20191214 Is debug build: No CUDA used to build PyTorch: 10.1 OS: Microsoft Windows 10 Pro GCC version: Could not collect CMake version: version 3.14.0 Python version: 3.5 Is CUDA available: Yes CUDA runtime version: 10.2.89 GPU models and configuration: GPU 0: GeForce RTX 2080 Ti Nvidia driver version: 441.22 cuDNN version: C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.2\bin\cudnn64_7.dll [pip3] numpy==1.16.3 [pip3] torch==1.4.0.dev20191214 [pip3] torchvision==0.5.0.dev20191215 [conda] blas 1.0 mkl [conda] mkl 2018.0.3 1 [conda] mkl-include 2019.3 203 [conda] mkl-service 1.1.2 py35_2 [conda] mkl_fft 1.0.6 py35hdbbee80_0 [conda] mkl_random 1.0.1 py35h77b88f5_1 [conda] torch 1.4.0.dev20191214 &lt;pip&gt; [conda] torch 1.3.1 &lt;pip&gt; [conda] torch 1.1.0 &lt;pip&gt; [conda] torchvision 0.5.0.dev20191215 &lt;pip&gt;"><pre class="notranslate"><code class="notranslate">PyTorch version: 1.4.0.dev20191214 Is debug build: No CUDA used to build PyTorch: 10.1 OS: Microsoft Windows 10 Pro GCC version: Could not collect CMake version: version 3.14.0 Python version: 3.5 Is CUDA available: Yes CUDA runtime version: 10.2.89 GPU models and configuration: GPU 0: GeForce RTX 2080 Ti Nvidia driver version: 441.22 cuDNN version: C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.2\bin\cudnn64_7.dll [pip3] numpy==1.16.3 [pip3] torch==1.4.0.dev20191214 [pip3] torchvision==0.5.0.dev20191215 [conda] blas 1.0 mkl [conda] mkl 2018.0.3 1 [conda] mkl-include 2019.3 203 [conda] mkl-service 1.1.2 py35_2 [conda] mkl_fft 1.0.6 py35hdbbee80_0 [conda] mkl_random 1.0.1 py35h77b88f5_1 [conda] torch 1.4.0.dev20191214 &lt;pip&gt; [conda] torch 1.3.1 &lt;pip&gt; [conda] torch 1.1.0 &lt;pip&gt; [conda] torchvision 0.5.0.dev20191215 &lt;pip&gt; </code></pre></div> <ul dir="auto"> <li>PyTorch Version (e.g., 1.0):</li> <li>OS (e.g., Linux): windows 10</li> <li>How you installed PyTorch (<code class="notranslate">conda</code>, <code class="notranslate">pip</code>, source):</li> <li>Build command you used (if compiling from source):</li> <li>Python version:</li> <li>CUDA/cuDNN version: 10.2</li> <li>GPU models and configuration:</li> <li>Any other relevant information:</li> </ul> <h2 dir="auto">Additional context</h2> <p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ezyang/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ezyang">@ezyang</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/gchanan/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gchanan">@gchanan</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/zou3519/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/zou3519">@zou3519</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/peterjc123/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/peterjc123">@peterjc123</a></p>
<h2 dir="auto"><g-emoji class="g-emoji" alias="bug" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f41b.png">🐛</g-emoji> Bug</h2> <p dir="auto">'import torch' starts to fail in the nightly jobs beginning from Dec. 15.</p> <p dir="auto"><a href="https://dev.azure.com/pytorch/PyTorch/_build/results?buildId=18361&amp;view=results" rel="nofollow">https://dev.azure.com/pytorch/PyTorch/_build/results?buildId=18361&amp;view=results</a><br> <a href="https://dev.azure.com/pytorch/PyTorch/_build/results?buildId=18363&amp;view=results" rel="nofollow">https://dev.azure.com/pytorch/PyTorch/_build/results?buildId=18363&amp;view=results</a></p> <h2 dir="auto">To Reproduce</h2> <p dir="auto">Steps to reproduce the behavior:</p> <ol dir="auto"> <li>import torch</li> </ol> <h2 dir="auto">Expected behavior</h2> <p dir="auto">Import success.</p> <h2 dir="auto">Environment</h2> <p dir="auto">Please copy and paste the output from our<br> <a href="https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py" rel="nofollow">environment collection script</a><br> (or fill out the checklist below manually).</p> <p dir="auto">You can get the script and run it with:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="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"><pre class="notranslate"><code class="notranslate">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 </code></pre></div> <ul dir="auto"> <li>PyTorch Version (e.g., 1.0): master</li> <li>OS (e.g., Linux): Windows</li> <li>How you installed PyTorch (<code class="notranslate">conda</code>, <code class="notranslate">pip</code>, source): source</li> <li>Build command you used (if compiling from source): python setup.py install</li> <li>Python version: 3.5/3.6/3.7</li> <li>CUDA/cuDNN version: None / 9.2 / 10.1</li> <li>GPU models and configuration: None</li> <li>Any other relevant information:</li> </ul> <h2 dir="auto">Additional context</h2> <p dir="auto">Looks like some of the errors are intermittent.</p> <p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ezyang/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ezyang">@ezyang</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/gchanan/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gchanan">@gchanan</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/zou3519/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/zou3519">@zou3519</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/peterjc123/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/peterjc123">@peterjc123</a></p>
1
<p dir="auto">[Enter steps to reproduce below:]</p> <ol dir="auto"> <li>...</li> <li>...</li> </ol> <p dir="auto"><strong>Atom Version</strong>: 1.0.0<br> <strong>System</strong>: Microsoft Windows 8.1 Pro<br> <strong>Thrown From</strong>: Atom Core</p> <h3 dir="auto">Stack Trace</h3> <p dir="auto">Uncaught Error: Cannot find module './context-menu'<br> Error: Cannot find module './context-menu'<br> at Function.Module._resolveFilename (module.js:328:15)<br> at Function.Module._load (module.js:270:25)<br> at Module.require (module.js:357:17)<br> at require (module.js:376:17)<br> at BrowserWindow. (C:\Users\hieupm\AppData\Local\atom\app-1.0.0\resources\app.asar\src\browser\atom-window.js:149:27)<br> at emitOne (events.js:77:13)<br> at BrowserWindow.emit (events.js:166:7)<br> at callFunction (C:\Users\hieupm\AppData\Local\atom\app-1.0.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)<br> at EventEmitter. (C:\Users\hieupm\AppData\Local\atom\app-1.0.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)<br> at emitMany (events.js:108:13)</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At C:\Users\hieupm\AppData\Local\atom\app-1.0.0\resources\atom.asar\renderer\api\lib\remote.js:77 Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:15) at Function.Module._load (module.js:270:25) at Module.require (module.js:357:17) at require (module.js:376:17) at BrowserWindow.&lt;anonymous&gt; (C:\Users\hieupm\AppData\Local\atom\app-1.0.0\resources\app.asar\src\browser\atom-window.js:149:27) at emitOne (events.js:77:13) at BrowserWindow.emit (events.js:166:7) at callFunction (C:\Users\hieupm\AppData\Local\atom\app-1.0.0\resources\atom.asar\browser\lib\rpc-server.js:116:18) at EventEmitter.&lt;anonymous&gt; (C:\Users\hieupm\AppData\Local\atom\app-1.0.0\resources\atom.asar\browser\lib\rpc-server.js:208:14) at emitMany (events.js:108:13) at metaToValue (C:\Users\hieupm\AppData\Local\atom\app-1.0.0\resources\atom.asar\renderer\api\lib\remote.js:77:15) at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\hieupm\AppData\Local\atom\app-1.0.0\resources\atom.asar\renderer\api\lib\remote.js:111:26) at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\hieupm\AppData\Local\atom\app-1.0.0\resources\app.asar\src\context-menu-manager.js:170:31) at HTMLDocument.&lt;anonymous&gt; (C:\Users\hieupm\AppData\Local\atom\app-1.0.0\resources\app.asar\src\window-event-handler.js:150:33) at HTMLDocument.handler (C:\Users\hieupm\AppData\Local\atom\app-1.0.0\resources\app.asar\src\space-pen-extensions.js:112:34) at HTMLDocument.jQuery.event.dispatch (C:\Users\hieupm\AppData\Local\atom\app-1.0.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9) at HTMLDocument.elemData.handle (C:\Users\hieupm\AppData\Local\atom\app-1.0.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46) "><pre class="notranslate"><code class="notranslate">At C:\Users\hieupm\AppData\Local\atom\app-1.0.0\resources\atom.asar\renderer\api\lib\remote.js:77 Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:15) at Function.Module._load (module.js:270:25) at Module.require (module.js:357:17) at require (module.js:376:17) at BrowserWindow.&lt;anonymous&gt; (C:\Users\hieupm\AppData\Local\atom\app-1.0.0\resources\app.asar\src\browser\atom-window.js:149:27) at emitOne (events.js:77:13) at BrowserWindow.emit (events.js:166:7) at callFunction (C:\Users\hieupm\AppData\Local\atom\app-1.0.0\resources\atom.asar\browser\lib\rpc-server.js:116:18) at EventEmitter.&lt;anonymous&gt; (C:\Users\hieupm\AppData\Local\atom\app-1.0.0\resources\atom.asar\browser\lib\rpc-server.js:208:14) at emitMany (events.js:108:13) at metaToValue (C:\Users\hieupm\AppData\Local\atom\app-1.0.0\resources\atom.asar\renderer\api\lib\remote.js:77:15) at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\hieupm\AppData\Local\atom\app-1.0.0\resources\atom.asar\renderer\api\lib\remote.js:111:26) at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\hieupm\AppData\Local\atom\app-1.0.0\resources\app.asar\src\context-menu-manager.js:170:31) at HTMLDocument.&lt;anonymous&gt; (C:\Users\hieupm\AppData\Local\atom\app-1.0.0\resources\app.asar\src\window-event-handler.js:150:33) at HTMLDocument.handler (C:\Users\hieupm\AppData\Local\atom\app-1.0.0\resources\app.asar\src\space-pen-extensions.js:112:34) at HTMLDocument.jQuery.event.dispatch (C:\Users\hieupm\AppData\Local\atom\app-1.0.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9) at HTMLDocument.elemData.handle (C:\Users\hieupm\AppData\Local\atom\app-1.0.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46) </code></pre></div> <h3 dir="auto">Commands</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" 4x -1:53.4.0 linter:set-bubble-transparent (atom-text-editor.editor.is-focused) -1:45.2.0 settings-view:open (atom-text-editor.editor.is-focused) -1:20.9.0 fuzzy-finder:toggle-file-finder (div.settings-view.pane-item) -1:16.2.0 core:backspace (atom-text-editor.editor.mini.is-focused) -0:28.1.0 core:move-down (atom-text-editor.editor.mini.is-focused) -0:27.9.0 core:confirm (atom-text-editor.editor.mini.is-focused) -0:21.8.0 editor:newline (atom-text-editor.editor.is-focused) -0:21.2.0 core:move-up (atom-text-editor.editor.is-focused) -0:10 core:backspace (atom-text-editor.editor.is-focused) -0:09.2.0 core:save (atom-text-editor.editor.is-focused)"><pre class="notranslate"><code class="notranslate"> 4x -1:53.4.0 linter:set-bubble-transparent (atom-text-editor.editor.is-focused) -1:45.2.0 settings-view:open (atom-text-editor.editor.is-focused) -1:20.9.0 fuzzy-finder:toggle-file-finder (div.settings-view.pane-item) -1:16.2.0 core:backspace (atom-text-editor.editor.mini.is-focused) -0:28.1.0 core:move-down (atom-text-editor.editor.mini.is-focused) -0:27.9.0 core:confirm (atom-text-editor.editor.mini.is-focused) -0:21.8.0 editor:newline (atom-text-editor.editor.is-focused) -0:21.2.0 core:move-up (atom-text-editor.editor.is-focused) -0:10 core:backspace (atom-text-editor.editor.is-focused) -0:09.2.0 core:save (atom-text-editor.editor.is-focused) </code></pre></div> <h3 dir="auto">Config</h3> <div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{ &quot;core&quot;: { &quot;themes&quot;: [ &quot;one-dark-ui&quot;, &quot;zenburn&quot; ], &quot;disabledPackages&quot;: [ &quot;atom-ctags&quot; ], &quot;autoHideMenuBar&quot;: true }, &quot;editor&quot;: { &quot;invisibles&quot;: {}, &quot;softTabs&quot;: false, &quot;showInvisibles&quot;: true } }"><pre class="notranslate">{ <span class="pl-ent">"core"</span>: { <span class="pl-ent">"themes"</span>: [ <span class="pl-s"><span class="pl-pds">"</span>one-dark-ui<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>zenburn<span class="pl-pds">"</span></span> ], <span class="pl-ent">"disabledPackages"</span>: [ <span class="pl-s"><span class="pl-pds">"</span>atom-ctags<span class="pl-pds">"</span></span> ], <span class="pl-ent">"autoHideMenuBar"</span>: <span class="pl-c1">true</span> }, <span class="pl-ent">"editor"</span>: { <span class="pl-ent">"invisibles"</span>: {}, <span class="pl-ent">"softTabs"</span>: <span class="pl-c1">false</span>, <span class="pl-ent">"showInvisibles"</span>: <span class="pl-c1">true</span> } }</pre></div> <h3 dir="auto">Installed Packages</h3> <div class="highlight highlight-source-coffee notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# User linter, v1.1.0 linter-cpplint, v0.1.4 zenburn, v3.0.0 # Dev No dev packages"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> User</span> linter, v1.<span class="pl-ii">1</span>.<span class="pl-ii">0</span> linter<span class="pl-k">-</span>cpplint, v0.<span class="pl-ii">1</span>.<span class="pl-ii">4</span> zenburn, v3.<span class="pl-ii">0</span>.<span class="pl-ii">0</span> <span class="pl-c"><span class="pl-c">#</span> Dev</span> <span class="pl-en">No</span> <span class="pl-en">dev</span> packages</pre></div>
<p dir="auto">I right-clicked on a folder in the tree view</p> <p dir="auto"><strong>Atom Version</strong>: 0.194.0<br> <strong>System</strong>: Windows 7 Entreprise<br> <strong>Thrown From</strong>: Atom Core</p> <h3 dir="auto">Stack Trace</h3> <p dir="auto">Uncaught Error: Cannot find module './context-menu'<br> Error: Cannot find module './context-menu'<br> at Function.Module._resolveFilename (module.js:328:15)<br> at Function.Module._load (module.js:270:25)<br> at Module.require (module.js:357:17)<br> at require (module.js:376:17)<br> at BrowserWindow. (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\browser\atom-window.js:152:27)<br> at emitOne (events.js:77:13)<br> at BrowserWindow.emit (events.js:166:7)<br> at callFunction (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)<br> at EventEmitter. (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)<br> at emitMany (events.js:108:13)</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77 Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:15) at Function.Module._load (module.js:270:25) at Module.require (module.js:357:17) at require (module.js:376:17) at BrowserWindow.&lt;anonymous&gt; (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\browser\atom-window.js:152:27) at emitOne (events.js:77:13) at BrowserWindow.emit (events.js:166:7) at callFunction (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:116:18) at EventEmitter.&lt;anonymous&gt; (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:208:14) at emitMany (events.js:108:13) at metaToValue (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77:15) at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:111:26) at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\context-menu-manager.js:170:31) at HTMLDocument.&lt;anonymous&gt; (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\window-event-handler.js:149:33) at HTMLDocument.handler (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\space-pen-extensions.js:112:34) at HTMLDocument.jQuery.event.dispatch (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9) at HTMLDocument.elemData.handle (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46) "><pre class="notranslate"><code class="notranslate">At C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77 Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:15) at Function.Module._load (module.js:270:25) at Module.require (module.js:357:17) at require (module.js:376:17) at BrowserWindow.&lt;anonymous&gt; (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\browser\atom-window.js:152:27) at emitOne (events.js:77:13) at BrowserWindow.emit (events.js:166:7) at callFunction (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:116:18) at EventEmitter.&lt;anonymous&gt; (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:208:14) at emitMany (events.js:108:13) at metaToValue (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77:15) at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:111:26) at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\context-menu-manager.js:170:31) at HTMLDocument.&lt;anonymous&gt; (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\window-event-handler.js:149:33) at HTMLDocument.handler (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\space-pen-extensions.js:112:34) at HTMLDocument.jQuery.event.dispatch (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9) at HTMLDocument.elemData.handle (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46) </code></pre></div> <h3 dir="auto">Commands</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" -4:55.5.0 editor:checkout-head-revision (atom-text-editor.editor.is-focused) 2x -3:41.6.0 window:focus-pane-on-right (atom-text-editor.editor) -3:17.5.0 application:add-project-folder (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel) -2:47.4.0 editor:newline (atom-text-editor.editor.is-focused) -2:38.2.0 core:cut (atom-text-editor.editor) -2:36.5.0 core:paste (atom-text-editor.editor.is-focused) -2:26.6.0 core:save (atom-text-editor.editor.is-focused) -2:20.6.0 core:move-down (atom-text-editor.editor) -2:20.4.0 autocomplete-plus:confirm (atom-text-editor.editor) -2:15.8.0 core:save (atom-text-editor.editor) -2:08.7.0 core:copy (atom-text-editor.editor.is-focused) -2:01.2.0 core:paste (atom-text-editor.editor.is-focused) -1:59.7.0 core:save (atom-text-editor.editor.is-focused) -1:52.2.0 core:paste (atom-text-editor.editor.is-focused) -1:51.6.0 core:save (atom-text-editor.editor.is-focused) -1:30.6.0 core:backspace (atom-text-editor.editor)"><pre class="notranslate"><code class="notranslate"> -4:55.5.0 editor:checkout-head-revision (atom-text-editor.editor.is-focused) 2x -3:41.6.0 window:focus-pane-on-right (atom-text-editor.editor) -3:17.5.0 application:add-project-folder (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel) -2:47.4.0 editor:newline (atom-text-editor.editor.is-focused) -2:38.2.0 core:cut (atom-text-editor.editor) -2:36.5.0 core:paste (atom-text-editor.editor.is-focused) -2:26.6.0 core:save (atom-text-editor.editor.is-focused) -2:20.6.0 core:move-down (atom-text-editor.editor) -2:20.4.0 autocomplete-plus:confirm (atom-text-editor.editor) -2:15.8.0 core:save (atom-text-editor.editor) -2:08.7.0 core:copy (atom-text-editor.editor.is-focused) -2:01.2.0 core:paste (atom-text-editor.editor.is-focused) -1:59.7.0 core:save (atom-text-editor.editor.is-focused) -1:52.2.0 core:paste (atom-text-editor.editor.is-focused) -1:51.6.0 core:save (atom-text-editor.editor.is-focused) -1:30.6.0 core:backspace (atom-text-editor.editor) </code></pre></div> <h3 dir="auto">Config</h3> <div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{ &quot;core&quot;: { &quot;ignoredNames&quot;: [ &quot;node_modules&quot; ], &quot;themes&quot;: [ &quot;atom-dark-ui&quot;, &quot;seti-syntax&quot; ], &quot;disabledPackages&quot;: [ &quot;Tern&quot; ], &quot;projectHome&quot;: &quot;Y:\\app-tfoumax&quot; }, &quot;editor&quot;: { &quot;invisibles&quot;: {}, &quot;softWrap&quot;: true, &quot;showIndentGuide&quot;: true } }"><pre class="notranslate">{ <span class="pl-ent">"core"</span>: { <span class="pl-ent">"ignoredNames"</span>: [ <span class="pl-s"><span class="pl-pds">"</span>node_modules<span class="pl-pds">"</span></span> ], <span class="pl-ent">"themes"</span>: [ <span class="pl-s"><span class="pl-pds">"</span>atom-dark-ui<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>seti-syntax<span class="pl-pds">"</span></span> ], <span class="pl-ent">"disabledPackages"</span>: [ <span class="pl-s"><span class="pl-pds">"</span>Tern<span class="pl-pds">"</span></span> ], <span class="pl-ent">"projectHome"</span>: <span class="pl-s"><span class="pl-pds">"</span>Y:<span class="pl-cce">\\</span>app-tfoumax<span class="pl-pds">"</span></span> }, <span class="pl-ent">"editor"</span>: { <span class="pl-ent">"invisibles"</span>: {}, <span class="pl-ent">"softWrap"</span>: <span class="pl-c1">true</span>, <span class="pl-ent">"showIndentGuide"</span>: <span class="pl-c1">true</span> } }</pre></div> <h3 dir="auto">Installed Packages</h3> <div class="highlight highlight-source-coffee notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# User autocomplete-plus, v2.12.0 autocomplete-snippets, v1.2.0 javascript-snippets, v1.0.0 jshint, v1.3.5 language-ejs, v0.1.0 linter, v0.12.1 pretty-json, v0.3.3 save-session, v0.14.0 Search, v0.4.0 seti-syntax, v0.4.0 # Dev No dev packages"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> User</span> autocomplete<span class="pl-k">-</span>plus, v2.<span class="pl-ii">12</span>.<span class="pl-ii">0</span> autocomplete<span class="pl-k">-</span>snippets, v1.<span class="pl-ii">2</span>.<span class="pl-ii">0</span> javascript<span class="pl-k">-</span>snippets, v1.<span class="pl-ii">0</span>.<span class="pl-ii">0</span> jshint, v1.<span class="pl-ii">3</span>.<span class="pl-ii">5</span> language<span class="pl-k">-</span>ejs, v0.<span class="pl-ii">1</span>.<span class="pl-ii">0</span> linter, v0.<span class="pl-ii">12</span>.<span class="pl-ii">1</span> pretty<span class="pl-k">-</span>json, v0.<span class="pl-ii">3</span>.<span class="pl-ii">3</span> save<span class="pl-k">-</span>session, v0.<span class="pl-ii">14</span>.<span class="pl-ii">0</span> Search, v0.<span class="pl-ii">4</span>.<span class="pl-ii">0</span> seti<span class="pl-k">-</span>syntax, v0.<span class="pl-ii">4</span>.<span class="pl-ii">0</span> <span class="pl-c"><span class="pl-c">#</span> Dev</span> <span class="pl-en">No</span> <span class="pl-en">dev</span> packages</pre></div>
1
<h3 dir="auto">Is there an existing issue for this?</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the existing issues</li> </ul> <h3 dir="auto">This issue exists in the latest npm version</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I am using the latest npm</li> </ul> <h3 dir="auto">Current Behavior</h3> <p dir="auto">We have a workspace configured 2 levels deep as follows:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=". +-- package.json +-- a | `-- package.json `-- b `-- package.json +-- b1 | `-- package.json `-- b2 `-- package.json"><pre class="notranslate"><code class="notranslate">. +-- package.json +-- a | `-- package.json `-- b `-- package.json +-- b1 | `-- package.json `-- b2 `-- package.json </code></pre></div> <p dir="auto">The root package.json has a script <code class="notranslate">npm run build --workspaces</code> to build all workspaces.<br> The package.json under <code class="notranslate">b</code> also has a script <code class="notranslate">npm run build --workspaces</code> to build b1 and b2.<br> When we run the root script, npm goes into a infinite loop of running the scripts.</p> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">npm should not hang. it should run the scripts as expected: a, b1, b2</p> <h3 dir="auto">Steps To Reproduce</h3> <p dir="auto">Create a configuration with a workspace hierarchy that has multiple levels.<br> For parent workspaces, define a script runs the children scripts with the --workspace option.</p> <h3 dir="auto">Environment</h3> <ul dir="auto"> <li>npm: 8.6.0</li> <li>Node.js: v14.18.1</li> <li>OS Name: MacOS</li> <li>System Model Name: Macbook Pro</li> </ul>
<h3 dir="auto">Is there an existing issue for this?</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the existing issues</li> </ul> <h3 dir="auto">This issue exists in the latest npm version</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I am using the latest npm</li> </ul> <h3 dir="auto">Current Behavior</h3> <p dir="auto">Given this project hierarchy:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="root │ package.json │ └───packages └───a │ package.json │ └───b package.json"><pre class="notranslate"><code class="notranslate">root │ package.json │ └───packages └───a │ package.json │ └───b package.json </code></pre></div> <p dir="auto">With root/package.json having:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" &quot;workspaces&quot;: [ &quot;packages/a&quot;, &quot;packages/a/b&quot; ]"><pre class="notranslate"><code class="notranslate"> "workspaces": [ "packages/a", "packages/a/b" ] </code></pre></div> <p dir="auto">If I run <code class="notranslate">npm run myscript</code> with <code class="notranslate">packages/a</code> as my current directory, <code class="notranslate">npm</code> will try to run <code class="notranslate">myscript</code> in <code class="notranslate">package/a</code> and <code class="notranslate">packages/a/b</code>.</p> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">Given the same project hierarchy I would expect:</p> <ol dir="auto"> <li><g-emoji class="g-emoji" alias="x" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/274c.png">❌</g-emoji> <code class="notranslate">npm run myscript</code> with the CWD being <code class="notranslate">packages/a</code> to run <strong>only</strong> <code class="notranslate">myscript</code> of <code class="notranslate">packages/a/package.json</code></li> <li><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png">✔️</g-emoji> <code class="notranslate">npm run myscript --workspace=packages/a</code> to run both on <code class="notranslate">a</code> and <code class="notranslate">b</code> (<a href="https://docs.npmjs.com/cli/v8/commands/npm-run-script#workspace" rel="nofollow">npm doc</a>):</li> </ol> <blockquote> <ul dir="auto"> <li>Path to a workspace directory</li> <li>Path to a parent workspace directory (will result in selecting all workspaces within that folder)</li> </ul> </blockquote> <ol start="3" dir="auto"> <li><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png">✔️</g-emoji> <code class="notranslate">npm run myscript --workspace=a</code> to run only on <code class="notranslate">a</code>. (<a href="https://docs.npmjs.com/cli/v8/commands/npm-run-script#workspace" rel="nofollow">npm doc</a>):</li> </ol> <blockquote> <p dir="auto">Workspace names</p> </blockquote> <p dir="auto">Note, 2&amp;3 are working as expected on the latest version</p> <h3 dir="auto">Steps To Reproduce</h3> <ol dir="auto"> <li>Scaffold NPM project.</li> </ol> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="mkdir test-run-script cd test-run-script npm init -y npm init -w packages/a -y npm init -w packages/a/b -y"><pre class="notranslate">mkdir test-run-script <span class="pl-c1">cd</span> test-run-script npm init -y npm init -w packages/a -y npm init -w packages/a/b -y</pre></div> <ol start="2" dir="auto"> <li>Add a dummy script in <code class="notranslate">packages/a/package.json</code> &amp; <code class="notranslate">packages/b/package.json</code>, e.g. `"myscript": "echo hello"</li> <li>Ensure your cwd is <code class="notranslate">packages/a</code> and run <code class="notranslate">npm run myscript</code>.</li> <li>Assert that hello is printed twice.</li> </ol> <h3 dir="auto">Environment</h3> <ul dir="auto"> <li>npm: <code class="notranslate">8.5.0 - 8.5.3</code> (latest</li> <li>Node.js: v16.14.0</li> <li>OS Name: W10</li> <li>System Model Name: N.A</li> <li>npm config:</li> </ul> <div class="highlight highlight-source-ini notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="; &quot;builtin&quot; config from C:\Users\USER_NAME\AppData\Roaming\npm\node_modules\npm\npmrc prefix = &quot;C:\\Users\\USER_NAME\\AppData\\Roaming\\npm&quot; ; &quot;user&quot; config from C:\Users\USER_NAME\.npmrc //registry.npmjs.org/:_authToken = (protected) ; node bin location = C:\Program Files\nodejs\node.exe ; cwd = C:\Users\USER_NAME\Repos\runScriptWorkspace ; HOME = C:\Users\USER_NAME ; Run `npm config ls -l` to show all defaults."><pre class="notranslate"><span class="pl-c"><span class="pl-c">;</span> "builtin" config from C:\Users\USER_NAME\AppData\Roaming\npm\node_modules\npm\npmrc</span> <span class="pl-k">prefix</span> = <span class="pl-s"><span class="pl-pds">"</span>C:\\Users\\USER_NAME\\AppData\\Roaming\\npm<span class="pl-pds">"</span></span> <span class="pl-c"><span class="pl-c">;</span> "user" config from C:\Users\USER_NAME\.npmrc</span> //registry.npmjs.org/:<span class="pl-k">_authToken</span> = (protected) <span class="pl-c"><span class="pl-c">;</span> node bin location = C:\Program Files\nodejs\node.exe</span> <span class="pl-c"><span class="pl-c">;</span> cwd = C:\Users\USER_NAME\Repos\runScriptWorkspace</span> <span class="pl-c"><span class="pl-c">;</span> HOME = C:\Users\USER_NAME</span> <span class="pl-c"><span class="pl-c">;</span> Run `npm config ls -l` to show all defaults.</span></pre></div>
1
<ul dir="auto"> <li>[x ] I have searched the <a href="https://github.com/zeit/next.js/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <p dir="auto">I am getting the following error in my React / Next.js app:<br> <em>Warning: Did not expect server HTML to contain a style in div.</em></p> <p dir="auto">This affects the way the page is rendered, with a lot of content either not rendered or without styles. I have not been able to pinpoint the origin of this error and have tried different things, i.e. configuring the _document.js page.</p>
<p dir="auto">I get a "module not found" error whenever I try to import a file from a symlinked folder:</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/943555/31979188-30f86246-b8fa-11e7-880f-47d34e3fa7d2.png"><img src="https://user-images.githubusercontent.com/943555/31979188-30f86246-b8fa-11e7-880f-47d34e3fa7d2.png" alt="screen shot 2017-10-24 at 8 29 57 pm" style="max-width: 100%;"></a></p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">Regardless of whether the folder is a symlink or not, the importing should work as if it was a normal folder.</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">It cannot find the javascript file inside the symlink folder.</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <p dir="auto">I've made a small example here just to demonstrate the issue: <a href="https://github.com/adrianmcli/nextjs-symlink-bug">https://github.com/adrianmcli/nextjs-symlink-bug</a></p> <p dir="auto">In order to reproduce this bug, clone the repo and run <code class="notranslate">yarn</code> or <code class="notranslate">npm install</code>, and then run <code class="notranslate">yarn dev</code> to run the app.</p> <ol dir="auto"> <li> <p dir="auto">Notice that <code class="notranslate">lib/symlink-folder</code> is a symlinked folder.</p> </li> <li> <p dir="auto">Go into <code class="notranslate">pages/index.js</code> and notice that it currently refers to <code class="notranslate">lib/normal-folder</code>.</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import someObj from '../lib/normal-folder/someText'"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">someObj</span> <span class="pl-k">from</span> <span class="pl-s">'../lib/normal-folder/someText'</span></pre></div> </li> <li> <p dir="auto">Change that import statement to refer to <code class="notranslate">lib/symlink-folder</code> instead.</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import someObj from '../lib/symlink-folder/someText'"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">someObj</span> <span class="pl-k">from</span> <span class="pl-s">'../lib/symlink-folder/someText'</span></pre></div> </li> <li> <p dir="auto">Notice that the app gives you a <code class="notranslate">module not found</code> error.</p> </li> </ol> <h2 dir="auto">Context</h2> <p dir="auto">I am trying to create a boilerplate project with Truffle and Next.js for some Dapp development. You can see my work-in-progress here: <a href="https://github.com/adrianmcli/truffle-next">https://github.com/adrianmcli/truffle-next</a></p>
0
<p dir="auto">It would be useful if view attributes could be passed to individual <code class="notranslate">choice</code> field options in a similar way as <code class="notranslate">attr</code> for most field types. Currently it seems not to be possible without duplicating both <code class="notranslate">ChoiceList</code> PHP class and duplicating both <code class="notranslate">choice_widget</code> and <code class="notranslate">widget_choice_options</code> template blocks.</p> <p dir="auto">If the core form module supported (arbitrary) attrs in choice options, it would allow easy extension of the core <code class="notranslate">choice</code> field type for custom types. Custom data could be passed to the template, allowing HTML like:</p> <div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;select name=&quot;search_engine_selection&quot;&gt; &lt;option value=&quot;google&quot; data-url=&quot;google_logo.gif&quot;&gt;Google&lt;/option&gt; &lt;option value=&quot;bing&quot; data-url=&quot;bing_logo.gif&quot;&gt;Bing&lt;/option&gt; &lt;/select&gt;"><pre class="notranslate"><span class="pl-kos">&lt;</span><span class="pl-ent">select</span> <span class="pl-c1">name</span>="<span class="pl-s">search_engine_selection</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">option</span> <span class="pl-c1">value</span>="<span class="pl-s">google</span>" <span class="pl-c1">data-url</span>="<span class="pl-s">google_logo.gif</span>"<span class="pl-kos">&gt;</span>Google<span class="pl-kos">&lt;/</span><span class="pl-ent">option</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">option</span> <span class="pl-c1">value</span>="<span class="pl-s">bing</span>" <span class="pl-c1">data-url</span>="<span class="pl-s">bing_logo.gif</span>"<span class="pl-kos">&gt;</span>Bing<span class="pl-kos">&lt;/</span><span class="pl-ent">option</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">select</span><span class="pl-kos">&gt;</span></pre></div> <p dir="auto">In my example, <code class="notranslate">data-url</code> would have been passed as an attribute to each option.</p>
<p dir="auto">It would be nice to be able to define extra HTML attributes for choices in a choice list that are added to the <code class="notranslate">option</code> or <code class="notranslate">input</code> tags.</p> <p dir="auto">Origin of this ticket: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3393283" data-permission-text="Title is private" data-url="https://github.com/symfony/symfony/issues/3456" data-hovercard-type="issue" data-hovercard-url="/symfony/symfony/issues/3456/hovercard" href="https://github.com/symfony/symfony/issues/3456">#3456</a></p>
1
<p dir="auto">Hi, for several days that I'm getting these errors. I have done make cleanall, make -C deps distclean but to no avail.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0xf3f): undefined reference to `dsyrk_' libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0x1089): undefined reference to `dgemm_' libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0x141a): undefined reference to `dpotrf_' ..."><pre class="notranslate"><code class="notranslate">libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0xf3f): undefined reference to `dsyrk_' libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0x1089): undefined reference to `dgemm_' libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0x141a): undefined reference to `dpotrf_' ... </code></pre></div>
<p dir="auto">Just tried to update this morning and I'm seeing the below after <code class="notranslate">make clean</code> and <code class="notranslate">make cleanall</code>; am I missing some other submodule update?</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="libtool: install: /usr/bin/install -c .libs/libarpack.lai /c/Users/karbarcca/julia/usr/lib/libarpack.la libtool: install: /usr/bin/install -c .libs/libarpack.a /c/Users/karbarcca/julia/usr/lib/libarpack.a libtool: install: chmod 644 /c/Users/karbarcca/julia/usr/lib/libarpack.a libtool: install: ranlib /c/Users/karbarcca/julia/usr/lib/libarpack.a /usr/bin/mkdir -p '/c/Users/karbarcca/julia/usr/lib/pkgconfig' /usr/bin/install -c -m 644 arpack.pc '/c/Users/karbarcca/julia/usr/lib/pkgconfig' Making install in TESTS Making install in EXAMPLES Making install in BAND Making install in COMPLEX Making install in NONSYM Making install in SIMPLE Making install in SVD Making install in SYM libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0xf3f): undefined reference to `dsyrk_' libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0x1089): undefined reference to `dgemm_' libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0x141a): undefined reference to `dpotrf_' libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0x1555): undefined reference to `dtrsm_' libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0x20bc): undefined reference to `zherk_' libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0x21fc): undefined reference to `zgemm_' libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0x266f): undefined reference to `zpotrf_' libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0x27d4): undefined reference to `ztrsm_' libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0x3341): undefined reference to `zherk_' libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0x3480): undefined reference to `zgemm_' libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0x38c5): undefined reference to `zpotrf_' libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0x3a2b): undefined reference to `ztrsm_' c:/users/karbarcca/mingw/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/4.8.1/../../../../x86_64-w64-mingw32/bin/ld.exe: libcholmod.a(cholmod_super_numeric.o): bad reloc addre ss 0x0 in section `.pdata' collect2.exe: error: ld returned 1 exit status Makefile:1430: recipe for target '/c/Users/karbarcca/julia/usr/bin/libspqr.dll' failed make[2]: *** [/c/Users/karbarcca/julia/usr/bin/libspqr.dll] Error 1 Makefile:101: recipe for target 'julia-release' failed make[1]: *** [julia-release] Error 2 Makefile:49: recipe for target 'release' failed make: *** [release] Error 2"><pre class="notranslate"><code class="notranslate">libtool: install: /usr/bin/install -c .libs/libarpack.lai /c/Users/karbarcca/julia/usr/lib/libarpack.la libtool: install: /usr/bin/install -c .libs/libarpack.a /c/Users/karbarcca/julia/usr/lib/libarpack.a libtool: install: chmod 644 /c/Users/karbarcca/julia/usr/lib/libarpack.a libtool: install: ranlib /c/Users/karbarcca/julia/usr/lib/libarpack.a /usr/bin/mkdir -p '/c/Users/karbarcca/julia/usr/lib/pkgconfig' /usr/bin/install -c -m 644 arpack.pc '/c/Users/karbarcca/julia/usr/lib/pkgconfig' Making install in TESTS Making install in EXAMPLES Making install in BAND Making install in COMPLEX Making install in NONSYM Making install in SIMPLE Making install in SVD Making install in SYM libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0xf3f): undefined reference to `dsyrk_' libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0x1089): undefined reference to `dgemm_' libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0x141a): undefined reference to `dpotrf_' libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0x1555): undefined reference to `dtrsm_' libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0x20bc): undefined reference to `zherk_' libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0x21fc): undefined reference to `zgemm_' libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0x266f): undefined reference to `zpotrf_' libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0x27d4): undefined reference to `ztrsm_' libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0x3341): undefined reference to `zherk_' libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0x3480): undefined reference to `zgemm_' libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0x38c5): undefined reference to `zpotrf_' libcholmod.a(cholmod_super_numeric.o):cholmod_super_numeric.c:(.text+0x3a2b): undefined reference to `ztrsm_' c:/users/karbarcca/mingw/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/4.8.1/../../../../x86_64-w64-mingw32/bin/ld.exe: libcholmod.a(cholmod_super_numeric.o): bad reloc addre ss 0x0 in section `.pdata' collect2.exe: error: ld returned 1 exit status Makefile:1430: recipe for target '/c/Users/karbarcca/julia/usr/bin/libspqr.dll' failed make[2]: *** [/c/Users/karbarcca/julia/usr/bin/libspqr.dll] Error 1 Makefile:101: recipe for target 'julia-release' failed make[1]: *** [julia-release] Error 2 Makefile:49: recipe for target 'release' failed make: *** [release] Error 2 </code></pre></div>
1
<p dir="auto">Steps to reproduce this issue:</p> <ol dir="auto"> <li>Go to: <a href="http://twitter.github.com/bootstrap/javascript.html#modals">http://twitter.github.com/bootstrap/javascript.html#modals</a></li> <li>Click: <code class="notranslate">Launch demo modal</code></li> <li>Click: <code class="notranslate">button</code> at the <strong>Popover in a modal</strong> section.</li> <li><em>Scroll</em> the modal's content</li> </ol> <p dir="auto">What happens:<br> Popover gets stuck, doesn't "follow" the <code class="notranslate">button</code></p> <p dir="auto">What should happen:<br> The same behavior found here: <a href="http://twitter.github.com/bootstrap/javascript.html#popovers">http://twitter.github.com/bootstrap/javascript.html#popovers</a> (<code class="notranslate">Click to toggle popover</code> + <em>scroll</em> the page)</p> <p dir="auto">Hope it helps :)</p>
<p dir="auto">The popover remains at the same position relative to the page and does not respect the position of the element it was initialized on. Below are two screenshots of the issue reproduced at <a href="http://twitter.github.com/bootstrap/javascript.html#modals">http://twitter.github.com/bootstrap/javascript.html#modals</a> (message me please if the links become broken).</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/221933b53baa341559aebd3686b5377d4f37be7ba8486e5ac7eb68027546fcfb/687474703a2f2f696d616765706c61792e6e65742f696d672f74796132323238303937332f7363722e747769747465725f626f6f7473747261705f325f2e315f2e302e706e67"><img src="https://camo.githubusercontent.com/221933b53baa341559aebd3686b5377d4f37be7ba8486e5ac7eb68027546fcfb/687474703a2f2f696d616765706c61792e6e65742f696d672f74796132323238303937332f7363722e747769747465725f626f6f7473747261705f325f2e315f2e302e706e67" alt="Scroll the page" data-canonical-src="http://imageplay.net/img/tya22280973/scr.twitter_bootstrap_2_.1_.0.png" style="max-width: 100%;"></a><br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/47b9f1ecfbeb2889f344e2bff5b735503655999b7fd82c511f8f832488b5fa50/687474703a2f2f696d616765706c61792e6e65742f696d672f74796132323238303937342f7363722e747769747465725f626f6f7473747261705f325f2e315f2e302e706e67"><img src="https://camo.githubusercontent.com/47b9f1ecfbeb2889f344e2bff5b735503655999b7fd82c511f8f832488b5fa50/687474703a2f2f696d616765706c61792e6e65742f696d672f74796132323238303937342f7363722e747769747465725f626f6f7473747261705f325f2e315f2e302e706e67" alt="Scroll the block" data-canonical-src="http://imageplay.net/img/tya22280974/scr.twitter_bootstrap_2_.1_.0.png" style="max-width: 100%;"></a></p>
1
<p dir="auto"><strong>Description</strong></p> <p dir="auto">Currently <code class="notranslate">BaseOperator</code> and <code class="notranslate">XComArgs</code> implements the same logic of <code class="notranslate">__lshift__</code>, <code class="notranslate">__rshift__</code> and others "chain" operations (<code class="notranslate">&gt;&gt;</code>, <code class="notranslate">&lt;&lt;</code>). It seems resonable to abstract this logic into <code class="notranslate">TaskMixin</code> to introduce some DRYness especially because the new concept of <code class="notranslate">TaskGroup</code> will also implement the same methods.</p> <p dir="auto"><strong>Use case / motivation</strong></p> <p dir="auto">Limit duplication of logic.</p> <p dir="auto"><strong>Related Issues</strong></p> <p dir="auto"><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="696712887" data-permission-text="Title is private" data-url="https://github.com/apache/airflow/issues/10827" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/10827/hovercard?comment_id=691927501&amp;comment_type=issue_comment" href="https://github.com/apache/airflow/pull/10827#issuecomment-691927501">#10827 (comment)</a><br> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="672667383" data-permission-text="Title is private" data-url="https://github.com/apache/airflow/issues/10153" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/10153/hovercard" href="https://github.com/apache/airflow/pull/10153">#10153</a></p>
<h3 dir="auto">Body</h3> <p dir="auto">We have a kind request for all the contributors to the latest <a href="https://pypi.org/project/apache-airflow/2.4.2rc1/" rel="nofollow">Apache Airflow RC 2.4.2rc1</a>.</p> <p dir="auto">Could you please help us to test the RC versions of Airflow?</p> <p dir="auto">Please let us know in the comment if the issue is addressed in the latest RC.</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/26347" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26347/hovercard">Retry on Airflow Schedule DAG Run DB Deadlock (#26347)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/anthonyp97/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/anthonyp97">@anthonyp97</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/26393" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26393/hovercard">Bump FAB to 4.1.4 (#26393)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/gmsantos/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gmsantos">@gmsantos</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/26463" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26463/hovercard">Revert "No grid auto-refresh for backfill dag runs (#25042)" (#26463)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/yingxuanwangxuan/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/yingxuanwangxuan">@yingxuanwangxuan</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Gollum999/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Gollum999">@Gollum999</a><br> Linked issues: <ul dir="auto"> <li><a href="https://github.com/apache/airflow/issues/24844" data-hovercard-type="issue" data-hovercard-url="/apache/airflow/issues/24844/hovercard">grid_data api keep refreshing when backfill DAG runs (#24844)</a></li> </ul> </li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/26491" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26491/hovercard">Fix version for a couple configurations (#26491)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jedcunningham/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jedcunningham">@jedcunningham</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/26509" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26509/hovercard">Fix airflow tasks run --local when dags_folder differs from that of processor (#26509)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/dstandish/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dstandish">@dstandish</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/26667" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26667/hovercard">Simplify RTIF.delete_old_records() (#26667)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/uranusjr/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/uranusjr">@uranusjr</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/dstandish/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dstandish">@dstandish</a><br> Linked issues: <ul dir="auto"> <li><a href="https://github.com/apache/airflow/issues/26548" data-hovercard-type="issue" data-hovercard-url="/apache/airflow/issues/26548/hovercard">Resolve warning about renderedtifields query (#26548)</a></li> </ul> </li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/26714" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26714/hovercard">Remove TaskFail duplicates check (#26714)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/dstandish/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dstandish">@dstandish</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/26716" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26716/hovercard">Fix non-hidden cumulative chart on duration view (#26716)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/dstandish/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dstandish">@dstandish</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/26717" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26717/hovercard">Fix task duration cumulative chart (#26717)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/dstandish/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dstandish">@dstandish</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/26722" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26722/hovercard">Handle mapped tasks in task duration chart (#26722)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/dstandish/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dstandish">@dstandish</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/26743" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26743/hovercard">Bump sphinx and sphinx-autoapi (#26743)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/potiuk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/potiuk">@potiuk</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/26750" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26750/hovercard">Remove DAG parsing from StandardTaskRunner (#26750)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ephraimbuddy/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ephraimbuddy">@ephraimbuddy</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/26762" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26762/hovercard">Allow retrieving error message from data.detail (#26762)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/pierrejeambrun/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/pierrejeambrun">@pierrejeambrun</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/26776" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26776/hovercard">Add restarting state to TaskState Enum in REST API (#26776)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ephraimbuddy/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ephraimbuddy">@ephraimbuddy</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/26778" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26778/hovercard">Don't re-patch pods that are already controlled by current worker (#26778)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/hterik/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/hterik">@hterik</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/26779" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26779/hovercard">Ensure the log messages from operators during parsing go somewhere (#26779)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/emredjan/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/emredjan">@emredjan</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ashb/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ashb">@ashb</a><br> Linked issues: <ul dir="auto"> <li><a href="https://github.com/apache/airflow/issues/26599" data-hovercard-type="issue" data-hovercard-url="/apache/airflow/issues/26599/hovercard">"Dependency already registered for DAG" warnings during runs in taskflow based tasks (#26599)</a></li> </ul> </li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/26781" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26781/hovercard">Add legend to datasets graph (#26781)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/bbovenzi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/bbovenzi">@bbovenzi</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/26789" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26789/hovercard">demote Removed state in priority for displaying task summaries (#26789)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/bbovenzi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/bbovenzi">@bbovenzi</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/26801" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26801/hovercard">Fix warning when using xcomarg dependencies (#26801)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ashb/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ashb">@ashb</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/26806" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26806/hovercard">Fix running debuggers inside <code class="notranslate">airflow tasks test</code> (#26806)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ashb/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ashb">@ashb</a><br> Linked issues: <ul dir="auto"> <li><a href="https://github.com/apache/airflow/issues/26802" data-hovercard-type="issue" data-hovercard-url="/apache/airflow/issues/26802/hovercard">pdb no longer works with airflow test command since 2.3.3 (#26802)</a></li> </ul> </li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/26815" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26815/hovercard">Move user-facing string to template (#26815)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/blag/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/blag">@blag</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/26822" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26822/hovercard">Add missing colors to state_color_mapping jinja global (#26822)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/pierrejeambrun/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/pierrejeambrun">@pierrejeambrun</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/26866" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26866/hovercard">Bump min version of jinja2 (#26866)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jedcunningham/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jedcunningham">@jedcunningham</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/26879" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26879/hovercard">Clean-ups around task-mapping code (#26879)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/uranusjr/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/uranusjr">@uranusjr</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/26880" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26880/hovercard">Add separate error handler for 405(Method not allowed) errors (#26880)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/PadmajaPeri/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/PadmajaPeri">@PadmajaPeri</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/dakshin-k/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dakshin-k">@dakshin-k</a><br> Linked issues: <ul dir="auto"> <li><a href="https://github.com/apache/airflow/issues/26375" data-hovercard-type="issue" data-hovercard-url="/apache/airflow/issues/26375/hovercard">Airflow Webserver returns incorrect HTTP Error Response for custom REST API endpoints (#26375)</a></li> </ul> </li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/26885" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26885/hovercard">Add missing AUTOINC/SERIAL for FAB tables (#26885)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ashb/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ashb">@ashb</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/26895" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26895/hovercard">Change dag audit log sort by date from asc to desc (#26895)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/bbovenzi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/bbovenzi">@bbovenzi</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/26897" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26897/hovercard">Fix dataset-triggered next run modal links (#26897)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/bbovenzi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/bbovenzi">@bbovenzi</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/apache/airflow/pull/26926" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/26926/hovercard">Fix auto refresh for graph view (#26926)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/pierrejeambrun/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/pierrejeambrun">@pierrejeambrun</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/27030" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/27030/hovercard">Remove double collection of dags in <code class="notranslate">airflow dags reserialize</code> (#27030)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ephraimbuddy/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ephraimbuddy">@ephraimbuddy</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/27046" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/27046/hovercard">Filter dataset dependency data on webserver (#27046)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/bbovenzi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/bbovenzi">@bbovenzi</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/27059" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/27059/hovercard">Make tracebacks opt-in (#27059)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jedcunningham/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jedcunningham">@jedcunningham</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/27064" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/27064/hovercard">Avoid 500 on dag redirect (#27064)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jedcunningham/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jedcunningham">@jedcunningham</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/27139" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/27139/hovercard">Fix yarn warning from d3-color (#27139)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/bbovenzi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/bbovenzi">@bbovenzi</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/27142" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/27142/hovercard">Don't overwrite connection extra with invalid json (#27142)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jedcunningham/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jedcunningham">@jedcunningham</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <a href="https://github.com/apache/airflow/pull/27143" data-hovercard-type="pull_request" data-hovercard-url="/apache/airflow/pull/27143/hovercard">Simplify origin string cleaning (#27143)</a>: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jedcunningham/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jedcunningham">@jedcunningham</a></li> </ul> <p dir="auto">Thanks to all who contributed to the release (probably not a complete list!):<br> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/dstandish/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dstandish">@dstandish</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/yingxuanwangxuan/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/yingxuanwangxuan">@yingxuanwangxuan</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/gmsantos/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gmsantos">@gmsantos</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/hterik/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/hterik">@hterik</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/blag/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/blag">@blag</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ashb/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ashb">@ashb</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/pierrejeambrun/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/pierrejeambrun">@pierrejeambrun</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/uranusjr/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/uranusjr">@uranusjr</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/bbovenzi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/bbovenzi">@bbovenzi</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jedcunningham/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jedcunningham">@jedcunningham</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/anthonyp97/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/anthonyp97">@anthonyp97</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/dakshin-k/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dakshin-k">@dakshin-k</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/potiuk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/potiuk">@potiuk</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/PadmajaPeri/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/PadmajaPeri">@PadmajaPeri</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/emredjan/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/emredjan">@emredjan</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ephraimbuddy/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ephraimbuddy">@ephraimbuddy</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Gollum999/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Gollum999">@Gollum999</a></p> <h3 dir="auto">Committer</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I acknowledge that I am a maintainer/committer of the Apache Airflow project.</li> </ul>
0
<h1 dir="auto">problem statement</h1> <ul dir="auto"> <li>node barks with warnings on every rejected 400/500 axios call</li> </ul> <p dir="auto">specficically, it complains with:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Warning: a promise was rejected with a non-error: [object Object] at IncomingMessage.handleStreamEnd (/path/to/my/pkg//node_modules/axios/lib/adapters/http.js:112:16) at emitNone (events.js:85:20) at IncomingMessage.emit (events.js:179:7) at endReadableNT (_stream_readable.js:913:12) at _combinedTickCallback (internal/process/next_tick.js:74:11) at process._tickDomainCallback (internal/process/next_tick.js:122:9)"><pre class="notranslate"><code class="notranslate">Warning: a promise was rejected with a non-error: [object Object] at IncomingMessage.handleStreamEnd (/path/to/my/pkg//node_modules/axios/lib/adapters/http.js:112:16) at emitNone (events.js:85:20) at IncomingMessage.emit (events.js:179:7) at endReadableNT (_stream_readable.js:913:12) at _combinedTickCallback (internal/process/next_tick.js:74:11) at process._tickDomainCallback (internal/process/next_tick.js:122:9) </code></pre></div> <h1 dir="auto">supplmental context</h1> <p dir="auto">see reference in where this happens:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// axios/lib/adapters/http.js (res.statusCode &gt;= 200 &amp;&amp; res.statusCode &lt; 300 ? resolve : reject)(response);"><pre class="notranslate"><span class="pl-c">// axios/lib/adapters/http.js</span> <span class="pl-kos">(</span><span class="pl-s1">res</span><span class="pl-kos">.</span><span class="pl-c1">statusCode</span> <span class="pl-c1">&gt;=</span> <span class="pl-c1">200</span> <span class="pl-c1">&amp;&amp;</span> <span class="pl-s1">res</span><span class="pl-kos">.</span><span class="pl-c1">statusCode</span> <span class="pl-c1">&lt;</span> <span class="pl-c1">300</span> ? <span class="pl-s1">resolve</span> : <span class="pl-s1">reject</span><span class="pl-kos">)</span><span class="pl-kos">(</span><span class="pl-s1">response</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <h1 dir="auto">solution</h1> <p dir="auto">it's been discussed somewhat in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="45530957" data-permission-text="Title is private" data-url="https://github.com/axios/axios/issues/18" data-hovercard-type="issue" data-hovercard-url="/axios/axios/issues/18/hovercard" href="https://github.com/axios/axios/issues/18">#18</a>, but I think we need to perhaps create a new Error proto, extend from error, and add all the response bits into it. perhaps provide <code class="notranslate">.toJSON</code> to serialize it down nicely to?</p>
<p dir="auto">It is good practice to reject promises with an error object because they have stack traces.</p> <p dir="auto"><a href="https://github.com/mzabriskie/axios/blob/d93df704a269d3cbf8f00bcd4b2b2489d5b74f49/lib/adapters/http.js#L73">When rejecting because of a bad status code</a>, I suggest rejecting with an error object, e.g. <code class="notranslate">BadStatusCodeError</code>. You could then attach the response object to the error object so it can be accessed in a rejection handler.</p>
1
<p dir="auto">Have tried the following and a couple of other iterations. I have jquery.js (full being brought in. Assume I don't need bootstrap-tooltips.js AND bootstrap-popover.js as well? Regardless, the problem isn't solved when including them. TIA.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" &lt;a data-toggle=&quot;popover&quot; class=&quot;m-btn blue rnd&quot; data-title= &quot;We are in"><pre class="notranslate"><code class="notranslate"> &lt;a data-toggle="popover" class="m-btn blue rnd" data-title= "We are in </code></pre></div> <p dir="auto">awwwwww" data-content="dolor sit amet."&gt;Click me!</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" &lt;script type=&quot;text/javascript&quot;&gt; $(function () { $('body').popover({ selector: 'a[rel=&quot;popover&quot;], [data-toggle=&quot;popover&quot;]' }); $('body').tooltip({ selector: 'a[rel=&quot;tooltip&quot;], [data-toggle=&quot;tooltip&quot;]' }); }); &lt;/script&gt;"><pre class="notranslate"><code class="notranslate"> &lt;script type="text/javascript"&gt; $(function () { $('body').popover({ selector: 'a[rel="popover"], [data-toggle="popover"]' }); $('body').tooltip({ selector: 'a[rel="tooltip"], [data-toggle="tooltip"]' }); }); &lt;/script&gt; </code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&lt;div class=&quot;btn-group&quot;&gt; &lt;a class=&quot;btn&quot; rel=&quot;popover&quot; data-content=&quot;Lorem ipsum dolor sit amet.&quot;&gt;Click me!&lt;/a&gt; &lt;/div&gt;"><pre lang="ħtml" class="notranslate"><code class="notranslate">&lt;div class="btn-group"&gt; &lt;a class="btn" rel="popover" data-content="Lorem ipsum dolor sit amet."&gt;Click me!&lt;/a&gt; &lt;/div&gt; </code></pre></div> <p dir="auto">Clicking the button results in a blank popover appearing. Am I doing something wrong or is this an issue? If so, is there any workaround in the meantime?</p> <p dir="auto">Thanks in advance.</p>
1
<p dir="auto">I've opened a plugins.js file from a theme from ThemeForrest, this file was containing a lot of packed js plugins of a total of 700kb of code.</p> <p dir="auto">The IDE simply got frozen for minutes until I could right click and close the tab.</p> <p dir="auto">Using 0.201 on Windows 7 64bits with 4gb of ram and i5 processor.</p>
<p dir="auto">So, I use my text editor for all kinds of things (writing code, reading readmes, editing dotfiles, etc). One of the things I do most often during any given day is open up large log files to troubleshoot Enterprise problems. These files can sometimes get as large as 500-800MB.</p> <p dir="auto">I just tried viewing a 350MB log file and Atom locked up immediately -- the file selector didn't change and the entire window went completely white 4 seconds after I tried viewing the file. I could still close the top level window, but we should still have better handling for this kind of thing.</p> <p dir="auto">Sublime Text 2 took about 55 seconds to open the file, but gave a nice progress indicator while it was loading:</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/402a77c9e676b55fa95c38e26e4345d76be5e51f1cb9b2e2790d94de0ce90c00/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f3234342f3139303337392f63306162633237652d376565352d313165322d386563342d3432303563646565306164302e706e67"><img src="https://camo.githubusercontent.com/402a77c9e676b55fa95c38e26e4345d76be5e51f1cb9b2e2790d94de0ce90c00/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f3234342f3139303337392f63306162633237652d376565352d313165322d386563342d3432303563646565306164302e706e67" alt="Screen Shot 2013-02-24 at 4 50 56 PM" data-canonical-src="https://f.cloud.github.com/assets/244/190379/c0abc27e-7ee5-11e2-8ec4-4205cdee0ad0.png" style="max-width: 100%;"></a></p> <p dir="auto">Once it loaded it was as responsive as any other file I load (scrolled fast, normal text highlight performance, etc). It would be nice if we set this as a baseline for expected behavior (progress bar + responsive after loading).</p>
1
<p dir="auto">With option "Use Preview Tabs" single click and double click on file in tree view open preview mode.<br> Double click in tree view as I understand must open normal tab.<br> Tested on Ubuntu 15.04 &amp; Windows 8</p>
<p dir="auto">Using Atom v0.206.0-4941229 on Mac OS X 10.10.3.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1038121/7951649/0ca54bf4-095f-11e5-9aa6-84c1474b35bd.png"><img src="https://cloud.githubusercontent.com/assets/1038121/7951649/0ca54bf4-095f-11e5-9aa6-84c1474b35bd.png" alt="screen shot 2015-06-02 at 7 38 29 pm" style="max-width: 100%;"></a></p> <h3 dir="auto">Repro Steps</h3> <ol dir="auto"> <li>Open Atom</li> <li>Open Settings View</li> <li>Navigate to Tabs package settings</li> <li>Ensure "Use Preview Tabs" is checked</li> <li>Close Settings View</li> <li>Double-click any file in Tree View</li> </ol> <p dir="auto"><strong>Expected:</strong> Tab's title to not be italic (italic is the indicator that it is temporary)<br> <strong>Actual:</strong> Tab's title is italic</p> <ol dir="auto"> <li>Double-click another file in Tree View</li> </ol> <p dir="auto"><strong>Expected:</strong> Second tab to open<br> <strong>Actual:</strong> New file overwrites the tab of the original file</p>
1
<h3 dir="auto">Is there an existing issue for this?</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the existing issues</li> </ul> <h3 dir="auto">Current Behavior</h3> <p dir="auto">I have a binary in <code class="notranslate">/usr/local/bin/</code>, which is not related to JavaScript. When I upgrade some package which has a global binary via <code class="notranslate">npm</code>, like <code class="notranslate">typescript</code> or <code class="notranslate">npm</code> itself, the SUID bit on that binary is reset, and I have to set it manually again.</p> <h3 dir="auto">Expected Behavior</h3> <p dir="auto"><code class="notranslate">npm</code> shouldn't touch foreign files in <code class="notranslate">/usr/local/bin/</code> at all.</p> <h3 dir="auto">Steps To Reproduce</h3> <p dir="auto"><code class="notranslate">sudo npm i -g npm</code></p> <h3 dir="auto">Environment</h3> <ul dir="auto"> <li>OS: Debian GNU/Linux 12</li> <li>Node: 14.17.6</li> <li>npm: 7.6.3</li> </ul>
<h3 dir="auto">Is there an existing issue for this?</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the existing issues</li> </ul> <h3 dir="auto">This issue exists in the latest npm version</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I am using the latest npm</li> </ul> <h3 dir="auto">Current Behavior</h3> <p dir="auto">After running <code class="notranslate">sudo npm i -g foo</code> files under <code class="notranslate">/usr/bin</code> that were owned by <code class="notranslate">root</code> are now owned by the current user.</p> <p dir="auto">I ran <code class="notranslate">sudo npm i -g typescript</code> and it was installed correctly I think. Then I ran <code class="notranslate">sudo npm i -g vscode-langservers-extracted</code> and I got <code class="notranslate">sudo: /usr/bin/sudo must be owned by uid 0 and have the setuid bit set</code>.</p> <p dir="auto">I think the packages I installed are irrelevant because I still get the same errors after installing other packages globally with sudo.</p> <p dir="auto">This looks similar to #19883 but as far as I can see, only <code class="notranslate">/usr/bin/</code> files are affected.</p> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">npm should not change ownership of files under <code class="notranslate">/usr/bin</code></p> <h3 dir="auto">Steps To Reproduce</h3> <ol dir="auto"> <li>In this environment...<br> Linux<br> npm v8.1.3</li> <li>With this config...<br> Default</li> <li>Run 'sudo npm i -g typescript' (the package doesn't matter)</li> <li>See: files under /usr/bin changing ownership</li> </ol> <p dir="auto">In this video, you can see what happens. When I stop writing is because I'm going to another tty as root to execute <code class="notranslate">chown root:root /usr/bin/sudo &amp;&amp; chmod 4755 /usr/bin/sudo</code>. The video also shows npm with version <code class="notranslate">v8.0.0</code> but I updated to <code class="notranslate">v8.1.3</code> and the same thing happens.</p> <details open="" class="details-reset border rounded-2"> <summary class="px-3 py-2"> <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-device-camera-video"> <path d="M16 3.75v8.5a.75.75 0 0 1-1.136.643L11 10.575v.675A1.75 1.75 0 0 1 9.25 13h-7.5A1.75 1.75 0 0 1 0 11.25v-6.5C0 3.784.784 3 1.75 3h7.5c.966 0 1.75.784 1.75 1.75v.675l3.864-2.318A.75.75 0 0 1 16 3.75Zm-6.5 1a.25.25 0 0 0-.25-.25h-7.5a.25.25 0 0 0-.25.25v6.5c0 .138.112.25.25.25h7.5a.25.25 0 0 0 .25-.25v-6.5ZM11 8.825l3.5 2.1v-5.85l-3.5 2.1Z"></path> </svg> <span aria-label="Video description 2021-11-07.14-39-43.mov" class="m-1">2021-11-07.14-39-43.mov</span> <span class="dropdown-caret"></span> </summary> <video src="https://user-images.githubusercontent.com/78516649/140661644-b54fa9ce-7ce1-43de-a1c5-2bd892ce29e6.mov" data-canonical-src="https://user-images.githubusercontent.com/78516649/140661644-b54fa9ce-7ce1-43de-a1c5-2bd892ce29e6.mov" controls="controls" muted="muted" class="d-block rounded-bottom-2 border-top width-fit" style="max-height:640px; min-height: 200px"> </video> </details> <h3 dir="auto">Environment</h3> <ul dir="auto"> <li>npm: 8.1.3</li> <li>Node: 16.11.0</li> <li>OS: Linux 5.10.70-1-MANJARO</li> <li>platform: Desktop amd64</li> <li>npm config:</li> </ul> <div class="highlight highlight-source-ini notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="; node bin location = /usr/bin/node ; cwd = /home/emi2k01/Documents/facu/tecmul/proyectofinal ; HOME = /home/emi2k01 ; Run `npm config ls -l` to show all defaults."><pre class="notranslate"><span class="pl-c"><span class="pl-c">;</span> node bin location = /usr/bin/node</span> <span class="pl-c"><span class="pl-c">;</span> cwd = /home/emi2k01/Documents/facu/tecmul/proyectofinal</span> <span class="pl-c"><span class="pl-c">;</span> HOME = /home/emi2k01</span> <span class="pl-c"><span class="pl-c">;</span> Run `npm config ls -l` to show all defaults.</span></pre></div>
1
<p dir="auto">why 992px is always there for bootstrap even if i changed it on customize page?</p> <p dir="auto">btw only ONE 992px are there on bootstrap css file the other is already 1024px:<br> <a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/media/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/media">@media</a> (min-width: 992px) {<br> .container {<br> width: 990px;<br> }<br> }</p> <p dir="auto">i already changed it on customize page to 1024px(@screen-md-min)</p>
<p dir="auto">When customizing bootstrap (e.g. <a href="http://getbootstrap.com/customize/?id=7880081" rel="nofollow">http://getbootstrap.com/customize/?id=7880081</a>) and setting<br> @screen-md-min = 1280px<br> @screen-lg-min = 1900px<br> @container-md = ((1220px + @grid-gutter-width))<br> @container-lg = ((1860px + @grid-gutter-width))</p> <p dir="auto">it will generate the default @screen-md-min 992px instead of 1280px bootstrap.css (line 700)</p> <div class="highlight highlight-source-css notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="@media (min-width: 768px) { .container { width: 750px; } } @media (min-width: 992px) {// WRONG .container { width: 1250px; } } @media (min-width: 1900px) { .container { width: 1890px; } }"><pre class="notranslate"><span class="pl-k">@media</span> (<span class="pl-c1">min-width</span><span class="pl-kos">:</span> <span class="pl-c1">768<span class="pl-smi">px</span></span>) { .<span class="pl-c1">container</span> { <span class="pl-c1">width</span><span class="pl-kos">:</span> <span class="pl-c1">750<span class="pl-smi">px</span></span>; } } <span class="pl-k">@media</span> (<span class="pl-c1">min-width</span><span class="pl-kos">:</span> <span class="pl-c1">992<span class="pl-smi">px</span></span>) {<span class="pl-c1">/</span><span class="pl-c1">/</span> WRONG .<span class="pl-c1">container</span> { <span class="pl-c1">width</span><span class="pl-kos">:</span> <span class="pl-c1">1250<span class="pl-smi">px</span></span>; } } <span class="pl-k">@media</span> (<span class="pl-c1">min-width</span><span class="pl-kos">:</span> <span class="pl-c1">1900<span class="pl-smi">px</span></span>) { .<span class="pl-c1">container</span> { <span class="pl-c1">width</span><span class="pl-kos">:</span> <span class="pl-c1">1890<span class="pl-smi">px</span></span>; } }</pre></div>
1
<p dir="auto">Greetings</p> <p dir="auto">I am using atom v0.145.0 in Linux x64 and when trying to use keyboard shortcuts, I discovered that atom itself recognizes shift + 7 as &amp; character, not / as it is recognized inside the editor itself. This seems like an issue with the module recognizing key inside atom.</p> <p dir="auto">If maybe it is only some configuration error, any feedback is well received</p> <p dir="auto">Kind regards</p>
<p dir="auto">Original issue: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="28529842" data-permission-text="Title is private" data-url="https://github.com/atom/atom/issues/1625" data-hovercard-type="issue" data-hovercard-url="/atom/atom/issues/1625/hovercard" href="https://github.com/atom/atom/issues/1625">atom/atom#1625</a></p> <hr> <p dir="auto">Use <a href="https://atom.io/packages/keyboard-localization" rel="nofollow">https://atom.io/packages/keyboard-localization</a> until this issue gets fixed (should be in the Blink upstream).</p>
1
<p dir="auto"><em>From <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/joaomoreno/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/joaomoreno">@joaomoreno</a> on March 29, 2016 13:31</em></p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/22350/14109628/2eb381c4-f5c3-11e5-940e-a99f173f245e.png"><img src="https://cloud.githubusercontent.com/assets/22350/14109628/2eb381c4-f5c3-11e5-940e-a99f173f245e.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">JS outline always shows duplicate entries for top level functions.</p> <p dir="auto"><em>Copied from original issue: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="144265592" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/4741" data-hovercard-type="issue" data-hovercard-url="/microsoft/vscode/issues/4741/hovercard" href="https://github.com/microsoft/vscode/issues/4741">microsoft/vscode#4741</a></em></p>
<p dir="auto">On Unixy platforms, tsc should by default not attempt to compile files that begin with a dot (hereafter called "hidden files"). These files are intended to be hidden, and in practice any file that has a name like <code class="notranslate">.foo.ts</code> is always a temporary file written by an editor while saving.</p> <p dir="auto">Currently, when you run <code class="notranslate">tsc --watch</code> in a directory and hit save in emacs, tsc picks up the hidden temporary file and attempts to compile it, resulting in duplicate definition errors (between the temporary file and the real source file). And it's surprisingly annoying to work around this problem -- you can't use a glob in your <code class="notranslate">tsconfig.json</code> <code class="notranslate">excludes</code> section, so you instead must enumerate each source file in a <code class="notranslate">files</code> section.</p> <p dir="auto">It is pretty standard on Unixes to ignore hidden files. For example the shell "*" ignores hidden files by default, as seen in the output of commands like <code class="notranslate">ls *</code> .</p> <p dir="auto">I cannot think of any circumstance where someone would want to bring in a hidden file to their compilation, but if they did perhaps they could do so manually via the <code class="notranslate">files</code> section -- it's definitely the sort of thing you ought to need to opt in to.</p>
0
<h1 dir="auto">PT Run will learn your most used search results and display those before others.</h1> <p dir="auto">PT Run will learn which search results you use the most. If I have 10 search results all more relevant to my input, then what I really want I must input the whole search criteria. An example of this is:<br> If I go and search for "Rider" using the normal windows search I only must write "Ri" before it shows up. If I do the same in PT Run I have to write "Rid" before it even shows up, and "Rider" before it becomes the top most result.</p> <p dir="auto">So the feature I am proposing is that PT Run will learn that when I input "R" I am most likely looking for "Rider" because that is the search result I use most often when I input anything with "R"</p>
<p dir="auto">Just an option to hide the system tray icon directly in the settings of the app.</p> <p dir="auto">If you'd like to see this feature implemented, add a 👍 reaction to this post.</p>
0
<h3 dir="auto">Describe your issue.</h3> <p dir="auto">It seems like there is a bug when we try to use <code class="notranslate">stats.zscore</code> with a masked array that has a masked <code class="notranslate">nan</code> value at index 0, and with <code class="notranslate">nan_policy='omit'</code>. In such cases, the function returns an array filled with <code class="notranslate">nan</code> values.</p> <p dir="auto">It seems to be caused by the following line, which checks whether the array is constant:</p> <p dir="auto"><a href="https://github.com/scipy/scipy/blob/dde50595862a4f9cede24b5d1c86935c30f1f88a/scipy/stats/_stats_py.py#L2877"><code class="notranslate">isconst = (_first(a, axis) == a).all(axis=axis, keepdims=True)</code></a></p> <p dir="auto">In this specific case, <code class="notranslate">isconst</code> is evaluated to <code class="notranslate">True</code> (when in reality it should be evaluated to <code class="notranslate">False</code>), and the outputs are set to nan (when in reality they shouldn't)</p> <h3 dir="auto">Reproducing Code Example</h3> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from scipy.stats import zscore import numpy as np # With a masked array A = np.array([np.nan, 1,2,3]) masked_A = np.ma.masked_array(A, np.isnan(A), copy=False, fill_value=np.nan) z = zscore(masked_A, axis=0, nan_policy='omit').filled() print(z) # [nan nan nan nan] : z is filled with nan (this is a bug?) # Without a masked array z = zscore(A, axis=0, nan_policy='omit') print(z) # [nan -1.22474487 0 -1.22474487] nan values are omitted (as expected)"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">scipy</span>.<span class="pl-s1">stats</span> <span class="pl-k">import</span> <span class="pl-s1">zscore</span> <span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span> <span class="pl-c"># With a masked array</span> <span class="pl-v">A</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">array</span>([<span class="pl-s1">np</span>.<span class="pl-s1">nan</span>, <span class="pl-c1">1</span>,<span class="pl-c1">2</span>,<span class="pl-c1">3</span>]) <span class="pl-s1">masked_A</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-s1">ma</span>.<span class="pl-en">masked_array</span>(<span class="pl-v">A</span>, <span class="pl-s1">np</span>.<span class="pl-en">isnan</span>(<span class="pl-v">A</span>), <span class="pl-s1">copy</span><span class="pl-c1">=</span><span class="pl-c1">False</span>, <span class="pl-s1">fill_value</span><span class="pl-c1">=</span><span class="pl-s1">np</span>.<span class="pl-s1">nan</span>) <span class="pl-s1">z</span> <span class="pl-c1">=</span> <span class="pl-en">zscore</span>(<span class="pl-s1">masked_A</span>, <span class="pl-s1">axis</span><span class="pl-c1">=</span><span class="pl-c1">0</span>, <span class="pl-s1">nan_policy</span><span class="pl-c1">=</span><span class="pl-s">'omit'</span>).<span class="pl-en">filled</span>() <span class="pl-en">print</span>(<span class="pl-s1">z</span>) <span class="pl-c"># [nan nan nan nan] : z is filled with nan (this is a bug?)</span> <span class="pl-c"># Without a masked array</span> <span class="pl-s1">z</span> <span class="pl-c1">=</span> <span class="pl-en">zscore</span>(<span class="pl-v">A</span>, <span class="pl-s1">axis</span><span class="pl-c1">=</span><span class="pl-c1">0</span>, <span class="pl-s1">nan_policy</span><span class="pl-c1">=</span><span class="pl-s">'omit'</span>) <span class="pl-en">print</span>(<span class="pl-s1">z</span>) <span class="pl-c"># [nan -1.22474487 0 -1.22474487] nan values are omitted (as expected)</span></pre></div> <h3 dir="auto">Error message</h3> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="No error message"><pre class="notranslate">No error message</pre></div> <h3 dir="auto">SciPy/NumPy/Python version information</h3> <p dir="auto"><code class="notranslate">1.9.3 1.23.5 sys.version_info(major=3, minor=10, micro=8, releaselevel='final', serial=0)</code></p>
<p dir="auto"><em>Note from <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mdhaber/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mdhaber">@mdhaber</a>: This is a deep issue that is slated to be addressed as part of <a href="https://chanzuckerberg.com/eoss/proposals/scipy-fundamental-tools-for-biomedical-research/" rel="nofollow">this project</a>. Before composing a PR related to this issue, please comment below or - even better - consider resolving another <a href="https://github.com/scipy/scipy/issues">open issue</a>!</em></p> <p dir="auto">This is the general case for <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="269763965" data-permission-text="Title is private" data-url="https://github.com/scipy/scipy/issues/8108" data-hovercard-type="pull_request" data-hovercard-url="/scipy/scipy/pull/8108/hovercard" href="https://github.com/scipy/scipy/pull/8108">#8108</a><br> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="269763965" data-permission-text="Title is private" data-url="https://github.com/scipy/scipy/issues/8108" data-hovercard-type="pull_request" data-hovercard-url="/scipy/scipy/pull/8108/hovercard?comment_id=377947155&amp;comment_type=issue_comment" href="https://github.com/scipy/scipy/pull/8108#issuecomment-377947155">#8108 (comment)</a></p> <p dir="auto">currently there is no special handling of nans.</p> <p dir="auto">AFAICS, trimming functions trim1, trimboth treat nan as an extreme observation.</p> <h3 dir="auto">Reproducing code example:</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&gt;&gt;&gt; stats.zscore([1,1,1,1,1.1, 5, np.nan]) array([ nan, nan, nan, nan, nan, nan, nan]) &gt;&gt;&gt; stats.sigmaclip([1,1,1,1,1.1, 5, np.nan]) &lt;several RuntimeWarning: invalid value encountered in ...&gt; SigmaclipResult(clipped=array([], dtype=float64), lower=nan, upper=nan) &gt;&gt;&gt; stats.trimboth([1,1,1,1,1.1, 5, -5, np.nan], 0.25) array([ 1. , 1. , 1. , 1.1]) "><pre class="notranslate"><code class="notranslate">&gt;&gt;&gt; stats.zscore([1,1,1,1,1.1, 5, np.nan]) array([ nan, nan, nan, nan, nan, nan, nan]) &gt;&gt;&gt; stats.sigmaclip([1,1,1,1,1.1, 5, np.nan]) &lt;several RuntimeWarning: invalid value encountered in ...&gt; SigmaclipResult(clipped=array([], dtype=float64), lower=nan, upper=nan) &gt;&gt;&gt; stats.trimboth([1,1,1,1,1.1, 5, -5, np.nan], 0.25) array([ 1. , 1. , 1. , 1.1]) </code></pre></div>
1
<h2 dir="auto">Feature request</h2> <p dir="auto"><strong>What is the expected behavior?</strong></p> <p dir="auto">Build simple bundle without any runtime chunk code overhead.<br> Stackoverflow question: <a href="https://stackoverflow.com/questions/68369841/webpack-simple-bundle-no-runtime-chunk" rel="nofollow">https://stackoverflow.com/questions/68369841/webpack-simple-bundle-no-runtime-chunk</a></p> <p dir="auto"><strong>What is motivation or use case for adding/changing the behavior?</strong></p> <p dir="auto">Building simple, independent bundles. No need for additional runtime code (useless overhead).</p> <p dir="auto"><strong>How should this be implemented in your opinion?</strong><br> Add either:</p> <ul dir="auto"> <li>target: 'bundle'</li> <li>optimization.runtimeChunk: 'disabled'</li> </ul> <p dir="auto"><strong>Are you willing to work on this yourself?</strong><br> no</p>
<p dir="auto">Code in question:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" import cls from 'classnames'; // ... const dropdownClassName = cls({ [baseClassName]: true, [`${baseClassName}_is-open`]: uiState.isOpen, [`${baseClassName}_is-selected`]: isSelected, [`${baseClassName}_is-invalid`]: canShowErrors &amp;&amp; !isValid, [`${baseClassName}_is-valid`]: canShowValid &amp;&amp; isValid, [`${baseClassName}_is-filled`]: Boolean(this.getValue()), });"><pre class="notranslate"> <span class="pl-k">import</span> <span class="pl-s1">cls</span> <span class="pl-k">from</span> <span class="pl-s">'classnames'</span><span class="pl-kos">;</span> <span class="pl-c">// ...</span> <span class="pl-k">const</span> <span class="pl-s1">dropdownClassName</span> <span class="pl-c1">=</span> <span class="pl-en">cls</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-kos">[</span><span class="pl-s1">baseClassName</span><span class="pl-kos">]</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-s">`<span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">baseClassName</span><span class="pl-kos">}</span></span>_is-open`</span><span class="pl-kos">]</span>: <span class="pl-s1">uiState</span><span class="pl-kos">.</span><span class="pl-c1">isOpen</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-s">`<span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">baseClassName</span><span class="pl-kos">}</span></span>_is-selected`</span><span class="pl-kos">]</span>: <span class="pl-s1">isSelected</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-s">`<span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">baseClassName</span><span class="pl-kos">}</span></span>_is-invalid`</span><span class="pl-kos">]</span>: <span class="pl-s1">canShowErrors</span> <span class="pl-c1">&amp;&amp;</span> <span class="pl-c1">!</span><span class="pl-s1">isValid</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-s">`<span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">baseClassName</span><span class="pl-kos">}</span></span>_is-valid`</span><span class="pl-kos">]</span>: <span class="pl-s1">canShowValid</span> <span class="pl-c1">&amp;&amp;</span> <span class="pl-s1">isValid</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-s">`<span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">baseClassName</span><span class="pl-kos">}</span></span>_is-filled`</span><span class="pl-kos">]</span>: <span class="pl-v">Boolean</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">getValue</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto">After <code class="notranslate">beta.8</code> there is <code class="notranslate">SyntaxError: Unexpected )</code> (note 1 opening paren and 2 closing ones):</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var dropdownClassName = /* harmony import */ __WEBPACK_IMPORTED_MODULE_2_classnames___default.a.call( undefined, _cls = {}, _cls[baseClassName] = true, _cls[baseClassName + '_is-open'] = uiState.isOpen, _cls[baseClassName + '_is-selected'] = isSelected, _cls[baseClassName + '_is-invalid'] = canShowErrors &amp;&amp; !isValid, _cls[baseClassName + '_is-valid'] = canShowValid &amp;&amp; isValid, _cls[baseClassName + '_is-filled'] = Boolean(this.getValue()), _cls ));"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">dropdownClassName</span> <span class="pl-c1">=</span> <span class="pl-c">/* harmony import */</span> <span class="pl-s1">__WEBPACK_IMPORTED_MODULE_2_classnames___default</span><span class="pl-kos">.</span><span class="pl-c1">a</span><span class="pl-kos">.</span><span class="pl-en">call</span><span class="pl-kos">(</span> <span class="pl-c1">undefined</span><span class="pl-kos">,</span> <span class="pl-s1">_cls</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span><span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-s1">_cls</span><span class="pl-kos">[</span><span class="pl-s1">baseClassName</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-c1">true</span><span class="pl-kos">,</span> <span class="pl-s1">_cls</span><span class="pl-kos">[</span><span class="pl-s1">baseClassName</span> <span class="pl-c1">+</span> <span class="pl-s">'_is-open'</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-s1">uiState</span><span class="pl-kos">.</span><span class="pl-c1">isOpen</span><span class="pl-kos">,</span> <span class="pl-s1">_cls</span><span class="pl-kos">[</span><span class="pl-s1">baseClassName</span> <span class="pl-c1">+</span> <span class="pl-s">'_is-selected'</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-s1">isSelected</span><span class="pl-kos">,</span> <span class="pl-s1">_cls</span><span class="pl-kos">[</span><span class="pl-s1">baseClassName</span> <span class="pl-c1">+</span> <span class="pl-s">'_is-invalid'</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-s1">canShowErrors</span> <span class="pl-c1">&amp;&amp;</span> <span class="pl-c1">!</span><span class="pl-s1">isValid</span><span class="pl-kos">,</span> <span class="pl-s1">_cls</span><span class="pl-kos">[</span><span class="pl-s1">baseClassName</span> <span class="pl-c1">+</span> <span class="pl-s">'_is-valid'</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-s1">canShowValid</span> <span class="pl-c1">&amp;&amp;</span> <span class="pl-s1">isValid</span><span class="pl-kos">,</span> <span class="pl-s1">_cls</span><span class="pl-kos">[</span><span class="pl-s1">baseClassName</span> <span class="pl-c1">+</span> <span class="pl-s">'_is-filled'</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-v">Boolean</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">getValue</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-s1">_cls</span> <span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto">After <code class="notranslate">beta.7</code> everything is fine (2 opening and 2 closing parens):</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var dropdownClassName = /* harmony import */ __WEBPACK_IMPORTED_MODULE_2_classnames___default.a.bind()(( _cls = {}, _cls[baseClassName] = true, _cls[baseClassName + '_is-open'] = uiState.isOpen, _cls[baseClassName + '_is-selected'] = isSelected, _cls[baseClassName + '_is-invalid'] = canShowErrors &amp;&amp; !isValid, _cls[baseClassName + '_is-valid'] = canShowValid &amp;&amp; isValid, _cls[baseClassName + '_is-filled'] = Boolean(this.getValue()), _cls ));"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">dropdownClassName</span> <span class="pl-c1">=</span> <span class="pl-c">/* harmony import */</span> <span class="pl-s1">__WEBPACK_IMPORTED_MODULE_2_classnames___default</span><span class="pl-kos">.</span><span class="pl-c1">a</span><span class="pl-kos">.</span><span class="pl-en">bind</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">(</span><span class="pl-kos">(</span> <span class="pl-s1">_cls</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span><span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-s1">_cls</span><span class="pl-kos">[</span><span class="pl-s1">baseClassName</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-c1">true</span><span class="pl-kos">,</span> <span class="pl-s1">_cls</span><span class="pl-kos">[</span><span class="pl-s1">baseClassName</span> <span class="pl-c1">+</span> <span class="pl-s">'_is-open'</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-s1">uiState</span><span class="pl-kos">.</span><span class="pl-c1">isOpen</span><span class="pl-kos">,</span> <span class="pl-s1">_cls</span><span class="pl-kos">[</span><span class="pl-s1">baseClassName</span> <span class="pl-c1">+</span> <span class="pl-s">'_is-selected'</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-s1">isSelected</span><span class="pl-kos">,</span> <span class="pl-s1">_cls</span><span class="pl-kos">[</span><span class="pl-s1">baseClassName</span> <span class="pl-c1">+</span> <span class="pl-s">'_is-invalid'</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-s1">canShowErrors</span> <span class="pl-c1">&amp;&amp;</span> <span class="pl-c1">!</span><span class="pl-s1">isValid</span><span class="pl-kos">,</span> <span class="pl-s1">_cls</span><span class="pl-kos">[</span><span class="pl-s1">baseClassName</span> <span class="pl-c1">+</span> <span class="pl-s">'_is-valid'</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-s1">canShowValid</span> <span class="pl-c1">&amp;&amp;</span> <span class="pl-s1">isValid</span><span class="pl-kos">,</span> <span class="pl-s1">_cls</span><span class="pl-kos">[</span><span class="pl-s1">baseClassName</span> <span class="pl-c1">+</span> <span class="pl-s">'_is-filled'</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-v">Boolean</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">getValue</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-s1">_cls</span> <span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto">Code was run through <code class="notranslate">babel</code> with this <code class="notranslate">.babelrc</code></p> <div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{ &quot;plugins&quot;: [ &quot;transform-decorators-legacy&quot;, &quot;transform-class-properties&quot;, &quot;transform-proto-to-assign&quot;, &quot;transform-object-set-prototype-of-to-assign&quot;, [&quot;transform-builtin-extend&quot;, { &quot;globals&quot;: [&quot;Error&quot;], &quot;approximate&quot;: true }], &quot;transform-object-rest-spread&quot;, [&quot;transform-es2015-template-literals&quot;, { &quot;loose&quot;: true }], &quot;transform-es2015-literals&quot;, &quot;transform-es2015-function-name&quot;, &quot;transform-es2015-arrow-functions&quot;, &quot;transform-es2015-block-scoped-functions&quot;, [&quot;transform-es2015-classes&quot;, { &quot;loose&quot;: true }], &quot;transform-es2015-object-super&quot;, &quot;transform-es2015-shorthand-properties&quot;, &quot;transform-es2015-duplicate-keys&quot;, [&quot;transform-es2015-computed-properties&quot;, { &quot;loose&quot;: true }], [&quot;transform-es2015-for-of&quot;, { &quot;loose&quot; : true}], &quot;transform-es2015-sticky-regex&quot;, &quot;transform-es2015-unicode-regex&quot;, &quot;check-es2015-constants&quot;, [&quot;transform-es2015-spread&quot;, { &quot;loose&quot;: true }], &quot;transform-es2015-parameters&quot;, [&quot;transform-es2015-destructuring&quot;, { &quot;loose&quot;: true }], &quot;transform-es2015-block-scoping&quot;, &quot;transform-es2015-typeof-symbol&quot;, &quot;transform-react-jsx&quot;, &quot;transform-react-display-name&quot; ] }"><pre class="notranslate">{ <span class="pl-ent">"plugins"</span>: [ <span class="pl-s"><span class="pl-pds">"</span>transform-decorators-legacy<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>transform-class-properties<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>transform-proto-to-assign<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>transform-object-set-prototype-of-to-assign<span class="pl-pds">"</span></span>, [<span class="pl-s"><span class="pl-pds">"</span>transform-builtin-extend<span class="pl-pds">"</span></span>, { <span class="pl-ent">"globals"</span>: [<span class="pl-s"><span class="pl-pds">"</span>Error<span class="pl-pds">"</span></span>], <span class="pl-ent">"approximate"</span>: <span class="pl-c1">true</span> }], <span class="pl-s"><span class="pl-pds">"</span>transform-object-rest-spread<span class="pl-pds">"</span></span>, [<span class="pl-s"><span class="pl-pds">"</span>transform-es2015-template-literals<span class="pl-pds">"</span></span>, { <span class="pl-ent">"loose"</span>: <span class="pl-c1">true</span> }], <span class="pl-s"><span class="pl-pds">"</span>transform-es2015-literals<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>transform-es2015-function-name<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>transform-es2015-arrow-functions<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>transform-es2015-block-scoped-functions<span class="pl-pds">"</span></span>, [<span class="pl-s"><span class="pl-pds">"</span>transform-es2015-classes<span class="pl-pds">"</span></span>, { <span class="pl-ent">"loose"</span>: <span class="pl-c1">true</span> }], <span class="pl-s"><span class="pl-pds">"</span>transform-es2015-object-super<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>transform-es2015-shorthand-properties<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>transform-es2015-duplicate-keys<span class="pl-pds">"</span></span>, [<span class="pl-s"><span class="pl-pds">"</span>transform-es2015-computed-properties<span class="pl-pds">"</span></span>, { <span class="pl-ent">"loose"</span>: <span class="pl-c1">true</span> }], [<span class="pl-s"><span class="pl-pds">"</span>transform-es2015-for-of<span class="pl-pds">"</span></span>, { <span class="pl-ent">"loose"</span> : <span class="pl-c1">true</span>}], <span class="pl-s"><span class="pl-pds">"</span>transform-es2015-sticky-regex<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>transform-es2015-unicode-regex<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>check-es2015-constants<span class="pl-pds">"</span></span>, [<span class="pl-s"><span class="pl-pds">"</span>transform-es2015-spread<span class="pl-pds">"</span></span>, { <span class="pl-ent">"loose"</span>: <span class="pl-c1">true</span> }], <span class="pl-s"><span class="pl-pds">"</span>transform-es2015-parameters<span class="pl-pds">"</span></span>, [<span class="pl-s"><span class="pl-pds">"</span>transform-es2015-destructuring<span class="pl-pds">"</span></span>, { <span class="pl-ent">"loose"</span>: <span class="pl-c1">true</span> }], <span class="pl-s"><span class="pl-pds">"</span>transform-es2015-block-scoping<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>transform-es2015-typeof-symbol<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>transform-react-jsx<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>transform-react-display-name<span class="pl-pds">"</span></span> ] }</pre></div> <p dir="auto">Versions of <code class="notranslate">babel</code> packages:</p> <div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{ &quot;babel-cli&quot;: &quot;6.9.0&quot;, &quot;babel-loader&quot;: &quot;6.2.4&quot;, &quot;babel-plugin-check-es2015-constants&quot;: &quot;6.8.0&quot;, &quot;babel-plugin-transform-async-functions&quot;: &quot;6.8.0&quot;, &quot;babel-plugin-transform-builtin-extend&quot;: &quot;1.1.0&quot;, &quot;babel-plugin-transform-class-properties&quot;: &quot;6.9.1&quot;, &quot;babel-plugin-transform-decorators-legacy&quot;: &quot;1.3.4&quot;, &quot;babel-plugin-transform-es2015-arrow-functions&quot;: &quot;6.8.0&quot;, &quot;babel-plugin-transform-es2015-block-scoped-functions&quot;: &quot;6.8.0&quot;, &quot;babel-plugin-transform-es2015-block-scoping&quot;: &quot;6.9.0&quot;, &quot;babel-plugin-transform-es2015-classes&quot;: &quot;6.9.0&quot;, &quot;babel-plugin-transform-es2015-computed-properties&quot;: &quot;6.8.0&quot;, &quot;babel-plugin-transform-es2015-destructuring&quot;: &quot;6.9.0&quot;, &quot;babel-plugin-transform-es2015-duplicate-keys&quot;: &quot;6.8.0&quot;, &quot;babel-plugin-transform-es2015-for-of&quot;: &quot;6.8.0&quot;, &quot;babel-plugin-transform-es2015-function-name&quot;: &quot;6.9.0&quot;, &quot;babel-plugin-transform-es2015-literals&quot;: &quot;6.8.0&quot;, &quot;babel-plugin-transform-es2015-object-super&quot;: &quot;6.8.0&quot;, &quot;babel-plugin-transform-es2015-parameters&quot;: &quot;6.9.0&quot;, &quot;babel-plugin-transform-es2015-shorthand-properties&quot;: &quot;6.8.0&quot;, &quot;babel-plugin-transform-es2015-spread&quot;: &quot;6.8.0&quot;, &quot;babel-plugin-transform-es2015-sticky-regex&quot;: &quot;6.8.0&quot;, &quot;babel-plugin-transform-es2015-template-literals&quot;: &quot;6.8.0&quot;, &quot;babel-plugin-transform-es2015-typeof-symbol&quot;: &quot;6.8.0&quot;, &quot;babel-plugin-transform-es2015-unicode-regex&quot;: &quot;6.8.0&quot;, &quot;babel-plugin-transform-object-rest-spread&quot;: &quot;6.8.0&quot;, &quot;babel-plugin-transform-object-set-prototype-of-to-assign&quot;: &quot;6.8.0&quot;, &quot;babel-plugin-transform-proto-to-assign&quot;: &quot;6.9.0&quot;, &quot;babel-plugin-transform-react-display-name&quot;: &quot;6.8.0&quot;, &quot;babel-plugin-transform-react-jsx&quot;: &quot;6.8.0&quot;, }"><pre class="notranslate">{ <span class="pl-ent">"babel-cli"</span>: <span class="pl-s"><span class="pl-pds">"</span>6.9.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-loader"</span>: <span class="pl-s"><span class="pl-pds">"</span>6.2.4<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-plugin-check-es2015-constants"</span>: <span class="pl-s"><span class="pl-pds">"</span>6.8.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-plugin-transform-async-functions"</span>: <span class="pl-s"><span class="pl-pds">"</span>6.8.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-plugin-transform-builtin-extend"</span>: <span class="pl-s"><span class="pl-pds">"</span>1.1.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-plugin-transform-class-properties"</span>: <span class="pl-s"><span class="pl-pds">"</span>6.9.1<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-plugin-transform-decorators-legacy"</span>: <span class="pl-s"><span class="pl-pds">"</span>1.3.4<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-plugin-transform-es2015-arrow-functions"</span>: <span class="pl-s"><span class="pl-pds">"</span>6.8.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-plugin-transform-es2015-block-scoped-functions"</span>: <span class="pl-s"><span class="pl-pds">"</span>6.8.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-plugin-transform-es2015-block-scoping"</span>: <span class="pl-s"><span class="pl-pds">"</span>6.9.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-plugin-transform-es2015-classes"</span>: <span class="pl-s"><span class="pl-pds">"</span>6.9.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-plugin-transform-es2015-computed-properties"</span>: <span class="pl-s"><span class="pl-pds">"</span>6.8.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-plugin-transform-es2015-destructuring"</span>: <span class="pl-s"><span class="pl-pds">"</span>6.9.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-plugin-transform-es2015-duplicate-keys"</span>: <span class="pl-s"><span class="pl-pds">"</span>6.8.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-plugin-transform-es2015-for-of"</span>: <span class="pl-s"><span class="pl-pds">"</span>6.8.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-plugin-transform-es2015-function-name"</span>: <span class="pl-s"><span class="pl-pds">"</span>6.9.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-plugin-transform-es2015-literals"</span>: <span class="pl-s"><span class="pl-pds">"</span>6.8.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-plugin-transform-es2015-object-super"</span>: <span class="pl-s"><span class="pl-pds">"</span>6.8.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-plugin-transform-es2015-parameters"</span>: <span class="pl-s"><span class="pl-pds">"</span>6.9.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-plugin-transform-es2015-shorthand-properties"</span>: <span class="pl-s"><span class="pl-pds">"</span>6.8.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-plugin-transform-es2015-spread"</span>: <span class="pl-s"><span class="pl-pds">"</span>6.8.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-plugin-transform-es2015-sticky-regex"</span>: <span class="pl-s"><span class="pl-pds">"</span>6.8.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-plugin-transform-es2015-template-literals"</span>: <span class="pl-s"><span class="pl-pds">"</span>6.8.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-plugin-transform-es2015-typeof-symbol"</span>: <span class="pl-s"><span class="pl-pds">"</span>6.8.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-plugin-transform-es2015-unicode-regex"</span>: <span class="pl-s"><span class="pl-pds">"</span>6.8.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-plugin-transform-object-rest-spread"</span>: <span class="pl-s"><span class="pl-pds">"</span>6.8.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-plugin-transform-object-set-prototype-of-to-assign"</span>: <span class="pl-s"><span class="pl-pds">"</span>6.8.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-plugin-transform-proto-to-assign"</span>: <span class="pl-s"><span class="pl-pds">"</span>6.9.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-plugin-transform-react-display-name"</span>: <span class="pl-s"><span class="pl-pds">"</span>6.8.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"babel-plugin-transform-react-jsx"</span>: <span class="pl-s"><span class="pl-pds">"</span>6.8.0<span class="pl-pds">"</span></span>, }</pre></div>
0
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=drazzib" rel="nofollow">Damien Raude-Morvan</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-7352?redirect=false" rel="nofollow">SPR-7352</a></strong> and commented</p> <p dir="auto">I'm Debian Maintainer of SpringFramework package [1].<br> I'm working on integrating Spring Framework 3.0.3 into Debian and replace our libspring-2.5-java package.</p> <p dir="auto">Right now, I'm reviewing source code of Spring Build (aka Ivy-overlay spring build system) and I'm a bit disapointed to see that :</p> <ul dir="auto"> <li>There is no copyright / global licence file [1]</li> <li>All files are missing a licence header (like other Spring project does)</li> </ul> <p dir="auto">Could you please have a look at this issue and update this project ?</p> <p dir="auto">In current state, Spring Build is a non-free module and cannot be considered free software.</p> <p dir="auto">[1] <a href="https://src.springframework.org/svn/spring-build/trunk/" rel="nofollow">https://src.springframework.org/svn/spring-build/trunk/</a></p> <p dir="auto">Regards,<br> Damien Raude-Morvan</p> <hr> <p dir="auto"><strong>Issue Links:</strong></p> <ul dir="auto"> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398106095" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/12010" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/12010/hovercard" href="https://github.com/spring-projects/spring-framework/issues/12010">#12010</a> Please provide a LICENSE file for spring-build subproject (<em><strong>"is duplicated by"</strong></em>)</li> </ul>
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=nilesh" rel="nofollow">Nilesh Kapadia</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-1219?redirect=false" rel="nofollow">SPR-1219</a></strong> and commented</p> <p dir="auto">I have an application that registers JMX beans using MBeanExporter. If I deploy this application twice I get org.springframework.beans.factory.BeanCreationException caused by javax.management.InstanceAlreadyExistsException because the MBeans are already registered under the given name, which causes the second app to fail to start. I have worked around this by making the name configurable at deploy time.</p> <p dir="auto">MBeanExporter could be improved by having a way to either recover from this (and not even bother to register the JMX beans), or to dynamically generate the names somehow to avoid a conflict?</p> <p dir="auto">In reference to this thread: <a href="http://forum.springframework.org/viewtopic.php?t=7783" rel="nofollow">http://forum.springframework.org/viewtopic.php?t=7783</a></p> <p dir="auto">Also I was able to workaround this issue by extending MBeanExporter and overriding registerBeans() to catch the exception (and continue so that deployment will succeed, even though JMX bean registration fails).</p> <hr> <p dir="auto"><strong>Affects:</strong> 1.2.3</p> <p dir="auto"><strong>Issue Links:</strong></p> <ul dir="auto"> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398059283" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/5918" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/5918/hovercard" href="https://github.com/spring-projects/spring-framework/issues/5918">#5918</a> MBeanExporter attempts to register duplicate MBeans causing javax.management.InstanceAlreadyExistsException (<em><strong>"duplicates"</strong></em>)</li> </ul>
0
<p dir="auto">If we press any button (Flat as well as Raised) via "Enter Key", events are fired twice</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/mui-org/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">Events should be fired only once just as on mouse click</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">Events are fired twice</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <ol dir="auto"> <li>Create any flat or raise button.</li> <li>For onClick event add event handler for showing logs.</li> <li>Click button.</li> <li>All events are fired twice</li> </ol> <h2 dir="auto">Context</h2> <h2 dir="auto">Your Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>Material-UI</td> <td></td> </tr> <tr> <td>React</td> <td></td> </tr> <tr> <td>browser</td> <td></td> </tr> <tr> <td>etc</td> <td></td> </tr> </tbody> </table>
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/callemall/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">Inline datepicker renders imidiatly near field.</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">Inline datepicker at start renders dialog at position [0,0] then re render it at field.</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <p dir="auto"><a href="https://we.tl/pEGKtz4EfO" rel="nofollow">https://we.tl/pEGKtz4EfO</a></p> <h2 dir="auto">Context</h2> <h2 dir="auto">Your Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>Material-UI</td> <td>0.19.4</td> </tr> </tbody> </table>
0
<h2 dir="auto">Environment info</h2> <ul dir="auto"> <li><code class="notranslate">transformers</code> version: 3.4.0</li> <li>Platform: macOS-10.15.7-x86_64-i386-64bit</li> <li>Python version: 3.8.5</li> <li>PyTorch version (GPU?): 1.7.0 (False)</li> <li>Tensorflow version (GPU?): not installed (NA)</li> <li>Using GPU in script?: N/a</li> <li>Using distributed or parallel set-up in script? N/a</li> </ul> <h3 dir="auto">Who can help</h3> <p dir="auto">examples/seq2seq: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/sshleifer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/sshleifer">@sshleifer</a><br> --&gt;</p> <h2 dir="auto">Information</h2> <p dir="auto">Model I am using (Bert, XLNet ...): T5Tokenizer</p> <p dir="auto">The problem arises when using:</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> the official example scripts: (give details below)</li> <li>[X ] my own modified scripts: (give details below)</li> </ul> <p dir="auto">The tasks I am working on is:</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> an official GLUE/SQUaD task: (give the name)</li> <li>[ X] my own task or dataset: (give details below)</li> </ul> <h2 dir="auto">To reproduce</h2> <p dir="auto">Steps to reproduce the behavior:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from transformers import T5Tokenizer input = &quot;word &lt;pad&gt; &lt;unk&gt; &lt;/s&gt; &lt;/s&gt;&quot; t5tokenizer = T5Tokenizer.from_pretrained('t5-small') tokenized = t5tokenizer.batch_encode_plus([input], max_length=10, padding=&quot;longest&quot;, return_tensors=&quot;pt&quot;).input_ids print(t5tokenizer.batch_decode(tokenized, skip_special_tokens=False, clean_up_tokenization_spaces=False))"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">transformers</span> <span class="pl-k">import</span> <span class="pl-v">T5Tokenizer</span> <span class="pl-s1">input</span> <span class="pl-c1">=</span> <span class="pl-s">"word &lt;pad&gt; &lt;unk&gt; &lt;/s&gt; &lt;/s&gt;"</span> <span class="pl-s1">t5tokenizer</span> <span class="pl-c1">=</span> <span class="pl-v">T5Tokenizer</span>.<span class="pl-en">from_pretrained</span>(<span class="pl-s">'t5-small'</span>) <span class="pl-s1">tokenized</span> <span class="pl-c1">=</span> <span class="pl-s1">t5tokenizer</span>.<span class="pl-en">batch_encode_plus</span>([<span class="pl-s1">input</span>], <span class="pl-s1">max_length</span><span class="pl-c1">=</span><span class="pl-c1">10</span>, <span class="pl-s1">padding</span><span class="pl-c1">=</span><span class="pl-s">"longest"</span>, <span class="pl-s1">return_tensors</span><span class="pl-c1">=</span><span class="pl-s">"pt"</span>).<span class="pl-s1">input_ids</span> <span class="pl-en">print</span>(<span class="pl-s1">t5tokenizer</span>.<span class="pl-en">batch_decode</span>(<span class="pl-s1">tokenized</span>, <span class="pl-s1">skip_special_tokens</span><span class="pl-c1">=</span><span class="pl-c1">False</span>, <span class="pl-s1">clean_up_tokenization_spaces</span><span class="pl-c1">=</span><span class="pl-c1">False</span>))</pre></div> <p dir="auto">IDs output: <code class="notranslate"> _word &lt;pad&gt; &lt;unk&gt; &lt;/s&gt; &lt;/s&gt;</code><br> decode output: <code class="notranslate">word ⁇ </code></p> <h2 dir="auto">Expected behavior</h2> <p dir="auto">The tokens should be shown in the decoded output, but everything except for the unknown token is dropped (no pad or EOS).<br> <code class="notranslate">convert_ids_to_tokens</code> followed by <code class="notranslate">convert_tokens_to_string</code> also drops the tokens.</p>
<p dir="auto">The docs recommend adding the special eos_token <code class="notranslate">&lt;\s&gt;</code> to the end of each string when encoding/decoding with <code class="notranslate">T5Tokenizer</code>. However, this (and the other special tokens e.g. <code class="notranslate">unk_token</code>, <code class="notranslate">pad_token</code> aren't assigned unique ids in the lookup vocabulary (they are mapped to <code class="notranslate">{0,1,2}</code>, which are indices for other common words in the vocab). In practice, I find my model fails to properly produce the <code class="notranslate">eos_token</code> since it is associated with blank spaces, so the model produces run-ons during generation</p> <h2 dir="auto">To reproduce</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&gt;&gt;&gt; from transformers import T5Tokenizer &gt;&gt;&gt; tokenizer = T5Tokenizer.from_pretrained('t5-base') &gt;&gt;&gt; tokenizer.pad_token '&lt;pad&gt;' &gt;&gt;&gt; tokenizer.pad_token_id 0 &gt;&gt;&gt; tokenizer.eos_token '&lt;/s&gt;' &gt;&gt;&gt; tokenizer.eos_token_id 1 &gt;&gt;&gt; tokenizer.unk_token '&lt;unk&gt;' &gt;&gt;&gt; tokenizer.unk_token_id 2"><pre class="notranslate"><code class="notranslate">&gt;&gt;&gt; from transformers import T5Tokenizer &gt;&gt;&gt; tokenizer = T5Tokenizer.from_pretrained('t5-base') &gt;&gt;&gt; tokenizer.pad_token '&lt;pad&gt;' &gt;&gt;&gt; tokenizer.pad_token_id 0 &gt;&gt;&gt; tokenizer.eos_token '&lt;/s&gt;' &gt;&gt;&gt; tokenizer.eos_token_id 1 &gt;&gt;&gt; tokenizer.unk_token '&lt;unk&gt;' &gt;&gt;&gt; tokenizer.unk_token_id 2 </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&gt;&gt;&gt; tokenizer.decode([0]) '' &gt;&gt;&gt; tokenizer.decode([1]) '' &gt;&gt;&gt; tokenizer.decode([2]) ' ⁇ '"><pre class="notranslate"><code class="notranslate">&gt;&gt;&gt; tokenizer.decode([0]) '' &gt;&gt;&gt; tokenizer.decode([1]) '' &gt;&gt;&gt; tokenizer.decode([2]) ' ⁇ ' </code></pre></div> <h2 dir="auto">Expected behavior</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&gt;&gt;&gt; tokenizer.decode([0]) '&lt;pad&gt;' &gt;&gt;&gt; tokenizer.decode([1]) '&lt;/s&gt;' &gt;&gt;&gt; tokenizer.decode([2]) '&lt;unk&gt;'"><pre class="notranslate"><code class="notranslate">&gt;&gt;&gt; tokenizer.decode([0]) '&lt;pad&gt;' &gt;&gt;&gt; tokenizer.decode([1]) '&lt;/s&gt;' &gt;&gt;&gt; tokenizer.decode([2]) '&lt;unk&gt;' </code></pre></div> <h2 dir="auto">Environment info</h2> <ul dir="auto"> <li><code class="notranslate">transformers</code> version: 2.9.1</li> </ul>
1
<p dir="auto">In the tensorflow API doc: <a href="https://www.tensorflow.org/versions/master/api_docs/python/nn.html#max_pool3d" rel="nofollow">https://www.tensorflow.org/versions/master/api_docs/python/nn.html#max_pool3d</a>, it states:</p> <p dir="auto">ksize: A list of ints that has length &gt;= 5. 1-D tensor of length 5. The size of the window for each dimension of the input tensor. Must have ksize[0] = ksize[1] = 1.</p> <p dir="auto">ksize[0] = ksize[1] = 1 must be ksize[0] = ksize[4] = 1 for both average and max pooling 3d layers as detailed here:<br> <a href="https://github.com/tensorflow/tensorflow/blob/master/tensorflow/python/kernel_tests/pooling_ops_3d_test.py#L48">https://github.com/tensorflow/tensorflow/blob/master/tensorflow/python/kernel_tests/pooling_ops_3d_test.py#L48</a></p>
<p dir="auto">In file:<br> <a href="https://github.com/tensorflow/tensorflow/blob/master/tensorflow/g3doc/api_docs/python/functions_and_classes/shard0/tf.nn.avg_pool3d.md">tensorflow/g3doc/api_docs/python/functions_and_classes/shard0/tf.nn.avg_pool3d.md<br> </a><br> <a href="https://github.com/tensorflow/tensorflow/blob/master/tensorflow/g3doc/api_docs/python/functions_and_classes/shard4/tf.nn.max_pool3d.md">tensorflow/g3doc/api_docs/python/functions_and_classes/shard4/tf.nn.max_pool3d.md<br> </a><br> Original:<br> <b><code class="notranslate">ksize</code></b>: A list of <code class="notranslate">ints</code> that has length <code class="notranslate">&gt;= 5</code>.<br> 1-D tensor of length 5. The size of the window for each dimension of<br> the input tensor. Must have <code class="notranslate">ksize[0] = ksize[1] = 1</code>.</p> <p dir="auto">I think<br> <code class="notranslate">ksize[0] = ksize[1] = 1</code>. should change to <code class="notranslate">ksize[0] = ksize[4] = 1</code>, according to the test file </p><div class="Box Box--condensed my-2"> <div class="Box-header f6"> <p class="mb-0 text-bold"> <a href="https://github.com/tensorflow/tensorflow/blob/712e41cf8b316ef2c33c6dd7fd6ade2b4e93ddc0/tensorflow/python/kernel_tests/pooling_ops_3d_test.py#L48">tensorflow/tensorflow/python/kernel_tests/pooling_ops_3d_test.py</a> </p> <p class="mb-0 color-fg-muted"> Line 48 in <a data-pjax="true" class="commit-tease-sha" href="/tensorflow/tensorflow/commit/712e41cf8b316ef2c33c6dd7fd6ade2b4e93ddc0">712e41c</a> </p> </div> <div itemprop="text" class="Box-body p-0 blob-wrapper blob-wrapper-embedded data"> <table class="highlight tab-size mb-0 js-file-line-container" data-tab-size="8" data-paste-markdown-skip=""> <tbody><tr class="border-0"> <td id="L48" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="48"></td> <td id="LC48" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-s1">ksize</span><span class="pl-c1">=</span>[<span class="pl-c1">1</span>, <span class="pl-s1">window</span>[<span class="pl-c1">0</span>], <span class="pl-s1">window</span>[<span class="pl-c1">1</span>], <span class="pl-s1">window</span>[<span class="pl-c1">2</span>], <span class="pl-c1">1</span>], </td> </tr> </tbody></table> </div> </div> <p></p>
1
<p dir="auto">Like my title, in the future could Deno use NodeJS module or developer have to rewrite NodeJS module for Deno?</p>
<p dir="auto">We've resisted considering Node compatibility as Deno was under initial development so that those considerations didn't influence the design. But now Deno has a relatively established API and the URL module system is deeply baked in. It is unlikely, at this point, that considering compatibility with existing Node modules will compromise Deno's design goals.</p> <p dir="auto">It's unlikely we can make Node code work 100% of the time. But we can do a lot to make porting modules over easier. Let's discuss how make Deno work with existing Node code. Here are some ideas:</p> <ul dir="auto"> <li> <p dir="auto">One direction could be a transpilation program that takes a CommonJS node file, and translates it into ES modules.</p> </li> <li> <p dir="auto">Node has core APIs like file system and networking which are different (sometimes subtly so) in Deno. For example, <code class="notranslate">require('fs').readFileSync()</code> in Node supports encoding to strings, <code class="notranslate">Deno.readFileSync()</code> does not. I suggest we implement a compatibility layer in deno_std/node to match the semantics. (There has been some effort to do this already in <a href="https://github.com/denolib/node">https://github.com/denolib/node</a>, but progress is slow, I think it makes sense to do it in deno_std.)</p> </li> <li> <p dir="auto">We should attempt a <code class="notranslate">require()</code> implementation. It should probably be in deno_std rather than deno itself. It might make sense to base this on top of dynamic import <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="411031633" data-permission-text="Title is private" data-url="https://github.com/denoland/deno/issues/1789" data-hovercard-type="issue" data-hovercard-url="/denoland/deno/issues/1789/hovercard" href="https://github.com/denoland/deno/issues/1789">#1789</a> (which will land very soon - see <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="456024695" data-permission-text="Title is private" data-url="https://github.com/denoland/deno/issues/2516" data-hovercard-type="pull_request" data-hovercard-url="/denoland/deno/pull/2516/hovercard" href="https://github.com/denoland/deno/pull/2516">#2516</a>).</p> </li> </ul> <p dir="auto">Existing work</p> <ul dir="auto"> <li><a href="https://github.com/denolib/node-to-deno">https://github.com/denolib/node-to-deno</a></li> <li><a href="https://github.com/denolib/node">https://github.com/denolib/node</a></li> </ul>
1
<p dir="auto">Hi this is an error that for some people must be confusing, when you dont add in a controller using annotations route the correct namespaces like:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;"><pre class="notranslate"><code class="notranslate">use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method; </code></pre></div> <p dir="auto">and then you use :</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" * @Method({&quot;GET&quot;})"><pre class="notranslate"><code class="notranslate"> * @Method({"GET"}) </code></pre></div> <p dir="auto">In some anotattion in a controller Symfony throw an Exception that says:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Whoops, looks like something went wrong. 1/1 FileLoaderImportCircularReferenceException in FileLoader.php line 97: ..."><pre class="notranslate"><code class="notranslate">Whoops, looks like something went wrong. 1/1 FileLoaderImportCircularReferenceException in FileLoader.php line 97: ... </code></pre></div> <p dir="auto">witch is wrong and confusing, thanks</p>
<p dir="auto">I was struggling to debug why I got a circular reference error trying to add my controller to a new application. The controller below with the config in routing.yml should be able to reproduce this. I found out that the error is triggered by a missing use statement: <code class="notranslate">use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;</code> as I used <code class="notranslate">@Template()</code>. I get the same error if the <code class="notranslate">@Route</code> use statement is missing.</p> <p dir="auto">This error is very unclear and should be able to get a better message.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="FileLoaderImportCircularReferenceException in FileLoader.php line 97: Circular reference detected in &quot;/home/ivanderberg/projects/login/www/app/config/routing.yml&quot; (&quot;/home/ivanderberg/projects/login/www/app/config/routing.yml&quot; &gt; &quot;/home/ivanderberg/projects/login/www/src/App/Controller&quot; &gt; &quot;/home/ivanderberg/projects/login/www/app/config/routing.yml&quot;)."><pre class="notranslate"><code class="notranslate">FileLoaderImportCircularReferenceException in FileLoader.php line 97: Circular reference detected in "/home/ivanderberg/projects/login/www/app/config/routing.yml" ("/home/ivanderberg/projects/login/www/app/config/routing.yml" &gt; "/home/ivanderberg/projects/login/www/src/App/Controller" &gt; "/home/ivanderberg/projects/login/www/app/config/routing.yml"). </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="// routing.yml app: resource: &quot;@App/Controller&quot; type: annotation prefix: /"><pre class="notranslate"><code class="notranslate">// routing.yml app: resource: "@App/Controller" type: annotation prefix: / </code></pre></div> <div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;?php namespace App\Controller\Auth; use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; /** * @Route(service=&quot;app.controller.auth.login&quot;) */ class LoginController { /** * @Route(&quot;/&quot;, name=&quot;app.auth.login&quot;) * @Template() */ public function loginAction() { return []; } } "><pre class="notranslate"><span class="pl-ent">&lt;?php</span> <span class="pl-k">namespace</span> <span class="pl-v">App</span>\<span class="pl-v">Controller</span>\<span class="pl-v">Auth</span>; <span class="pl-k">use</span> <span class="pl-v">Sensio</span>\<span class="pl-v">Bundle</span>\<span class="pl-v">FrameworkExtraBundle</span>\<span class="pl-v">Configuration</span>\<span class="pl-v">Route</span>; <span class="pl-c">/**</span> <span class="pl-c"> * @Route(service="app.controller.auth.login")</span> <span class="pl-c"> */</span> <span class="pl-k">class</span> <span class="pl-v">LoginController</span> { <span class="pl-c">/**</span> <span class="pl-c"> * @Route("/", name="app.auth.login")</span> <span class="pl-c"> * @Template()</span> <span class="pl-c"> */</span> <span class="pl-k">public</span> <span class="pl-k">function</span> <span class="pl-en">loginAction</span>() { <span class="pl-k">return</span> []; } }</pre></div>
1
<p dir="auto">If a helper function is added by a plugin to the top of a file, and that helper function uses a babel-runtime function like <code class="notranslate">Object.keys</code>, the import does not always get converted.</p> <p dir="auto">This only seems to happen if the helper is added from within a class.</p> <h3 dir="auto">Input Code</h3> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const assert = require('assert'); const foo = {a: true}; class MyClass { static query = getKeys(foo); } assert.deepEqual(MyClass.query, ['a']);"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">assert</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'assert'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-s1">foo</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span><span class="pl-c1">a</span>: <span class="pl-c1">true</span><span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-k">class</span> <span class="pl-v">MyClass</span> <span class="pl-kos">{</span> <span class="pl-k">static</span> <span class="pl-c1">query</span> <span class="pl-c1">=</span> <span class="pl-en">getKeys</span><span class="pl-kos">(</span><span class="pl-s1">foo</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-s1">assert</span><span class="pl-kos">.</span><span class="pl-en">deepEqual</span><span class="pl-kos">(</span><span class="pl-v">MyClass</span><span class="pl-kos">.</span><span class="pl-c1">query</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-s">'a'</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <h3 dir="auto">Babel Configuration (.babelrc, package.json, cli command)</h3> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const buildHelper = template(` function GET_KEYS(obj) { return Object.keys(obj); } `); writeFileSync( __dirname + '/output.js', transformFileSync(__dirname + '/fixture.js', { babelrc: false, plugins: [ ({types: t}) =&gt; { return { visitor: { Identifier(path) { if (path.node.name === 'getKeys') { const identifier = this.file.scope.generateUidIdentifier('getKeys'); const helper = buildHelper({ GET_KEYS: identifier, }); this.file.path.unshiftContainer(&quot;body&quot;, helper); path.replaceWith(identifier); } }, }, }; }, require(&quot;babel-plugin-transform-class-properties&quot;), require(&quot;babel-plugin-transform-es2015-classes&quot;), require(&quot;babel-plugin-transform-es2015-modules-commonjs&quot;), require(&quot;babel-plugin-transform-runtime&quot;), ], }).code );"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">buildHelper</span> <span class="pl-c1">=</span> <span class="pl-en">template</span><span class="pl-kos">(</span><span class="pl-s">`</span> <span class="pl-s"> function GET_KEYS(obj) {</span> <span class="pl-s"> return Object.keys(obj);</span> <span class="pl-s"> }</span> <span class="pl-s">`</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">writeFileSync</span><span class="pl-kos">(</span> <span class="pl-s1">__dirname</span> <span class="pl-c1">+</span> <span class="pl-s">'/output.js'</span><span class="pl-kos">,</span> <span class="pl-en">transformFileSync</span><span class="pl-kos">(</span><span class="pl-s1">__dirname</span> <span class="pl-c1">+</span> <span class="pl-s">'/fixture.js'</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">babelrc</span>: <span class="pl-c1">false</span><span class="pl-kos">,</span> <span class="pl-c1">plugins</span>: <span class="pl-kos">[</span> <span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-c1">types</span>: <span class="pl-s1">t</span><span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-kos">{</span> <span class="pl-c1">visitor</span>: <span class="pl-kos">{</span> <span class="pl-en">Identifier</span><span class="pl-kos">(</span><span class="pl-s1">path</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">path</span><span class="pl-kos">.</span><span class="pl-c1">node</span><span class="pl-kos">.</span><span class="pl-c1">name</span> <span class="pl-c1">===</span> <span class="pl-s">'getKeys'</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">const</span> <span class="pl-s1">identifier</span> <span class="pl-c1">=</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">file</span><span class="pl-kos">.</span><span class="pl-c1">scope</span><span class="pl-kos">.</span><span class="pl-en">generateUidIdentifier</span><span class="pl-kos">(</span><span class="pl-s">'getKeys'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-s1">helper</span> <span class="pl-c1">=</span> <span class="pl-s1">buildHelper</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">GET_KEYS</span>: <span class="pl-s1">identifier</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">file</span><span class="pl-kos">.</span><span class="pl-c1">path</span><span class="pl-kos">.</span><span class="pl-en">unshiftContainer</span><span class="pl-kos">(</span><span class="pl-s">"body"</span><span class="pl-kos">,</span> <span class="pl-s1">helper</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">path</span><span class="pl-kos">.</span><span class="pl-en">replaceWith</span><span class="pl-kos">(</span><span class="pl-s1">identifier</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"babel-plugin-transform-class-properties"</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"babel-plugin-transform-es2015-classes"</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"babel-plugin-transform-es2015-modules-commonjs"</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"babel-plugin-transform-runtime"</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">code</span> <span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">The output code should have the import statement transformed into a <code class="notranslate">require</code> call.</p> <h3 dir="auto">Current Behavior</h3> <p dir="auto">The import statement is left in the output code.</p> <h3 dir="auto">Possible Solution</h3> <p dir="auto">Ensure that transform-modules always detects imports, regardless of when they are added.</p> <h3 dir="auto">Context</h3> <p dir="auto">I'm attempting to maintain a couple of plugins that add helper functions to the top of files when they detect certain code.</p> <h3 dir="auto">Your Environment</h3> <table role="table"> <thead> <tr> <th>software</th> <th>version(s)</th> </tr> </thead> <tbody> <tr> <td>Babel</td> <td>6.24.1</td> </tr> <tr> <td>node</td> <td>6.4.0</td> </tr> <tr> <td>npm</td> <td>3.10.3</td> </tr> <tr> <td>Operating System</td> <td>OSX</td> </tr> </tbody> </table> <p dir="auto">I've uploaded a complete demonstration of this bug to <a href="https://github.com/ForbesLindesay/demo-transform-runtime-and-es2015-modules-commonjs-order-bug">https://github.com/ForbesLindesay/demo-transform-runtime-and-es2015-modules-commonjs-order-bug</a> so you can easily reproduce it.</p>
<p dir="auto">I'm currently maintaining the 6to5-loader for webpack and I got an <a href="https://github.com/Couto/6to5-loader/issues/3" data-hovercard-type="issue" data-hovercard-url="/babel/babel-loader/issues/3/hovercard">issue</a> where <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/zxcabs/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/zxcabs">@zxcabs</a> suggests to create an extra runtime file, since my loader was generating duplicated code.</p> <p dir="auto">For debugging purposes, I created a <a href="https://github.com/Couto/6to5-runners-example">repository</a> where I use several 6to5 runners (<a href="https://github.com/Couto/6to5-loader">6to5-loader</a>, <a href="https://github.com/sindresorhus/grunt-6to5">grunt-6to5</a>, <a href="https://github.com/sindresorhus/gulp-6to5">gulp-6to5</a> and the 6to5 cli itself, to convert some example classes.</p> <p dir="auto">If you ran the scripts on that example, you'll notice that every runner, including the 6to5 cli, will repeat the <code class="notranslate">_extend</code> function in all files that extend a class.</p> <p dir="auto">My question is, am i doing something wrong? If not, is this a problem?</p> <p dir="auto">I reckon that gzip should to solve the duplication problem for browsers, but repeating the same code for every file seems a little bit wrong.</p>
0
<p dir="auto">I thought this was worth a separate issue.</p> <p dir="auto">In <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="105096485" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/12981" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/12981/hovercard" href="https://github.com/JuliaLang/julia/issues/12981">#12981</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mb1234/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mb1234">@mb1234</a> posted a short comparison script to benchmark few methods on sparse matrices between Julia, Octave and Matlab. The script to perform the table below can be seen in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="105096485" data-permission-text="Title is private" data-url="https://github.com/JuliaLang/julia/issues/12981" data-hovercard-type="issue" data-hovercard-url="/JuliaLang/julia/issues/12981/hovercard?comment_id=138122760&amp;comment_type=issue_comment" href="https://github.com/JuliaLang/julia/issues/12981#issuecomment-138122760">#12981 (comment)</a> except I added an explicit call to <code class="notranslate">gc()</code> between method invocations. The average of 5 runs is shown with the standard deviation in parenthesis.</p> <table role="table"> <thead> <tr> <th>Func</th> <th align="center">Julia</th> <th align="center">Octave</th> <th align="center">Matlab (single thread)</th> </tr> </thead> <tbody> <tr> <td>sparse:</td> <td align="center">2.478101 (0.161879)</td> <td align="center">1.233007 (0.098839)</td> <td align="center">2.678221 (0.104867)</td> </tr> <tr> <td>2*A :</td> <td align="center">0.052062 (0.000805)</td> <td align="center">0.120093 (0.042131)</td> <td align="center">0.070358 (0.001547)</td> </tr> <tr> <td>A' :</td> <td align="center">1.131908 (0.010331)</td> <td align="center">0.810197 (0.075346)</td> <td align="center">1.159815 (0.246967)</td> </tr> <tr> <td>A+B :</td> <td align="center">0.246413 (0.001277)</td> <td align="center">0.487021 (0.088988)</td> <td align="center">0.202465 (0.000276)</td> </tr> <tr> <td>A*x :</td> <td align="center">0.169672 (0.003784)</td> <td align="center">0.340456 (0.009046)</td> <td align="center">0.162381 (0.016590)</td> </tr> <tr> <td>A'*x :</td> <td align="center">0.146576 (0.003835)</td> <td align="center">1.191680 (0.099767)</td> <td align="center">0.135291 (0.003267)</td> </tr> </tbody> </table> <p dir="auto">In general, we are doing really well! However, we can see that for <code class="notranslate">sparse</code> and <code class="notranslate">transpose</code> we have a bit to go to match Octave. Right now, for <code class="notranslate">sparse</code> we are making a CSR-matrix and transposing it in the end. It should be possible to directly construct the CSC-matrix and avoid the transpose.</p> <p dir="auto">For <code class="notranslate">transpose</code> I looked at <a href="https://github.com/JuliaLang/julia/blob/f51873ab0578c7562cca9c1f84e6499b45c69201/base/sparse/csparse.jl#L135">the code</a> and I am not sure what could be done. Anyone have any ideas here?</p>
<p dir="auto">This can be done for arguments whose types can be inferred. It will make things more convenient in general, but the cost is that it won't be easy to predict when an explicit conversion needs to be written. At the very least it will improve the situation with literals, so you don't need to write <code class="notranslate">int32(0)</code>.</p>
0
<p dir="auto">The current orphan rules in the coherence check are stricter than they need to be. For example, if I have</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="struct Foo"><pre class="notranslate"><code class="notranslate">struct Foo </code></pre></div> <p dir="auto">then I cannot have an impl like the following</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="impl ToStr for @Foo"><pre class="notranslate"><code class="notranslate">impl ToStr for @Foo </code></pre></div> <p dir="auto">The goal of the orphan rules is to guarantee that we can detect duplicate trait implementations so as to enforce coherence. To this end, it is only necessary to ensure that we could find any potentially conflicting impl. If we enforce the rule that the "for" type must "involve" some nominal type from the current crate, that is adequate for this purpose. For example <code class="notranslate">@Foo</code> should be ok but also <code class="notranslate">Option&lt;Foo&gt;</code>.</p>
<p dir="auto">"is_whitespace" and "maybe_digit" should be implemented using the libicu binding in module "std::unicode::icu".<br> libicu is battle tested, we should not replicate their effort.</p> <p dir="auto">See <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2635253" data-permission-text="Title is private" data-url="https://github.com/rust-lang/rust/issues/1370" data-hovercard-type="issue" data-hovercard-url="/rust-lang/rust/issues/1370/hovercard" href="https://github.com/rust-lang/rust/issues/1370">#1370</a></p>
0
<p dir="auto">Image Resizer has default Image Size names <code class="notranslate">Small</code>, <code class="notranslate">Medium</code>, <code class="notranslate">Large</code> and <code class="notranslate">Phone</code>, which are localized. However, since these Image Sizes are stored in the settings.json file, if the sizes already exist in the profile in one language, the same language will be retrieved irrespective of the current OS language.<br> For example in the scenario below a user has used Image Resizer for the first time while their OS language was English, and later they switch to French. Since the profile names have already saved the English names to JSON, opening Settings or Image Resizer in French will show the English names for the profile.<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/32061677/96633330-d2d98b00-12cd-11eb-9843-22dc942062e6.png"><img src="https://user-images.githubusercontent.com/32061677/96633330-d2d98b00-12cd-11eb-9843-22dc942062e6.png" alt="existing imageresizer" style="max-width: 100%;"></a></p> <p dir="auto">After deleting the settings file ImageResizer/settings.json, if the user opens Image Resizer directly from the context menu, the correct localized names will be loaded. If you open Settings first however, it will still load the English strings. This is because the default sizes in Settings are hardcoded strings.<br> Screenshot from French after deleting settings.json and opening Resize Pictures before Settings.<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/32061677/96633326-d1a85e00-12cd-11eb-8b21-0afc305c0fc8.png"><img src="https://user-images.githubusercontent.com/32061677/96633326-d1a85e00-12cd-11eb-8b21-0afc305c0fc8.png" alt="after reset image resizer" style="max-width: 100%;"></a></p>
<p dir="auto">After installing latest Power Toys ALT + Space</p> <h1 dir="auto">Environment</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: [run &quot;ver&quot; at a command prompt] PowerToys version: PowerToy module for which you are reporting the bug (if applicable):"><pre class="notranslate"><code class="notranslate">Windows build number: [run "ver" at a command prompt] PowerToys version: PowerToy module for which you are reporting the bug (if applicable): </code></pre></div> <h1 dir="auto">Steps to reproduce</h1> <h1 dir="auto">Expected behavior</h1> <h1 dir="auto">Actual behavior</h1> <h1 dir="auto">Screenshots</h1>
0
<p dir="auto">Hello, thanks for sharing your great work.</p> <h4 dir="auto">Summary</h4> <p dir="auto">We need to sign request before they are sent, that is : add a header with an ECDSA signature calculated with full request URL (including parameters) and body, to ensure they are not modified when they reach the server.</p> <p dir="auto">In order to verify the signature, server software needs to rebuild data used to calculate the signature, using received request. Hence client (which uses axios and redux-axios-middleware) must sign with actual request data, which leads us in following issue : final url with querystring isn't built before request object construct (here for xhr : </p><div class="Box Box--condensed my-2"> <div class="Box-header f6"> <p class="mb-0 text-bold"> <a href="https://github.com/axios/axios/blob/0b3db5d87a60a1ad8b0dce9669dbc10483ec33da/lib/adapters/xhr.js#L45">axios/lib/adapters/xhr.js</a> </p> <p class="mb-0 color-fg-muted"> Line 45 in <a data-pjax="true" class="commit-tease-sha" href="/axios/axios/commit/0b3db5d87a60a1ad8b0dce9669dbc10483ec33da">0b3db5d</a> </p> </div> <div itemprop="text" class="Box-body p-0 blob-wrapper blob-wrapper-embedded data"> <table class="highlight tab-size mb-0 js-file-line-container" data-tab-size="8" data-paste-markdown-skip=""> <tbody><tr class="border-0"> <td id="L45" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="45"></td> <td id="LC45" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-s1">request</span><span class="pl-kos">.</span><span class="pl-en">open</span><span class="pl-kos">(</span><span class="pl-s1">config</span><span class="pl-kos">.</span><span class="pl-c1">method</span><span class="pl-kos">.</span><span class="pl-en">toUpperCase</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-s1">buildURL</span><span class="pl-kos">(</span><span class="pl-s1">config</span><span class="pl-kos">.</span><span class="pl-c1">url</span><span class="pl-kos">,</span> <span class="pl-s1">config</span><span class="pl-kos">.</span><span class="pl-c1">params</span><span class="pl-kos">,</span> <span class="pl-s1">config</span><span class="pl-kos">.</span><span class="pl-c1">paramsSerializer</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-c1">true</span><span class="pl-kos">)</span><span class="pl-kos">;</span> </td> </tr> </tbody></table> </div> </div> )<p></p> <p dir="auto">As for now, I see two options to achieve this, both unsatisfying :</p> <ul dir="auto"> <li>pass a custom paramSerializer, build the signature in an interceptor using it, and let axios rebuild the actual request url. Problem here is that url is built 2 times, leading to potential differences, not to mention unnecessary runtime overhead.</li> <li>write a whole custom adapter, which handles the signing stuff, which would involve a lot of code duplication since we cannot easily access to axios' core, helpers &amp; utils from outside the lib.</li> </ul> <p dir="auto">Ideal situation would be an access to final url at interceptor's level (or in transformers ?).<br> Do you see a better way to achieve this that I would have missed ?</p> <h4 dir="auto">Context</h4> <ul dir="auto"> <li>axios version: v0.18.0</li> <li>Environment: whatever</li> </ul>
<h2 dir="auto">Describe the bug</h2> <p dir="auto">getting this error from the definitions via yarn2.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="➤ YN0000: [@bb/common-framework]: ../../../../../.yarn/cache/axios-npm-0.20.0-535d9e0086-6cf2e96317.zip/node_modules/axios/index.d.ts(63,40): error TS2304: Cannot find name 'ProgressEvent'."><pre class="notranslate"><code class="notranslate">➤ YN0000: [@bb/common-framework]: ../../../../../.yarn/cache/axios-npm-0.20.0-535d9e0086-6cf2e96317.zip/node_modules/axios/index.d.ts(63,40): error TS2304: Cannot find name 'ProgressEvent'. </code></pre></div> <p dir="auto">this is from</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="└─ axios@npm:0.20.0 ├─ Version: 0.20.0 │ └─ Dependencies └─ follow-redirects@npm:^1.10.0 → npm:1.13.0"><pre class="notranslate"><code class="notranslate">└─ axios@npm:0.20.0 ├─ Version: 0.20.0 │ └─ Dependencies └─ follow-redirects@npm:^1.10.0 → npm:1.13.0 </code></pre></div> <p dir="auto">doesn't happen if I use 0.19.2. I don't have any usage of <code class="notranslate">ProgressEvent</code> myself.</p> <h4 dir="auto">To Reproduce</h4> <p dir="auto">I suspect putting this in a typescript file, and built with yarn2 is enough, it might actually be a bug in <code class="notranslate">axios-logger</code></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import { AxiosLogger } from '@new10com/axios-logger';"><pre class="notranslate"><code class="notranslate">import { AxiosLogger } from '@new10com/axios-logger'; </code></pre></div> <h4 dir="auto">Expected behavior</h4> <p dir="auto">A clear and concise description of what you expected to happen.</p> <h4 dir="auto">Environment</h4> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="├─ @bb/common-framework@workspace:ts/lib/common/packages/framework │ └─ @new10com/axios-logger@npm:0.1.1 (via npm:^0.1.1) │ └─ axios@npm:0.19.2 (via npm:^0.19) │"><pre class="notranslate"><code class="notranslate">├─ @bb/common-framework@workspace:ts/lib/common/packages/framework │ └─ @new10com/axios-logger@npm:0.1.1 (via npm:^0.1.1) │ └─ axios@npm:0.19.2 (via npm:^0.19) │ </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&gt; node --version # services -&gt; feature/RS2-1243-logging $ — » + v12.18.3 &gt; yarn :g:tsc --version # services -&gt; feature/RS2-1243-logging $ — » + RC=1 Version 4.0.3"><pre class="notranslate"><code class="notranslate">&gt; node --version # services -&gt; feature/RS2-1243-logging $ — » + v12.18.3 &gt; yarn :g:tsc --version # services -&gt; feature/RS2-1243-logging $ — » + RC=1 Version 4.0.3 </code></pre></div> <h4 dir="auto">Additional context/Screenshots</h4> <p dir="auto">Add any other context about the problem here. If applicable, add screenshots to help explain.</p>
0
<p dir="auto">I know that mirrors is blocked now because it causes the generated packages to be very large.</p> <p dir="auto">However, on the long term, it should remain a goal to find a solution for this. Many libraries use mirrors so not being able to use mirrors for Flutter apps will make the framework a lot less powerful.</p> <p dir="auto">The trade-off between large package sizes and using mirrors should be left to the user. A possible solution might be to use an explicit <code class="notranslate">--allow-mirrors</code> flag. But of course the ultimate solution should be to find a way to use mirrors without blowing up package sizes.</p> <p dir="auto">Java has reflection and Objective-C has Runtime Reference, so why would Flutter not have a reflection system?</p>
<p dir="auto">When using firebase_ml_vision on IOS I receive an error for Firebase Auth.<br> On android I receive an output that no faces were detected no matter if I use portrait or landscape.<br> The output is:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="W/DynamiteModule(14227): Local module descriptor class for com.google.android.gms.vision.dynamite.face not found. I/DynamiteModule(14227): Considering local module com.google.android.gms.vision.dynamite.face:0 and remote module com.google.android.gms.vision.dynamite.face:0 D/FaceNativeHandle(14227): Cannot load feature, fall back to load whole module. W/DynamiteModule(14227): Local module descriptor class for com.google.android.gms.vision.dynamite not found. I/DynamiteModule(14227): Considering local module com.google.android.gms.vision.dynamite:0 and remote module com.google.android.gms.vision.dynamite:1800 I/DynamiteModule(14227): Selected remote version of com.google.android.gms.vision.dynamite, version &gt;= 1800 V/DynamiteModule(14227): Dynamite loader version &gt;= 2, using loadModule2NoCrashUtils I/Vision (14227): Loading library libmobile_vision_face.so I/Vision (14227): libmobile_vision_face.so library load status: true"><pre class="notranslate"><code class="notranslate">W/DynamiteModule(14227): Local module descriptor class for com.google.android.gms.vision.dynamite.face not found. I/DynamiteModule(14227): Considering local module com.google.android.gms.vision.dynamite.face:0 and remote module com.google.android.gms.vision.dynamite.face:0 D/FaceNativeHandle(14227): Cannot load feature, fall back to load whole module. W/DynamiteModule(14227): Local module descriptor class for com.google.android.gms.vision.dynamite not found. I/DynamiteModule(14227): Considering local module com.google.android.gms.vision.dynamite:0 and remote module com.google.android.gms.vision.dynamite:1800 I/DynamiteModule(14227): Selected remote version of com.google.android.gms.vision.dynamite, version &gt;= 1800 V/DynamiteModule(14227): Dynamite loader version &gt;= 2, using loadModule2NoCrashUtils I/Vision (14227): Loading library libmobile_vision_face.so I/Vision (14227): libmobile_vision_face.so library load status: true </code></pre></div> <p dir="auto">Flutter Doctor:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Doctor summary (to see all details, run flutter doctor -v): [✓] Flutter (Channel master, v0.10.1-pre.25, on Mac OS X 10.13.6 17G65, locale en) [✓] Android toolchain - develop for Android devices (Android SDK 28.0.0-rc2) [✓] iOS toolchain - develop for iOS devices (Xcode 10.0) [✓] Android Studio (version 3.2) [✓] IntelliJ IDEA Community Edition (version 2018.1.4) [✓] VS Code (version 1.27.2) [✓] Connected device (3 available) • No issues found! Process finished with exit code 0"><pre class="notranslate"><code class="notranslate">Doctor summary (to see all details, run flutter doctor -v): [✓] Flutter (Channel master, v0.10.1-pre.25, on Mac OS X 10.13.6 17G65, locale en) [✓] Android toolchain - develop for Android devices (Android SDK 28.0.0-rc2) [✓] iOS toolchain - develop for iOS devices (Xcode 10.0) [✓] Android Studio (version 3.2) [✓] IntelliJ IDEA Community Edition (version 2018.1.4) [✓] VS Code (version 1.27.2) [✓] Connected device (3 available) • No issues found! Process finished with exit code 0 </code></pre></div>
0
<p dir="auto">I ran into this error trying to setup a clean installation of the bootstrap source for development:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="npm ERR! peerinvalid The package grunt does not satisfy its siblings' peerDependencies requirements! npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.1 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.0 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.0 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.0 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.0 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.0 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.1 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.1 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.0 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.0 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.0 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.0 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.0 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.2 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.1 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.1 npm ERR! peerinvalid Peer [email protected] wants [email protected] npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.1 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4 npm ERR! System Linux 3.2.0-23-generic-pae npm ERR! command &quot;/usr/bin/node&quot; &quot;/usr/bin/npm&quot; &quot;install&quot; npm ERR! cwd /vagrant/bower_components/bootstrap npm ERR! node -v v0.10.26 npm ERR! npm -v 1.4.3 npm ERR! code EPEERINVALID npm ERR! npm ERR! Additional logging details can be found in: npm ERR! /vagrant/bower_components/bootstrap/npm-debug.log npm ERR! not ok code 0"><pre class="notranslate"><code class="notranslate">npm ERR! peerinvalid The package grunt does not satisfy its siblings' peerDependencies requirements! npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.1 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.0 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.0 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.0 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.0 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.0 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.1 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.1 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.0 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.0 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.0 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.0 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.0 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.2 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.1 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.1 npm ERR! peerinvalid Peer [email protected] wants [email protected] npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4.1 npm ERR! peerinvalid Peer [email protected] wants grunt@~0.4 npm ERR! System Linux 3.2.0-23-generic-pae npm ERR! command "/usr/bin/node" "/usr/bin/npm" "install" npm ERR! cwd /vagrant/bower_components/bootstrap npm ERR! node -v v0.10.26 npm ERR! npm -v 1.4.3 npm ERR! code EPEERINVALID npm ERR! npm ERR! Additional logging details can be found in: npm ERR! /vagrant/bower_components/bootstrap/npm-debug.log npm ERR! not ok code 0 </code></pre></div> <p dir="auto">I'm creating a fresh ubuntu vm with vagrant, using the script here: <a href="https://gist.github.com/davethegr8/10935832">https://gist.github.com/davethegr8/10935832</a></p> <p dir="auto">Full output from the <code class="notranslate">vagrant up</code> command: <a href="https://gist.github.com/davethegr8/10936309">https://gist.github.com/davethegr8/10936309</a></p>
<p dir="auto">Hi.</p> <p dir="auto">I am switching an old application that uses Prototype to jQuery and Bootstrap, but because of the amount of work it requires, I need to be able to make both coexist during the migration.</p> <p dir="auto">Here I have reproduced an issue I have:<br> <a href="http://jsfiddle.net/u6vWL/32/" rel="nofollow">http://jsfiddle.net/u6vWL/32/</a></p> <p dir="auto">Actually, the clearMenus() function triggers an "hide" event, and then jQuery try to call the corresponding "hide" function of the DOM Element. Because prototype have added an "hide" function, it is called.</p> <p dir="auto">See: <a href="http://api.jquery.com/trigger/" rel="nofollow">http://api.jquery.com/trigger/</a></p> <blockquote> <p dir="auto">Note: For both plain objects and DOM objects other than window, if a triggered event<br> name matches the name of a property on the object, jQuery will attempt to invoke the<br> property as a method if no event handler calls event.preventDefault(). If this behavior is<br> not desired, use .triggerHandler() instead.</p> </blockquote> <p dir="auto">Fix:</p> <p dir="auto">Replace (in : clearMenus())</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget))"><pre class="notranslate"><code class="notranslate">$parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget)) </code></pre></div> <p dir="auto">by:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$parent.triggerHandler(e = $.Event('hide.bs.dropdown', relatedTarget))"><pre class="notranslate"><code class="notranslate">$parent.triggerHandler(e = $.Event('hide.bs.dropdown', relatedTarget)) </code></pre></div>
0
<p dir="auto">We haven't been running the testsuite on PPC64le so far, so when I started doing so on the next iteration of the buildbots, I noticed that we don't actually make it through the <code class="notranslate">sparse/sparse</code> tests:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia&gt; Base.runtests(&quot;sparse/sparse&quot;) Test (Worker) | Time (s) | GC (s) | GC % | Alloc (MB) | RSS (MB) signal (11): Segmentation fault while loading /home/juliabuild/buildbot/slave/package_tarballppc64le/build/usr/share/julia/test/sparse/sparse.jl, in expression starting on line 1466 umfzl_create_element at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/usr/bin/../lib/libumfpack.so (unknown line) umfzl_kernel at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/usr/bin/../lib/libumfpack.so (unknown line) umfpack_zl_numeric at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/usr/bin/../lib/libumfpack.so (unknown line) umfpack_numeric! at ./sparse/umfpack.jl:240 lufact at ./sparse/umfpack.jl:148 factorize at ./sparse/linalg.jl:897 normestinv at ./sparse/linalg.jl:552 cond at ./sparse/linalg.jl:534 macro expansion; at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/usr/share/julia/test/sparse/sparse.jl:1474 [inlined] macro expansion; at ./test.jl:842 [inlined] anonymous at ./&lt;missing&gt; (unknown line) jl_call_method_internal at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/julia_internal.h:248 [inlined] jl_toplevel_eval_flex at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/toplevel.c:652 jl_parse_eval_all at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/ast.c:756 jl_load at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/toplevel.c:679 jl_load_ at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/toplevel.c:686 include_from_node1 at ./loading.jl:532 unknown function (ip: 0x3fff71f325f3) jl_call_method_internal at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/julia_internal.h:248 [inlined] jl_apply_generic at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/gf.c:2214 include at ./sysimg.jl:14 macro expansion; at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/usr/share/julia/test/testdefs.jl:13 [inlined] macro expansion; at ./test.jl:842 [inlined] macro expansion; at ./util.jl:288 [inlined] macro expansion; at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/usr/share/julia/test/testdefs.jl:0 [inlined] anonymous at ./&lt;missing&gt; (unknown line) jl_call_method_internal at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/julia_internal.h:248 [inlined] jl_toplevel_eval_flex at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/toplevel.c:652 jl_toplevel_eval_in at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/builtins.c:614 eval at ./boot.jl:238 unknown function (ip: 0x3fff71f0df97) jl_call_method_internal at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/julia_internal.h:248 [inlined] jl_apply_generic at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/gf.c:2214 runtests at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/usr/share/julia/test/testdefs.jl:16 #483 at ./multi.jl:1053 run_work_thunk at ./multi.jl:1024 unknown function (ip: 0x3ffd48d146d3) jl_call_method_internal at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/julia_internal.h:248 [inlined] jl_apply_generic at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/gf.c:2214 #remotecall_fetch#488 at ./multi.jl:1078 jl_call_method_internal at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/julia_internal.h:248 [inlined] jl_apply_generic at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/gf.c:2214 jl_apply at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/julia.h:1413 [inlined] jl_f__apply at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/builtins.c:556 remotecall_fetch at ./multi.jl:1078 jl_call_method_internal at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/julia_internal.h:248 [inlined] jl_apply_generic at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/gf.c:2214 jl_apply at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/julia.h:1413 [inlined] jl_f__apply at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/builtins.c:556 #remotecall_fetch#492 at ./multi.jl:1106 jl_call_method_internal at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/julia_internal.h:248 [inlined] jl_apply_generic at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/gf.c:2214 jl_apply at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/julia.h:1413 [inlined] jl_f__apply at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/builtins.c:556 remotecall_fetch at ./multi.jl:1106 jl_call_method_internal at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/julia_internal.h:248 [inlined] jl_apply_generic at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/gf.c:2214 macro expansion at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/usr/share/julia/test/runtests.jl:65 [inlined] #38 at ./task.jl:332 unknown function (ip: 0x3ffd48d10e17) jl_call_method_internal at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/julia_internal.h:248 [inlined] jl_apply_generic at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/gf.c:2214 jl_apply at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/julia.h:1413 [inlined] start_task at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/task.c:261 jl_set_base_ctx at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/task.c:282 Allocations: 48258430 (Pool: 48252559; Big: 5871); GC: 260 ERROR: A test has failed. Please submit a bug report (https://github.com/JuliaLang/julia/issues) including error messages above and the output of versioninfo(): Julia Version 0.6.0-dev.2143 Commit f4cbc40 (2017-01-19 01:42 UTC) Platform Info: OS: Linux (powerpc64le-unknown-linux-gnu) CPU: unknown WORD_SIZE: 64 BLAS: libopenblas (NO_AFFINITY POWER8) LAPACK: libopenblas LIBM: libopenlibm LLVM: libLLVM-3.9.1 (ORCJIT, pwr8)"><pre class="notranslate"><code class="notranslate">julia&gt; Base.runtests("sparse/sparse") Test (Worker) | Time (s) | GC (s) | GC % | Alloc (MB) | RSS (MB) signal (11): Segmentation fault while loading /home/juliabuild/buildbot/slave/package_tarballppc64le/build/usr/share/julia/test/sparse/sparse.jl, in expression starting on line 1466 umfzl_create_element at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/usr/bin/../lib/libumfpack.so (unknown line) umfzl_kernel at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/usr/bin/../lib/libumfpack.so (unknown line) umfpack_zl_numeric at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/usr/bin/../lib/libumfpack.so (unknown line) umfpack_numeric! at ./sparse/umfpack.jl:240 lufact at ./sparse/umfpack.jl:148 factorize at ./sparse/linalg.jl:897 normestinv at ./sparse/linalg.jl:552 cond at ./sparse/linalg.jl:534 macro expansion; at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/usr/share/julia/test/sparse/sparse.jl:1474 [inlined] macro expansion; at ./test.jl:842 [inlined] anonymous at ./&lt;missing&gt; (unknown line) jl_call_method_internal at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/julia_internal.h:248 [inlined] jl_toplevel_eval_flex at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/toplevel.c:652 jl_parse_eval_all at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/ast.c:756 jl_load at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/toplevel.c:679 jl_load_ at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/toplevel.c:686 include_from_node1 at ./loading.jl:532 unknown function (ip: 0x3fff71f325f3) jl_call_method_internal at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/julia_internal.h:248 [inlined] jl_apply_generic at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/gf.c:2214 include at ./sysimg.jl:14 macro expansion; at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/usr/share/julia/test/testdefs.jl:13 [inlined] macro expansion; at ./test.jl:842 [inlined] macro expansion; at ./util.jl:288 [inlined] macro expansion; at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/usr/share/julia/test/testdefs.jl:0 [inlined] anonymous at ./&lt;missing&gt; (unknown line) jl_call_method_internal at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/julia_internal.h:248 [inlined] jl_toplevel_eval_flex at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/toplevel.c:652 jl_toplevel_eval_in at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/builtins.c:614 eval at ./boot.jl:238 unknown function (ip: 0x3fff71f0df97) jl_call_method_internal at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/julia_internal.h:248 [inlined] jl_apply_generic at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/gf.c:2214 runtests at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/usr/share/julia/test/testdefs.jl:16 #483 at ./multi.jl:1053 run_work_thunk at ./multi.jl:1024 unknown function (ip: 0x3ffd48d146d3) jl_call_method_internal at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/julia_internal.h:248 [inlined] jl_apply_generic at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/gf.c:2214 #remotecall_fetch#488 at ./multi.jl:1078 jl_call_method_internal at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/julia_internal.h:248 [inlined] jl_apply_generic at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/gf.c:2214 jl_apply at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/julia.h:1413 [inlined] jl_f__apply at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/builtins.c:556 remotecall_fetch at ./multi.jl:1078 jl_call_method_internal at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/julia_internal.h:248 [inlined] jl_apply_generic at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/gf.c:2214 jl_apply at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/julia.h:1413 [inlined] jl_f__apply at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/builtins.c:556 #remotecall_fetch#492 at ./multi.jl:1106 jl_call_method_internal at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/julia_internal.h:248 [inlined] jl_apply_generic at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/gf.c:2214 jl_apply at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/julia.h:1413 [inlined] jl_f__apply at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/builtins.c:556 remotecall_fetch at ./multi.jl:1106 jl_call_method_internal at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/julia_internal.h:248 [inlined] jl_apply_generic at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/gf.c:2214 macro expansion at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/usr/share/julia/test/runtests.jl:65 [inlined] #38 at ./task.jl:332 unknown function (ip: 0x3ffd48d10e17) jl_call_method_internal at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/julia_internal.h:248 [inlined] jl_apply_generic at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/gf.c:2214 jl_apply at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/julia.h:1413 [inlined] start_task at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/task.c:261 jl_set_base_ctx at /home/juliabuild/buildbot/slave/package_tarballppc64le/build/src/task.c:282 Allocations: 48258430 (Pool: 48252559; Big: 5871); GC: 260 ERROR: A test has failed. Please submit a bug report (https://github.com/JuliaLang/julia/issues) including error messages above and the output of versioninfo(): Julia Version 0.6.0-dev.2143 Commit f4cbc40 (2017-01-19 01:42 UTC) Platform Info: OS: Linux (powerpc64le-unknown-linux-gnu) CPU: unknown WORD_SIZE: 64 BLAS: libopenblas (NO_AFFINITY POWER8) LAPACK: libopenblas LIBM: libopenlibm LLVM: libLLVM-3.9.1 (ORCJIT, pwr8) </code></pre></div> <p dir="auto">Looks like it's pointing to <a href="https://github.com/JuliaLang/julia/blob/master/test/sparse/sparse.jl#L1466-L1484">this block of code</a> as the culprit, but it doesn't trigger when I just run that piece of code manually. Reporting here in case anyone else wants to take a shot at this.</p>
<p dir="auto">This appears to be a bug in <code class="notranslate">rand()</code>, that we have seen pop up in our CI a few times over the last couple months:</p> <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="ERROR: LoadError: TaskFailedException: InexactError: check_top_bit(UInt64, -64) Stacktrace: [1] throw_inexacterror(::Symbol, ::Type{UInt64}, ::Int64) at ./boot.jl:558 [2] check_top_bit at ./boot.jl:572 [inlined] [3] toUInt64 at ./boot.jl:683 [inlined] [4] UInt64 at ./boot.jl:713 [inlined] [5] convert at ./number.jl:7 [inlined] [6] cconvert at ./essentials.jl:388 [inlined] [7] unsafe_copyto! at ./array.jl:245 [inlined] [8] _rand_max383!(::Random.MersenneTwister, ::Random.UnsafeView{Float64}, ::Random.CloseOpen12{Float64}) at /build/source/usr/share/julia/stdlib/v1.5/Random/src/RNGs.jl:452 [9] rand!(::Random.MersenneTwister, ::Random.UnsafeView{Float64}, ::Random.SamplerTrivial{Random.CloseOpen12{Float64},Float64}) at /build/source/usr/share/julia/stdlib/v1.5/Random/src/RNGs.jl:486 [10] rand! at /build/source/usr/share/julia/stdlib/v1.5/Random/src/Random.jl:266 [inlined] [11] rand!(::Random.MersenneTwister, ::Random.UnsafeView{UInt128}, ::Random.SamplerType{UInt128}) at /build/source/usr/share/julia/stdlib/v1.5/Random/src/RNGs.jl:567 [12] rand! at /build/source/usr/share/julia/stdlib/v1.5/Random/src/RNGs.jl:590 [inlined] [13] rand! at /build/source/usr/share/julia/stdlib/v1.5/Random/src/Random.jl:267 [inlined] (repeats 2 times) [14] mt_setfull! at /build/source/usr/share/julia/stdlib/v1.5/Random/src/RNGs.jl:215 [inlined] [15] reserve1 at /build/source/usr/share/julia/stdlib/v1.5/Random/src/RNGs.jl:222 [inlined] [16] mt_pop! at /build/source/usr/share/julia/stdlib/v1.5/Random/src/RNGs.jl:227 [inlined] [17] rand at /build/source/usr/share/julia/stdlib/v1.5/Random/src/RNGs.jl:392 [inlined] [18] rand at /build/source/usr/share/julia/stdlib/v1.5/Random/src/Random.jl:256 [inlined] [19] rand(::Random.MersenneTwister, ::Random.SamplerRangeNDL{UInt64,Int64}) at /build/source/usr/share/julia/stdlib/v1.5/Random/src/generation.jl:326 [20] rand at /build/source/usr/share/julia/stdlib/v1.5/Random/src/Random.jl:253 [inlined] [21] sample at /nix/store/k1nz08681liijdmz9y47x8b5qzz8yvyi-delve-binary-linux/delve/.julia/packages/StatsBase/EA8Mh/src/sampling.jl:388 [inlined]"><pre class="notranslate">ERROR<span class="pl-k">:</span> LoadError<span class="pl-k">:</span> TaskFailedException<span class="pl-k">:</span> InexactError<span class="pl-k">:</span> <span class="pl-c1">check_top_bit</span>(UInt64, <span class="pl-k">-</span><span class="pl-c1">64</span>) Stacktrace<span class="pl-k">:</span> [<span class="pl-c1">1</span>] <span class="pl-c1">throw_inexacterror</span>(<span class="pl-k">::</span><span class="pl-c1">Symbol</span>, <span class="pl-k">::</span><span class="pl-c1">Type{UInt64}</span>, <span class="pl-k">::</span><span class="pl-c1">Int64</span>) at <span class="pl-k">./</span>boot<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">558</span> [<span class="pl-c1">2</span>] check_top_bit at <span class="pl-k">./</span>boot<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">572</span> [inlined] [<span class="pl-c1">3</span>] toUInt64 at <span class="pl-k">./</span>boot<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">683</span> [inlined] [<span class="pl-c1">4</span>] UInt64 at <span class="pl-k">./</span>boot<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">713</span> [inlined] [<span class="pl-c1">5</span>] convert at <span class="pl-k">./</span>number<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">7</span> [inlined] [<span class="pl-c1">6</span>] cconvert at <span class="pl-k">./</span>essentials<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">388</span> [inlined] [<span class="pl-c1">7</span>] unsafe_copyto! at <span class="pl-k">./</span>array<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">245</span> [inlined] [<span class="pl-c1">8</span>] <span class="pl-c1">_rand_max383!</span>(<span class="pl-k">::</span><span class="pl-c1">Random.MersenneTwister</span>, <span class="pl-k">::</span><span class="pl-c1">Random.UnsafeView{Float64}</span>, <span class="pl-k">::</span><span class="pl-c1">Random.CloseOpen12{Float64}</span>) at <span class="pl-k">/</span>build<span class="pl-k">/</span>source<span class="pl-k">/</span>usr<span class="pl-k">/</span>share<span class="pl-k">/</span>julia<span class="pl-k">/</span>stdlib<span class="pl-k">/</span>v1.<span class="pl-c1">5</span><span class="pl-k">/</span>Random<span class="pl-k">/</span>src<span class="pl-k">/</span>RNGs<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">452</span> [<span class="pl-c1">9</span>] <span class="pl-c1">rand!</span>(<span class="pl-k">::</span><span class="pl-c1">Random.MersenneTwister</span>, <span class="pl-k">::</span><span class="pl-c1">Random.UnsafeView{Float64}</span>, <span class="pl-k">::</span><span class="pl-c1">Random.SamplerTrivial{Random.CloseOpen12{Float64},Float64}</span>) at <span class="pl-k">/</span>build<span class="pl-k">/</span>source<span class="pl-k">/</span>usr<span class="pl-k">/</span>share<span class="pl-k">/</span>julia<span class="pl-k">/</span>stdlib<span class="pl-k">/</span>v1.<span class="pl-c1">5</span><span class="pl-k">/</span>Random<span class="pl-k">/</span>src<span class="pl-k">/</span>RNGs<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">486</span> [<span class="pl-c1">10</span>] rand! at <span class="pl-k">/</span>build<span class="pl-k">/</span>source<span class="pl-k">/</span>usr<span class="pl-k">/</span>share<span class="pl-k">/</span>julia<span class="pl-k">/</span>stdlib<span class="pl-k">/</span>v1.<span class="pl-c1">5</span><span class="pl-k">/</span>Random<span class="pl-k">/</span>src<span class="pl-k">/</span>Random<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">266</span> [inlined] [<span class="pl-c1">11</span>] <span class="pl-c1">rand!</span>(<span class="pl-k">::</span><span class="pl-c1">Random.MersenneTwister</span>, <span class="pl-k">::</span><span class="pl-c1">Random.UnsafeView{UInt128}</span>, <span class="pl-k">::</span><span class="pl-c1">Random.SamplerType{UInt128}</span>) at <span class="pl-k">/</span>build<span class="pl-k">/</span>source<span class="pl-k">/</span>usr<span class="pl-k">/</span>share<span class="pl-k">/</span>julia<span class="pl-k">/</span>stdlib<span class="pl-k">/</span>v1.<span class="pl-c1">5</span><span class="pl-k">/</span>Random<span class="pl-k">/</span>src<span class="pl-k">/</span>RNGs<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">567</span> [<span class="pl-c1">12</span>] rand! at <span class="pl-k">/</span>build<span class="pl-k">/</span>source<span class="pl-k">/</span>usr<span class="pl-k">/</span>share<span class="pl-k">/</span>julia<span class="pl-k">/</span>stdlib<span class="pl-k">/</span>v1.<span class="pl-c1">5</span><span class="pl-k">/</span>Random<span class="pl-k">/</span>src<span class="pl-k">/</span>RNGs<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">590</span> [inlined] [<span class="pl-c1">13</span>] rand! at <span class="pl-k">/</span>build<span class="pl-k">/</span>source<span class="pl-k">/</span>usr<span class="pl-k">/</span>share<span class="pl-k">/</span>julia<span class="pl-k">/</span>stdlib<span class="pl-k">/</span>v1.<span class="pl-c1">5</span><span class="pl-k">/</span>Random<span class="pl-k">/</span>src<span class="pl-k">/</span>Random<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">267</span> [inlined] (repeats <span class="pl-c1">2</span> times) [<span class="pl-c1">14</span>] mt_setfull! at <span class="pl-k">/</span>build<span class="pl-k">/</span>source<span class="pl-k">/</span>usr<span class="pl-k">/</span>share<span class="pl-k">/</span>julia<span class="pl-k">/</span>stdlib<span class="pl-k">/</span>v1.<span class="pl-c1">5</span><span class="pl-k">/</span>Random<span class="pl-k">/</span>src<span class="pl-k">/</span>RNGs<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">215</span> [inlined] [<span class="pl-c1">15</span>] reserve1 at <span class="pl-k">/</span>build<span class="pl-k">/</span>source<span class="pl-k">/</span>usr<span class="pl-k">/</span>share<span class="pl-k">/</span>julia<span class="pl-k">/</span>stdlib<span class="pl-k">/</span>v1.<span class="pl-c1">5</span><span class="pl-k">/</span>Random<span class="pl-k">/</span>src<span class="pl-k">/</span>RNGs<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">222</span> [inlined] [<span class="pl-c1">16</span>] mt_pop! at <span class="pl-k">/</span>build<span class="pl-k">/</span>source<span class="pl-k">/</span>usr<span class="pl-k">/</span>share<span class="pl-k">/</span>julia<span class="pl-k">/</span>stdlib<span class="pl-k">/</span>v1.<span class="pl-c1">5</span><span class="pl-k">/</span>Random<span class="pl-k">/</span>src<span class="pl-k">/</span>RNGs<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">227</span> [inlined] [<span class="pl-c1">17</span>] rand at <span class="pl-k">/</span>build<span class="pl-k">/</span>source<span class="pl-k">/</span>usr<span class="pl-k">/</span>share<span class="pl-k">/</span>julia<span class="pl-k">/</span>stdlib<span class="pl-k">/</span>v1.<span class="pl-c1">5</span><span class="pl-k">/</span>Random<span class="pl-k">/</span>src<span class="pl-k">/</span>RNGs<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">392</span> [inlined] [<span class="pl-c1">18</span>] rand at <span class="pl-k">/</span>build<span class="pl-k">/</span>source<span class="pl-k">/</span>usr<span class="pl-k">/</span>share<span class="pl-k">/</span>julia<span class="pl-k">/</span>stdlib<span class="pl-k">/</span>v1.<span class="pl-c1">5</span><span class="pl-k">/</span>Random<span class="pl-k">/</span>src<span class="pl-k">/</span>Random<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">256</span> [inlined] [<span class="pl-c1">19</span>] <span class="pl-c1">rand</span>(<span class="pl-k">::</span><span class="pl-c1">Random.MersenneTwister</span>, <span class="pl-k">::</span><span class="pl-c1">Random.SamplerRangeNDL{UInt64,Int64}</span>) at <span class="pl-k">/</span>build<span class="pl-k">/</span>source<span class="pl-k">/</span>usr<span class="pl-k">/</span>share<span class="pl-k">/</span>julia<span class="pl-k">/</span>stdlib<span class="pl-k">/</span>v1.<span class="pl-c1">5</span><span class="pl-k">/</span>Random<span class="pl-k">/</span>src<span class="pl-k">/</span>generation<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">326</span> [<span class="pl-c1">20</span>] rand at <span class="pl-k">/</span>build<span class="pl-k">/</span>source<span class="pl-k">/</span>usr<span class="pl-k">/</span>share<span class="pl-k">/</span>julia<span class="pl-k">/</span>stdlib<span class="pl-k">/</span>v1.<span class="pl-c1">5</span><span class="pl-k">/</span>Random<span class="pl-k">/</span>src<span class="pl-k">/</span>Random<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">253</span> [inlined] [<span class="pl-c1">21</span>] sample at <span class="pl-k">/</span>nix<span class="pl-k">/</span>store<span class="pl-k">/</span>k1nz08681liijdmz9y47x8b5qzz8yvyi<span class="pl-k">-</span>delve<span class="pl-k">-</span>binary<span class="pl-k">-</span>linux<span class="pl-k">/</span>delve<span class="pl-k">/</span><span class="pl-k">.</span>julia<span class="pl-k">/</span>packages<span class="pl-k">/</span>StatsBase<span class="pl-k">/</span>EA8Mh<span class="pl-k">/</span>src<span class="pl-k">/</span>sampling<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">388</span> [inlined]</pre></div> <p dir="auto">The build that seems to exhibit this failure is calling <code class="notranslate">rand()</code> repeatedly across thousands of tasks in a process running with <code class="notranslate">JULIA_NUM_THREADS=8</code>.<br> This is on <code class="notranslate">julia 1.5.3</code>, on a (nix) source-build, on linux.</p> <p dir="auto">Thanks!</p>
0
<p dir="auto">On Windows, when Electron <del>with Chromium61</del> is run, the path <code class="notranslate">%HOMEDRIVE%%HOMEPATH%\AppData\Roaming\Electron\logs</code> is created under the current directory.</p> <p dir="auto">This can likely be attributed to the following code:<br> </p><div class="Box Box--condensed my-2"> <div class="Box-header f6"> <p class="mb-0 text-bold"> <a href="https://github.com/electron/electron/blob/306b62709017e12f6f4865e3d2b069cc7177db1f/brightray/browser/browser_main_parts.cc#L168-L179">electron/brightray/browser/browser_main_parts.cc</a> </p> <p class="mb-0 color-fg-muted"> Lines 168 to 179 in <a data-pjax="true" class="commit-tease-sha" href="/electron/electron/commit/306b62709017e12f6f4865e3d2b069cc7177db1f">306b627</a> </p> </div> <div itemprop="text" class="Box-body p-0 blob-wrapper blob-wrapper-embedded data"> <table class="highlight tab-size mb-0 js-file-line-container" data-tab-size="8" data-paste-markdown-skip=""> <tbody><tr class="border-0"> <td id="L168" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="168"></td> <td id="LC168" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">void</span> <span class="pl-en">OverrideAppLogsPath</span>() { </td> </tr> <tr class="border-0"> <td id="L169" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="169"></td> <td id="LC169" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> #<span class="pl-k">if</span> defined(OS_WIN) </td> </tr> <tr class="border-0"> <td id="L170" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="170"></td> <td id="LC170" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> std::wstring app_name = <span class="pl-c1">base::UTF8ToWide</span>(<span class="pl-c1">GetApplicationName</span>()); </td> </tr> <tr class="border-0"> <td id="L171" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="171"></td> <td id="LC171" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> std::wstring log_path = <span class="pl-s"><span class="pl-pds">L"</span>%HOMEDRIVE%%HOMEPATH%<span class="pl-cce">\\</span>AppData<span class="pl-cce">\\</span>Roaming<span class="pl-cce">\\</span><span class="pl-pds">"</span></span>; </td> </tr> <tr class="border-0"> <td id="L172" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="172"></td> <td id="LC172" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> std::wstring app_log_path = log_path + app_name + <span class="pl-s"><span class="pl-pds">L"</span><span class="pl-cce">\\</span>logs<span class="pl-pds">"</span></span>; </td> </tr> <tr class="border-0"> <td id="L173" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="173"></td> <td id="LC173" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> #<span class="pl-k">else</span> </td> </tr> <tr class="border-0"> <td id="L174" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="174"></td> <td id="LC174" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> std::string app_name = <span class="pl-c1">GetApplicationName</span>(); </td> </tr> <tr class="border-0"> <td id="L175" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="175"></td> <td id="LC175" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> std::string home_path = <span class="pl-c1">std::string</span>(<span class="pl-c1">getenv</span>(<span class="pl-s"><span class="pl-pds">"</span>HOME<span class="pl-pds">"</span></span>)); </td> </tr> <tr class="border-0"> <td id="L176" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="176"></td> <td id="LC176" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> std::string app_log_path = home_path + <span class="pl-s"><span class="pl-pds">"</span>/.config/<span class="pl-pds">"</span></span> + app_name + <span class="pl-s"><span class="pl-pds">"</span>/logs<span class="pl-pds">"</span></span>; </td> </tr> <tr class="border-0"> <td id="L177" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="177"></td> <td id="LC177" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> #<span class="pl-k">endif</span> </td> </tr> <tr class="border-0"> <td id="L178" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="178"></td> <td id="LC178" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c1">PathService::Override</span>(DIR_APP_LOGS, <span class="pl-c1">base::FilePath</span>(app_log_path)); </td> </tr> <tr class="border-0"> <td id="L179" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="179"></td> <td id="LC179" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> } </td> </tr> </tbody></table> </div> </div> <p></p> <p dir="auto">I did not reproduce it with Electron 1.8.1, so I'm deducing that it has something to do with upgrade to Chromium 61 - possibly the function <code class="notranslate">PathService::Override</code> no longer expands environment variables.</p>
<ul dir="auto"> <li>Electron version: 1.8.2-beta 1</li> <li>Operating system: Windows 7</li> </ul> <h3 dir="auto">Expected behavior</h3> <p dir="auto">Launching electron should not create a subfolder.</p> <h3 dir="auto">Actual behavior</h3> <p dir="auto">Running electron creates a subfolder in the electron folder. The subfolder is named "%HOMEDRIVE%%HOMEPATH%" and contains subfolders AppData\Roaming\Electron\logs<br> I've not seen this behaviour in any previous version, and obviously %HOMEDRIVE%%HOMEPATH% are environnement variables names that should be expanded (hence the bug).</p> <h3 dir="auto">How to reproduce</h3> <p dir="auto">Download electron-v1.8.2-beta.1-win32-x64.zip<br> Launch electron.exe<br> See the folder appearing</p>
1
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[x] bug report =&gt; search github for a similar issue or PR before submitting [ ] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[x] bug report =&gt; search github for a similar issue or PR before submitting [ ] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question </code></pre></div> <p dir="auto"><strong>Current behavior</strong><br> <code class="notranslate">MockConnection</code> isn't consistent with a real connection in its error handling. The real connection checks the response status and if it is okay. If the status is within 200 and 299 then it calls next on the observable, otherwise error. <a href="https://github.com/angular/angular/blob/master/modules/%40angular/http/testing/mock_backend.ts#L63">MockRespond always calls next</a>. This means you have to explicitly check the status code in unit tests and call <a href="https://github.com/angular/angular/blob/master/modules/%40angular/http/testing/mock_backend.ts#L63">MockError</a></p> <p dir="auto"><strong>Expected behavior</strong><br> MockRespond would fire an error if the response status is not okay. Therefore, I cannot see much need for MockError except if one requires to test the error handling method without creating a mock HTTP method maybe.</p> <p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong><br> Not sure this is 100% neccesary, will do if so. See <a href="http://stackoverflow.com/questions/41365022/angular-2-unit-testing-observable-errors-http?noredirect=1#comment69932655_41365022" rel="nofollow">this SO question</a> for more info.</p> <p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong><br> Better portrayal of a real HTTP connection in unit tests</p> <p dir="auto"><strong>Please tell us about your environment:</strong><br> Ubuntu 15.0, Webstorm, @angular/http version 2.4.1</p> <ul dir="auto"> <li> <p dir="auto"><strong>Angular version:</strong> 2.0.X<br> 2.4.1</p> </li> <li> <p dir="auto"><strong>Browser:</strong><br> all</p> </li> <li> <p dir="auto"><strong>Language:</strong> [all | TypeScript X.X | ES6/7 | ES5]<br> Typescript 2.1.4</p> </li> </ul>
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ x] bug report =&gt; search github for a similar issue or PR before submitting [ ] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[ x] bug report =&gt; search github for a similar issue or PR before submitting [ ] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question </code></pre></div> <p dir="auto"><strong>Current behavior</strong><br> Test Repo - <a href="https://github.com/mildfuzz/angular-mockError">https://github.com/mildfuzz/angular-mockError</a></p> <p dir="auto">I am unable to test predicted HTTP error responses. Mockbackend can either send a response with an error code (which my app treats as a successful response in the test environment, but as an error in real world)</p> <p dir="auto">I am unable to send status codes with an error response in my tests, so I can not test any error handling my application might implements.</p> <p dir="auto"><strong>Expected behavior</strong><br> at least one of the defined test cases passes</p> <p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong><br> Test Repo - <a href="https://github.com/mildfuzz/angular-mockError">https://github.com/mildfuzz/angular-mockError</a></p> <p dir="auto">this is a re-opening of issue <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="139123794" data-permission-text="Title is private" data-url="https://github.com/angular/angular/issues/7471" data-hovercard-type="issue" data-hovercard-url="/angular/angular/issues/7471/hovercard" href="https://github.com/angular/angular/issues/7471">#7471</a>, which was closed due to lack of repro steps.</p> <p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong><br> To be able to test all responses</p> <p dir="auto"><strong>Please tell us about your environment:</strong><br> OsX</p> <ul dir="auto"> <li> <p dir="auto"><strong>Angular version:</strong> 2.0.X<br> Angular 2.1.0</p> </li> <li> <p dir="auto"><strong>Browser:</strong> [all | Chrome XX | Firefox XX | IE XX | Safari XX | Mobile Chrome XX | Android X.X Web Browser | iOS XX Safari | iOS XX UIWebView | iOS XX WKWebView ]<br> Chrome 54</p> </li> <li> <p dir="auto"><strong>Language:</strong> TypeScript 2.0.3</p> </li> <li> <p dir="auto"><strong>Node (for AoT issues):</strong> <code class="notranslate">node --version</code> = 6.9.1</p> </li> </ul>
1
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[x] bug report [ ] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[x] bug report [ ] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question </code></pre></div> <p dir="auto"><strong>Current behavior</strong></p> <p dir="auto">Plunkr: <a href="http://plnkr.co/edit/QPW3qrQmSPrDwwXYK6Wx?p=preview" rel="nofollow">http://plnkr.co/edit/QPW3qrQmSPrDwwXYK6Wx?p=preview</a></p> <p dir="auto">Here shows an item detail page embeds a child view which exhibits the related items. When I click the related items to visit other item's detail page, the links of the tab("Overview" and "Related") doesn't update accordingly.</p> <p dir="auto">When clicks "Item: 2", the link of the tab is still "/item/1/related".</p> <p dir="auto"><strong>Expected/desired behavior</strong></p> <p dir="auto">When clicks "Item: 2", the link of the tab should change to "/item/2/related".</p> <p dir="auto"><strong>Reproduction of the problem</strong><br> If the current behavior is a bug or you can illustrate your feature request better with an example, please provide the steps to reproduce and if possible a minimal demo of the problem via <a href="https://plnkr.co" rel="nofollow">https://plnkr.co</a> or similar (you can use this template as a starting point: <a href="http://plnkr.co/edit/tpl:AvJOMERrnz94ekVua0u5" rel="nofollow">http://plnkr.co/edit/tpl:AvJOMERrnz94ekVua0u5</a>).</p> <p dir="auto">Plunkr: <a href="http://plnkr.co/edit/QPW3qrQmSPrDwwXYK6Wx?p=preview" rel="nofollow">http://plnkr.co/edit/QPW3qrQmSPrDwwXYK6Wx?p=preview</a></p> <p dir="auto"><strong>Please tell us about your environment:</strong></p> <ul dir="auto"> <li><strong>Angular version:</strong> 2.0.0-rc.4</li> <li><strong>Angular Router version:</strong> 3.0.0-beta.2</li> <li><strong>Browser:</strong> [ Chrome 51 ]</li> <li><strong>Language:</strong> [TypeScript ]</li> </ul>
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[x] bug report =&gt; search github for a similar issue or PR before submitting"><pre class="notranslate"><code class="notranslate">[x] bug report =&gt; search github for a similar issue or PR before submitting </code></pre></div> <p dir="auto"><strong>Current behavior</strong><br> White screen, no error in console nor in webpack's terminal output.</p> <p dir="auto"><strong>Expected behavior</strong><br> At least a few text words in screen, it's basically a simple hello world, shouldn't fail without errors, it shouldn't even fail to begin with.</p> <p dir="auto"><strong>Reproduction of the problem</strong><br> I used this simple code, first <code class="notranslate">main.ts</code>:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// main.ts import 'angular'; import {adapter} from './app'; import {App} from './app'; console.log(angular); angular.module('ng1App', []) .directive('myApp', function() { return { template: '&lt;ng2&gt;&lt;/ng2&gt;' } }) .directive('ng2', adapter.downgradeNg2Component(App)); adapter.bootstrap(document.body, ['ng1App']).ready(function(){ console.log('bootstrapped!'); });"><pre class="notranslate"><span class="pl-c">// main.ts</span> <span class="pl-k">import</span> <span class="pl-s">'angular'</span><span class="pl-kos">;</span> <span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-s1">adapter</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'./app'</span><span class="pl-kos">;</span> <span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-smi">App</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'./app'</span><span class="pl-kos">;</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s1">angular</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">angular</span><span class="pl-kos">.</span><span class="pl-en">module</span><span class="pl-kos">(</span><span class="pl-s">'ng1App'</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">)</span> <span class="pl-kos">.</span><span class="pl-en">directive</span><span class="pl-kos">(</span><span class="pl-s">'myApp'</span><span class="pl-kos">,</span> <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-kos">{</span> <span class="pl-c1">template</span>: <span class="pl-s">'&lt;ng2&gt;&lt;/ng2&gt;'</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-kos">.</span><span class="pl-en">directive</span><span class="pl-kos">(</span><span class="pl-s">'ng2'</span><span class="pl-kos">,</span> <span class="pl-s1">adapter</span><span class="pl-kos">.</span><span class="pl-en">downgradeNg2Component</span><span class="pl-kos">(</span><span class="pl-smi">App</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">adapter</span><span class="pl-kos">.</span><span class="pl-en">bootstrap</span><span class="pl-kos">(</span><span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-c1">body</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-s">'ng1App'</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">ready</span><span class="pl-kos">(</span><span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">{</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">'bootstrapped!'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto">Next adapter import from <code class="notranslate">app/adapter.ts</code> through a barrel in <code class="notranslate">app</code>:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import {forwardRef} from '@angular/core'; import {UpgradeAdapter} from '@angular/upgrade'; import {AppModule} from './app.module'; export const adapter = new UpgradeAdapter(AppModule);"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-s1">forwardRef</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'@angular/core'</span><span class="pl-kos">;</span> <span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-smi">UpgradeAdapter</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'@angular/upgrade'</span><span class="pl-kos">;</span> <span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-smi">AppModule</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'./app.module'</span><span class="pl-kos">;</span> <span class="pl-k">export</span> <span class="pl-k">const</span> <span class="pl-s1">adapter</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-smi">UpgradeAdapter</span><span class="pl-kos">(</span><span class="pl-smi">AppModule</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto">Next app module in <code class="notranslate">app/app.module.ts</code>:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import {NgModule, ApplicationRef} from '@angular/core'; import {BrowserModule} from '@angular/platform-browser'; import {RouterModule} from '@angular/router'; import {App} from './'; import {Home} from './home'; @NgModule({ imports: [ BrowserModule ], declarations: [ App, Home ] }) export class AppModule {}"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-smi">NgModule</span><span class="pl-kos">,</span> <span class="pl-smi">ApplicationRef</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'@angular/core'</span><span class="pl-kos">;</span> <span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-smi">BrowserModule</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'@angular/platform-browser'</span><span class="pl-kos">;</span> <span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-smi">RouterModule</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'@angular/router'</span><span class="pl-kos">;</span> <span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-smi">App</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'./'</span><span class="pl-kos">;</span> <span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-smi">Home</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'./home'</span><span class="pl-kos">;</span> @<span class="pl-smi">NgModule</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">imports</span>: <span class="pl-kos">[</span> <span class="pl-smi">BrowserModule</span> <span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-c1">declarations</span>: <span class="pl-kos">[</span> <span class="pl-smi">App</span><span class="pl-kos">,</span> <span class="pl-smi">Home</span> <span class="pl-kos">]</span> <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-k">export</span> <span class="pl-k">class</span> <span class="pl-smi">AppModule</span> <span class="pl-kos">{</span><span class="pl-kos">}</span></pre></div> <p dir="auto">Next app component in <code class="notranslate">app/app.component.ts</code>:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import { Component } from '@angular/core'; @Component({ selector: 'ng2', template: ` &lt;home&gt;&lt;/home&gt; ` }) export class App { }"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-smi">Component</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'@angular/core'</span><span class="pl-kos">;</span> @<span class="pl-smi">Component</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">selector</span>: <span class="pl-s">'ng2'</span><span class="pl-kos">,</span> <span class="pl-c1">template</span>: <span class="pl-s">`</span> <span class="pl-s"> &lt;home&gt;&lt;/home&gt;</span> <span class="pl-s"> `</span> <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-k">export</span> <span class="pl-k">class</span> <span class="pl-smi">App</span> <span class="pl-kos">{</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">Last home component which should be like a simple directive in <code class="notranslate">app/home.ts</code>:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import {Component} from '@angular/core'; import {adapter} from './adapter'; @Component({ selector: 'home', template: ` Welcome Home ` }) export class Home{ }"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-smi">Component</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'@angular/core'</span><span class="pl-kos">;</span> <span class="pl-k">import</span> <span class="pl-kos">{</span><span class="pl-s1">adapter</span><span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'./adapter'</span><span class="pl-kos">;</span> @<span class="pl-smi">Component</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">selector</span>: <span class="pl-s">'home'</span><span class="pl-kos">,</span> <span class="pl-c1">template</span>: <span class="pl-s">`</span> <span class="pl-s"> Welcome Home</span> <span class="pl-s"> `</span> <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-k">export</span> <span class="pl-k">class</span> <span class="pl-smi">Home</span><span class="pl-kos">{</span> <span class="pl-kos">}</span></pre></div> <p dir="auto"><strong>Please tell us about your environment:</strong><br> OSX El Capitan, VSCode, NPM, http server -&gt; <code class="notranslate">gulp-connect</code></p> <ul dir="auto"> <li><strong>Angular version:</strong> 2.0.0</li> <li><strong>Browser:</strong> [all | Chrome 53 ]</li> <li><strong>Language:</strong> [TypeScript 2.0]</li> </ul>
0
<p dir="auto">Nightly built, python2 gpu, cuda 7.5, cudnn 4.0.7, archlinux. TitanX.<br> I run <a href="https://github.com/tensorflow/tensorflow/blob/master/tensorflow/python/ops/batch_norm_benchmark.py">batch_norm_benchmark.py</a> and got the following output:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Forward convolution (lower layers). cpu shape:4/3 #layers:10 mode:op scale:True train:False - 0.043865 secs cpu shape:4/3 #layers:10 mode:py scale:True train:False - 0.053864 secs cpu shape:4/3 #layers:10 mode:slow scale:True train:False - 0.088060 secs === op vs py: 22.8% === === py vs slow: 63.5% === gpu shape:4/3 #layers:10 mode:op scale:True train:False - 0.287913 secs gpu shape:4/3 #layers:10 mode:py scale:True train:False - 0.284179 secs gpu shape:4/3 #layers:10 mode:slow scale:True train:False - 0.287409 secs === op vs py: -1.3% === === py vs slow: 1.1% === Forward/backward convolution (lower layers). cpu shape:4/3 #layers:10 mode:op scale:True train:True - 0.220112 secs cpu shape:4/3 #layers:10 mode:py scale:True train:True - 0.201284 secs cpu shape:4/3 #layers:10 mode:slow scale:True train:True - 0.295103 secs === op vs py: -8.6% === === py vs slow: 46.6% === gpu shape:4/3 #layers:10 mode:op scale:True train:True - 2.108785 secs gpu shape:4/3 #layers:10 mode:py scale:True train:True - 0.578407 secs gpu shape:4/3 #layers:10 mode:slow scale:True train:True - 0.863753 secs === op vs py: -59.0% === === py vs slow: -96.6% === Forward convolution (higher layers). cpu shape:4/3 #layers:10 mode:op scale:True train:False - 0.025443 secs cpu shape:4/3 #layers:10 mode:py scale:True train:False - 0.033344 secs cpu shape:4/3 #layers:10 mode:slow scale:True train:False - 0.048162 secs === op vs py: 31.1% === === py vs slow: 44.4% === gpu shape:4/3 #layers:10 mode:op scale:True train:False - 0.164241 secs gpu shape:4/3 #layers:10 mode:py scale:True train:False - 0.161473 secs gpu shape:4/3 #layers:10 mode:slow scale:True train:False - 0.163212 secs === op vs py: -1.7% === === py vs slow: 1.1% === Forward/backward convolution (higher layers). cpu shape:4/3 #layers:10 mode:op scale:True train:True - 0.111931 secs cpu shape:4/3 #layers:10 mode:py scale:True train:True - 0.118556 secs cpu shape:4/3 #layers:10 mode:slow scale:True train:True - 0.163289 secs === op vs py: 5.9% === === py vs slow: 37.7% === gpu shape:4/3 #layers:10 mode:op scale:True train:True - 1.194288 secs gpu shape:4/3 #layers:10 mode:py scale:True train:True - 0.329403 secs gpu shape:4/3 #layers:10 mode:slow scale:True train:True - 0.491005 secs === op vs py: -72.4% === === py vs slow: 49.1% === Forward fully-connected. cpu shape:2/1 #layers:10 mode:py scale:True train:False - 0.001866 secs cpu shape:2/1 #layers:10 mode:slow scale:True train:False - 0.002859 secs === py vs slow: 53.2% === gpu shape:2/1 #layers:10 mode:py scale:True train:False - 0.002420 secs gpu shape:2/1 #layers:10 mode:slow scale:True train:False - 0.002523 secs === py vs slow: 4.3% === Forward/backward fully-connected. cpu shape:2/1 #layers:10 mode:py scale:True train:True - 0.004973 secs cpu shape:2/1 #layers:10 mode:slow scale:True train:True - 0.006781 secs === py vs slow: 36.4% === gpu shape:2/1 #layers:10 mode:py scale:True train:True - 0.006370 secs gpu shape:2/1 #layers:10 mode:slow scale:True train:True - 0.008182 secs === py vs slow: 28.4% ==="><pre class="notranslate"><code class="notranslate">Forward convolution (lower layers). cpu shape:4/3 #layers:10 mode:op scale:True train:False - 0.043865 secs cpu shape:4/3 #layers:10 mode:py scale:True train:False - 0.053864 secs cpu shape:4/3 #layers:10 mode:slow scale:True train:False - 0.088060 secs === op vs py: 22.8% === === py vs slow: 63.5% === gpu shape:4/3 #layers:10 mode:op scale:True train:False - 0.287913 secs gpu shape:4/3 #layers:10 mode:py scale:True train:False - 0.284179 secs gpu shape:4/3 #layers:10 mode:slow scale:True train:False - 0.287409 secs === op vs py: -1.3% === === py vs slow: 1.1% === Forward/backward convolution (lower layers). cpu shape:4/3 #layers:10 mode:op scale:True train:True - 0.220112 secs cpu shape:4/3 #layers:10 mode:py scale:True train:True - 0.201284 secs cpu shape:4/3 #layers:10 mode:slow scale:True train:True - 0.295103 secs === op vs py: -8.6% === === py vs slow: 46.6% === gpu shape:4/3 #layers:10 mode:op scale:True train:True - 2.108785 secs gpu shape:4/3 #layers:10 mode:py scale:True train:True - 0.578407 secs gpu shape:4/3 #layers:10 mode:slow scale:True train:True - 0.863753 secs === op vs py: -59.0% === === py vs slow: -96.6% === Forward convolution (higher layers). cpu shape:4/3 #layers:10 mode:op scale:True train:False - 0.025443 secs cpu shape:4/3 #layers:10 mode:py scale:True train:False - 0.033344 secs cpu shape:4/3 #layers:10 mode:slow scale:True train:False - 0.048162 secs === op vs py: 31.1% === === py vs slow: 44.4% === gpu shape:4/3 #layers:10 mode:op scale:True train:False - 0.164241 secs gpu shape:4/3 #layers:10 mode:py scale:True train:False - 0.161473 secs gpu shape:4/3 #layers:10 mode:slow scale:True train:False - 0.163212 secs === op vs py: -1.7% === === py vs slow: 1.1% === Forward/backward convolution (higher layers). cpu shape:4/3 #layers:10 mode:op scale:True train:True - 0.111931 secs cpu shape:4/3 #layers:10 mode:py scale:True train:True - 0.118556 secs cpu shape:4/3 #layers:10 mode:slow scale:True train:True - 0.163289 secs === op vs py: 5.9% === === py vs slow: 37.7% === gpu shape:4/3 #layers:10 mode:op scale:True train:True - 1.194288 secs gpu shape:4/3 #layers:10 mode:py scale:True train:True - 0.329403 secs gpu shape:4/3 #layers:10 mode:slow scale:True train:True - 0.491005 secs === op vs py: -72.4% === === py vs slow: 49.1% === Forward fully-connected. cpu shape:2/1 #layers:10 mode:py scale:True train:False - 0.001866 secs cpu shape:2/1 #layers:10 mode:slow scale:True train:False - 0.002859 secs === py vs slow: 53.2% === gpu shape:2/1 #layers:10 mode:py scale:True train:False - 0.002420 secs gpu shape:2/1 #layers:10 mode:slow scale:True train:False - 0.002523 secs === py vs slow: 4.3% === Forward/backward fully-connected. cpu shape:2/1 #layers:10 mode:py scale:True train:True - 0.004973 secs cpu shape:2/1 #layers:10 mode:slow scale:True train:True - 0.006781 secs === py vs slow: 36.4% === gpu shape:2/1 #layers:10 mode:py scale:True train:True - 0.006370 secs gpu shape:2/1 #layers:10 mode:slow scale:True train:True - 0.008182 secs === py vs slow: 28.4% === </code></pre></div> <p dir="auto">Although <code class="notranslate">sess.run</code> in a loop might not be an accurate way to benchmark, I think the performance regression exists because running the same script with an earlier binary built (not sure which commit it is) is 10x-20x faster.</p>
<p dir="auto">This issue is a follow-up to <a href="http://stackoverflow.com/questions/38704095/tensorflow-rc-0-10-3x-slower-than-0-9" rel="nofollow">this posting</a> on stack overflow. As noted, the 0.10 version is ~3x slower than version 0.9 for a particular training script I am using. The same slow-down is observed when using the pip version with CuDNN4 or with a version compiled from source and CuDNN 5.1.</p> <p dir="auto">I'm not sure what information about the training script would help. It is a fairly complex script that is training a network for object detection using methods similar to YOLO and SSD. It won't be possible to post the entire set of code, but if there is a way to isolate the source of the delay I may be able to modify it and post that portion.</p> <p dir="auto">While trying to get insight into the source of the slow-down I also noted that I wasn't able to compile from source using CuDNN4 as noted in the SO posting. This is a secondary issue, but may also warrant investigation.</p>
1
<p dir="auto">Hi,</p> <p dir="auto">I have a model that classifies RGB images and it works well.</p> <p dir="auto">Now, I would like to use the same model on gray level images without re-training the new model. I could duplicate the gray level image in order to give it three identical channels, but it would use a excessive memory.<br> So I would like to load the RGB model and get only the weights of a single channel (green for example) that I would affect to my gray level model.</p> <p dir="auto">Any idea how I can access the weights of a given channel?</p> <p dir="auto">Regards,</p>
<p dir="auto">Apologies if this has been reported already at some other place, I have been googling for it quite a bit, with my colleague without success.<br> While running the simple mnist example with keras+tensorflow using P100 GPGPU we encounter an issue at the intersection of keras/tensorflow/cuda</p> <p dir="auto">Using TensorFlow backend.<br> Using TensorFlow backend.<br> I tensorflow/stream_executor/dso_loader.cc:135] successfully opened CUDA library libcublas.so.8.0 locally<br> I tensorflow/stream_executor/dso_loader.cc:135] successfully opened CUDA library libcudnn.so.5 locally<br> I tensorflow/stream_executor/dso_loader.cc:135] successfully opened CUDA library libcufft.so.8.0 locally<br> I tensorflow/stream_executor/dso_loader.cc:135] successfully opened CUDA library libcuda.so.1 locally<br> I tensorflow/stream_executor/dso_loader.cc:135] successfully opened CUDA library libcurand.so.8.0 locally<br> I tensorflow/stream_executor/dso_loader.cc:135] successfully opened CUDA library libcublas.so.8.0 locally<br> I tensorflow/stream_executor/dso_loader.cc:135] successfully opened CUDA library libcudnn.so.5 locally<br> I tensorflow/stream_executor/dso_loader.cc:135] successfully opened CUDA library libcufft.so.8.0 locally<br> I tensorflow/stream_executor/dso_loader.cc:135] successfully opened CUDA library libcuda.so.1 locally<br> I tensorflow/stream_executor/dso_loader.cc:135] successfully opened CUDA library libcurand.so.8.0 locally<br> I tensorflow/core/common_runtime/gpu/gpu_device.cc:885] Found device 0 with properties:<br> name: Tesla P100-PCIE-16GB<br> major: 6 minor: 0 memoryClockRate (GHz) 1.3285<br> pciBusID 0000:02:00.0<br> Total memory: 15.89GiB<br> Free memory: 15.51GiB<br> I tensorflow/core/common_runtime/gpu/gpu_device.cc:906] DMA: 0<br> I tensorflow/core/common_runtime/gpu/gpu_device.cc:916] 0: Y<br> I tensorflow/core/common_runtime/gpu/gpu_device.cc:975] Creating TensorFlow device (/gpu:0) -&gt; (device: 0, name: Tesla P100-PCIE-16GB, pci bus id: 0000:02:00.0)<br> I tensorflow/core/common_runtime/gpu/gpu_device.cc:885] Found device 0 with properties:<br> name: Tesla P100-PCIE-16GB<br> major: 6 minor: 0 memoryClockRate (GHz) 1.3285<br> pciBusID 0000:02:00.0<br> Total memory: 15.89GiB<br> Free memory: 15.51GiB<br> I tensorflow/core/common_runtime/gpu/gpu_device.cc:906] DMA: 0<br> I tensorflow/core/common_runtime/gpu/gpu_device.cc:916] 0: Y<br> I tensorflow/core/common_runtime/gpu/gpu_device.cc:975] Creating TensorFlow device (/gpu:0) -&gt; (device: 0, name: Tesla P100-PCIE-16GB, pci bus id: 0000:02:00.0)<br> F tensorflow/core/common_runtime/gpu/gpu_device.cc:121] Check failed: err == cudaSuccess (71 vs. 0)<br> F tensorflow/core/common_runtime/gpu/gpu_device.cc:121] Check failed: err == cudaSuccess (71 vs. 0)<br> srun: error: nid05274: task 1: Aborted<br> srun: Terminating job step 1250383.0<br> srun: error: nid05271: task 0: Aborted</p> <p dir="auto">we are using keras 2.0.2, tensorflow 1.0.0. cuda 8.0.53.<br> We seem to be having this issue both in python2.7.12 and python3.5.2 (keras 1.2 and 2.0 ...)<br> Bare tensorflow runtest are going fine, which lead us to think that this is really at the intersection of keras/tensorflow/cuda.<br> There is no problem using the theano backend.</p> <p dir="auto">The same test runs fine on various machine with the same version of the software but with TitanX GPGPU.</p> <p dir="auto">I seem to be tracing this back to<br> <a href="https://github.com/tensorflow/tensorflow/blob/r1.0/tensorflow/core/common_runtime/gpu/gpu_device.cc#L121">https://github.com/tensorflow/tensorflow/blob/r1.0/tensorflow/core/common_runtime/gpu/gpu_device.cc#L121</a></p> <p dir="auto"><a href="http://docs.nvidia.com/cuda/cuda-runtime-api/group__CUDART__TYPES.html#group__CUDART__TYPES_1g3f51e3575c2178246db0a94a430e0038" rel="nofollow">http://docs.nvidia.com/cuda/cuda-runtime-api/group__CUDART__TYPES.html#group__CUDART__TYPES_1g3f51e3575c2178246db0a94a430e0038</a></p> <p dir="auto">"""<br> cudaErrorNotSupported = 71<br> This error indicates the attempted operation is not supported on the current system or device.<br> """</p> <p dir="auto">Would anyone have insights on what keras specific call is percolating to this unsupported cuda call ? It might be a cuda issue in the end, but this originates from using keras, hence this GH issue. thanks in advance for any help on the matter.</p>
0
<p dir="auto">This bug is easy to reproduce when training GANs but probably occurs in other cases as well. In GANs, batch normalization cannot be used in the discriminator. If BN is used in discriminator you will get errors like:</p> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="W tensorflow/core/framework/op_kernel.cc:993] Invalid argument: You must feed a value for placeholder tensor 'input_1' with dtype float [[Node: input_1 = Placeholder[dtype=DT_FLOAT, shape=[], _device=&quot;/job:localhost/replica:0/task:0/cpu:0&quot;]()]] Traceback (most recent call last): File &quot;/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/tensorflow/python/client/session.py&quot;, line 1022, in _do_call return fn(*args) File &quot;/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/tensorflow/python/client/session.py&quot;, line 1004, in _run_fn status, run_metadata) File &quot;/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/contextlib.py&quot;, line 66, in __exit__ next(self.gen) File &quot;/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/tensorflow/python/framework/errors_impl.py&quot;, line 469, in raise_exception_on_not_ok_status pywrap_tensorflow.TF_GetCode(status)) tensorflow.python.framework.errors_impl.InvalidArgumentError: You must feed a value for placeholder tensor 'input_1' with dtype float [[Node: input_1 = Placeholder[dtype=DT_FLOAT, shape=[], _device=&quot;/job:localhost/replica:0/task:0/cpu:0&quot;]()]] During handling of the above exception, another exception occurred: Traceback (most recent call last): File &quot;gan.py&quot;, line 329, in &lt;module&gt; main(sys.argv[1], gen_model_path, disc_model_path) File &quot;gan.py&quot;, line 321, in main adversarial_training(data_dir, generator_model_path, discriminator_model_path) File &quot;gan.py&quot;, line 262, in adversarial_training loss_real, loss_generated = train_discriminator_step() File &quot;gan.py&quot;, line 246, in train_discriminator_step l_r = discriminator_model.train_on_batch(x, -np.ones(batch_size)) File &quot;/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/keras/engine/training.py&quot;, line 1610, in train_on_batch outputs = self.train_function(ins) File &quot;/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/keras/backend/tensorflow_backend.py&quot;, line 2065, in __call__ feed_dict=feed_dict) File &quot;/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/tensorflow/python/client/session.py&quot;, line 767, in run run_metadata_ptr) File &quot;/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/tensorflow/python/client/session.py&quot;, line 965, in _run feed_dict_string, options, run_metadata) File &quot;/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/tensorflow/python/client/session.py&quot;, line 1015, in _do_run target_list, options, run_metadata) File &quot;/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/tensorflow/python/client/session.py&quot;, line 1035, in _do_call raise type(e)(node_def, op, message) tensorflow.python.framework.errors_impl.InvalidArgumentError: You must feed a value for placeholder tensor 'input_1' with dtype float [[Node: input_1 = Placeholder[dtype=DT_FLOAT, shape=[], _device=&quot;/job:localhost/replica:0/task:0/cpu:0&quot;]()]] Caused by op 'input_1', defined at: File &quot;gan.py&quot;, line 329, in &lt;module&gt; main(sys.argv[1], gen_model_path, disc_model_path) File &quot;gan.py&quot;, line 321, in main adversarial_training(data_dir, generator_model_path, discriminator_model_path) File &quot;gan.py&quot;, line 155, in adversarial_training generator_input_tensor = layers.Input(shape=(rand_dim, )) File &quot;/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/keras/engine/topology.py&quot;, line 1373, in Input input_tensor=tensor) File &quot;/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/keras/engine/topology.py&quot;, line 1284, in __init__ name=self.name) File &quot;/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/keras/backend/tensorflow_backend.py&quot;, line 346, in placeholder x = tf.placeholder(dtype, shape=shape, name=name) File &quot;/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/tensorflow/python/ops/array_ops.py&quot;, line 1520, in placeholder name=name) File &quot;/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/tensorflow/python/ops/gen_array_ops.py&quot;, line 2149, in _placeholder name=name) File &quot;/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/tensorflow/python/framework/op_def_library.py&quot;, line 763, in apply_op op_def=op_def) File &quot;/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/tensorflow/python/framework/ops.py&quot;, line 2395, in create_op original_op=self._default_original_op, op_def=op_def) File &quot;/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/tensorflow/python/framework/ops.py&quot;, line 1264, in __init__ self._traceback = _extract_stack() InvalidArgumentError (see above for traceback): You must feed a value for placeholder tensor 'input_1' with dtype float [[Node: input_1 = Placeholder[dtype=DT_FLOAT, shape=[], _device=&quot;/job:localhost/replica:0/task:0/cpu:0&quot;]()]]"><pre class="notranslate">W tensorflow/core/framework/op_kernel.cc:993] Invalid argument: You must feed a value <span class="pl-k">for</span> placeholder tensor <span class="pl-s"><span class="pl-pds">'</span>input_1<span class="pl-pds">'</span></span> with dtype float [[Node: input_1 <span class="pl-k">=</span> Placeholder[dtype<span class="pl-k">=</span>DT_FLOAT, shape<span class="pl-k">=</span>[], _device<span class="pl-k">=</span><span class="pl-s"><span class="pl-pds">"</span>/job:localhost/replica:0/task:0/cpu:0<span class="pl-pds">"</span></span>]()]] Traceback (most recent call last): File <span class="pl-s"><span class="pl-pds">"</span>/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/tensorflow/python/client/session.py<span class="pl-pds">"</span></span>, line 1022, <span class="pl-k">in</span> _do_call <span class="pl-k">return</span> fn(<span class="pl-k">*</span>args) File <span class="pl-s"><span class="pl-pds">"</span>/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/tensorflow/python/client/session.py<span class="pl-pds">"</span></span>, line 1004, <span class="pl-k">in</span> _run_fn status, run_metadata) File <span class="pl-s"><span class="pl-pds">"</span>/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/contextlib.py<span class="pl-pds">"</span></span>, line 66, <span class="pl-k">in</span> __exit__ next(self.gen) File <span class="pl-s"><span class="pl-pds">"</span>/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/tensorflow/python/framework/errors_impl.py<span class="pl-pds">"</span></span>, line 469, <span class="pl-k">in</span> raise_exception_on_not_ok_status pywrap_tensorflow.TF_GetCode(status)) tensorflow.python.framework.errors_impl.InvalidArgumentError: You must feed a value <span class="pl-k">for</span> placeholder tensor <span class="pl-s"><span class="pl-pds">'</span>input_1<span class="pl-pds">'</span></span> with dtype float [[Node: input_1 <span class="pl-k">=</span> Placeholder[dtype<span class="pl-k">=</span>DT_FLOAT, shape<span class="pl-k">=</span>[], _device<span class="pl-k">=</span><span class="pl-s"><span class="pl-pds">"</span>/job:localhost/replica:0/task:0/cpu:0<span class="pl-pds">"</span></span>]()]] During handling of the above exception, another exception occurred: Traceback (most recent call last): File <span class="pl-s"><span class="pl-pds">"</span>gan.py<span class="pl-pds">"</span></span>, line 329, <span class="pl-k">in</span> <span class="pl-k">&lt;</span>module<span class="pl-k">&gt;</span> main(sys.argv[1], gen_model_path, disc_model_path) File <span class="pl-s"><span class="pl-pds">"</span>gan.py<span class="pl-pds">"</span></span>, line 321, <span class="pl-k">in</span> main adversarial_training(data_dir, generator_model_path, discriminator_model_path) File <span class="pl-s"><span class="pl-pds">"</span>gan.py<span class="pl-pds">"</span></span>, line 262, <span class="pl-k">in</span> adversarial_training loss_real, loss_generated = <span class="pl-en">train_discriminator_step</span>() File <span class="pl-s"><span class="pl-pds">"</span>gan.py<span class="pl-pds">"</span></span>, line 246, <span class="pl-k">in</span> train_discriminator_step l_r = discriminator_model.train_on_batch(x, -np.ones(batch_size)) File <span class="pl-s"><span class="pl-pds">"</span>/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/keras/engine/training.py<span class="pl-pds">"</span></span>, line 1610, <span class="pl-k">in</span> train_on_batch outputs = self.train_function(ins) File <span class="pl-s"><span class="pl-pds">"</span>/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/keras/backend/tensorflow_backend.py<span class="pl-pds">"</span></span>, line 2065, <span class="pl-k">in</span> __call__ feed_dict=feed_dict) File <span class="pl-s"><span class="pl-pds">"</span>/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/tensorflow/python/client/session.py<span class="pl-pds">"</span></span>, line 767, <span class="pl-k">in</span> run run_metadata_ptr) File <span class="pl-s"><span class="pl-pds">"</span>/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/tensorflow/python/client/session.py<span class="pl-pds">"</span></span>, line 965, <span class="pl-k">in</span> _run feed_dict_string, options, run_metadata) File <span class="pl-s"><span class="pl-pds">"</span>/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/tensorflow/python/client/session.py<span class="pl-pds">"</span></span>, line 1015, <span class="pl-k">in</span> _do_run target_list, options, run_metadata) File <span class="pl-s"><span class="pl-pds">"</span>/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/tensorflow/python/client/session.py<span class="pl-pds">"</span></span>, line 1035, <span class="pl-k">in</span> _do_call raise type(e)(node_def, op, message) tensorflow.python.framework.errors_impl.InvalidArgumentError: You must feed a value <span class="pl-k">for</span> placeholder tensor <span class="pl-s"><span class="pl-pds">'</span>input_1<span class="pl-pds">'</span></span> with dtype float [[Node: input_1 <span class="pl-k">=</span> Placeholder[dtype<span class="pl-k">=</span>DT_FLOAT, shape<span class="pl-k">=</span>[], _device<span class="pl-k">=</span><span class="pl-s"><span class="pl-pds">"</span>/job:localhost/replica:0/task:0/cpu:0<span class="pl-pds">"</span></span>]()]] Caused by op <span class="pl-s"><span class="pl-pds">'</span>input_1<span class="pl-pds">'</span></span>, defined at: File <span class="pl-s"><span class="pl-pds">"</span>gan.py<span class="pl-pds">"</span></span>, line 329, <span class="pl-k">in</span> <span class="pl-k">&lt;</span>module<span class="pl-k">&gt;</span> main(sys.argv[1], gen_model_path, disc_model_path) File <span class="pl-s"><span class="pl-pds">"</span>gan.py<span class="pl-pds">"</span></span>, line 321, <span class="pl-k">in</span> main adversarial_training(data_dir, generator_model_path, discriminator_model_path) File <span class="pl-s"><span class="pl-pds">"</span>gan.py<span class="pl-pds">"</span></span>, line 155, <span class="pl-k">in</span> adversarial_training generator_input_tensor = layers.Input(shape=(rand_dim, )) File <span class="pl-s"><span class="pl-pds">"</span>/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/keras/engine/topology.py<span class="pl-pds">"</span></span>, line 1373, <span class="pl-k">in</span> Input input_tensor=tensor) File <span class="pl-s"><span class="pl-pds">"</span>/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/keras/engine/topology.py<span class="pl-pds">"</span></span>, line 1284, <span class="pl-k">in</span> __init__ name=self.name) File <span class="pl-s"><span class="pl-pds">"</span>/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/keras/backend/tensorflow_backend.py<span class="pl-pds">"</span></span>, line 346, <span class="pl-k">in</span> placeholder x = tf.placeholder(dtype, shape=shape, name=name) File <span class="pl-s"><span class="pl-pds">"</span>/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/tensorflow/python/ops/array_ops.py<span class="pl-pds">"</span></span>, line 1520, <span class="pl-k">in</span> placeholder name=name) File <span class="pl-s"><span class="pl-pds">"</span>/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/tensorflow/python/ops/gen_array_ops.py<span class="pl-pds">"</span></span>, line 2149, <span class="pl-k">in</span> _placeholder name=name) File <span class="pl-s"><span class="pl-pds">"</span>/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/tensorflow/python/framework/op_def_library.py<span class="pl-pds">"</span></span>, line 763, <span class="pl-k">in</span> apply_op op_def=op_def) File <span class="pl-s"><span class="pl-pds">"</span>/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/tensorflow/python/framework/ops.py<span class="pl-pds">"</span></span>, line 2395, <span class="pl-k">in</span> create_op original_op=self._default_original_op, op_def=op_def) File <span class="pl-s"><span class="pl-pds">"</span>/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/tensorflow/python/framework/ops.py<span class="pl-pds">"</span></span>, line 1264, <span class="pl-k">in</span> __init__ self._traceback = <span class="pl-en">_extract_stack</span>() InvalidArgumentError (see above <span class="pl-k">for</span> traceback): You must feed a value <span class="pl-k">for</span> placeholder tensor <span class="pl-s"><span class="pl-pds">'</span>input_1<span class="pl-pds">'</span></span> with dtype float [[Node: input_1 <span class="pl-k">=</span> Placeholder[dtype<span class="pl-k">=</span>DT_FLOAT, shape<span class="pl-k">=</span>[], _device<span class="pl-k">=</span><span class="pl-s"><span class="pl-pds">"</span>/job:localhost/replica:0/task:0/cpu:0<span class="pl-pds">"</span></span>]()]]</pre></div> <p dir="auto">What seems to be happening is the computational graphs are separate between <code class="notranslate">generator</code> and <code class="notranslate">discriminator</code> but once you defined <code class="notranslate">combined</code> (something like this):</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="combined_output = discriminator_model(generator_model(generator_input_tensor)) combined_model = models.Model(inputs=[generator_input_tensor], outputs=[combined_output], name='combined')"><pre class="notranslate"><span class="pl-s1">combined_output</span> <span class="pl-c1">=</span> <span class="pl-en">discriminator_model</span>(<span class="pl-en">generator_model</span>(<span class="pl-s1">generator_input_tensor</span>)) <span class="pl-s1">combined_model</span> <span class="pl-c1">=</span> <span class="pl-s1">models</span>.<span class="pl-v">Model</span>(<span class="pl-s1">inputs</span><span class="pl-c1">=</span>[<span class="pl-s1">generator_input_tensor</span>], <span class="pl-s1">outputs</span><span class="pl-c1">=</span>[<span class="pl-s1">combined_output</span>], <span class="pl-s1">name</span><span class="pl-c1">=</span><span class="pl-s">'combined'</span>)</pre></div> <p dir="auto">things get kinda messed up somehow. basically trying to train a batch on the <code class="notranslate">discriminator</code> will fail b/c now the batch norm layers think a placeholder tensor must be fed for the generators input. although training the generator and combined model will work fine.</p> <p dir="auto">You can reproduce this in keras 1 and 2 (try <code class="notranslate">cGAN</code> branch for keras 1 and <code class="notranslate">wGAN</code> branch for keras 2) <a href="https://github.com/wayaai/GAN-Sandbox">https://github.com/wayaai/GAN-Sandbox</a></p>
<p dir="auto">In Keras 2 (branch <code class="notranslate">keras-2</code>), the API for pretty much every layer has changed. We will keep supporting the Keras 1 API, and we will do so via <strong>API conversion decorators</strong>.</p> <p dir="auto">As an example, I have written the conversion decorator for the <code class="notranslate">Dense</code> layer. It was done in this commit: <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/keras-team/keras/commit/5516c8fb42f01622c9a4a31c19cb46ae68cfa0f6/hovercard" href="https://github.com/keras-team/keras/commit/5516c8fb42f01622c9a4a31c19cb46ae68cfa0f6"><tt>5516c8f</tt></a><br> The decorator code is here: <a href="https://github.com/fchollet/keras/blob/keras-2/keras/legacy/interfaces.py#L15">https://github.com/fchollet/keras/blob/keras-2/keras/legacy/interfaces.py#L15</a><br> The test for it is here: <a href="https://github.com/fchollet/keras/blob/keras-2/tests/keras/legacy/interface_test.py#L8">https://github.com/fchollet/keras/blob/keras-2/tests/keras/legacy/interface_test.py#L8</a></p> <p dir="auto">In order to launch Keras 2, we will need such decorators for every layer (and also for training routines and model constructors). If you want to contribute, please add these decorators (in <code class="notranslate">keras/legacy/interfaces.py</code>, with tests in <code class="notranslate">tests/keras/legacy/interface_test.py</code>). You just need to follow the template laid out with the <code class="notranslate">Dense</code> layer decorator.</p> <p dir="auto">You can leave out the <code class="notranslate">Conv*D</code> layers for now, since they will require special handling due to a positional/keyword argument conflict.</p> <p dir="auto">Thanks a lot!</p>
0
<p dir="auto">Challenge <a href="https://www.freecodecamp.com/en/challenges/html5-and-css/use-hex-code-to-mix-colors" rel="nofollow">use-hex-code-to-mix-colors</a> has an issue.<br> User Agent is: <code class="notranslate">Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36</code>.<br> Please describe how to reproduce this issue, and include links to screenshots if possible.<br> code is correct but test run is not validating properly.</p> <div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" &lt;style&gt; .red-text { color: #FF0000; } .green-text { color: #00FF00; } .dodger-blue-text { color: #1E90FF; } .orange-text { color: #FFA500; } &lt;/style&gt; &lt;h1 class=&quot;red-text&quot;&gt;I am red!&lt;/h1&gt; &lt;h1 class=&quot;green-text&quot;&gt;I am green!&lt;/h1&gt; &lt;h1 class=&quot;dodger-blue-text&quot;&gt;I am dodger blue!&lt;/h1&gt; &lt;h1 class=&quot;orange-text&quot;&gt;I am orange!&lt;/h1&gt; ``` "><pre class="notranslate"><span class="pl-kos">&lt;</span><span class="pl-ent">style</span><span class="pl-kos">&gt;</span> .<span class="pl-c1">red-text</span> { <span class="pl-c1">color</span><span class="pl-kos">:</span> <span class="pl-pds"><span class="pl-kos">#</span>FF0000</span>; } .<span class="pl-c1">green-text</span> { <span class="pl-c1">color</span><span class="pl-kos">:</span> <span class="pl-pds"><span class="pl-kos">#</span>00FF00</span>; } .<span class="pl-c1">dodger-blue-text</span> { <span class="pl-c1">color</span><span class="pl-kos">:</span> <span class="pl-pds"><span class="pl-kos">#</span>1E90FF</span>; } .<span class="pl-c1">orange-text</span> { <span class="pl-c1">color</span><span class="pl-kos">:</span> <span class="pl-pds"><span class="pl-kos">#</span>FFA500</span>; } <span class="pl-kos">&lt;/</span><span class="pl-ent">style</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">h1</span> <span class="pl-c1">class</span>="<span class="pl-s">red-text</span>"<span class="pl-kos">&gt;</span>I am red!<span class="pl-kos">&lt;/</span><span class="pl-ent">h1</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">h1</span> <span class="pl-c1">class</span>="<span class="pl-s">green-text</span>"<span class="pl-kos">&gt;</span>I am green!<span class="pl-kos">&lt;/</span><span class="pl-ent">h1</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">h1</span> <span class="pl-c1">class</span>="<span class="pl-s">dodger-blue-text</span>"<span class="pl-kos">&gt;</span>I am dodger blue!<span class="pl-kos">&lt;/</span><span class="pl-ent">h1</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">h1</span> <span class="pl-c1">class</span>="<span class="pl-s">orange-text</span>"<span class="pl-kos">&gt;</span>I am orange!<span class="pl-kos">&lt;/</span><span class="pl-ent">h1</span><span class="pl-kos">&gt;</span> ```</pre></div>
<p dir="auto">Challenge <a href="https://www.freecodecamp.com/en/challenges/html5-and-css/use-hex-code-to-mix-colors" rel="nofollow">use-hex-code-to-mix-colors</a> has an issue.<br> User Agent is: <code class="notranslate">Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36</code>.<br> Please describe how to reproduce this issue, and include links to screenshots if possible.</p> <div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" &lt;style&gt; .red-text { color: #ff0000; } .green-text { color: #00ff00; } .dodger-blue-text { color: #1e90ff; } .orange-text { color: #ffa500; } &lt;/style&gt; &lt;h1 class=&quot;red-text&quot;&gt;I am red!&lt;/h1&gt; &lt;h1 class=&quot;green-text&quot;&gt;I am green!&lt;/h1&gt; &lt;h1 class=&quot;dodger-blue-text&quot;&gt;I am dodger blue!&lt;/h1&gt; &lt;h1 class=&quot;orange-text&quot;&gt;I am orange!&lt;/h1&gt; ``` Screenshot: ![image](https://cloud.githubusercontent.com/assets/3306170/18378269/47f34348-766c-11e6-8fb7-6e2da365ced7.png)"><pre class="notranslate"><span class="pl-kos">&lt;</span><span class="pl-ent">style</span><span class="pl-kos">&gt;</span> .<span class="pl-c1">red-text</span> { <span class="pl-c1">color</span><span class="pl-kos">:</span> <span class="pl-pds"><span class="pl-kos">#</span>ff0000</span>; } .<span class="pl-c1">green-text</span> { <span class="pl-c1">color</span><span class="pl-kos">:</span> <span class="pl-pds"><span class="pl-kos">#</span>00ff00</span>; } .<span class="pl-c1">dodger-blue-text</span> { <span class="pl-c1">color</span><span class="pl-kos">:</span> <span class="pl-pds"><span class="pl-kos">#</span>1e90ff</span>; } .<span class="pl-c1">orange-text</span> { <span class="pl-c1">color</span><span class="pl-kos">:</span> <span class="pl-pds"><span class="pl-kos">#</span>ffa500</span>; } <span class="pl-kos">&lt;/</span><span class="pl-ent">style</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">h1</span> <span class="pl-c1">class</span>="<span class="pl-s">red-text</span>"<span class="pl-kos">&gt;</span>I am red!<span class="pl-kos">&lt;/</span><span class="pl-ent">h1</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">h1</span> <span class="pl-c1">class</span>="<span class="pl-s">green-text</span>"<span class="pl-kos">&gt;</span>I am green!<span class="pl-kos">&lt;/</span><span class="pl-ent">h1</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">h1</span> <span class="pl-c1">class</span>="<span class="pl-s">dodger-blue-text</span>"<span class="pl-kos">&gt;</span>I am dodger blue!<span class="pl-kos">&lt;/</span><span class="pl-ent">h1</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">h1</span> <span class="pl-c1">class</span>="<span class="pl-s">orange-text</span>"<span class="pl-kos">&gt;</span>I am orange!<span class="pl-kos">&lt;/</span><span class="pl-ent">h1</span><span class="pl-kos">&gt;</span> ``` Screenshot: ![image](https://cloud.githubusercontent.com/assets/3306170/18378269/47f34348-766c-11e6-8fb7-6e2da365ced7.png)</pre></div>
1
<p dir="auto">References <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="252423991" data-permission-text="Title is private" data-url="https://github.com/mui/material-ui/issues/7888" data-hovercard-type="issue" data-hovercard-url="/mui/material-ui/issues/7888/hovercard" href="https://github.com/mui/material-ui/issues/7888">#7888</a></p> <p dir="auto">I have a below snippet:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;Fade in={this.state.scrollVisible}&gt; &lt;ScrollTopButton /&gt; &lt;/Fade&gt;"><pre class="notranslate"><span class="pl-c1">&lt;</span><span class="pl-ent">Fade</span> <span class="pl-c1">in</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">state</span><span class="pl-kos">.</span><span class="pl-c1">scrollVisible</span><span class="pl-kos">}</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">ScrollTopButton</span> <span class="pl-c1">/</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">Fade</span><span class="pl-c1">&gt;</span></pre></div> <p dir="auto">Initially on load <code class="notranslate">this.state.scrollVisible</code> is <code class="notranslate">false</code>, but <code class="notranslate">ScrollTopButton</code> is visible anyway. After showing/hiding, it starts to work correctly, only initial load with <code class="notranslate">in={false}</code> is broken.</p> <p dir="auto">Adding <code class="notranslate">mountOnEnter</code> prop helps, but shouldn't be required.</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/mui-org/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">Child of <code class="notranslate">Fade</code> should never be visible when <code class="notranslate">in={false}</code> on mount</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">Use <code class="notranslate">Fade</code> component with <code class="notranslate">in={false}</code> - child will be rendered and visible while it shouldn't.</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <ol dir="auto"> <li>Open <a href="https://codesandbox.io/s/9ov57l1pv4" rel="nofollow">https://codesandbox.io/s/9ov57l1pv4</a></li> <li>You can see that <code class="notranslate">Shouldnt be visible on Load</code> button is visible on load while it shouldn't</li> <li>Click <code class="notranslate">SHOW</code> button, <code class="notranslate">Shouldnt be visible on Load</code> will still be there, another button <code class="notranslate">mountOnEnter helps but shouldnt be necessery</code> will show.</li> <li>From now on, you can toggle hide/show, everything works fine, only point 1 is problematic.</li> </ol> <h2 dir="auto">Context</h2> <h2 dir="auto">Your Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>Material-UI</td> <td>1.0.0-beta.31</td> </tr> <tr> <td>React</td> <td>16.2.0</td> </tr> <tr> <td>browser</td> <td>any</td> </tr> </tbody> </table>
<ul dir="auto"> <li>[y] I have searched the <a href="https://github.com/callemall/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <p dir="auto">How do i make sure the bottom navigation is always, well, at the bottom?</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" position: absolute; bottom: 0; width: 100%;"><pre class="notranslate"><code class="notranslate"> position: absolute; bottom: 0; width: 100%; </code></pre></div> <p dir="auto">This works but when keyboard is open, it will push the view up.</p> <h2 dir="auto">Your Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>Material-UI</td> <td>0.19.2</td> </tr> <tr> <td>React</td> <td>15.6.1</td> </tr> <tr> <td>browser</td> <td>Chrome V60</td> </tr> </tbody> </table>
0
<p dir="auto">Code Example</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="class Parent { constructor() { } }; class Child extends Parent { constructor() { super(); } scopedFunctionWithThis = () =&gt; { this.name = {}; } }"><pre class="notranslate"><span class="pl-k">class</span> <span class="pl-v">Parent</span> <span class="pl-kos">{</span> <span class="pl-en">constructor</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-k">class</span> <span class="pl-v">Child</span> <span class="pl-k">extends</span> <span class="pl-v">Parent</span> <span class="pl-kos">{</span> <span class="pl-en">constructor</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-smi">super</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-c1">scopedFunctionWithThis</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">name</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span><span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span></pre></div> <ol dir="auto"> <li>Save above snippet as <code class="notranslate">a.js</code></li> <li>Run <code class="notranslate">babel --presets stage-0 a.js</code>,</li> <li>Error Message: <code class="notranslate">SyntaxError: a.js: 'this' is not allowed before super() (This is an error on an internal node. Probably an internal error)</code></li> </ol> <p dir="auto">This is fine on <a href="https://babeljs.io/repl/#?experimental=true&amp;evaluate=true&amp;loose=false&amp;spec=false&amp;code=class%20Parent%20%7B%0A%20%20%20%20constructor%28%29%20%7B%0A%20%20%7D%0A%7D%3B%0A%0Aclass%20Child%20extends%20Parent%20%7B%0A%20%20%20%20constructor%28%29%20%7B%0A%20%20%20%20%20%20%20%20super%28%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20%0A%20%20%20%20scopedFunctionWithThis%20%3D%20%28%29%20%3D%3E%20%7B%0A%20%20%20%20%20%20%20%20this.name%20%3D%20%7B%7D%3B%0A%20%20%20%20%7D%0A%7D%0A" rel="nofollow">babel repl</a> however.</p> <p dir="auto">Environment:</p> <ul dir="auto"> <li>node: v4.2.1</li> <li>npm: 2.14.7</li> <li>Packages: babel-core, es2015, stage0 are installed</li> </ul>
<blockquote> <p dir="auto">Issue originally made by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jgrund/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jgrund">@jgrund</a></p> </blockquote> <h3 dir="auto">Bug information</h3> <ul dir="auto"> <li><strong>Babel version:</strong> 6.2.1</li> <li><strong>Node version:</strong> 4.2.4</li> <li><strong>npm version:</strong> 3.4.0</li> </ul> <h3 dir="auto">Options</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="--plugins transform-es2015-modules-umd"><pre class="notranslate"><code class="notranslate">--plugins transform-es2015-modules-umd </code></pre></div> <h3 dir="auto">Input code</h3> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import * as foo from '../index.js';"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-c1">*</span> <span class="pl-k">as</span> <span class="pl-s1">foo</span> <span class="pl-k">from</span> <span class="pl-s">'../index.js'</span><span class="pl-kos">;</span></pre></div> <h3 dir="auto">Description</h3> <p dir="auto">It appears that importing modules is broken with umd when working with node. The above input code generates:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="(function (global, factory) { if (typeof define === &quot;function&quot; &amp;&amp; define.amd) { define(['exports', '../index.js'], factory); } else if (typeof exports !== &quot;undefined&quot;) { factory(exports, require('../index.js')); } else { var mod = { exports: {} }; factory(mod.exports, global.index); global.tests = mod.exports; } })(this, function (exports) { (function (global, factory) { if (typeof define === &quot;function&quot; &amp;&amp; define.amd) { define(['../index.js'], factory); } else if (typeof exports !== &quot;undefined&quot;) { factory(); } else { var mod = { exports: {} }; factory(global.index); global.tests = mod.exports; } })(this, function (_index) { var foo = _interopRequireWildcard(_index); function _interopRequireWildcard(obj) { if (obj &amp;&amp; obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } } }); });"><pre class="notranslate"><code class="notranslate">(function (global, factory) { if (typeof define === "function" &amp;&amp; define.amd) { define(['exports', '../index.js'], factory); } else if (typeof exports !== "undefined") { factory(exports, require('../index.js')); } else { var mod = { exports: {} }; factory(mod.exports, global.index); global.tests = mod.exports; } })(this, function (exports) { (function (global, factory) { if (typeof define === "function" &amp;&amp; define.amd) { define(['../index.js'], factory); } else if (typeof exports !== "undefined") { factory(); } else { var mod = { exports: {} }; factory(global.index); global.tests = mod.exports; } })(this, function (_index) { var foo = _interopRequireWildcard(_index); function _interopRequireWildcard(obj) { if (obj &amp;&amp; obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } } }); }); </code></pre></div> <p dir="auto">It seems like the require('../index.js') up top is never passed through to the inner calls. Because of this we end up with an object literal with an undefined default property.</p>
0
<h3 dir="auto">System info</h3> <ul dir="auto"> <li>Playwright Version: 1.34.3</li> <li>Operating System: Mac</li> <li>Browser: All</li> <li>Other info:</li> </ul> <h3 dir="auto">Source code</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I provided exact source code that allows reproducing the issue locally.</li> </ul> <p dir="auto"><strong>Link to the GitHub repository with the repro</strong></p> <p dir="auto"><a href="https://github.com/Nav-2d/pw-codegen-repro">bug-repo</a></p> <p dir="auto"><strong>Steps</strong></p> <ul dir="auto"> <li>Run the script <code class="notranslate">npm run all</code>. This runs the tests in parallel in two shards</li> </ul> <p dir="auto"><strong>Expected</strong></p> <p dir="auto">The global teardown should run only once similar to global setup</p> <p dir="auto"><strong>Actual</strong></p> <p dir="auto">The global teardown runs in both the shards.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Running 4 tests using 1 worker, shard 2 of 2 Running 4 tests using 1 worker, shard 1 of 2 1 [setup] › global.setup.ts:3:5 › run global setup ✓ 1 [setup] › global.setup.ts:3:5 › run global setup (1.6s) ✓ 1 [setup] › global.setup.ts:3:5 › run global setup (1.9s) **global setup ran** //Global setup runs once 2 [webkit] › example.spec.ts:4:7 › has title @smoke › has title ✓ 2 [webkit] › example.spec.ts:4:7 › has title @smoke › has title (1.0s) ✓ 2 [chromium] › example.spec.ts:4:7 › has title @smoke › has title (1.6s) 3 [chromium] › example.spec.ts:9:7 › has title @smoke › has 12123 ✓ 3 [chromium] › example.spec.ts:9:7 › has title @smoke › has 12123 (809ms) ✓ 4 [teardown] › global.teardown.ts:3:5 › run global teardown (1.6s) **global teardown ran** //Global teardown runs on one shard ✓ 4 [teardown] › global.teardown.ts:3:5 › run global teardown (1.4s) **global teardown ran** //Global teardown runs on another shard "><pre class="notranslate"><code class="notranslate">Running 4 tests using 1 worker, shard 2 of 2 Running 4 tests using 1 worker, shard 1 of 2 1 [setup] › global.setup.ts:3:5 › run global setup ✓ 1 [setup] › global.setup.ts:3:5 › run global setup (1.6s) ✓ 1 [setup] › global.setup.ts:3:5 › run global setup (1.9s) **global setup ran** //Global setup runs once 2 [webkit] › example.spec.ts:4:7 › has title @smoke › has title ✓ 2 [webkit] › example.spec.ts:4:7 › has title @smoke › has title (1.0s) ✓ 2 [chromium] › example.spec.ts:4:7 › has title @smoke › has title (1.6s) 3 [chromium] › example.spec.ts:9:7 › has title @smoke › has 12123 ✓ 3 [chromium] › example.spec.ts:9:7 › has title @smoke › has 12123 (809ms) ✓ 4 [teardown] › global.teardown.ts:3:5 › run global teardown (1.6s) **global teardown ran** //Global teardown runs on one shard ✓ 4 [teardown] › global.teardown.ts:3:5 › run global teardown (1.4s) **global teardown ran** //Global teardown runs on another shard </code></pre></div>
<p dir="auto">Hello,<br> I am using Playwright in JavaScript and due to project requirements, the parallelization is done by grouping and using npm concurrent (to avoid double user sessions, can't control test data)</p> <p dir="auto">Locally when I run the suite I get served two reports but at the end have only one index.html in my playwright-report, but when this is run on Jenkins, the htmlpublisher plugin serves everything within playwright-report and it only contains the last report, as the new index.html overrides the old one.</p> <p dir="auto">So I am looking to generate separate reports per concurrent script run.</p> <p dir="auto">I've been researching this a lot today and can't seem to find a solution:<br> tried using just the CLI parameters --output="reports-uk" and in the other npm script --output="reports-de" -&gt; what happens is the webm files usually located in test-results are generated in these new folders, but then the report is still one index.html from playwright-report</p> <p dir="auto">I tried using <code class="notranslate">outputPath</code> in my configs reporter property as: process.env.OUTPUT_PATH || 'playwright-local/report.html',<br> Then in my scripts I have:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" &quot;scripts&quot;: { &quot;test&quot;: &quot;cross-env test_env=staging npx playwright test&quot;, &quot;run-de&quot;: &quot;cross-env test_env=%environment_name% OUTPUT_PATH=playwright-report/de npx playwright test --project=de %scope%&quot;, &quot;run-uk&quot;: &quot;cross-env test_env=%environment_name% OUTPUT_PATH=playwright-report/uk npx playwright test --project=uk %scope%&quot;, &quot;execute-all&quot;: &quot;concurrently %runCountries%&quot; }, "><pre class="notranslate"><code class="notranslate"> "scripts": { "test": "cross-env test_env=staging npx playwright test", "run-de": "cross-env test_env=%environment_name% OUTPUT_PATH=playwright-report/de npx playwright test --project=de %scope%", "run-uk": "cross-env test_env=%environment_name% OUTPUT_PATH=playwright-report/uk npx playwright test --project=uk %scope%", "execute-all": "concurrently %runCountries%" }, </code></pre></div> <p dir="auto">But I still only get one report named index.html at playwright-report folder.</p> <p dir="auto">Since documentation is a little bit scarce on the html reporter, is there a way for me to make the 2 reports have different names over CLI and have them in one folder? Whatever I do I always end up with index.html somehow.<br> If not, how could I specify two folders for reports that would each have one of index.html so as not to override the reports?</p>
0
<p dir="auto">After updating lodash.TypeScript.DefinitelyTyped from nuget to version 2.3.3<br> I have two d.ts files in folder typings/lodash: 'lodash-3.10.d.ts' and 'lodash.d.ts'<br> After build I receive around 80 errors with content: Duplicate Identifier </p>
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I tried using the latest stable version of tsc (<code class="notranslate">typescript@latest</code> = <code class="notranslate">[email protected]</code>). <a href="https://www.npmjs.com/package/typescript" rel="nofollow">https://www.npmjs.com/package/typescript</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I tried using the <code class="notranslate">@types/[email protected]</code> package and had problems.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/blog/821-mention-somebody-they-re-notified">Mention</a> the authors (see <code class="notranslate">Definitions by:</code> in <code class="notranslate">index.d.ts</code>) so they can respond. <ul dir="auto"> <li>Authors: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/alloy/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/alloy">@alloy</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/huhuanming/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/huhuanming">@huhuanming</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/iRoachie/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/iRoachie">@iRoachie</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Skn0tt/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Skn0tt">@Skn0tt</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/timwangdev/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/timwangdev">@timwangdev</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/kamal/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kamal">@kamal</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/nelyousfi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/nelyousfi">@nelyousfi</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/alexdunne/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/alexdunne">@alexdunne</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/swissmanu/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/swissmanu">@swissmanu</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/bm-software/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/bm-software">@bm-software</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/tkrotoff/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/tkrotoff">@tkrotoff</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/a-tarasyuk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/a-tarasyuk">@a-tarasyuk</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mvdam/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mvdam">@mvdam</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Esemesek/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Esemesek">@Esemesek</a></li> </ul> </li> </ul> <p dir="auto">Current typings produce very strange errors being used with typescript 3.1.1<br> I submit <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="364797239" data-permission-text="Title is private" data-url="https://github.com/microsoft/TypeScript/issues/27421" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript/issues/27421/hovercard" href="https://github.com/microsoft/TypeScript/issues/27421">microsoft/TypeScript#27421</a> to typescript repo, but sure that DT also should track this issue. Main problem, that I can't create minimal example for this. And I can't personally understand why ts since 3.1 behave so strangely. It would be good if anyone can help with this.</p> <p dir="auto">Next is mostly duplication of info from <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="364797239" data-permission-text="Title is private" data-url="https://github.com/microsoft/TypeScript/issues/27421" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript/issues/27421/hovercard" href="https://github.com/microsoft/TypeScript/issues/27421">microsoft/TypeScript#27421</a>:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import React from 'react' import { StyleSheet, Text } from 'react-native' const s = StyleSheet.create({ didNotWork: { fontSize: 16, fontWeight: '900', // if we comment this line, errors gone marginTop: 5, // if this line commented, errors also gone }, work: { fontSize: 18, // fontWeight: '900', // when uncommented also work }, }) export const sample1 = &lt;Text style={s.work} /&gt; export const sample2 = &lt;Text style={s.didNotWork} /&gt; // ^ this line generate error: // index.tsx:17:30 - error TS2322: Type 'RegisteredStyle&lt;{ fontSize: number; fontWeight: string; marginTop: number; }&gt;' is not assignable to type 'StyleProp&lt;TextStyle&gt;'. // Type 'RegisteredStyle&lt;{ fontSize: number; fontWeight: string; marginTop: number; }&gt;' is not assignable to type 'RecursiveArray&lt;false | TextStyle | RegisteredStyle&lt;TextStyle&gt; | null | undefined&gt;'. // Property 'length' is missing in type 'Number &amp; { __registeredStyleBrand: { fontSize: number; fontWeight: string; marginTop: number; }; }'. // 17 export const sample2 = &lt;Text style={s.didNotWork} /&gt; // ~~~~~ // node_modules/@types/react-native/index.d.ts:907:5 // 907 style?: StyleProp&lt;TextStyle&gt;; // ~~~~~ // The expected type comes from property 'style' which is declared here on type 'IntrinsicAttributes &amp; IntrinsicClassAttributes&lt;Text&gt; &amp; Readonly&lt;{ children?: ReactNode; }&gt; &amp; Readonly&lt;TextProps&gt;' export const sample3 = &lt;Text style={{fontSize: 16, fontWeight: '900', marginTop: 5}} /&gt;"><pre class="notranslate"><code class="notranslate">import React from 'react' import { StyleSheet, Text } from 'react-native' const s = StyleSheet.create({ didNotWork: { fontSize: 16, fontWeight: '900', // if we comment this line, errors gone marginTop: 5, // if this line commented, errors also gone }, work: { fontSize: 18, // fontWeight: '900', // when uncommented also work }, }) export const sample1 = &lt;Text style={s.work} /&gt; export const sample2 = &lt;Text style={s.didNotWork} /&gt; // ^ this line generate error: // index.tsx:17:30 - error TS2322: Type 'RegisteredStyle&lt;{ fontSize: number; fontWeight: string; marginTop: number; }&gt;' is not assignable to type 'StyleProp&lt;TextStyle&gt;'. // Type 'RegisteredStyle&lt;{ fontSize: number; fontWeight: string; marginTop: number; }&gt;' is not assignable to type 'RecursiveArray&lt;false | TextStyle | RegisteredStyle&lt;TextStyle&gt; | null | undefined&gt;'. // Property 'length' is missing in type 'Number &amp; { __registeredStyleBrand: { fontSize: number; fontWeight: string; marginTop: number; }; }'. // 17 export const sample2 = &lt;Text style={s.didNotWork} /&gt; // ~~~~~ // node_modules/@types/react-native/index.d.ts:907:5 // 907 style?: StyleProp&lt;TextStyle&gt;; // ~~~~~ // The expected type comes from property 'style' which is declared here on type 'IntrinsicAttributes &amp; IntrinsicClassAttributes&lt;Text&gt; &amp; Readonly&lt;{ children?: ReactNode; }&gt; &amp; Readonly&lt;TextProps&gt;' export const sample3 = &lt;Text style={{fontSize: 16, fontWeight: '900', marginTop: 5}} /&gt; </code></pre></div> <p dir="auto">This sample shows the error. There is sandbox repo: <a href="https://github.com/vovkasm/rn-ts-3.1.1">https://github.com/vovkasm/rn-ts-3.1.1</a> (to reproduce, clone and <code class="notranslate">npm install &amp;&amp; npm test</code>)</p> <ol dir="auto"> <li>If I comment out <code class="notranslate">fontWeight</code> or <code class="notranslate">marginTop</code> style of <code class="notranslate">didNotWork</code> key, error dissapeared</li> <li>If I add <code class="notranslate">fontWeight</code> to <code class="notranslate">work</code> key, error dissapeared</li> </ol> <p dir="auto">Why is this?</p>
0
<p dir="auto">These don't seem to be generally useful enough to merit a place in the stdlib (and thus putting the maintenance burden on the core team). Does anyone object to removing them?</p>
<p dir="auto">A placeholder text <em>in</em> the search field hints:</p> <blockquote> <p dir="auto">…, '?' for more options</p> </blockquote> <p dir="auto">so I've entered "?" <em>in the search field</em> and ended up on this page:</p> <p dir="auto"><a href="https://doc.rust-lang.org/std/?search=%3F" rel="nofollow">https://doc.rust-lang.org/std/?search=%3F</a></p> <p dir="auto">Oops! I've realised that you've meant pressing <kbd>Shift+/</kbd> when text input <em>isn't focused</em>, but text input placeholder text is generally used as an example for the text input itself, so it confused me.</p> <p dir="auto">I suggest handling search for <code class="notranslate">?</code> as a special case and displaying the help text too.</p> <p dir="auto">And perhaps even better solution would be to automatically display a search syntax cheatsheet below the search input when the input is focused. Splunk search has something like this (they call it <a href="http://image.slidesharecdn.com/splunklivebeginnertrainingnyc-130503133959-phpapp01/95/splunk-live-beginner-training-nyc-17-638.jpg?cb=1367588588" rel="nofollow">search assistant</a>).</p>
0
<h4 dir="auto">Code Sample, a copy-pastable example if possible</h4> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&gt;&gt;&gt; index = pandas.to_timedelta([15e-7], unit=&quot;s&quot;) &gt;&gt;&gt; index[0].nanoseconds 0 &gt;&gt;&gt; index[0].microseconds 2"><pre class="notranslate"><span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-s1">index</span> <span class="pl-c1">=</span> <span class="pl-s1">pandas</span>.<span class="pl-en">to_timedelta</span>([<span class="pl-c1">15e-7</span>], <span class="pl-s1">unit</span><span class="pl-c1">=</span><span class="pl-s">"s"</span>) <span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-s1">index</span>[<span class="pl-c1">0</span>].<span class="pl-s1">nanoseconds</span> <span class="pl-c1">0</span> <span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-s1">index</span>[<span class="pl-c1">0</span>].<span class="pl-s1">microseconds</span> <span class="pl-c1">2</span></pre></div> <h4 dir="auto">Problem description</h4> <p dir="auto">nanoseconds range input for to_timedelta function are rounded to microseconds.</p> <h4 dir="auto">Expected Output</h4> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&gt;&gt;&gt; index = pandas.to_timedelta([15e-7], unit=&quot;s&quot;) &gt;&gt;&gt; index[0].nanoseconds 500 &gt;&gt;&gt; index[0].microseconds 1"><pre class="notranslate"><span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-s1">index</span> <span class="pl-c1">=</span> <span class="pl-s1">pandas</span>.<span class="pl-en">to_timedelta</span>([<span class="pl-c1">15e-7</span>], <span class="pl-s1">unit</span><span class="pl-c1">=</span><span class="pl-s">"s"</span>) <span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-s1">index</span>[<span class="pl-c1">0</span>].<span class="pl-s1">nanoseconds</span> <span class="pl-c1">500</span> <span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-s1">index</span>[<span class="pl-c1">0</span>].<span class="pl-s1">microseconds</span> <span class="pl-c1">1</span></pre></div> <p dir="auto">However this works fine:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&gt;&gt;&gt; index = pandas.to_timedelta([1.5], unit=&quot;us&quot;) &gt;&gt;&gt; index[0].nanoseconds 500 &gt;&gt;&gt; index[0].microseconds 1"><pre class="notranslate"><span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-s1">index</span> <span class="pl-c1">=</span> <span class="pl-s1">pandas</span>.<span class="pl-en">to_timedelta</span>([<span class="pl-c1">1.5</span>], <span class="pl-s1">unit</span><span class="pl-c1">=</span><span class="pl-s">"us"</span>) <span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-s1">index</span>[<span class="pl-c1">0</span>].<span class="pl-s1">nanoseconds</span> <span class="pl-c1">500</span> <span class="pl-c1">&gt;&gt;</span><span class="pl-c1">&gt;</span> <span class="pl-s1">index</span>[<span class="pl-c1">0</span>].<span class="pl-s1">microseconds</span> <span class="pl-c1">1</span></pre></div> <p dir="auto">So it seems to be something when se choose unit="s"</p> <h4 dir="auto">Output of <code class="notranslate">pd.show_versions()</code></h4> <details> <h2 dir="auto">INSTALLED VERSIONS</h2> <p dir="auto">commit: None<br> python: 3.6.3.final.0<br> python-bits: 64<br> OS: Windows<br> OS-release: 10<br> machine: AMD64<br> processor: Intel64 Family 6 Model 158 Stepping 9, GenuineIntel<br> byteorder: little<br> LC_ALL: None<br> LANG: None<br> LOCALE: None.None<br> pandas: 0.21.1<br> pytest: 3.4.0<br> pip: 9.0.1<br> setuptools: 38.4.0<br> Cython: 0.27.3<br> numpy: 1.13.3<br> scipy: 1.0.0<br> pyarrow: None<br> xarray: None<br> IPython: 6.2.1<br> sphinx: 1.6.6<br> patsy: None<br> dateutil: 2.6.1<br> pytz: 2017.2<br> blosc: None<br> bottleneck: None<br> tables: None<br> numexpr: None<br> feather: None<br> matplotlib: 2.1.1<br> openpyxl: 1.7.0<br> xlrd: None<br> xlwt: None<br> xlsxwriter: None<br> lxml: None<br> bs4: None<br> html5lib: 1.0.1<br> sqlalchemy: None<br> pymysql: None<br> psycopg2: None<br> jinja2: 2.10<br> s3fs: None<br> fastparquet: None<br> pandas_gbq: None<br> pandas_datareader: None</p> </details>
<p dir="auto">I think this is rounding prematurely, though not entirely sure. Could also just be loss of precision when converting from a float -&gt; int64.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [12]: pd.to_datetime(1434743731.8770001,unit='s') Out[12]: Timestamp('2015-06-19 19:55:31.877000') In [13]: pd.to_datetime(1434743731.8770001,unit='s').value Out[13]: 1434743731877000000 In [14]: (pd.Timestamp('2015-06-19 19:55:15.877000')+pd.Timedelta('1us')).value Out[14]: 1434743715877001000 "><pre class="notranslate"><code class="notranslate">In [12]: pd.to_datetime(1434743731.8770001,unit='s') Out[12]: Timestamp('2015-06-19 19:55:31.877000') In [13]: pd.to_datetime(1434743731.8770001,unit='s').value Out[13]: 1434743731877000000 In [14]: (pd.Timestamp('2015-06-19 19:55:15.877000')+pd.Timedelta('1us')).value Out[14]: 1434743715877001000 </code></pre></div>
1
<h1 dir="auto">Environment</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Microsoft Windows [Version 10.0.18362.388] Windows Terminal (Preview) 0.5.2762.0 tmux zsh (bullet-train theme) on Ubuntu WSL 18.04.3 LTS"><pre lang="none" class="notranslate"><code class="notranslate">Microsoft Windows [Version 10.0.18362.388] Windows Terminal (Preview) 0.5.2762.0 tmux zsh (bullet-train theme) on Ubuntu WSL 18.04.3 LTS </code></pre></div> <h1 dir="auto">Steps to reproduce</h1> <p dir="auto">Install tmux or zsh and install a theme with color blocks (e.g. <a href="https://github.com/caiogondim/bullet-train.zsh">bullet-train theme</a>) and configure a powerline-font in Windows Terminal.</p> <h1 dir="auto">Expected behavior</h1> <p dir="auto">Font used for startup does not matter.</p> <h1 dir="auto">Actual behavior</h1> <p dir="auto">If you start zsh/tmux with a Powerline font, all color blocks are shifted slighty:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/40914430/66259591-fdd06a00-e7b2-11e9-8861-0eb5f4c36c58.png"><img src="https://user-images.githubusercontent.com/40914430/66259591-fdd06a00-e7b2-11e9-8861-0eb5f4c36c58.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">If you start with a non-powerline font (e.g. Consolas) the blocks are the correct position:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/40914430/66259619-48ea7d00-e7b3-11e9-8be9-2aa000b0effe.png"><img src="https://user-images.githubusercontent.com/40914430/66259619-48ea7d00-e7b3-11e9-8be9-2aa000b0effe.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">Applying the powerline font after startup works as it should:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/40914430/66259626-61f32e00-e7b3-11e9-99d1-00ef0969515e.png"><img src="https://user-images.githubusercontent.com/40914430/66259626-61f32e00-e7b3-11e9-99d1-00ef0969515e.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">Using WSL without the Terminal App works (excpept lacking Emoji support)<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/40914430/66259710-87cd0280-e7b4-11e9-9817-47a203b7c109.png"><img src="https://user-images.githubusercontent.com/40914430/66259710-87cd0280-e7b4-11e9-9817-47a203b7c109.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">When using <code class="notranslate">(Get-Host).PrivateData</code> or <code class="notranslate">(Get-Host).UI.RawUI</code> to set Console Colors, they only exist when the console is opened.</p> <p dir="auto">Typed text is not bound to them nor do the properties of <code class="notranslate">PrivateData</code> or <code class="notranslate">RawUI</code> indicate that they are properly set. (<code class="notranslate">Clear-Host</code>, effectively removes all changes from the Console.)</p> <p dir="auto">Enabling "Use Legacy Console" restores expected function.</p> <p dir="auto">Not sure if there is something else I should be doing to make the color changes stick with the "Modern Console" or if this is a legitimate bug in the way console colors are applied to the Console.</p>
0
<table role="table"> <thead> <tr> <th>Q</th> <th>A</th> </tr> </thead> <tbody> <tr> <td>Bug report?</td> <td>yes</td> </tr> <tr> <td>Feature request?</td> <td>no</td> </tr> <tr> <td>BC Break report?</td> <td>no</td> </tr> <tr> <td>RFC?</td> <td>no</td> </tr> <tr> <td>Symfony version</td> <td>3.4.6</td> </tr> </tbody> </table> <p dir="auto"><a href="https://github.com/phansys/symfony-standard/blob/container_controller/tests/AppBundle/Controller/OtherControllerTest.php#L13">This</a> is the <code class="notranslate">symfony/standard-edition</code> with the reproducible error.<br> Am I misunderstanding <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="237281139" data-permission-text="Title is private" data-url="https://github.com/symfony/symfony/issues/23239" data-hovercard-type="pull_request" data-hovercard-url="/symfony/symfony/pull/23239/hovercard" href="https://github.com/symfony/symfony/pull/23239">#23239</a>, or is supposed that autowired controllers should call <code class="notranslate">setContainer()</code>?</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ ./vendor/bin/simple-phpunit --filter OtherControllerTest PHPUnit 6.5.7 by Sebastian Bergmann and contributors. Testing Project Test Suite E 1 / 1 (100%) Time: 350 ms, Memory: 14.00MB There was 1 error: 1) Tests\AppBundle\Controller\OtherControllerTest::testOther Error: Call to a member function getParameter() on null vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Controller/Controller.php:40 src/AppBundle/Controller/DefaultController.php:18 src/AppBundle/Controller/OtherController.php:16 vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php:151 vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php:68 vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Kernel.php:202 vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Client.php:68 vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Client.php:131 vendor/symfony/symfony/src/Symfony/Component/BrowserKit/Client.php:312 tests/AppBundle/Controller/OtherControllerTest.php:13"><pre class="notranslate"><code class="notranslate">$ ./vendor/bin/simple-phpunit --filter OtherControllerTest PHPUnit 6.5.7 by Sebastian Bergmann and contributors. Testing Project Test Suite E 1 / 1 (100%) Time: 350 ms, Memory: 14.00MB There was 1 error: 1) Tests\AppBundle\Controller\OtherControllerTest::testOther Error: Call to a member function getParameter() on null vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Controller/Controller.php:40 src/AppBundle/Controller/DefaultController.php:18 src/AppBundle/Controller/OtherController.php:16 vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php:151 vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php:68 vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Kernel.php:202 vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Client.php:68 vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Client.php:131 vendor/symfony/symfony/src/Symfony/Component/BrowserKit/Client.php:312 tests/AppBundle/Controller/OtherControllerTest.php:13 </code></pre></div>
<p dir="auto">I'm on symfony 2.3.3 and I have a big problem with form embedded.</p> <p dir="auto">I followed <a href="http://symfony.com/doc/current/cookbook/form/form_collections.html" rel="nofollow">http://symfony.com/doc/current/cookbook/form/form_collections.html</a> and,</p> <p dir="auto">the calling of {{ form_widget(form.tags.vars.prototype)|e }} return an empty string and if I debug form.tags.vars.prototype, I have a FormView object.</p> <p dir="auto">could somebody help ?</p>
0
<p dir="auto">Example here: <a href="http://is.gd/LKsPyZ" rel="nofollow">http://is.gd/LKsPyZ</a></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="enum Foo { Bar(u8) } fn main() { let x = Foo::Bar as u32; println!(&quot;{:?}&quot;, x); }"><pre class="notranslate"><code class="notranslate">enum Foo { Bar(u8) } fn main() { let x = Foo::Bar as u32; println!("{:?}", x); } </code></pre></div> <p dir="auto">In rust 1.0.0 stable, rustc prints "LLVM ERROR: expected relocatable expression"</p> <p dir="auto">In nightly, it currently compiles and when run, the application prints "3964760960"</p>
<p dir="auto">rustc 0.13.0-dev (<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/rust-lang/rust/commit/222ae8b9bb34b7f7b4fda11a4c6b643252ae5a8a/hovercard" href="https://github.com/rust-lang/rust/commit/222ae8b9bb34b7f7b4fda11a4c6b643252ae5a8a"><tt>222ae8b</tt></a> 2014-10-18 00:47:22 +0000)</p> <div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="enum Tag { Dynamic, Inline(u8), Static, } #[test] fn f() { assert_eq!(Inline as uint, 1); }"><pre class="notranslate"><span class="pl-k">enum</span> <span class="pl-smi">Tag</span> <span class="pl-kos">{</span> <span class="pl-v">Dynamic</span><span class="pl-kos">,</span> <span class="pl-v">Inline</span><span class="pl-kos">(</span><span class="pl-smi">u8</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-v">Static</span><span class="pl-kos">,</span> <span class="pl-kos">}</span> <span class="pl-c1">#<span class="pl-kos">[</span>test<span class="pl-kos">]</span></span> <span class="pl-k">fn</span> <span class="pl-en">f</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-en">assert_eq</span><span class="pl-en">!</span><span class="pl-kos">(</span><span class="pl-v">Inline</span> <span class="pl-k">as</span> uint, <span class="pl-c1">1</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">compiles and produces</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="task 'f' failed at 'assertion failed: `(left == right) &amp;&amp; (right == left)` (left: `140041300628448`, right: `1`)', foo.rs:9"><pre class="notranslate"><code class="notranslate">task 'f' failed at 'assertion failed: `(left == right) &amp;&amp; (right == left)` (left: `140041300628448`, right: `1`)', foo.rs:9 </code></pre></div> <p dir="auto">I think it's casting the constructor function itself as a function pointer? But this is <em>super</em> confusing behavior (caused a segfault in unsafe code) when I just refactored an enum to be not C-like and I want to get rid of remaining occurrences of <code class="notranslate">as uint</code>.</p> <p dir="auto">Also it doesn't warn for <code class="notranslate">as u8</code>, even though it's too small for a function pointer.</p>
1
<p dir="auto">For example, the following code currently doesn't work.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&lt;div id=&quot;ticket&quot;&gt; &lt;select v-model=&quot;chosenTicket&quot; options=&quot;ticketOptions&quot;&gt; &lt;option value=&quot;&quot;&gt;Choose...&lt;/option&gt; &lt;/select&gt; &lt;button v-attr=&quot;disabled: !chosenTicket&quot; v-on=&quot;click: resetTicket&quot;&gt;Clear&lt;/button&gt; &lt;p v-if=&quot;chosenTicket&quot;&gt;You have choosen &lt;b&gt;{{chosenTicket.name}}&lt;/b&gt;(${{chosenTicket.price}})&lt;/p&gt; &lt;/div&gt;"><pre class="notranslate"><code class="notranslate">&lt;div id="ticket"&gt; &lt;select v-model="chosenTicket" options="ticketOptions"&gt; &lt;option value=""&gt;Choose...&lt;/option&gt; &lt;/select&gt; &lt;button v-attr="disabled: !chosenTicket" v-on="click: resetTicket"&gt;Clear&lt;/button&gt; &lt;p v-if="chosenTicket"&gt;You have choosen &lt;b&gt;{{chosenTicket.name}}&lt;/b&gt;(${{chosenTicket.price}})&lt;/p&gt; &lt;/div&gt; </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="new Vue({ el: &quot;#ticket&quot;, data: { tickets: [ { name: &quot;Economy&quot;, price: 199.95 }, { name: &quot;Business&quot;, price: 449.22 }, { name: &quot;First Class&quot;, price: 1199.99 } ], chosenTicket: null }, computed: { ticketOptions: function() { return this.tickets.map(function(ticket){ return {text: ticket.name, value: ticket}; }); } }, methods: { resetTicket: function() { this.chosenTicket = null; } } });"><pre class="notranslate"><code class="notranslate">new Vue({ el: "#ticket", data: { tickets: [ { name: "Economy", price: 199.95 }, { name: "Business", price: 449.22 }, { name: "First Class", price: 1199.99 } ], chosenTicket: null }, computed: { ticketOptions: function() { return this.tickets.map(function(ticket){ return {text: ticket.name, value: ticket}; }); } }, methods: { resetTicket: function() { this.chosenTicket = null; } } }); </code></pre></div> <p dir="auto">knockout.js supports this and it is extremely useful for data binding of cascading dropdowns.<br> Like <a href="http://knockoutjs.com/examples/cartEditor.html" rel="nofollow">http://knockoutjs.com/examples/cartEditor.html</a></p>
<p dir="auto">When using the <code class="notranslate">{text:'', value:''}</code> format for dynamic <code class="notranslate">&lt;select&gt;</code> options it becomes complex to get the <code class="notranslate">text</code> back out again for display since the <code class="notranslate">v-model</code> binds the <code class="notranslate">value</code>. One must then run a computed property and filter the <code class="notranslate">options</code> again and... you get the point.</p> <p dir="auto">Would it be possible to to support a syntax like this?</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="options: [ {this: 'This One'}, {that: 'That One'} ]"><pre class="notranslate"><code class="notranslate">options: [ {this: 'This One'}, {that: 'That One'} ] </code></pre></div> <p dir="auto">Which would then let us get that value back out like <code class="notranslate">this.options[this.selected]</code>. Just an idea. Feel free to say nay.</p>
1
<p dir="auto"><strong>Glide Version</strong>: 4.0.0</p> <p dir="auto"><strong>Integration libraries</strong>: None</p> <p dir="auto"><strong>Device/Android Version</strong>: Genymotion Nexus 5X 7.1.1</p> <p dir="auto"><strong>Issue details / Repro steps / Use case background</strong>: While scrolling in a <code class="notranslate">RecyclerView</code> with many pictures (~60) app crashes and throws a <code class="notranslate">ConcurrentModificationException</code>.</p> <p dir="auto"><strong>Glide load line / <code class="notranslate">GlideModule</code> (if any) / list Adapter code (if any)</strong>:</p> <div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="void loadFromUrls(Context context, ImageView view, String url, String thumbUrl, RequestListener&lt;Bitmap&gt; listener, boolean transform, float sizeMultiplier) { RequestOptions options = RequestOptions().diskCacheStrategy(DiskCacheStrategy.RESOURCE).dontAnimate(); if (!transform) options.dontTransform(); if (!thumbUrl.isEmpty()) { Glide.with(context).asBitmap().load(url) .thumbnail(Glide.with(context).asBitmap().load(thumbUrl) .thumbnail(sizeMultiplier) .apply(options.priority(Priority.IMMEDIATE))) .apply(options.priority(Priority.HIGH)) .listener(listener) .into(view); } else if (!url.isEmpty()) { Glide.with(context).asBitmap().load(url).thumbnail(sizeMultiplier) .apply(options.priority(Priority.HIGH)) .listener(listener) .into(view); } }"><pre class="notranslate"><span class="pl-smi">void</span> <span class="pl-s1">loadFromUrls</span>(<span class="pl-smi">Context</span> <span class="pl-s1">context</span>, <span class="pl-smi">ImageView</span> <span class="pl-s1">view</span>, <span class="pl-smi">String</span> <span class="pl-s1">url</span>, <span class="pl-smi">String</span> <span class="pl-s1">thumbUrl</span>, <span class="pl-smi">RequestListener</span>&lt;<span class="pl-smi">Bitmap</span>&gt; <span class="pl-s1">listener</span>, <span class="pl-smi">boolean</span> <span class="pl-s1">transform</span>, <span class="pl-smi">float</span> <span class="pl-s1">sizeMultiplier</span>) { <span class="pl-smi">RequestOptions</span> <span class="pl-s1">options</span> = <span class="pl-en">RequestOptions</span>().<span class="pl-en">diskCacheStrategy</span>(<span class="pl-smi">DiskCacheStrategy</span>.<span class="pl-c1">RESOURCE</span>).<span class="pl-en">dontAnimate</span>(); <span class="pl-k">if</span> (!<span class="pl-s1">transform</span>) <span class="pl-s1">options</span>.<span class="pl-en">dontTransform</span>(); <span class="pl-k">if</span> (!<span class="pl-s1">thumbUrl</span>.<span class="pl-en">isEmpty</span>()) { <span class="pl-smi">Glide</span>.<span class="pl-en">with</span>(<span class="pl-s1">context</span>).<span class="pl-en">asBitmap</span>().<span class="pl-en">load</span>(<span class="pl-s1">url</span>) .<span class="pl-en">thumbnail</span>(<span class="pl-smi">Glide</span>.<span class="pl-en">with</span>(<span class="pl-s1">context</span>).<span class="pl-en">asBitmap</span>().<span class="pl-en">load</span>(<span class="pl-s1">thumbUrl</span>) .<span class="pl-en">thumbnail</span>(<span class="pl-s1">sizeMultiplier</span>) .<span class="pl-en">apply</span>(<span class="pl-s1">options</span>.<span class="pl-en">priority</span>(<span class="pl-smi">Priority</span>.<span class="pl-c1">IMMEDIATE</span>))) .<span class="pl-en">apply</span>(<span class="pl-s1">options</span>.<span class="pl-en">priority</span>(<span class="pl-smi">Priority</span>.<span class="pl-c1">HIGH</span>)) .<span class="pl-en">listener</span>(<span class="pl-s1">listener</span>) .<span class="pl-en">into</span>(<span class="pl-s1">view</span>); } <span class="pl-k">else</span> <span class="pl-k">if</span> (!<span class="pl-s1">url</span>.<span class="pl-en">isEmpty</span>()) { <span class="pl-smi">Glide</span>.<span class="pl-en">with</span>(<span class="pl-s1">context</span>).<span class="pl-en">asBitmap</span>().<span class="pl-en">load</span>(<span class="pl-s1">url</span>).<span class="pl-en">thumbnail</span>(<span class="pl-s1">sizeMultiplier</span>) .<span class="pl-en">apply</span>(<span class="pl-s1">options</span>.<span class="pl-en">priority</span>(<span class="pl-smi">Priority</span>.<span class="pl-c1">HIGH</span>)) .<span class="pl-en">listener</span>(<span class="pl-s1">listener</span>) .<span class="pl-en">into</span>(<span class="pl-s1">view</span>); } }</pre></div> <p dir="auto"><strong>Layout XML</strong>:</p> <div class="highlight highlight-text-xml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;FrameLayout xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot; xmlns:tools=&quot;http://schemas.android.com/tools&quot; xmlns:app=&quot;http://schemas.android.com/apk/res-auto&quot; android:layout_width=&quot;match_parent&quot; android:layout_height=&quot;wrap_content&quot; android:orientation=&quot;vertical&quot; android:foreground=&quot;?selectableItemBackground&quot;&gt; &lt;ImageView android:id=&quot;@+id/wallpaper_image&quot; android:layout_width=&quot;match_parent&quot; android:layout_height=&quot;wrap_content&quot; android:scaleType=&quot;centerCrop&quot; tools:ignore=&quot;ContentDescription&quot;/&gt; &lt;LinearLayout android:id=&quot;@+id/wallpaper_details&quot; android:orientation=&quot;horizontal&quot; android:layout_width=&quot;match_parent&quot; android:layout_height=&quot;68dp&quot; android:paddingStart=&quot;@dimen/fabs_margin&quot; android:paddingLeft=&quot;@dimen/fabs_margin&quot; android:paddingEnd=&quot;@dimen/fabs_margin&quot; android:paddingRight=&quot;@dimen/fabs_margin&quot; android:layout_gravity=&quot;start|bottom&quot; android:gravity=&quot;start|bottom&quot; tools:ignore=&quot;UseCompoundDrawables&quot;&gt; &lt;LinearLayout android:layout_width=&quot;0dp&quot; android:layout_height=&quot;match_parent&quot; android:layout_weight=&quot;1&quot; android:orientation=&quot;vertical&quot; android:layout_gravity=&quot;center_vertical&quot; android:gravity=&quot;center_vertical&quot;&gt; &lt;TextView android:id=&quot;@+id/wallpaper_name&quot; android:layout_width=&quot;match_parent&quot; android:layout_height=&quot;wrap_content&quot; android:maxLines=&quot;1&quot; android:ellipsize=&quot;end&quot; android:textColor=&quot;@android:color/white&quot; android:textAppearance=&quot;@style/TextAppearance.AppCompat.Medium&quot; android:textSize=&quot;16sp&quot; android:layout_gravity=&quot;center_vertical&quot; android:gravity=&quot;center_vertical&quot; tools:text=&quot;Wallpaper name&quot;/&gt; &lt;TextView android:id=&quot;@+id/wallpaper_author&quot; android:layout_width=&quot;match_parent&quot; android:layout_height=&quot;wrap_content&quot; android:layout_marginTop=&quot;4dp&quot; android:maxLines=&quot;1&quot; android:ellipsize=&quot;end&quot; android:textColor=&quot;@android:color/white&quot; android:textAppearance=&quot;@style/TextAppearance.AppCompat.Small&quot; android:textSize=&quot;12sp&quot; android:layout_gravity=&quot;center_vertical&quot; android:gravity=&quot;center_vertical&quot; tools:text=&quot;John Doe&quot;/&gt; &lt;/LinearLayout&gt; &lt;ImageView android:id=&quot;@+id/heart_icon&quot; android:layout_width=&quot;wrap_content&quot; android:layout_height=&quot;match_parent&quot; android:background=&quot;?selectableItemBackgroundBorderless&quot; android:visibility=&quot;gone&quot; android:layout_gravity=&quot;center&quot; android:gravity=&quot;center&quot; tools:ignore=&quot;ContentDescription&quot;/&gt; &lt;/LinearLayout&gt; &lt;/FrameLayout&gt;"><pre class="notranslate">&lt;<span class="pl-ent">FrameLayout</span> <span class="pl-e">xmlns</span><span class="pl-e">:</span><span class="pl-e">android</span>=<span class="pl-s"><span class="pl-pds">"</span>http://schemas.android.com/apk/res/android<span class="pl-pds">"</span></span> <span class="pl-e">xmlns</span><span class="pl-e">:</span><span class="pl-e">tools</span>=<span class="pl-s"><span class="pl-pds">"</span>http://schemas.android.com/tools<span class="pl-pds">"</span></span> <span class="pl-e">xmlns</span><span class="pl-e">:</span><span class="pl-e">app</span>=<span class="pl-s"><span class="pl-pds">"</span>http://schemas.android.com/apk/res-auto<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">layout_width</span>=<span class="pl-s"><span class="pl-pds">"</span>match_parent<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">layout_height</span>=<span class="pl-s"><span class="pl-pds">"</span>wrap_content<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">orientation</span>=<span class="pl-s"><span class="pl-pds">"</span>vertical<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">foreground</span>=<span class="pl-s"><span class="pl-pds">"</span>?selectableItemBackground<span class="pl-pds">"</span></span>&gt; &lt;<span class="pl-ent">ImageView</span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">id</span>=<span class="pl-s"><span class="pl-pds">"</span>@+id/wallpaper_image<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">layout_width</span>=<span class="pl-s"><span class="pl-pds">"</span>match_parent<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">layout_height</span>=<span class="pl-s"><span class="pl-pds">"</span>wrap_content<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">scaleType</span>=<span class="pl-s"><span class="pl-pds">"</span>centerCrop<span class="pl-pds">"</span></span> <span class="pl-e">tools</span><span class="pl-e">:</span><span class="pl-e">ignore</span>=<span class="pl-s"><span class="pl-pds">"</span>ContentDescription<span class="pl-pds">"</span></span>/&gt; &lt;<span class="pl-ent">LinearLayout</span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">id</span>=<span class="pl-s"><span class="pl-pds">"</span>@+id/wallpaper_details<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">orientation</span>=<span class="pl-s"><span class="pl-pds">"</span>horizontal<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">layout_width</span>=<span class="pl-s"><span class="pl-pds">"</span>match_parent<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">layout_height</span>=<span class="pl-s"><span class="pl-pds">"</span>68dp<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">paddingStart</span>=<span class="pl-s"><span class="pl-pds">"</span>@dimen/fabs_margin<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">paddingLeft</span>=<span class="pl-s"><span class="pl-pds">"</span>@dimen/fabs_margin<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">paddingEnd</span>=<span class="pl-s"><span class="pl-pds">"</span>@dimen/fabs_margin<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">paddingRight</span>=<span class="pl-s"><span class="pl-pds">"</span>@dimen/fabs_margin<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">layout_gravity</span>=<span class="pl-s"><span class="pl-pds">"</span>start|bottom<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">gravity</span>=<span class="pl-s"><span class="pl-pds">"</span>start|bottom<span class="pl-pds">"</span></span> <span class="pl-e">tools</span><span class="pl-e">:</span><span class="pl-e">ignore</span>=<span class="pl-s"><span class="pl-pds">"</span>UseCompoundDrawables<span class="pl-pds">"</span></span>&gt; &lt;<span class="pl-ent">LinearLayout</span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">layout_width</span>=<span class="pl-s"><span class="pl-pds">"</span>0dp<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">layout_height</span>=<span class="pl-s"><span class="pl-pds">"</span>match_parent<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">layout_weight</span>=<span class="pl-s"><span class="pl-pds">"</span>1<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">orientation</span>=<span class="pl-s"><span class="pl-pds">"</span>vertical<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">layout_gravity</span>=<span class="pl-s"><span class="pl-pds">"</span>center_vertical<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">gravity</span>=<span class="pl-s"><span class="pl-pds">"</span>center_vertical<span class="pl-pds">"</span></span>&gt; &lt;<span class="pl-ent">TextView</span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">id</span>=<span class="pl-s"><span class="pl-pds">"</span>@+id/wallpaper_name<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">layout_width</span>=<span class="pl-s"><span class="pl-pds">"</span>match_parent<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">layout_height</span>=<span class="pl-s"><span class="pl-pds">"</span>wrap_content<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">maxLines</span>=<span class="pl-s"><span class="pl-pds">"</span>1<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">ellipsize</span>=<span class="pl-s"><span class="pl-pds">"</span>end<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">textColor</span>=<span class="pl-s"><span class="pl-pds">"</span>@android:color/white<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">textAppearance</span>=<span class="pl-s"><span class="pl-pds">"</span>@style/TextAppearance.AppCompat.Medium<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">textSize</span>=<span class="pl-s"><span class="pl-pds">"</span>16sp<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">layout_gravity</span>=<span class="pl-s"><span class="pl-pds">"</span>center_vertical<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">gravity</span>=<span class="pl-s"><span class="pl-pds">"</span>center_vertical<span class="pl-pds">"</span></span> <span class="pl-e">tools</span><span class="pl-e">:</span><span class="pl-e">text</span>=<span class="pl-s"><span class="pl-pds">"</span>Wallpaper name<span class="pl-pds">"</span></span>/&gt; &lt;<span class="pl-ent">TextView</span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">id</span>=<span class="pl-s"><span class="pl-pds">"</span>@+id/wallpaper_author<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">layout_width</span>=<span class="pl-s"><span class="pl-pds">"</span>match_parent<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">layout_height</span>=<span class="pl-s"><span class="pl-pds">"</span>wrap_content<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">layout_marginTop</span>=<span class="pl-s"><span class="pl-pds">"</span>4dp<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">maxLines</span>=<span class="pl-s"><span class="pl-pds">"</span>1<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">ellipsize</span>=<span class="pl-s"><span class="pl-pds">"</span>end<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">textColor</span>=<span class="pl-s"><span class="pl-pds">"</span>@android:color/white<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">textAppearance</span>=<span class="pl-s"><span class="pl-pds">"</span>@style/TextAppearance.AppCompat.Small<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">textSize</span>=<span class="pl-s"><span class="pl-pds">"</span>12sp<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">layout_gravity</span>=<span class="pl-s"><span class="pl-pds">"</span>center_vertical<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">gravity</span>=<span class="pl-s"><span class="pl-pds">"</span>center_vertical<span class="pl-pds">"</span></span> <span class="pl-e">tools</span><span class="pl-e">:</span><span class="pl-e">text</span>=<span class="pl-s"><span class="pl-pds">"</span>John Doe<span class="pl-pds">"</span></span>/&gt; &lt;/<span class="pl-ent">LinearLayout</span>&gt; &lt;<span class="pl-ent">ImageView</span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">id</span>=<span class="pl-s"><span class="pl-pds">"</span>@+id/heart_icon<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">layout_width</span>=<span class="pl-s"><span class="pl-pds">"</span>wrap_content<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">layout_height</span>=<span class="pl-s"><span class="pl-pds">"</span>match_parent<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">background</span>=<span class="pl-s"><span class="pl-pds">"</span>?selectableItemBackgroundBorderless<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">visibility</span>=<span class="pl-s"><span class="pl-pds">"</span>gone<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">layout_gravity</span>=<span class="pl-s"><span class="pl-pds">"</span>center<span class="pl-pds">"</span></span> <span class="pl-e">android</span><span class="pl-e">:</span><span class="pl-e">gravity</span>=<span class="pl-s"><span class="pl-pds">"</span>center<span class="pl-pds">"</span></span> <span class="pl-e">tools</span><span class="pl-e">:</span><span class="pl-e">ignore</span>=<span class="pl-s"><span class="pl-pds">"</span>ContentDescription<span class="pl-pds">"</span></span>/&gt; &lt;/<span class="pl-ent">LinearLayout</span>&gt; &lt;/<span class="pl-ent">FrameLayout</span>&gt;</pre></div> <p dir="auto"><strong>Stack trace / LogCat</strong>:</p> <div class="highlight highlight-source-ruby notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="E/AndroidRuntime: FATAL EXCEPTION: main Process: jahirfiquitiva.apps.test, PID: 13226 java.util.ConcurrentModificationException at java.util.ArrayList$Itr.next(ArrayList.java:831) at com.bumptech.glide.request.target.ViewTarget$SizeDeterminer.notifyCbs(ViewTarget.java:180) at com.bumptech.glide.request.target.ViewTarget$SizeDeterminer.checkCurrentDimens(ViewTarget.java:197) at com.bumptech.glide.request.target.ViewTarget$SizeDeterminer$SizeDeterminerLayoutListener.onPreDraw(ViewTarget.java:310) at android.view.ViewTreeObserver.dispatchOnPreDraw(ViewTreeObserver.java:944) at android.view.ViewRootImpl.performTraversals(ViewRootImpl.java:2205) at android.view.ViewRootImpl.doTraversal(ViewRootImpl.java:1254) at android.view.ViewRootImpl$TraversalRunnable.run(ViewRootImpl.java:6337) at android.view.Choreographer$CallbackRecord.run(Choreographer.java:874) at android.view.Choreographer.doCallbacks(Choreographer.java:686) at android.view.Choreographer.doFrame(Choreographer.java:621) at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:860) at android.os.Handler.handleCallback(Handler.java:751) at android.os.Handler.dispatchMessage(Handler.java:95) at android.os.Looper.loop(Looper.java:154) at android.app.ActivityThread.main(ActivityThread.java:6119) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776)"><pre class="notranslate"><span class="pl-c1">E</span>/<span class="pl-v">AndroidRuntime</span>: <span class="pl-c1">FATAL</span> <span class="pl-pds">EXCEPTION</span>: <span class="pl-en">main</span> <span class="pl-en">Process</span>: <span class="pl-en">jahirfiquitiva</span><span class="pl-kos">.</span><span class="pl-en">apps</span><span class="pl-kos">.</span><span class="pl-en">test</span><span class="pl-kos">,</span> <span class="pl-pds">PID</span>: <span class="pl-c1">13226</span> <span class="pl-en">java</span><span class="pl-kos">.</span><span class="pl-en">util</span><span class="pl-kos">.</span><span class="pl-en">ConcurrentModificationException</span> <span class="pl-en">at</span> <span class="pl-en">java</span><span class="pl-kos">.</span><span class="pl-en">util</span><span class="pl-kos">.</span><span class="pl-en">ArrayList</span>$Itr<span class="pl-kos">.</span><span class="pl-en">next</span><span class="pl-kos">(</span><span class="pl-v">ArrayList</span><span class="pl-kos">.</span><span class="pl-en">java</span><span class="pl-pds">:831</span><span class="pl-kos">)</span> <span class="pl-en">at</span> <span class="pl-en">com</span><span class="pl-kos">.</span><span class="pl-en">bumptech</span><span class="pl-kos">.</span><span class="pl-en">glide</span><span class="pl-kos">.</span><span class="pl-en">request</span><span class="pl-kos">.</span><span class="pl-en">target</span><span class="pl-kos">.</span><span class="pl-en">ViewTarget</span>$SizeDeterminer<span class="pl-kos">.</span><span class="pl-en">notifyCbs</span><span class="pl-kos">(</span><span class="pl-v">ViewTarget</span><span class="pl-kos">.</span><span class="pl-en">java</span><span class="pl-pds">:180</span><span class="pl-kos">)</span> <span class="pl-en">at</span> <span class="pl-en">com</span><span class="pl-kos">.</span><span class="pl-en">bumptech</span><span class="pl-kos">.</span><span class="pl-en">glide</span><span class="pl-kos">.</span><span class="pl-en">request</span><span class="pl-kos">.</span><span class="pl-en">target</span><span class="pl-kos">.</span><span class="pl-en">ViewTarget</span>$SizeDeterminer<span class="pl-kos">.</span><span class="pl-en">checkCurrentDimens</span><span class="pl-kos">(</span><span class="pl-v">ViewTarget</span><span class="pl-kos">.</span><span class="pl-en">java</span><span class="pl-pds">:197</span><span class="pl-kos">)</span> <span class="pl-en">at</span> <span class="pl-en">com</span><span class="pl-kos">.</span><span class="pl-en">bumptech</span><span class="pl-kos">.</span><span class="pl-en">glide</span><span class="pl-kos">.</span><span class="pl-en">request</span><span class="pl-kos">.</span><span class="pl-en">target</span><span class="pl-kos">.</span><span class="pl-en">ViewTarget</span>$SizeDeterminer$SizeDeterminerLayoutListener<span class="pl-kos">.</span><span class="pl-en">onPreDraw</span><span class="pl-kos">(</span><span class="pl-v">ViewTarget</span><span class="pl-kos">.</span><span class="pl-en">java</span><span class="pl-pds">:310</span><span class="pl-kos">)</span> <span class="pl-en">at</span> <span class="pl-en">android</span><span class="pl-kos">.</span><span class="pl-en">view</span><span class="pl-kos">.</span><span class="pl-en">ViewTreeObserver</span><span class="pl-kos">.</span><span class="pl-en">dispatchOnPreDraw</span><span class="pl-kos">(</span><span class="pl-v">ViewTreeObserver</span><span class="pl-kos">.</span><span class="pl-en">java</span><span class="pl-pds">:944</span><span class="pl-kos">)</span> <span class="pl-en">at</span> <span class="pl-en">android</span><span class="pl-kos">.</span><span class="pl-en">view</span><span class="pl-kos">.</span><span class="pl-en">ViewRootImpl</span><span class="pl-kos">.</span><span class="pl-en">performTraversals</span><span class="pl-kos">(</span><span class="pl-v">ViewRootImpl</span><span class="pl-kos">.</span><span class="pl-en">java</span><span class="pl-pds">:2205</span><span class="pl-kos">)</span> <span class="pl-en">at</span> <span class="pl-en">android</span><span class="pl-kos">.</span><span class="pl-en">view</span><span class="pl-kos">.</span><span class="pl-en">ViewRootImpl</span><span class="pl-kos">.</span><span class="pl-en">doTraversal</span><span class="pl-kos">(</span><span class="pl-v">ViewRootImpl</span><span class="pl-kos">.</span><span class="pl-en">java</span><span class="pl-pds">:1254</span><span class="pl-kos">)</span> <span class="pl-en">at</span> <span class="pl-en">android</span><span class="pl-kos">.</span><span class="pl-en">view</span><span class="pl-kos">.</span><span class="pl-en">ViewRootImpl</span>$TraversalRunnable<span class="pl-kos">.</span><span class="pl-en">run</span><span class="pl-kos">(</span><span class="pl-v">ViewRootImpl</span><span class="pl-kos">.</span><span class="pl-en">java</span><span class="pl-pds">:6337</span><span class="pl-kos">)</span> <span class="pl-en">at</span> <span class="pl-en">android</span><span class="pl-kos">.</span><span class="pl-en">view</span><span class="pl-kos">.</span><span class="pl-en">Choreographer</span>$CallbackRecord<span class="pl-kos">.</span><span class="pl-en">run</span><span class="pl-kos">(</span><span class="pl-v">Choreographer</span><span class="pl-kos">.</span><span class="pl-en">java</span><span class="pl-pds">:874</span><span class="pl-kos">)</span> <span class="pl-en">at</span> <span class="pl-en">android</span><span class="pl-kos">.</span><span class="pl-en">view</span><span class="pl-kos">.</span><span class="pl-en">Choreographer</span><span class="pl-kos">.</span><span class="pl-en">doCallbacks</span><span class="pl-kos">(</span><span class="pl-v">Choreographer</span><span class="pl-kos">.</span><span class="pl-en">java</span><span class="pl-pds">:686</span><span class="pl-kos">)</span> <span class="pl-en">at</span> <span class="pl-en">android</span><span class="pl-kos">.</span><span class="pl-en">view</span><span class="pl-kos">.</span><span class="pl-en">Choreographer</span><span class="pl-kos">.</span><span class="pl-en">doFrame</span><span class="pl-kos">(</span><span class="pl-v">Choreographer</span><span class="pl-kos">.</span><span class="pl-en">java</span><span class="pl-pds">:621</span><span class="pl-kos">)</span> <span class="pl-en">at</span> <span class="pl-en">android</span><span class="pl-kos">.</span><span class="pl-en">view</span><span class="pl-kos">.</span><span class="pl-en">Choreographer</span>$FrameDisplayEventReceiver<span class="pl-kos">.</span><span class="pl-en">run</span><span class="pl-kos">(</span><span class="pl-v">Choreographer</span><span class="pl-kos">.</span><span class="pl-en">java</span><span class="pl-pds">:860</span><span class="pl-kos">)</span> <span class="pl-en">at</span> <span class="pl-en">android</span><span class="pl-kos">.</span><span class="pl-en">os</span><span class="pl-kos">.</span><span class="pl-en">Handler</span><span class="pl-kos">.</span><span class="pl-en">handleCallback</span><span class="pl-kos">(</span><span class="pl-v">Handler</span><span class="pl-kos">.</span><span class="pl-en">java</span><span class="pl-pds">:751</span><span class="pl-kos">)</span> <span class="pl-en">at</span> <span class="pl-en">android</span><span class="pl-kos">.</span><span class="pl-en">os</span><span class="pl-kos">.</span><span class="pl-en">Handler</span><span class="pl-kos">.</span><span class="pl-en">dispatchMessage</span><span class="pl-kos">(</span><span class="pl-v">Handler</span><span class="pl-kos">.</span><span class="pl-en">java</span><span class="pl-pds">:95</span><span class="pl-kos">)</span> <span class="pl-en">at</span> <span class="pl-en">android</span><span class="pl-kos">.</span><span class="pl-en">os</span><span class="pl-kos">.</span><span class="pl-en">Looper</span><span class="pl-kos">.</span><span class="pl-en">loop</span><span class="pl-kos">(</span><span class="pl-v">Looper</span><span class="pl-kos">.</span><span class="pl-en">java</span><span class="pl-pds">:154</span><span class="pl-kos">)</span> <span class="pl-en">at</span> <span class="pl-en">android</span><span class="pl-kos">.</span><span class="pl-en">app</span><span class="pl-kos">.</span><span class="pl-en">ActivityThread</span><span class="pl-kos">.</span><span class="pl-en">main</span><span class="pl-kos">(</span><span class="pl-v">ActivityThread</span><span class="pl-kos">.</span><span class="pl-en">java</span><span class="pl-pds">:6119</span><span class="pl-kos">)</span> <span class="pl-en">at</span> <span class="pl-en">java</span><span class="pl-kos">.</span><span class="pl-en">lang</span><span class="pl-kos">.</span><span class="pl-en">reflect</span><span class="pl-kos">.</span><span class="pl-en">Method</span><span class="pl-kos">.</span><span class="pl-en">invoke</span><span class="pl-kos">(</span><span class="pl-en">Native</span> <span class="pl-v">Method</span><span class="pl-kos">)</span> <span class="pl-en">at</span> <span class="pl-en">com</span><span class="pl-kos">.</span><span class="pl-en">android</span><span class="pl-kos">.</span><span class="pl-en">internal</span><span class="pl-kos">.</span><span class="pl-en">os</span><span class="pl-kos">.</span><span class="pl-en">ZygoteInit</span>$MethodAndArgsCaller<span class="pl-kos">.</span><span class="pl-en">run</span><span class="pl-kos">(</span><span class="pl-v">ZygoteInit</span><span class="pl-kos">.</span><span class="pl-en">java</span><span class="pl-pds">:886</span><span class="pl-kos">)</span> <span class="pl-en">at</span> <span class="pl-en">com</span><span class="pl-kos">.</span><span class="pl-en">android</span><span class="pl-kos">.</span><span class="pl-en">internal</span><span class="pl-kos">.</span><span class="pl-en">os</span><span class="pl-kos">.</span><span class="pl-en">ZygoteInit</span><span class="pl-kos">.</span><span class="pl-en">main</span><span class="pl-kos">(</span><span class="pl-v">ZygoteInit</span><span class="pl-kos">.</span><span class="pl-en">java</span><span class="pl-pds">:776</span><span class="pl-kos">)</span></pre></div>
<p dir="auto"><strong>Glide Version</strong>: 4.0.0</p> <p dir="auto"><strong>Integration libraries</strong>: okhttp3-integration</p> <p dir="auto"><strong>Device/Android Version</strong>: Galaxy Note 5 7.0/Nexus 6P 8.0</p> <p dir="auto">In my app there is a list (RecyclerView) of images, which load through Glide. Some images are GIF, so for them I use static thumbnails. When I quickly scroll down and up the app crashes with following exception:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="E/AndroidRuntime: FATAL EXCEPTION: main Process: com.blinkseven.jrviewer, PID: 18619 java.util.ConcurrentModificationException at java.util.ArrayList$Itr.next(ArrayList.java:831) at com.bumptech.glide.request.target.ViewTarget$SizeDeterminer.notifyCbs(ViewTarget.java:180) at com.bumptech.glide.request.target.ViewTarget$SizeDeterminer.checkCurrentDimens(ViewTarget.java:197) at com.bumptech.glide.request.target.ViewTarget$SizeDeterminer$SizeDeterminerLayoutListener.onPreDraw(ViewTarget.java:310) at android.view.ViewTreeObserver.dispatchOnPreDraw(ViewTreeObserver.java:1013) at android.view.ViewRootImpl.performTraversals(ViewRootImpl.java:2513) at android.view.ViewRootImpl.doTraversal(ViewRootImpl.java:1522) at android.view.ViewRootImpl$TraversalRunnable.run(ViewRootImpl.java:7098) at android.view.Choreographer$CallbackRecord.run(Choreographer.java:927) at android.view.Choreographer.doCallbacks(Choreographer.java:702) at android.view.Choreographer.doFrame(Choreographer.java:638) at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:913) at android.os.Handler.handleCallback(Handler.java:751) at android.os.Handler.dispatchMessage(Handler.java:95) at android.os.Looper.loop(Looper.java:154) at android.app.ActivityThread.main(ActivityThread.java:6682) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1520) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1410)"><pre class="notranslate"><code class="notranslate">E/AndroidRuntime: FATAL EXCEPTION: main Process: com.blinkseven.jrviewer, PID: 18619 java.util.ConcurrentModificationException at java.util.ArrayList$Itr.next(ArrayList.java:831) at com.bumptech.glide.request.target.ViewTarget$SizeDeterminer.notifyCbs(ViewTarget.java:180) at com.bumptech.glide.request.target.ViewTarget$SizeDeterminer.checkCurrentDimens(ViewTarget.java:197) at com.bumptech.glide.request.target.ViewTarget$SizeDeterminer$SizeDeterminerLayoutListener.onPreDraw(ViewTarget.java:310) at android.view.ViewTreeObserver.dispatchOnPreDraw(ViewTreeObserver.java:1013) at android.view.ViewRootImpl.performTraversals(ViewRootImpl.java:2513) at android.view.ViewRootImpl.doTraversal(ViewRootImpl.java:1522) at android.view.ViewRootImpl$TraversalRunnable.run(ViewRootImpl.java:7098) at android.view.Choreographer$CallbackRecord.run(Choreographer.java:927) at android.view.Choreographer.doCallbacks(Choreographer.java:702) at android.view.Choreographer.doFrame(Choreographer.java:638) at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:913) at android.os.Handler.handleCallback(Handler.java:751) at android.os.Handler.dispatchMessage(Handler.java:95) at android.os.Looper.loop(Looper.java:154) at android.app.ActivityThread.main(ActivityThread.java:6682) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1520) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1410) </code></pre></div> <p dir="auto">I noticed that the app crashes only on items with GIFs and its thumbnails, namely when I include thumbnails loading.</p> <p dir="auto">Here is an example of loading GIFs with Glide:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="RequestBuilder&lt;Drawable&gt; thumbnailRequest = GlideApp .with(this) .load(imageModel.getUri()) .thumbnail(0.5f) .fallback(android.R.color.holo_orange_light) .placeholder(android.R.color.holo_green_light) .error(android.R.color.holo_red_light) .dontAnimate(); GlideApp .with(this) .load(imageModel.getFullUri()) .listener(listener) // Load gif's thumbnail through RequestBuilder .thumbnail(thumbnailRequest) .fallback(android.R.color.holo_orange_light) .placeholder(android.R.color.holo_green_light) .error(android.R.color.holo_red_light) .into((ImageView) findViewById(R.id.image));"><pre class="notranslate"><code class="notranslate">RequestBuilder&lt;Drawable&gt; thumbnailRequest = GlideApp .with(this) .load(imageModel.getUri()) .thumbnail(0.5f) .fallback(android.R.color.holo_orange_light) .placeholder(android.R.color.holo_green_light) .error(android.R.color.holo_red_light) .dontAnimate(); GlideApp .with(this) .load(imageModel.getFullUri()) .listener(listener) // Load gif's thumbnail through RequestBuilder .thumbnail(thumbnailRequest) .fallback(android.R.color.holo_orange_light) .placeholder(android.R.color.holo_green_light) .error(android.R.color.holo_red_light) .into((ImageView) findViewById(R.id.image)); </code></pre></div> <p dir="auto">If exclude 'thumbnail' option there is no exception.</p>
1
<p dir="auto">Hey,</p> <p dir="auto">I hope that I did not made major flaws but I can not find a mistake. The output of argrelextrema() is always an empty numpy array.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import numpy as np from scipy.signal import argrelextrema dat = np.genfromtxt(&quot;numbers.dat&quot;) print argrelextrema(dat[:], np.greater, order=6)"><pre class="notranslate"><code class="notranslate">import numpy as np from scipy.signal import argrelextrema dat = np.genfromtxt("numbers.dat") print argrelextrema(dat[:], np.greater, order=6) </code></pre></div> <p dir="auto"><em>(array([], dtype=int64),)</em></p> <p dir="auto"><code class="notranslate">numbers.dat</code> contains a list of 50 testvalues containing a maximum. I also tested several values for the <code class="notranslate">order</code> parameter</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="78.75 81.0 83.25 85.5 87.75 89.25 91.5 93.0 94.5 96.75 98.25 99.75 101.25 102.0 103.5 104.25 105.75 106.5 107.25 108.0 108.75 108.75 109.5 109.5 109.5 109.5 109.5 109.5 109.5 108.75 108.75 108.0 107.25 106.5 105.75 105.0 104.25 102.75 102.0 100.5 99.0 97.5 96.0 94.5 93.0 90.75 89.25 87.0 84.75 82.5"><pre class="notranslate"><code class="notranslate">78.75 81.0 83.25 85.5 87.75 89.25 91.5 93.0 94.5 96.75 98.25 99.75 101.25 102.0 103.5 104.25 105.75 106.5 107.25 108.0 108.75 108.75 109.5 109.5 109.5 109.5 109.5 109.5 109.5 108.75 108.75 108.0 107.25 106.5 105.75 105.0 104.25 102.75 102.0 100.5 99.0 97.5 96.0 94.5 93.0 90.75 89.25 87.0 84.75 82.5 </code></pre></div> <p dir="auto">Thanks for any comments!<br> Stephan</p>
<p dir="auto">Scipy documentation lists scipy.sparse.dok_matrix as having three methods that return iterators:</p> <ul dir="auto"> <li>iteritems()</li> <li>iterkeys()</li> <li>itervalues()</li> </ul> <p dir="auto">None of these seem to exist. Example:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from scipy import sparse A = np.random.rand(100,100) As = sparse.dok_matrix(A) As.iteritems() #&lt;------ This raises an AttributeError: iteritems not found."><pre class="notranslate"><code class="notranslate">from scipy import sparse A = np.random.rand(100,100) As = sparse.dok_matrix(A) As.iteritems() #&lt;------ This raises an AttributeError: iteritems not found. </code></pre></div>
0
<p dir="auto">Starting in julia 1.4, the <code class="notranslate">Warning</code> <strong>disappeared</strong> from <code class="notranslate">Profile</code> when you've overrun the profile buffer:</p> <p dir="auto">On 1.3:</p> <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia&gt; using Profile julia&gt; Profile.init(n=10, delay=0.000001) # Definitely going to run out of buffer julia&gt; @profile for _ in 1:10 peakflops() end julia&gt; Profile.print() ┌ Warning: The profile data buffer is full; profiling probably terminated │ before your program finished. To profile for longer runs, call │ `Profile.init()` with a larger buffer and/or larger delay. └ @ Profile /Users/julia/buildbot/worker/package_macos64/build/usr/share/julia/stdlib/v1.3/Profile/src/Profile.jl:312 ┌ Warning: There were no samples collected. Run your program longer (perhaps by │ running it multiple times), or adjust the delay between samples with │ `Profile.init()`. └ @ Profile /Users/julia/buildbot/worker/package_macos64/build/usr/share/julia/stdlib/v1.3/Profile/src/Profile.jl:667"><pre class="notranslate">julia<span class="pl-k">&gt;</span> <span class="pl-k">using</span> Profile julia<span class="pl-k">&gt;</span> Profile<span class="pl-k">.</span><span class="pl-c1">init</span>(n<span class="pl-k">=</span><span class="pl-c1">10</span>, delay<span class="pl-k">=</span><span class="pl-c1">0.000001</span>) <span class="pl-c"><span class="pl-c">#</span> Definitely going to run out of buffer</span> julia<span class="pl-k">&gt;</span> <span class="pl-c1">@profile</span> <span class="pl-k">for</span> _ <span class="pl-k">in</span> <span class="pl-c1">1</span><span class="pl-k">:</span><span class="pl-c1">10</span> <span class="pl-c1">peakflops</span>() <span class="pl-k">end</span> julia<span class="pl-k">&gt;</span> Profile<span class="pl-k">.</span><span class="pl-c1">print</span>() ┌ Warning<span class="pl-k">:</span> The profile data buffer is full; profiling probably terminated │ before your program finished. To profile <span class="pl-k">for</span> longer runs, call │ <span class="pl-s"><span class="pl-pds">`</span>Profile.init()<span class="pl-pds">`</span></span> with a larger buffer and<span class="pl-k">/</span>or larger delay. └ @ Profile <span class="pl-k">/</span>Users<span class="pl-k">/</span>julia<span class="pl-k">/</span>buildbot<span class="pl-k">/</span>worker<span class="pl-k">/</span>package_macos64<span class="pl-k">/</span>build<span class="pl-k">/</span>usr<span class="pl-k">/</span>share<span class="pl-k">/</span>julia<span class="pl-k">/</span>stdlib<span class="pl-k">/</span>v1.<span class="pl-c1">3</span><span class="pl-k">/</span>Profile<span class="pl-k">/</span>src<span class="pl-k">/</span>Profile<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">312</span> ┌ Warning<span class="pl-k">:</span> There were no samples collected. Run your program longer (perhaps by │ running it multiple times), or adjust the delay between samples with │ <span class="pl-s"><span class="pl-pds">`</span>Profile.init()<span class="pl-pds">`</span></span>. └ @ Profile <span class="pl-k">/</span>Users<span class="pl-k">/</span>julia<span class="pl-k">/</span>buildbot<span class="pl-k">/</span>worker<span class="pl-k">/</span>package_macos64<span class="pl-k">/</span>build<span class="pl-k">/</span>usr<span class="pl-k">/</span>share<span class="pl-k">/</span>julia<span class="pl-k">/</span>stdlib<span class="pl-k">/</span>v1.<span class="pl-c1">3</span><span class="pl-k">/</span>Profile<span class="pl-k">/</span>src<span class="pl-k">/</span>Profile<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">667</span></pre></div> <p dir="auto">On 1.4:</p> <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia&gt; using Profile julia&gt; Profile.init(n=10, delay=0.000001) # Definitely going to run out of buffer julia&gt; @profile for _ in 1:10 peakflops() end julia&gt; Profile.print() ┌ Warning: There were no samples collected. Run your program longer (perhaps by │ running it multiple times), or adjust the delay between samples with │ `Profile.init()`. └ @ Profile /Users/julia/buildbot/worker/package_macos64/build/usr/share/julia/stdlib/v1.4/Profile/src/Profile.jl:851"><pre class="notranslate">julia<span class="pl-k">&gt;</span> <span class="pl-k">using</span> Profile julia<span class="pl-k">&gt;</span> Profile<span class="pl-k">.</span><span class="pl-c1">init</span>(n<span class="pl-k">=</span><span class="pl-c1">10</span>, delay<span class="pl-k">=</span><span class="pl-c1">0.000001</span>) <span class="pl-c"><span class="pl-c">#</span> Definitely going to run out of buffer</span> julia<span class="pl-k">&gt;</span> <span class="pl-c1">@profile</span> <span class="pl-k">for</span> _ <span class="pl-k">in</span> <span class="pl-c1">1</span><span class="pl-k">:</span><span class="pl-c1">10</span> <span class="pl-c1">peakflops</span>() <span class="pl-k">end</span> julia<span class="pl-k">&gt;</span> Profile<span class="pl-k">.</span><span class="pl-c1">print</span>() ┌ Warning<span class="pl-k">:</span> There were no samples collected. Run your program longer (perhaps by │ running it multiple times), or adjust the delay between samples with │ <span class="pl-s"><span class="pl-pds">`</span>Profile.init()<span class="pl-pds">`</span></span>. └ @ Profile <span class="pl-k">/</span>Users<span class="pl-k">/</span>julia<span class="pl-k">/</span>buildbot<span class="pl-k">/</span>worker<span class="pl-k">/</span>package_macos64<span class="pl-k">/</span>build<span class="pl-k">/</span>usr<span class="pl-k">/</span>share<span class="pl-k">/</span>julia<span class="pl-k">/</span>stdlib<span class="pl-k">/</span>v1.<span class="pl-c1">4</span><span class="pl-k">/</span>Profile<span class="pl-k">/</span>src<span class="pl-k">/</span>Profile<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">851</span></pre></div> <p dir="auto">Obviously the above is a silly example, but this has definitely led to some wasted time in practice trying to understand a profile that doesn't make sense, only to eventually realize that the buffer must not have been big enough!</p> <p dir="auto">Can we add this Warning back to the package? It is <strong>very useful</strong> and should be cheap to perform.</p> <hr> <p dir="auto"><em>Even better,</em> can we <em>also</em> add a runtime check to print such a Warning as soon as the buffer fills up, <em>during profiling</em>? This way we can know to kill our profiling process and adjust the buffer, and re-run, shortening the developer loop.</p> <hr> <p dir="auto">I've been meaning to file an issue about this for a long time. I'm sorry it took me so long to do! :) Thanks for all your hard work and these very useful tools! ❤️ !</p>
<p dir="auto">The Regex docs provide indexing with Symbol, where the symbol is the name of the capture group.</p> <p dir="auto">What is lacking is a way to retrieve the capture group names from either a Match or just the Regex itself (from the docs).</p> <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="s = &quot;aaa bbb ccc&quot; r = r&quot;(?&lt;a&gt;.*) (?&lt;b&gt;.*) (?&lt;c&gt;.*)&quot; m = match(r, s) # I don't think there is a way to retrieve the symbols [:a, :b, :c] from this or `r`"><pre class="notranslate">s <span class="pl-k">=</span> <span class="pl-s"><span class="pl-pds">"</span>aaa bbb ccc<span class="pl-pds">"</span></span> r <span class="pl-k">=</span> <span class="pl-sr"><span class="pl-pds">r"</span>(?&lt;a&gt;.*) (?&lt;b&gt;.*) (?&lt;c&gt;.*)<span class="pl-pds">"</span></span> m <span class="pl-k">=</span> <span class="pl-c1">match</span>(r, s) <span class="pl-c"><span class="pl-c">#</span> I don't think there is a way to retrieve the symbols [:a, :b, :c] from this or `r`</span></pre></div> <p dir="auto">One has to know about <code class="notranslate">Base.PCRE.capture_names(m.regex.regex)</code>.</p> <p dir="auto">The context in which this arose was wanting to easily construct a <code class="notranslate">DataFrame</code> from a <code class="notranslate">Vector{RegexMatch}</code> where the capture group names become the column names. Thanks to <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/pdeffebach/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/pdeffebach">@pdeffebach</a> for finding the <code class="notranslate">capture_names</code> function for me.</p> <p dir="auto">This should be a simple PR to add a line to <a href="https://docs.julialang.org/en/v1/manual/strings/#Regular-Expressions" rel="nofollow">https://docs.julialang.org/en/v1/manual/strings/#Regular-Expressions</a> mentioning it.</p> <p dir="auto">I may get to it, I may not xd</p>
0
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/apache/incubator-dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/apache/incubator-dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li> </ul> <h3 dir="auto">Environment</h3> <ul dir="auto"> <li>Dubbo version: 2.7.1</li> <li>Operating System version: win10</li> <li>Java version: jdk1.8.0_101</li> </ul> <h3 dir="auto">Steps to reproduce this issue</h3> <ol dir="auto"> <li>使用 <a href="https://github.com/apache/incubator-dubbo/tree/master/dubbo-demo/dubbo-demo-xml">dubbo-demo-xml</a> 项目,或者其他测试项目</li> <li>启动两个provider示例,一个在 <code class="notranslate">&lt;dubbo:service/&gt;</code> 中加上<code class="notranslate">tag="groupA"</code> 我们叫他 <code class="notranslate">p1</code>,另一个不加tag 我们叫他 <code class="notranslate">p2</code>.</li> <li>在<code class="notranslate">&lt;dubbo:reference&gt;</code>标签中添加<code class="notranslate">&lt;dubbo:parameter key="dubbo.tag" value="groupA"/&gt;</code> 之后将consumer 示例启动</li> </ol> <hr> <ol dir="auto"> <li>use <a href="https://github.com/apache/incubator-dubbo/tree/master/dubbo-demo/dubbo-demo-xml">dubbo-demo-xml</a>, or other demo .</li> <li>prepare two providers, one set <code class="notranslate">tag="groupA"</code> at <code class="notranslate">&lt;dubbo:service/&gt;</code> called <code class="notranslate">p1</code> , another with no tag called <code class="notranslate">p2</code>. start them.</li> <li>start a consumer instance ,after set <code class="notranslate">&lt;dubbo:parameter key="dubbo.tag" value="groupA"/&gt;</code> inside of <code class="notranslate">&lt;dubbo:reference&gt;</code>.</li> </ol> <h3 dir="auto">Expected Result</h3> <p dir="auto">因为拥有相同的tag声明,consumer本应该会调用到<code class="notranslate">p1</code>示例.<br> consumer would connect <code class="notranslate">p1</code> because of the same tag definition</p> <h3 dir="auto">Actual Result</h3> <p dir="auto">但consumer依然可能连接到<code class="notranslate">p2</code>示例.<br> consumer also connects <code class="notranslate">p2</code>.</p> <hr> <p dir="auto">如果把 步骤3 的标签改为在调用代码中使用<code class="notranslate">RpcContext.getContext().setAttachment("dubbo.tag","groupA")</code>,是可以正常工作的。请问这两种方式有什么区别呢?</p> <p dir="auto">通过分析源码发现 在 <a href="https://github.com/apache/incubator-dubbo/blob/1706807a1c9221fb13a24a8b318a56c699eea67d/dubbo-registry/dubbo-registry-api/src/main/java/org/apache/dubbo/registry/integration/RegistryDirectory.java#L431">RegistryDiscovery</a> 中将consumer 端的parameter 整合到providerUrl 中。 请问为什么需要这步操作?</p>
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li> </ul> <h3 dir="auto">Environment</h3> <ul dir="auto"> <li>Dubbo version: 2.7.3</li> <li>Operating System version: macOS 10.12.6</li> <li>Java version: 1.8</li> </ul> <h3 dir="auto">Steps to reproduce this issue</h3> <ol dir="auto"> <li>use feign to transfer <code class="notranslate">FullServiceDefinition</code></li> </ol> <h3 dir="auto">Expected Result</h3> <p dir="auto">no exception</p> <h3 dir="auto">Actual Result</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" Caused by: feign.codec.DecodeException: JSON parse error: Cannot construct instance of `org.apache.dubbo.metadata.definition.model.TypeDefinition` (although at least one Creator exists): cannot deserialize from Object value (no delegate- or property-based Creator); nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot construct instance of `org.apache.dubbo.metadata.definition.model.TypeDefinition` (although at least one Creator exists): cannot deserialize from Object value (no delegate- or property-based Creator) at [Source: (PushbackInputStream); line: 1, column: 6583] (through reference chain: com.zzc.web.common.dubbo.model.dto.InterfaceDetailDTO[&quot;metadata&quot;]-&gt;org.apache.dubbo.metadata.definition.model.FullServiceDefinition[&quot;types&quot;]-&gt;java.util.ArrayList[0]) at feign.SynchronousMethodHandler.decode(SynchronousMethodHandler.java:169) ~[feign-core-9.5.0.jar:?] at feign.SynchronousMethodHandler.executeAndDecode(SynchronousMethodHandler.java:133) ~[feign-core-9.5.0.jar:?] at feign.SynchronousMethodHandler.invoke(SynchronousMethodHandler.java:76) ~[feign-core-9.5.0.jar:?] at feign.hystrix.HystrixInvocationHandler$1.run(HystrixInvocationHandler.java:108) ~[feign-hystrix-9.5.0.jar:?] at com.netflix.hystrix.HystrixCommand$2.call(HystrixCommand.java:302) ~[hystrix-core-1.5.12.jar:1.5.12] at com.netflix.hystrix.HystrixCommand$2.call(HystrixCommand.java:298) ~[hystrix-core-1.5.12.jar:1.5.12] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:46) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:35) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.Observable.unsafeSubscribe(Observable.java:10151) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:51) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:35) ~[rxjava-1.2.0.jar:1.2.0] at rx.Observable.unsafeSubscribe(Observable.java:10151) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDoOnEach.call(OnSubscribeDoOnEach.java:41) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDoOnEach.call(OnSubscribeDoOnEach.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.Observable.unsafeSubscribe(Observable.java:10151) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OperatorSubscribeOn$1.call(OperatorSubscribeOn.java:94) ~[rxjava-1.2.0.jar:1.2.0] at com.netflix.hystrix.strategy.concurrency.HystrixContexSchedulerAction$1.call(HystrixContexSchedulerAction.java:56) ~[hystrix-core-1.5.12.jar:1.5.12] at com.netflix.hystrix.strategy.concurrency.HystrixContexSchedulerAction$1.call(HystrixContexSchedulerAction.java:47) ~[hystrix-core-1.5.12.jar:1.5.12] at com.netflix.hystrix.strategy.concurrency.HystrixContexSchedulerAction.call(HystrixContexSchedulerAction.java:69) ~[hystrix-core-1.5.12.jar:1.5.12] at rx.internal.schedulers.ScheduledAction.run(ScheduledAction.java:55) ~[rxjava-1.2.0.jar:1.2.0] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[?:1.8.0_144] at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) ~[?:1.8.0_144] at java.util.concurrent.FutureTask.run(FutureTask.java) ~[?:1.8.0_144] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[?:1.8.0_144] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[?:1.8.0_144] ... 1 more Caused by: org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Cannot construct instance of `org.apache.dubbo.metadata.definition.model.TypeDefinition` (although at least one Creator exists): cannot deserialize from Object value (no delegate- or property-based Creator); nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot construct instance of `org.apache.dubbo.metadata.definition.model.TypeDefinition` (although at least one Creator exists): cannot deserialize from Object value (no delegate- or property-based Creator) at [Source: (PushbackInputStream); line: 1, column: 6583] (through reference chain: com.zzc.web.common.dubbo.model.dto.InterfaceDetailDTO[&quot;metadata&quot;]-&gt;org.apache.dubbo.metadata.definition.model.FullServiceDefinition[&quot;types&quot;]-&gt;java.util.ArrayList[0]) at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.readJavaType(AbstractJackson2HttpMessageConverter.java:238) ~[spring-web-4.3.13.RELEASE.jar:4.3.13.RELEASE] at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.read(AbstractJackson2HttpMessageConverter.java:223) ~[spring-web-4.3.13.RELEASE.jar:4.3.13.RELEASE] at org.springframework.web.client.HttpMessageConverterExtractor.extractData(HttpMessageConverterExtractor.java:96) ~[spring-web-4.3.13.RELEASE.jar:4.3.13.RELEASE] at org.springframework.cloud.netflix.feign.support.SpringDecoder.decode(SpringDecoder.java:59) ~[spring-cloud-netflix-core-1.4.6.RELEASE.jar:1.4.6.RELEASE] at org.springframework.cloud.netflix.feign.support.ResponseEntityDecoder.decode(ResponseEntityDecoder.java:45) ~[spring-cloud-netflix-core-1.4.6.RELEASE.jar:1.4.6.RELEASE] at feign.SynchronousMethodHandler.decode(SynchronousMethodHandler.java:165) ~[feign-core-9.5.0.jar:?] at feign.SynchronousMethodHandler.executeAndDecode(SynchronousMethodHandler.java:133) ~[feign-core-9.5.0.jar:?] at feign.SynchronousMethodHandler.invoke(SynchronousMethodHandler.java:76) ~[feign-core-9.5.0.jar:?] at feign.hystrix.HystrixInvocationHandler$1.run(HystrixInvocationHandler.java:108) ~[feign-hystrix-9.5.0.jar:?] at com.netflix.hystrix.HystrixCommand$2.call(HystrixCommand.java:302) ~[hystrix-core-1.5.12.jar:1.5.12] at com.netflix.hystrix.HystrixCommand$2.call(HystrixCommand.java:298) ~[hystrix-core-1.5.12.jar:1.5.12] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:46) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:35) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.Observable.unsafeSubscribe(Observable.java:10151) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:51) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:35) ~[rxjava-1.2.0.jar:1.2.0] at rx.Observable.unsafeSubscribe(Observable.java:10151) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDoOnEach.call(OnSubscribeDoOnEach.java:41) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDoOnEach.call(OnSubscribeDoOnEach.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.Observable.unsafeSubscribe(Observable.java:10151) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OperatorSubscribeOn$1.call(OperatorSubscribeOn.java:94) ~[rxjava-1.2.0.jar:1.2.0] at com.netflix.hystrix.strategy.concurrency.HystrixContexSchedulerAction$1.call(HystrixContexSchedulerAction.java:56) ~[hystrix-core-1.5.12.jar:1.5.12] at com.netflix.hystrix.strategy.concurrency.HystrixContexSchedulerAction$1.call(HystrixContexSchedulerAction.java:47) ~[hystrix-core-1.5.12.jar:1.5.12] at com.netflix.hystrix.strategy.concurrency.HystrixContexSchedulerAction.call(HystrixContexSchedulerAction.java:69) ~[hystrix-core-1.5.12.jar:1.5.12] at rx.internal.schedulers.ScheduledAction.run(ScheduledAction.java:55) ~[rxjava-1.2.0.jar:1.2.0] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[?:1.8.0_144] at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) ~[?:1.8.0_144] at java.util.concurrent.FutureTask.run(FutureTask.java) ~[?:1.8.0_144] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[?:1.8.0_144] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[?:1.8.0_144] ... 1 more Caused by: com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot construct instance of `org.apache.dubbo.metadata.definition.model.TypeDefinition` (although at least one Creator exists): cannot deserialize from Object value (no delegate- or property-based Creator) at [Source: (PushbackInputStream); line: 1, column: 6583] (through reference chain: com.zzc.web.common.dubbo.model.dto.InterfaceDetailDTO[&quot;metadata&quot;]-&gt;org.apache.dubbo.metadata.definition.model.FullServiceDefinition[&quot;types&quot;]-&gt;java.util.ArrayList[0]) at com.fasterxml.jackson.databind.exc.MismatchedInputException.from(MismatchedInputException.java:63) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.DeserializationContext.reportInputMismatch(DeserializationContext.java:1342) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.DeserializationContext.handleMissingInstantiator(DeserializationContext.java:1031) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.BeanDeserializerBase.deserializeFromObjectUsingNonDefault(BeanDeserializerBase.java:1290) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserializeFromObject(BeanDeserializer.java:326) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:159) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(CollectionDeserializer.java:286) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(CollectionDeserializer.java:245) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(CollectionDeserializer.java:27) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.impl.MethodProperty.deserializeAndSet(MethodProperty.java:127) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserializeFromObject(BeanDeserializer.java:369) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:159) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.impl.MethodProperty.deserializeAndSet(MethodProperty.java:127) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserializeFromObject(BeanDeserializer.java:369) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:159) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:4001) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:3072) ~[jackson-databind-2.9.4.jar:2.9.4] at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.readJavaType(AbstractJackson2HttpMessageConverter.java:235) ~[spring-web-4.3.13.RELEASE.jar:4.3.13.RELEASE] at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.read(AbstractJackson2HttpMessageConverter.java:223) ~[spring-web-4.3.13.RELEASE.jar:4.3.13.RELEASE] at org.springframework.web.client.HttpMessageConverterExtractor.extractData(HttpMessageConverterExtractor.java:96) ~[spring-web-4.3.13.RELEASE.jar:4.3.13.RELEASE] at org.springframework.cloud.netflix.feign.support.SpringDecoder.decode(SpringDecoder.java:59) ~[spring-cloud-netflix-core-1.4.6.RELEASE.jar:1.4.6.RELEASE] at org.springframework.cloud.netflix.feign.support.ResponseEntityDecoder.decode(ResponseEntityDecoder.java:45) ~[spring-cloud-netflix-core-1.4.6.RELEASE.jar:1.4.6.RELEASE] at feign.SynchronousMethodHandler.decode(SynchronousMethodHandler.java:165) ~[feign-core-9.5.0.jar:?] at feign.SynchronousMethodHandler.executeAndDecode(SynchronousMethodHandler.java:133) ~[feign-core-9.5.0.jar:?] at feign.SynchronousMethodHandler.invoke(SynchronousMethodHandler.java:76) ~[feign-core-9.5.0.jar:?] at feign.hystrix.HystrixInvocationHandler$1.run(HystrixInvocationHandler.java:108) ~[feign-hystrix-9.5.0.jar:?] at com.netflix.hystrix.HystrixCommand$2.call(HystrixCommand.java:302) ~[hystrix-core-1.5.12.jar:1.5.12] at com.netflix.hystrix.HystrixCommand$2.call(HystrixCommand.java:298) ~[hystrix-core-1.5.12.jar:1.5.12] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:46) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:35) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.Observable.unsafeSubscribe(Observable.java:10151) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:51) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:35) ~[rxjava-1.2.0.jar:1.2.0] at rx.Observable.unsafeSubscribe(Observable.java:10151) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDoOnEach.call(OnSubscribeDoOnEach.java:41) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDoOnEach.call(OnSubscribeDoOnEach.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.Observable.unsafeSubscribe(Observable.java:10151) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OperatorSubscribeOn$1.call(OperatorSubscribeOn.java:94) ~[rxjava-1.2.0.jar:1.2.0] at com.netflix.hystrix.strategy.concurrency.HystrixContexSchedulerAction$1.call(HystrixContexSchedulerAction.java:56) ~[hystrix-core-1.5.12.jar:1.5.12] at com.netflix.hystrix.strategy.concurrency.HystrixContexSchedulerAction$1.call(HystrixContexSchedulerAction.java:47) ~[hystrix-core-1.5.12.jar:1.5.12] at com.netflix.hystrix.strategy.concurrency.HystrixContexSchedulerAction.call(HystrixContexSchedulerAction.java:69) ~[hystrix-core-1.5.12.jar:1.5.12] at rx.internal.schedulers.ScheduledAction.run(ScheduledAction.java:55) ~[rxjava-1.2.0.jar:1.2.0] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[?:1.8.0_144] at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) ~[?:1.8.0_144] at java.util.concurrent.FutureTask.run(FutureTask.java) ~[?:1.8.0_144] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[?:1.8.0_144] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[?:1.8.0_144] ... 1 more 2019-08-29 22:34:32,262 ERROR http-nio-8080-exec-6 org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/api].[dispatcherServlet] 181: Servlet.service() for servlet [dispatcherServlet] in context with path [/api] threw exception [Request processing failed; nested exception is com.netflix.hystrix.exception.HystrixRuntimeException: InterfaceService#getInterfaceDetail(String,String,Integer,String,String) failed and no fallback available.] with root cause com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot construct instance of `org.apache.dubbo.metadata.definition.model.TypeDefinition` (although at least one Creator exists): cannot deserialize from Object value (no delegate- or property-based Creator) at [Source: (PushbackInputStream); line: 1, column: 6583] (through reference chain: com.zzc.web.common.dubbo.model.dto.InterfaceDetailDTO[&quot;metadata&quot;]-&gt;org.apache.dubbo.metadata.definition.model.FullServiceDefinition[&quot;types&quot;]-&gt;java.util.ArrayList[0]) at com.fasterxml.jackson.databind.exc.MismatchedInputException.from(MismatchedInputException.java:63) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.DeserializationContext.reportInputMismatch(DeserializationContext.java:1342) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.DeserializationContext.handleMissingInstantiator(DeserializationContext.java:1031) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.BeanDeserializerBase.deserializeFromObjectUsingNonDefault(BeanDeserializerBase.java:1290) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserializeFromObject(BeanDeserializer.java:326) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:159) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(CollectionDeserializer.java:286) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(CollectionDeserializer.java:245) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(CollectionDeserializer.java:27) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.impl.MethodProperty.deserializeAndSet(MethodProperty.java:127) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserializeFromObject(BeanDeserializer.java:369) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:159) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.impl.MethodProperty.deserializeAndSet(MethodProperty.java:127) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserializeFromObject(BeanDeserializer.java:369) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:159) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:4001) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:3072) ~[jackson-databind-2.9.4.jar:2.9.4] at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.readJavaType(AbstractJackson2HttpMessageConverter.java:235) ~[spring-web-4.3.13.RELEASE.jar:4.3.13.RELEASE] at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.read(AbstractJackson2HttpMessageConverter.java:223) ~[spring-web-4.3.13.RELEASE.jar:4.3.13.RELEASE] at org.springframework.web.client.HttpMessageConverterExtractor.extractData(HttpMessageConverterExtractor.java:96) ~[spring-web-4.3.13.RELEASE.jar:4.3.13.RELEASE] at org.springframework.cloud.netflix.feign.support.SpringDecoder.decode(SpringDecoder.java:59) ~[spring-cloud-netflix-core-1.4.6.RELEASE.jar:1.4.6.RELEASE] at org.springframework.cloud.netflix.feign.support.ResponseEntityDecoder.decode(ResponseEntityDecoder.java:45) ~[spring-cloud-netflix-core-1.4.6.RELEASE.jar:1.4.6.RELEASE] at feign.SynchronousMethodHandler.decode(SynchronousMethodHandler.java:165) ~[feign-core-9.5.0.jar:?] at feign.SynchronousMethodHandler.executeAndDecode(SynchronousMethodHandler.java:133) ~[feign-core-9.5.0.jar:?] at feign.SynchronousMethodHandler.invoke(SynchronousMethodHandler.java:76) ~[feign-core-9.5.0.jar:?] at feign.hystrix.HystrixInvocationHandler$1.run(HystrixInvocationHandler.java:108) ~[feign-hystrix-9.5.0.jar:?] at com.netflix.hystrix.HystrixCommand$2.call(HystrixCommand.java:302) ~[hystrix-core-1.5.12.jar:1.5.12] at com.netflix.hystrix.HystrixCommand$2.call(HystrixCommand.java:298) ~[hystrix-core-1.5.12.jar:1.5.12] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:46) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:35) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.Observable.unsafeSubscribe(Observable.java:10151) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:51) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:35) ~[rxjava-1.2.0.jar:1.2.0] at rx.Observable.unsafeSubscribe(Observable.java:10151) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDoOnEach.call(OnSubscribeDoOnEach.java:41) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDoOnEach.call(OnSubscribeDoOnEach.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.Observable.unsafeSubscribe(Observable.java:10151) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OperatorSubscribeOn$1.call(OperatorSubscribeOn.java:94) ~[rxjava-1.2.0.jar:1.2.0] at com.netflix.hystrix.strategy.concurrency.HystrixContexSchedulerAction$1.call(HystrixContexSchedulerAction.java:56) ~[hystrix-core-1.5.12.jar:1.5.12] at com.netflix.hystrix.strategy.concurrency.HystrixContexSchedulerAction$1.call(HystrixContexSchedulerAction.java:47) ~[hystrix-core-1.5.12.jar:1.5.12] at com.netflix.hystrix.strategy.concurrency.HystrixContexSchedulerAction.call(HystrixContexSchedulerAction.java:69) ~[hystrix-core-1.5.12.jar:1.5.12] at rx.internal.schedulers.ScheduledAction.run(ScheduledAction.java:55) ~[rxjava-1.2.0.jar:1.2.0] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[?:1.8.0_144] at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) ~[?:1.8.0_144] at java.util.concurrent.FutureTask.run(FutureTask.java) ~[?:1.8.0_144] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[?:1.8.0_144] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[?:1.8.0_144] at java.lang.Thread.run(Thread.java:748) [?:1.8.0_144] "><pre class="notranslate"><code class="notranslate"> Caused by: feign.codec.DecodeException: JSON parse error: Cannot construct instance of `org.apache.dubbo.metadata.definition.model.TypeDefinition` (although at least one Creator exists): cannot deserialize from Object value (no delegate- or property-based Creator); nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot construct instance of `org.apache.dubbo.metadata.definition.model.TypeDefinition` (although at least one Creator exists): cannot deserialize from Object value (no delegate- or property-based Creator) at [Source: (PushbackInputStream); line: 1, column: 6583] (through reference chain: com.zzc.web.common.dubbo.model.dto.InterfaceDetailDTO["metadata"]-&gt;org.apache.dubbo.metadata.definition.model.FullServiceDefinition["types"]-&gt;java.util.ArrayList[0]) at feign.SynchronousMethodHandler.decode(SynchronousMethodHandler.java:169) ~[feign-core-9.5.0.jar:?] at feign.SynchronousMethodHandler.executeAndDecode(SynchronousMethodHandler.java:133) ~[feign-core-9.5.0.jar:?] at feign.SynchronousMethodHandler.invoke(SynchronousMethodHandler.java:76) ~[feign-core-9.5.0.jar:?] at feign.hystrix.HystrixInvocationHandler$1.run(HystrixInvocationHandler.java:108) ~[feign-hystrix-9.5.0.jar:?] at com.netflix.hystrix.HystrixCommand$2.call(HystrixCommand.java:302) ~[hystrix-core-1.5.12.jar:1.5.12] at com.netflix.hystrix.HystrixCommand$2.call(HystrixCommand.java:298) ~[hystrix-core-1.5.12.jar:1.5.12] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:46) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:35) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.Observable.unsafeSubscribe(Observable.java:10151) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:51) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:35) ~[rxjava-1.2.0.jar:1.2.0] at rx.Observable.unsafeSubscribe(Observable.java:10151) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDoOnEach.call(OnSubscribeDoOnEach.java:41) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDoOnEach.call(OnSubscribeDoOnEach.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.Observable.unsafeSubscribe(Observable.java:10151) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OperatorSubscribeOn$1.call(OperatorSubscribeOn.java:94) ~[rxjava-1.2.0.jar:1.2.0] at com.netflix.hystrix.strategy.concurrency.HystrixContexSchedulerAction$1.call(HystrixContexSchedulerAction.java:56) ~[hystrix-core-1.5.12.jar:1.5.12] at com.netflix.hystrix.strategy.concurrency.HystrixContexSchedulerAction$1.call(HystrixContexSchedulerAction.java:47) ~[hystrix-core-1.5.12.jar:1.5.12] at com.netflix.hystrix.strategy.concurrency.HystrixContexSchedulerAction.call(HystrixContexSchedulerAction.java:69) ~[hystrix-core-1.5.12.jar:1.5.12] at rx.internal.schedulers.ScheduledAction.run(ScheduledAction.java:55) ~[rxjava-1.2.0.jar:1.2.0] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[?:1.8.0_144] at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) ~[?:1.8.0_144] at java.util.concurrent.FutureTask.run(FutureTask.java) ~[?:1.8.0_144] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[?:1.8.0_144] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[?:1.8.0_144] ... 1 more Caused by: org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Cannot construct instance of `org.apache.dubbo.metadata.definition.model.TypeDefinition` (although at least one Creator exists): cannot deserialize from Object value (no delegate- or property-based Creator); nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot construct instance of `org.apache.dubbo.metadata.definition.model.TypeDefinition` (although at least one Creator exists): cannot deserialize from Object value (no delegate- or property-based Creator) at [Source: (PushbackInputStream); line: 1, column: 6583] (through reference chain: com.zzc.web.common.dubbo.model.dto.InterfaceDetailDTO["metadata"]-&gt;org.apache.dubbo.metadata.definition.model.FullServiceDefinition["types"]-&gt;java.util.ArrayList[0]) at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.readJavaType(AbstractJackson2HttpMessageConverter.java:238) ~[spring-web-4.3.13.RELEASE.jar:4.3.13.RELEASE] at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.read(AbstractJackson2HttpMessageConverter.java:223) ~[spring-web-4.3.13.RELEASE.jar:4.3.13.RELEASE] at org.springframework.web.client.HttpMessageConverterExtractor.extractData(HttpMessageConverterExtractor.java:96) ~[spring-web-4.3.13.RELEASE.jar:4.3.13.RELEASE] at org.springframework.cloud.netflix.feign.support.SpringDecoder.decode(SpringDecoder.java:59) ~[spring-cloud-netflix-core-1.4.6.RELEASE.jar:1.4.6.RELEASE] at org.springframework.cloud.netflix.feign.support.ResponseEntityDecoder.decode(ResponseEntityDecoder.java:45) ~[spring-cloud-netflix-core-1.4.6.RELEASE.jar:1.4.6.RELEASE] at feign.SynchronousMethodHandler.decode(SynchronousMethodHandler.java:165) ~[feign-core-9.5.0.jar:?] at feign.SynchronousMethodHandler.executeAndDecode(SynchronousMethodHandler.java:133) ~[feign-core-9.5.0.jar:?] at feign.SynchronousMethodHandler.invoke(SynchronousMethodHandler.java:76) ~[feign-core-9.5.0.jar:?] at feign.hystrix.HystrixInvocationHandler$1.run(HystrixInvocationHandler.java:108) ~[feign-hystrix-9.5.0.jar:?] at com.netflix.hystrix.HystrixCommand$2.call(HystrixCommand.java:302) ~[hystrix-core-1.5.12.jar:1.5.12] at com.netflix.hystrix.HystrixCommand$2.call(HystrixCommand.java:298) ~[hystrix-core-1.5.12.jar:1.5.12] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:46) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:35) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.Observable.unsafeSubscribe(Observable.java:10151) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:51) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:35) ~[rxjava-1.2.0.jar:1.2.0] at rx.Observable.unsafeSubscribe(Observable.java:10151) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDoOnEach.call(OnSubscribeDoOnEach.java:41) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDoOnEach.call(OnSubscribeDoOnEach.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.Observable.unsafeSubscribe(Observable.java:10151) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OperatorSubscribeOn$1.call(OperatorSubscribeOn.java:94) ~[rxjava-1.2.0.jar:1.2.0] at com.netflix.hystrix.strategy.concurrency.HystrixContexSchedulerAction$1.call(HystrixContexSchedulerAction.java:56) ~[hystrix-core-1.5.12.jar:1.5.12] at com.netflix.hystrix.strategy.concurrency.HystrixContexSchedulerAction$1.call(HystrixContexSchedulerAction.java:47) ~[hystrix-core-1.5.12.jar:1.5.12] at com.netflix.hystrix.strategy.concurrency.HystrixContexSchedulerAction.call(HystrixContexSchedulerAction.java:69) ~[hystrix-core-1.5.12.jar:1.5.12] at rx.internal.schedulers.ScheduledAction.run(ScheduledAction.java:55) ~[rxjava-1.2.0.jar:1.2.0] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[?:1.8.0_144] at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) ~[?:1.8.0_144] at java.util.concurrent.FutureTask.run(FutureTask.java) ~[?:1.8.0_144] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[?:1.8.0_144] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[?:1.8.0_144] ... 1 more Caused by: com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot construct instance of `org.apache.dubbo.metadata.definition.model.TypeDefinition` (although at least one Creator exists): cannot deserialize from Object value (no delegate- or property-based Creator) at [Source: (PushbackInputStream); line: 1, column: 6583] (through reference chain: com.zzc.web.common.dubbo.model.dto.InterfaceDetailDTO["metadata"]-&gt;org.apache.dubbo.metadata.definition.model.FullServiceDefinition["types"]-&gt;java.util.ArrayList[0]) at com.fasterxml.jackson.databind.exc.MismatchedInputException.from(MismatchedInputException.java:63) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.DeserializationContext.reportInputMismatch(DeserializationContext.java:1342) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.DeserializationContext.handleMissingInstantiator(DeserializationContext.java:1031) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.BeanDeserializerBase.deserializeFromObjectUsingNonDefault(BeanDeserializerBase.java:1290) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserializeFromObject(BeanDeserializer.java:326) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:159) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(CollectionDeserializer.java:286) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(CollectionDeserializer.java:245) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(CollectionDeserializer.java:27) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.impl.MethodProperty.deserializeAndSet(MethodProperty.java:127) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserializeFromObject(BeanDeserializer.java:369) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:159) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.impl.MethodProperty.deserializeAndSet(MethodProperty.java:127) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserializeFromObject(BeanDeserializer.java:369) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:159) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:4001) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:3072) ~[jackson-databind-2.9.4.jar:2.9.4] at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.readJavaType(AbstractJackson2HttpMessageConverter.java:235) ~[spring-web-4.3.13.RELEASE.jar:4.3.13.RELEASE] at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.read(AbstractJackson2HttpMessageConverter.java:223) ~[spring-web-4.3.13.RELEASE.jar:4.3.13.RELEASE] at org.springframework.web.client.HttpMessageConverterExtractor.extractData(HttpMessageConverterExtractor.java:96) ~[spring-web-4.3.13.RELEASE.jar:4.3.13.RELEASE] at org.springframework.cloud.netflix.feign.support.SpringDecoder.decode(SpringDecoder.java:59) ~[spring-cloud-netflix-core-1.4.6.RELEASE.jar:1.4.6.RELEASE] at org.springframework.cloud.netflix.feign.support.ResponseEntityDecoder.decode(ResponseEntityDecoder.java:45) ~[spring-cloud-netflix-core-1.4.6.RELEASE.jar:1.4.6.RELEASE] at feign.SynchronousMethodHandler.decode(SynchronousMethodHandler.java:165) ~[feign-core-9.5.0.jar:?] at feign.SynchronousMethodHandler.executeAndDecode(SynchronousMethodHandler.java:133) ~[feign-core-9.5.0.jar:?] at feign.SynchronousMethodHandler.invoke(SynchronousMethodHandler.java:76) ~[feign-core-9.5.0.jar:?] at feign.hystrix.HystrixInvocationHandler$1.run(HystrixInvocationHandler.java:108) ~[feign-hystrix-9.5.0.jar:?] at com.netflix.hystrix.HystrixCommand$2.call(HystrixCommand.java:302) ~[hystrix-core-1.5.12.jar:1.5.12] at com.netflix.hystrix.HystrixCommand$2.call(HystrixCommand.java:298) ~[hystrix-core-1.5.12.jar:1.5.12] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:46) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:35) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.Observable.unsafeSubscribe(Observable.java:10151) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:51) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:35) ~[rxjava-1.2.0.jar:1.2.0] at rx.Observable.unsafeSubscribe(Observable.java:10151) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDoOnEach.call(OnSubscribeDoOnEach.java:41) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDoOnEach.call(OnSubscribeDoOnEach.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.Observable.unsafeSubscribe(Observable.java:10151) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OperatorSubscribeOn$1.call(OperatorSubscribeOn.java:94) ~[rxjava-1.2.0.jar:1.2.0] at com.netflix.hystrix.strategy.concurrency.HystrixContexSchedulerAction$1.call(HystrixContexSchedulerAction.java:56) ~[hystrix-core-1.5.12.jar:1.5.12] at com.netflix.hystrix.strategy.concurrency.HystrixContexSchedulerAction$1.call(HystrixContexSchedulerAction.java:47) ~[hystrix-core-1.5.12.jar:1.5.12] at com.netflix.hystrix.strategy.concurrency.HystrixContexSchedulerAction.call(HystrixContexSchedulerAction.java:69) ~[hystrix-core-1.5.12.jar:1.5.12] at rx.internal.schedulers.ScheduledAction.run(ScheduledAction.java:55) ~[rxjava-1.2.0.jar:1.2.0] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[?:1.8.0_144] at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) ~[?:1.8.0_144] at java.util.concurrent.FutureTask.run(FutureTask.java) ~[?:1.8.0_144] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[?:1.8.0_144] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[?:1.8.0_144] ... 1 more 2019-08-29 22:34:32,262 ERROR http-nio-8080-exec-6 org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/api].[dispatcherServlet] 181: Servlet.service() for servlet [dispatcherServlet] in context with path [/api] threw exception [Request processing failed; nested exception is com.netflix.hystrix.exception.HystrixRuntimeException: InterfaceService#getInterfaceDetail(String,String,Integer,String,String) failed and no fallback available.] with root cause com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot construct instance of `org.apache.dubbo.metadata.definition.model.TypeDefinition` (although at least one Creator exists): cannot deserialize from Object value (no delegate- or property-based Creator) at [Source: (PushbackInputStream); line: 1, column: 6583] (through reference chain: com.zzc.web.common.dubbo.model.dto.InterfaceDetailDTO["metadata"]-&gt;org.apache.dubbo.metadata.definition.model.FullServiceDefinition["types"]-&gt;java.util.ArrayList[0]) at com.fasterxml.jackson.databind.exc.MismatchedInputException.from(MismatchedInputException.java:63) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.DeserializationContext.reportInputMismatch(DeserializationContext.java:1342) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.DeserializationContext.handleMissingInstantiator(DeserializationContext.java:1031) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.BeanDeserializerBase.deserializeFromObjectUsingNonDefault(BeanDeserializerBase.java:1290) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserializeFromObject(BeanDeserializer.java:326) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:159) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(CollectionDeserializer.java:286) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(CollectionDeserializer.java:245) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(CollectionDeserializer.java:27) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.impl.MethodProperty.deserializeAndSet(MethodProperty.java:127) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserializeFromObject(BeanDeserializer.java:369) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:159) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.impl.MethodProperty.deserializeAndSet(MethodProperty.java:127) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserializeFromObject(BeanDeserializer.java:369) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:159) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:4001) ~[jackson-databind-2.9.4.jar:2.9.4] at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:3072) ~[jackson-databind-2.9.4.jar:2.9.4] at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.readJavaType(AbstractJackson2HttpMessageConverter.java:235) ~[spring-web-4.3.13.RELEASE.jar:4.3.13.RELEASE] at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.read(AbstractJackson2HttpMessageConverter.java:223) ~[spring-web-4.3.13.RELEASE.jar:4.3.13.RELEASE] at org.springframework.web.client.HttpMessageConverterExtractor.extractData(HttpMessageConverterExtractor.java:96) ~[spring-web-4.3.13.RELEASE.jar:4.3.13.RELEASE] at org.springframework.cloud.netflix.feign.support.SpringDecoder.decode(SpringDecoder.java:59) ~[spring-cloud-netflix-core-1.4.6.RELEASE.jar:1.4.6.RELEASE] at org.springframework.cloud.netflix.feign.support.ResponseEntityDecoder.decode(ResponseEntityDecoder.java:45) ~[spring-cloud-netflix-core-1.4.6.RELEASE.jar:1.4.6.RELEASE] at feign.SynchronousMethodHandler.decode(SynchronousMethodHandler.java:165) ~[feign-core-9.5.0.jar:?] at feign.SynchronousMethodHandler.executeAndDecode(SynchronousMethodHandler.java:133) ~[feign-core-9.5.0.jar:?] at feign.SynchronousMethodHandler.invoke(SynchronousMethodHandler.java:76) ~[feign-core-9.5.0.jar:?] at feign.hystrix.HystrixInvocationHandler$1.run(HystrixInvocationHandler.java:108) ~[feign-hystrix-9.5.0.jar:?] at com.netflix.hystrix.HystrixCommand$2.call(HystrixCommand.java:302) ~[hystrix-core-1.5.12.jar:1.5.12] at com.netflix.hystrix.HystrixCommand$2.call(HystrixCommand.java:298) ~[hystrix-core-1.5.12.jar:1.5.12] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:46) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:35) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.Observable.unsafeSubscribe(Observable.java:10151) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:51) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDefer.call(OnSubscribeDefer.java:35) ~[rxjava-1.2.0.jar:1.2.0] at rx.Observable.unsafeSubscribe(Observable.java:10151) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDoOnEach.call(OnSubscribeDoOnEach.java:41) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeDoOnEach.call(OnSubscribeDoOnEach.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:48) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) ~[rxjava-1.2.0.jar:1.2.0] at rx.Observable.unsafeSubscribe(Observable.java:10151) ~[rxjava-1.2.0.jar:1.2.0] at rx.internal.operators.OperatorSubscribeOn$1.call(OperatorSubscribeOn.java:94) ~[rxjava-1.2.0.jar:1.2.0] at com.netflix.hystrix.strategy.concurrency.HystrixContexSchedulerAction$1.call(HystrixContexSchedulerAction.java:56) ~[hystrix-core-1.5.12.jar:1.5.12] at com.netflix.hystrix.strategy.concurrency.HystrixContexSchedulerAction$1.call(HystrixContexSchedulerAction.java:47) ~[hystrix-core-1.5.12.jar:1.5.12] at com.netflix.hystrix.strategy.concurrency.HystrixContexSchedulerAction.call(HystrixContexSchedulerAction.java:69) ~[hystrix-core-1.5.12.jar:1.5.12] at rx.internal.schedulers.ScheduledAction.run(ScheduledAction.java:55) ~[rxjava-1.2.0.jar:1.2.0] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[?:1.8.0_144] at java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:266) ~[?:1.8.0_144] at java.util.concurrent.FutureTask.run(FutureTask.java) ~[?:1.8.0_144] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[?:1.8.0_144] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[?:1.8.0_144] at java.lang.Thread.run(Thread.java:748) [?:1.8.0_144] </code></pre></div>
0
<p dir="auto">From <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/henryon/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/henryon">@henryon</a> on 2016-09-13T10:01:51Z</p> <h5 dir="auto">ISSUE TYPE</h5> <ul dir="auto"> <li>Bug Report</li> </ul> <h5 dir="auto">COMPONENT NAME</h5> <p dir="auto">shell module</p> <h5 dir="auto">ANSIBLE VERSION</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.1.1.0 config file = configured module search path = Default w/o overrides"><pre class="notranslate"><code class="notranslate">ansible 2.1.1.0 config file = configured module search path = Default w/o overrides </code></pre></div> <h5 dir="auto">CONFIGURATION</h5> <p dir="auto">roles_path = ./roles<br> callback_plugins = ./plugins/callback_plugins<br> lookup_plugins = ./plugins/lookup_plugins<br> inventory = inventory<br> gathering = smart</p> <h5 dir="auto">OS / ENVIRONMENT</h5> <p dir="auto">Mac OS EI 10.11.3</p> <h5 dir="auto">SUMMARY</h5> <p dir="auto">The script works on ansible 1.9.1 while 2.1.1.0 doesn't work. I've no idea about this?</p> <h5 dir="auto">STEPS TO REPRODUCE</h5> <p dir="auto">ansible-playbook playbooks/sample.yml</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- name: Download AWS Security Group hosts: localhost connection: local gather_facts: False tasks: - shell: ../roles/script/files/test.py &gt; /tmp/test.yml"><pre class="notranslate"><code class="notranslate">- name: Download AWS Security Group hosts: localhost connection: local gather_facts: False tasks: - shell: ../roles/script/files/test.py &gt; /tmp/test.yml </code></pre></div> <p dir="auto">the ../roles/script/files/test.py has below information</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# !/usr/bin/env python import os print os.path"><pre class="notranslate"><code class="notranslate"># !/usr/bin/env python import os print os.path </code></pre></div> <h5 dir="auto">EXPECTED RESULTS</h5> <p dir="auto">The python script should work in 2.1.1.0</p> <h5 dir="auto">ACTUAL RESULTS</h5> <p dir="auto">It's failed.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="TASK [command] ***************************************************************** task path: /Users/Test/production/ansible/playbooks/security-group.yml:6 &lt;127.0.0.1&gt; ESTABLISH LOCAL CONNECTION FOR USER: HenryWen &lt;127.0.0.1&gt; EXEC /bin/sh -c '( umask 77 &amp;&amp; mkdir -p &quot;` echo $HOME/.ansible/tmp/ansible-tmp-1473759673.83-249336867857451 `&quot; &amp;&amp; echo ansible-tmp-1473759673.83-249336867857451=&quot;` echo $HOME/.ansible/tmp/ansible-tmp-1473759673.83-249336867857451 `&quot; ) &amp;&amp; sleep 0' &lt;127.0.0.1&gt; PUT /var/folders/st/7gf56xv52jn97pthscx8sdw00000gn/T/tmp35KP0I TO /Users/Test/.ansible/tmp/ansible-tmp-1473759673.83-249336867857451/command &lt;127.0.0.1&gt; EXEC /bin/sh -c 'LANG=zh_CN.UTF-8 LC_ALL=zh_CN.UTF-8 LC_MESSAGES=zh_CN.UTF-8 /usr/bin/python /Users/Test/.ansible/tmp/ansible-tmp-1473759673.83-249336867857451/command; rm -rf &quot;/Users/Test/.ansible/tmp/ansible-tmp-1473759673.83-249336867857451/&quot; &gt; /dev/null 2&gt;&amp;1 &amp;&amp; sleep 0' fatal: [localhost]: FAILED! =&gt; {&quot;changed&quot;: true, &quot;cmd&quot;: &quot;../roles/script/files/test.py &gt; /tmp/security_groups.yml&quot;, &quot;delta&quot;: &quot;0:00:00.004941&quot;, &quot;end&quot;: &quot;2016-09-13 17:41:13.979999&quot;, &quot;failed&quot;: true, &quot;invocation&quot;: {&quot;module_args&quot;: {&quot;_raw_params&quot;: &quot;../roles/script/files/test.py &gt; /tmp/test.yml&quot;, &quot;_uses_shell&quot;: true, &quot;chdir&quot;: null, &quot;creates&quot;: null, &quot;executable&quot;: null, &quot;removes&quot;: null, &quot;warn&quot;: true}, &quot;module_name&quot;: &quot;command&quot;}, &quot;rc&quot;: 127, &quot;start&quot;: &quot;2016-09-13 17:41:13.975058&quot;, &quot;stderr&quot;: &quot;/bin/sh: ../roles/script/files/test .py: No such file or directory&quot;, &quot;stdout&quot;: &quot;&quot;, &quot;stdout_lines&quot;: [], &quot;warnings&quot;: []}"><pre class="notranslate"><code class="notranslate">TASK [command] ***************************************************************** task path: /Users/Test/production/ansible/playbooks/security-group.yml:6 &lt;127.0.0.1&gt; ESTABLISH LOCAL CONNECTION FOR USER: HenryWen &lt;127.0.0.1&gt; EXEC /bin/sh -c '( umask 77 &amp;&amp; mkdir -p "` echo $HOME/.ansible/tmp/ansible-tmp-1473759673.83-249336867857451 `" &amp;&amp; echo ansible-tmp-1473759673.83-249336867857451="` echo $HOME/.ansible/tmp/ansible-tmp-1473759673.83-249336867857451 `" ) &amp;&amp; sleep 0' &lt;127.0.0.1&gt; PUT /var/folders/st/7gf56xv52jn97pthscx8sdw00000gn/T/tmp35KP0I TO /Users/Test/.ansible/tmp/ansible-tmp-1473759673.83-249336867857451/command &lt;127.0.0.1&gt; EXEC /bin/sh -c 'LANG=zh_CN.UTF-8 LC_ALL=zh_CN.UTF-8 LC_MESSAGES=zh_CN.UTF-8 /usr/bin/python /Users/Test/.ansible/tmp/ansible-tmp-1473759673.83-249336867857451/command; rm -rf "/Users/Test/.ansible/tmp/ansible-tmp-1473759673.83-249336867857451/" &gt; /dev/null 2&gt;&amp;1 &amp;&amp; sleep 0' fatal: [localhost]: FAILED! =&gt; {"changed": true, "cmd": "../roles/script/files/test.py &gt; /tmp/security_groups.yml", "delta": "0:00:00.004941", "end": "2016-09-13 17:41:13.979999", "failed": true, "invocation": {"module_args": {"_raw_params": "../roles/script/files/test.py &gt; /tmp/test.yml", "_uses_shell": true, "chdir": null, "creates": null, "executable": null, "removes": null, "warn": true}, "module_name": "command"}, "rc": 127, "start": "2016-09-13 17:41:13.975058", "stderr": "/bin/sh: ../roles/script/files/test .py: No such file or directory", "stdout": "", "stdout_lines": [], "warnings": []} </code></pre></div> <p dir="auto">Copied from original issue: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="176599614" data-permission-text="Title is private" data-url="https://github.com/ansible/ansible-modules-core/issues/4806" data-hovercard-type="issue" data-hovercard-url="/ansible/ansible-modules-core/issues/4806/hovercard" href="https://github.com/ansible/ansible-modules-core/issues/4806">ansible/ansible-modules-core#4806</a></p>
<h5 dir="auto">ISSUE TYPE</h5> <ul dir="auto"> <li>Bug Report</li> </ul> <h5 dir="auto">COMPONENT NAME</h5> <p dir="auto">core</p> <h5 dir="auto">ANSIBLE VERSION</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="2.1.0.0"><pre class="notranslate"><code class="notranslate">2.1.0.0 </code></pre></div> <h5 dir="auto">CONFIGURATION</h5> <p dir="auto">hash_behaviour = merge</p> <h5 dir="auto">OS / ENVIRONMENT</h5> <p dir="auto">Ubuntu 14.04.1</p> <h5 dir="auto">SUMMARY</h5> <p dir="auto">If my delegated host not match limit delegated host_vars are not loaded.</p> <h5 dir="auto">STEPS TO REPRODUCE</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" --- - hosts: webserver tasks: - raw: echo toto delegate_to: windows_server"><pre class="notranslate"><code class="notranslate"> --- - hosts: webserver tasks: - raw: echo toto delegate_to: windows_server </code></pre></div> <p dir="auto">host_vars/windows_server</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible_connection: winrm ansible_password: password ansible_user: user"><pre class="notranslate"><code class="notranslate">ansible_connection: winrm ansible_password: password ansible_user: user </code></pre></div> <h5 dir="auto">EXPECTED RESULTS</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible-playbook -u user --limit=webserver:windows_server -k test.yml PLAYBOOK: test.yml ********************************************************* 1 plays in test.yml PLAY [echo toto ****************************************** TASK [setup] ******************************************************************* ok: [webserver] TASK [echo toto] ****************************************************** ok: [webserver-&gt; windows_server] =&gt; {&quot;changed&quot;: false, &quot;invocation&quot;: {&quot;module_args&quot;: {&quot;_raw_params&quot;: &quot;echo toto&quot;}, &quot;module_name&quot;: &quot;raw&quot;}, &quot;rc&quot;: 0, &quot;stderr&quot;: &quot;#&lt; CLIXML\r\n&lt;Objs Version=\&quot;1.1.0.1\&quot; xmlns=\&quot;http://schemas.microsoft.com/powershell/2004/04\&quot;&gt;&lt;Obj S=\&quot;progress\&quot; RefId=\&quot;0\&quot;&gt;&lt;TN RefId=\&quot;0\&quot;&gt;&lt;T&gt;System.Management.Automation.PSCustomObject&lt;/T&gt;&lt;T&gt;System.Object&lt;/T&gt;&lt;/TN&gt;&lt;MS&gt;&lt;I64 N=\&quot;SourceId\&quot;&gt;1&lt;/I64&gt;&lt;PR N=\&quot;Record\&quot;&gt;&lt;AV&gt;Preparing modules for first use.&lt;/AV&gt;&lt;AI&gt;0&lt;/AI&gt;&lt;Nil /&gt;&lt;PI&gt;-1&lt;/PI&gt;&lt;PC&gt;-1&lt;/PC&gt;&lt;T&gt;Completed&lt;/T&gt;&lt;SR&gt;-1&lt;/SR&gt;&lt;SD&gt; &lt;/SD&gt;&lt;/PR&gt;&lt;/MS&gt;&lt;/Obj&gt;&lt;/Objs&gt;&quot;, &quot;stdout&quot;: &quot;toto\r\n&quot;, &quot;stdout_lines&quot;: [&quot;toto&quot;]} PLAY RECAP ********************************************************************* webserver : ok=2 changed=0 unreachable=0 failed=0 "><pre class="notranslate"><code class="notranslate">ansible-playbook -u user --limit=webserver:windows_server -k test.yml PLAYBOOK: test.yml ********************************************************* 1 plays in test.yml PLAY [echo toto ****************************************** TASK [setup] ******************************************************************* ok: [webserver] TASK [echo toto] ****************************************************** ok: [webserver-&gt; windows_server] =&gt; {"changed": false, "invocation": {"module_args": {"_raw_params": "echo toto"}, "module_name": "raw"}, "rc": 0, "stderr": "#&lt; CLIXML\r\n&lt;Objs Version=\"1.1.0.1\" xmlns=\"http://schemas.microsoft.com/powershell/2004/04\"&gt;&lt;Obj S=\"progress\" RefId=\"0\"&gt;&lt;TN RefId=\"0\"&gt;&lt;T&gt;System.Management.Automation.PSCustomObject&lt;/T&gt;&lt;T&gt;System.Object&lt;/T&gt;&lt;/TN&gt;&lt;MS&gt;&lt;I64 N=\"SourceId\"&gt;1&lt;/I64&gt;&lt;PR N=\"Record\"&gt;&lt;AV&gt;Preparing modules for first use.&lt;/AV&gt;&lt;AI&gt;0&lt;/AI&gt;&lt;Nil /&gt;&lt;PI&gt;-1&lt;/PI&gt;&lt;PC&gt;-1&lt;/PC&gt;&lt;T&gt;Completed&lt;/T&gt;&lt;SR&gt;-1&lt;/SR&gt;&lt;SD&gt; &lt;/SD&gt;&lt;/PR&gt;&lt;/MS&gt;&lt;/Obj&gt;&lt;/Objs&gt;", "stdout": "toto\r\n", "stdout_lines": ["toto"]} PLAY RECAP ********************************************************************* webserver : ok=2 changed=0 unreachable=0 failed=0 </code></pre></div> <h5 dir="auto">ACTUAL RESULTS</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible-playbook -u user --limit=webserver -k test.yml PLAYBOOK: test.yml ********************************************************* 1 plays in test.yml PLAY [echo toto ****************************************** TASK [setup] ******************************************************************* ok: [webserver] TASK [echo toto] ****************************************************** task path: /path/toto.yml:4 &lt;windows_server&gt; ESTABLISH SSH CONNECTION FOR USER: user &lt;windows_server&gt; SSH: ansible.cfg set ssh_args: (-o)(ServerAliveCountMax=10)(-o)(ServerAliveInterval=30) &lt;windows_server&gt; SSH: ANSIBLE_HOST_KEY_CHECKING/host_key_checking disabled: (-o)(StrictHostKeyChecking=no) &lt;windows_server&gt; SSH: ANSIBLE_REMOTE_USER/remote_user/ansible_user/user/-u set: (-o)(User=user) &lt;windows_server&gt; SSH: ANSIBLE_TIMEOUT/timeout set: (-o)(ConnectTimeout=20) &lt;windows_server&gt; SSH: PlayContext set ssh_common_args: () &lt;windows_server&gt; SSH: PlayContext set ssh_extra_args: () &lt;windows_server&gt; SSH: EXEC sshpass -d19 ssh -C -vvv -o ServerAliveCountMax=10 -o ServerAliveInterval=30 -o StrictHostKeyChecking=no -o User=user -o ConnectTimeout=20 -tt windows_server '/bin/sh -c '&quot;'&quot;'echo toto &amp;&amp; sleep 0'&quot;'&quot;'' fatal: [webserver]: UNREACHABLE! =&gt; {&quot;changed&quot;: false, &quot;msg&quot;: &quot;Failed to connect to the host via ssh.&quot;, &quot;unreachable&quot;: true} to retry, use: --limit @test.retry PLAY RECAP ********************************************************************* webserver : ok=1 changed=0 unreachable=1 failed=0"><pre class="notranslate"><code class="notranslate">ansible-playbook -u user --limit=webserver -k test.yml PLAYBOOK: test.yml ********************************************************* 1 plays in test.yml PLAY [echo toto ****************************************** TASK [setup] ******************************************************************* ok: [webserver] TASK [echo toto] ****************************************************** task path: /path/toto.yml:4 &lt;windows_server&gt; ESTABLISH SSH CONNECTION FOR USER: user &lt;windows_server&gt; SSH: ansible.cfg set ssh_args: (-o)(ServerAliveCountMax=10)(-o)(ServerAliveInterval=30) &lt;windows_server&gt; SSH: ANSIBLE_HOST_KEY_CHECKING/host_key_checking disabled: (-o)(StrictHostKeyChecking=no) &lt;windows_server&gt; SSH: ANSIBLE_REMOTE_USER/remote_user/ansible_user/user/-u set: (-o)(User=user) &lt;windows_server&gt; SSH: ANSIBLE_TIMEOUT/timeout set: (-o)(ConnectTimeout=20) &lt;windows_server&gt; SSH: PlayContext set ssh_common_args: () &lt;windows_server&gt; SSH: PlayContext set ssh_extra_args: () &lt;windows_server&gt; SSH: EXEC sshpass -d19 ssh -C -vvv -o ServerAliveCountMax=10 -o ServerAliveInterval=30 -o StrictHostKeyChecking=no -o User=user -o ConnectTimeout=20 -tt windows_server '/bin/sh -c '"'"'echo toto &amp;&amp; sleep 0'"'"'' fatal: [webserver]: UNREACHABLE! =&gt; {"changed": false, "msg": "Failed to connect to the host via ssh.", "unreachable": true} to retry, use: --limit @test.retry PLAY RECAP ********************************************************************* webserver : ok=1 changed=0 unreachable=1 failed=0 </code></pre></div>
0
<p dir="auto">I have a DaemonSet configured as follows:</p> <p dir="auto"><code class="notranslate">daemonset.yaml</code></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="apiVersion: extensions/v1beta1 kind: DaemonSet metadata: name: bugreport-daemonset spec: template: metadata: labels: app: bugreport spec: containers: - name: bugreport-container image: gcr.io/bug-project/testcontainer:tag0 imagePullPolicy: Always ports: - containerPort: 80"><pre class="notranslate"><code class="notranslate">apiVersion: extensions/v1beta1 kind: DaemonSet metadata: name: bugreport-daemonset spec: template: metadata: labels: app: bugreport spec: containers: - name: bugreport-container image: gcr.io/bug-project/testcontainer:tag0 imagePullPolicy: Always ports: - containerPort: 80 </code></pre></div> <p dir="auto">When I run <code class="notranslate">kubectl apply -f daemonset.yaml</code> i can see the pods running on each node.</p> <p dir="auto">But if I change the image to <code class="notranslate">gcr.io/bug-project/testcontainer:tag1</code> and then run <code class="notranslate">kubectl apply -f daemonset.yaml</code> again, the pods are never updated with the new container image.</p>
<p dir="auto">Hi,</p> <p dir="auto">Sorry for doing it in the wrong order as mentioned here : <a href="https://github.com/kubernetes/kubernetes/blob/master/CONTRIBUTING.md#contributing-a-patch">https://github.com/kubernetes/kubernetes/blob/master/CONTRIBUTING.md#contributing-a-patch</a></p> <p dir="auto">I did <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="138218358" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/22439" data-hovercard-type="pull_request" data-hovercard-url="/kubernetes/kubernetes/pull/22439/hovercard" href="https://github.com/kubernetes/kubernetes/pull/22439">#22439</a> to address this problem (on kubectl side)</p> <p dir="auto">The need is to be able to update a daemon set in a single command line.<br> Basically it is equivalent to do :</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="kubectl delete -f dsfile --cascade=false kubectl create -f dsfile for pod in pods kubectl delete pod wait for delete"><pre class="notranslate"><code class="notranslate">kubectl delete -f dsfile --cascade=false kubectl create -f dsfile for pod in pods kubectl delete pod wait for delete </code></pre></div> <p dir="auto">EDIT : <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/bgrant0607/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/bgrant0607">@bgrant0607</a> suggested to update the ds instead of delte / recreate</p>
1
<h1 dir="auto">What / Why</h1> <p dir="auto"><code class="notranslate">npm</code> keeps creating its cache directory in my <code class="notranslate">$HOME</code>. I keep very few directories in my <code class="notranslate">$HOME</code> to keep things findable, and its very annoying when apps start littering stuff there.</p> <h2 dir="auto">When</h2> <p dir="auto">Any time I run things like <code class="notranslate">npm install blah</code>.</p> <h2 dir="auto">Where</h2> <div class="highlight highlight-text-shell-session notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ uname -srmo Linux 5.7.2-arch1-1 x86_64 GNU/Linux"><pre class="notranslate">$ <span class="pl-s1">uname -srmo</span> <span class="pl-c1">Linux 5.7.2-arch1-1 x86_64 GNU/Linux</span></pre></div> <h2 dir="auto">How</h2> <h3 dir="auto">Current Behavior</h3> <p dir="auto">A directory is creted in <code class="notranslate">$HOME</code> and cache data stored in there.</p> <h3 dir="auto">Steps to Reproduce</h3> <ol start="0" dir="auto"> <li>Run <code class="notranslate">rm -rf .cache</code> to delete your existing cache.</li> <li>Navigate to a directory with an existing <code class="notranslate">package.json</code>.</li> <li>Run <code class="notranslate">npm install</code>.</li> </ol> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">The cache directory should be in <a href="https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html" rel="nofollow"><code class="notranslate">$XDG_CACHE_HOME</code></a> on Linux. Specifically, it should be <code class="notranslate">$XDG_CACHE_HOME/npm</code>. <code class="notranslate">$XDG_CACHE_HOME</code> should default to <code class="notranslate">.cache</code> if undefined.</p> <p dir="auto">I believe on macOS there's a different spec for default locations, and things like cache are stored in a different place. I don't know the name of the spec so can't easily link in here.</p> <h2 dir="auto">Who</h2> <ul dir="auto"> <li>n/a</li> </ul> <h2 dir="auto">References</h2> <p dir="auto"><a href="https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html" rel="nofollow">XDG Base Directory Specification</a></p>
<h3 dir="auto">Is there an existing issue for this?</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the existing issues</li> </ul> <h3 dir="auto">Current Behavior</h3> <p dir="auto">I'm trying to link 2 packages and I know this worked at some point in the past. The current process is running the following commands one after another</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="npm link guidemaker npm link guidemaker-default-template"><pre class="notranslate"><code class="notranslate">npm link guidemaker npm link guidemaker-default-template </code></pre></div> <p dir="auto">after the first link <code class="notranslate">guidemaker</code> is linked correctly, but after you run the second link it removes the link to <code class="notranslate">guidemaker</code> and only has the link to <code class="notranslate">guidemaker-ember-template</code></p> <p dir="auto">while I was writing this section I wondered if the problem was running them "one after another" and I tried</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="npm link guidemaker guidemaker-default-template"><pre class="notranslate"><code class="notranslate">npm link guidemaker guidemaker-default-template </code></pre></div> <p dir="auto">which happened to work <g-emoji class="g-emoji" alias="see_no_evil" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f648.png">🙈</g-emoji></p> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">I expect that running link twice with two different packages should just link both those packages. It's nice to have the workaround that I described above but this is quite confusing for people.</p> <p dir="auto">I know that there are existing issues around <a href="https://github.com/npm/cli/issues/2380" data-hovercard-type="issue" data-hovercard-url="/npm/cli/issues/2380/hovercard">running <code class="notranslate">npm install</code> removing links</a> but that isn't related to the expected behaviour that I have for this feature.</p> <h3 dir="auto">Steps To Reproduce</h3> <ol dir="auto"> <li>checkout and run <code class="notranslate">npm link</code> in guidemaker (or any npm package)</li> <li>checkout and run <code class="notranslate">npm link</code> in guidemaker-default-template</li> <li>go to a new node project with a package.json (ember app in my case)</li> <li>run <code class="notranslate">npm link guidemaker</code></li> <li>run <code class="notranslate">npm link guidemaker-default-template</code></li> </ol> <h3 dir="auto">Environment</h3> <p dir="auto">OS: macOS 11.4<br> npm: '7.20.0',<br> node: '12.18.1',</p>
0
<p dir="auto">When using the conventional <a href="https://webpack.js.org/guides/code-splitting/#dynamic-imports" rel="nofollow">webpack 2+ dynamic imports</a>, everything works great in dev but breaks in production (with builds).</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues?q=is%3Aissue">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <h2 dir="auto">Current Behavior</h2> <p dir="auto">A bug: dynamic imports should work in production as well as they do in development.</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <ol dir="auto"> <li>Pull down this <a href="https://github.com/morgs32/with-dynamic-imports">example nextjs</a> app to reproduce</li> <li><code class="notranslate">yarn dev</code> to see it working in dev</li> <li><code class="notranslate">yarn build</code> then <code class="notranslate">yarn start</code> to spin up the production build</li> </ol> <h2 dir="auto">Context</h2> <p dir="auto">I am trying to code-split my app and some of my dynamic imports are NOT components. So using <code class="notranslate">next/dynamic</code> is not appropriate...</p> <h2 dir="auto">Your Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>next</td> <td>5.1.0 (latest)</td> </tr> <tr> <td>node</td> <td>9.7.1</td> </tr> <tr> <td>OS</td> <td>mac</td> </tr> <tr> <td>browser</td> <td>chrome</td> </tr> </tbody> </table>
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h3 dir="auto">my config (tidied)</h3> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// next.config.js import HtmlWebpackPlugin from 'html-webpack-plugin'; import FaviconsWebpackPlugin from 'favicons-webpack-plugin'; module.exports = { webpack: (config, { dev }) =&gt; { config.plugins.push( new FaviconsWebpackPlugin({ logo: './static/assets/images/favicon.png', inject: true, }), new HtmlWebpackPlugin(), ); return config; }, };"><pre class="notranslate"><span class="pl-c">// next.config.js</span> <span class="pl-k">import</span> <span class="pl-v">HtmlWebpackPlugin</span> <span class="pl-k">from</span> <span class="pl-s">'html-webpack-plugin'</span><span class="pl-kos">;</span> <span class="pl-k">import</span> <span class="pl-v">FaviconsWebpackPlugin</span> <span class="pl-k">from</span> <span class="pl-s">'favicons-webpack-plugin'</span><span class="pl-kos">;</span> <span class="pl-smi">module</span><span class="pl-kos">.</span><span class="pl-c1">exports</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span> <span class="pl-en">webpack</span>: <span class="pl-kos">(</span><span class="pl-s1">config</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> dev <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-s1">config</span><span class="pl-kos">.</span><span class="pl-c1">plugins</span><span class="pl-kos">.</span><span class="pl-en">push</span><span class="pl-kos">(</span> <span class="pl-k">new</span> <span class="pl-v">FaviconsWebpackPlugin</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">logo</span>: <span class="pl-s">'./static/assets/images/favicon.png'</span><span class="pl-kos">,</span> <span class="pl-c1">inject</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-k">new</span> <span class="pl-v">HtmlWebpackPlugin</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">return</span> <span class="pl-s1">config</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">;</span></pre></div> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// pages/_document.js import React from 'react'; import Document, { Head, Main, NextScript } from 'next/document'; export default class SmediaDocument extends Document { render() { return ( &lt;html lang=&quot;en&quot;&gt; &lt;Head&gt; &lt;meta charSet=&quot;utf-8&quot; /&gt; &lt;meta content=&quot;IE=edge&quot; httpEquiv=&quot;X-UA-Compatible&quot; /&gt; &lt;meta content=&quot;width=device-width,initial-scale=1&quot; name=&quot;viewport&quot; /&gt; &lt;title&gt;Schoenwald.media&lt;/title&gt; &lt;meta name=&quot;description&quot; content=&quot;Thoughts on CSS, JS, and overall clean code.&quot; /&gt; &lt;/Head&gt; &lt;body&gt; &lt;Main /&gt; &lt;NextScript /&gt; &lt;/body&gt; &lt;/html&gt; ); } }"><pre class="notranslate"><span class="pl-c">// pages/_document.js</span> <span class="pl-k">import</span> <span class="pl-v">React</span> <span class="pl-k">from</span> <span class="pl-s">'react'</span><span class="pl-kos">;</span> <span class="pl-k">import</span> <span class="pl-v">Document</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-v">Head</span><span class="pl-kos">,</span> <span class="pl-v">Main</span><span class="pl-kos">,</span> <span class="pl-v">NextScript</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'next/document'</span><span class="pl-kos">;</span> <span class="pl-k">export</span> <span class="pl-k">default</span> <span class="pl-k">class</span> <span class="pl-v">SmediaDocument</span> <span class="pl-k">extends</span> <span class="pl-v">Document</span> <span class="pl-kos">{</span> <span class="pl-en">render</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-kos">(</span> <span class="pl-c1">&lt;</span><span class="pl-ent">html</span> <span class="pl-c1">lang</span><span class="pl-c1">=</span><span class="pl-s">"en"</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">Head</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">meta</span> <span class="pl-c1">charSet</span><span class="pl-c1">=</span><span class="pl-s">"utf-8"</span> <span class="pl-c1">/</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">meta</span> <span class="pl-c1">content</span><span class="pl-c1">=</span><span class="pl-s">"IE=edge"</span> <span class="pl-c1">httpEquiv</span><span class="pl-c1">=</span><span class="pl-s">"X-UA-Compatible"</span> <span class="pl-c1">/</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">meta</span> <span class="pl-c1">content</span><span class="pl-c1">=</span><span class="pl-s">"width=device-width,initial-scale=1"</span> <span class="pl-c1">name</span><span class="pl-c1">=</span><span class="pl-s">"viewport"</span> <span class="pl-c1">/</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">title</span><span class="pl-c1">&gt;</span>Schoenwald.media<span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">title</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">meta</span> <span class="pl-c1">name</span><span class="pl-c1">=</span><span class="pl-s">"description"</span> <span class="pl-c1">content</span><span class="pl-c1">=</span><span class="pl-s">"Thoughts on CSS, JS, and overall clean code."</span> <span class="pl-c1">/</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">Head</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">body</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">Main</span> <span class="pl-c1">/</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">NextScript</span> <span class="pl-c1">/</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">body</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">html</span><span class="pl-c1">&gt;</span> <span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">I'd expect that the favicons-webpack-plugin generates the icons, and the html-webpack-plugin inject it in the <code class="notranslate">&lt;head/&gt;</code> of the page. Which it doesn't.</p> <h2 dir="auto">Steps to Reproduce</h2> <ol dir="auto"> <li>Checkout <a href="https://github.com/schoenwaldnils/blog">https://github.com/schoenwaldnils/blog</a></li> <li>Set up <code class="notranslate">.env</code>file with</li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="HOST=localhost PORT=3000"><pre class="notranslate"><code class="notranslate">HOST=localhost PORT=3000 </code></pre></div> <ol start="3" dir="auto"> <li><code class="notranslate">docker-compose up</code></li> </ol> <h2 dir="auto">Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>next</td> <td>~4.0.0-beta.4</td> </tr> <tr> <td>html-webpack-plugin</td> <td>~2.30.1</td> </tr> <tr> <td>favicons-webpack-plugin</td> <td>0.0.7</td> </tr> <tr> <td>node</td> <td>8.4.0</td> </tr> <tr> <td>OS</td> <td>mhart/alpine-node:8.4.0</td> </tr> </tbody> </table>
0
<ul dir="auto"> <li>[ X] I have searched the <a href="https://github.com/callemall/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">When a INPUT or SELECT components are inside of GRID component, they should follow the layout established by the GRID component.</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">Right now &lt;INPUT and &lt;SELECT are rendered without fill the space assigned by the GRID and they must be CSS styleshed 1 by 1. This is worst when the &lt;INPUT has autocomplete because lot of CSS must be used for something that is expected: any component/html inside of a GRID item should use all the space assigned to it.</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <p dir="auto"><a href="https://24zr5plwwy.codesandbox.io/" rel="nofollow">https://24zr5plwwy.codesandbox.io/</a></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/* eslint-disable flowtype/require-valid-file-annotation */ import React, { Component } from 'react'; import withRoot from '../components/withRoot'; import Grid from 'material-ui/Grid'; import { InputLabel } from &quot;material-ui/Input&quot;; import { Input } from &quot;material-ui&quot;; import Checkbox from 'material-ui/Checkbox'; class Index extends Component { render() { const factor = { &quot;field_id&quot;: &quot;1&quot;, &quot;editLabel&quot;: &quot;This is an edit label&quot; } return ( &lt;div&gt; &lt;p&gt;current behavior: the input do not fill the space assigend by the grid&lt;/p&gt; &lt;Grid container&gt; &lt;Grid item xs={11}&gt; &lt;div style={{ background: 'pink' }}&gt; &lt;InputLabel style={{ background: 'yellow' }} htmlFor={factor.field_id}&gt;{factor.editLabel}&lt;/InputLabel&gt; &lt;Input style={{ background: 'cyan' }} id={factor.field_id} onChange={this.handleChange.bind(this)} type=&quot;number&quot; /&gt; &lt;/div&gt; &lt;/Grid&gt; &lt;Grid item xs={1} style={{ background: 'orange' }}&gt; &lt;Checkbox onChange={this.handleChange.bind(this)} style={{ background: 'cyan' }} /&gt; &lt;/Grid&gt; &lt;/Grid&gt; &lt;p&gt;{&quot;expected behavior: the input field (and selects) should fill all the space assigned to it by the &lt;GRID item&gt;&quot;}&lt;/p&gt; &lt;Grid container&gt; &lt;Grid item xs={11}&gt; &lt;div style={{ background: 'pink' }}&gt; &lt;InputLabel style={{ display: 'block', background: 'yellow' }} htmlFor={factor.field_id}&gt;{factor.editLabel}&lt;/InputLabel&gt; &lt;Input style={{ display: 'block', background: 'cyan' }} id={factor.field_id} onChange={this.handleChange.bind(this)} type=&quot;number&quot; /&gt; &lt;/div&gt; &lt;/Grid&gt; &lt;Grid item xs={1} style={{ background: 'orange' }}&gt; &lt;Checkbox onChange={this.handleChange.bind(this)} style={{ background: 'cyan' }}/&gt; &lt;/Grid&gt; &lt;/Grid&gt; &lt;/div&gt; ); } handleChange(event) { alert(event.target.value); } } export default withRoot(Index); "><pre class="notranslate"><code class="notranslate">/* eslint-disable flowtype/require-valid-file-annotation */ import React, { Component } from 'react'; import withRoot from '../components/withRoot'; import Grid from 'material-ui/Grid'; import { InputLabel } from "material-ui/Input"; import { Input } from "material-ui"; import Checkbox from 'material-ui/Checkbox'; class Index extends Component { render() { const factor = { "field_id": "1", "editLabel": "This is an edit label" } return ( &lt;div&gt; &lt;p&gt;current behavior: the input do not fill the space assigend by the grid&lt;/p&gt; &lt;Grid container&gt; &lt;Grid item xs={11}&gt; &lt;div style={{ background: 'pink' }}&gt; &lt;InputLabel style={{ background: 'yellow' }} htmlFor={factor.field_id}&gt;{factor.editLabel}&lt;/InputLabel&gt; &lt;Input style={{ background: 'cyan' }} id={factor.field_id} onChange={this.handleChange.bind(this)} type="number" /&gt; &lt;/div&gt; &lt;/Grid&gt; &lt;Grid item xs={1} style={{ background: 'orange' }}&gt; &lt;Checkbox onChange={this.handleChange.bind(this)} style={{ background: 'cyan' }} /&gt; &lt;/Grid&gt; &lt;/Grid&gt; &lt;p&gt;{"expected behavior: the input field (and selects) should fill all the space assigned to it by the &lt;GRID item&gt;"}&lt;/p&gt; &lt;Grid container&gt; &lt;Grid item xs={11}&gt; &lt;div style={{ background: 'pink' }}&gt; &lt;InputLabel style={{ display: 'block', background: 'yellow' }} htmlFor={factor.field_id}&gt;{factor.editLabel}&lt;/InputLabel&gt; &lt;Input style={{ display: 'block', background: 'cyan' }} id={factor.field_id} onChange={this.handleChange.bind(this)} type="number" /&gt; &lt;/div&gt; &lt;/Grid&gt; &lt;Grid item xs={1} style={{ background: 'orange' }}&gt; &lt;Checkbox onChange={this.handleChange.bind(this)} style={{ background: 'cyan' }}/&gt; &lt;/Grid&gt; &lt;/Grid&gt; &lt;/div&gt; ); } handleChange(event) { alert(event.target.value); } } export default withRoot(Index); </code></pre></div> <ol dir="auto"> <li>An example is in: <a href="https://codesandbox.io/s/24zr5plwwy" rel="nofollow">https://codesandbox.io/s/24zr5plwwy</a></li> </ol> <h2 dir="auto">Context</h2> <p dir="auto">I believe this is a problem because &lt;INPUT and &lt;SELECT are not following the space assignation rules of the &lt;GRID component, making the &lt;GRID component not so useful to build forms.</p> <h2 dir="auto">Your Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>Material-UI</td> <td>1.0.13beta</td> </tr> <tr> <td>React</td> <td>last version 15.x and 16.0.0</td> </tr> <tr> <td>browser</td> <td>last chrome and firefox on apple and ubuntu</td> </tr> </tbody> </table>
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/mui-org/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">I am expecting strong types for easier discovery through autocomplete when passing configurations to e.g <code class="notranslate">&lt;Grid&gt;</code></p> <div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;Grid container direction={GridDirection.Row}&gt;"><pre class="notranslate"><span class="pl-kos">&lt;</span><span class="pl-ent">Grid</span> <span class="pl-c1">container</span> <span class="pl-c1">direction</span>=<span class="pl-s">{GridDirection.Row}</span><span class="pl-kos">&gt;</span></pre></div> <h2 dir="auto">Current Behavior</h2> <p dir="auto">Passing <code class="notranslate">String</code> as configurations to <code class="notranslate">&lt;Grid&gt;</code></p> <div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;Grid container direction={'row'}&gt;"><pre class="notranslate"><span class="pl-kos">&lt;</span><span class="pl-ent">Grid</span> <span class="pl-c1">container</span> <span class="pl-c1">direction</span>=<span class="pl-s">{</span>'row'}<span class="pl-kos">&gt;</span></pre></div> <h2 dir="auto">Context</h2> <p dir="auto">From a developer UX point of view, discoverability is the key to making people comfortable and familiar with the large API. Thus offering a decent API is vital.</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="export enum GridDirection { Row = 'row', RowReverse = 'row-reverse', Column = 'column', Columnreverse = 'column-reverse' }"><pre class="notranslate"><span class="pl-k">export</span> <span class="pl-k">enum</span> <span class="pl-smi">GridDirection</span> <span class="pl-kos">{</span> <span class="pl-c1">Row</span> <span class="pl-c1">=</span> <span class="pl-s">'row'</span><span class="pl-kos">,</span> <span class="pl-c1">RowReverse</span> <span class="pl-c1">=</span> <span class="pl-s">'row-reverse'</span><span class="pl-kos">,</span> <span class="pl-c1">Column</span> <span class="pl-c1">=</span> <span class="pl-s">'column'</span><span class="pl-kos">,</span> <span class="pl-c1">Columnreverse</span> <span class="pl-c1">=</span> <span class="pl-s">'column-reverse'</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">Would make things more stronger typed and easier to get help from autocomplete when filling in values at call site.</p> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>Material-UI</td> <td>v1.0.0-beta.22</td> </tr> </tbody> </table>
0
<p dir="auto">I'm writing a new PowerShell script, and I want to make use of unicode emojies, which are now supported by the new Windows Terminal Preview. However, for a user running "legacy" PowerShell that doesn't support it, I do not wish to show the unrecognized characters, and instead I would like to show him some other text/sign.</p> <p dir="auto">To be more simple - I would like to know when my PS script is running in the new Terminal and show one thing and show something else for other PS terminals.</p> <p dir="auto">I have tried using <code class="notranslate">$env:TERM_PROGRAM</code>. If I use is inside the vscode PS terminal it returns "vscode", but under normal PS terminal or new terminal it returns nothing.</p> <p dir="auto">Any ideas?</p>
<h1 dir="auto">Summary of the new feature/enhancement</h1> <p dir="auto">Maybe this is as simple as an environment variable like VSCode uses for its terminal e.g. <code class="notranslate">TERM_PROGRAM=WindowsTerminal</code> / <code class="notranslate">TERM_PROGRAM_VERSION=0.0.1.0</code>.</p> <h1 dir="auto">Proposed technical implementation details (optional)</h1> <p dir="auto">Start by creating the environment variables above so those of us using PowerShell can adapt our user experience (via PowerShell profiles) to Windows Terminal.</p>
1
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto"><code class="notranslate">&lt;meta charset="utf-8"&gt;</code> should be the first element in the <code class="notranslate">&lt;head&gt;</code></p> <h2 dir="auto">Current Behavior</h2> <p dir="auto"><code class="notranslate">&lt;NextScript /&gt;</code> prepends the preloadDynamicChunks in the head.<br> <a href="https://github.com/zeit/next.js/blob/canary/server/document.js#L87">https://github.com/zeit/next.js/blob/canary/server/document.js#L87</a></p> <h2 dir="auto">Context</h2> <p dir="auto"><a href="https://sonarwhal.com/docs/user-guide/rules/meta-charset-utf-8/" rel="nofollow">https://sonarwhal.com/docs/user-guide/rules/meta-charset-utf-8/</a></p> <h2 dir="auto">Your Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>next</td> <td>4.1.3</td> </tr> <tr> <td>node</td> <td>8.4.0</td> </tr> </tbody> </table>
<h1 dir="auto">Bug report</h1> <h2 dir="auto">Describe the bug</h2> <p dir="auto">When using <code class="notranslate">experimental.publicDirectory</code> and dynamic routing with the following setup</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/pages [slug].js /public robots.txt"><pre class="notranslate"><code class="notranslate">/pages [slug].js /public robots.txt </code></pre></div> <p dir="auto">If you hit <code class="notranslate">/robots.txt</code>:</p> <ul dir="auto"> <li>On dev server it resolves to the [slug].js page</li> <li>On build server it resolves to the robots.txt file</li> </ul> <h2 dir="auto">To Reproduce</h2> <p dir="auto">Described above</p> <h2 dir="auto">Expected behavior</h2> <p dir="auto">I would expect dev-server to also resolve that route to the robots.txt file.</p> <h2 dir="auto">System information</h2> <ul dir="auto"> <li>OS: macOS</li> <li>Version of Next.js: 9.0.2</li> </ul>
0
<h1 dir="auto">Bug report</h1> <h2 dir="auto">Describe the bug</h2> <p dir="auto">Some Link components stops working in development and production</p> <h2 dir="auto">To Reproduce</h2> <p dir="auto">here is a live example <a href="https://frontend-e4m1qf1rc.now.sh/" rel="nofollow">https://frontend-e4m1qf1rc.now.sh/</a> (<strong>note</strong>: there is popup ads, i hope you have an adblock)<br> 1- Click on any news article, if you click on the home Link or the Logo link in the header, everything works as expected.<br> but when clicking on a news article, and refresh the page, and clicking on the home Link, the Link freezes and it's not routing to the proper route<br> 2- This also occurs when going directly to a news article from a full url(domaine.com/news/some-slug)</p> <h2 dir="auto">Expected behavior</h2> <p dir="auto">for the Link components to route to the desired route without freezing</p> <h2 dir="auto">Screenshots</h2> <p dir="auto">this is how i use Link for those non-working routes:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;Link href=&quot;/&quot; prefetch&gt; &lt;a className={classes.homeLink} title=&quot;home&quot;&gt; home &lt;/a&gt; &lt;/Link&gt;"><pre class="notranslate"><span class="pl-c1">&lt;</span><span class="pl-ent">Link</span> <span class="pl-c1">href</span><span class="pl-c1">=</span><span class="pl-s">"/"</span> <span class="pl-c1">prefetch</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-ent">a</span> <span class="pl-c1">className</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-s1">classes</span><span class="pl-kos">.</span><span class="pl-c1">homeLink</span><span class="pl-kos">}</span> <span class="pl-c1">title</span><span class="pl-c1">=</span><span class="pl-s">"home"</span><span class="pl-c1">&gt;</span> home <span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">a</span><span class="pl-c1">&gt;</span> <span class="pl-c1">&lt;</span><span class="pl-c1">/</span><span class="pl-ent">Link</span><span class="pl-c1">&gt;</span></pre></div> <h2 dir="auto">System information</h2> <ul dir="auto"> <li>Browser: chrome 75.0.3770.100 64bit</li> <li>Version of Next.js: 9.0.2</li> </ul>
<p dir="auto">In my app, I have a series of QueryRenderers (some nested inside each other) that are pulling data. When I disable javascript in my browser, I expect it to render the full page properly on the server, and give it to me, however, this does not happen.</p> <p dir="auto">Posted here, since I think this is a problem centric to the server-side render, and not specifically relay.</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues?q=is%3Aissue">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">Server side should render the full app, after all the QueryRenderer calls complete.</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">It appears that after the fetch, the <code class="notranslate">QueryRenderer#render</code> prop is not called again on the server.</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <ol dir="auto"> <li>Add relay and a working query renderer to your app</li> <li>Have the result just output the result as text</li> <li>Disable javascript in your browser</li> <li>Reload the page, you won't see the result text.</li> </ol> <h2 dir="auto">Context</h2> <h2 dir="auto">Your Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>next</td> <td>5.0.0</td> </tr> <tr> <td>node</td> <td>8.9.4</td> </tr> <tr> <td>OS</td> <td>osx sierra 10.12.6</td> </tr> <tr> <td>browser</td> <td>Chrome Version 66.0.3359.117 (Official Build) (64-bit)</td> </tr> </tbody> </table>
0
<p dir="auto">The bug <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="46037935" data-permission-text="Title is private" data-url="https://github.com/ansible/ansible/issues/9362" data-hovercard-type="issue" data-hovercard-url="/ansible/ansible/issues/9362/hovercard" href="https://github.com/ansible/ansible/issues/9362">#9362</a> is available.</p> <h5 dir="auto">ISSUE TYPE</h5> <ul dir="auto"> <li>Bug Report</li> </ul> <h5 dir="auto">COMPONENT NAME</h5> <p dir="auto">templar</p> <h5 dir="auto">ANSIBLE VERSION</h5> <ul dir="auto"> <li>Ansible: 2.4.3.0 <ul dir="auto"> <li>python version = 3.6.2 |Anaconda custom (64-bit)| (default, Jul 20 2017, 13:14:59) [GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.57)]</li> </ul> </li> </ul> <h5 dir="auto">STEPS TO REPRODUCE</h5> <div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="x: 0 a: b: 1 s: t: u: 2"><pre class="notranslate"><span class="pl-ent">x</span>: <span class="pl-c1">0</span> <span class="pl-ent">a</span>: <span class="pl-ent">b</span>: <span class="pl-c1">1</span> <span class="pl-ent">s</span>: <span class="pl-ent">t</span>: <span class="pl-ent">u</span>: <span class="pl-c1">2</span></pre></div> <h5 dir="auto">ACTUAL RESULTS</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="TASK [debug] ******************************************************************************************************************************** ok: [local] =&gt; { &quot;x&quot;: 0 } TASK [debug] ******************************************************************************************************************************** ok: [local] =&gt; { &quot;a.b&quot;: &quot;1&quot; } TASK [debug] ******************************************************************************************************************************** ok: [local] =&gt; { &quot;s.t.u&quot;: &quot;2&quot; }"><pre class="notranslate"><code class="notranslate">TASK [debug] ******************************************************************************************************************************** ok: [local] =&gt; { "x": 0 } TASK [debug] ******************************************************************************************************************************** ok: [local] =&gt; { "a.b": "1" } TASK [debug] ******************************************************************************************************************************** ok: [local] =&gt; { "s.t.u": "2" } </code></pre></div> <h5 dir="auto">CONFIGURATION</h5> <h5 dir="auto">OS / ENVIRONMENT</h5> <h5 dir="auto">SUMMARY</h5> <h5 dir="auto">EXPECTED RESULTS</h5>
<h5 dir="auto">Issue Type: Bug Report</h5> <h5 dir="auto">Ansible Version: 1.9.0.1</h5> <h5 dir="auto">Environment: Ubuntu 14.04</h5> <h5 dir="auto">Summary:</h5> <p dir="auto">When 2 roles using the same transitive dependency (more than 1 level deep) are applied to a single host, the transitive dependency is applied only once.</p> <h5 dir="auto">Steps To Reproduce:</h5> <p dir="auto">I have 4 roles:</p> <ol dir="auto"> <li> <p dir="auto"><code class="notranslate">postgresql_third_party</code> : from Ansible Galaxy, install and configure an instance of PostgreSQL</p> </li> <li> <p dir="auto"><code class="notranslate">roles/postgresql_commons/meta/main.yml</code> : commons settings for my projects</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# allow_duplicates: yes dependencies: - postgresql_third_party"><pre class="notranslate"><code class="notranslate"># allow_duplicates: yes dependencies: - postgresql_third_party </code></pre></div> </li> <li> <p dir="auto"><code class="notranslate">roles/postgresql_db1/meta/main.yml</code>: creates a database named DB1</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# allow_duplicates: yes dependencies: - { role: postgresql_commons, db_name: DB1 }"><pre class="notranslate"><code class="notranslate"># allow_duplicates: yes dependencies: - { role: postgresql_commons, db_name: DB1 } </code></pre></div> </li> <li> <p dir="auto"><code class="notranslate">roles/postgresql_db2/meta/main.yml</code>: creates a database named DB2</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# allow_duplicates: yes dependencies: - { role: postgresql_commons, db_name: DB2 }"><pre class="notranslate"><code class="notranslate"># allow_duplicates: yes dependencies: - { role: postgresql_commons, db_name: DB2 } </code></pre></div> </li> </ol> <p dir="auto">Enabling or disabling <code class="notranslate">allow_duplicate</code> does not change anything when executing the playbook:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- name : Install multiple DB on a single instance of PostgreSQL hosts: db sudo: true roles: - postgresql_db1 - postgresql_db2"><pre class="notranslate"><code class="notranslate">- name : Install multiple DB on a single instance of PostgreSQL hosts: db sudo: true roles: - postgresql_db1 - postgresql_db2 </code></pre></div> <h5 dir="auto">Expected Results:</h5> <p dir="auto">I would expect that the third party role is executed twice, once for DB1 and the other for DB2. The end result would be the creation of the 2 databases.</p> <h5 dir="auto">Actual Results:</h5> <p dir="auto">The role is applied only once. Only the first database is created.</p>
0
<p dir="auto">When long pressing the windows key using Power tools to display the Shortcut Guide, a few of shortcuts are missing.</p> <ul dir="auto"> <li>Windows C = Cortana</li> <li>Windows F = Feedback Hub</li> <li>Windows P = Presentation mode choices</li> <li>Windows V = Clipboard History</li> </ul> <p dir="auto">Could these be added please.</p>
<p dir="auto">##Move/copy queue</p> <p dir="auto">Moving or copying files/folders from multiple locations to the same location gets slower and slower for each source added. It would be great to have a queue that you can add more sources to and prioritize the order in.</p> <hr> <p dir="auto">If you'd like to see this feature implemented, add a <g-emoji class="g-emoji" alias="+1" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f44d.png">👍</g-emoji> reaction to this post.</p>
0
<h1 dir="auto">Bug report</h1> <p dir="auto"><strong>What is the current behavior?</strong></p> <p dir="auto"><code class="notranslate">@types/webpack</code> defines <code class="notranslate">SplitChunksOptions</code> as:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="interface SplitChunksOptions { /** Select chunks for determining shared modules (defaults to \&quot;async\&quot;, \&quot;initial\&quot; and \&quot;all\&quot; requires adding these chunks to the HTML) */ chunks?: &quot;initial&quot; | &quot;async&quot; | &quot;all&quot; | ((chunk: compilation.Chunk) =&gt; boolean); /** Minimal size for the created chunk */ minSize?: number; /** Minimum number of times a module has to be duplicated until it's considered for splitting */ minChunks?: number; /** Maximum number of requests which are accepted for on-demand loading */ maxAsyncRequests?: number; /** Maximum number of initial chunks which are accepted for an entry point */ maxInitialRequests?: number; /** Give chunks created a name (chunks with equal name are merged) */ name?: boolean | string | ((...args: any[]) =&gt; any); /** Assign modules to a cache group (modules from different cache groups are tried to keep in separate chunks) */ cacheGroups?: false | string | ((...args: any[]) =&gt; any) | RegExp | { [key: string]: CacheGroupsOptions }; }"><pre class="notranslate"><span class="pl-k">interface</span> <span class="pl-smi">SplitChunksOptions</span> <span class="pl-kos">{</span> <span class="pl-c">/** Select chunks for determining shared modules (defaults to \"async\", \"initial\" and \"all\" requires adding these chunks to the HTML) */</span> <span class="pl-c1">chunks</span>?: <span class="pl-s">"initial"</span> <span class="pl-c1">|</span> <span class="pl-s">"async"</span> <span class="pl-c1">|</span> <span class="pl-s">"all"</span> <span class="pl-c1">|</span> <span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-s1">chunk</span>: <span class="pl-s1">compilation</span><span class="pl-kos">.</span><span class="pl-smi">Chunk</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-smi">boolean</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">/** Minimal size for the created chunk */</span> <span class="pl-c1">minSize</span>?: <span class="pl-smi">number</span><span class="pl-kos">;</span> <span class="pl-c">/** Minimum number of times a module has to be duplicated until it's considered for splitting */</span> <span class="pl-c1">minChunks</span>?: <span class="pl-smi">number</span><span class="pl-kos">;</span> <span class="pl-c">/** Maximum number of requests which are accepted for on-demand loading */</span> <span class="pl-c1">maxAsyncRequests</span>?: <span class="pl-smi">number</span><span class="pl-kos">;</span> <span class="pl-c">/** Maximum number of initial chunks which are accepted for an entry point */</span> <span class="pl-c1">maxInitialRequests</span>?: <span class="pl-smi">number</span><span class="pl-kos">;</span> <span class="pl-c">/** Give chunks created a name (chunks with equal name are merged) */</span> <span class="pl-c1">name</span>?: <span class="pl-smi">boolean</span> <span class="pl-c1">|</span> <span class="pl-smi">string</span> <span class="pl-c1">|</span> <span class="pl-kos">(</span><span class="pl-kos">(</span>...<span class="pl-s1">args</span>: <span class="pl-smi">any</span><span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-smi">any</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">/** Assign modules to a cache group (modules from different cache groups are tried to keep in separate chunks) */</span> <span class="pl-c1">cacheGroups</span>?: <span class="pl-c1">false</span> <span class="pl-c1">|</span> <span class="pl-smi">string</span> <span class="pl-c1">|</span> <span class="pl-kos">(</span><span class="pl-kos">(</span>...<span class="pl-s1">args</span>: <span class="pl-smi">any</span><span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-smi">any</span><span class="pl-kos">)</span> <span class="pl-c1">|</span> <span class="pl-smi">RegExp</span> <span class="pl-c1">|</span> <span class="pl-kos">{</span> <span class="pl-kos">[</span><span class="pl-s1">key</span>: <span class="pl-smi">string</span><span class="pl-kos">]</span>: <span class="pl-smi">CacheGroupsOptions</span> <span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">The <code class="notranslate">cacheGroups</code> property allows false, string, Function, RegExp and a map of CacheGroupOptions, however a special case is <code class="notranslate">cacheGroups: {default: false}}</code>, the <code class="notranslate">CacheGroupsOptions</code> interface does not allow <code class="notranslate">false</code> as value.</p> <p dir="auto"><strong>Other relevant information:</strong><br> webpack version: <code class="notranslate">@types/webpack</code> 4.4.13<br> Node.js version: v10.11.0<br> Operating System: macOS<br> Additional tools:</p>
<p dir="auto">Source mapping was failing when bundling some JavaScript modules, and I have established that it was due to having multiple <code class="notranslate">//@ sourceMappingURL=...</code> directives in my bundle file. One came from a module that has been compiled from coffeescript. The module is a transient dependency via 2 other modules, so using the coffeescript loader to load the original coffeescript is not a reasonable option here.</p> <p dir="auto">See also: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="33744328" data-permission-text="Title is private" data-url="https://github.com/myrne/performance-now/issues/2" data-hovercard-type="issue" data-hovercard-url="/myrne/performance-now/issues/2/hovercard" href="https://github.com/myrne/performance-now/issues/2">myrne/performance-now#2</a></p> <p dir="auto">This is what I end up with at the end of my bundle:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" ... /* //@ sourceMappingURL=performance-now.map */ /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(19))) /***/ } /******/ ]) /* //@ sourceMappingURL=bundle.js.map */"><pre class="notranslate"> ... <span class="pl-c">/*</span> <span class="pl-c"> //@ sourceMappingURL=performance-now.map</span> <span class="pl-c"> */</span> <span class="pl-c">/* WEBPACK VAR INJECTION */</span><span class="pl-kos">}</span><span class="pl-kos">.</span><span class="pl-en">call</span><span class="pl-kos">(</span><span class="pl-s1">exports</span><span class="pl-kos">,</span> <span class="pl-en">__webpack_require__</span><span class="pl-kos">(</span><span class="pl-c1">19</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">)</span> <span class="pl-c">/***/</span> <span class="pl-kos">}</span> <span class="pl-c">/******/</span> <span class="pl-kos">]</span><span class="pl-kos">)</span> <span class="pl-c">/*</span> <span class="pl-c">//@ sourceMappingURL=bundle.js.map</span> <span class="pl-c">*/</span></pre></div> <p dir="auto">removing the <code class="notranslate">//@ sourceMappingURL=performance-now.map</code> line from the bundle causes the source maps to work in the browser (Chrome Version 34.0.1847.137 m).</p> <p dir="auto">Firefox debugger seems to be able to handle the extra directive, but it also does not use it to map to the original .coffee file, so there doesn't seem to be any value in leaving the directive in place.</p> <p dir="auto">Webpack could remove existing <code class="notranslate">sourceMappingURL</code> directives, and ideally bring the specified source maps in as a section in the bundle source map (See: <a href="https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b-_2gc6fAH0KY0k/edit?hl=en_US#heading=h.535es3xeprgt" rel="nofollow">https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b-_2gc6fAH0KY0k/edit?hl=en_US#heading=h.535es3xeprgt</a> )</p> <h2 dir="auto">To reproduce:</h2> <p dir="auto">create these files:</p> <div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// package.json { &quot;name&quot;: &quot;test&quot;, &quot;version&quot;: &quot;0.0.0&quot;, &quot;description&quot;: &quot;&quot;, &quot;main&quot;: &quot;index.js&quot;, &quot;scripts&quot;: { &quot;test&quot;: &quot;echo \&quot;Error: no test specified\&quot; &amp;&amp; exit 1&quot; }, &quot;author&quot;: &quot;&quot;, &quot;license&quot;: &quot;ISC&quot;, &quot;dependencies&quot;: { &quot;performance-now&quot;: &quot;^0.1.3&quot; } }"><pre class="notranslate"><span class="pl-ii">// package.json</span> { <span class="pl-ent">"name"</span>: <span class="pl-s"><span class="pl-pds">"</span>test<span class="pl-pds">"</span></span>, <span class="pl-ent">"version"</span>: <span class="pl-s"><span class="pl-pds">"</span>0.0.0<span class="pl-pds">"</span></span>, <span class="pl-ent">"description"</span>: <span class="pl-s"><span class="pl-pds">"</span><span class="pl-pds">"</span></span>, <span class="pl-ent">"main"</span>: <span class="pl-s"><span class="pl-pds">"</span>index.js<span class="pl-pds">"</span></span>, <span class="pl-ent">"scripts"</span>: { <span class="pl-ent">"test"</span>: <span class="pl-s"><span class="pl-pds">"</span>echo <span class="pl-cce">\"</span>Error: no test specified<span class="pl-cce">\"</span> &amp;&amp; exit 1<span class="pl-pds">"</span></span> }, <span class="pl-ent">"author"</span>: <span class="pl-s"><span class="pl-pds">"</span><span class="pl-pds">"</span></span>, <span class="pl-ent">"license"</span>: <span class="pl-s"><span class="pl-pds">"</span>ISC<span class="pl-pds">"</span></span>, <span class="pl-ent">"dependencies"</span>: { <span class="pl-ent">"performance-now"</span>: <span class="pl-s"><span class="pl-pds">"</span>^0.1.3<span class="pl-pds">"</span></span> } }</pre></div> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// webpack.config.js module.exports = { entry: &quot;./index.js&quot;, output: { path: __dirname, filename: &quot;bundle.js&quot; }, devtool: &quot;source-map&quot; };"><pre class="notranslate"><span class="pl-c">// webpack.config.js</span> <span class="pl-smi">module</span><span class="pl-kos">.</span><span class="pl-c1">exports</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span> <span class="pl-c1">entry</span>: <span class="pl-s">"./index.js"</span><span class="pl-kos">,</span> <span class="pl-c1">output</span>: <span class="pl-kos">{</span> <span class="pl-c1">path</span>: <span class="pl-s1">__dirname</span><span class="pl-kos">,</span> <span class="pl-c1">filename</span>: <span class="pl-s">"bundle.js"</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-c1">devtool</span>: <span class="pl-s">"source-map"</span> <span class="pl-kos">}</span><span class="pl-kos">;</span></pre></div> <div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;!DOCTYPE html&gt; &lt;html lang=&quot;en&quot;&gt; &lt;head&gt; &lt;meta charset=&quot;utf-8&quot;&gt; &lt;/head&gt; &lt;body&gt; &lt;script src=&quot;./bundle.js&quot;&gt;&lt;/script&gt; &lt;/body&gt; &lt;/html&gt;"><pre class="notranslate"><span class="pl-c1">&lt;!DOCTYPE html<span class="pl-kos">&gt;</span></span> <span class="pl-kos">&lt;</span><span class="pl-ent">html</span> <span class="pl-c1">lang</span>="<span class="pl-s">en</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">head</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">meta</span> <span class="pl-c1">charset</span>="<span class="pl-s">utf-8</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">head</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">body</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">script</span> <span class="pl-c1">src</span>="<span class="pl-s">./bundle.js</span>"<span class="pl-kos">&gt;</span><span class="pl-kos">&lt;/</span><span class="pl-ent">script</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">body</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">html</span><span class="pl-kos">&gt;</span></pre></div> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var now = require('performance-now'); console.log('Logged from index.js:2');"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">now</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'performance-now'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">'Logged from index.js:2'</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto">Then run:</p> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="npm install webpack"><pre class="notranslate">npm install webpack</pre></div> <p dir="auto">Open index.html in Chrome 29.</p> <p dir="auto">Expected: console log shows "Logged from index.js:2" with link to line 2 of index.js<br> Actual: console log shows "Logged from index.js:2" with link to line 50 of bundle.js</p>
0
<p dir="auto">This is one of two proposals for a better module system for Julia. The goal is to promote good modular design. This proposal, as opposed to my other proposal, supports multiple modules per file.</p> <p dir="auto">The main concept is that files are loaded into a program <em>always</em> at the toplevel. Once loaded any module within those files are available for use, either through their absolute paths or by way of importing.</p> <p dir="auto">I will use the function <code class="notranslate">load</code> in the examples, but obviously another term can be used. When a file is loaded, it's modules are made available as are it's exported functions via absolute paths. e.g.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# Bar.jl module Bar function f() ... end end # Foo.jl load Bar module Foo function g() Bar.f() end end"><pre class="notranslate"><code class="notranslate"># Bar.jl module Bar function f() ... end end # Foo.jl load Bar module Foo function g() Bar.f() end end </code></pre></div> <p dir="auto">Any toplevel code in a file, i.e. outside the scope of a module or function, is processed only once on first load at compile time. This can be used to create computed resolutions, such as dynamic loads. e.g.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="if something load(something) end"><pre class="notranslate"><code class="notranslate">if something load(something) end </code></pre></div> <p dir="auto">With parentheses <code class="notranslate">load</code> works like a function. So in the above, <code class="notranslate">something</code> is a variable. Without parentheses <code class="notranslate">load</code> is more like keyword and treats the following text as if it were a function argument in quotes, i.e. <code class="notranslate">load foo</code> -&gt; <code class="notranslate">load("foo")</code>. It also assumes an extension of <code class="notranslate">.jl</code>. Multiple terms separated by <code class="notranslate">.</code> are converted to <code class="notranslate">/</code>, hence directory separations. So <code class="notranslate">load Foo.Bar</code> looks for <code class="notranslate">Foo/Bar.jl</code>. (Whether letter case matters can be decided latter. It makes no difference to this proposal.)</p> <p dir="auto">All loads first look to the local directory of the loading file for a match. If not found it then looks to installed packages. Name clashes between local files and packages are generally easy enough to avoid by choosing non conflicting names. It a name conflict is unavoidable a "package marker" can be use to distinguish the package from the file. e.g. a <code class="notranslate">|</code> between the package name and file name (the exact marker to use is an open question).</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="load Foo|Bar"><pre class="notranslate"><code class="notranslate">load Foo|Bar </code></pre></div> <p dir="auto">Of course in most cases that will be <code class="notranslate">load Foo|Foo</code> which sucks for redundancy, but maybe someone else can think of a good way to denote that without the duplication. Also, local relative paths can be specified by prefixing <code class="notranslate">./</code> and <code class="notranslate">../</code> if necessary, but generally these should not be needed.</p> <p dir="auto">As an alternative to the use of the <code class="notranslate">|</code> it could require a "from" term, e.g.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="load Bar from Foo"><pre class="notranslate"><code class="notranslate">load Bar from Foo </code></pre></div> <p dir="auto">That reads a little better, albeit it not as concise.</p> <p dir="auto">I will use the term <code class="notranslate">import</code> to serve as the name of the function that brings module functions into the scope of other modules. I think the is a good term b/c it contrasts well with <code class="notranslate">export</code>.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# Bar.jl module BarA export ga function ga() ... end module BarB export gb function gb() ... end # Baz.jl module Baz export h function h() ... end # Foo.jl load Bar load Baz module Foo import BarA import BarB function f() ga() gb() end end"><pre class="notranslate"><code class="notranslate"># Bar.jl module BarA export ga function ga() ... end module BarB export gb function gb() ... end # Baz.jl module Baz export h function h() ... end # Foo.jl load Bar load Baz module Foo import BarA import BarB function f() ga() gb() end end </code></pre></div> <p dir="auto">By importing <code class="notranslate">BarA</code> and <code class="notranslate">BarB</code>, their exported functions are made visible within Foo without absolute paths. There doesn't need to be a separate <code class="notranslate">using</code>, as <code class="notranslate">import</code> allows the methods to both be found and to be extended. If there is a name clash between imported modules the later wins out. Specific methods can be imported by using the colon notation.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="module Foo import BarA: ga end"><pre class="notranslate"><code class="notranslate">module Foo import BarA: ga end </code></pre></div> <p dir="auto">This would import only <code class="notranslate">ga</code> and no other functions. Functions must be exported to be accessed. The only way to access none exported function would be to force them, by reopening the module and modifying it. Which beings me to last part of this proposal.</p> <p dir="auto">If a module is "reopened" then it can be modified. This happens at compile time, so it is safe.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# Bar.jl module Bar function q() ... end # Foo.jl load Bar module Foo function f() Bar.q() end end module Bar export q end"><pre class="notranslate"><code class="notranslate"># Bar.jl module Bar function q() ... end # Foo.jl load Bar module Foo function f() Bar.q() end end module Bar export q end </code></pre></div> <p dir="auto">So <code class="notranslate">Foo.f()</code> can work b/c we modified Bar to allow it. This of course should be done with clear understanding of what one is doing. If it is being done to a module from another package b/c the author probably didn't export the function for a reason. But it is important to be able to have this option b/c it makes it possible to fix overlooked limitations and bugs, and improves potential code reuse.</p> <p dir="auto">The advantages of this design are essentially all the advantages of modular programming since that is what it is designed to provide. One nice thing that stands out is that all loads can go at the top of a file, as order of loads is not significant. That makes it much easier to see what a file requires. It also means the each file can have it's own loads even if they are the same as another files that loads it. They are only ever loaded once.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# Foo.jl load Bar.jl load Baz.jl # Bar.jl load Quaz.jl # Baz.jl load Quaz.jl"><pre class="notranslate"><code class="notranslate"># Foo.jl load Bar.jl load Baz.jl # Bar.jl load Quaz.jl # Baz.jl load Quaz.jl </code></pre></div>
<p dir="auto">It would be nice if the long form anonymous functions would support return type declarations akin to named functions. That is, it'd be nice if the following converted and asserted the return type is <code class="notranslate">T</code>:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia&gt; function(x, y)::T return x*y end ERROR: syntax: expected &quot;(&quot; in function definition"><pre class="notranslate"><code class="notranslate">julia&gt; function(x, y)::T return x*y end ERROR: syntax: expected "(" in function definition </code></pre></div> <p dir="auto">Note that this appears to work with one argument, but it's bugged and actually applying the type declaration to the <em>argument</em> instead of the function's return:</p> <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia&gt; f = function(x)::Int x/2 end #11 (generic function with 1 method) julia&gt; f(2.0) ERROR: MethodError: no method matching (::getfield(Main, Symbol(&quot;##11#12&quot;)))(::Float64) Closest candidates are: #11(::Int64) at REPL[41]:2 Stacktrace: [1] top-level scope at none:0 julia&gt; :(function(x)::Int x/2 end) :(function (x::Int,) #= REPL[47]:2 =# x / 2 end)"><pre class="notranslate">julia<span class="pl-k">&gt;</span> f <span class="pl-k">=</span> <span class="pl-k">function</span>(x)<span class="pl-k">::</span><span class="pl-c1">Int</span> x<span class="pl-k">/</span><span class="pl-c1">2</span> <span class="pl-k">end</span> <span class="pl-c"><span class="pl-c">#</span>11 (generic function with 1 method)</span> julia<span class="pl-k">&gt;</span> <span class="pl-c1">f</span>(<span class="pl-c1">2.0</span>) ERROR<span class="pl-k">:</span> MethodError<span class="pl-k">:</span> no method matching (<span class="pl-k">::</span><span class="pl-c1">getfield</span>(Main, <span class="pl-c1">Symbol</span>(<span class="pl-s"><span class="pl-pds">"</span>##11#12<span class="pl-pds">"</span></span>)))(<span class="pl-k">::</span><span class="pl-c1">Float64</span>) Closest candidates are<span class="pl-k">:</span> <span class="pl-c"><span class="pl-c">#</span>11(::Int64) at REPL[41]:2</span> Stacktrace<span class="pl-k">:</span> [<span class="pl-c1">1</span>] top<span class="pl-k">-</span>level scope at none<span class="pl-k">:</span><span class="pl-c1">0</span> julia<span class="pl-k">&gt;</span> :(<span class="pl-k">function</span>(x)<span class="pl-k">::</span><span class="pl-c1">Int</span> x<span class="pl-k">/</span><span class="pl-c1">2</span> <span class="pl-k">end</span>) :(<span class="pl-k">function</span> (x<span class="pl-k">::</span><span class="pl-c1">Int</span>,) <span class="pl-c"><span class="pl-c">#=</span> REPL[47]:2 <span class="pl-c">=#</span></span> x <span class="pl-k">/</span> <span class="pl-c1">2</span> <span class="pl-k">end</span>)</pre></div> <p dir="auto">(from <a href="https://discourse.julialang.org/t/controlling-the-type-of-anonymous-functions/26264" rel="nofollow">https://discourse.julialang.org/t/controlling-the-type-of-anonymous-functions/26264</a>).</p>
0
<h1 dir="auto">What / Why</h1> <p dir="auto">I cant do npm install on Linux</p> <h2 dir="auto">When</h2> <p dir="auto">Today</p> <h2 dir="auto">Where</h2> <p dir="auto">Ubuntu 18<br> <a href="https://github.com/npm/cli/files/4235597/log.txt">log.txt</a><br> vindi@DESKTOP-38F3B70:/mnt/c/Users/vox-vindi/Desktop$ node -v<br> v13.9.0<br> vindi@DESKTOP-38F3B70:/mnt/c/Users/vox-vindi/Desktop$ npm -v<br> 6.13.7</p> <h2 dir="auto">How</h2> <h3 dir="auto">Current Behavior</h3> <ul dir="auto"> <li>n/a</li> </ul> <h3 dir="auto">Steps to Reproduce</h3> <ul dir="auto"> <li>n/a</li> </ul> <h3 dir="auto">Expected Behavior</h3> <ul dir="auto"> <li>n/a</li> </ul> <h2 dir="auto">Who</h2> <ul dir="auto"> <li>n/a</li> </ul> <h2 dir="auto">References</h2> <ul dir="auto"> <li>n/a</li> </ul>
<p dir="auto">I was doing an Angular course and when creating the project with <code class="notranslate">ng new myproject</code>, I got some errors, a log and a message telling me that I should warn you. So here I put the error.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/55595063/130496875-5449d68e-16f8-4517-b9c7-1594943b8aea.png"><img src="https://user-images.githubusercontent.com/55595063/130496875-5449d68e-16f8-4517-b9c7-1594943b8aea.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">and there is the log</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="0 info it worked if it ends with ok 1 verbose cli [ 1 verbose cli 'C:\\Program Files\\nodejs\\node.exe', 1 verbose cli 'C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js', 1 verbose cli 'install', 1 verbose cli '--quiet' 1 verbose cli ] 2 info using [email protected] 3 info using [email protected] 4 verbose npm-session 40eedd3db343e8b3 5 silly install runPreinstallTopLevelLifecycles 6 silly preinstall [email protected] 7 info lifecycle [email protected]~preinstall: [email protected] 8 silly install loadCurrentTree 9 silly install readLocalPackageData 10 timing stage:loadCurrentTree Completed in 27ms 11 silly install loadIdealTree 12 silly install cloneCurrentTreeToIdealTree 13 timing stage:loadIdealTree:cloneCurrentTree Completed in 0ms 14 silly install loadShrinkwrap 15 timing stage:loadIdealTree:loadShrinkwrap Completed in 2ms 16 silly install loadAllDepsIntoIdealTree 17 http fetch GET 304 https://registry.npmjs.org/@angular-devkit%2fbuild-angular 5974ms (from cache) 18 silly pacote range manifest for @angular-devkit/build-angular@~12.2.1 fetched in 6003ms 19 http fetch GET 304 https://registry.npmjs.org/karma-jasmine-html-reporter 2191ms (from cache) 20 silly pacote range manifest for karma-jasmine-html-reporter@~1.7.0 fetched in 2195ms 21 http fetch GET 304 https://registry.npmjs.org/karma-coverage 8175ms (from cache) 22 silly pacote range manifest for karma-coverage@~2.0.3 fetched in 8179ms 23 http fetch GET 304 https://registry.npmjs.org/jasmine-core 8419ms (from cache) 24 silly pacote range manifest for jasmine-core@~3.8.0 fetched in 8426ms 25 http fetch GET 304 https://registry.npmjs.org/@angular%2fcompiler-cli 8462ms (from cache) 26 silly pacote range manifest for @angular/compiler-cli@~12.2.0 fetched in 8470ms 27 http fetch GET 304 https://registry.npmjs.org/karma 8481ms (from cache) 28 silly pacote range manifest for karma@~6.3.0 fetched in 8492ms 29 http fetch GET 304 https://registry.npmjs.org/karma-chrome-launcher 8526ms (from cache) 30 http fetch GET 304 https://registry.npmjs.org/typescript 366ms (from cache) 31 silly pacote range manifest for karma-chrome-launcher@~3.1.0 fetched in 8579ms 32 silly pacote range manifest for typescript@~4.3.5 fetched in 412ms 33 http fetch GET 304 https://registry.npmjs.org/@angular%2fanimations 446ms (from cache) 34 silly pacote range manifest for @angular/animations@~12.2.0 fetched in 451ms 35 http fetch GET 304 https://registry.npmjs.org/@angular%2fcommon 2034ms (from cache) 36 silly pacote range manifest for @angular/common@~12.2.0 fetched in 2041ms 37 http fetch GET 304 https://registry.npmjs.org/@angular%2fcompiler 2006ms (from cache) 38 http fetch GET 304 https://registry.npmjs.org/karma-jasmine 10476ms (from cache) 39 silly pacote range manifest for karma-jasmine@~4.0.0 fetched in 10479ms 40 http fetch GET 304 https://registry.npmjs.org/@angular%2fcore 2002ms (from cache) 41 http fetch GET 304 https://registry.npmjs.org/@angular%2fforms 1934ms (from cache) 42 http fetch GET 304 https://registry.npmjs.org/@angular%2fplatform-browser-dynamic 1964ms (from cache) 43 silly pacote range manifest for @angular/platform-browser-dynamic@~12.2.0 fetched in 1972ms 44 http fetch GET 304 https://registry.npmjs.org/tslib 2196ms (from cache) 45 silly pacote range manifest for tslib@^2.3.0 fetched in 2200ms 46 http fetch GET 304 https://registry.npmjs.org/rxjs 2376ms (from cache) 47 silly pacote range manifest for rxjs@~6.6.0 fetched in 2383ms 48 http fetch GET 304 https://registry.npmjs.org/zone.js 2277ms (from cache) 49 silly pacote range manifest for zone.js@~0.11.4 fetched in 2281ms 50 http fetch GET 304 https://registry.npmjs.org/@ampproject%2fremapping 2236ms (from cache) 51 silly pacote version manifest for @ampproject/[email protected] fetched in 2240ms 52 http fetch GET 200 https://registry.npmjs.org/@angular-devkit%2fbuild-optimizer 132513ms 53 http fetch GET 200 https://registry.npmjs.org/@angular-devkit/build-optimizer/-/build-optimizer-0.1202.2.tgz 1666ms 54 silly pacote version manifest for @angular-devkit/[email protected] fetched in 134191ms 55 http fetch GET 200 https://registry.npmjs.org/@types%2fjasmine 149531ms 56 silly pacote range manifest for @types/jasmine@~3.8.0 fetched in 149535ms 57 http fetch GET 200 https://registry.npmjs.org/@angular-devkit%2fcore 46353ms 58 http fetch GET 200 https://registry.npmjs.org/@angular-devkit/core/-/core-12.2.2.tgz 5260ms 59 silly pacote version manifest for @angular-devkit/[email protected] fetched in 51622ms 60 http fetch GET 304 https://registry.npmjs.org/@babel%2fcore 399ms (from cache) 61 silly pacote version manifest for @babel/[email protected] fetched in 406ms 62 http fetch GET 304 https://registry.npmjs.org/@babel%2fgenerator 283ms (from cache) 63 silly pacote version manifest for @babel/[email protected] fetched in 287ms 64 http fetch GET 200 https://registry.npmjs.org/@angular%2fplatform-browser 193437ms 65 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-annotate-as-pure 526ms (from cache) 66 silly pacote version manifest for @babel/[email protected] fetched in 530ms 67 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-async-generator-functions 412ms (from cache) 68 silly pacote version manifest for @babel/[email protected] fetched in 415ms 69 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-async-to-generator 913ms (from cache) 70 silly pacote version manifest for @babel/[email protected] fetched in 917ms 71 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-runtime 555ms (from cache) 72 silly pacote version manifest for @babel/[email protected] fetched in 559ms 73 http fetch GET 304 https://registry.npmjs.org/@babel%2fpreset-env 637ms (from cache) 74 silly pacote version manifest for @babel/[email protected] fetched in 642ms 75 http fetch GET 304 https://registry.npmjs.org/@babel%2fruntime 856ms (from cache) 76 silly pacote version manifest for @babel/[email protected] fetched in 859ms 77 http fetch GET 304 https://registry.npmjs.org/@babel%2ftemplate 513ms (from cache) 78 silly pacote version manifest for @babel/[email protected] fetched in 517ms 79 http fetch GET 304 https://registry.npmjs.org/@discoveryjs%2fjson-ext 302ms (from cache) 80 silly pacote version manifest for @discoveryjs/[email protected] fetched in 304ms 81 http fetch GET 304 https://registry.npmjs.org/@jsdevtools%2fcoverage-istanbul-loader 3291ms (from cache) 82 silly pacote version manifest for @jsdevtools/[email protected] fetched in 3294ms 83 http fetch GET 200 https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-12.2.2.tgz 20302ms 84 silly pacote range manifest for @angular/platform-browser@~12.2.0 fetched in 213749ms 85 http fetch GET 304 https://registry.npmjs.org/ansi-colors 923ms (from cache) 86 silly pacote version manifest for [email protected] fetched in 924ms 87 http fetch GET 304 https://registry.npmjs.org/babel-loader 949ms (from cache) 88 silly pacote version manifest for [email protected] fetched in 952ms 89 http fetch GET 200 https://registry.npmjs.org/browserslist 5432ms 90 http fetch GET 200 https://registry.npmjs.org/browserslist/-/browserslist-4.16.8.tgz 355ms 91 silly pacote range manifest for browserslist@^4.9.1 fetched in 5793ms 92 http fetch GET 304 https://registry.npmjs.org/cacache 224ms (from cache) 93 silly pacote version manifest for [email protected] fetched in 228ms 94 http fetch GET 304 https://registry.npmjs.org/caniuse-lite 113ms (from cache) 95 silly pacote range manifest for caniuse-lite@^1.0.30001032 fetched in 119ms 96 http fetch GET 304 https://registry.npmjs.org/circular-dependency-plugin 171ms (from cache) 97 silly pacote version manifest for [email protected] fetched in 175ms 98 http fetch GET 304 https://registry.npmjs.org/copy-webpack-plugin 217ms (from cache) 99 silly pacote version manifest for [email protected] fetched in 220ms 100 http fetch GET 200 https://registry.npmjs.org/core-js 6998ms 101 silly pacote version manifest for [email protected] fetched in 7002ms 102 http fetch GET 304 https://registry.npmjs.org/critters 1116ms (from cache) 103 silly pacote version manifest for [email protected] fetched in 1119ms 104 http fetch GET 304 https://registry.npmjs.org/css-loader 667ms (from cache) 105 silly pacote version manifest for [email protected] fetched in 673ms 106 http fetch GET 304 https://registry.npmjs.org/css-minimizer-webpack-plugin 1080ms (from cache) 107 silly pacote version manifest for [email protected] fetched in 1083ms 108 http fetch GET 200 https://registry.npmjs.org/@angular%2fcli 240928ms 109 http fetch GET 200 https://registry.npmjs.org/@angular/cli/-/cli-12.2.2.tgz 14075ms 110 silly pacote range manifest for @angular/cli@~12.2.1 fetched in 255018ms 111 http fetch GET 304 https://registry.npmjs.org/find-cache-dir 140ms (from cache) 112 silly pacote version manifest for [email protected] fetched in 141ms 113 http fetch GET 304 https://registry.npmjs.org/glob 109ms (from cache) 114 silly pacote version manifest for [email protected] fetched in 110ms 115 http fetch GET 304 https://registry.npmjs.org/https-proxy-agent 116ms (from cache) 116 silly pacote version manifest for [email protected] fetched in 119ms 117 http fetch GET 304 https://registry.npmjs.org/inquirer 89ms (from cache) 118 silly pacote version manifest for [email protected] fetched in 92ms 119 http fetch GET 304 https://registry.npmjs.org/karma-source-map-support 116ms (from cache) 120 silly pacote version manifest for [email protected] fetched in 118ms 121 http fetch GET 304 https://registry.npmjs.org/less 239ms (from cache) 122 silly pacote version manifest for [email protected] fetched in 244ms 123 http fetch GET 304 https://registry.npmjs.org/less-loader 2811ms (from cache) 124 silly pacote version manifest for [email protected] fetched in 2813ms 125 http fetch GET 200 https://registry.npmjs.org/@angular/forms/-/forms-12.2.2.tgz 257657ms 126 silly pacote range manifest for @angular/forms@~12.2.0 fetched in 259602ms 127 http fetch GET 304 https://registry.npmjs.org/loader-utils 1022ms (from cache) 128 silly pacote version manifest for [email protected] fetched in 1023ms 129 http fetch GET 304 https://registry.npmjs.org/mini-css-extract-plugin 848ms (from cache) 130 silly pacote version manifest for [email protected] fetched in 852ms 131 http fetch GET 304 https://registry.npmjs.org/minimatch 1463ms (from cache) 132 silly pacote version manifest for [email protected] fetched in 1465ms 133 http fetch GET 304 https://registry.npmjs.org/open 192ms (from cache) 134 silly pacote version manifest for [email protected] fetched in 194ms 135 http fetch GET 304 https://registry.npmjs.org/ora 130ms (from cache) 136 silly pacote version manifest for [email protected] fetched in 132ms 137 http fetch GET 304 https://registry.npmjs.org/parse5-html-rewriting-stream 1003ms (from cache) 138 silly pacote version manifest for [email protected] fetched in 1006ms 139 http fetch GET 200 https://registry.npmjs.org/@angular%2frouter 262476ms 140 http fetch GET 304 https://registry.npmjs.org/piscina 2203ms (from cache) 141 silly pacote version manifest for [email protected] fetched in 2207ms 142 http fetch GET 304 https://registry.npmjs.org/postcss 746ms (from cache) 143 silly pacote version manifest for [email protected] fetched in 752ms 144 http fetch GET 304 https://registry.npmjs.org/postcss-import 1204ms (from cache) 145 silly pacote version manifest for [email protected] fetched in 1208ms 146 http fetch GET 304 https://registry.npmjs.org/postcss-loader 1536ms (from cache) 147 silly pacote version manifest for [email protected] fetched in 1539ms 148 http fetch GET 200 https://registry.npmjs.org/@angular-devkit%2farchitect 264365ms 149 http fetch GET 304 https://registry.npmjs.org/postcss-preset-env 1169ms (from cache) 150 silly pacote version manifest for [email protected] fetched in 1174ms 151 http fetch GET 304 https://registry.npmjs.org/regenerator-runtime 2142ms (from cache) 152 silly pacote version manifest for [email protected] fetched in 2144ms 153 http fetch GET 304 https://registry.npmjs.org/resolve-url-loader 464ms (from cache) 154 silly pacote version manifest for [email protected] fetched in 467ms 155 silly pacote version manifest for [email protected] fetched in 3ms 156 http fetch GET 200 https://registry.npmjs.org/esbuild 42204ms 157 silly pacote version manifest for [email protected] fetched in 42206ms 158 http fetch GET 304 https://registry.npmjs.org/sass-loader 293ms (from cache) 159 silly pacote version manifest for [email protected] fetched in 296ms 160 http fetch GET 304 https://registry.npmjs.org/sass 932ms (from cache) 161 silly pacote version manifest for [email protected] fetched in 936ms 162 http fetch GET 304 https://registry.npmjs.org/semver 211ms (from cache) 163 silly pacote version manifest for [email protected] fetched in 214ms 164 http fetch GET 304 https://registry.npmjs.org/source-map-loader 152ms (from cache) 165 silly pacote version manifest for [email protected] fetched in 155ms 166 http fetch GET 304 https://registry.npmjs.org/source-map-support 117ms (from cache) 167 silly pacote version manifest for [email protected] fetched in 119ms 168 http fetch GET 304 https://registry.npmjs.org/style-loader 123ms (from cache) 169 silly pacote version manifest for [email protected] fetched in 126ms 170 http fetch GET 304 https://registry.npmjs.org/stylus-loader 99ms (from cache) 171 silly pacote version manifest for [email protected] fetched in 102ms 172 http fetch GET 304 https://registry.npmjs.org/terser 92ms (from cache) 173 silly pacote version manifest for [email protected] fetched in 95ms 174 http fetch GET 304 https://registry.npmjs.org/terser-webpack-plugin 124ms (from cache) 175 silly pacote version manifest for [email protected] fetched in 129ms 176 http fetch GET 304 https://registry.npmjs.org/text-table 160ms (from cache) 177 silly pacote version manifest for [email protected] fetched in 162ms 178 http fetch GET 304 https://registry.npmjs.org/tree-kill 241ms (from cache) 179 silly pacote version manifest for [email protected] fetched in 242ms 180 silly pacote version manifest for [email protected] fetched in 1ms 181 http fetch GET 200 https://registry.npmjs.org/license-webpack-plugin 26155ms 182 silly pacote version manifest for [email protected] fetched in 26157ms 183 http fetch GET 304 https://registry.npmjs.org/stylus 1401ms (from cache) 184 silly pacote version manifest for [email protected] fetched in 1404ms 185 http fetch GET 304 https://registry.npmjs.org/webpack-dev-middleware 1355ms (from cache) 186 silly pacote version manifest for [email protected] fetched in 1357ms 187 http fetch GET 200 https://registry.npmjs.org/@angular/router/-/router-12.2.2.tgz 13809ms 188 silly pacote range manifest for @angular/router@~12.2.0 fetched in 276294ms 189 http fetch GET 304 https://registry.npmjs.org/webpack-merge 621ms (from cache) 190 silly pacote version manifest for [email protected] fetched in 625ms 191 http fetch GET 304 https://registry.npmjs.org/webpack-subresource-integrity 484ms (from cache) 192 http fetch GET 304 https://registry.npmjs.org/istanbul-lib-coverage 458ms (from cache) 193 silly pacote version manifest for [email protected] fetched in 487ms 194 silly pacote range manifest for istanbul-lib-coverage@^3.0.0 fetched in 461ms 195 http fetch GET 200 https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1202.2.tgz 7921ms 196 silly pacote version manifest for @angular-devkit/[email protected] fetched in 272295ms 197 http fetch GET 304 https://registry.npmjs.org/istanbul-lib-report 178ms (from cache) 198 silly pacote range manifest for istanbul-lib-report@^3.0.0 fetched in 180ms 199 http fetch GET 304 https://registry.npmjs.org/istanbul-lib-instrument 210ms (from cache) 200 silly pacote range manifest for istanbul-lib-instrument@^4.0.1 fetched in 212ms 201 silly pacote range manifest for minimatch@^3.0.4 fetched in 2ms 202 silly pacote range manifest for @babel/core@^7.8.6 fetched in 2ms 203 http fetch GET 304 https://registry.npmjs.org/istanbul-lib-source-maps 129ms (from cache) 204 silly pacote range manifest for istanbul-lib-source-maps@^4.0.0 fetched in 132ms 205 http fetch GET 304 https://registry.npmjs.org/istanbul-reports 109ms (from cache) 206 silly pacote range manifest for istanbul-reports@^3.0.0 fetched in 111ms 207 http fetch GET 304 https://registry.npmjs.org/@babel%2ftypes 95ms (from cache) 208 silly pacote range manifest for @babel/types@^7.8.6 fetched in 97ms 209 http fetch GET 304 https://registry.npmjs.org/minimist 130ms (from cache) 210 http fetch GET 304 https://registry.npmjs.org/canonical-path 109ms (from cache) 211 http fetch GET 304 https://registry.npmjs.org/reflect-metadata 147ms (from cache) 212 silly pacote range manifest for minimist@^1.2.0 fetched in 134ms 213 silly pacote version manifest for [email protected] fetched in 113ms 214 silly pacote range manifest for reflect-metadata@^0.1.2 fetched in 155ms 215 http fetch GET 304 https://registry.npmjs.org/convert-source-map 108ms (from cache) 216 silly pacote range manifest for convert-source-map@^1.5.1 fetched in 110ms 217 http fetch GET 304 https://registry.npmjs.org/chokidar 112ms (from cache) 218 silly pacote range manifest for chokidar@^3.0.0 fetched in 116ms 219 silly pacote range manifest for semver@^7.0.0 fetched in 3ms 220 http fetch GET 304 https://registry.npmjs.org/dependency-graph 132ms (from cache) 221 silly pacote range manifest for dependency-graph@^0.11.0 fetched in 134ms 222 http fetch GET 304 https://registry.npmjs.org/magic-string 95ms (from cache) 223 silly pacote range manifest for magic-string@^0.25.0 fetched in 98ms 224 silly pacote range manifest for tslib@^2.2.0 fetched in 1ms 225 http fetch GET 304 https://registry.npmjs.org/source-map 103ms (from cache) 226 silly pacote range manifest for source-map@^0.6.1 fetched in 106ms 227 http fetch GET 304 https://registry.npmjs.org/sourcemap-codec 95ms (from cache) 228 silly pacote range manifest for sourcemap-codec@^1.4.8 fetched in 97ms 229 http fetch GET 304 https://registry.npmjs.org/yargs 103ms (from cache) 230 silly pacote range manifest for yargs@^17.0.0 fetched in 108ms 231 silly pacote range manifest for chokidar@^3.5.1 fetched in 2ms 232 http fetch GET 304 https://registry.npmjs.org/body-parser 101ms (from cache) 233 silly pacote range manifest for body-parser@^1.19.0 fetched in 104ms 234 http fetch GET 304 https://registry.npmjs.org/braces 150ms (from cache) 235 silly pacote range manifest for braces@^3.0.2 fetched in 153ms 236 http fetch GET 304 https://registry.npmjs.org/colors 96ms (from cache) 237 silly pacote range manifest for colors@^1.4.0 fetched in 100ms 238 http fetch GET 304 https://registry.npmjs.org/connect 101ms (from cache) 239 silly pacote range manifest for connect@^3.7.0 fetched in 104ms 240 silly pacote range manifest for glob@^7.1.7 fetched in 3ms 241 http fetch GET 304 https://registry.npmjs.org/di 138ms (from cache) 242 silly pacote range manifest for di@^0.0.1 fetched in 140ms 243 http fetch GET 304 https://registry.npmjs.org/dom-serialize 117ms (from cache) 244 silly pacote range manifest for dom-serialize@^2.2.1 fetched in 119ms 245 http fetch GET 200 https://registry.npmjs.org/webpack-dev-server 3399ms 246 silly pacote version manifest for [email protected] fetched in 3405ms 247 http fetch GET 304 https://registry.npmjs.org/isbinaryfile 123ms (from cache) 248 silly pacote range manifest for isbinaryfile@^4.0.8 fetched in 126ms 249 http fetch GET 304 https://registry.npmjs.org/lodash 115ms (from cache) 250 silly pacote range manifest for lodash@^4.17.21 fetched in 116ms 251 http fetch GET 304 https://registry.npmjs.org/log4js 90ms (from cache) 252 silly pacote range manifest for log4js@^6.3.0 fetched in 93ms 253 http fetch GET 304 https://registry.npmjs.org/mime 93ms (from cache) 254 silly pacote range manifest for mime@^2.5.2 fetched in 96ms 255 http fetch GET 304 https://registry.npmjs.org/qjobs 99ms (from cache) 256 silly pacote range manifest for qjobs@^1.2.0 fetched in 101ms 257 http fetch GET 304 https://registry.npmjs.org/range-parser 106ms (from cache) 258 silly pacote range manifest for range-parser@^1.2.1 fetched in 108ms 259 http fetch GET 304 https://registry.npmjs.org/rimraf 105ms (from cache) 260 silly pacote range manifest for rimraf@^3.0.2 fetched in 107ms 261 http fetch GET 304 https://registry.npmjs.org/tmp 90ms (from cache) 262 silly pacote range manifest for tmp@^0.2.1 fetched in 91ms 263 http fetch GET 304 https://registry.npmjs.org/graceful-fs 696ms (from cache) 264 silly pacote range manifest for graceful-fs@^4.2.6 fetched in 700ms 265 silly pacote range manifest for yargs@^16.1.1 fetched in 3ms 266 http fetch GET 304 https://registry.npmjs.org/ua-parser-js 86ms (from cache) 267 silly pacote range manifest for ua-parser-js@^0.7.28 fetched in 89ms 268 silly pacote range manifest for jasmine-core@^3.6.0 fetched in 2ms 269 silly pacote range manifest for tslib@^1.9.0 fetched in 3ms 270 silly pacote range manifest for tslib@^2.0.0 fetched in 1ms 271 http fetch GET 304 https://registry.npmjs.org/which 113ms (from cache) 272 silly pacote range manifest for which@^1.2.1 fetched in 116ms 273 silly pacote version manifest for [email protected] fetched in 1ms 274 silly pacote version manifest for [email protected] fetched in 1ms 275 silly pacote version manifest for [email protected] fetched in 6ms 276 http fetch GET 304 https://registry.npmjs.org/ajv 107ms (from cache) 277 silly pacote version manifest for [email protected] fetched in 112ms 278 http fetch GET 304 https://registry.npmjs.org/http-proxy 859ms (from cache) 279 silly pacote range manifest for http-proxy@^1.18.1 fetched in 861ms 280 http fetch GET 304 https://registry.npmjs.org/fast-json-stable-stringify 84ms (from cache) 281 silly pacote version manifest for [email protected] fetched in 85ms 282 silly pacote version manifest for [email protected] fetched in 1ms 283 http fetch GET 304 https://registry.npmjs.org/ajv-formats 110ms (from cache) 284 silly pacote version manifest for [email protected] fetched in 113ms 285 silly pacote range manifest for @babel/generator@^7.14.8 fetched in 3ms 286 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-compilation-targets 118ms (from cache) 287 silly pacote range manifest for @babel/helper-compilation-targets@^7.14.5 fetched in 120ms 288 http fetch GET 304 https://registry.npmjs.org/@babel%2fcode-frame 139ms (from cache) 289 silly pacote range manifest for @babel/code-frame@^7.14.5 fetched in 141ms 290 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-module-transforms 101ms (from cache) 291 silly pacote range manifest for @babel/helper-module-transforms@^7.14.8 fetched in 103ms 292 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelpers 120ms (from cache) 293 silly pacote range manifest for @babel/helpers@^7.14.8 fetched in 124ms 294 silly pacote range manifest for @babel/template@^7.14.5 fetched in 1ms 295 http fetch GET 304 https://registry.npmjs.org/socket.io 845ms (from cache) 296 silly pacote range manifest for socket.io@^3.1.0 fetched in 848ms 297 silly pacote range manifest for @babel/types@^7.14.8 fetched in 3ms 298 silly pacote range manifest for convert-source-map@^1.7.0 fetched in 2ms 299 http fetch GET 304 https://registry.npmjs.org/@babel%2fparser 106ms (from cache) 300 silly pacote range manifest for @babel/parser@^7.14.8 fetched in 110ms 301 http fetch GET 304 https://registry.npmjs.org/debug 88ms (from cache) 302 silly pacote range manifest for debug@^4.1.0 fetched in 90ms 303 http fetch GET 304 https://registry.npmjs.org/@babel%2ftraverse 153ms (from cache) 304 silly pacote range manifest for @babel/traverse@^7.14.8 fetched in 157ms 305 silly pacote range manifest for semver@^6.3.0 fetched in 3ms 306 silly pacote range manifest for source-map@^0.5.0 fetched in 1ms 307 http fetch GET 304 https://registry.npmjs.org/gensync 97ms (from cache) 308 silly pacote range manifest for gensync@^1.0.0-beta.2 fetched in 99ms 309 silly pacote range manifest for @babel/types@^7.14.5 fetched in 1ms 310 http fetch GET 304 https://registry.npmjs.org/json5 97ms (from cache) 311 silly pacote range manifest for json5@^2.1.2 fetched in 99ms 312 http fetch GET 304 https://registry.npmjs.org/jsesc 143ms (from cache) 313 silly pacote range manifest for jsesc@^2.5.1 fetched in 146ms 314 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-plugin-utils 130ms (from cache) 315 silly pacote range manifest for @babel/helper-plugin-utils@^7.14.5 fetched in 131ms 316 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-remap-async-to-generator 110ms (from cache) 317 silly pacote range manifest for @babel/helper-remap-async-to-generator@^7.14.5 fetched in 112ms 318 http fetch GET 304 https://registry.npmjs.org/babel-plugin-polyfill-corejs2 117ms (from cache) 319 silly pacote range manifest for babel-plugin-polyfill-corejs2@^0.2.2 fetched in 119ms 320 http fetch GET 304 https://registry.npmjs.org/babel-plugin-polyfill-corejs3 110ms (from cache) 321 silly pacote range manifest for babel-plugin-polyfill-corejs3@^0.2.2 fetched in 112ms 322 http fetch GET 304 https://registry.npmjs.org/babel-plugin-polyfill-regenerator 134ms (from cache) 323 silly pacote range manifest for babel-plugin-polyfill-regenerator@^0.2.2 fetched in 137ms 324 http fetch GET 304 https://registry.npmjs.org/@babel%2fcompat-data 140ms (from cache) 325 silly pacote range manifest for @babel/compat-data@^7.14.7 fetched in 141ms 326 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-validator-option 136ms (from cache) 327 silly pacote range manifest for @babel/helper-validator-option@^7.14.5 fetched in 138ms 328 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-bugfix-v8-spread-parameters-in-optional-chaining 169ms (from cache) 329 silly pacote range manifest for @babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.14.5 fetched in 172ms 330 silly pacote range manifest for @babel/plugin-proposal-async-generator-functions@^7.14.7 fetched in 2ms 331 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-class-properties 395ms (from cache) 332 silly pacote range manifest for @babel/plugin-proposal-class-properties@^7.14.5 fetched in 397ms 333 http fetch GET 304 https://registry.npmjs.org/@jridgewell%2fresolve-uri 3224ms (from cache) 334 silly pacote version manifest for @jridgewell/[email protected] fetched in 3226ms 335 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-class-static-block 1219ms (from cache) 336 silly pacote range manifest for @babel/plugin-proposal-class-static-block@^7.14.5 fetched in 1220ms 337 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-syntax-async-generators 2484ms (from cache) 338 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-module-imports 2479ms (from cache) 339 silly pacote range manifest for @babel/plugin-syntax-async-generators@^7.8.4 fetched in 2486ms 340 silly pacote range manifest for @babel/helper-module-imports@^7.14.5 fetched in 2482ms 341 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-dynamic-import 358ms (from cache) 342 silly pacote range manifest for @babel/plugin-proposal-dynamic-import@^7.14.5 fetched in 360ms 343 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-export-namespace-from 319ms (from cache) 344 silly pacote range manifest for @babel/plugin-proposal-export-namespace-from@^7.14.5 fetched in 321ms 345 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-json-strings 314ms (from cache) 346 silly pacote range manifest for @babel/plugin-proposal-json-strings@^7.14.5 fetched in 317ms 347 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-logical-assignment-operators 408ms (from cache) 348 silly pacote range manifest for @babel/plugin-proposal-logical-assignment-operators@^7.14.5 fetched in 410ms 349 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-nullish-coalescing-operator 486ms (from cache) 350 silly pacote range manifest for @babel/plugin-proposal-nullish-coalescing-operator@^7.14.5 fetched in 488ms 351 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-numeric-separator 481ms (from cache) 352 silly pacote range manifest for @babel/plugin-proposal-numeric-separator@^7.14.5 fetched in 483ms 353 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-optional-catch-binding 439ms (from cache) 354 silly pacote range manifest for @babel/plugin-proposal-optional-catch-binding@^7.14.5 fetched in 441ms 355 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-optional-chaining 336ms (from cache) 356 silly pacote range manifest for @babel/plugin-proposal-optional-chaining@^7.14.5 fetched in 338ms 357 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-private-methods 389ms (from cache) 358 silly pacote range manifest for @babel/plugin-proposal-private-methods@^7.14.5 fetched in 390ms 359 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-private-property-in-object 414ms (from cache) 360 silly pacote range manifest for @babel/plugin-proposal-private-property-in-object@^7.14.5 fetched in 415ms 361 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-unicode-property-regex 377ms (from cache) 362 silly pacote range manifest for @babel/plugin-proposal-unicode-property-regex@^7.14.5 fetched in 381ms 363 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-syntax-class-properties 398ms (from cache) 364 silly pacote range manifest for @babel/plugin-syntax-class-properties@^7.12.13 fetched in 400ms 365 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-syntax-class-static-block 414ms (from cache) 366 silly pacote range manifest for @babel/plugin-syntax-class-static-block@^7.14.5 fetched in 415ms 367 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-syntax-dynamic-import 554ms (from cache) 368 silly pacote range manifest for @babel/plugin-syntax-dynamic-import@^7.8.3 fetched in 556ms 369 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-syntax-export-namespace-from 560ms (from cache) 370 silly pacote range manifest for @babel/plugin-syntax-export-namespace-from@^7.8.3 fetched in 562ms 371 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-object-rest-spread 2132ms (from cache) 372 silly pacote range manifest for @babel/plugin-proposal-object-rest-spread@^7.14.7 fetched in 2134ms 373 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-syntax-logical-assignment-operators 604ms (from cache) 374 silly pacote range manifest for @babel/plugin-syntax-logical-assignment-operators@^7.10.4 fetched in 606ms 375 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-syntax-nullish-coalescing-operator 567ms (from cache) 376 silly pacote range manifest for @babel/plugin-syntax-nullish-coalescing-operator@^7.8.3 fetched in 569ms 377 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-syntax-numeric-separator 419ms (from cache) 378 silly pacote range manifest for @babel/plugin-syntax-numeric-separator@^7.10.4 fetched in 421ms 379 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-syntax-object-rest-spread 514ms (from cache) 380 silly pacote range manifest for @babel/plugin-syntax-object-rest-spread@^7.8.3 fetched in 516ms 381 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-syntax-optional-catch-binding 534ms (from cache) 382 silly pacote range manifest for @babel/plugin-syntax-optional-catch-binding@^7.8.3 fetched in 536ms 383 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-syntax-optional-chaining 455ms (from cache) 384 silly pacote range manifest for @babel/plugin-syntax-optional-chaining@^7.8.3 fetched in 458ms 385 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-syntax-private-property-in-object 669ms (from cache) 386 silly pacote range manifest for @babel/plugin-syntax-private-property-in-object@^7.14.5 fetched in 671ms 387 silly pacote range manifest for @babel/plugin-transform-async-to-generator@^7.14.5 fetched in 2ms 388 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-syntax-json-strings 2103ms (from cache) 389 silly pacote range manifest for @babel/plugin-syntax-json-strings@^7.8.3 fetched in 2106ms 390 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-block-scoped-functions 224ms (from cache) 391 silly pacote range manifest for @babel/plugin-transform-block-scoped-functions@^7.14.5 fetched in 226ms 392 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-block-scoping 248ms (from cache) 393 silly pacote range manifest for @babel/plugin-transform-block-scoping@^7.14.5 fetched in 251ms 394 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-syntax-top-level-await 848ms (from cache) 395 silly pacote range manifest for @babel/plugin-syntax-top-level-await@^7.14.5 fetched in 851ms 396 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-classes 150ms (from cache) 397 silly pacote range manifest for @babel/plugin-transform-classes@^7.14.5 fetched in 152ms 398 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-computed-properties 120ms (from cache) 399 silly pacote range manifest for @babel/plugin-transform-computed-properties@^7.14.5 fetched in 122ms 400 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-destructuring 186ms (from cache) 401 silly pacote range manifest for @babel/plugin-transform-destructuring@^7.14.7 fetched in 189ms 402 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-dotall-regex 152ms (from cache) 403 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-duplicate-keys 130ms (from cache) 404 silly pacote range manifest for @babel/plugin-transform-dotall-regex@^7.14.5 fetched in 156ms 405 silly pacote range manifest for @babel/plugin-transform-duplicate-keys@^7.14.5 fetched in 133ms 406 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-exponentiation-operator 131ms (from cache) 407 silly pacote range manifest for @babel/plugin-transform-exponentiation-operator@^7.14.5 fetched in 133ms 408 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-for-of 135ms (from cache) 409 silly pacote range manifest for @babel/plugin-transform-for-of@^7.14.5 fetched in 137ms 410 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-function-name 146ms (from cache) 411 silly pacote range manifest for @babel/plugin-transform-function-name@^7.14.5 fetched in 147ms 412 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-literals 124ms (from cache) 413 silly pacote range manifest for @babel/plugin-transform-literals@^7.14.5 fetched in 126ms 414 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-member-expression-literals 116ms (from cache) 415 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-modules-amd 104ms (from cache) 416 silly pacote range manifest for @babel/plugin-transform-member-expression-literals@^7.14.5 fetched in 118ms 417 silly pacote range manifest for @babel/plugin-transform-modules-amd@^7.14.5 fetched in 107ms 418 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-modules-commonjs 121ms (from cache) 419 silly pacote range manifest for @babel/plugin-transform-modules-commonjs@^7.14.5 fetched in 123ms 420 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-modules-systemjs 162ms (from cache) 421 silly pacote range manifest for @babel/plugin-transform-modules-systemjs@^7.14.5 fetched in 165ms 422 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-modules-umd 180ms (from cache) 423 silly pacote range manifest for @babel/plugin-transform-modules-umd@^7.14.5 fetched in 183ms 424 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-named-capturing-groups-regex 164ms (from cache) 425 silly pacote range manifest for @babel/plugin-transform-named-capturing-groups-regex@^7.14.7 fetched in 165ms 426 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-object-super 225ms (from cache) 427 silly pacote range manifest for @babel/plugin-transform-object-super@^7.14.5 fetched in 226ms 428 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-arrow-functions 1816ms (from cache) 429 silly pacote range manifest for @babel/plugin-transform-arrow-functions@^7.14.5 fetched in 1817ms 430 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-property-literals 365ms (from cache) 431 silly pacote range manifest for @babel/plugin-transform-property-literals@^7.14.5 fetched in 368ms 432 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-regenerator 282ms (from cache) 433 silly pacote range manifest for @babel/plugin-transform-regenerator@^7.14.5 fetched in 284ms 434 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-new-target 782ms (from cache) 435 silly pacote range manifest for @babel/plugin-transform-new-target@^7.14.5 fetched in 784ms 436 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-reserved-words 259ms (from cache) 437 silly pacote range manifest for @babel/plugin-transform-reserved-words@^7.14.5 fetched in 262ms 438 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-shorthand-properties 246ms (from cache) 439 silly pacote range manifest for @babel/plugin-transform-shorthand-properties@^7.14.5 fetched in 248ms 440 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-sticky-regex 335ms (from cache) 441 silly pacote range manifest for @babel/plugin-transform-sticky-regex@^7.14.5 fetched in 337ms 442 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-template-literals 1214ms (from cache) 443 silly pacote range manifest for @babel/plugin-transform-template-literals@^7.14.5 fetched in 1216ms 444 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-typeof-symbol 1101ms (from cache) 445 silly pacote range manifest for @babel/plugin-transform-typeof-symbol@^7.14.5 fetched in 1104ms 446 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-parameters 2255ms (from cache) 447 silly pacote range manifest for @babel/plugin-transform-parameters@^7.14.5 fetched in 2258ms 448 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-spread 1581ms (from cache) 449 silly pacote range manifest for @babel/plugin-transform-spread@^7.14.6 fetched in 1583ms 450 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-unicode-escapes 346ms (from cache) 451 silly pacote range manifest for @babel/plugin-transform-unicode-escapes@^7.14.5 fetched in 348ms 452 silly pacote range manifest for regenerator-runtime@^0.13.4 fetched in 2ms 453 silly pacote range manifest for @babel/parser@^7.14.5 fetched in 1ms 454 silly pacote range manifest for istanbul-lib-instrument@^4.0.3 fetched in 1ms 455 silly pacote range manifest for loader-utils@^2.0.0 fetched in 2ms 456 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-unicode-regex 1167ms (from cache) 457 silly pacote range manifest for @babel/plugin-transform-unicode-regex@^7.14.5 fetched in 1169ms 458 http fetch GET 304 https://registry.npmjs.org/@babel%2fpreset-modules 2071ms (from cache) 459 silly pacote range manifest for @babel/preset-modules@^0.1.4 fetched in 2073ms 460 silly pacote range manifest for find-cache-dir@^3.3.1 fetched in 2ms 461 silly pacote range manifest for loader-utils@^1.4.0 fetched in 1ms 462 http fetch GET 304 https://registry.npmjs.org/merge-source-map 1936ms (from cache) 463 silly pacote range manifest for merge-source-map@^1.1.0 fetched in 1938ms 464 http fetch GET 304 https://registry.npmjs.org/schema-utils 1007ms (from cache) 465 silly pacote range manifest for schema-utils@^2.7.0 fetched in 1009ms 466 silly pacote range manifest for caniuse-lite@^1.0.30001251 fetched in 1ms 467 http fetch GET 304 https://registry.npmjs.org/schema-utils 283ms (from cache) 468 http fetch GET 304 https://registry.npmjs.org/make-dir 316ms (from cache) 469 silly pacote range manifest for schema-utils@^2.6.5 fetched in 284ms 470 silly pacote range manifest for make-dir@^3.1.0 fetched in 318ms 471 http fetch GET 304 https://registry.npmjs.org/colorette 286ms (from cache) 472 silly pacote range manifest for colorette@^1.3.0 fetched in 289ms 473 http fetch GET 304 https://registry.npmjs.org/escalade 2323ms (from cache) 474 silly pacote range manifest for escalade@^3.1.1 fetched in 2325ms 475 http fetch GET 304 https://registry.npmjs.org/@npmcli%2fmove-file 320ms (from cache) 476 silly pacote range manifest for @npmcli/move-file@^1.0.1 fetched in 322ms 477 http fetch GET 304 https://registry.npmjs.org/chownr 89ms (from cache) 478 silly pacote range manifest for chownr@^2.0.0 fetched in 90ms 479 http fetch GET 304 https://registry.npmjs.org/fs-minipass 113ms (from cache) 480 silly pacote range manifest for fs-minipass@^2.0.0 fetched in 115ms 481 silly pacote range manifest for glob@^7.1.4 fetched in 1ms 482 http fetch GET 304 https://registry.npmjs.org/infer-owner 906ms (from cache) 483 silly pacote range manifest for infer-owner@^1.0.4 fetched in 908ms 484 http fetch GET 304 https://registry.npmjs.org/lru-cache 1634ms (from cache) 485 silly pacote range manifest for lru-cache@^6.0.0 fetched in 1637ms 486 http fetch GET 304 https://registry.npmjs.org/minipass 182ms (from cache) 487 silly pacote range manifest for minipass@^3.1.1 fetched in 184ms 488 http fetch GET 304 https://registry.npmjs.org/minipass-collect 111ms (from cache) 489 silly pacote range manifest for minipass-collect@^1.0.2 fetched in 114ms 490 http fetch GET 304 https://registry.npmjs.org/minipass-flush 195ms (from cache) 491 silly pacote range manifest for minipass-flush@^1.0.5 fetched in 197ms 492 http fetch GET 304 https://registry.npmjs.org/minipass-pipeline 147ms (from cache) 493 silly pacote range manifest for minipass-pipeline@^1.2.2 fetched in 149ms 494 http fetch GET 304 https://registry.npmjs.org/mkdirp 136ms (from cache) 495 silly pacote range manifest for mkdirp@^1.0.3 fetched in 138ms 496 http fetch GET 304 https://registry.npmjs.org/p-map 295ms (from cache) 497 silly pacote range manifest for p-map@^4.0.0 fetched in 297ms 498 http fetch GET 304 https://registry.npmjs.org/promise-inflight 257ms (from cache) 499 silly pacote range manifest for promise-inflight@^1.0.1 fetched in 260ms 500 http fetch GET 304 https://registry.npmjs.org/ssri 244ms (from cache) 501 silly pacote range manifest for ssri@^8.0.1 fetched in 247ms 502 http fetch GET 200 https://registry.npmjs.org/webpack 24646ms 503 silly pacote version manifest for [email protected] fetched in 24662ms 504 http fetch GET 304 https://registry.npmjs.org/unique-filename 245ms (from cache) 505 silly pacote range manifest for unique-filename@^1.1.1 fetched in 247ms 506 http fetch GET 304 https://registry.npmjs.org/fast-glob 2116ms (from cache) 507 silly pacote range manifest for fast-glob@^3.2.5 fetched in 2118ms 508 http fetch GET 304 https://registry.npmjs.org/glob-parent 672ms (from cache) 509 silly pacote range manifest for glob-parent@^6.0.0 fetched in 674ms 510 http fetch GET 304 https://registry.npmjs.org/globby 172ms (from cache) 511 silly pacote range manifest for globby@^11.0.3 fetched in 177ms 512 http fetch GET 304 https://registry.npmjs.org/normalize-path 108ms (from cache) 513 silly pacote range manifest for normalize-path@^3.0.0 fetched in 111ms 514 http fetch GET 304 https://registry.npmjs.org/p-limit 161ms (from cache) 515 silly pacote range manifest for p-limit@^3.1.0 fetched in 163ms 516 silly pacote range manifest for schema-utils@^3.0.0 fetched in 2ms 517 http fetch GET 200 https://registry.npmjs.org/tar 3791ms 518 http fetch GET 304 https://registry.npmjs.org/serialize-javascript 308ms (from cache) 519 silly pacote range manifest for serialize-javascript@^6.0.0 fetched in 309ms 520 http fetch GET 200 https://registry.npmjs.org/tar/-/tar-6.1.10.tgz 557ms 521 silly pacote range manifest for tar@^6.0.2 fetched in 4356ms 522 http fetch GET 304 https://registry.npmjs.org/chalk 288ms (from cache) 523 silly pacote range manifest for chalk@^4.1.0 fetched in 291ms 524 http fetch GET 304 https://registry.npmjs.org/parse5 183ms (from cache) 525 silly pacote range manifest for parse5@^6.0.1 fetched in 185ms 526 http fetch GET 304 https://registry.npmjs.org/parse5-htmlparser2-tree-adapter 125ms (from cache) 527 silly pacote range manifest for parse5-htmlparser2-tree-adapter@^6.0.1 fetched in 127ms 528 http fetch GET 304 https://registry.npmjs.org/css 852ms (from cache) 529 silly pacote range manifest for css@^3.0.0 fetched in 854ms 530 http fetch GET 304 https://registry.npmjs.org/pretty-bytes 997ms (from cache) 531 silly pacote range manifest for pretty-bytes@^5.3.0 fetched in 1000ms 532 silly pacote range manifest for postcss@^8.2.15 fetched in 1ms 533 http fetch GET 304 https://registry.npmjs.org/icss-utils 896ms (from cache) 534 silly pacote range manifest for icss-utils@^5.1.0 fetched in 898ms 535 http fetch GET 304 https://registry.npmjs.org/postcss-modules-extract-imports 419ms (from cache) 536 silly pacote range manifest for postcss-modules-extract-imports@^3.0.0 fetched in 421ms 537 http fetch GET 304 https://registry.npmjs.org/postcss-modules-local-by-default 234ms (from cache) 538 silly pacote range manifest for postcss-modules-local-by-default@^4.0.0 fetched in 236ms 539 http fetch GET 304 https://registry.npmjs.org/postcss-modules-scope 225ms (from cache) 540 silly pacote range manifest for postcss-modules-scope@^3.0.0 fetched in 227ms 541 http fetch GET 304 https://registry.npmjs.org/postcss-modules-values 284ms (from cache) 542 http fetch GET 304 https://registry.npmjs.org/postcss-value-parser 280ms (from cache) 543 silly pacote range manifest for postcss-modules-values@^4.0.0 fetched in 286ms 544 silly pacote range manifest for postcss-value-parser@^4.1.0 fetched in 282ms 545 silly pacote range manifest for semver@^7.3.5 fetched in 1ms 546 http fetch GET 304 https://registry.npmjs.org/jest-worker 242ms (from cache) 547 silly pacote range manifest for jest-worker@^27.0.2 fetched in 246ms 548 silly pacote range manifest for p-limit@^3.0.2 fetched in 1ms 549 silly pacote range manifest for postcss@^8.3.5 fetched in 3ms 550 http fetch GET 200 https://registry.npmjs.org/cssnano 3533ms 551 http fetch GET 200 https://registry.npmjs.org/cssnano/-/cssnano-5.0.8.tgz 187ms 552 silly pacote range manifest for cssnano@^5.0.6 fetched in 3725ms 553 http fetch GET 200 https://registry.npmjs.org/node-releases 18909ms 554 http fetch GET 200 https://registry.npmjs.org/node-releases/-/node-releases-1.1.75.tgz 1241ms 555 silly pacote range manifest for node-releases@^1.1.75 fetched in 20155ms 556 http fetch GET 304 https://registry.npmjs.org/@yarnpkg%2flockfile 349ms (from cache) 557 silly pacote version manifest for @yarnpkg/[email protected] fetched in 351ms 558 silly pacote version manifest for [email protected] fetched in 1ms 559 http fetch GET 304 https://registry.npmjs.org/ini 653ms (from cache) 560 silly pacote version manifest for [email protected] fetched in 655ms 561 http fetch GET 304 https://registry.npmjs.org/jsonc-parser 225ms (from cache) 562 silly pacote version manifest for [email protected] fetched in 227ms 563 http fetch GET 304 https://registry.npmjs.org/npm-package-arg 177ms (from cache) 564 silly pacote version manifest for [email protected] fetched in 179ms 565 http fetch GET 304 https://registry.npmjs.org/npm-pick-manifest 183ms (from cache) 566 silly pacote version manifest for [email protected] fetched in 186ms 567 http fetch GET 304 https://registry.npmjs.org/pacote 201ms (from cache) 568 silly pacote version manifest for [email protected] fetched in 204ms 569 http fetch GET 304 https://registry.npmjs.org/resolve 144ms (from cache) 570 silly pacote version manifest for [email protected] fetched in 146ms 571 http fetch GET 304 https://registry.npmjs.org/symbol-observable 122ms (from cache) 572 silly pacote version manifest for [email protected] fetched in 124ms 573 http fetch GET 304 https://registry.npmjs.org/uuid 159ms (from cache) 574 silly pacote version manifest for [email protected] fetched in 160ms 575 http fetch GET 304 https://registry.npmjs.org/commondir 1120ms (from cache) 576 silly pacote range manifest for commondir@^1.0.1 fetched in 1122ms 577 silly pacote range manifest for make-dir@^3.0.2 fetched in 1ms 578 http fetch GET 304 https://registry.npmjs.org/pkg-dir 2196ms (from cache) 579 silly pacote range manifest for pkg-dir@^4.1.0 fetched in 2198ms 580 http fetch GET 304 https://registry.npmjs.org/fs.realpath 325ms (from cache) 581 silly pacote range manifest for fs.realpath@^1.0.0 fetched in 327ms 582 http fetch GET 200 https://registry.npmjs.org/@schematics%2fangular 8825ms 583 http fetch GET 304 https://registry.npmjs.org/inflight 303ms (from cache) 584 silly pacote range manifest for inflight@^1.0.4 fetched in 304ms 585 http fetch GET 200 https://registry.npmjs.org/core-js-compat 28982ms 586 http fetch GET 304 https://registry.npmjs.org/inherits 327ms (from cache) 587 silly pacote range manifest for inherits@2 fetched in 329ms 588 http fetch GET 304 https://registry.npmjs.org/once 510ms (from cache) 589 silly pacote range manifest for once@^1.3.0 fetched in 511ms 590 http fetch GET 304 https://registry.npmjs.org/path-is-absolute 428ms (from cache) 591 silly pacote range manifest for path-is-absolute@^1.0.0 fetched in 430ms 592 http fetch GET 200 https://registry.npmjs.org/@angular/compiler/-/compiler-12.2.2.tgz 319135ms 593 silly pacote range manifest for @angular/compiler@~12.2.0 fetched in 321152ms 594 silly pacote range manifest for debug@4 fetched in 0ms 595 http fetch GET 304 https://registry.npmjs.org/agent-base 419ms (from cache) 596 silly pacote range manifest for agent-base@6 fetched in 422ms 597 silly pacote range manifest for chalk@^4.1.1 fetched in 1ms 598 http fetch GET 304 https://registry.npmjs.org/ansi-escapes 290ms (from cache) 599 silly pacote range manifest for ansi-escapes@^4.2.1 fetched in 293ms 600 http fetch GET 304 https://registry.npmjs.org/cli-cursor 255ms (from cache) 601 silly pacote range manifest for cli-cursor@^3.1.0 fetched in 258ms 602 http fetch GET 304 https://registry.npmjs.org/cli-width 181ms (from cache) 603 silly pacote range manifest for cli-width@^3.0.0 fetched in 182ms 604 http fetch GET 304 https://registry.npmjs.org/external-editor 178ms (from cache) 605 silly pacote range manifest for external-editor@^3.0.3 fetched in 180ms 606 http fetch GET 304 https://registry.npmjs.org/figures 209ms (from cache) 607 silly pacote range manifest for figures@^3.0.0 fetched in 210ms 608 silly pacote range manifest for ora@^5.3.0 fetched in 1ms 609 http fetch GET 304 https://registry.npmjs.org/mute-stream 189ms (from cache) 610 silly pacote version manifest for [email protected] fetched in 190ms 611 silly pacote range manifest for rxjs@^7.2.0 fetched in 2ms 612 http fetch GET 304 https://registry.npmjs.org/run-async 187ms (from cache) 613 silly pacote range manifest for run-async@^2.4.0 fetched in 190ms 614 http fetch GET 304 https://registry.npmjs.org/string-width 353ms (from cache) 615 silly pacote range manifest for string-width@^4.1.0 fetched in 356ms 616 http fetch GET 304 https://registry.npmjs.org/strip-ansi 527ms (from cache) 617 silly pacote range manifest for strip-ansi@^6.0.0 fetched in 529ms 618 silly pacote range manifest for source-map-support@^0.5.5 fetched in 2ms 619 http fetch GET 304 https://registry.npmjs.org/through 649ms (from cache) 620 silly pacote range manifest for through@^2.3.6 fetched in 651ms 621 http fetch GET 304 https://registry.npmjs.org/copy-anything 601ms (from cache) 622 silly pacote range manifest for copy-anything@^2.0.1 fetched in 603ms 623 silly pacote range manifest for tslib@^1.10.0 fetched in 1ms 624 http fetch GET 304 https://registry.npmjs.org/errno 983ms (from cache) 625 silly pacote range manifest for errno@^0.1.1 fetched in 985ms 626 silly pacote range manifest for graceful-fs@^4.1.2 fetched in 1ms 627 http fetch GET 304 https://registry.npmjs.org/parse-node-version 1938ms (from cache) 628 silly pacote range manifest for parse-node-version@^1.0.1 fetched in 1940ms 629 silly pacote range manifest for make-dir@^2.1.0 fetched in 2ms 630 silly pacote range manifest for mime@^1.4.1 fetched in 2ms 631 http fetch GET 304 https://registry.npmjs.org/image-size 1085ms (from cache) 632 silly pacote range manifest for image-size@~0.5.0 fetched in 1087ms 633 silly pacote range manifest for source-map@~0.6.0 fetched in 1ms 634 http fetch GET 200 https://registry.npmjs.org/@angular-devkit%2fschematics 18299ms 635 http fetch GET 304 https://registry.npmjs.org/needle 734ms (from cache) 636 silly pacote range manifest for needle@^2.5.2 fetched in 737ms 637 http fetch GET 304 https://registry.npmjs.org/klona 826ms (from cache) 638 silly pacote range manifest for klona@^2.0.4 fetched in 828ms 639 http fetch GET 304 https://registry.npmjs.org/big.js 584ms (from cache) 640 silly pacote range manifest for big.js@^5.2.2 fetched in 585ms 641 http fetch GET 304 https://registry.npmjs.org/emojis-list 351ms (from cache) 642 silly pacote range manifest for emojis-list@^3.0.0 fetched in 353ms 643 http fetch GET 304 https://registry.npmjs.org/brace-expansion 777ms (from cache) 644 silly pacote range manifest for brace-expansion@^1.1.7 fetched in 779ms 645 http fetch GET 304 https://registry.npmjs.org/define-lazy-prop 1237ms (from cache) 646 silly pacote range manifest for define-lazy-prop@^2.0.0 fetched in 1239ms 647 http fetch GET 200 https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.16.2.tgz 10379ms 648 silly pacote range manifest for core-js-compat@^3.15.0 fetched in 39365ms 649 http fetch GET 304 https://registry.npmjs.org/is-wsl 2849ms (from cache) 650 silly pacote range manifest for is-wsl@^2.2.0 fetched in 2851ms 651 http fetch GET 304 https://registry.npmjs.org/is-docker 3749ms (from cache) 652 silly pacote range manifest for is-docker@^2.1.1 fetched in 3750ms 653 http fetch GET 200 https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-12.2.2.tgz 5427ms 654 silly pacote version manifest for @angular-devkit/[email protected] fetched in 23732ms 655 http fetch GET 304 https://registry.npmjs.org/bl 643ms (from cache) 656 silly pacote range manifest for bl@^4.1.0 fetched in 645ms 657 http fetch GET 304 https://registry.npmjs.org/cli-spinners 398ms (from cache) 658 silly pacote range manifest for cli-spinners@^2.5.0 fetched in 399ms 659 http fetch GET 304 https://registry.npmjs.org/is-interactive 285ms (from cache) 660 silly pacote range manifest for is-interactive@^1.0.0 fetched in 286ms 661 http fetch GET 304 https://registry.npmjs.org/is-unicode-supported 243ms (from cache) 662 silly pacote range manifest for is-unicode-supported@^0.1.0 fetched in 246ms 663 http fetch GET 304 https://registry.npmjs.org/log-symbols 226ms (from cache) 664 silly pacote range manifest for log-symbols@^4.1.0 fetched in 227ms 665 http fetch GET 304 https://registry.npmjs.org/wcwidth 255ms (from cache) 666 silly pacote range manifest for wcwidth@^1.0.1 fetched in 256ms 667 http fetch GET 304 https://registry.npmjs.org/parse5-sax-parser 870ms (from cache) 668 silly pacote range manifest for parse5-sax-parser@^6.0.1 fetched in 871ms 669 http fetch GET 304 https://registry.npmjs.org/eventemitter-asyncresource 928ms (from cache) 670 silly pacote range manifest for eventemitter-asyncresource@^1.0.0 fetched in 929ms 671 silly pacote range manifest for colorette@^1.2.2 fetched in 1ms 672 http fetch GET 304 https://registry.npmjs.org/hdr-histogram-js 952ms (from cache) 673 silly pacote range manifest for hdr-histogram-js@^2.0.1 fetched in 954ms 674 http fetch GET 304 https://registry.npmjs.org/hdr-histogram-percentiles-obj 980ms (from cache) 675 http fetch GET 304 https://registry.npmjs.org/nanoid 150ms (from cache) 676 silly pacote range manifest for hdr-histogram-percentiles-obj@^3.0.0 fetched in 982ms 677 silly pacote range manifest for nanoid@^3.1.23 fetched in 152ms 678 silly pacote range manifest for postcss-value-parser@^4.0.0 fetched in 2ms 679 silly pacote range manifest for resolve@^1.1.7 fetched in 2ms 680 http fetch GET 304 https://registry.npmjs.org/source-map-js 283ms (from cache) 681 silly pacote range manifest for source-map-js@^0.6.2 fetched in 285ms 682 http fetch GET 304 https://registry.npmjs.org/read-cache 192ms (from cache) 683 silly pacote range manifest for read-cache@^1.0.0 fetched in 193ms 684 silly pacote range manifest for browserslist@^4.6.4 fetched in 0ms 685 silly pacote range manifest for caniuse-lite@^1.0.30000981 fetched in 1ms 686 http fetch GET 304 https://registry.npmjs.org/css-blank-pseudo 286ms (from cache) 687 silly pacote range manifest for css-blank-pseudo@^0.1.4 fetched in 288ms 688 http fetch GET 304 https://registry.npmjs.org/nice-napi 1041ms (from cache) 689 silly pacote range manifest for nice-napi@^1.0.2 fetched in 1043ms 690 http fetch GET 304 https://registry.npmjs.org/css-has-pseudo 402ms (from cache) 691 silly pacote range manifest for css-has-pseudo@^0.10.0 fetched in 405ms 692 http fetch GET 200 https://registry.npmjs.org/cosmiconfig 986ms 693 http fetch GET 304 https://registry.npmjs.org/cssdb 876ms (from cache) 694 silly pacote range manifest for cssdb@^4.4.0 fetched in 880ms 695 silly pacote range manifest for postcss@^7.0.17 fetched in 3ms 696 http fetch GET 304 https://registry.npmjs.org/postcss-attribute-case-insensitive 1422ms (from cache) 697 silly pacote range manifest for postcss-attribute-case-insensitive@^4.0.1 fetched in 1424ms 698 http fetch GET 304 https://registry.npmjs.org/css-prefers-color-scheme 2503ms (from cache) 699 silly pacote range manifest for css-prefers-color-scheme@^3.1.1 fetched in 2505ms 700 http fetch GET 304 https://registry.npmjs.org/postcss-color-functional-notation 198ms (from cache) 701 silly pacote range manifest for postcss-color-functional-notation@^2.0.1 fetched in 201ms 702 http fetch GET 304 https://registry.npmjs.org/postcss-color-gray 206ms (from cache) 703 silly pacote range manifest for postcss-color-gray@^5.0.0 fetched in 207ms 704 http fetch GET 304 https://registry.npmjs.org/postcss-color-mod-function 1415ms (from cache) 705 silly pacote range manifest for postcss-color-mod-function@^3.0.3 fetched in 1417ms 706 http fetch GET 304 https://registry.npmjs.org/postcss-color-hex-alpha 1817ms (from cache) 707 silly pacote range manifest for postcss-color-hex-alpha@^5.0.3 fetched in 1819ms 708 http fetch GET 304 https://registry.npmjs.org/postcss-color-rebeccapurple 751ms (from cache) 709 silly pacote range manifest for postcss-color-rebeccapurple@^4.0.1 fetched in 753ms 710 http fetch GET 304 https://registry.npmjs.org/postcss-custom-media 1091ms (from cache) 711 silly pacote range manifest for postcss-custom-media@^7.0.8 fetched in 1092ms 712 http fetch GET 304 https://registry.npmjs.org/postcss-custom-properties 1635ms (from cache) 713 silly pacote range manifest for postcss-custom-properties@^8.0.11 fetched in 1637ms 714 http fetch GET 304 https://registry.npmjs.org/postcss-custom-selectors 1420ms (from cache) 715 silly pacote range manifest for postcss-custom-selectors@^5.1.2 fetched in 1422ms 716 http fetch GET 304 https://registry.npmjs.org/postcss-dir-pseudo-class 711ms (from cache) 717 silly pacote range manifest for postcss-dir-pseudo-class@^5.0.0 fetched in 714ms 718 http fetch GET 304 https://registry.npmjs.org/postcss-double-position-gradients 551ms (from cache) 719 silly pacote range manifest for postcss-double-position-gradients@^1.0.0 fetched in 554ms 720 http fetch GET 200 https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz 7313ms 721 silly pacote range manifest for cosmiconfig@^7.0.0 fetched in 8303ms 722 http fetch GET 304 https://registry.npmjs.org/postcss-env-function 586ms (from cache) 723 silly pacote range manifest for postcss-env-function@^2.0.2 fetched in 588ms 724 http fetch GET 200 https://registry.npmjs.org/@angular-devkit%2fbuild-webpack 200493ms 725 http fetch GET 304 https://registry.npmjs.org/postcss-focus-visible 914ms (from cache) 726 silly pacote range manifest for postcss-focus-visible@^4.0.0 fetched in 916ms 727 http fetch GET 304 https://registry.npmjs.org/postcss-focus-within 906ms (from cache) 728 silly pacote range manifest for postcss-focus-within@^3.0.0 fetched in 908ms 729 http fetch GET 304 https://registry.npmjs.org/postcss-font-variant 729ms (from cache) 730 silly pacote range manifest for postcss-font-variant@^4.0.0 fetched in 730ms 731 http fetch GET 304 https://registry.npmjs.org/postcss-image-set-function 224ms (from cache) 732 silly pacote range manifest for postcss-image-set-function@^3.0.1 fetched in 226ms 733 http fetch GET 304 https://registry.npmjs.org/postcss-initial 178ms (from cache) 734 silly pacote range manifest for postcss-initial@^3.0.0 fetched in 179ms 735 http fetch GET 200 https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1202.2.tgz 329ms 736 http fetch GET 304 https://registry.npmjs.org/postcss-gap-properties 317ms (from cache) 737 silly pacote range manifest for postcss-gap-properties@^2.0.0 fetched in 318ms 738 silly pacote version manifest for @angular-devkit/[email protected] fetched in 200831ms 739 http fetch GET 304 https://registry.npmjs.org/postcss-lab-function 129ms (from cache) 740 silly pacote range manifest for postcss-lab-function@^2.0.1 fetched in 132ms 741 http fetch GET 304 https://registry.npmjs.org/postcss-logical 94ms (from cache) 742 silly pacote range manifest for postcss-logical@^3.0.0 fetched in 96ms 743 http fetch GET 304 https://registry.npmjs.org/postcss-media-minmax 105ms (from cache) 744 silly pacote range manifest for postcss-media-minmax@^4.0.0 fetched in 106ms 745 http fetch GET 304 https://registry.npmjs.org/postcss-nesting 105ms (from cache) 746 silly pacote range manifest for postcss-nesting@^7.0.0 fetched in 108ms 747 http fetch GET 304 https://registry.npmjs.org/postcss-overflow-shorthand 101ms (from cache) 748 silly pacote range manifest for postcss-overflow-shorthand@^2.0.0 fetched in 103ms 749 http fetch GET 304 https://registry.npmjs.org/postcss-page-break 89ms (from cache) 750 silly pacote range manifest for postcss-page-break@^2.0.0 fetched in 91ms 751 http fetch GET 304 https://registry.npmjs.org/postcss-place 82ms (from cache) 752 silly pacote range manifest for postcss-place@^4.0.1 fetched in 84ms 753 http fetch GET 304 https://registry.npmjs.org/postcss-pseudo-class-any-link 114ms (from cache) 754 silly pacote range manifest for postcss-pseudo-class-any-link@^6.0.0 fetched in 116ms 755 http fetch GET 304 https://registry.npmjs.org/postcss-selector-matches 108ms (from cache) 756 silly pacote range manifest for postcss-selector-matches@^4.0.0 fetched in 111ms 757 silly pacote range manifest for postcss@^7.0.35 fetched in 2ms 758 silly pacote version manifest for [email protected] fetched in 2ms 759 http fetch GET 304 https://registry.npmjs.org/postcss-replace-overflow-wrap 126ms (from cache) 760 silly pacote range manifest for postcss-replace-overflow-wrap@^3.0.0 fetched in 128ms 761 silly pacote range manifest for chokidar@&gt;=3.0.0 &lt;4.0.0 fetched in 1ms 762 http fetch GET 304 https://registry.npmjs.org/adjust-sourcemap-loader 100ms (from cache) 763 silly pacote range manifest for adjust-sourcemap-loader@^4.0.0 fetched in 102ms 764 http fetch GET 304 https://registry.npmjs.org/postcss-selector-not 158ms (from cache) 765 silly pacote range manifest for postcss-selector-not@^4.0.0 fetched in 160ms 766 http fetch GET 304 https://registry.npmjs.org/neo-async 119ms (from cache) 767 http fetch GET 304 https://registry.npmjs.org/abab 113ms (from cache) 768 silly pacote range manifest for neo-async@^2.6.2 fetched in 121ms 769 silly pacote range manifest for abab@^2.0.5 fetched in 115ms 770 silly pacote range manifest for source-map@^0.6.0 fetched in 2ms 771 silly pacote range manifest for source-map@~0.7.2 fetched in 1ms 772 silly pacote range manifest for source-map-support@~0.5.19 fetched in 0ms 773 silly pacote range manifest for terser@^5.7.0 fetched in 2ms 774 http fetch GET 304 https://registry.npmjs.org/iconv-lite 135ms (from cache) 775 silly pacote range manifest for iconv-lite@^0.6.2 fetched in 137ms 776 http fetch GET 304 https://registry.npmjs.org/commander 80ms (from cache) 777 silly pacote range manifest for commander@^2.20.0 fetched in 83ms 778 http fetch GET 304 https://registry.npmjs.org/buffer-from 234ms (from cache) 779 silly pacote range manifest for buffer-from@^1.0.0 fetched in 236ms 780 silly pacote range manifest for debug@~3.1.0 fetched in 2ms 781 silly pacote range manifest for glob@^7.1.6 fetched in 1ms 782 silly pacote range manifest for mkdirp@~1.0.4 fetched in 1ms 783 http fetch GET 304 https://registry.npmjs.org/webpack-sources 197ms (from cache) 784 silly pacote range manifest for webpack-sources@^1.2.0 fetched in 199ms 785 http fetch GET 304 https://registry.npmjs.org/safer-buffer 1422ms (from cache) 786 silly pacote range manifest for safer-buffer@^2.1.2 fetched in 1423ms 787 silly pacote range manifest for source-map@^0.7.3 fetched in 1ms 788 http fetch GET 304 https://registry.npmjs.org/sax 1531ms (from cache) 789 silly pacote range manifest for sax@~1.2.4 fetched in 1533ms 790 http fetch GET 304 https://registry.npmjs.org/css-parse 1812ms (from cache) 791 silly pacote range manifest for css-parse@~2.0.0 fetched in 1814ms 792 http fetch GET 200 https://registry.npmjs.org/@types%2fwebpack-sources 2082ms 793 silly pacote range manifest for @types/webpack-sources@^0.1.5 fetched in 2085ms 794 http fetch GET 304 https://registry.npmjs.org/memfs 308ms (from cache) 795 silly pacote range manifest for memfs@^3.2.2 fetched in 310ms 796 http fetch GET 304 https://registry.npmjs.org/mime-types 254ms (from cache) 797 silly pacote range manifest for mime-types@^2.1.31 fetched in 256ms 798 silly pacote range manifest for webpack-sources@^1.3.0 fetched in 1ms 799 silly pacote range manifest for make-dir@^3.0.0 fetched in 1ms 800 http fetch GET 304 https://registry.npmjs.org/clone-deep 261ms (from cache) 801 silly pacote range manifest for clone-deep@^4.0.1 fetched in 262ms 802 silly pacote range manifest for @babel/core@^7.7.5 fetched in 1ms 803 http fetch GET 304 https://registry.npmjs.org/wildcard 264ms (from cache) 804 silly pacote range manifest for wildcard@^2.0.0 fetched in 266ms 805 silly pacote range manifest for @babel/generator@^7.15.0 fetched in 2ms 806 silly pacote range manifest for @babel/helper-compilation-targets@^7.15.0 fetched in 1ms 807 silly pacote range manifest for @babel/helper-module-transforms@^7.15.0 fetched in 1ms 808 silly pacote range manifest for @babel/parser@^7.15.0 fetched in 2ms 809 silly pacote range manifest for @babel/traverse@^7.15.0 fetched in 1ms 810 silly pacote range manifest for @babel/types@^7.15.0 fetched in 1ms 811 silly pacote range manifest for debug@^4.1.1 fetched in 1ms 812 http fetch GET 304 https://registry.npmjs.org/supports-color 251ms (from cache) 813 silly pacote range manifest for supports-color@^7.1.0 fetched in 253ms 814 http fetch GET 304 https://registry.npmjs.org/mem 814ms (from cache) 815 silly pacote range manifest for mem@^8.1.1 fetched in 817ms 816 http fetch GET 304 https://registry.npmjs.org/html-escaper 198ms (from cache) 817 silly pacote range manifest for html-escaper@^2.0.0 fetched in 199ms 818 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-validator-identifier 219ms (from cache) 819 silly pacote range manifest for @babel/helper-validator-identifier@^7.14.9 fetched in 220ms 820 http fetch GET 304 https://registry.npmjs.org/to-fast-properties 733ms (from cache) 821 silly pacote range manifest for to-fast-properties@^2.0.0 fetched in 735ms 822 silly pacote range manifest for braces@~3.0.2 fetched in 1ms 823 silly pacote range manifest for glob-parent@~5.1.2 fetched in 1ms 824 http fetch GET 304 https://registry.npmjs.org/safe-buffer 731ms (from cache) 825 silly pacote range manifest for safe-buffer@~5.1.1 fetched in 733ms 826 http fetch GET 304 https://registry.npmjs.org/anymatch 807ms (from cache) 827 silly pacote range manifest for anymatch@~3.1.2 fetched in 809ms 828 silly pacote range manifest for normalize-path@~3.0.0 fetched in 1ms 829 http fetch GET 304 https://registry.npmjs.org/@istanbuljs%2fschema 1154ms (from cache) 830 silly pacote range manifest for @istanbuljs/schema@^0.1.2 fetched in 1156ms 831 http fetch GET 304 https://registry.npmjs.org/is-binary-path 465ms (from cache) 832 silly pacote range manifest for is-binary-path@~2.1.0 fetched in 467ms 833 silly pacote range manifest for sourcemap-codec@^1.4.4 fetched in 1ms 834 http fetch GET 304 https://registry.npmjs.org/is-glob 334ms (from cache) 835 silly pacote range manifest for is-glob@~4.0.1 fetched in 336ms 836 http fetch GET 304 https://registry.npmjs.org/readdirp 407ms (from cache) 837 silly pacote range manifest for readdirp@~3.6.0 fetched in 409ms 838 http fetch GET 304 https://registry.npmjs.org/fsevents 455ms (from cache) 839 silly pacote range manifest for fsevents@~2.3.2 fetched in 457ms 840 silly pacote range manifest for string-width@^4.2.0 fetched in 1ms 841 http fetch GET 304 https://registry.npmjs.org/get-caller-file 500ms (from cache) 842 silly pacote range manifest for get-caller-file@^2.0.5 fetched in 502ms 843 http fetch GET 304 https://registry.npmjs.org/cliui 523ms (from cache) 844 silly pacote range manifest for cliui@^7.0.2 fetched in 525ms 845 http fetch GET 304 https://registry.npmjs.org/require-directory 395ms (from cache) 846 silly pacote range manifest for require-directory@^2.1.1 fetched in 397ms 847 http fetch GET 304 https://registry.npmjs.org/y18n 481ms (from cache) 848 silly pacote range manifest for y18n@^5.0.5 fetched in 482ms 849 silly pacote version manifest for [email protected] fetched in 2ms 850 http fetch GET 304 https://registry.npmjs.org/bytes 385ms (from cache) 851 http fetch GET 304 https://registry.npmjs.org/yargs-parser 393ms (from cache) 852 silly pacote version manifest for [email protected] fetched in 387ms 853 silly pacote range manifest for yargs-parser@^20.2.2 fetched in 395ms 854 silly pacote version manifest for [email protected] fetched in 2ms 855 http fetch GET 304 https://registry.npmjs.org/content-type 524ms (from cache) 856 silly pacote range manifest for content-type@~1.0.4 fetched in 526ms 857 http fetch GET 304 https://registry.npmjs.org/depd 734ms (from cache) 858 silly pacote range manifest for depd@~1.1.2 fetched in 735ms 859 http fetch GET 304 https://registry.npmjs.org/on-finished 1044ms (from cache) 860 silly pacote range manifest for on-finished@~2.3.0 fetched in 1046ms 861 http fetch GET 304 https://registry.npmjs.org/http-errors 1082ms (from cache) 862 silly pacote version manifest for [email protected] fetched in 1084ms 863 http fetch GET 304 https://registry.npmjs.org/qs 954ms (from cache) 864 silly pacote version manifest for [email protected] fetched in 957ms 865 http fetch GET 304 https://registry.npmjs.org/raw-body 818ms (from cache) 866 silly pacote version manifest for [email protected] fetched in 820ms 867 http fetch GET 304 https://registry.npmjs.org/fill-range 495ms (from cache) 868 http fetch GET 304 https://registry.npmjs.org/finalhandler 403ms (from cache) 869 silly pacote range manifest for fill-range@^7.0.1 fetched in 496ms 870 silly pacote version manifest for [email protected] fetched in 405ms 871 http fetch GET 304 https://registry.npmjs.org/parseurl 364ms (from cache) 872 silly pacote range manifest for parseurl@~1.3.3 fetched in 366ms 873 http fetch GET 304 https://registry.npmjs.org/utils-merge 334ms (from cache) 874 silly pacote version manifest for [email protected] fetched in 336ms 875 http fetch GET 304 https://registry.npmjs.org/custom-event 349ms (from cache) 876 silly pacote range manifest for custom-event@~1.0.0 fetched in 350ms 877 http fetch GET 304 https://registry.npmjs.org/type-is 974ms (from cache) 878 silly pacote range manifest for type-is@~1.6.17 fetched in 976ms 879 http fetch GET 304 https://registry.npmjs.org/ent 256ms (from cache) 880 silly pacote range manifest for ent@~2.2.0 fetched in 259ms 881 http fetch GET 304 https://registry.npmjs.org/extend 238ms (from cache) 882 silly pacote range manifest for extend@^3.0.0 fetched in 239ms 883 silly pacote range manifest for chokidar@^2.1.8 fetched in 2ms 884 warn deprecated [email protected]: Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies. 885 http fetch GET 304 https://registry.npmjs.org/void-elements 239ms (from cache) 886 silly pacote range manifest for void-elements@^2.0.0 fetched in 241ms 887 http fetch GET 304 https://registry.npmjs.org/ansi-html 555ms (from cache) 888 silly pacote version manifest for [email protected] fetched in 556ms 889 http fetch GET 304 https://registry.npmjs.org/bonjour 693ms (from cache) 890 silly pacote range manifest for bonjour@^3.5.0 fetched in 694ms 891 http fetch GET 304 https://registry.npmjs.org/compression 888ms (from cache) 892 silly pacote range manifest for compression@^1.7.4 fetched in 891ms 893 http fetch GET 304 https://registry.npmjs.org/connect-history-api-fallback 1000ms (from cache) 894 silly pacote range manifest for connect-history-api-fallback@^1.6.0 fetched in 1002ms 895 http fetch GET 304 https://registry.npmjs.org/del 957ms (from cache) 896 silly pacote range manifest for del@^4.1.1 fetched in 960ms 897 http fetch GET 304 https://registry.npmjs.org/express 820ms (from cache) 898 silly pacote range manifest for express@^4.17.1 fetched in 824ms 899 http fetch GET 304 https://registry.npmjs.org/html-entities 653ms (from cache) 900 silly pacote range manifest for html-entities@^1.3.1 fetched in 655ms 901 http fetch GET 304 https://registry.npmjs.org/http-proxy-middleware 559ms (from cache) 902 silly pacote version manifest for [email protected] fetched in 562ms 903 http fetch GET 304 https://registry.npmjs.org/import-local 321ms (from cache) 904 silly pacote range manifest for import-local@^2.0.0 fetched in 324ms 905 http fetch GET 304 https://registry.npmjs.org/internal-ip 314ms (from cache) 906 silly pacote range manifest for internal-ip@^4.3.0 fetched in 318ms 907 http fetch GET 304 https://registry.npmjs.org/ip 315ms (from cache) 908 silly pacote range manifest for ip@^1.1.5 fetched in 316ms 909 http fetch GET 304 https://registry.npmjs.org/is-absolute-url 288ms (from cache) 910 silly pacote range manifest for is-absolute-url@^3.0.3 fetched in 290ms 911 http fetch GET 304 https://registry.npmjs.org/killable 273ms (from cache) 912 silly pacote range manifest for killable@^1.0.1 fetched in 275ms 913 http fetch GET 304 https://registry.npmjs.org/loglevel 303ms (from cache) 914 silly pacote range manifest for loglevel@^1.6.8 fetched in 305ms 915 silly pacote range manifest for schema-utils@^1.0.0 fetched in 2ms 916 http fetch GET 304 https://registry.npmjs.org/p-retry 225ms (from cache) 917 silly pacote range manifest for p-retry@^3.0.1 fetched in 227ms 918 http fetch GET 304 https://registry.npmjs.org/opn 235ms (from cache) 919 silly pacote range manifest for opn@^5.5.0 fetched in 237ms 920 http fetch GET 304 https://registry.npmjs.org/portfinder 231ms (from cache) 921 silly pacote range manifest for portfinder@^1.0.26 fetched in 234ms 922 http fetch GET 304 https://registry.npmjs.org/selfsigned 231ms (from cache) 923 silly pacote range manifest for selfsigned@^1.10.8 fetched in 233ms 924 http fetch GET 304 https://registry.npmjs.org/sockjs 222ms (from cache) 925 http fetch GET 304 https://registry.npmjs.org/serve-index 226ms (from cache) 926 silly pacote range manifest for sockjs@^0.3.21 fetched in 224ms 927 silly pacote range manifest for serve-index@^1.9.1 fetched in 229ms 928 silly pacote range manifest for strip-ansi@^3.0.1 fetched in 3ms 929 silly pacote range manifest for supports-color@^6.1.0 fetched in 2ms 930 silly pacote range manifest for webpack-dev-middleware@^3.7.2 fetched in 2ms 931 http fetch GET 304 https://registry.npmjs.org/sockjs-client 285ms (from cache) 932 silly pacote range manifest for sockjs-client@^1.5.0 fetched in 288ms 933 http fetch GET 304 https://registry.npmjs.org/spdy 381ms (from cache) 934 silly pacote range manifest for spdy@^4.0.2 fetched in 384ms 935 silly pacote range manifest for yargs@^13.3.2 fetched in 3ms 936 http fetch GET 304 https://registry.npmjs.org/url 390ms (from cache) 937 silly pacote range manifest for url@^0.11.0 fetched in 392ms 938 http fetch GET 304 https://registry.npmjs.org/webpack-log 389ms (from cache) 939 silly pacote range manifest for webpack-log@^2.0.0 fetched in 391ms 940 http fetch GET 304 https://registry.npmjs.org/date-format 922ms (from cache) 941 silly pacote range manifest for date-format@^3.0.0 fetched in 924ms 942 http fetch GET 304 https://registry.npmjs.org/flatted 929ms (from cache) 943 silly pacote range manifest for flatted@^2.0.1 fetched in 931ms 944 silly pacote range manifest for glob@^7.1.3 fetched in 1ms 945 silly pacote range manifest for rimraf@^3.0.0 fetched in 1ms 946 http fetch GET 304 https://registry.npmjs.org/rfdc 932ms (from cache) 947 silly pacote range manifest for rfdc@^1.1.4 fetched in 934ms 948 http fetch GET 304 https://registry.npmjs.org/fast-deep-equal 150ms (from cache) 949 silly pacote range manifest for fast-deep-equal@^3.1.1 fetched in 151ms 950 http fetch GET 304 https://registry.npmjs.org/isexe 164ms (from cache) 951 silly pacote range manifest for isexe@^2.0.0 fetched in 166ms 952 http fetch GET 200 https://registry.npmjs.org/@schematics/angular/-/angular-12.2.2.tgz 33282ms 953 silly pacote version manifest for @schematics/[email protected] fetched in 42114ms 954 http fetch GET 304 https://registry.npmjs.org/json-schema-traverse 110ms (from cache) 955 silly pacote range manifest for json-schema-traverse@^1.0.0 fetched in 114ms 956 http fetch GET 304 https://registry.npmjs.org/require-from-string 115ms (from cache) 957 silly pacote range manifest for require-from-string@^2.0.2 fetched in 116ms 958 http fetch GET 304 https://registry.npmjs.org/eventemitter3 92ms (from cache) 959 silly pacote range manifest for eventemitter3@^4.0.0 fetched in 95ms 960 http fetch GET 304 https://registry.npmjs.org/requires-port 121ms (from cache) 961 silly pacote range manifest for requires-port@^1.0.0 fetched in 123ms 962 silly pacote range manifest for ajv@^8.0.0 fetched in 1ms 963 silly pacote range manifest for @babel/compat-data@^7.15.0 fetched in 1ms 964 silly pacote range manifest for browserslist@^4.16.6 fetched in 1ms 965 http fetch GET 304 https://registry.npmjs.org/@babel%2fhighlight 116ms (from cache) 966 silly pacote range manifest for @babel/highlight@^7.14.5 fetched in 117ms 967 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-replace-supers 146ms (from cache) 968 silly pacote range manifest for @babel/helper-replace-supers@^7.15.0 fetched in 148ms 969 http fetch GET 304 https://registry.npmjs.org/streamroller 841ms (from cache) 970 silly pacote range manifest for streamroller@^2.2.4 fetched in 844ms 971 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-simple-access 130ms (from cache) 972 silly pacote range manifest for @babel/helper-simple-access@^7.14.8 fetched in 132ms 973 http fetch GET 304 https://registry.npmjs.org/uri-js 876ms (from cache) 974 silly pacote range manifest for uri-js@^4.2.2 fetched in 880ms 975 http fetch GET 200 https://registry.npmjs.org/@types%2fcors 833ms 976 silly pacote range manifest for @types/cors@^2.8.8 fetched in 835ms 977 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-split-export-declaration 1181ms (from cache) 978 silly pacote range manifest for @babel/helper-split-export-declaration@^7.14.5 fetched in 1184ms 979 http fetch GET 200 https://registry.npmjs.org/follow-redirects 1798ms 980 http fetch GET 304 https://registry.npmjs.org/accepts 211ms (from cache) 981 silly pacote range manifest for accepts@~1.3.4 fetched in 212ms 982 http fetch GET 304 https://registry.npmjs.org/base64id 433ms (from cache) 983 silly pacote range manifest for base64id@~2.0.0 fetched in 435ms 984 silly pacote range manifest for debug@~4.3.1 fetched in 0ms 985 http fetch GET 200 https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.2.tgz 577ms 986 silly pacote range manifest for follow-redirects@^1.0.0 fetched in 2380ms 987 http fetch GET 200 https://registry.npmjs.org/@types%2fcookie 2071ms 988 silly pacote range manifest for @types/cookie@^0.4.0 fetched in 2073ms 989 http fetch GET 304 https://registry.npmjs.org/engine.io 355ms (from cache) 990 silly pacote range manifest for engine.io@~4.1.0 fetched in 358ms 991 http fetch GET 304 https://registry.npmjs.org/socket.io-parser 428ms (from cache) 992 silly pacote range manifest for socket.io-parser@~4.0.3 fetched in 431ms 993 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-function-name 972ms (from cache) 994 silly pacote range manifest for @babel/helper-function-name@^7.14.5 fetched in 974ms 995 http fetch GET 304 https://registry.npmjs.org/socket.io-adapter 1691ms (from cache) 996 silly pacote range manifest for socket.io-adapter@~2.1.0 fetched in 1693ms 997 http fetch GET 200 https://registry.npmjs.org/ms 1572ms 998 silly pacote version manifest for [email protected] fetched in 1574ms 999 silly pacote range manifest for minimist@^1.2.5 fetched in 1ms 1000 silly pacote range manifest for @babel/helper-annotate-as-pure@^7.14.5 fetched in 1ms 1001 http fetch GET 200 https://registry.npmjs.org/ws 5869ms 1002 silly pacote range manifest for ws@^6.2.1 fetched in 5872ms 1003 silly pacote range manifest for @babel/compat-data@^7.13.11 fetched in 1ms 1004 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-hoist-variables 484ms (from cache) 1005 silly pacote range manifest for @babel/helper-hoist-variables@^7.14.5 fetched in 486ms 1006 silly pacote range manifest for semver@^6.1.1 fetched in 1ms 1007 silly pacote range manifest for core-js-compat@^3.14.0 fetched in 1ms 1008 http fetch GET 304 https://registry.npmjs.org/globals 395ms (from cache) 1009 silly pacote range manifest for globals@^11.1.0 fetched in 398ms 1010 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-wrap-function 318ms (from cache) 1011 silly pacote range manifest for @babel/helper-wrap-function@^7.14.5 fetched in 320ms 1012 silly pacote range manifest for @babel/helper-plugin-utils@^7.8.0 fetched in 1ms 1013 http fetch GET 200 https://registry.npmjs.org/electron-to-chromium 64129ms 1014 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-define-polyfill-provider 211ms (from cache) 1015 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-skip-transparent-expression-wrappers 162ms (from cache) 1016 silly pacote range manifest for @babel/helper-define-polyfill-provider@^0.2.2 fetched in 213ms 1017 silly pacote range manifest for @babel/helper-skip-transparent-expression-wrappers@^7.14.5 fetched in 167ms 1018 silly pacote range manifest for @babel/helper-plugin-utils@^7.12.13 fetched in 5ms 1019 silly pacote range manifest for @babel/helper-plugin-utils@^7.8.3 fetched in 1ms 1020 silly pacote range manifest for @babel/helper-plugin-utils@^7.10.4 fetched in 1ms 1021 silly pacote range manifest for @babel/helper-replace-supers@^7.14.5 fetched in 2ms 1022 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-create-class-features-plugin 131ms (from cache) 1023 silly pacote range manifest for @babel/helper-create-class-features-plugin@^7.14.5 fetched in 133ms 1024 silly pacote range manifest for @babel/helper-module-transforms@^7.14.5 fetched in 2ms 1025 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-create-regexp-features-plugin 84ms (from cache) 1026 silly pacote range manifest for @babel/helper-create-regexp-features-plugin@^7.14.5 fetched in 85ms 1027 silly pacote range manifest for @babel/helper-validator-identifier@^7.14.5 fetched in 1ms 1028 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-optimise-call-expression 106ms (from cache) 1029 silly pacote range manifest for @babel/helper-optimise-call-expression@^7.14.5 fetched in 108ms 1030 silly pacote range manifest for @babel/helper-plugin-utils@^7.0.0 fetched in 1ms 1031 silly pacote range manifest for @babel/plugin-proposal-unicode-property-regex@^7.4.4 fetched in 1ms 1032 silly pacote range manifest for @babel/plugin-transform-dotall-regex@^7.4.4 fetched in 1ms 1033 silly pacote range manifest for @babel/types@^7.4.4 fetched in 1ms 1034 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-builder-binary-assignment-operator-visitor 117ms (from cache) 1035 silly pacote range manifest for @babel/helper-builder-binary-assignment-operator-visitor@^7.14.5 fetched in 119ms 1036 silly pacote range manifest for json5@^1.0.1 fetched in 2ms 1037 silly pacote range manifest for ajv@^6.12.4 fetched in 2ms 1038 http fetch GET 304 https://registry.npmjs.org/regenerator-transform 130ms (from cache) 1039 silly pacote range manifest for regenerator-transform@^0.14.2 fetched in 132ms 1040 http fetch GET 200 https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.814.tgz 218ms 1041 silly pacote range manifest for electron-to-chromium@^1.3.811 fetched in 64358ms 1042 silly pacote range manifest for semver@^6.0.0 fetched in 2ms 1043 silly pacote range manifest for mkdirp@^1.0.4 fetched in 1ms 1044 silly pacote range manifest for minipass@^3.0.0 fetched in 1ms 1045 http fetch GET 304 https://registry.npmjs.org/esutils 99ms (from cache) 1046 silly pacote range manifest for esutils@^2.0.2 fetched in 100ms 1047 http fetch GET 304 https://registry.npmjs.org/ajv-keywords 93ms (from cache) 1048 silly pacote range manifest for ajv-keywords@^3.5.2 fetched in 95ms 1049 http fetch GET 304 https://registry.npmjs.org/yallist 96ms (from cache) 1050 silly pacote range manifest for yallist@^4.0.0 fetched in 97ms 1051 http fetch GET 200 https://registry.npmjs.org/@types%2feslint-scope 126ms 1052 http fetch GET 304 https://registry.npmjs.org/aggregate-error 135ms (from cache) 1053 silly pacote range manifest for @types/eslint-scope@^3.7.0 fetched in 127ms 1054 silly pacote range manifest for aggregate-error@^3.0.0 fetched in 138ms 1055 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2fast 223ms (from cache) 1056 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 226ms 1057 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2fwasm-edit 310ms (from cache) 1058 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 312ms 1059 http fetch GET 200 https://registry.npmjs.org/@types%2festree 922ms 1060 silly pacote range manifest for @types/estree@^0.0.50 fetched in 924ms 1061 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2fwasm-parser 728ms (from cache) 1062 http fetch GET 304 https://registry.npmjs.org/babel-plugin-dynamic-import-node 1276ms (from cache) 1063 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 730ms 1064 silly pacote range manifest for babel-plugin-dynamic-import-node@^2.3.3 fetched in 1278ms 1065 silly pacote range manifest for browserslist@^4.14.5 fetched in 2ms 1066 http fetch GET 304 https://registry.npmjs.org/acorn 686ms (from cache) 1067 silly pacote range manifest for acorn@^8.4.1 fetched in 689ms 1068 http fetch GET 200 https://registry.npmjs.org/@types%2fjson-schema 1258ms 1069 silly pacote range manifest for @types/json-schema@^7.0.5 fetched in 1260ms 1070 http fetch GET 304 https://registry.npmjs.org/acorn-import-assertions 237ms (from cache) 1071 silly pacote range manifest for acorn-import-assertions@^1.7.6 fetched in 238ms 1072 http fetch GET 304 https://registry.npmjs.org/chrome-trace-event 188ms (from cache) 1073 silly pacote range manifest for chrome-trace-event@^1.0.2 fetched in 189ms 1074 http fetch GET 304 https://registry.npmjs.org/enhanced-resolve 190ms (from cache) 1075 silly pacote range manifest for enhanced-resolve@^5.8.0 fetched in 194ms 1076 silly pacote range manifest for graceful-fs@^4.2.4 fetched in 1ms 1077 http fetch GET 304 https://registry.npmjs.org/es-module-lexer 154ms (from cache) 1078 silly pacote range manifest for es-module-lexer@^0.7.1 fetched in 155ms 1079 http fetch GET 304 https://registry.npmjs.org/eslint-scope 114ms (from cache) 1080 silly pacote version manifest for [email protected] fetched in 116ms 1081 silly pacote range manifest for mime-types@^2.1.27 fetched in 1ms 1082 silly pacote range manifest for schema-utils@^3.1.0 fetched in 1ms 1083 http fetch GET 304 https://registry.npmjs.org/events 93ms (from cache) 1084 silly pacote range manifest for events@^3.2.0 fetched in 94ms 1085 silly pacote range manifest for terser-webpack-plugin@^5.1.3 fetched in 2ms 1086 http fetch GET 304 https://registry.npmjs.org/json-parse-better-errors 82ms (from cache) 1087 http fetch GET 304 https://registry.npmjs.org/glob-to-regexp 89ms (from cache) 1088 silly pacote range manifest for glob-to-regexp@^0.4.1 fetched in 90ms 1089 silly pacote range manifest for json-parse-better-errors@^1.0.2 fetched in 84ms 1090 silly pacote range manifest for webpack-sources@^3.2.0 fetched in 3ms 1091 http fetch GET 304 https://registry.npmjs.org/loader-runner 113ms (from cache) 1092 silly pacote range manifest for loader-runner@^4.2.0 fetched in 114ms 1093 http fetch GET 304 https://registry.npmjs.org/tapable 84ms (from cache) 1094 silly pacote range manifest for tapable@^2.1.1 fetched in 86ms 1095 silly pacote range manifest for glob-parent@^5.1.2 fetched in 1ms 1096 http fetch GET 304 https://registry.npmjs.org/watchpack 87ms (from cache) 1097 silly pacote range manifest for watchpack@^2.2.0 fetched in 89ms 1098 http fetch GET 304 https://registry.npmjs.org/@nodelib%2ffs.stat 121ms (from cache) 1099 silly pacote range manifest for @nodelib/fs.stat@^2.0.2 fetched in 123ms 1100 silly pacote range manifest for is-glob@^4.0.1 fetched in 1ms 1101 http fetch GET 304 https://registry.npmjs.org/merge2 90ms (from cache) 1102 silly pacote range manifest for merge2@^1.3.0 fetched in 92ms 1103 http fetch GET 304 https://registry.npmjs.org/micromatch 89ms (from cache) 1104 silly pacote range manifest for micromatch@^4.0.4 fetched in 92ms 1105 silly pacote range manifest for fast-glob@^3.1.1 fetched in 1ms 1106 http fetch GET 304 https://registry.npmjs.org/@nodelib%2ffs.walk 140ms (from cache) 1107 silly pacote range manifest for @nodelib/fs.walk@^1.2.3 fetched in 142ms 1108 http fetch GET 304 https://registry.npmjs.org/array-union 96ms (from cache) 1109 http fetch GET 304 https://registry.npmjs.org/dir-glob 86ms (from cache) 1110 silly pacote range manifest for array-union@^2.1.0 fetched in 99ms 1111 silly pacote range manifest for dir-glob@^3.0.1 fetched in 88ms 1112 silly pacote range manifest for @types/json-schema@^7.0.8 fetched in 0ms 1113 silly pacote range manifest for ajv@^6.12.5 fetched in 3ms 1114 http fetch GET 304 https://registry.npmjs.org/ignore 101ms (from cache) 1115 silly pacote range manifest for ignore@^5.1.4 fetched in 104ms 1116 http fetch GET 304 https://registry.npmjs.org/unique-slug 278ms (from cache) 1117 silly pacote range manifest for unique-slug@^2.0.0 fetched in 279ms 1118 http fetch GET 304 https://registry.npmjs.org/slash 127ms (from cache) 1119 silly pacote range manifest for slash@^3.0.0 fetched in 128ms 1120 silly pacote range manifest for inherits@^2.0.4 fetched in 1ms 1121 http fetch GET 304 https://registry.npmjs.org/yocto-queue 81ms (from cache) 1122 silly pacote range manifest for yocto-queue@^0.1.0 fetched in 83ms 1123 silly pacote range manifest for icss-utils@^5.0.0 fetched in 1ms 1124 http fetch GET 304 https://registry.npmjs.org/randombytes 88ms (from cache) 1125 silly pacote range manifest for randombytes@^2.1.0 fetched in 90ms 1126 http fetch GET 304 https://registry.npmjs.org/minizlib 91ms (from cache) 1127 silly pacote range manifest for minizlib@^2.1.1 fetched in 92ms 1128 http fetch GET 304 https://registry.npmjs.org/ansi-styles 95ms (from cache) 1129 silly pacote range manifest for ansi-styles@^4.1.0 fetched in 97ms 1130 http fetch GET 304 https://registry.npmjs.org/source-map-resolve 79ms (from cache) 1131 silly pacote range manifest for source-map-resolve@^0.6.0 fetched in 82ms 1132 silly pacote range manifest for supports-color@^8.0.0 fetched in 1ms 1133 http fetch GET 304 https://registry.npmjs.org/postcss-selector-parser 88ms (from cache) 1134 silly pacote range manifest for postcss-selector-parser@^6.0.2 fetched in 90ms 1135 http fetch GET 304 https://registry.npmjs.org/postcss-selector-parser 115ms (from cache) 1136 silly pacote range manifest for postcss-selector-parser@^6.0.4 fetched in 116ms 1137 http fetch GET 304 https://registry.npmjs.org/merge-stream 83ms (from cache) 1138 silly pacote range manifest for merge-stream@^2.0.0 fetched in 85ms 1139 http fetch GET 304 https://registry.npmjs.org/is-resolvable 95ms (from cache) 1140 silly pacote range manifest for is-resolvable@^1.1.0 fetched in 97ms 1141 http fetch GET 304 https://registry.npmjs.org/lilconfig 113ms (from cache) 1142 silly pacote range manifest for lilconfig@^2.0.3 fetched in 115ms 1143 silly pacote range manifest for semver@^7.3.4 fetched in 2ms 1144 http fetch GET 304 https://registry.npmjs.org/yaml 96ms (from cache) 1145 silly pacote range manifest for yaml@^1.10.2 fetched in 99ms 1146 http fetch GET 304 https://registry.npmjs.org/hosted-git-info 101ms (from cache) 1147 silly pacote range manifest for hosted-git-info@^4.0.1 fetched in 103ms 1148 http fetch GET 304 https://registry.npmjs.org/npm-install-checks 115ms (from cache) 1149 silly pacote range manifest for npm-install-checks@^4.0.0 fetched in 117ms 1150 silly pacote range manifest for npm-package-arg@^8.1.2 fetched in 2ms 1151 http fetch GET 304 https://registry.npmjs.org/validate-npm-package-name 143ms (from cache) 1152 silly pacote range manifest for validate-npm-package-name@^3.0.0 fetched in 145ms 1153 http fetch GET 304 https://registry.npmjs.org/npm-normalize-package-bin 98ms (from cache) 1154 silly pacote range manifest for npm-normalize-package-bin@^1.0.1 fetched in 101ms 1155 http fetch GET 304 https://registry.npmjs.org/@npmcli%2fpromise-spawn 2220ms (from cache) 1156 silly pacote range manifest for @npmcli/promise-spawn@^1.2.0 fetched in 2222ms 1157 http fetch GET 304 https://registry.npmjs.org/@npmcli%2finstalled-package-contents 2228ms (from cache) 1158 http fetch GET 304 https://registry.npmjs.org/@npmcli%2fgit 2247ms (from cache) 1159 silly pacote range manifest for @npmcli/git@^2.1.0 fetched in 2249ms 1160 silly pacote range manifest for @npmcli/installed-package-contents@^1.0.6 fetched in 2230ms 1161 silly pacote range manifest for fs-minipass@^2.1.0 fetched in 1ms 1162 silly pacote range manifest for cacache@^15.0.5 fetched in 2ms 1163 silly pacote range manifest for minipass@^3.1.3 fetched in 2ms 1164 silly pacote range manifest for npm-package-arg@^8.0.1 fetched in 2ms 1165 silly pacote range manifest for npm-pick-manifest@^6.0.0 fetched in 1ms 1166 http fetch GET 304 https://registry.npmjs.org/npm-registry-fetch 1390ms (from cache) 1167 silly pacote range manifest for npm-registry-fetch@^11.0.0 fetched in 1392ms 1168 http fetch GET 304 https://registry.npmjs.org/@npmcli%2frun-script 1424ms (from cache) 1169 silly pacote range manifest for @npmcli/run-script@^1.8.2 fetched in 1426ms 1170 http fetch GET 304 https://registry.npmjs.org/promise-retry 350ms (from cache) 1171 silly pacote range manifest for promise-retry@^2.0.1 fetched in 352ms 1172 silly pacote range manifest for tar@^6.1.0 fetched in 1ms 1173 http fetch GET 304 https://registry.npmjs.org/read-package-json-fast 351ms (from cache) 1174 silly pacote range manifest for read-package-json-fast@^2.0.1 fetched in 352ms 1175 http fetch GET 304 https://registry.npmjs.org/path-parse 208ms (from cache) 1176 silly pacote range manifest for path-parse@^1.0.6 fetched in 209ms 1177 http fetch GET 304 https://registry.npmjs.org/find-up 265ms (from cache) 1178 silly pacote range manifest for find-up@^4.0.0 fetched in 267ms 1179 http fetch GET 304 https://registry.npmjs.org/wrappy 2144ms (from cache) 1180 silly pacote range manifest for wrappy@1 fetched in 2145ms 1181 http fetch GET 200 https://registry.npmjs.org/is-core-module 3159ms 1182 http fetch GET 200 https://registry.npmjs.org/npm-packlist 5409ms 1183 silly pacote range manifest for npm-packlist@^2.1.4 fetched in 5412ms 1184 http fetch GET 304 https://registry.npmjs.org/restore-cursor 764ms (from cache) 1185 silly pacote range manifest for restore-cursor@^3.1.0 fetched in 765ms 1186 http fetch GET 200 https://registry.npmjs.org/cssnano-preset-default 9824ms 1187 http fetch GET 304 https://registry.npmjs.org/chardet 1248ms (from cache) 1188 silly pacote range manifest for chardet@^0.7.0 fetched in 1251ms 1189 silly pacote range manifest for iconv-lite@^0.4.24 fetched in 3ms 1190 silly pacote range manifest for tmp@^0.0.33 fetched in 2ms 1191 http fetch GET 200 https://registry.npmjs.org/is-core-module/-/is-core-module-2.6.0.tgz 2615ms 1192 silly pacote range manifest for is-core-module@^2.2.0 fetched in 5779ms 1193 silly pacote range manifest for tslib@~2.1.0 fetched in 1ms 1194 http fetch GET 200 https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.1.4.tgz 599ms 1195 silly pacote range manifest for cssnano-preset-default@^5.1.4 fetched in 10428ms 1196 http fetch GET 304 https://registry.npmjs.org/escape-string-regexp 632ms (from cache) 1197 silly pacote range manifest for escape-string-regexp@^1.0.5 fetched in 634ms 1198 http fetch GET 304 https://registry.npmjs.org/emoji-regex 693ms (from cache) 1199 silly pacote range manifest for emoji-regex@^8.0.0 fetched in 695ms 1200 http fetch GET 304 https://registry.npmjs.org/is-fullwidth-code-point 399ms (from cache) 1201 silly pacote range manifest for is-fullwidth-code-point@^3.0.0 fetched in 401ms 1202 http fetch GET 304 https://registry.npmjs.org/ansi-regex 260ms (from cache) 1203 silly pacote range manifest for ansi-regex@^5.0.0 fetched in 262ms 1204 http fetch GET 304 https://registry.npmjs.org/prr 199ms (from cache) 1205 silly pacote range manifest for prr@~1.0.1 fetched in 201ms 1206 silly pacote range manifest for semver@^5.6.0 fetched in 2ms 1207 silly pacote range manifest for debug@^3.2.6 fetched in 2ms 1208 silly pacote range manifest for iconv-lite@^0.4.4 fetched in 1ms 1209 silly pacote range manifest for sax@^1.2.4 fetched in 2ms 1210 http fetch GET 304 https://registry.npmjs.org/pify 196ms (from cache) 1211 silly pacote range manifest for pify@^4.0.1 fetched in 198ms 1212 http fetch GET 304 https://registry.npmjs.org/balanced-match 218ms (from cache) 1213 silly pacote range manifest for balanced-match@^1.0.0 fetched in 220ms 1214 silly pacote range manifest for browserslist@^4.16.7 fetched in 1ms 1215 silly pacote version manifest for [email protected] fetched in 3ms 1216 silly pacote range manifest for is-docker@^2.0.0 fetched in 1ms 1217 http fetch GET 304 https://registry.npmjs.org/concat-map 257ms (from cache) 1218 silly pacote version manifest for [email protected] fetched in 259ms 1219 http fetch GET 304 https://registry.npmjs.org/buffer 383ms (from cache) 1220 silly pacote range manifest for buffer@^5.5.0 fetched in 385ms 1221 http fetch GET 304 https://registry.npmjs.org/readable-stream 347ms (from cache) 1222 silly pacote range manifest for readable-stream@^3.4.0 fetched in 349ms 1223 http fetch GET 200 https://registry.npmjs.org/type-fest 4839ms 1224 silly pacote range manifest for type-fest@^0.21.3 fetched in 4841ms 1225 http fetch GET 304 https://registry.npmjs.org/is-what 1294ms (from cache) 1226 silly pacote range manifest for is-what@^3.12.0 fetched in 1296ms 1227 http fetch GET 304 https://registry.npmjs.org/defaults 879ms (from cache) 1228 silly pacote range manifest for defaults@^1.0.3 fetched in 880ms 1229 silly pacote range manifest for pify@^2.3.0 fetched in 2ms 1230 silly pacote range manifest for postcss@^7.0.5 fetched in 1ms 1231 http fetch GET 304 https://registry.npmjs.org/base64-js 1052ms (from cache) 1232 silly pacote range manifest for base64-js@^1.2.0 fetched in 1054ms 1233 http fetch GET 304 https://registry.npmjs.org/node-gyp-build 1665ms (from cache) 1234 silly pacote range manifest for node-gyp-build@^4.2.2 fetched in 1667ms 1235 silly pacote range manifest for postcss@^7.0.6 fetched in 2ms 1236 silly pacote range manifest for postcss-selector-parser@^5.0.0-rc.4 fetched in 2ms 1237 silly pacote range manifest for chalk@^2.4.2 fetched in 2ms 1238 silly pacote range manifest for postcss@^7.0.2 fetched in 2ms 1239 http fetch GET 304 https://registry.npmjs.org/@assemblyscript%2floader 2858ms (from cache) 1240 silly pacote range manifest for @assemblyscript/loader@^0.10.1 fetched in 2862ms 1241 http fetch GET 304 https://registry.npmjs.org/pako 2555ms (from cache) 1242 silly pacote range manifest for pako@^1.0.3 fetched in 2558ms 1243 silly pacote range manifest for postcss@^7.0.14 fetched in 2ms 1244 http fetch GET 304 https://registry.npmjs.org/node-addon-api 2097ms (from cache) 1245 silly pacote range manifest for node-addon-api@^3.0.0 fetched in 2100ms 1246 silly pacote range manifest for postcss-selector-parser@^5.0.0-rc.3 fetched in 1ms 1247 http fetch GET 304 https://registry.npmjs.org/postcss-values-parser 143ms (from cache) 1248 silly pacote range manifest for postcss-values-parser@^2.0.0 fetched in 146ms 1249 http fetch GET 304 https://registry.npmjs.org/postcss-values-parser 112ms (from cache) 1250 silly pacote range manifest for postcss-values-parser@^2.0.1 fetched in 113ms 1251 http fetch GET 304 https://registry.npmjs.org/@csstools%2fconvert-colors 212ms (from cache) 1252 silly pacote range manifest for @csstools/convert-colors@^1.4.0 fetched in 213ms 1253 http fetch GET 304 https://registry.npmjs.org/import-fresh 114ms (from cache) 1254 silly pacote range manifest for import-fresh@^3.2.1 fetched in 116ms 1255 silly pacote range manifest for yaml@^1.10.0 fetched in 1ms 1256 http fetch GET 200 https://registry.npmjs.org/@types%2fparse-json 191ms 1257 silly pacote range manifest for @types/parse-json@^4.0.0 fetched in 193ms 1258 silly pacote range manifest for safer-buffer@&gt;= 2.1.2 &lt; 3.0.0 fetched in 1ms 1259 silly pacote version manifest for [email protected] fetched in 1ms 1260 http fetch GET 304 https://registry.npmjs.org/parse-json 95ms (from cache) 1261 silly pacote range manifest for parse-json@^5.0.0 fetched in 97ms 1262 silly pacote range manifest for source-map@~0.6.1 fetched in 2ms 1263 silly pacote range manifest for css@^2.0.0 fetched in 2ms 1264 http fetch GET 304 https://registry.npmjs.org/path-type 98ms (from cache) 1265 silly pacote range manifest for path-type@^4.0.0 fetched in 99ms 1266 http fetch GET 304 https://registry.npmjs.org/regex-parser 109ms (from cache) 1267 silly pacote range manifest for regex-parser@^2.2.11 fetched in 111ms 1268 http fetch GET 304 https://registry.npmjs.org/source-list-map 100ms (from cache) 1269 silly pacote range manifest for source-list-map@^2.0.0 fetched in 102ms 1270 http fetch GET 304 https://registry.npmjs.org/mime-db 108ms (from cache) 1271 silly pacote version manifest for [email protected] fetched in 110ms 1272 http fetch GET 200 https://registry.npmjs.org/@types%2fsource-list-map 170ms 1273 silly pacote range manifest for @types/source-list-map@* fetched in 172ms 1274 http fetch GET 304 https://registry.npmjs.org/is-plain-object 136ms (from cache) 1275 silly pacote range manifest for is-plain-object@^2.0.4 fetched in 138ms 1276 http fetch GET 304 https://registry.npmjs.org/kind-of 87ms (from cache) 1277 silly pacote range manifest for kind-of@^6.0.2 fetched in 89ms 1278 http fetch GET 304 https://registry.npmjs.org/shallow-clone 81ms (from cache) 1279 silly pacote range manifest for shallow-clone@^3.0.0 fetched in 83ms 1280 http fetch GET 304 https://registry.npmjs.org/has-flag 109ms (from cache) 1281 silly pacote range manifest for has-flag@^4.0.0 fetched in 111ms 1282 http fetch GET 304 https://registry.npmjs.org/mimic-fn 97ms (from cache) 1283 silly pacote range manifest for mimic-fn@^3.1.0 fetched in 99ms 1284 http fetch GET 304 https://registry.npmjs.org/map-age-cleaner 130ms (from cache) 1285 silly pacote range manifest for map-age-cleaner@^0.1.3 fetched in 131ms 1286 http fetch GET 304 https://registry.npmjs.org/picomatch 111ms (from cache) 1287 silly pacote range manifest for picomatch@^2.0.4 fetched in 114ms 1288 silly pacote range manifest for picomatch@^2.2.1 fetched in 3ms 1289 http fetch GET 304 https://registry.npmjs.org/is-extglob 118ms (from cache) 1290 silly pacote range manifest for is-extglob@^2.1.1 fetched in 120ms 1291 silly pacote range manifest for safer-buffer@&gt;= 2.1.2 &lt; 3 fetched in 1ms 1292 http fetch GET 304 https://registry.npmjs.org/binary-extensions 186ms (from cache) 1293 silly pacote range manifest for binary-extensions@^2.0.0 fetched in 188ms 1294 silly pacote version manifest for [email protected] fetched in 2ms 1295 http fetch GET 200 https://registry.npmjs.org/@types%2fnode 20381ms 1296 http fetch GET 304 https://registry.npmjs.org/wrap-ansi 141ms (from cache) 1297 silly pacote range manifest for wrap-ansi@^7.0.0 fetched in 143ms 1298 http fetch GET 304 https://registry.npmjs.org/ee-first 111ms (from cache) 1299 silly pacote version manifest for [email protected] fetched in 112ms 1300 http fetch GET 304 https://registry.npmjs.org/setprototypeof 95ms (from cache) 1301 silly pacote version manifest for [email protected] fetched in 97ms 1302 http fetch GET 304 https://registry.npmjs.org/statuses 91ms (from cache) 1303 silly pacote range manifest for statuses@&gt;= 1.5.0 &lt; 2 fetched in 94ms 1304 http fetch GET 304 https://registry.npmjs.org/toidentifier 109ms (from cache) 1305 silly pacote version manifest for [email protected] fetched in 110ms 1306 http fetch GET 304 https://registry.npmjs.org/unpipe 137ms (from cache) 1307 silly pacote version manifest for [email protected] fetched in 139ms 1308 http fetch GET 304 https://registry.npmjs.org/encodeurl 88ms (from cache) 1309 silly pacote range manifest for encodeurl@~1.0.2 fetched in 90ms 1310 silly pacote range manifest for statuses@~1.5.0 fetched in 1ms 1311 silly pacote range manifest for unpipe@~1.0.0 fetched in 4ms 1312 http fetch GET 304 https://registry.npmjs.org/to-regex-range 122ms (from cache) 1313 silly pacote range manifest for to-regex-range@^5.0.1 fetched in 124ms 1314 silly pacote range manifest for mime-types@~2.1.24 fetched in 1ms 1315 silly pacote range manifest for anymatch@^2.0.0 fetched in 2ms 1316 http fetch GET 304 https://registry.npmjs.org/fs-monkey 862ms (from cache) 1317 silly pacote version manifest for [email protected] fetched in 864ms 1318 silly pacote range manifest for braces@^2.3.2 fetched in 2ms 1319 silly pacote range manifest for glob-parent@^3.1.0 fetched in 2ms 1320 silly pacote range manifest for inherits@^2.0.3 fetched in 1ms 1321 silly pacote range manifest for is-binary-path@^1.0.0 fetched in 2ms 1322 silly pacote range manifest for is-glob@^4.0.0 fetched in 1ms 1323 silly pacote range manifest for readdirp@^2.2.1 fetched in 2ms 1324 http fetch GET 304 https://registry.npmjs.org/escape-html 111ms (from cache) 1325 silly pacote range manifest for escape-html@~1.0.3 fetched in 113ms 1326 silly pacote range manifest for fsevents@^1.2.7 fetched in 2ms 1327 warn deprecated [email protected]: fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2. 1328 http fetch GET 304 https://registry.npmjs.org/media-typer 103ms (from cache) 1329 silly pacote version manifest for [email protected] fetched in 105ms 1330 http fetch GET 304 https://registry.npmjs.org/async-each 97ms (from cache) 1331 silly pacote range manifest for async-each@^1.0.1 fetched in 99ms 1332 http fetch GET 304 https://registry.npmjs.org/upath 112ms (from cache) 1333 http fetch GET 304 https://registry.npmjs.org/deep-equal 85ms (from cache) 1334 silly pacote range manifest for deep-equal@^1.0.1 fetched in 87ms 1335 silly pacote range manifest for upath@^1.1.1 fetched in 115ms 1336 http fetch GET 304 https://registry.npmjs.org/array-flatten 116ms (from cache) 1337 silly pacote range manifest for array-flatten@^2.1.0 fetched in 118ms 1338 http fetch GET 304 https://registry.npmjs.org/dns-equal 108ms (from cache) 1339 silly pacote range manifest for dns-equal@^1.0.0 fetched in 110ms 1340 silly pacote range manifest for accepts@~1.3.5 fetched in 1ms 1341 silly pacote version manifest for [email protected] fetched in 2ms 1342 http fetch GET 304 https://registry.npmjs.org/multicast-dns 94ms (from cache) 1343 silly pacote range manifest for multicast-dns@^6.0.1 fetched in 96ms 1344 http fetch GET 304 https://registry.npmjs.org/multicast-dns-service-types 113ms (from cache) 1345 http fetch GET 304 https://registry.npmjs.org/dns-txt 124ms (from cache) 1346 silly pacote range manifest for multicast-dns-service-types@^1.1.0 fetched in 115ms 1347 silly pacote range manifest for dns-txt@^2.0.2 fetched in 126ms 1348 silly pacote version manifest for [email protected] fetched in 2ms 1349 http fetch GET 304 https://registry.npmjs.org/compressible 105ms (from cache) 1350 silly pacote range manifest for compressible@~2.0.16 fetched in 106ms 1351 silly pacote range manifest for globby@^6.1.0 fetched in 4ms 1352 http fetch GET 304 https://registry.npmjs.org/on-headers 95ms (from cache) 1353 silly pacote range manifest for on-headers@~1.0.2 fetched in 97ms 1354 http fetch GET 304 https://registry.npmjs.org/vary 117ms (from cache) 1355 silly pacote range manifest for vary@~1.1.2 fetched in 119ms 1356 silly pacote range manifest for p-map@^2.0.0 fetched in 1ms 1357 silly pacote range manifest for rimraf@^2.6.3 fetched in 2ms 1358 silly pacote range manifest for accepts@~1.3.7 fetched in 1ms 1359 silly pacote version manifest for [email protected] fetched in 1ms 1360 silly pacote version manifest for [email protected] fetched in 2ms 1361 http fetch GET 304 https://registry.npmjs.org/is-path-cwd 128ms (from cache) 1362 silly pacote range manifest for is-path-cwd@^2.0.0 fetched in 129ms 1363 http fetch GET 304 https://registry.npmjs.org/is-path-in-cwd 97ms (from cache) 1364 silly pacote range manifest for is-path-in-cwd@^2.0.0 fetched in 98ms 1365 http fetch GET 304 https://registry.npmjs.org/content-disposition 124ms (from cache) 1366 silly pacote version manifest for [email protected] fetched in 125ms 1367 http fetch GET 304 https://registry.npmjs.org/cookie-signature 107ms (from cache) 1368 silly pacote version manifest for [email protected] fetched in 109ms 1369 silly pacote range manifest for finalhandler@~1.1.2 fetched in 1ms 1370 http fetch GET 304 https://registry.npmjs.org/cookie 144ms (from cache) 1371 silly pacote version manifest for [email protected] fetched in 145ms 1372 http fetch GET 304 https://registry.npmjs.org/etag 112ms (from cache) 1373 silly pacote range manifest for etag@~1.8.1 fetched in 113ms 1374 http fetch GET 304 https://registry.npmjs.org/fresh 130ms (from cache) 1375 silly pacote version manifest for [email protected] fetched in 132ms 1376 http fetch GET 304 https://registry.npmjs.org/merge-descriptors 157ms (from cache) 1377 silly pacote version manifest for [email protected] fetched in 159ms 1378 http fetch GET 304 https://registry.npmjs.org/methods 124ms (from cache) 1379 silly pacote range manifest for methods@~1.1.2 fetched in 127ms 1380 silly pacote range manifest for range-parser@~1.2.1 fetched in 1ms 1381 http fetch GET 304 https://registry.npmjs.org/path-to-regexp 150ms (from cache) 1382 silly pacote version manifest for [email protected] fetched in 151ms 1383 http fetch GET 304 https://registry.npmjs.org/proxy-addr 139ms (from cache) 1384 silly pacote range manifest for proxy-addr@~2.0.5 fetched in 141ms 1385 silly pacote range manifest for type-is@~1.6.18 fetched in 1ms 1386 silly pacote range manifest for http-proxy@^1.17.0 fetched in 1ms 1387 silly pacote range manifest for lodash@^4.17.11 fetched in 1ms 1388 silly pacote range manifest for micromatch@^3.1.10 fetched in 2ms 1389 silly pacote range manifest for pkg-dir@^3.0.0 fetched in 2ms 1390 http fetch GET 304 https://registry.npmjs.org/send 130ms (from cache) 1391 silly pacote version manifest for [email protected] fetched in 132ms 1392 http fetch GET 304 https://registry.npmjs.org/serve-static 130ms (from cache) 1393 silly pacote version manifest for [email protected] fetched in 132ms 1394 http fetch GET 200 https://registry.npmjs.org/@types%2fglob 715ms 1395 silly pacote range manifest for @types/glob@^7.1.1 fetched in 717ms 1396 silly pacote range manifest for ajv@^6.1.0 fetched in 2ms 1397 http fetch GET 304 https://registry.npmjs.org/resolve-cwd 128ms (from cache) 1398 silly pacote range manifest for resolve-cwd@^2.0.0 fetched in 129ms 1399 silly pacote range manifest for ajv-keywords@^3.1.0 fetched in 1ms 1400 http fetch GET 304 https://registry.npmjs.org/default-gateway 136ms (from cache) 1401 silly pacote range manifest for default-gateway@^4.2.0 fetched in 138ms 1402 silly pacote range manifest for is-wsl@^1.1.0 fetched in 2ms 1403 http fetch GET 200 https://registry.npmjs.org/@ngtools%2fwebpack 174692ms 1404 http fetch GET 304 https://registry.npmjs.org/ipaddr.js 113ms (from cache) 1405 silly pacote range manifest for ipaddr.js@^1.9.0 fetched in 115ms 1406 silly pacote range manifest for debug@^3.1.1 fetched in 2ms 1407 silly pacote range manifest for mkdirp@^0.5.5 fetched in 1ms 1408 http fetch GET 304 https://registry.npmjs.org/ajv-errors 144ms (from cache) 1409 http fetch GET 304 https://registry.npmjs.org/retry 136ms (from cache) 1410 silly pacote range manifest for retry@^0.12.0 fetched in 137ms 1411 silly pacote range manifest for ajv-errors@^1.0.0 fetched in 148ms 1412 silly pacote range manifest for uuid@^3.4.0 fetched in 3ms 1413 warn deprecated [email protected]: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. 1414 http fetch GET 304 https://registry.npmjs.org/async 117ms (from cache) 1415 silly pacote range manifest for async@^2.6.2 fetched in 122ms 1416 http fetch GET 304 https://registry.npmjs.org/faye-websocket 94ms (from cache) 1417 silly pacote range manifest for faye-websocket@^0.11.3 fetched in 96ms 1418 silly pacote range manifest for http-errors@~1.6.2 fetched in 2ms 1419 silly pacote range manifest for mime-types@~2.1.17 fetched in 1ms 1420 silly pacote range manifest for parseurl@~1.3.2 fetched in 1ms 1421 silly pacote range manifest for ansi-regex@^2.0.0 fetched in 1ms 1422 silly pacote range manifest for has-flag@^3.0.0 fetched in 1ms 1423 http fetch GET 304 https://registry.npmjs.org/websocket-driver 112ms (from cache) 1424 silly pacote range manifest for websocket-driver@^0.7.4 fetched in 113ms 1425 silly pacote range manifest for mime@^2.4.4 fetched in 1ms 1426 silly pacote range manifest for mkdirp@^0.5.1 fetched in 1ms 1427 http fetch GET 304 https://registry.npmjs.org/batch 145ms (from cache) 1428 silly pacote version manifest for [email protected] fetched in 147ms 1429 http fetch GET 304 https://registry.npmjs.org/memory-fs 104ms (from cache) 1430 silly pacote range manifest for memory-fs@^0.4.1 fetched in 105ms 1431 http fetch GET 304 https://registry.npmjs.org/eventsource 120ms (from cache) 1432 silly pacote range manifest for eventsource@^1.0.7 fetched in 122ms 1433 http fetch GET 304 https://registry.npmjs.org/url-parse 134ms (from cache) 1434 silly pacote range manifest for url-parse@^1.5.1 fetched in 136ms 1435 http fetch GET 304 https://registry.npmjs.org/json3 237ms (from cache) 1436 silly pacote range manifest for json3@^3.3.3 fetched in 238ms 1437 http fetch GET 304 https://registry.npmjs.org/node-forge 517ms (from cache) 1438 http fetch GET 304 https://registry.npmjs.org/handle-thing 220ms (from cache) 1439 silly pacote range manifest for node-forge@^0.10.0 fetched in 520ms 1440 silly pacote range manifest for handle-thing@^2.0.0 fetched in 223ms 1441 silly pacote range manifest for cliui@^5.0.0 fetched in 1ms 1442 silly pacote range manifest for find-up@^3.0.0 fetched in 2ms 1443 silly pacote range manifest for get-caller-file@^2.0.1 fetched in 1ms 1444 http fetch GET 304 https://registry.npmjs.org/http-deceiver 812ms (from cache) 1445 silly pacote range manifest for http-deceiver@^1.2.7 fetched in 814ms 1446 http fetch GET 304 https://registry.npmjs.org/select-hose 1069ms (from cache) 1447 silly pacote range manifest for select-hose@^2.0.0 fetched in 1071ms 1448 silly pacote range manifest for string-width@^3.0.0 fetched in 1ms 1449 http fetch GET 304 https://registry.npmjs.org/require-main-filename 1017ms (from cache) 1450 http fetch GET 304 https://registry.npmjs.org/spdy-transport 1023ms (from cache) 1451 silly pacote range manifest for require-main-filename@^2.0.0 fetched in 1019ms 1452 silly pacote range manifest for spdy-transport@^3.0.0 fetched in 1025ms 1453 silly pacote range manifest for y18n@^4.0.0 fetched in 2ms 1454 silly pacote range manifest for yargs-parser@^13.1.2 fetched in 2ms 1455 http fetch GET 304 https://registry.npmjs.org/set-blocking 497ms (from cache) 1456 silly pacote range manifest for set-blocking@^2.0.0 fetched in 499ms 1457 silly pacote range manifest for ansi-colors@^3.0.0 fetched in 2ms 1458 silly pacote range manifest for uuid@^3.3.2 fetched in 1ms 1459 silly pacote range manifest for chalk@^2.0.0 fetched in 1ms 1460 http fetch GET 304 https://registry.npmjs.org/which-module 326ms (from cache) 1461 silly pacote range manifest for which-module@^2.0.0 fetched in 328ms 1462 http fetch GET 304 https://registry.npmjs.org/punycode 325ms (from cache) 1463 http fetch GET 304 https://registry.npmjs.org/querystring 324ms (from cache) 1464 silly pacote version manifest for [email protected] fetched in 326ms 1465 silly pacote version manifest for [email protected] fetched in 326ms 1466 warn deprecated [email protected]: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. 1467 silly pacote range manifest for date-format@^2.1.0 fetched in 2ms 1468 silly pacote range manifest for punycode@^2.1.0 fetched in 2ms 1469 http fetch GET 304 https://registry.npmjs.org/js-tokens 359ms (from cache) 1470 silly pacote range manifest for js-tokens@^4.0.0 fetched in 361ms 1471 silly pacote version manifest for [email protected] fetched in 1ms 1472 silly pacote range manifest for cookie@~0.4.1 fetched in 2ms 1473 http fetch GET 304 https://registry.npmjs.org/fs-extra 686ms (from cache) 1474 silly pacote range manifest for fs-extra@^8.1.0 fetched in 689ms 1475 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-member-expression-to-functions 731ms (from cache) 1476 http fetch GET 304 https://registry.npmjs.org/negotiator 718ms (from cache) 1477 silly pacote range manifest for @babel/helper-member-expression-to-functions@^7.15.0 fetched in 733ms 1478 silly pacote version manifest for [email protected] fetched in 720ms 1479 silly pacote range manifest for ws@~7.4.2 fetched in 2ms 1480 http fetch GET 200 https://registry.npmjs.org/@ngtools/webpack/-/webpack-12.2.2.tgz 2961ms 1481 silly pacote version manifest for @ngtools/[email protected] fetched in 177660ms 1482 http fetch GET 304 https://registry.npmjs.org/engine.io-parser 518ms (from cache) 1483 silly pacote range manifest for engine.io-parser@~4.0.0 fetched in 520ms 1484 http fetch GET 304 https://registry.npmjs.org/component-emitter 498ms (from cache) 1485 silly pacote range manifest for component-emitter@~1.3.0 fetched in 499ms 1486 silly pacote range manifest for @babel/traverse@^7.14.5 fetched in 0ms 1487 silly pacote range manifest for @babel/helper-compilation-targets@^7.13.0 fetched in 2ms 1488 silly pacote range manifest for @babel/helper-module-imports@^7.12.13 fetched in 1ms 1489 silly pacote range manifest for @babel/helper-plugin-utils@^7.13.0 fetched in 0ms 1490 silly pacote range manifest for @babel/traverse@^7.13.0 fetched in 0ms 1491 http fetch GET 200 https://registry.npmjs.org/@types%2fcomponent-emitter 741ms 1492 silly pacote range manifest for @types/component-emitter@^1.2.10 fetched in 743ms 1493 silly pacote range manifest for resolve@^1.14.2 fetched in 1ms 1494 silly pacote range manifest for semver@^6.1.2 fetched in 1ms 1495 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-get-function-arity 432ms (from cache) 1496 silly pacote range manifest for @babel/helper-get-function-arity@^7.14.5 fetched in 434ms 1497 http fetch GET 304 https://registry.npmjs.org/async-limiter 338ms (from cache) 1498 silly pacote range manifest for async-limiter@~1.0.0 fetched in 340ms 1499 silly pacote range manifest for fast-json-stable-stringify@^2.0.0 fetched in 2ms 1500 silly pacote range manifest for json-schema-traverse@^0.4.1 fetched in 1ms 1501 silly pacote range manifest for @babel/runtime@^7.8.4 fetched in 1ms 1502 http fetch GET 304 https://registry.npmjs.org/lodash.debounce 388ms (from cache) 1503 silly pacote range manifest for lodash.debounce@^4.0.8 fetched in 392ms 1504 silly pacote range manifest for @types/estree@* fetched in 1ms 1505 http fetch GET 304 https://registry.npmjs.org/cors 1559ms (from cache) 1506 silly pacote range manifest for cors@~2.8.5 fetched in 1562ms 1507 http fetch GET 304 https://registry.npmjs.org/regexpu-core 350ms (from cache) 1508 silly pacote range manifest for regexpu-core@^4.7.1 fetched in 351ms 1509 http fetch GET 200 https://registry.npmjs.org/@types/node/-/node-16.7.1.tgz 5133ms 1510 silly pacote range manifest for @types/node@&gt;=10.0.0 fetched in 25526ms 1511 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-explode-assignable-expression 404ms (from cache) 1512 silly pacote range manifest for @babel/helper-explode-assignable-expression@^7.14.5 fetched in 406ms 1513 http fetch GET 304 https://registry.npmjs.org/clean-stack 424ms (from cache) 1514 silly pacote range manifest for clean-stack@^2.0.0 fetched in 426ms 1515 http fetch GET 304 https://registry.npmjs.org/indent-string 345ms (from cache) 1516 silly pacote range manifest for indent-string@^4.0.0 fetched in 346ms 1517 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2fhelper-numbers 328ms (from cache) 1518 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 329ms 1519 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2fhelper-wasm-bytecode 317ms (from cache) 1520 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 319ms 1521 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2fhelper-buffer 319ms (from cache) 1522 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 321ms 1523 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2fhelper-wasm-section 334ms (from cache) 1524 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 336ms 1525 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2fwasm-gen 312ms (from cache) 1526 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 314ms 1527 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2fwasm-opt 286ms (from cache) 1528 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 287ms 1529 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2fhelper-api-error 211ms (from cache) 1530 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2fwast-printer 217ms (from cache) 1531 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 213ms 1532 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 219ms 1533 silly pacote range manifest for tapable@^2.2.0 fetched in 1ms 1534 http fetch GET 304 https://registry.npmjs.org/esrecurse 206ms (from cache) 1535 http fetch GET 304 https://registry.npmjs.org/object.assign 209ms (from cache) 1536 silly pacote range manifest for esrecurse@^4.3.0 fetched in 208ms 1537 silly pacote range manifest for object.assign@^4.1.0 fetched in 211ms 1538 silly pacote range manifest for braces@^3.0.1 fetched in 1ms 1539 silly pacote range manifest for picomatch@^2.2.3 fetched in 3ms 1540 http fetch GET 304 https://registry.npmjs.org/estraverse 156ms (from cache) 1541 silly pacote range manifest for estraverse@^4.1.1 fetched in 157ms 1542 http fetch GET 304 https://registry.npmjs.org/@nodelib%2ffs.scandir 167ms (from cache) 1543 silly pacote version manifest for @nodelib/[email protected] fetched in 169ms 1544 http fetch GET 304 https://registry.npmjs.org/imurmurhash 144ms (from cache) 1545 silly pacote range manifest for imurmurhash@^0.1.4 fetched in 145ms 1546 silly pacote range manifest for safe-buffer@^5.1.0 fetched in 2ms 1547 http fetch GET 304 https://registry.npmjs.org/color-convert 253ms (from cache) 1548 silly pacote range manifest for color-convert@^2.0.1 fetched in 255ms 1549 http fetch GET 200 https://registry.npmjs.org/fastq 534ms 1550 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2futf8 926ms (from cache) 1551 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 929ms 1552 http fetch GET 304 https://registry.npmjs.org/atob 182ms (from cache) 1553 silly pacote range manifest for atob@^2.1.2 fetched in 184ms 1554 http fetch GET 304 https://registry.npmjs.org/decode-uri-component 308ms (from cache) 1555 silly pacote range manifest for decode-uri-component@^0.2.0 fetched in 310ms 1556 http fetch GET 304 https://registry.npmjs.org/cssesc 329ms (from cache) 1557 silly pacote range manifest for cssesc@^3.0.0 fetched in 331ms 1558 silly pacote range manifest for semver@^7.1.1 fetched in 1ms 1559 http fetch GET 200 https://registry.npmjs.org/@types%2fnode 22512ms 1560 silly pacote range manifest for @types/node@* fetched in 22518ms 1561 silly pacote range manifest for @npmcli/promise-spawn@^1.3.2 fetched in 1ms 1562 silly pacote range manifest for npm-pick-manifest@^6.1.1 fetched in 1ms 1563 silly pacote range manifest for which@^2.0.2 fetched in 2ms 1564 http fetch GET 200 https://registry.npmjs.org/fastq/-/fastq-1.12.0.tgz 509ms 1565 http fetch GET 304 https://registry.npmjs.org/builtins 113ms (from cache) 1566 silly pacote range manifest for fastq@^1.6.0 fetched in 1050ms 1567 silly pacote range manifest for builtins@^1.0.3 fetched in 116ms 1568 http fetch GET 304 https://registry.npmjs.org/npm-bundled 96ms (from cache) 1569 silly pacote range manifest for npm-bundled@^1.1.1 fetched in 98ms 1570 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2fleb128 1559ms (from cache) 1571 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 1561ms 1572 silly pacote range manifest for minizlib@^2.0.0 fetched in 0ms 1573 silly pacote range manifest for npm-package-arg@^8.0.0 fetched in 1ms 1574 http fetch GET 304 https://registry.npmjs.org/minipass-json-stream 85ms (from cache) 1575 silly pacote range manifest for minipass-json-stream@^1.0.1 fetched in 87ms 1576 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2fieee754 1645ms (from cache) 1577 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 1646ms 1578 http fetch GET 304 https://registry.npmjs.org/@npmcli%2fnode-gyp 148ms (from cache) 1579 silly pacote range manifest for @npmcli/node-gyp@^1.0.2 fetched in 149ms 1580 http fetch GET 304 https://registry.npmjs.org/err-code 111ms (from cache) 1581 silly pacote range manifest for err-code@^2.0.2 fetched in 115ms 1582 http fetch GET 304 https://registry.npmjs.org/json-parse-even-better-errors 100ms (from cache) 1583 silly pacote range manifest for json-parse-even-better-errors@^2.3.0 fetched in 102ms 1584 http fetch GET 304 https://registry.npmjs.org/locate-path 99ms (from cache) 1585 silly pacote range manifest for locate-path@^5.0.0 fetched in 100ms 1586 http fetch GET 200 https://registry.npmjs.org/autoprefixer 50055ms 1587 silly pacote range manifest for autoprefixer@^9.6.1 fetched in 50057ms 1588 http fetch GET 304 https://registry.npmjs.org/path-exists 133ms (from cache) 1589 silly pacote range manifest for path-exists@^4.0.0 fetched in 134ms 1590 http fetch GET 304 https://registry.npmjs.org/onetime 413ms (from cache) 1591 silly pacote range manifest for onetime@^5.1.0 fetched in 415ms 1592 http fetch GET 304 https://registry.npmjs.org/signal-exit 418ms (from cache) 1593 silly pacote range manifest for signal-exit@^3.0.2 fetched in 420ms 1594 http fetch GET 304 https://registry.npmjs.org/util-deprecate 1207ms (from cache) 1595 silly pacote range manifest for util-deprecate@^1.0.2 fetched in 1209ms 1596 http fetch GET 200 https://registry.npmjs.org/node-gyp 931ms 1597 silly pacote range manifest for node-gyp@^7.1.0 fetched in 933ms 1598 http fetch GET 304 https://registry.npmjs.org/minipass-fetch 1161ms (from cache) 1599 silly pacote range manifest for minipass-fetch@^1.3.0 fetched in 1163ms 1600 http fetch GET 200 https://registry.npmjs.org/ignore-walk 813ms 1601 silly pacote range manifest for ignore-walk@^3.0.3 fetched in 816ms 1602 http fetch GET 304 https://registry.npmjs.org/os-tmpdir 295ms (from cache) 1603 http fetch GET 304 https://registry.npmjs.org/has 284ms (from cache) 1604 silly pacote range manifest for os-tmpdir@~1.0.2 fetched in 298ms 1605 silly pacote range manifest for has@^1.0.3 fetched in 287ms 1606 http fetch GET 304 https://registry.npmjs.org/css-declaration-sorter 212ms (from cache) 1607 http fetch GET 304 https://registry.npmjs.org/cssnano-utils 138ms (from cache) 1608 silly pacote range manifest for css-declaration-sorter@^6.0.3 fetched in 214ms 1609 silly pacote range manifest for cssnano-utils@^2.0.1 fetched in 140ms 1610 http fetch GET 304 https://registry.npmjs.org/postcss-calc 105ms (from cache) 1611 silly pacote range manifest for postcss-calc@^8.0.0 fetched in 106ms 1612 http fetch GET 304 https://registry.npmjs.org/postcss-convert-values 109ms (from cache) 1613 http fetch GET 304 https://registry.npmjs.org/postcss-colormin 132ms (from cache) 1614 http fetch GET 304 https://registry.npmjs.org/postcss-discard-comments 111ms (from cache) 1615 silly pacote range manifest for postcss-convert-values@^5.0.1 fetched in 113ms 1616 silly pacote range manifest for postcss-colormin@^5.2.0 fetched in 135ms 1617 silly pacote range manifest for postcss-discard-comments@^5.0.1 fetched in 116ms 1618 http fetch GET 304 https://registry.npmjs.org/postcss-discard-duplicates 110ms (from cache) 1619 silly pacote range manifest for postcss-discard-duplicates@^5.0.1 fetched in 112ms 1620 http fetch GET 304 https://registry.npmjs.org/postcss-discard-overridden 86ms (from cache) 1621 http fetch GET 304 https://registry.npmjs.org/postcss-discard-empty 134ms (from cache) 1622 silly pacote range manifest for postcss-discard-overridden@^5.0.1 fetched in 89ms 1623 silly pacote range manifest for postcss-discard-empty@^5.0.1 fetched in 136ms 1624 http fetch GET 304 https://registry.npmjs.org/postcss-merge-rules 85ms (from cache) 1625 http fetch GET 304 https://registry.npmjs.org/postcss-merge-longhand 86ms (from cache) 1626 silly pacote range manifest for postcss-merge-rules@^5.0.2 fetched in 88ms 1627 silly pacote range manifest for postcss-merge-longhand@^5.0.2 fetched in 89ms 1628 http fetch GET 304 https://registry.npmjs.org/postcss-minify-font-values 103ms (from cache) 1629 silly pacote range manifest for postcss-minify-font-values@^5.0.1 fetched in 104ms 1630 http fetch GET 304 https://registry.npmjs.org/postcss-minify-selectors 81ms (from cache) 1631 silly pacote range manifest for postcss-minify-selectors@^5.1.0 fetched in 83ms 1632 http fetch GET 304 https://registry.npmjs.org/postcss-minify-params 89ms (from cache) 1633 silly pacote range manifest for postcss-minify-params@^5.0.1 fetched in 91ms 1634 http fetch GET 304 https://registry.npmjs.org/postcss-normalize-charset 106ms (from cache) 1635 http fetch GET 304 https://registry.npmjs.org/postcss-normalize-display-values 106ms (from cache) 1636 silly pacote range manifest for postcss-normalize-charset@^5.0.1 fetched in 108ms 1637 silly pacote range manifest for postcss-normalize-display-values@^5.0.1 fetched in 108ms 1638 http fetch GET 304 https://registry.npmjs.org/postcss-normalize-repeat-style 77ms (from cache) 1639 silly pacote range manifest for postcss-normalize-repeat-style@^5.0.1 fetched in 78ms 1640 http fetch GET 304 https://registry.npmjs.org/postcss-normalize-positions 116ms (from cache) 1641 silly pacote range manifest for postcss-normalize-positions@^5.0.1 fetched in 117ms 1642 http fetch GET 304 https://registry.npmjs.org/postcss-normalize-string 93ms (from cache) 1643 silly pacote range manifest for postcss-normalize-string@^5.0.1 fetched in 95ms 1644 http fetch GET 304 https://registry.npmjs.org/postcss-normalize-timing-functions 90ms (from cache) 1645 http fetch GET 304 https://registry.npmjs.org/postcss-normalize-url 85ms (from cache) 1646 silly pacote range manifest for postcss-normalize-timing-functions@^5.0.1 fetched in 92ms 1647 silly pacote range manifest for postcss-normalize-url@^5.0.2 fetched in 88ms 1648 http fetch GET 304 https://registry.npmjs.org/postcss-normalize-unicode 116ms (from cache) 1649 silly pacote range manifest for postcss-normalize-unicode@^5.0.1 fetched in 119ms 1650 http fetch GET 304 https://registry.npmjs.org/postcss-normalize-whitespace 96ms (from cache) 1651 silly pacote range manifest for postcss-normalize-whitespace@^5.0.1 fetched in 97ms 1652 http fetch GET 200 https://registry.npmjs.org/@types%2feslint 3964ms 1653 silly pacote range manifest for @types/eslint@* fetched in 3966ms 1654 silly pacote range manifest for ms@^2.1.1 fetched in 1ms 1655 silly pacote range manifest for base64-js@^1.3.1 fetched in 1ms 1656 http fetch GET 304 https://registry.npmjs.org/postcss-ordered-values 104ms (from cache) 1657 silly pacote range manifest for postcss-ordered-values@^5.0.2 fetched in 106ms 1658 http fetch GET 304 https://registry.npmjs.org/postcss-reduce-transforms 93ms (from cache) 1659 silly pacote range manifest for postcss-reduce-transforms@^5.0.1 fetched in 95ms 1660 http fetch GET 304 https://registry.npmjs.org/postcss-reduce-initial 97ms (from cache) 1661 silly pacote range manifest for util-deprecate@^1.0.1 fetched in 2ms 1662 silly pacote range manifest for postcss-reduce-initial@^5.0.1 fetched in 99ms 1663 silly pacote range manifest for cssesc@^2.0.0 fetched in 3ms 1664 http fetch GET 304 https://registry.npmjs.org/postcss-svgo 91ms (from cache) 1665 silly pacote range manifest for postcss-svgo@^5.0.2 fetched in 93ms 1666 http fetch GET 304 https://registry.npmjs.org/string_decoder 89ms (from cache) 1667 silly pacote range manifest for string_decoder@^1.1.1 fetched in 91ms 1668 silly pacote range manifest for ansi-styles@^3.2.1 fetched in 2ms 1669 silly pacote range manifest for supports-color@^5.3.0 fetched in 1ms 1670 http fetch GET 304 https://registry.npmjs.org/ieee754 100ms (from cache) 1671 silly pacote range manifest for ieee754@^1.1.13 fetched in 101ms 1672 http fetch GET 304 https://registry.npmjs.org/postcss-unique-selectors 142ms (from cache) 1673 silly pacote range manifest for postcss-unique-selectors@^5.0.1 fetched in 144ms 1674 http fetch GET 304 https://registry.npmjs.org/clone 97ms (from cache) 1675 silly pacote range manifest for clone@^1.0.2 fetched in 98ms 1676 silly pacote range manifest for @babel/code-frame@^7.0.0 fetched in 1ms 1677 http fetch GET 304 https://registry.npmjs.org/indexes-of 96ms (from cache) 1678 silly pacote range manifest for indexes-of@^1.0.1 fetched in 98ms 1679 http fetch GET 304 https://registry.npmjs.org/flatten 103ms (from cache) 1680 silly pacote range manifest for flatten@^1.0.2 fetched in 105ms 1681 warn deprecated [email protected]: flatten is deprecated in favor of utility frameworks such as lodash. 1682 silly pacote range manifest for source-map-resolve@^0.5.2 fetched in 2ms 1683 http fetch GET 304 https://registry.npmjs.org/parent-module 111ms (from cache) 1684 silly pacote range manifest for parent-module@^1.0.0 fetched in 113ms 1685 http fetch GET 304 https://registry.npmjs.org/resolve-from 102ms (from cache) 1686 silly pacote range manifest for resolve-from@^4.0.0 fetched in 103ms 1687 http fetch GET 304 https://registry.npmjs.org/lines-and-columns 82ms (from cache) 1688 silly pacote range manifest for lines-and-columns@^1.1.6 fetched in 84ms 1689 silly pacote range manifest for ansi-styles@^4.0.0 fetched in 1ms 1690 http fetch GET 304 https://registry.npmjs.org/error-ex 101ms (from cache) 1691 silly pacote range manifest for error-ex@^1.3.1 fetched in 104ms 1692 silly pacote range manifest for micromatch@^3.1.4 fetched in 1ms 1693 silly pacote range manifest for normalize-path@^2.1.1 fetched in 2ms 1694 http fetch GET 304 https://registry.npmjs.org/urix 91ms (from cache) 1695 silly pacote range manifest for urix@^0.1.0 fetched in 92ms 1696 warn deprecated [email protected]: Please see https://github.com/lydell/urix#deprecated 1697 http fetch GET 304 https://registry.npmjs.org/isobject 94ms (from cache) 1698 silly pacote range manifest for isobject@^3.0.1 fetched in 95ms 1699 http fetch GET 304 https://registry.npmjs.org/p-defer 100ms (from cache) 1700 http fetch GET 304 https://registry.npmjs.org/is-number 95ms (from cache) 1701 silly pacote range manifest for p-defer@^1.0.0 fetched in 101ms 1702 silly pacote range manifest for is-number@^7.0.0 fetched in 97ms 1703 silly pacote range manifest for fill-range@^4.0.0 fetched in 2ms 1704 http fetch GET 304 https://registry.npmjs.org/arr-flatten 88ms (from cache) 1705 silly pacote range manifest for arr-flatten@^1.1.0 fetched in 90ms 1706 http fetch GET 304 https://registry.npmjs.org/array-unique 99ms (from cache) 1707 silly pacote range manifest for array-unique@^0.3.2 fetched in 100ms 1708 http fetch GET 304 https://registry.npmjs.org/extend-shallow 111ms (from cache) 1709 silly pacote range manifest for extend-shallow@^2.0.1 fetched in 113ms 1710 http fetch GET 304 https://registry.npmjs.org/repeat-element 85ms (from cache) 1711 silly pacote range manifest for repeat-element@^1.1.2 fetched in 86ms 1712 silly pacote range manifest for is-glob@^3.1.0 fetched in 1ms 1713 http fetch GET 200 https://registry.npmjs.org/postcss-minify-gradients 746ms 1714 http fetch GET 304 https://registry.npmjs.org/snapdragon 120ms (from cache) 1715 http fetch GET 304 https://registry.npmjs.org/snapdragon-node 110ms (from cache) 1716 silly pacote range manifest for snapdragon@^0.8.1 fetched in 122ms 1717 silly pacote range manifest for snapdragon-node@^2.0.1 fetched in 112ms 1718 silly pacote range manifest for graceful-fs@^4.1.11 fetched in 2ms 1719 silly pacote range manifest for binary-extensions@^1.0.0 fetched in 3ms 1720 silly pacote range manifest for readable-stream@^2.0.2 fetched in 2ms 1721 http fetch GET 304 https://registry.npmjs.org/to-regex 88ms (from cache) 1722 silly pacote range manifest for to-regex@^3.0.1 fetched in 89ms 1723 http fetch GET 304 https://registry.npmjs.org/path-dirname 82ms (from cache) 1724 silly pacote range manifest for path-dirname@^1.0.0 fetched in 85ms 1725 http fetch GET 304 https://registry.npmjs.org/nan 82ms (from cache) 1726 silly pacote range manifest for nan@^2.12.1 fetched in 83ms 1727 http fetch GET 200 https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.0.2.tgz 121ms 1728 silly pacote range manifest for postcss-minify-gradients@^5.0.2 fetched in 871ms 1729 http fetch GET 304 https://registry.npmjs.org/split-string 175ms (from cache) 1730 silly pacote range manifest for split-string@^3.0.2 fetched in 176ms 1731 http fetch GET 304 https://registry.npmjs.org/bindings 116ms (from cache) 1732 silly pacote range manifest for bindings@^1.5.0 fetched in 117ms 1733 http fetch GET 304 https://registry.npmjs.org/is-date-object 98ms (from cache) 1734 silly pacote range manifest for is-date-object@^1.0.1 fetched in 100ms 1735 http fetch GET 304 https://registry.npmjs.org/is-arguments 114ms (from cache) 1736 silly pacote range manifest for is-arguments@^1.0.4 fetched in 116ms 1737 http fetch GET 304 https://registry.npmjs.org/object-is 78ms (from cache) 1738 silly pacote range manifest for object-is@^1.0.1 fetched in 80ms 1739 http fetch GET 304 https://registry.npmjs.org/is-regex 88ms (from cache) 1740 silly pacote range manifest for is-regex@^1.0.4 fetched in 90ms 1741 silly pacote range manifest for mime-db@&gt;= 1.43.0 &lt; 2 fetched in 1ms 1742 silly pacote range manifest for array-union@^1.0.1 fetched in 1ms 1743 silly pacote range manifest for glob@^7.0.3 fetched in 1ms 1744 http fetch GET 304 https://registry.npmjs.org/object-keys 106ms (from cache) 1745 silly pacote range manifest for object-keys@^1.1.1 fetched in 108ms 1746 silly pacote range manifest for pify@^2.0.0 fetched in 1ms 1747 http fetch GET 304 https://registry.npmjs.org/regexp.prototype.flags 106ms (from cache) 1748 silly pacote range manifest for regexp.prototype.flags@^1.2.0 fetched in 108ms 1749 http fetch GET 304 https://registry.npmjs.org/dns-packet 93ms (from cache) 1750 silly pacote range manifest for dns-packet@^1.3.1 fetched in 94ms 1751 http fetch GET 304 https://registry.npmjs.org/thunky 90ms (from cache) 1752 http fetch GET 304 https://registry.npmjs.org/object-assign 72ms (from cache) 1753 silly pacote range manifest for thunky@^1.0.2 fetched in 92ms 1754 silly pacote range manifest for object-assign@^4.0.1 fetched in 73ms 1755 silly pacote version manifest for [email protected] fetched in 1ms 1756 silly pacote range manifest for braces@^2.3.1 fetched in 0ms 1757 http fetch GET 304 https://registry.npmjs.org/buffer-indexof 94ms (from cache) 1758 silly pacote range manifest for buffer-indexof@^1.0.0 fetched in 95ms 1759 silly pacote range manifest for extend-shallow@^3.0.2 fetched in 2ms 1760 http fetch GET 304 https://registry.npmjs.org/pinkie-promise 75ms (from cache) 1761 silly pacote range manifest for pinkie-promise@^2.0.0 fetched in 76ms 1762 http fetch GET 304 https://registry.npmjs.org/forwarded 79ms (from cache) 1763 silly pacote version manifest for [email protected] fetched in 81ms 1764 http fetch GET 304 https://registry.npmjs.org/arr-diff 95ms (from cache) 1765 silly pacote range manifest for arr-diff@^4.0.0 fetched in 96ms 1766 http fetch GET 304 https://registry.npmjs.org/extglob 85ms (from cache) 1767 silly pacote range manifest for extglob@^2.0.4 fetched in 86ms 1768 http fetch GET 304 https://registry.npmjs.org/fragment-cache 84ms (from cache) 1769 http fetch GET 304 https://registry.npmjs.org/define-property 120ms (from cache) 1770 silly pacote range manifest for fragment-cache@^0.2.1 fetched in 85ms 1771 silly pacote range manifest for define-property@^2.0.2 fetched in 123ms 1772 silly pacote range manifest for to-regex@^3.0.2 fetched in 2ms 1773 silly pacote range manifest for http-errors@~1.7.2 fetched in 2ms 1774 silly pacote version manifest for [email protected] fetched in 1ms 1775 silly pacote version manifest for [email protected] fetched in 1ms 1776 http fetch GET 304 https://registry.npmjs.org/uniq 792ms (from cache) 1777 silly pacote range manifest for uniq@^1.0.1 fetched in 793ms 1778 silly pacote range manifest for resolve-from@^3.0.0 fetched in 1ms 1779 http fetch GET 304 https://registry.npmjs.org/nanomatch 104ms (from cache) 1780 silly pacote range manifest for nanomatch@^1.2.9 fetched in 106ms 1781 http fetch GET 304 https://registry.npmjs.org/object.pick 96ms (from cache) 1782 silly pacote range manifest for object.pick@^1.3.0 fetched in 98ms 1783 silly pacote range manifest for lodash@^4.17.14 fetched in 1ms 1784 silly pacote range manifest for websocket-driver@&gt;=0.5.1 fetched in 0ms 1785 silly pacote version manifest for [email protected] fetched in 1ms 1786 silly pacote range manifest for statuses@&gt;= 1.4.0 &lt; 2 fetched in 0ms 1787 http fetch GET 304 https://registry.npmjs.org/regex-not 153ms (from cache) 1788 silly pacote range manifest for regex-not@^1.0.0 fetched in 155ms 1789 silly pacote range manifest for safe-buffer@&gt;=5.1.0 fetched in 1ms 1790 http fetch GET 304 https://registry.npmjs.org/destroy 134ms (from cache) 1791 silly pacote range manifest for destroy@~1.0.4 fetched in 136ms 1792 silly pacote range manifest for errno@^0.1.3 fetched in 1ms 1793 silly pacote range manifest for readable-stream@^2.0.1 fetched in 1ms 1794 http fetch GET 304 https://registry.npmjs.org/execa 110ms (from cache) 1795 silly pacote range manifest for execa@^1.0.0 fetched in 113ms 1796 http fetch GET 304 https://registry.npmjs.org/ip-regex 94ms (from cache) 1797 silly pacote range manifest for ip-regex@^2.1.0 fetched in 95ms 1798 silly pacote range manifest for string-width@^3.1.0 fetched in 1ms 1799 silly pacote range manifest for strip-ansi@^5.2.0 fetched in 2ms 1800 silly pacote range manifest for wrap-ansi@^5.1.0 fetched in 1ms 1801 silly pacote range manifest for locate-path@^3.0.0 fetched in 1ms 1802 silly pacote range manifest for emoji-regex@^7.0.1 fetched in 1ms 1803 silly pacote range manifest for is-fullwidth-code-point@^2.0.0 fetched in 1ms 1804 silly pacote range manifest for strip-ansi@^5.1.0 fetched in 0ms 1805 http fetch GET 200 https://registry.npmjs.org/@types%2fminimatch 170ms 1806 silly pacote range manifest for @types/minimatch@* fetched in 171ms 1807 http fetch GET 304 https://registry.npmjs.org/http-parser-js 105ms (from cache) 1808 silly pacote range manifest for http-parser-js@&gt;=0.5.1 fetched in 107ms 1809 http fetch GET 304 https://registry.npmjs.org/querystringify 92ms (from cache) 1810 silly pacote range manifest for querystringify@^2.1.1 fetched in 94ms 1811 silly pacote range manifest for readable-stream@^3.0.6 fetched in 1ms 1812 http fetch GET 304 https://registry.npmjs.org/websocket-extensions 121ms (from cache) 1813 silly pacote range manifest for websocket-extensions@&gt;=0.1.1 fetched in 123ms 1814 http fetch GET 304 https://registry.npmjs.org/is-path-inside 412ms (from cache) 1815 http fetch GET 304 https://registry.npmjs.org/detect-node 107ms (from cache) 1816 silly pacote range manifest for is-path-inside@^2.1.0 fetched in 414ms 1817 silly pacote range manifest for detect-node@^2.0.4 fetched in 108ms 1818 silly pacote range manifest for graceful-fs@^4.2.0 fetched in 0ms 1819 http fetch GET 304 https://registry.npmjs.org/hpack.js 118ms (from cache) 1820 silly pacote range manifest for hpack.js@^2.1.6 fetched in 119ms 1821 http fetch GET 304 https://registry.npmjs.org/obuf 118ms (from cache) 1822 silly pacote range manifest for obuf@^1.1.2 fetched in 120ms 1823 http fetch GET 304 https://registry.npmjs.org/jsonfile 85ms (from cache) 1824 silly pacote range manifest for jsonfile@^4.0.0 fetched in 87ms 1825 silly pacote range manifest for object-assign@^4 fetched in 3ms 1826 http fetch GET 304 https://registry.npmjs.org/wbuf 118ms (from cache) 1827 silly pacote range manifest for vary@^1 fetched in 3ms 1828 silly pacote range manifest for wbuf@^1.7.3 fetched in 121ms 1829 http fetch GET 304 https://registry.npmjs.org/decamelize 102ms (from cache) 1830 http fetch GET 304 https://registry.npmjs.org/camelcase 111ms (from cache) 1831 silly pacote range manifest for decamelize@^1.2.0 fetched in 104ms 1832 silly pacote range manifest for camelcase@^5.0.0 fetched in 113ms 1833 http fetch GET 304 https://registry.npmjs.org/base64-arraybuffer 94ms (from cache) 1834 silly pacote version manifest for [email protected] fetched in 96ms 1835 http fetch GET 304 https://registry.npmjs.org/universalify 136ms (from cache) 1836 silly pacote range manifest for universalify@^0.1.0 fetched in 137ms 1837 http fetch GET 304 https://registry.npmjs.org/regenerate 102ms (from cache) 1838 silly pacote range manifest for regenerate@^1.4.0 fetched in 103ms 1839 http fetch GET 304 https://registry.npmjs.org/regjsgen 95ms (from cache) 1840 silly pacote range manifest for regjsgen@^0.5.1 fetched in 98ms 1841 http fetch GET 304 https://registry.npmjs.org/regenerate-unicode-properties 106ms (from cache) 1842 silly pacote range manifest for regenerate-unicode-properties@^8.2.0 fetched in 108ms 1843 http fetch GET 304 https://registry.npmjs.org/regjsparser 102ms (from cache) 1844 silly pacote range manifest for estraverse@^5.2.0 fetched in 2ms 1845 silly pacote range manifest for regjsparser@^0.6.4 fetched in 103ms 1846 http fetch GET 200 https://registry.npmjs.org/make-fetch-happen 2982ms 1847 http fetch GET 304 https://registry.npmjs.org/unicode-match-property-ecmascript 99ms (from cache) 1848 silly pacote range manifest for unicode-match-property-ecmascript@^1.0.4 fetched in 100ms 1849 http fetch GET 304 https://registry.npmjs.org/unicode-match-property-value-ecmascript 83ms (from cache) 1850 silly pacote range manifest for unicode-match-property-value-ecmascript@^1.2.0 fetched in 85ms 1851 silly pacote version manifest for @nodelib/[email protected] fetched in 1ms 1852 http fetch GET 304 https://registry.npmjs.org/original 402ms (from cache) 1853 silly pacote range manifest for original@^1.0.0 fetched in 403ms 1854 http fetch GET 304 https://registry.npmjs.org/call-bind 104ms (from cache) 1855 silly pacote range manifest for call-bind@^1.0.0 fetched in 106ms 1856 http fetch GET 304 https://registry.npmjs.org/define-properties 109ms (from cache) 1857 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2ffloating-point-hex-parser 121ms (from cache) 1858 silly pacote range manifest for define-properties@^1.1.3 fetched in 111ms 1859 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 123ms 1860 http fetch GET 304 https://registry.npmjs.org/@xtuc%2flong 124ms (from cache) 1861 silly pacote version manifest for @xtuc/[email protected] fetched in 126ms 1862 http fetch GET 304 https://registry.npmjs.org/run-parallel 90ms (from cache) 1863 silly pacote range manifest for run-parallel@^1.1.9 fetched in 93ms 1864 http fetch GET 304 https://registry.npmjs.org/has-symbols 117ms (from cache) 1865 silly pacote range manifest for browserslist@^4.12.0 fetched in 1ms 1866 silly pacote range manifest for caniuse-lite@^1.0.30001109 fetched in 2ms 1867 silly pacote range manifest for has-symbols@^1.0.1 fetched in 120ms 1868 silly pacote range manifest for colorette@^1.2.1 fetched in 1ms 1869 http fetch GET 304 https://registry.npmjs.org/color-name 114ms (from cache) 1870 silly pacote range manifest for color-name@~1.1.4 fetched in 115ms 1871 silly pacote range manifest for postcss@^7.0.32 fetched in 1ms 1872 silly pacote range manifest for mimic-fn@^2.1.0 fetched in 1ms 1873 http fetch GET 304 https://registry.npmjs.org/reusify 97ms (from cache) 1874 silly pacote range manifest for reusify@^1.0.4 fetched in 99ms 1875 silly pacote range manifest for graceful-fs@^4.2.3 fetched in 1ms 1876 http fetch GET 304 https://registry.npmjs.org/jsonparse 94ms (from cache) 1877 silly pacote range manifest for jsonparse@^1.3.1 fetched in 95ms 1878 http fetch GET 200 https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.0.5.tgz 211ms 1879 http fetch GET 304 https://registry.npmjs.org/p-locate 114ms (from cache) 1880 silly pacote range manifest for p-locate@^4.1.0 fetched in 115ms 1881 silly pacote range manifest for make-fetch-happen@^9.0.1 fetched in 3200ms 1882 silly pacote range manifest for semver@^7.3.2 fetched in 2ms 1883 http fetch GET 304 https://registry.npmjs.org/normalize-range 97ms (from cache) 1884 silly pacote range manifest for normalize-range@^0.1.2 fetched in 98ms 1885 silly pacote range manifest for minipass@^3.1.0 fetched in 1ms 1886 http fetch GET 304 https://registry.npmjs.org/@xtuc%2fieee754 132ms (from cache) 1887 silly pacote range manifest for @xtuc/ieee754@^1.2.0 fetched in 134ms 1888 http fetch GET 304 https://registry.npmjs.org/num2fraction 103ms (from cache) 1889 silly pacote range manifest for num2fraction@^1.2.2 fetched in 105ms 1890 http fetch GET 304 https://registry.npmjs.org/env-paths 83ms (from cache) 1891 silly pacote range manifest for env-paths@^2.2.0 fetched in 84ms 1892 silly pacote range manifest for postcss-value-parser@^4.0.2 fetched in 1ms 1893 http fetch GET 304 https://registry.npmjs.org/npmlog 90ms (from cache) 1894 silly pacote range manifest for npmlog@^4.1.2 fetched in 93ms 1895 http fetch GET 304 https://registry.npmjs.org/function-bind 93ms (from cache) 1896 http fetch GET 304 https://registry.npmjs.org/request 106ms (from cache) 1897 silly pacote range manifest for function-bind@^1.1.1 fetched in 96ms 1898 silly pacote range manifest for request@^2.88.2 fetched in 109ms 1899 warn deprecated [email protected]: request has been deprecated, see https://github.com/request/request/issues/3142 1900 silly pacote range manifest for postcss-selector-parser@^6.0.5 fetched in 1ms 1901 http fetch GET 304 https://registry.npmjs.org/timsort 97ms (from cache) 1902 silly pacote range manifest for timsort@^0.3.0 fetched in 100ms 1903 http fetch GET 304 https://registry.npmjs.org/caniuse-api 82ms (from cache) 1904 silly pacote range manifest for caniuse-api@^3.0.0 fetched in 84ms 1905 http fetch GET 304 https://registry.npmjs.org/colord 81ms (from cache) 1906 silly pacote range manifest for colord@^2.0.1 fetched in 83ms 1907 silly pacote range manifest for browserslist@^4.16.0 fetched in 1ms 1908 http fetch GET 304 https://registry.npmjs.org/vendors 85ms (from cache) 1909 silly pacote range manifest for vendors@^1.0.3 fetched in 86ms 1910 http fetch GET 304 https://registry.npmjs.org/css-color-names 94ms (from cache) 1911 silly pacote range manifest for css-color-names@^1.0.1 fetched in 95ms 1912 silly pacote range manifest for @types/json-schema@* fetched in 1ms 1913 http fetch GET 304 https://registry.npmjs.org/alphanum-sort 86ms (from cache) 1914 silly pacote range manifest for alphanum-sort@^1.0.2 fetched in 87ms 1915 silly pacote range manifest for safe-buffer@~5.2.0 fetched in 1ms 1916 silly pacote range manifest for color-convert@^1.9.0 fetched in 1ms 1917 http fetch GET 304 https://registry.npmjs.org/uniqs 88ms (from cache) 1918 silly pacote range manifest for uniqs@^2.0.0 fetched in 89ms 1919 http fetch GET 304 https://registry.npmjs.org/stylehacks 169ms (from cache) 1920 http fetch GET 304 https://registry.npmjs.org/svgo 78ms (from cache) 1921 silly pacote range manifest for stylehacks@^5.0.1 fetched in 172ms 1922 silly pacote range manifest for svgo@^2.3.0 fetched in 81ms 1923 http fetch GET 304 https://registry.npmjs.org/resolve-url 78ms (from cache) 1924 silly pacote range manifest for resolve-url@^0.2.1 fetched in 79ms 1925 warn deprecated [email protected]: https://github.com/lydell/resolve-url#deprecated 1926 http fetch GET 304 https://registry.npmjs.org/normalize-url 109ms (from cache) 1927 silly pacote range manifest for normalize-url@^6.0.1 fetched in 111ms 1928 silly pacote range manifest for is-number@^3.0.0 fetched in 1ms 1929 http fetch GET 304 https://registry.npmjs.org/source-map-url 88ms (from cache) 1930 silly pacote range manifest for source-map-url@^0.4.0 fetched in 89ms 1931 silly pacote range manifest for to-regex-range@^2.1.0 fetched in 2ms 1932 http fetch GET 304 https://registry.npmjs.org/remove-trailing-separator 90ms (from cache) 1933 silly pacote range manifest for remove-trailing-separator@^1.0.1 fetched in 92ms 1934 silly pacote range manifest for is-extglob@^2.1.0 fetched in 1ms 1935 http fetch GET 304 https://registry.npmjs.org/is-arrayish 102ms (from cache) 1936 silly pacote range manifest for is-arrayish@^0.2.1 fetched in 103ms 1937 silly pacote range manifest for debug@^2.2.0 fetched in 2ms 1938 silly pacote range manifest for define-property@^0.2.5 fetched in 1ms 1939 http fetch GET 304 https://registry.npmjs.org/repeat-string 118ms (from cache) 1940 silly pacote range manifest for repeat-string@^1.6.1 fetched in 119ms 1941 silly pacote range manifest for source-map@^0.5.6 fetched in 0ms 1942 silly pacote range manifest for source-map-resolve@^0.5.0 fetched in 1ms 1943 http fetch GET 304 https://registry.npmjs.org/callsites 148ms (from cache) 1944 silly pacote range manifest for callsites@^3.0.0 fetched in 151ms 1945 silly pacote range manifest for define-property@^1.0.0 fetched in 2ms 1946 silly pacote range manifest for isobject@^3.0.0 fetched in 1ms 1947 http fetch GET 304 https://registry.npmjs.org/is-extendable 116ms (from cache) 1948 silly pacote range manifest for is-extendable@^0.1.0 fetched in 117ms 1949 http fetch GET 304 https://registry.npmjs.org/base 101ms (from cache) 1950 silly pacote range manifest for base@^0.11.1 fetched in 103ms 1951 http fetch GET 304 https://registry.npmjs.org/map-cache 96ms (from cache) 1952 silly pacote range manifest for inherits@~2.0.3 fetched in 2ms 1953 silly pacote range manifest for map-cache@^0.2.2 fetched in 98ms 1954 http fetch GET 304 https://registry.npmjs.org/use 101ms (from cache) 1955 silly pacote range manifest for use@^3.1.0 fetched in 103ms 1956 silly pacote range manifest for string_decoder@~1.1.1 fetched in 1ms 1957 silly pacote range manifest for util-deprecate@~1.0.1 fetched in 1ms 1958 silly pacote range manifest for regex-not@^1.0.2 fetched in 1ms 1959 http fetch GET 304 https://registry.npmjs.org/core-util-is 101ms (from cache) 1960 silly pacote range manifest for core-util-is@~1.0.0 fetched in 102ms 1961 silly pacote range manifest for colord@^2.6 fetched in 2ms 1962 silly pacote range manifest for extend-shallow@^3.0.0 fetched in 1ms 1963 http fetch GET 304 https://registry.npmjs.org/process-nextick-args 98ms (from cache) 1964 silly pacote range manifest for process-nextick-args@~2.0.0 fetched in 100ms 1965 http fetch GET 304 https://registry.npmjs.org/isarray 118ms (from cache) 1966 silly pacote range manifest for isarray@~1.0.0 fetched in 119ms 1967 silly pacote range manifest for call-bind@^1.0.2 fetched in 0ms 1968 http fetch GET 304 https://registry.npmjs.org/file-uri-to-path 90ms (from cache) 1969 silly pacote version manifest for [email protected] fetched in 92ms 1970 silly pacote range manifest for ip@^1.1.0 fetched in 1ms 1971 silly pacote range manifest for safe-buffer@^5.0.1 fetched in 0ms 1972 http fetch GET 304 https://registry.npmjs.org/has-tostringtag 118ms (from cache) 1973 http fetch GET 304 https://registry.npmjs.org/safe-regex 176ms (from cache) 1974 silly pacote range manifest for has-tostringtag@^1.0.0 fetched in 120ms 1975 silly pacote range manifest for safe-regex@^1.1.0 fetched in 178ms 1976 silly pacote range manifest for is-extendable@^1.0.1 fetched in 2ms 1977 http fetch GET 304 https://registry.npmjs.org/array-uniq 108ms (from cache) 1978 silly pacote range manifest for array-uniq@^1.0.1 fetched in 109ms 1979 http fetch GET 304 https://registry.npmjs.org/assign-symbols 98ms (from cache) 1980 silly pacote range manifest for assign-symbols@^1.0.0 fetched in 100ms 1981 silly pacote version manifest for [email protected] fetched in 2ms 1982 http fetch GET 304 https://registry.npmjs.org/nopt 780ms (from cache) 1983 silly pacote range manifest for nopt@^5.0.0 fetched in 781ms 1984 http fetch GET 304 https://registry.npmjs.org/snapdragon-util 324ms (from cache) 1985 silly pacote range manifest for snapdragon-util@^3.0.1 fetched in 325ms 1986 http fetch GET 304 https://registry.npmjs.org/pinkie 77ms (from cache) 1987 silly pacote range manifest for pinkie@^2.0.0 fetched in 79ms 1988 http fetch GET 304 https://registry.npmjs.org/is-descriptor 102ms (from cache) 1989 silly pacote range manifest for is-descriptor@^1.0.2 fetched in 105ms 1990 http fetch GET 304 https://registry.npmjs.org/minipass-sized 831ms (from cache) 1991 http fetch GET 304 https://registry.npmjs.org/expand-brackets 127ms (from cache) 1992 http fetch GET 304 https://registry.npmjs.org/is-windows 95ms (from cache) 1993 silly pacote range manifest for minipass-sized@^1.0.3 fetched in 834ms 1994 silly pacote range manifest for is-windows@^1.0.2 fetched in 96ms 1995 silly pacote range manifest for expand-brackets@^2.1.4 fetched in 130ms 1996 silly pacote range manifest for signal-exit@^3.0.0 fetched in 1ms 1997 silly pacote range manifest for ansi-regex@^4.1.0 fetched in 1ms 1998 silly pacote range manifest for ansi-styles@^3.2.0 fetched in 1ms 1999 silly pacote range manifest for strip-ansi@^5.0.0 fetched in 0ms 2000 silly pacote range manifest for p-locate@^3.0.0 fetched in 2ms 2001 silly pacote range manifest for path-exists@^3.0.0 fetched in 1ms 2002 http fetch GET 304 https://registry.npmjs.org/encoding 873ms (from cache) 2003 silly pacote range manifest for encoding@^0.1.12 fetched in 875ms 2004 silly pacote range manifest for inherits@^2.0.1 fetched in 1ms 2005 silly pacote range manifest for obuf@^1.0.0 fetched in 1ms 2006 silly pacote range manifest for wbuf@^1.1.0 fetched in 0ms 2007 silly pacote range manifest for graceful-fs@^4.1.6 fetched in 0ms 2008 http fetch GET 304 https://registry.npmjs.org/is-stream 94ms (from cache) 2009 silly pacote range manifest for is-stream@^1.1.0 fetched in 95ms 2010 silly pacote range manifest for jsesc@~0.5.0 fetched in 2ms 2011 http fetch GET 304 https://registry.npmjs.org/cross-spawn 191ms (from cache) 2012 silly pacote range manifest for cross-spawn@^6.0.0 fetched in 193ms 2013 http fetch GET 304 https://registry.npmjs.org/p-finally 112ms (from cache) 2014 silly pacote range manifest for p-finally@^1.0.0 fetched in 113ms 2015 silly pacote range manifest for url-parse@^1.4.3 fetched in 1ms 2016 http fetch GET 304 https://registry.npmjs.org/path-is-inside 108ms (from cache) 2017 http fetch GET 304 https://registry.npmjs.org/get-stream 194ms (from cache) 2018 silly pacote range manifest for path-is-inside@^1.0.2 fetched in 110ms 2019 silly pacote range manifest for object-keys@^1.0.12 fetched in 1ms 2020 silly pacote range manifest for get-stream@^4.0.0 fetched in 196ms 2021 silly pacote range manifest for p-limit@^2.2.0 fetched in 2ms 2022 http fetch GET 304 https://registry.npmjs.org/minimalistic-assert 117ms (from cache) 2023 silly pacote range manifest for minimalistic-assert@^1.0.0 fetched in 119ms 2024 silly pacote range manifest for cacache@^15.2.0 fetched in 2ms 2025 http fetch GET 304 https://registry.npmjs.org/unicode-canonical-property-names-ecmascript 116ms (from cache) 2026 silly pacote range manifest for unicode-canonical-property-names-ecmascript@^1.0.4 fetched in 118ms 2027 http fetch GET 304 https://registry.npmjs.org/strip-eof 166ms (from cache) 2028 silly pacote range manifest for strip-eof@^1.0.0 fetched in 167ms 2029 silly pacote range manifest for https-proxy-agent@^5.0.0 fetched in 1ms 2030 http fetch GET 304 https://registry.npmjs.org/queue-microtask 80ms (from cache) 2031 silly pacote range manifest for queue-microtask@^1.2.2 fetched in 81ms 2032 silly pacote range manifest for minipass-fetch@^1.3.2 fetched in 1ms 2033 silly pacote range manifest for minipass-pipeline@^1.2.4 fetched in 1ms 2034 silly pacote range manifest for negotiator@^0.6.2 fetched in 1ms 2035 http fetch GET 304 https://registry.npmjs.org/get-intrinsic 94ms (from cache) 2036 silly pacote range manifest for get-intrinsic@^1.0.2 fetched in 97ms 2037 silly pacote range manifest for ssri@^8.0.0 fetched in 1ms 2038 http fetch GET 304 https://registry.npmjs.org/agentkeepalive 98ms (from cache) 2039 silly pacote range manifest for agentkeepalive@^4.1.3 fetched in 100ms 2040 http fetch GET 304 https://registry.npmjs.org/npm-run-path 241ms (from cache) 2041 silly pacote range manifest for npm-run-path@^2.0.0 fetched in 243ms 2042 http fetch GET 304 https://registry.npmjs.org/http-cache-semantics 84ms (from cache) 2043 http fetch GET 304 https://registry.npmjs.org/http-proxy-agent 81ms (from cache) 2044 silly pacote range manifest for http-cache-semantics@^4.1.0 fetched in 85ms 2045 silly pacote range manifest for http-proxy-agent@^4.0.1 fetched in 83ms 2046 silly pacote range manifest for set-blocking@~2.0.0 fetched in 2ms 2047 http fetch GET 304 https://registry.npmjs.org/is-lambda 97ms (from cache) 2048 silly pacote range manifest for is-lambda@^1.0.1 fetched in 98ms 2049 http fetch GET 304 https://registry.npmjs.org/socks-proxy-agent 82ms (from cache) 2050 http fetch GET 304 https://registry.npmjs.org/console-control-strings 89ms (from cache) 2051 silly pacote range manifest for console-control-strings@~1.1.0 fetched in 91ms 2052 http fetch GET 304 https://registry.npmjs.org/gauge 96ms (from cache) 2053 silly pacote range manifest for gauge@~2.7.3 fetched in 98ms 2054 silly pacote range manifest for extend@~3.0.2 fetched in 1ms 2055 http fetch GET 304 https://registry.npmjs.org/aws-sign2 116ms (from cache) 2056 http fetch GET 304 https://registry.npmjs.org/are-we-there-yet 153ms (from cache) 2057 silly pacote range manifest for aws-sign2@~0.7.0 fetched in 118ms 2058 silly pacote range manifest for are-we-there-yet@~1.1.2 fetched in 155ms 2059 http fetch GET 304 https://registry.npmjs.org/aws4 123ms (from cache) 2060 silly pacote range manifest for aws4@^1.8.0 fetched in 125ms 2061 http fetch GET 304 https://registry.npmjs.org/caseless 131ms (from cache) 2062 silly pacote range manifest for caseless@~0.12.0 fetched in 133ms 2063 http fetch GET 304 https://registry.npmjs.org/forever-agent 142ms (from cache) 2064 silly pacote range manifest for forever-agent@~0.6.1 fetched in 144ms 2065 http fetch GET 304 https://registry.npmjs.org/combined-stream 187ms (from cache) 2066 silly pacote range manifest for combined-stream@~1.0.6 fetched in 188ms 2067 http fetch GET 304 https://registry.npmjs.org/har-validator 376ms (from cache) 2068 silly pacote range manifest for har-validator@~5.1.3 fetched in 378ms 2069 warn deprecated [email protected]: this library is no longer supported 2070 http fetch GET 304 https://registry.npmjs.org/http-signature 371ms (from cache) 2071 silly pacote range manifest for mime-types@~2.1.19 fetched in 1ms 2072 silly pacote range manifest for http-signature@~1.2.0 fetched in 373ms 2073 http fetch GET 304 https://registry.npmjs.org/form-data 387ms (from cache) 2074 silly pacote range manifest for form-data@~2.3.2 fetched in 389ms 2075 silly pacote range manifest for qs@~6.5.2 fetched in 2ms 2076 silly pacote range manifest for safe-buffer@^5.1.2 fetched in 1ms 2077 http fetch GET 200 https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.0.0.tgz 596ms 2078 silly pacote range manifest for socks-proxy-agent@^6.0.0 fetched in 682ms 2079 http fetch GET 304 https://registry.npmjs.org/unicode-property-aliases-ecmascript 796ms (from cache) 2080 silly pacote range manifest for unicode-property-aliases-ecmascript@^1.0.4 fetched in 798ms 2081 silly pacote range manifest for browserslist@^4.0.0 fetched in 0ms 2082 silly pacote range manifest for caniuse-lite@^1.0.0 fetched in 1ms 2083 http fetch GET 304 https://registry.npmjs.org/is-typedarray 546ms (from cache) 2084 silly pacote range manifest for is-typedarray@~1.0.0 fetched in 547ms 2085 http fetch GET 304 https://registry.npmjs.org/isstream 521ms (from cache) 2086 silly pacote range manifest for isstream@~0.1.2 fetched in 522ms 2087 silly pacote version manifest for [email protected] fetched in 2ms 2088 http fetch GET 304 https://registry.npmjs.org/json-stringify-safe 503ms (from cache) 2089 silly pacote range manifest for json-stringify-safe@~5.0.1 fetched in 505ms 2090 silly pacote range manifest for commander@^7.1.0 fetched in 3ms 2091 http fetch GET 304 https://registry.npmjs.org/performance-now 353ms (from cache) 2092 silly pacote range manifest for performance-now@^2.1.0 fetched in 355ms 2093 http fetch GET 304 https://registry.npmjs.org/tough-cookie 364ms (from cache) 2094 silly pacote range manifest for tough-cookie@~2.5.0 fetched in 366ms 2095 http fetch GET 304 https://registry.npmjs.org/tunnel-agent 425ms (from cache) 2096 silly pacote range manifest for tunnel-agent@^0.6.0 fetched in 426ms 2097 http fetch GET 304 https://registry.npmjs.org/lodash.memoize 416ms (from cache) 2098 silly pacote range manifest for lodash.memoize@^4.1.2 fetched in 417ms 2099 silly pacote range manifest for kind-of@^3.0.2 fetched in 2ms 2100 silly pacote range manifest for is-descriptor@^0.1.0 fetched in 2ms 2101 silly pacote range manifest for is-descriptor@^1.0.0 fetched in 1ms 2102 http fetch GET 304 https://registry.npmjs.org/lodash.uniq 577ms (from cache) 2103 silly pacote range manifest for lodash.uniq@^4.5.0 fetched in 580ms 2104 http fetch GET 304 https://registry.npmjs.org/css-select 631ms (from cache) 2105 silly pacote range manifest for css-select@^4.1.3 fetched in 633ms 2106 silly pacote range manifest for component-emitter@^1.2.1 fetched in 2ms 2107 http fetch GET 304 https://registry.npmjs.org/@trysound%2fsax 668ms (from cache) 2108 silly pacote version manifest for @trysound/[email protected] fetched in 669ms 2109 http fetch GET 304 https://registry.npmjs.org/oauth-sign 939ms (from cache) 2110 silly pacote range manifest for oauth-sign@~0.9.0 fetched in 942ms 2111 silly pacote range manifest for safe-buffer@~5.1.0 fetched in 0ms 2112 silly pacote range manifest for has-symbols@^1.0.2 fetched in 0ms 2113 http fetch GET 304 https://registry.npmjs.org/css-tree 613ms (from cache) 2114 silly pacote range manifest for css-tree@^1.1.2 fetched in 615ms 2115 http fetch GET 304 https://registry.npmjs.org/csso 594ms (from cache) 2116 silly pacote range manifest for csso@^4.2.0 fetched in 596ms 2117 silly pacote range manifest for kind-of@^3.2.0 fetched in 1ms 2118 http fetch GET 304 https://registry.npmjs.org/stable 534ms (from cache) 2119 silly pacote range manifest for stable@^0.1.8 fetched in 536ms 2120 http fetch GET 304 https://registry.npmjs.org/cache-base 553ms (from cache) 2121 silly pacote range manifest for cache-base@^1.0.1 fetched in 555ms 2122 silly pacote range manifest for debug@^2.3.3 fetched in 1ms 2123 http fetch GET 304 https://registry.npmjs.org/class-utils 433ms (from cache) 2124 silly pacote range manifest for class-utils@^0.3.5 fetched in 435ms 2125 silly pacote range manifest for p-limit@^2.0.0 fetched in 1ms 2126 http fetch GET 304 https://registry.npmjs.org/mixin-deep 377ms (from cache) 2127 silly pacote range manifest for mixin-deep@^1.2.0 fetched in 379ms 2128 http fetch GET 304 https://registry.npmjs.org/pascalcase 375ms (from cache) 2129 silly pacote range manifest for pascalcase@^0.1.1 fetched in 377ms 2130 silly pacote range manifest for semver@^5.5.0 fetched in 1ms 2131 http fetch GET 304 https://registry.npmjs.org/ret 358ms (from cache) 2132 silly pacote range manifest for ret@~0.1.10 fetched in 360ms 2133 silly pacote range manifest for which@^1.2.9 fetched in 1ms 2134 http fetch GET 304 https://registry.npmjs.org/abbrev 354ms (from cache) 2135 silly pacote range manifest for abbrev@1 fetched in 355ms 2136 http fetch GET 304 https://registry.npmjs.org/is-accessor-descriptor 352ms (from cache) 2137 silly pacote range manifest for is-accessor-descriptor@^1.0.0 fetched in 354ms 2138 silly pacote range manifest for depd@^1.1.2 fetched in 1ms 2139 http fetch GET 304 https://registry.npmjs.org/is-data-descriptor 262ms (from cache) 2140 silly pacote range manifest for is-data-descriptor@^1.0.0 fetched in 263ms 2141 http fetch GET 304 https://registry.npmjs.org/posix-character-classes 231ms (from cache) 2142 silly pacote range manifest for posix-character-classes@^0.1.0 fetched in 232ms 2143 http fetch GET 304 https://registry.npmjs.org/nice-try 158ms (from cache) 2144 silly pacote range manifest for nice-try@^1.0.4 fetched in 160ms 2145 http fetch GET 304 https://registry.npmjs.org/pump 92ms (from cache) 2146 silly pacote range manifest for pump@^3.0.0 fetched in 94ms 2147 silly pacote range manifest for console-control-strings@^1.0.0 fetched in 1ms 2148 http fetch GET 304 https://registry.npmjs.org/shebang-command 104ms (from cache) 2149 silly pacote range manifest for shebang-command@^1.2.0 fetched in 105ms 2150 silly pacote range manifest for object-assign@^4.1.0 fetched in 1ms 2151 silly pacote range manifest for string-width@^1.0.1 fetched in 2ms 2152 http fetch GET 304 https://registry.npmjs.org/path-key 138ms (from cache) 2153 silly pacote range manifest for path-key@^2.0.1 fetched in 139ms 2154 http fetch GET 304 https://registry.npmjs.org/humanize-ms 88ms (from cache) 2155 silly pacote range manifest for humanize-ms@^1.2.1 fetched in 90ms 2156 silly pacote range manifest for readable-stream@^2.0.6 fetched in 1ms 2157 http fetch GET 304 https://registry.npmjs.org/p-try 116ms (from cache) 2158 silly pacote range manifest for p-try@^2.0.0 fetched in 117ms 2159 silly pacote range manifest for ajv@^6.12.3 fetched in 1ms 2160 http fetch GET 304 https://registry.npmjs.org/path-key 93ms (from cache) 2161 silly pacote range manifest for path-key@^2.0.0 fetched in 95ms 2162 http fetch GET 304 https://registry.npmjs.org/aproba 97ms (from cache) 2163 silly pacote range manifest for aproba@^1.0.3 fetched in 99ms 2164 http fetch GET 304 https://registry.npmjs.org/has-unicode 79ms (from cache) 2165 silly pacote range manifest for has-unicode@^2.0.0 fetched in 81ms 2166 http fetch GET 304 https://registry.npmjs.org/@tootallnate%2fonce 119ms (from cache) 2167 silly pacote range manifest for @tootallnate/once@1 fetched in 121ms 2168 http fetch GET 304 https://registry.npmjs.org/delegates 81ms (from cache) 2169 silly pacote range manifest for delegates@^1.0.0 fetched in 82ms 2170 silly pacote range manifest for combined-stream@^1.0.6 fetched in 1ms 2171 silly pacote range manifest for mime-types@^2.1.12 fetched in 1ms 2172 http fetch GET 304 https://registry.npmjs.org/wide-align 97ms (from cache) 2173 silly pacote range manifest for agent-base@^6.0.2 fetched in 1ms 2174 silly pacote range manifest for debug@^4.3.1 fetched in 0ms 2175 silly pacote range manifest for wide-align@^1.1.0 fetched in 99ms 2176 http fetch GET 304 https://registry.npmjs.org/delayed-stream 105ms (from cache) 2177 silly pacote range manifest for delayed-stream@~1.0.0 fetched in 106ms 2178 silly pacote range manifest for punycode@^2.1.1 fetched in 1ms 2179 http fetch GET 304 https://registry.npmjs.org/har-schema 94ms (from cache) 2180 silly pacote range manifest for har-schema@^2.0.0 fetched in 95ms 2181 silly pacote range manifest for is-accessor-descriptor@^0.1.6 fetched in 1ms 2182 http fetch GET 304 https://registry.npmjs.org/assert-plus 82ms (from cache) 2183 silly pacote range manifest for is-data-descriptor@^0.1.4 fetched in 2ms 2184 silly pacote range manifest for assert-plus@^1.0.0 fetched in 84ms 2185 silly pacote range manifest for kind-of@^5.0.0 fetched in 1ms 2186 http fetch GET 304 https://registry.npmjs.org/sshpk 88ms (from cache) 2187 silly pacote range manifest for sshpk@^1.7.0 fetched in 90ms 2188 http fetch GET 304 https://registry.npmjs.org/jsprim 101ms (from cache) 2189 http fetch GET 304 https://registry.npmjs.org/asynckit 90ms (from cache) 2190 silly pacote range manifest for jsprim@^1.2.2 fetched in 102ms 2191 silly pacote range manifest for asynckit@^0.4.0 fetched in 92ms 2192 http fetch GET 304 https://registry.npmjs.org/socks 96ms (from cache) 2193 http fetch GET 304 https://registry.npmjs.org/psl 96ms (from cache) 2194 silly pacote range manifest for socks@^2.6.1 fetched in 98ms 2195 silly pacote range manifest for psl@^1.1.28 fetched in 99ms 2196 http fetch GET 304 https://registry.npmjs.org/is-buffer 86ms (from cache) 2197 silly pacote range manifest for is-buffer@^1.1.5 fetched in 88ms 2198 http fetch GET 304 https://registry.npmjs.org/css-what 106ms (from cache) 2199 silly pacote range manifest for css-what@^5.0.0 fetched in 109ms 2200 http fetch GET 304 https://registry.npmjs.org/boolbase 112ms (from cache) 2201 silly pacote range manifest for boolbase@^1.0.0 fetched in 113ms 2202 http fetch GET 304 https://registry.npmjs.org/domhandler 88ms (from cache) 2203 silly pacote range manifest for domhandler@^4.2.0 fetched in 91ms 2204 http fetch GET 304 https://registry.npmjs.org/domutils 99ms (from cache) 2205 silly pacote range manifest for domutils@^2.6.0 fetched in 101ms 2206 http fetch GET 304 https://registry.npmjs.org/nth-check 110ms (from cache) 2207 silly pacote range manifest for nth-check@^2.0.0 fetched in 112ms 2208 http fetch GET 304 https://registry.npmjs.org/get-value 83ms (from cache) 2209 silly pacote range manifest for get-value@^2.0.6 fetched in 84ms 2210 http fetch GET 304 https://registry.npmjs.org/collection-visit 99ms (from cache) 2211 silly pacote range manifest for collection-visit@^1.0.0 fetched in 100ms 2212 http fetch GET 304 https://registry.npmjs.org/has-value 83ms (from cache) 2213 silly pacote range manifest for has-value@^1.0.0 fetched in 84ms 2214 http fetch GET 304 https://registry.npmjs.org/to-object-path 103ms (from cache) 2215 http fetch GET 304 https://registry.npmjs.org/union-value 86ms (from cache) 2216 silly pacote range manifest for to-object-path@^0.3.0 fetched in 105ms 2217 silly pacote range manifest for kind-of@^6.0.0 fetched in 0ms 2218 silly pacote range manifest for union-value@^1.0.0 fetched in 88ms 2219 http fetch GET 304 https://registry.npmjs.org/set-value 111ms (from cache) 2220 silly pacote range manifest for once@^1.3.1 fetched in 2ms 2221 silly pacote range manifest for set-value@^2.0.0 fetched in 113ms 2222 http fetch GET 304 https://registry.npmjs.org/unset-value 85ms (from cache) 2223 silly pacote range manifest for unset-value@^1.0.0 fetched in 86ms 2224 silly pacote range manifest for is-fullwidth-code-point@^1.0.0 fetched in 2ms 2225 silly pacote range manifest for strip-ansi@^3.0.0 fetched in 1ms 2226 silly pacote range manifest for ms@^2.0.0 fetched in 1ms 2227 silly pacote range manifest for string-width@^1.0.2 || 2 fetched in 1ms 2228 http fetch GET 304 https://registry.npmjs.org/static-extend 101ms (from cache) 2229 http fetch GET 304 https://registry.npmjs.org/arr-union 104ms (from cache) 2230 silly pacote range manifest for static-extend@^0.1.1 fetched in 102ms 2231 silly pacote range manifest for arr-union@^3.1.0 fetched in 105ms 2232 http fetch GET 304 https://registry.npmjs.org/for-in 78ms (from cache) 2233 silly pacote range manifest for for-in@^1.0.2 fetched in 79ms 2234 silly pacote range manifest for safer-buffer@^2.0.2 fetched in 1ms 2235 http fetch GET 304 https://registry.npmjs.org/end-of-stream 85ms (from cache) 2236 silly pacote range manifest for end-of-stream@^1.1.0 fetched in 86ms 2237 http fetch GET 304 https://registry.npmjs.org/shebang-regex 92ms (from cache) 2238 silly pacote range manifest for shebang-regex@^1.0.0 fetched in 94ms 2239 http fetch GET 304 https://registry.npmjs.org/asn1 89ms (from cache) 2240 silly pacote range manifest for asn1@~0.2.3 fetched in 92ms 2241 http fetch GET 304 https://registry.npmjs.org/getpass 93ms (from cache) 2242 silly pacote range manifest for getpass@^0.1.1 fetched in 95ms 2243 silly pacote version manifest for [email protected] fetched in 1ms 2244 http fetch GET 304 https://registry.npmjs.org/jsbn 102ms (from cache) 2245 silly pacote range manifest for jsbn@~0.1.0 fetched in 104ms 2246 http fetch GET 304 https://registry.npmjs.org/code-point-at 159ms (from cache) 2247 silly pacote range manifest for code-point-at@^1.0.0 fetched in 160ms 2248 http fetch GET 304 https://registry.npmjs.org/dashdash 127ms (from cache) 2249 silly pacote range manifest for dashdash@^1.12.0 fetched in 129ms 2250 http fetch GET 304 https://registry.npmjs.org/tweetnacl 100ms (from cache) 2251 http fetch GET 304 https://registry.npmjs.org/ecc-jsbn 91ms (from cache) 2252 silly pacote range manifest for ecc-jsbn@~0.1.1 fetched in 92ms 2253 silly pacote range manifest for tweetnacl@~0.14.0 fetched in 102ms 2254 http fetch GET 304 https://registry.npmjs.org/bcrypt-pbkdf 120ms (from cache) 2255 silly pacote range manifest for bcrypt-pbkdf@^1.0.0 fetched in 122ms 2256 http fetch GET 304 https://registry.npmjs.org/json-schema 117ms (from cache) 2257 silly pacote version manifest for [email protected] fetched in 119ms 2258 http fetch GET 304 https://registry.npmjs.org/domelementtype 86ms (from cache) 2259 http fetch GET 304 https://registry.npmjs.org/smart-buffer 108ms (from cache) 2260 silly pacote range manifest for domelementtype@^2.2.0 fetched in 87ms 2261 silly pacote range manifest for smart-buffer@^4.1.0 fetched in 110ms 2262 silly pacote range manifest for is-extendable@^0.1.1 fetched in 1ms 2263 silly pacote range manifest for set-value@^2.0.1 fetched in 1ms 2264 silly pacote range manifest for is-plain-object@^2.0.3 fetched in 1ms 2265 silly pacote range manifest for split-string@^3.0.1 fetched in 1ms 2266 silly pacote range manifest for has-value@^0.3.1 fetched in 1ms 2267 http fetch GET 304 https://registry.npmjs.org/dom-serializer 96ms (from cache) 2268 silly pacote range manifest for dom-serializer@^1.0.1 fetched in 98ms 2269 silly pacote range manifest for strip-ansi@^4.0.0 fetched in 2ms 2270 http fetch GET 304 https://registry.npmjs.org/extsprintf 158ms (from cache) 2271 silly pacote version manifest for [email protected] fetched in 159ms 2272 silly pacote range manifest for once@^1.4.0 fetched in 1ms 2273 silly pacote range manifest for safer-buffer@~2.1.0 fetched in 1ms 2274 silly pacote range manifest for safer-buffer@^2.1.0 fetched in 0ms 2275 silly pacote range manifest for tweetnacl@^0.14.3 fetched in 1ms 2276 silly pacote range manifest for get-value@^2.0.3 fetched in 1ms 2277 http fetch GET 304 https://registry.npmjs.org/map-visit 102ms (from cache) 2278 silly pacote range manifest for map-visit@^1.0.0 fetched in 104ms 2279 silly pacote range manifest for isobject@^2.0.0 fetched in 2ms 2280 silly pacote range manifest for domelementtype@^2.0.1 fetched in 1ms 2281 http fetch GET 304 https://registry.npmjs.org/verror 181ms (from cache) 2282 silly pacote version manifest for [email protected] fetched in 183ms 2283 silly pacote range manifest for ansi-regex@^3.0.0 fetched in 1ms 2284 silly pacote version manifest for [email protected] fetched in 1ms 2285 silly pacote version manifest for [email protected] fetched in 1ms 2286 silly pacote range manifest for extsprintf@^1.2.0 fetched in 1ms 2287 http fetch GET 304 https://registry.npmjs.org/object-visit 86ms (from cache) 2288 silly pacote range manifest for object-visit@^1.0.0 fetched in 87ms 2289 http fetch GET 304 https://registry.npmjs.org/has-values 91ms (from cache) 2290 silly pacote range manifest for has-values@^1.0.0 fetched in 93ms 2291 silly pacote range manifest for kind-of@^4.0.0 fetched in 2ms 2292 http fetch GET 304 https://registry.npmjs.org/object-copy 102ms (from cache) 2293 silly pacote range manifest for object-copy@^0.1.0 fetched in 104ms 2294 silly pacote range manifest for kind-of@^3.0.3 fetched in 2ms 2295 http fetch GET 304 https://registry.npmjs.org/has-values 104ms (from cache) 2296 http fetch GET 304 https://registry.npmjs.org/number-is-nan 119ms (from cache) 2297 silly pacote range manifest for has-values@^0.1.4 fetched in 105ms 2298 silly pacote range manifest for number-is-nan@^1.0.0 fetched in 120ms 2299 http fetch GET 304 https://registry.npmjs.org/entities 74ms (from cache) 2300 silly pacote range manifest for entities@^2.0.0 fetched in 76ms 2301 http fetch GET 304 https://registry.npmjs.org/copy-descriptor 97ms (from cache) 2302 silly pacote range manifest for copy-descriptor@^0.1.0 fetched in 99ms 2303 http fetch GET 200 https://registry.npmjs.org/mdn-data 927ms 2304 silly pacote version manifest for [email protected] fetched in 929ms 2305 timing npm Completed in 398442ms 2306 error cb() never called! 2307 error This is an error with npm itself. Please report this error at: 2308 error &lt;https://npm.community&gt; "><pre class="notranslate"><code class="notranslate">0 info it worked if it ends with ok 1 verbose cli [ 1 verbose cli 'C:\\Program Files\\nodejs\\node.exe', 1 verbose cli 'C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js', 1 verbose cli 'install', 1 verbose cli '--quiet' 1 verbose cli ] 2 info using [email protected] 3 info using [email protected] 4 verbose npm-session 40eedd3db343e8b3 5 silly install runPreinstallTopLevelLifecycles 6 silly preinstall [email protected] 7 info lifecycle [email protected]~preinstall: [email protected] 8 silly install loadCurrentTree 9 silly install readLocalPackageData 10 timing stage:loadCurrentTree Completed in 27ms 11 silly install loadIdealTree 12 silly install cloneCurrentTreeToIdealTree 13 timing stage:loadIdealTree:cloneCurrentTree Completed in 0ms 14 silly install loadShrinkwrap 15 timing stage:loadIdealTree:loadShrinkwrap Completed in 2ms 16 silly install loadAllDepsIntoIdealTree 17 http fetch GET 304 https://registry.npmjs.org/@angular-devkit%2fbuild-angular 5974ms (from cache) 18 silly pacote range manifest for @angular-devkit/build-angular@~12.2.1 fetched in 6003ms 19 http fetch GET 304 https://registry.npmjs.org/karma-jasmine-html-reporter 2191ms (from cache) 20 silly pacote range manifest for karma-jasmine-html-reporter@~1.7.0 fetched in 2195ms 21 http fetch GET 304 https://registry.npmjs.org/karma-coverage 8175ms (from cache) 22 silly pacote range manifest for karma-coverage@~2.0.3 fetched in 8179ms 23 http fetch GET 304 https://registry.npmjs.org/jasmine-core 8419ms (from cache) 24 silly pacote range manifest for jasmine-core@~3.8.0 fetched in 8426ms 25 http fetch GET 304 https://registry.npmjs.org/@angular%2fcompiler-cli 8462ms (from cache) 26 silly pacote range manifest for @angular/compiler-cli@~12.2.0 fetched in 8470ms 27 http fetch GET 304 https://registry.npmjs.org/karma 8481ms (from cache) 28 silly pacote range manifest for karma@~6.3.0 fetched in 8492ms 29 http fetch GET 304 https://registry.npmjs.org/karma-chrome-launcher 8526ms (from cache) 30 http fetch GET 304 https://registry.npmjs.org/typescript 366ms (from cache) 31 silly pacote range manifest for karma-chrome-launcher@~3.1.0 fetched in 8579ms 32 silly pacote range manifest for typescript@~4.3.5 fetched in 412ms 33 http fetch GET 304 https://registry.npmjs.org/@angular%2fanimations 446ms (from cache) 34 silly pacote range manifest for @angular/animations@~12.2.0 fetched in 451ms 35 http fetch GET 304 https://registry.npmjs.org/@angular%2fcommon 2034ms (from cache) 36 silly pacote range manifest for @angular/common@~12.2.0 fetched in 2041ms 37 http fetch GET 304 https://registry.npmjs.org/@angular%2fcompiler 2006ms (from cache) 38 http fetch GET 304 https://registry.npmjs.org/karma-jasmine 10476ms (from cache) 39 silly pacote range manifest for karma-jasmine@~4.0.0 fetched in 10479ms 40 http fetch GET 304 https://registry.npmjs.org/@angular%2fcore 2002ms (from cache) 41 http fetch GET 304 https://registry.npmjs.org/@angular%2fforms 1934ms (from cache) 42 http fetch GET 304 https://registry.npmjs.org/@angular%2fplatform-browser-dynamic 1964ms (from cache) 43 silly pacote range manifest for @angular/platform-browser-dynamic@~12.2.0 fetched in 1972ms 44 http fetch GET 304 https://registry.npmjs.org/tslib 2196ms (from cache) 45 silly pacote range manifest for tslib@^2.3.0 fetched in 2200ms 46 http fetch GET 304 https://registry.npmjs.org/rxjs 2376ms (from cache) 47 silly pacote range manifest for rxjs@~6.6.0 fetched in 2383ms 48 http fetch GET 304 https://registry.npmjs.org/zone.js 2277ms (from cache) 49 silly pacote range manifest for zone.js@~0.11.4 fetched in 2281ms 50 http fetch GET 304 https://registry.npmjs.org/@ampproject%2fremapping 2236ms (from cache) 51 silly pacote version manifest for @ampproject/[email protected] fetched in 2240ms 52 http fetch GET 200 https://registry.npmjs.org/@angular-devkit%2fbuild-optimizer 132513ms 53 http fetch GET 200 https://registry.npmjs.org/@angular-devkit/build-optimizer/-/build-optimizer-0.1202.2.tgz 1666ms 54 silly pacote version manifest for @angular-devkit/[email protected] fetched in 134191ms 55 http fetch GET 200 https://registry.npmjs.org/@types%2fjasmine 149531ms 56 silly pacote range manifest for @types/jasmine@~3.8.0 fetched in 149535ms 57 http fetch GET 200 https://registry.npmjs.org/@angular-devkit%2fcore 46353ms 58 http fetch GET 200 https://registry.npmjs.org/@angular-devkit/core/-/core-12.2.2.tgz 5260ms 59 silly pacote version manifest for @angular-devkit/[email protected] fetched in 51622ms 60 http fetch GET 304 https://registry.npmjs.org/@babel%2fcore 399ms (from cache) 61 silly pacote version manifest for @babel/[email protected] fetched in 406ms 62 http fetch GET 304 https://registry.npmjs.org/@babel%2fgenerator 283ms (from cache) 63 silly pacote version manifest for @babel/[email protected] fetched in 287ms 64 http fetch GET 200 https://registry.npmjs.org/@angular%2fplatform-browser 193437ms 65 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-annotate-as-pure 526ms (from cache) 66 silly pacote version manifest for @babel/[email protected] fetched in 530ms 67 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-async-generator-functions 412ms (from cache) 68 silly pacote version manifest for @babel/[email protected] fetched in 415ms 69 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-async-to-generator 913ms (from cache) 70 silly pacote version manifest for @babel/[email protected] fetched in 917ms 71 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-runtime 555ms (from cache) 72 silly pacote version manifest for @babel/[email protected] fetched in 559ms 73 http fetch GET 304 https://registry.npmjs.org/@babel%2fpreset-env 637ms (from cache) 74 silly pacote version manifest for @babel/[email protected] fetched in 642ms 75 http fetch GET 304 https://registry.npmjs.org/@babel%2fruntime 856ms (from cache) 76 silly pacote version manifest for @babel/[email protected] fetched in 859ms 77 http fetch GET 304 https://registry.npmjs.org/@babel%2ftemplate 513ms (from cache) 78 silly pacote version manifest for @babel/[email protected] fetched in 517ms 79 http fetch GET 304 https://registry.npmjs.org/@discoveryjs%2fjson-ext 302ms (from cache) 80 silly pacote version manifest for @discoveryjs/[email protected] fetched in 304ms 81 http fetch GET 304 https://registry.npmjs.org/@jsdevtools%2fcoverage-istanbul-loader 3291ms (from cache) 82 silly pacote version manifest for @jsdevtools/[email protected] fetched in 3294ms 83 http fetch GET 200 https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-12.2.2.tgz 20302ms 84 silly pacote range manifest for @angular/platform-browser@~12.2.0 fetched in 213749ms 85 http fetch GET 304 https://registry.npmjs.org/ansi-colors 923ms (from cache) 86 silly pacote version manifest for [email protected] fetched in 924ms 87 http fetch GET 304 https://registry.npmjs.org/babel-loader 949ms (from cache) 88 silly pacote version manifest for [email protected] fetched in 952ms 89 http fetch GET 200 https://registry.npmjs.org/browserslist 5432ms 90 http fetch GET 200 https://registry.npmjs.org/browserslist/-/browserslist-4.16.8.tgz 355ms 91 silly pacote range manifest for browserslist@^4.9.1 fetched in 5793ms 92 http fetch GET 304 https://registry.npmjs.org/cacache 224ms (from cache) 93 silly pacote version manifest for [email protected] fetched in 228ms 94 http fetch GET 304 https://registry.npmjs.org/caniuse-lite 113ms (from cache) 95 silly pacote range manifest for caniuse-lite@^1.0.30001032 fetched in 119ms 96 http fetch GET 304 https://registry.npmjs.org/circular-dependency-plugin 171ms (from cache) 97 silly pacote version manifest for [email protected] fetched in 175ms 98 http fetch GET 304 https://registry.npmjs.org/copy-webpack-plugin 217ms (from cache) 99 silly pacote version manifest for [email protected] fetched in 220ms 100 http fetch GET 200 https://registry.npmjs.org/core-js 6998ms 101 silly pacote version manifest for [email protected] fetched in 7002ms 102 http fetch GET 304 https://registry.npmjs.org/critters 1116ms (from cache) 103 silly pacote version manifest for [email protected] fetched in 1119ms 104 http fetch GET 304 https://registry.npmjs.org/css-loader 667ms (from cache) 105 silly pacote version manifest for [email protected] fetched in 673ms 106 http fetch GET 304 https://registry.npmjs.org/css-minimizer-webpack-plugin 1080ms (from cache) 107 silly pacote version manifest for [email protected] fetched in 1083ms 108 http fetch GET 200 https://registry.npmjs.org/@angular%2fcli 240928ms 109 http fetch GET 200 https://registry.npmjs.org/@angular/cli/-/cli-12.2.2.tgz 14075ms 110 silly pacote range manifest for @angular/cli@~12.2.1 fetched in 255018ms 111 http fetch GET 304 https://registry.npmjs.org/find-cache-dir 140ms (from cache) 112 silly pacote version manifest for [email protected] fetched in 141ms 113 http fetch GET 304 https://registry.npmjs.org/glob 109ms (from cache) 114 silly pacote version manifest for [email protected] fetched in 110ms 115 http fetch GET 304 https://registry.npmjs.org/https-proxy-agent 116ms (from cache) 116 silly pacote version manifest for [email protected] fetched in 119ms 117 http fetch GET 304 https://registry.npmjs.org/inquirer 89ms (from cache) 118 silly pacote version manifest for [email protected] fetched in 92ms 119 http fetch GET 304 https://registry.npmjs.org/karma-source-map-support 116ms (from cache) 120 silly pacote version manifest for [email protected] fetched in 118ms 121 http fetch GET 304 https://registry.npmjs.org/less 239ms (from cache) 122 silly pacote version manifest for [email protected] fetched in 244ms 123 http fetch GET 304 https://registry.npmjs.org/less-loader 2811ms (from cache) 124 silly pacote version manifest for [email protected] fetched in 2813ms 125 http fetch GET 200 https://registry.npmjs.org/@angular/forms/-/forms-12.2.2.tgz 257657ms 126 silly pacote range manifest for @angular/forms@~12.2.0 fetched in 259602ms 127 http fetch GET 304 https://registry.npmjs.org/loader-utils 1022ms (from cache) 128 silly pacote version manifest for [email protected] fetched in 1023ms 129 http fetch GET 304 https://registry.npmjs.org/mini-css-extract-plugin 848ms (from cache) 130 silly pacote version manifest for [email protected] fetched in 852ms 131 http fetch GET 304 https://registry.npmjs.org/minimatch 1463ms (from cache) 132 silly pacote version manifest for [email protected] fetched in 1465ms 133 http fetch GET 304 https://registry.npmjs.org/open 192ms (from cache) 134 silly pacote version manifest for [email protected] fetched in 194ms 135 http fetch GET 304 https://registry.npmjs.org/ora 130ms (from cache) 136 silly pacote version manifest for [email protected] fetched in 132ms 137 http fetch GET 304 https://registry.npmjs.org/parse5-html-rewriting-stream 1003ms (from cache) 138 silly pacote version manifest for [email protected] fetched in 1006ms 139 http fetch GET 200 https://registry.npmjs.org/@angular%2frouter 262476ms 140 http fetch GET 304 https://registry.npmjs.org/piscina 2203ms (from cache) 141 silly pacote version manifest for [email protected] fetched in 2207ms 142 http fetch GET 304 https://registry.npmjs.org/postcss 746ms (from cache) 143 silly pacote version manifest for [email protected] fetched in 752ms 144 http fetch GET 304 https://registry.npmjs.org/postcss-import 1204ms (from cache) 145 silly pacote version manifest for [email protected] fetched in 1208ms 146 http fetch GET 304 https://registry.npmjs.org/postcss-loader 1536ms (from cache) 147 silly pacote version manifest for [email protected] fetched in 1539ms 148 http fetch GET 200 https://registry.npmjs.org/@angular-devkit%2farchitect 264365ms 149 http fetch GET 304 https://registry.npmjs.org/postcss-preset-env 1169ms (from cache) 150 silly pacote version manifest for [email protected] fetched in 1174ms 151 http fetch GET 304 https://registry.npmjs.org/regenerator-runtime 2142ms (from cache) 152 silly pacote version manifest for [email protected] fetched in 2144ms 153 http fetch GET 304 https://registry.npmjs.org/resolve-url-loader 464ms (from cache) 154 silly pacote version manifest for [email protected] fetched in 467ms 155 silly pacote version manifest for [email protected] fetched in 3ms 156 http fetch GET 200 https://registry.npmjs.org/esbuild 42204ms 157 silly pacote version manifest for [email protected] fetched in 42206ms 158 http fetch GET 304 https://registry.npmjs.org/sass-loader 293ms (from cache) 159 silly pacote version manifest for [email protected] fetched in 296ms 160 http fetch GET 304 https://registry.npmjs.org/sass 932ms (from cache) 161 silly pacote version manifest for [email protected] fetched in 936ms 162 http fetch GET 304 https://registry.npmjs.org/semver 211ms (from cache) 163 silly pacote version manifest for [email protected] fetched in 214ms 164 http fetch GET 304 https://registry.npmjs.org/source-map-loader 152ms (from cache) 165 silly pacote version manifest for [email protected] fetched in 155ms 166 http fetch GET 304 https://registry.npmjs.org/source-map-support 117ms (from cache) 167 silly pacote version manifest for [email protected] fetched in 119ms 168 http fetch GET 304 https://registry.npmjs.org/style-loader 123ms (from cache) 169 silly pacote version manifest for [email protected] fetched in 126ms 170 http fetch GET 304 https://registry.npmjs.org/stylus-loader 99ms (from cache) 171 silly pacote version manifest for [email protected] fetched in 102ms 172 http fetch GET 304 https://registry.npmjs.org/terser 92ms (from cache) 173 silly pacote version manifest for [email protected] fetched in 95ms 174 http fetch GET 304 https://registry.npmjs.org/terser-webpack-plugin 124ms (from cache) 175 silly pacote version manifest for [email protected] fetched in 129ms 176 http fetch GET 304 https://registry.npmjs.org/text-table 160ms (from cache) 177 silly pacote version manifest for [email protected] fetched in 162ms 178 http fetch GET 304 https://registry.npmjs.org/tree-kill 241ms (from cache) 179 silly pacote version manifest for [email protected] fetched in 242ms 180 silly pacote version manifest for [email protected] fetched in 1ms 181 http fetch GET 200 https://registry.npmjs.org/license-webpack-plugin 26155ms 182 silly pacote version manifest for [email protected] fetched in 26157ms 183 http fetch GET 304 https://registry.npmjs.org/stylus 1401ms (from cache) 184 silly pacote version manifest for [email protected] fetched in 1404ms 185 http fetch GET 304 https://registry.npmjs.org/webpack-dev-middleware 1355ms (from cache) 186 silly pacote version manifest for [email protected] fetched in 1357ms 187 http fetch GET 200 https://registry.npmjs.org/@angular/router/-/router-12.2.2.tgz 13809ms 188 silly pacote range manifest for @angular/router@~12.2.0 fetched in 276294ms 189 http fetch GET 304 https://registry.npmjs.org/webpack-merge 621ms (from cache) 190 silly pacote version manifest for [email protected] fetched in 625ms 191 http fetch GET 304 https://registry.npmjs.org/webpack-subresource-integrity 484ms (from cache) 192 http fetch GET 304 https://registry.npmjs.org/istanbul-lib-coverage 458ms (from cache) 193 silly pacote version manifest for [email protected] fetched in 487ms 194 silly pacote range manifest for istanbul-lib-coverage@^3.0.0 fetched in 461ms 195 http fetch GET 200 https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1202.2.tgz 7921ms 196 silly pacote version manifest for @angular-devkit/[email protected] fetched in 272295ms 197 http fetch GET 304 https://registry.npmjs.org/istanbul-lib-report 178ms (from cache) 198 silly pacote range manifest for istanbul-lib-report@^3.0.0 fetched in 180ms 199 http fetch GET 304 https://registry.npmjs.org/istanbul-lib-instrument 210ms (from cache) 200 silly pacote range manifest for istanbul-lib-instrument@^4.0.1 fetched in 212ms 201 silly pacote range manifest for minimatch@^3.0.4 fetched in 2ms 202 silly pacote range manifest for @babel/core@^7.8.6 fetched in 2ms 203 http fetch GET 304 https://registry.npmjs.org/istanbul-lib-source-maps 129ms (from cache) 204 silly pacote range manifest for istanbul-lib-source-maps@^4.0.0 fetched in 132ms 205 http fetch GET 304 https://registry.npmjs.org/istanbul-reports 109ms (from cache) 206 silly pacote range manifest for istanbul-reports@^3.0.0 fetched in 111ms 207 http fetch GET 304 https://registry.npmjs.org/@babel%2ftypes 95ms (from cache) 208 silly pacote range manifest for @babel/types@^7.8.6 fetched in 97ms 209 http fetch GET 304 https://registry.npmjs.org/minimist 130ms (from cache) 210 http fetch GET 304 https://registry.npmjs.org/canonical-path 109ms (from cache) 211 http fetch GET 304 https://registry.npmjs.org/reflect-metadata 147ms (from cache) 212 silly pacote range manifest for minimist@^1.2.0 fetched in 134ms 213 silly pacote version manifest for [email protected] fetched in 113ms 214 silly pacote range manifest for reflect-metadata@^0.1.2 fetched in 155ms 215 http fetch GET 304 https://registry.npmjs.org/convert-source-map 108ms (from cache) 216 silly pacote range manifest for convert-source-map@^1.5.1 fetched in 110ms 217 http fetch GET 304 https://registry.npmjs.org/chokidar 112ms (from cache) 218 silly pacote range manifest for chokidar@^3.0.0 fetched in 116ms 219 silly pacote range manifest for semver@^7.0.0 fetched in 3ms 220 http fetch GET 304 https://registry.npmjs.org/dependency-graph 132ms (from cache) 221 silly pacote range manifest for dependency-graph@^0.11.0 fetched in 134ms 222 http fetch GET 304 https://registry.npmjs.org/magic-string 95ms (from cache) 223 silly pacote range manifest for magic-string@^0.25.0 fetched in 98ms 224 silly pacote range manifest for tslib@^2.2.0 fetched in 1ms 225 http fetch GET 304 https://registry.npmjs.org/source-map 103ms (from cache) 226 silly pacote range manifest for source-map@^0.6.1 fetched in 106ms 227 http fetch GET 304 https://registry.npmjs.org/sourcemap-codec 95ms (from cache) 228 silly pacote range manifest for sourcemap-codec@^1.4.8 fetched in 97ms 229 http fetch GET 304 https://registry.npmjs.org/yargs 103ms (from cache) 230 silly pacote range manifest for yargs@^17.0.0 fetched in 108ms 231 silly pacote range manifest for chokidar@^3.5.1 fetched in 2ms 232 http fetch GET 304 https://registry.npmjs.org/body-parser 101ms (from cache) 233 silly pacote range manifest for body-parser@^1.19.0 fetched in 104ms 234 http fetch GET 304 https://registry.npmjs.org/braces 150ms (from cache) 235 silly pacote range manifest for braces@^3.0.2 fetched in 153ms 236 http fetch GET 304 https://registry.npmjs.org/colors 96ms (from cache) 237 silly pacote range manifest for colors@^1.4.0 fetched in 100ms 238 http fetch GET 304 https://registry.npmjs.org/connect 101ms (from cache) 239 silly pacote range manifest for connect@^3.7.0 fetched in 104ms 240 silly pacote range manifest for glob@^7.1.7 fetched in 3ms 241 http fetch GET 304 https://registry.npmjs.org/di 138ms (from cache) 242 silly pacote range manifest for di@^0.0.1 fetched in 140ms 243 http fetch GET 304 https://registry.npmjs.org/dom-serialize 117ms (from cache) 244 silly pacote range manifest for dom-serialize@^2.2.1 fetched in 119ms 245 http fetch GET 200 https://registry.npmjs.org/webpack-dev-server 3399ms 246 silly pacote version manifest for [email protected] fetched in 3405ms 247 http fetch GET 304 https://registry.npmjs.org/isbinaryfile 123ms (from cache) 248 silly pacote range manifest for isbinaryfile@^4.0.8 fetched in 126ms 249 http fetch GET 304 https://registry.npmjs.org/lodash 115ms (from cache) 250 silly pacote range manifest for lodash@^4.17.21 fetched in 116ms 251 http fetch GET 304 https://registry.npmjs.org/log4js 90ms (from cache) 252 silly pacote range manifest for log4js@^6.3.0 fetched in 93ms 253 http fetch GET 304 https://registry.npmjs.org/mime 93ms (from cache) 254 silly pacote range manifest for mime@^2.5.2 fetched in 96ms 255 http fetch GET 304 https://registry.npmjs.org/qjobs 99ms (from cache) 256 silly pacote range manifest for qjobs@^1.2.0 fetched in 101ms 257 http fetch GET 304 https://registry.npmjs.org/range-parser 106ms (from cache) 258 silly pacote range manifest for range-parser@^1.2.1 fetched in 108ms 259 http fetch GET 304 https://registry.npmjs.org/rimraf 105ms (from cache) 260 silly pacote range manifest for rimraf@^3.0.2 fetched in 107ms 261 http fetch GET 304 https://registry.npmjs.org/tmp 90ms (from cache) 262 silly pacote range manifest for tmp@^0.2.1 fetched in 91ms 263 http fetch GET 304 https://registry.npmjs.org/graceful-fs 696ms (from cache) 264 silly pacote range manifest for graceful-fs@^4.2.6 fetched in 700ms 265 silly pacote range manifest for yargs@^16.1.1 fetched in 3ms 266 http fetch GET 304 https://registry.npmjs.org/ua-parser-js 86ms (from cache) 267 silly pacote range manifest for ua-parser-js@^0.7.28 fetched in 89ms 268 silly pacote range manifest for jasmine-core@^3.6.0 fetched in 2ms 269 silly pacote range manifest for tslib@^1.9.0 fetched in 3ms 270 silly pacote range manifest for tslib@^2.0.0 fetched in 1ms 271 http fetch GET 304 https://registry.npmjs.org/which 113ms (from cache) 272 silly pacote range manifest for which@^1.2.1 fetched in 116ms 273 silly pacote version manifest for [email protected] fetched in 1ms 274 silly pacote version manifest for [email protected] fetched in 1ms 275 silly pacote version manifest for [email protected] fetched in 6ms 276 http fetch GET 304 https://registry.npmjs.org/ajv 107ms (from cache) 277 silly pacote version manifest for [email protected] fetched in 112ms 278 http fetch GET 304 https://registry.npmjs.org/http-proxy 859ms (from cache) 279 silly pacote range manifest for http-proxy@^1.18.1 fetched in 861ms 280 http fetch GET 304 https://registry.npmjs.org/fast-json-stable-stringify 84ms (from cache) 281 silly pacote version manifest for [email protected] fetched in 85ms 282 silly pacote version manifest for [email protected] fetched in 1ms 283 http fetch GET 304 https://registry.npmjs.org/ajv-formats 110ms (from cache) 284 silly pacote version manifest for [email protected] fetched in 113ms 285 silly pacote range manifest for @babel/generator@^7.14.8 fetched in 3ms 286 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-compilation-targets 118ms (from cache) 287 silly pacote range manifest for @babel/helper-compilation-targets@^7.14.5 fetched in 120ms 288 http fetch GET 304 https://registry.npmjs.org/@babel%2fcode-frame 139ms (from cache) 289 silly pacote range manifest for @babel/code-frame@^7.14.5 fetched in 141ms 290 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-module-transforms 101ms (from cache) 291 silly pacote range manifest for @babel/helper-module-transforms@^7.14.8 fetched in 103ms 292 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelpers 120ms (from cache) 293 silly pacote range manifest for @babel/helpers@^7.14.8 fetched in 124ms 294 silly pacote range manifest for @babel/template@^7.14.5 fetched in 1ms 295 http fetch GET 304 https://registry.npmjs.org/socket.io 845ms (from cache) 296 silly pacote range manifest for socket.io@^3.1.0 fetched in 848ms 297 silly pacote range manifest for @babel/types@^7.14.8 fetched in 3ms 298 silly pacote range manifest for convert-source-map@^1.7.0 fetched in 2ms 299 http fetch GET 304 https://registry.npmjs.org/@babel%2fparser 106ms (from cache) 300 silly pacote range manifest for @babel/parser@^7.14.8 fetched in 110ms 301 http fetch GET 304 https://registry.npmjs.org/debug 88ms (from cache) 302 silly pacote range manifest for debug@^4.1.0 fetched in 90ms 303 http fetch GET 304 https://registry.npmjs.org/@babel%2ftraverse 153ms (from cache) 304 silly pacote range manifest for @babel/traverse@^7.14.8 fetched in 157ms 305 silly pacote range manifest for semver@^6.3.0 fetched in 3ms 306 silly pacote range manifest for source-map@^0.5.0 fetched in 1ms 307 http fetch GET 304 https://registry.npmjs.org/gensync 97ms (from cache) 308 silly pacote range manifest for gensync@^1.0.0-beta.2 fetched in 99ms 309 silly pacote range manifest for @babel/types@^7.14.5 fetched in 1ms 310 http fetch GET 304 https://registry.npmjs.org/json5 97ms (from cache) 311 silly pacote range manifest for json5@^2.1.2 fetched in 99ms 312 http fetch GET 304 https://registry.npmjs.org/jsesc 143ms (from cache) 313 silly pacote range manifest for jsesc@^2.5.1 fetched in 146ms 314 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-plugin-utils 130ms (from cache) 315 silly pacote range manifest for @babel/helper-plugin-utils@^7.14.5 fetched in 131ms 316 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-remap-async-to-generator 110ms (from cache) 317 silly pacote range manifest for @babel/helper-remap-async-to-generator@^7.14.5 fetched in 112ms 318 http fetch GET 304 https://registry.npmjs.org/babel-plugin-polyfill-corejs2 117ms (from cache) 319 silly pacote range manifest for babel-plugin-polyfill-corejs2@^0.2.2 fetched in 119ms 320 http fetch GET 304 https://registry.npmjs.org/babel-plugin-polyfill-corejs3 110ms (from cache) 321 silly pacote range manifest for babel-plugin-polyfill-corejs3@^0.2.2 fetched in 112ms 322 http fetch GET 304 https://registry.npmjs.org/babel-plugin-polyfill-regenerator 134ms (from cache) 323 silly pacote range manifest for babel-plugin-polyfill-regenerator@^0.2.2 fetched in 137ms 324 http fetch GET 304 https://registry.npmjs.org/@babel%2fcompat-data 140ms (from cache) 325 silly pacote range manifest for @babel/compat-data@^7.14.7 fetched in 141ms 326 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-validator-option 136ms (from cache) 327 silly pacote range manifest for @babel/helper-validator-option@^7.14.5 fetched in 138ms 328 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-bugfix-v8-spread-parameters-in-optional-chaining 169ms (from cache) 329 silly pacote range manifest for @babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.14.5 fetched in 172ms 330 silly pacote range manifest for @babel/plugin-proposal-async-generator-functions@^7.14.7 fetched in 2ms 331 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-class-properties 395ms (from cache) 332 silly pacote range manifest for @babel/plugin-proposal-class-properties@^7.14.5 fetched in 397ms 333 http fetch GET 304 https://registry.npmjs.org/@jridgewell%2fresolve-uri 3224ms (from cache) 334 silly pacote version manifest for @jridgewell/[email protected] fetched in 3226ms 335 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-class-static-block 1219ms (from cache) 336 silly pacote range manifest for @babel/plugin-proposal-class-static-block@^7.14.5 fetched in 1220ms 337 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-syntax-async-generators 2484ms (from cache) 338 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-module-imports 2479ms (from cache) 339 silly pacote range manifest for @babel/plugin-syntax-async-generators@^7.8.4 fetched in 2486ms 340 silly pacote range manifest for @babel/helper-module-imports@^7.14.5 fetched in 2482ms 341 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-dynamic-import 358ms (from cache) 342 silly pacote range manifest for @babel/plugin-proposal-dynamic-import@^7.14.5 fetched in 360ms 343 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-export-namespace-from 319ms (from cache) 344 silly pacote range manifest for @babel/plugin-proposal-export-namespace-from@^7.14.5 fetched in 321ms 345 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-json-strings 314ms (from cache) 346 silly pacote range manifest for @babel/plugin-proposal-json-strings@^7.14.5 fetched in 317ms 347 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-logical-assignment-operators 408ms (from cache) 348 silly pacote range manifest for @babel/plugin-proposal-logical-assignment-operators@^7.14.5 fetched in 410ms 349 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-nullish-coalescing-operator 486ms (from cache) 350 silly pacote range manifest for @babel/plugin-proposal-nullish-coalescing-operator@^7.14.5 fetched in 488ms 351 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-numeric-separator 481ms (from cache) 352 silly pacote range manifest for @babel/plugin-proposal-numeric-separator@^7.14.5 fetched in 483ms 353 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-optional-catch-binding 439ms (from cache) 354 silly pacote range manifest for @babel/plugin-proposal-optional-catch-binding@^7.14.5 fetched in 441ms 355 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-optional-chaining 336ms (from cache) 356 silly pacote range manifest for @babel/plugin-proposal-optional-chaining@^7.14.5 fetched in 338ms 357 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-private-methods 389ms (from cache) 358 silly pacote range manifest for @babel/plugin-proposal-private-methods@^7.14.5 fetched in 390ms 359 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-private-property-in-object 414ms (from cache) 360 silly pacote range manifest for @babel/plugin-proposal-private-property-in-object@^7.14.5 fetched in 415ms 361 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-unicode-property-regex 377ms (from cache) 362 silly pacote range manifest for @babel/plugin-proposal-unicode-property-regex@^7.14.5 fetched in 381ms 363 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-syntax-class-properties 398ms (from cache) 364 silly pacote range manifest for @babel/plugin-syntax-class-properties@^7.12.13 fetched in 400ms 365 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-syntax-class-static-block 414ms (from cache) 366 silly pacote range manifest for @babel/plugin-syntax-class-static-block@^7.14.5 fetched in 415ms 367 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-syntax-dynamic-import 554ms (from cache) 368 silly pacote range manifest for @babel/plugin-syntax-dynamic-import@^7.8.3 fetched in 556ms 369 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-syntax-export-namespace-from 560ms (from cache) 370 silly pacote range manifest for @babel/plugin-syntax-export-namespace-from@^7.8.3 fetched in 562ms 371 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-proposal-object-rest-spread 2132ms (from cache) 372 silly pacote range manifest for @babel/plugin-proposal-object-rest-spread@^7.14.7 fetched in 2134ms 373 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-syntax-logical-assignment-operators 604ms (from cache) 374 silly pacote range manifest for @babel/plugin-syntax-logical-assignment-operators@^7.10.4 fetched in 606ms 375 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-syntax-nullish-coalescing-operator 567ms (from cache) 376 silly pacote range manifest for @babel/plugin-syntax-nullish-coalescing-operator@^7.8.3 fetched in 569ms 377 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-syntax-numeric-separator 419ms (from cache) 378 silly pacote range manifest for @babel/plugin-syntax-numeric-separator@^7.10.4 fetched in 421ms 379 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-syntax-object-rest-spread 514ms (from cache) 380 silly pacote range manifest for @babel/plugin-syntax-object-rest-spread@^7.8.3 fetched in 516ms 381 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-syntax-optional-catch-binding 534ms (from cache) 382 silly pacote range manifest for @babel/plugin-syntax-optional-catch-binding@^7.8.3 fetched in 536ms 383 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-syntax-optional-chaining 455ms (from cache) 384 silly pacote range manifest for @babel/plugin-syntax-optional-chaining@^7.8.3 fetched in 458ms 385 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-syntax-private-property-in-object 669ms (from cache) 386 silly pacote range manifest for @babel/plugin-syntax-private-property-in-object@^7.14.5 fetched in 671ms 387 silly pacote range manifest for @babel/plugin-transform-async-to-generator@^7.14.5 fetched in 2ms 388 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-syntax-json-strings 2103ms (from cache) 389 silly pacote range manifest for @babel/plugin-syntax-json-strings@^7.8.3 fetched in 2106ms 390 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-block-scoped-functions 224ms (from cache) 391 silly pacote range manifest for @babel/plugin-transform-block-scoped-functions@^7.14.5 fetched in 226ms 392 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-block-scoping 248ms (from cache) 393 silly pacote range manifest for @babel/plugin-transform-block-scoping@^7.14.5 fetched in 251ms 394 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-syntax-top-level-await 848ms (from cache) 395 silly pacote range manifest for @babel/plugin-syntax-top-level-await@^7.14.5 fetched in 851ms 396 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-classes 150ms (from cache) 397 silly pacote range manifest for @babel/plugin-transform-classes@^7.14.5 fetched in 152ms 398 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-computed-properties 120ms (from cache) 399 silly pacote range manifest for @babel/plugin-transform-computed-properties@^7.14.5 fetched in 122ms 400 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-destructuring 186ms (from cache) 401 silly pacote range manifest for @babel/plugin-transform-destructuring@^7.14.7 fetched in 189ms 402 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-dotall-regex 152ms (from cache) 403 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-duplicate-keys 130ms (from cache) 404 silly pacote range manifest for @babel/plugin-transform-dotall-regex@^7.14.5 fetched in 156ms 405 silly pacote range manifest for @babel/plugin-transform-duplicate-keys@^7.14.5 fetched in 133ms 406 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-exponentiation-operator 131ms (from cache) 407 silly pacote range manifest for @babel/plugin-transform-exponentiation-operator@^7.14.5 fetched in 133ms 408 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-for-of 135ms (from cache) 409 silly pacote range manifest for @babel/plugin-transform-for-of@^7.14.5 fetched in 137ms 410 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-function-name 146ms (from cache) 411 silly pacote range manifest for @babel/plugin-transform-function-name@^7.14.5 fetched in 147ms 412 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-literals 124ms (from cache) 413 silly pacote range manifest for @babel/plugin-transform-literals@^7.14.5 fetched in 126ms 414 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-member-expression-literals 116ms (from cache) 415 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-modules-amd 104ms (from cache) 416 silly pacote range manifest for @babel/plugin-transform-member-expression-literals@^7.14.5 fetched in 118ms 417 silly pacote range manifest for @babel/plugin-transform-modules-amd@^7.14.5 fetched in 107ms 418 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-modules-commonjs 121ms (from cache) 419 silly pacote range manifest for @babel/plugin-transform-modules-commonjs@^7.14.5 fetched in 123ms 420 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-modules-systemjs 162ms (from cache) 421 silly pacote range manifest for @babel/plugin-transform-modules-systemjs@^7.14.5 fetched in 165ms 422 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-modules-umd 180ms (from cache) 423 silly pacote range manifest for @babel/plugin-transform-modules-umd@^7.14.5 fetched in 183ms 424 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-named-capturing-groups-regex 164ms (from cache) 425 silly pacote range manifest for @babel/plugin-transform-named-capturing-groups-regex@^7.14.7 fetched in 165ms 426 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-object-super 225ms (from cache) 427 silly pacote range manifest for @babel/plugin-transform-object-super@^7.14.5 fetched in 226ms 428 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-arrow-functions 1816ms (from cache) 429 silly pacote range manifest for @babel/plugin-transform-arrow-functions@^7.14.5 fetched in 1817ms 430 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-property-literals 365ms (from cache) 431 silly pacote range manifest for @babel/plugin-transform-property-literals@^7.14.5 fetched in 368ms 432 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-regenerator 282ms (from cache) 433 silly pacote range manifest for @babel/plugin-transform-regenerator@^7.14.5 fetched in 284ms 434 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-new-target 782ms (from cache) 435 silly pacote range manifest for @babel/plugin-transform-new-target@^7.14.5 fetched in 784ms 436 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-reserved-words 259ms (from cache) 437 silly pacote range manifest for @babel/plugin-transform-reserved-words@^7.14.5 fetched in 262ms 438 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-shorthand-properties 246ms (from cache) 439 silly pacote range manifest for @babel/plugin-transform-shorthand-properties@^7.14.5 fetched in 248ms 440 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-sticky-regex 335ms (from cache) 441 silly pacote range manifest for @babel/plugin-transform-sticky-regex@^7.14.5 fetched in 337ms 442 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-template-literals 1214ms (from cache) 443 silly pacote range manifest for @babel/plugin-transform-template-literals@^7.14.5 fetched in 1216ms 444 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-typeof-symbol 1101ms (from cache) 445 silly pacote range manifest for @babel/plugin-transform-typeof-symbol@^7.14.5 fetched in 1104ms 446 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-parameters 2255ms (from cache) 447 silly pacote range manifest for @babel/plugin-transform-parameters@^7.14.5 fetched in 2258ms 448 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-spread 1581ms (from cache) 449 silly pacote range manifest for @babel/plugin-transform-spread@^7.14.6 fetched in 1583ms 450 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-unicode-escapes 346ms (from cache) 451 silly pacote range manifest for @babel/plugin-transform-unicode-escapes@^7.14.5 fetched in 348ms 452 silly pacote range manifest for regenerator-runtime@^0.13.4 fetched in 2ms 453 silly pacote range manifest for @babel/parser@^7.14.5 fetched in 1ms 454 silly pacote range manifest for istanbul-lib-instrument@^4.0.3 fetched in 1ms 455 silly pacote range manifest for loader-utils@^2.0.0 fetched in 2ms 456 http fetch GET 304 https://registry.npmjs.org/@babel%2fplugin-transform-unicode-regex 1167ms (from cache) 457 silly pacote range manifest for @babel/plugin-transform-unicode-regex@^7.14.5 fetched in 1169ms 458 http fetch GET 304 https://registry.npmjs.org/@babel%2fpreset-modules 2071ms (from cache) 459 silly pacote range manifest for @babel/preset-modules@^0.1.4 fetched in 2073ms 460 silly pacote range manifest for find-cache-dir@^3.3.1 fetched in 2ms 461 silly pacote range manifest for loader-utils@^1.4.0 fetched in 1ms 462 http fetch GET 304 https://registry.npmjs.org/merge-source-map 1936ms (from cache) 463 silly pacote range manifest for merge-source-map@^1.1.0 fetched in 1938ms 464 http fetch GET 304 https://registry.npmjs.org/schema-utils 1007ms (from cache) 465 silly pacote range manifest for schema-utils@^2.7.0 fetched in 1009ms 466 silly pacote range manifest for caniuse-lite@^1.0.30001251 fetched in 1ms 467 http fetch GET 304 https://registry.npmjs.org/schema-utils 283ms (from cache) 468 http fetch GET 304 https://registry.npmjs.org/make-dir 316ms (from cache) 469 silly pacote range manifest for schema-utils@^2.6.5 fetched in 284ms 470 silly pacote range manifest for make-dir@^3.1.0 fetched in 318ms 471 http fetch GET 304 https://registry.npmjs.org/colorette 286ms (from cache) 472 silly pacote range manifest for colorette@^1.3.0 fetched in 289ms 473 http fetch GET 304 https://registry.npmjs.org/escalade 2323ms (from cache) 474 silly pacote range manifest for escalade@^3.1.1 fetched in 2325ms 475 http fetch GET 304 https://registry.npmjs.org/@npmcli%2fmove-file 320ms (from cache) 476 silly pacote range manifest for @npmcli/move-file@^1.0.1 fetched in 322ms 477 http fetch GET 304 https://registry.npmjs.org/chownr 89ms (from cache) 478 silly pacote range manifest for chownr@^2.0.0 fetched in 90ms 479 http fetch GET 304 https://registry.npmjs.org/fs-minipass 113ms (from cache) 480 silly pacote range manifest for fs-minipass@^2.0.0 fetched in 115ms 481 silly pacote range manifest for glob@^7.1.4 fetched in 1ms 482 http fetch GET 304 https://registry.npmjs.org/infer-owner 906ms (from cache) 483 silly pacote range manifest for infer-owner@^1.0.4 fetched in 908ms 484 http fetch GET 304 https://registry.npmjs.org/lru-cache 1634ms (from cache) 485 silly pacote range manifest for lru-cache@^6.0.0 fetched in 1637ms 486 http fetch GET 304 https://registry.npmjs.org/minipass 182ms (from cache) 487 silly pacote range manifest for minipass@^3.1.1 fetched in 184ms 488 http fetch GET 304 https://registry.npmjs.org/minipass-collect 111ms (from cache) 489 silly pacote range manifest for minipass-collect@^1.0.2 fetched in 114ms 490 http fetch GET 304 https://registry.npmjs.org/minipass-flush 195ms (from cache) 491 silly pacote range manifest for minipass-flush@^1.0.5 fetched in 197ms 492 http fetch GET 304 https://registry.npmjs.org/minipass-pipeline 147ms (from cache) 493 silly pacote range manifest for minipass-pipeline@^1.2.2 fetched in 149ms 494 http fetch GET 304 https://registry.npmjs.org/mkdirp 136ms (from cache) 495 silly pacote range manifest for mkdirp@^1.0.3 fetched in 138ms 496 http fetch GET 304 https://registry.npmjs.org/p-map 295ms (from cache) 497 silly pacote range manifest for p-map@^4.0.0 fetched in 297ms 498 http fetch GET 304 https://registry.npmjs.org/promise-inflight 257ms (from cache) 499 silly pacote range manifest for promise-inflight@^1.0.1 fetched in 260ms 500 http fetch GET 304 https://registry.npmjs.org/ssri 244ms (from cache) 501 silly pacote range manifest for ssri@^8.0.1 fetched in 247ms 502 http fetch GET 200 https://registry.npmjs.org/webpack 24646ms 503 silly pacote version manifest for [email protected] fetched in 24662ms 504 http fetch GET 304 https://registry.npmjs.org/unique-filename 245ms (from cache) 505 silly pacote range manifest for unique-filename@^1.1.1 fetched in 247ms 506 http fetch GET 304 https://registry.npmjs.org/fast-glob 2116ms (from cache) 507 silly pacote range manifest for fast-glob@^3.2.5 fetched in 2118ms 508 http fetch GET 304 https://registry.npmjs.org/glob-parent 672ms (from cache) 509 silly pacote range manifest for glob-parent@^6.0.0 fetched in 674ms 510 http fetch GET 304 https://registry.npmjs.org/globby 172ms (from cache) 511 silly pacote range manifest for globby@^11.0.3 fetched in 177ms 512 http fetch GET 304 https://registry.npmjs.org/normalize-path 108ms (from cache) 513 silly pacote range manifest for normalize-path@^3.0.0 fetched in 111ms 514 http fetch GET 304 https://registry.npmjs.org/p-limit 161ms (from cache) 515 silly pacote range manifest for p-limit@^3.1.0 fetched in 163ms 516 silly pacote range manifest for schema-utils@^3.0.0 fetched in 2ms 517 http fetch GET 200 https://registry.npmjs.org/tar 3791ms 518 http fetch GET 304 https://registry.npmjs.org/serialize-javascript 308ms (from cache) 519 silly pacote range manifest for serialize-javascript@^6.0.0 fetched in 309ms 520 http fetch GET 200 https://registry.npmjs.org/tar/-/tar-6.1.10.tgz 557ms 521 silly pacote range manifest for tar@^6.0.2 fetched in 4356ms 522 http fetch GET 304 https://registry.npmjs.org/chalk 288ms (from cache) 523 silly pacote range manifest for chalk@^4.1.0 fetched in 291ms 524 http fetch GET 304 https://registry.npmjs.org/parse5 183ms (from cache) 525 silly pacote range manifest for parse5@^6.0.1 fetched in 185ms 526 http fetch GET 304 https://registry.npmjs.org/parse5-htmlparser2-tree-adapter 125ms (from cache) 527 silly pacote range manifest for parse5-htmlparser2-tree-adapter@^6.0.1 fetched in 127ms 528 http fetch GET 304 https://registry.npmjs.org/css 852ms (from cache) 529 silly pacote range manifest for css@^3.0.0 fetched in 854ms 530 http fetch GET 304 https://registry.npmjs.org/pretty-bytes 997ms (from cache) 531 silly pacote range manifest for pretty-bytes@^5.3.0 fetched in 1000ms 532 silly pacote range manifest for postcss@^8.2.15 fetched in 1ms 533 http fetch GET 304 https://registry.npmjs.org/icss-utils 896ms (from cache) 534 silly pacote range manifest for icss-utils@^5.1.0 fetched in 898ms 535 http fetch GET 304 https://registry.npmjs.org/postcss-modules-extract-imports 419ms (from cache) 536 silly pacote range manifest for postcss-modules-extract-imports@^3.0.0 fetched in 421ms 537 http fetch GET 304 https://registry.npmjs.org/postcss-modules-local-by-default 234ms (from cache) 538 silly pacote range manifest for postcss-modules-local-by-default@^4.0.0 fetched in 236ms 539 http fetch GET 304 https://registry.npmjs.org/postcss-modules-scope 225ms (from cache) 540 silly pacote range manifest for postcss-modules-scope@^3.0.0 fetched in 227ms 541 http fetch GET 304 https://registry.npmjs.org/postcss-modules-values 284ms (from cache) 542 http fetch GET 304 https://registry.npmjs.org/postcss-value-parser 280ms (from cache) 543 silly pacote range manifest for postcss-modules-values@^4.0.0 fetched in 286ms 544 silly pacote range manifest for postcss-value-parser@^4.1.0 fetched in 282ms 545 silly pacote range manifest for semver@^7.3.5 fetched in 1ms 546 http fetch GET 304 https://registry.npmjs.org/jest-worker 242ms (from cache) 547 silly pacote range manifest for jest-worker@^27.0.2 fetched in 246ms 548 silly pacote range manifest for p-limit@^3.0.2 fetched in 1ms 549 silly pacote range manifest for postcss@^8.3.5 fetched in 3ms 550 http fetch GET 200 https://registry.npmjs.org/cssnano 3533ms 551 http fetch GET 200 https://registry.npmjs.org/cssnano/-/cssnano-5.0.8.tgz 187ms 552 silly pacote range manifest for cssnano@^5.0.6 fetched in 3725ms 553 http fetch GET 200 https://registry.npmjs.org/node-releases 18909ms 554 http fetch GET 200 https://registry.npmjs.org/node-releases/-/node-releases-1.1.75.tgz 1241ms 555 silly pacote range manifest for node-releases@^1.1.75 fetched in 20155ms 556 http fetch GET 304 https://registry.npmjs.org/@yarnpkg%2flockfile 349ms (from cache) 557 silly pacote version manifest for @yarnpkg/[email protected] fetched in 351ms 558 silly pacote version manifest for [email protected] fetched in 1ms 559 http fetch GET 304 https://registry.npmjs.org/ini 653ms (from cache) 560 silly pacote version manifest for [email protected] fetched in 655ms 561 http fetch GET 304 https://registry.npmjs.org/jsonc-parser 225ms (from cache) 562 silly pacote version manifest for [email protected] fetched in 227ms 563 http fetch GET 304 https://registry.npmjs.org/npm-package-arg 177ms (from cache) 564 silly pacote version manifest for [email protected] fetched in 179ms 565 http fetch GET 304 https://registry.npmjs.org/npm-pick-manifest 183ms (from cache) 566 silly pacote version manifest for [email protected] fetched in 186ms 567 http fetch GET 304 https://registry.npmjs.org/pacote 201ms (from cache) 568 silly pacote version manifest for [email protected] fetched in 204ms 569 http fetch GET 304 https://registry.npmjs.org/resolve 144ms (from cache) 570 silly pacote version manifest for [email protected] fetched in 146ms 571 http fetch GET 304 https://registry.npmjs.org/symbol-observable 122ms (from cache) 572 silly pacote version manifest for [email protected] fetched in 124ms 573 http fetch GET 304 https://registry.npmjs.org/uuid 159ms (from cache) 574 silly pacote version manifest for [email protected] fetched in 160ms 575 http fetch GET 304 https://registry.npmjs.org/commondir 1120ms (from cache) 576 silly pacote range manifest for commondir@^1.0.1 fetched in 1122ms 577 silly pacote range manifest for make-dir@^3.0.2 fetched in 1ms 578 http fetch GET 304 https://registry.npmjs.org/pkg-dir 2196ms (from cache) 579 silly pacote range manifest for pkg-dir@^4.1.0 fetched in 2198ms 580 http fetch GET 304 https://registry.npmjs.org/fs.realpath 325ms (from cache) 581 silly pacote range manifest for fs.realpath@^1.0.0 fetched in 327ms 582 http fetch GET 200 https://registry.npmjs.org/@schematics%2fangular 8825ms 583 http fetch GET 304 https://registry.npmjs.org/inflight 303ms (from cache) 584 silly pacote range manifest for inflight@^1.0.4 fetched in 304ms 585 http fetch GET 200 https://registry.npmjs.org/core-js-compat 28982ms 586 http fetch GET 304 https://registry.npmjs.org/inherits 327ms (from cache) 587 silly pacote range manifest for inherits@2 fetched in 329ms 588 http fetch GET 304 https://registry.npmjs.org/once 510ms (from cache) 589 silly pacote range manifest for once@^1.3.0 fetched in 511ms 590 http fetch GET 304 https://registry.npmjs.org/path-is-absolute 428ms (from cache) 591 silly pacote range manifest for path-is-absolute@^1.0.0 fetched in 430ms 592 http fetch GET 200 https://registry.npmjs.org/@angular/compiler/-/compiler-12.2.2.tgz 319135ms 593 silly pacote range manifest for @angular/compiler@~12.2.0 fetched in 321152ms 594 silly pacote range manifest for debug@4 fetched in 0ms 595 http fetch GET 304 https://registry.npmjs.org/agent-base 419ms (from cache) 596 silly pacote range manifest for agent-base@6 fetched in 422ms 597 silly pacote range manifest for chalk@^4.1.1 fetched in 1ms 598 http fetch GET 304 https://registry.npmjs.org/ansi-escapes 290ms (from cache) 599 silly pacote range manifest for ansi-escapes@^4.2.1 fetched in 293ms 600 http fetch GET 304 https://registry.npmjs.org/cli-cursor 255ms (from cache) 601 silly pacote range manifest for cli-cursor@^3.1.0 fetched in 258ms 602 http fetch GET 304 https://registry.npmjs.org/cli-width 181ms (from cache) 603 silly pacote range manifest for cli-width@^3.0.0 fetched in 182ms 604 http fetch GET 304 https://registry.npmjs.org/external-editor 178ms (from cache) 605 silly pacote range manifest for external-editor@^3.0.3 fetched in 180ms 606 http fetch GET 304 https://registry.npmjs.org/figures 209ms (from cache) 607 silly pacote range manifest for figures@^3.0.0 fetched in 210ms 608 silly pacote range manifest for ora@^5.3.0 fetched in 1ms 609 http fetch GET 304 https://registry.npmjs.org/mute-stream 189ms (from cache) 610 silly pacote version manifest for [email protected] fetched in 190ms 611 silly pacote range manifest for rxjs@^7.2.0 fetched in 2ms 612 http fetch GET 304 https://registry.npmjs.org/run-async 187ms (from cache) 613 silly pacote range manifest for run-async@^2.4.0 fetched in 190ms 614 http fetch GET 304 https://registry.npmjs.org/string-width 353ms (from cache) 615 silly pacote range manifest for string-width@^4.1.0 fetched in 356ms 616 http fetch GET 304 https://registry.npmjs.org/strip-ansi 527ms (from cache) 617 silly pacote range manifest for strip-ansi@^6.0.0 fetched in 529ms 618 silly pacote range manifest for source-map-support@^0.5.5 fetched in 2ms 619 http fetch GET 304 https://registry.npmjs.org/through 649ms (from cache) 620 silly pacote range manifest for through@^2.3.6 fetched in 651ms 621 http fetch GET 304 https://registry.npmjs.org/copy-anything 601ms (from cache) 622 silly pacote range manifest for copy-anything@^2.0.1 fetched in 603ms 623 silly pacote range manifest for tslib@^1.10.0 fetched in 1ms 624 http fetch GET 304 https://registry.npmjs.org/errno 983ms (from cache) 625 silly pacote range manifest for errno@^0.1.1 fetched in 985ms 626 silly pacote range manifest for graceful-fs@^4.1.2 fetched in 1ms 627 http fetch GET 304 https://registry.npmjs.org/parse-node-version 1938ms (from cache) 628 silly pacote range manifest for parse-node-version@^1.0.1 fetched in 1940ms 629 silly pacote range manifest for make-dir@^2.1.0 fetched in 2ms 630 silly pacote range manifest for mime@^1.4.1 fetched in 2ms 631 http fetch GET 304 https://registry.npmjs.org/image-size 1085ms (from cache) 632 silly pacote range manifest for image-size@~0.5.0 fetched in 1087ms 633 silly pacote range manifest for source-map@~0.6.0 fetched in 1ms 634 http fetch GET 200 https://registry.npmjs.org/@angular-devkit%2fschematics 18299ms 635 http fetch GET 304 https://registry.npmjs.org/needle 734ms (from cache) 636 silly pacote range manifest for needle@^2.5.2 fetched in 737ms 637 http fetch GET 304 https://registry.npmjs.org/klona 826ms (from cache) 638 silly pacote range manifest for klona@^2.0.4 fetched in 828ms 639 http fetch GET 304 https://registry.npmjs.org/big.js 584ms (from cache) 640 silly pacote range manifest for big.js@^5.2.2 fetched in 585ms 641 http fetch GET 304 https://registry.npmjs.org/emojis-list 351ms (from cache) 642 silly pacote range manifest for emojis-list@^3.0.0 fetched in 353ms 643 http fetch GET 304 https://registry.npmjs.org/brace-expansion 777ms (from cache) 644 silly pacote range manifest for brace-expansion@^1.1.7 fetched in 779ms 645 http fetch GET 304 https://registry.npmjs.org/define-lazy-prop 1237ms (from cache) 646 silly pacote range manifest for define-lazy-prop@^2.0.0 fetched in 1239ms 647 http fetch GET 200 https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.16.2.tgz 10379ms 648 silly pacote range manifest for core-js-compat@^3.15.0 fetched in 39365ms 649 http fetch GET 304 https://registry.npmjs.org/is-wsl 2849ms (from cache) 650 silly pacote range manifest for is-wsl@^2.2.0 fetched in 2851ms 651 http fetch GET 304 https://registry.npmjs.org/is-docker 3749ms (from cache) 652 silly pacote range manifest for is-docker@^2.1.1 fetched in 3750ms 653 http fetch GET 200 https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-12.2.2.tgz 5427ms 654 silly pacote version manifest for @angular-devkit/[email protected] fetched in 23732ms 655 http fetch GET 304 https://registry.npmjs.org/bl 643ms (from cache) 656 silly pacote range manifest for bl@^4.1.0 fetched in 645ms 657 http fetch GET 304 https://registry.npmjs.org/cli-spinners 398ms (from cache) 658 silly pacote range manifest for cli-spinners@^2.5.0 fetched in 399ms 659 http fetch GET 304 https://registry.npmjs.org/is-interactive 285ms (from cache) 660 silly pacote range manifest for is-interactive@^1.0.0 fetched in 286ms 661 http fetch GET 304 https://registry.npmjs.org/is-unicode-supported 243ms (from cache) 662 silly pacote range manifest for is-unicode-supported@^0.1.0 fetched in 246ms 663 http fetch GET 304 https://registry.npmjs.org/log-symbols 226ms (from cache) 664 silly pacote range manifest for log-symbols@^4.1.0 fetched in 227ms 665 http fetch GET 304 https://registry.npmjs.org/wcwidth 255ms (from cache) 666 silly pacote range manifest for wcwidth@^1.0.1 fetched in 256ms 667 http fetch GET 304 https://registry.npmjs.org/parse5-sax-parser 870ms (from cache) 668 silly pacote range manifest for parse5-sax-parser@^6.0.1 fetched in 871ms 669 http fetch GET 304 https://registry.npmjs.org/eventemitter-asyncresource 928ms (from cache) 670 silly pacote range manifest for eventemitter-asyncresource@^1.0.0 fetched in 929ms 671 silly pacote range manifest for colorette@^1.2.2 fetched in 1ms 672 http fetch GET 304 https://registry.npmjs.org/hdr-histogram-js 952ms (from cache) 673 silly pacote range manifest for hdr-histogram-js@^2.0.1 fetched in 954ms 674 http fetch GET 304 https://registry.npmjs.org/hdr-histogram-percentiles-obj 980ms (from cache) 675 http fetch GET 304 https://registry.npmjs.org/nanoid 150ms (from cache) 676 silly pacote range manifest for hdr-histogram-percentiles-obj@^3.0.0 fetched in 982ms 677 silly pacote range manifest for nanoid@^3.1.23 fetched in 152ms 678 silly pacote range manifest for postcss-value-parser@^4.0.0 fetched in 2ms 679 silly pacote range manifest for resolve@^1.1.7 fetched in 2ms 680 http fetch GET 304 https://registry.npmjs.org/source-map-js 283ms (from cache) 681 silly pacote range manifest for source-map-js@^0.6.2 fetched in 285ms 682 http fetch GET 304 https://registry.npmjs.org/read-cache 192ms (from cache) 683 silly pacote range manifest for read-cache@^1.0.0 fetched in 193ms 684 silly pacote range manifest for browserslist@^4.6.4 fetched in 0ms 685 silly pacote range manifest for caniuse-lite@^1.0.30000981 fetched in 1ms 686 http fetch GET 304 https://registry.npmjs.org/css-blank-pseudo 286ms (from cache) 687 silly pacote range manifest for css-blank-pseudo@^0.1.4 fetched in 288ms 688 http fetch GET 304 https://registry.npmjs.org/nice-napi 1041ms (from cache) 689 silly pacote range manifest for nice-napi@^1.0.2 fetched in 1043ms 690 http fetch GET 304 https://registry.npmjs.org/css-has-pseudo 402ms (from cache) 691 silly pacote range manifest for css-has-pseudo@^0.10.0 fetched in 405ms 692 http fetch GET 200 https://registry.npmjs.org/cosmiconfig 986ms 693 http fetch GET 304 https://registry.npmjs.org/cssdb 876ms (from cache) 694 silly pacote range manifest for cssdb@^4.4.0 fetched in 880ms 695 silly pacote range manifest for postcss@^7.0.17 fetched in 3ms 696 http fetch GET 304 https://registry.npmjs.org/postcss-attribute-case-insensitive 1422ms (from cache) 697 silly pacote range manifest for postcss-attribute-case-insensitive@^4.0.1 fetched in 1424ms 698 http fetch GET 304 https://registry.npmjs.org/css-prefers-color-scheme 2503ms (from cache) 699 silly pacote range manifest for css-prefers-color-scheme@^3.1.1 fetched in 2505ms 700 http fetch GET 304 https://registry.npmjs.org/postcss-color-functional-notation 198ms (from cache) 701 silly pacote range manifest for postcss-color-functional-notation@^2.0.1 fetched in 201ms 702 http fetch GET 304 https://registry.npmjs.org/postcss-color-gray 206ms (from cache) 703 silly pacote range manifest for postcss-color-gray@^5.0.0 fetched in 207ms 704 http fetch GET 304 https://registry.npmjs.org/postcss-color-mod-function 1415ms (from cache) 705 silly pacote range manifest for postcss-color-mod-function@^3.0.3 fetched in 1417ms 706 http fetch GET 304 https://registry.npmjs.org/postcss-color-hex-alpha 1817ms (from cache) 707 silly pacote range manifest for postcss-color-hex-alpha@^5.0.3 fetched in 1819ms 708 http fetch GET 304 https://registry.npmjs.org/postcss-color-rebeccapurple 751ms (from cache) 709 silly pacote range manifest for postcss-color-rebeccapurple@^4.0.1 fetched in 753ms 710 http fetch GET 304 https://registry.npmjs.org/postcss-custom-media 1091ms (from cache) 711 silly pacote range manifest for postcss-custom-media@^7.0.8 fetched in 1092ms 712 http fetch GET 304 https://registry.npmjs.org/postcss-custom-properties 1635ms (from cache) 713 silly pacote range manifest for postcss-custom-properties@^8.0.11 fetched in 1637ms 714 http fetch GET 304 https://registry.npmjs.org/postcss-custom-selectors 1420ms (from cache) 715 silly pacote range manifest for postcss-custom-selectors@^5.1.2 fetched in 1422ms 716 http fetch GET 304 https://registry.npmjs.org/postcss-dir-pseudo-class 711ms (from cache) 717 silly pacote range manifest for postcss-dir-pseudo-class@^5.0.0 fetched in 714ms 718 http fetch GET 304 https://registry.npmjs.org/postcss-double-position-gradients 551ms (from cache) 719 silly pacote range manifest for postcss-double-position-gradients@^1.0.0 fetched in 554ms 720 http fetch GET 200 https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz 7313ms 721 silly pacote range manifest for cosmiconfig@^7.0.0 fetched in 8303ms 722 http fetch GET 304 https://registry.npmjs.org/postcss-env-function 586ms (from cache) 723 silly pacote range manifest for postcss-env-function@^2.0.2 fetched in 588ms 724 http fetch GET 200 https://registry.npmjs.org/@angular-devkit%2fbuild-webpack 200493ms 725 http fetch GET 304 https://registry.npmjs.org/postcss-focus-visible 914ms (from cache) 726 silly pacote range manifest for postcss-focus-visible@^4.0.0 fetched in 916ms 727 http fetch GET 304 https://registry.npmjs.org/postcss-focus-within 906ms (from cache) 728 silly pacote range manifest for postcss-focus-within@^3.0.0 fetched in 908ms 729 http fetch GET 304 https://registry.npmjs.org/postcss-font-variant 729ms (from cache) 730 silly pacote range manifest for postcss-font-variant@^4.0.0 fetched in 730ms 731 http fetch GET 304 https://registry.npmjs.org/postcss-image-set-function 224ms (from cache) 732 silly pacote range manifest for postcss-image-set-function@^3.0.1 fetched in 226ms 733 http fetch GET 304 https://registry.npmjs.org/postcss-initial 178ms (from cache) 734 silly pacote range manifest for postcss-initial@^3.0.0 fetched in 179ms 735 http fetch GET 200 https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1202.2.tgz 329ms 736 http fetch GET 304 https://registry.npmjs.org/postcss-gap-properties 317ms (from cache) 737 silly pacote range manifest for postcss-gap-properties@^2.0.0 fetched in 318ms 738 silly pacote version manifest for @angular-devkit/[email protected] fetched in 200831ms 739 http fetch GET 304 https://registry.npmjs.org/postcss-lab-function 129ms (from cache) 740 silly pacote range manifest for postcss-lab-function@^2.0.1 fetched in 132ms 741 http fetch GET 304 https://registry.npmjs.org/postcss-logical 94ms (from cache) 742 silly pacote range manifest for postcss-logical@^3.0.0 fetched in 96ms 743 http fetch GET 304 https://registry.npmjs.org/postcss-media-minmax 105ms (from cache) 744 silly pacote range manifest for postcss-media-minmax@^4.0.0 fetched in 106ms 745 http fetch GET 304 https://registry.npmjs.org/postcss-nesting 105ms (from cache) 746 silly pacote range manifest for postcss-nesting@^7.0.0 fetched in 108ms 747 http fetch GET 304 https://registry.npmjs.org/postcss-overflow-shorthand 101ms (from cache) 748 silly pacote range manifest for postcss-overflow-shorthand@^2.0.0 fetched in 103ms 749 http fetch GET 304 https://registry.npmjs.org/postcss-page-break 89ms (from cache) 750 silly pacote range manifest for postcss-page-break@^2.0.0 fetched in 91ms 751 http fetch GET 304 https://registry.npmjs.org/postcss-place 82ms (from cache) 752 silly pacote range manifest for postcss-place@^4.0.1 fetched in 84ms 753 http fetch GET 304 https://registry.npmjs.org/postcss-pseudo-class-any-link 114ms (from cache) 754 silly pacote range manifest for postcss-pseudo-class-any-link@^6.0.0 fetched in 116ms 755 http fetch GET 304 https://registry.npmjs.org/postcss-selector-matches 108ms (from cache) 756 silly pacote range manifest for postcss-selector-matches@^4.0.0 fetched in 111ms 757 silly pacote range manifest for postcss@^7.0.35 fetched in 2ms 758 silly pacote version manifest for [email protected] fetched in 2ms 759 http fetch GET 304 https://registry.npmjs.org/postcss-replace-overflow-wrap 126ms (from cache) 760 silly pacote range manifest for postcss-replace-overflow-wrap@^3.0.0 fetched in 128ms 761 silly pacote range manifest for chokidar@&gt;=3.0.0 &lt;4.0.0 fetched in 1ms 762 http fetch GET 304 https://registry.npmjs.org/adjust-sourcemap-loader 100ms (from cache) 763 silly pacote range manifest for adjust-sourcemap-loader@^4.0.0 fetched in 102ms 764 http fetch GET 304 https://registry.npmjs.org/postcss-selector-not 158ms (from cache) 765 silly pacote range manifest for postcss-selector-not@^4.0.0 fetched in 160ms 766 http fetch GET 304 https://registry.npmjs.org/neo-async 119ms (from cache) 767 http fetch GET 304 https://registry.npmjs.org/abab 113ms (from cache) 768 silly pacote range manifest for neo-async@^2.6.2 fetched in 121ms 769 silly pacote range manifest for abab@^2.0.5 fetched in 115ms 770 silly pacote range manifest for source-map@^0.6.0 fetched in 2ms 771 silly pacote range manifest for source-map@~0.7.2 fetched in 1ms 772 silly pacote range manifest for source-map-support@~0.5.19 fetched in 0ms 773 silly pacote range manifest for terser@^5.7.0 fetched in 2ms 774 http fetch GET 304 https://registry.npmjs.org/iconv-lite 135ms (from cache) 775 silly pacote range manifest for iconv-lite@^0.6.2 fetched in 137ms 776 http fetch GET 304 https://registry.npmjs.org/commander 80ms (from cache) 777 silly pacote range manifest for commander@^2.20.0 fetched in 83ms 778 http fetch GET 304 https://registry.npmjs.org/buffer-from 234ms (from cache) 779 silly pacote range manifest for buffer-from@^1.0.0 fetched in 236ms 780 silly pacote range manifest for debug@~3.1.0 fetched in 2ms 781 silly pacote range manifest for glob@^7.1.6 fetched in 1ms 782 silly pacote range manifest for mkdirp@~1.0.4 fetched in 1ms 783 http fetch GET 304 https://registry.npmjs.org/webpack-sources 197ms (from cache) 784 silly pacote range manifest for webpack-sources@^1.2.0 fetched in 199ms 785 http fetch GET 304 https://registry.npmjs.org/safer-buffer 1422ms (from cache) 786 silly pacote range manifest for safer-buffer@^2.1.2 fetched in 1423ms 787 silly pacote range manifest for source-map@^0.7.3 fetched in 1ms 788 http fetch GET 304 https://registry.npmjs.org/sax 1531ms (from cache) 789 silly pacote range manifest for sax@~1.2.4 fetched in 1533ms 790 http fetch GET 304 https://registry.npmjs.org/css-parse 1812ms (from cache) 791 silly pacote range manifest for css-parse@~2.0.0 fetched in 1814ms 792 http fetch GET 200 https://registry.npmjs.org/@types%2fwebpack-sources 2082ms 793 silly pacote range manifest for @types/webpack-sources@^0.1.5 fetched in 2085ms 794 http fetch GET 304 https://registry.npmjs.org/memfs 308ms (from cache) 795 silly pacote range manifest for memfs@^3.2.2 fetched in 310ms 796 http fetch GET 304 https://registry.npmjs.org/mime-types 254ms (from cache) 797 silly pacote range manifest for mime-types@^2.1.31 fetched in 256ms 798 silly pacote range manifest for webpack-sources@^1.3.0 fetched in 1ms 799 silly pacote range manifest for make-dir@^3.0.0 fetched in 1ms 800 http fetch GET 304 https://registry.npmjs.org/clone-deep 261ms (from cache) 801 silly pacote range manifest for clone-deep@^4.0.1 fetched in 262ms 802 silly pacote range manifest for @babel/core@^7.7.5 fetched in 1ms 803 http fetch GET 304 https://registry.npmjs.org/wildcard 264ms (from cache) 804 silly pacote range manifest for wildcard@^2.0.0 fetched in 266ms 805 silly pacote range manifest for @babel/generator@^7.15.0 fetched in 2ms 806 silly pacote range manifest for @babel/helper-compilation-targets@^7.15.0 fetched in 1ms 807 silly pacote range manifest for @babel/helper-module-transforms@^7.15.0 fetched in 1ms 808 silly pacote range manifest for @babel/parser@^7.15.0 fetched in 2ms 809 silly pacote range manifest for @babel/traverse@^7.15.0 fetched in 1ms 810 silly pacote range manifest for @babel/types@^7.15.0 fetched in 1ms 811 silly pacote range manifest for debug@^4.1.1 fetched in 1ms 812 http fetch GET 304 https://registry.npmjs.org/supports-color 251ms (from cache) 813 silly pacote range manifest for supports-color@^7.1.0 fetched in 253ms 814 http fetch GET 304 https://registry.npmjs.org/mem 814ms (from cache) 815 silly pacote range manifest for mem@^8.1.1 fetched in 817ms 816 http fetch GET 304 https://registry.npmjs.org/html-escaper 198ms (from cache) 817 silly pacote range manifest for html-escaper@^2.0.0 fetched in 199ms 818 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-validator-identifier 219ms (from cache) 819 silly pacote range manifest for @babel/helper-validator-identifier@^7.14.9 fetched in 220ms 820 http fetch GET 304 https://registry.npmjs.org/to-fast-properties 733ms (from cache) 821 silly pacote range manifest for to-fast-properties@^2.0.0 fetched in 735ms 822 silly pacote range manifest for braces@~3.0.2 fetched in 1ms 823 silly pacote range manifest for glob-parent@~5.1.2 fetched in 1ms 824 http fetch GET 304 https://registry.npmjs.org/safe-buffer 731ms (from cache) 825 silly pacote range manifest for safe-buffer@~5.1.1 fetched in 733ms 826 http fetch GET 304 https://registry.npmjs.org/anymatch 807ms (from cache) 827 silly pacote range manifest for anymatch@~3.1.2 fetched in 809ms 828 silly pacote range manifest for normalize-path@~3.0.0 fetched in 1ms 829 http fetch GET 304 https://registry.npmjs.org/@istanbuljs%2fschema 1154ms (from cache) 830 silly pacote range manifest for @istanbuljs/schema@^0.1.2 fetched in 1156ms 831 http fetch GET 304 https://registry.npmjs.org/is-binary-path 465ms (from cache) 832 silly pacote range manifest for is-binary-path@~2.1.0 fetched in 467ms 833 silly pacote range manifest for sourcemap-codec@^1.4.4 fetched in 1ms 834 http fetch GET 304 https://registry.npmjs.org/is-glob 334ms (from cache) 835 silly pacote range manifest for is-glob@~4.0.1 fetched in 336ms 836 http fetch GET 304 https://registry.npmjs.org/readdirp 407ms (from cache) 837 silly pacote range manifest for readdirp@~3.6.0 fetched in 409ms 838 http fetch GET 304 https://registry.npmjs.org/fsevents 455ms (from cache) 839 silly pacote range manifest for fsevents@~2.3.2 fetched in 457ms 840 silly pacote range manifest for string-width@^4.2.0 fetched in 1ms 841 http fetch GET 304 https://registry.npmjs.org/get-caller-file 500ms (from cache) 842 silly pacote range manifest for get-caller-file@^2.0.5 fetched in 502ms 843 http fetch GET 304 https://registry.npmjs.org/cliui 523ms (from cache) 844 silly pacote range manifest for cliui@^7.0.2 fetched in 525ms 845 http fetch GET 304 https://registry.npmjs.org/require-directory 395ms (from cache) 846 silly pacote range manifest for require-directory@^2.1.1 fetched in 397ms 847 http fetch GET 304 https://registry.npmjs.org/y18n 481ms (from cache) 848 silly pacote range manifest for y18n@^5.0.5 fetched in 482ms 849 silly pacote version manifest for [email protected] fetched in 2ms 850 http fetch GET 304 https://registry.npmjs.org/bytes 385ms (from cache) 851 http fetch GET 304 https://registry.npmjs.org/yargs-parser 393ms (from cache) 852 silly pacote version manifest for [email protected] fetched in 387ms 853 silly pacote range manifest for yargs-parser@^20.2.2 fetched in 395ms 854 silly pacote version manifest for [email protected] fetched in 2ms 855 http fetch GET 304 https://registry.npmjs.org/content-type 524ms (from cache) 856 silly pacote range manifest for content-type@~1.0.4 fetched in 526ms 857 http fetch GET 304 https://registry.npmjs.org/depd 734ms (from cache) 858 silly pacote range manifest for depd@~1.1.2 fetched in 735ms 859 http fetch GET 304 https://registry.npmjs.org/on-finished 1044ms (from cache) 860 silly pacote range manifest for on-finished@~2.3.0 fetched in 1046ms 861 http fetch GET 304 https://registry.npmjs.org/http-errors 1082ms (from cache) 862 silly pacote version manifest for [email protected] fetched in 1084ms 863 http fetch GET 304 https://registry.npmjs.org/qs 954ms (from cache) 864 silly pacote version manifest for [email protected] fetched in 957ms 865 http fetch GET 304 https://registry.npmjs.org/raw-body 818ms (from cache) 866 silly pacote version manifest for [email protected] fetched in 820ms 867 http fetch GET 304 https://registry.npmjs.org/fill-range 495ms (from cache) 868 http fetch GET 304 https://registry.npmjs.org/finalhandler 403ms (from cache) 869 silly pacote range manifest for fill-range@^7.0.1 fetched in 496ms 870 silly pacote version manifest for [email protected] fetched in 405ms 871 http fetch GET 304 https://registry.npmjs.org/parseurl 364ms (from cache) 872 silly pacote range manifest for parseurl@~1.3.3 fetched in 366ms 873 http fetch GET 304 https://registry.npmjs.org/utils-merge 334ms (from cache) 874 silly pacote version manifest for [email protected] fetched in 336ms 875 http fetch GET 304 https://registry.npmjs.org/custom-event 349ms (from cache) 876 silly pacote range manifest for custom-event@~1.0.0 fetched in 350ms 877 http fetch GET 304 https://registry.npmjs.org/type-is 974ms (from cache) 878 silly pacote range manifest for type-is@~1.6.17 fetched in 976ms 879 http fetch GET 304 https://registry.npmjs.org/ent 256ms (from cache) 880 silly pacote range manifest for ent@~2.2.0 fetched in 259ms 881 http fetch GET 304 https://registry.npmjs.org/extend 238ms (from cache) 882 silly pacote range manifest for extend@^3.0.0 fetched in 239ms 883 silly pacote range manifest for chokidar@^2.1.8 fetched in 2ms 884 warn deprecated [email protected]: Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies. 885 http fetch GET 304 https://registry.npmjs.org/void-elements 239ms (from cache) 886 silly pacote range manifest for void-elements@^2.0.0 fetched in 241ms 887 http fetch GET 304 https://registry.npmjs.org/ansi-html 555ms (from cache) 888 silly pacote version manifest for [email protected] fetched in 556ms 889 http fetch GET 304 https://registry.npmjs.org/bonjour 693ms (from cache) 890 silly pacote range manifest for bonjour@^3.5.0 fetched in 694ms 891 http fetch GET 304 https://registry.npmjs.org/compression 888ms (from cache) 892 silly pacote range manifest for compression@^1.7.4 fetched in 891ms 893 http fetch GET 304 https://registry.npmjs.org/connect-history-api-fallback 1000ms (from cache) 894 silly pacote range manifest for connect-history-api-fallback@^1.6.0 fetched in 1002ms 895 http fetch GET 304 https://registry.npmjs.org/del 957ms (from cache) 896 silly pacote range manifest for del@^4.1.1 fetched in 960ms 897 http fetch GET 304 https://registry.npmjs.org/express 820ms (from cache) 898 silly pacote range manifest for express@^4.17.1 fetched in 824ms 899 http fetch GET 304 https://registry.npmjs.org/html-entities 653ms (from cache) 900 silly pacote range manifest for html-entities@^1.3.1 fetched in 655ms 901 http fetch GET 304 https://registry.npmjs.org/http-proxy-middleware 559ms (from cache) 902 silly pacote version manifest for [email protected] fetched in 562ms 903 http fetch GET 304 https://registry.npmjs.org/import-local 321ms (from cache) 904 silly pacote range manifest for import-local@^2.0.0 fetched in 324ms 905 http fetch GET 304 https://registry.npmjs.org/internal-ip 314ms (from cache) 906 silly pacote range manifest for internal-ip@^4.3.0 fetched in 318ms 907 http fetch GET 304 https://registry.npmjs.org/ip 315ms (from cache) 908 silly pacote range manifest for ip@^1.1.5 fetched in 316ms 909 http fetch GET 304 https://registry.npmjs.org/is-absolute-url 288ms (from cache) 910 silly pacote range manifest for is-absolute-url@^3.0.3 fetched in 290ms 911 http fetch GET 304 https://registry.npmjs.org/killable 273ms (from cache) 912 silly pacote range manifest for killable@^1.0.1 fetched in 275ms 913 http fetch GET 304 https://registry.npmjs.org/loglevel 303ms (from cache) 914 silly pacote range manifest for loglevel@^1.6.8 fetched in 305ms 915 silly pacote range manifest for schema-utils@^1.0.0 fetched in 2ms 916 http fetch GET 304 https://registry.npmjs.org/p-retry 225ms (from cache) 917 silly pacote range manifest for p-retry@^3.0.1 fetched in 227ms 918 http fetch GET 304 https://registry.npmjs.org/opn 235ms (from cache) 919 silly pacote range manifest for opn@^5.5.0 fetched in 237ms 920 http fetch GET 304 https://registry.npmjs.org/portfinder 231ms (from cache) 921 silly pacote range manifest for portfinder@^1.0.26 fetched in 234ms 922 http fetch GET 304 https://registry.npmjs.org/selfsigned 231ms (from cache) 923 silly pacote range manifest for selfsigned@^1.10.8 fetched in 233ms 924 http fetch GET 304 https://registry.npmjs.org/sockjs 222ms (from cache) 925 http fetch GET 304 https://registry.npmjs.org/serve-index 226ms (from cache) 926 silly pacote range manifest for sockjs@^0.3.21 fetched in 224ms 927 silly pacote range manifest for serve-index@^1.9.1 fetched in 229ms 928 silly pacote range manifest for strip-ansi@^3.0.1 fetched in 3ms 929 silly pacote range manifest for supports-color@^6.1.0 fetched in 2ms 930 silly pacote range manifest for webpack-dev-middleware@^3.7.2 fetched in 2ms 931 http fetch GET 304 https://registry.npmjs.org/sockjs-client 285ms (from cache) 932 silly pacote range manifest for sockjs-client@^1.5.0 fetched in 288ms 933 http fetch GET 304 https://registry.npmjs.org/spdy 381ms (from cache) 934 silly pacote range manifest for spdy@^4.0.2 fetched in 384ms 935 silly pacote range manifest for yargs@^13.3.2 fetched in 3ms 936 http fetch GET 304 https://registry.npmjs.org/url 390ms (from cache) 937 silly pacote range manifest for url@^0.11.0 fetched in 392ms 938 http fetch GET 304 https://registry.npmjs.org/webpack-log 389ms (from cache) 939 silly pacote range manifest for webpack-log@^2.0.0 fetched in 391ms 940 http fetch GET 304 https://registry.npmjs.org/date-format 922ms (from cache) 941 silly pacote range manifest for date-format@^3.0.0 fetched in 924ms 942 http fetch GET 304 https://registry.npmjs.org/flatted 929ms (from cache) 943 silly pacote range manifest for flatted@^2.0.1 fetched in 931ms 944 silly pacote range manifest for glob@^7.1.3 fetched in 1ms 945 silly pacote range manifest for rimraf@^3.0.0 fetched in 1ms 946 http fetch GET 304 https://registry.npmjs.org/rfdc 932ms (from cache) 947 silly pacote range manifest for rfdc@^1.1.4 fetched in 934ms 948 http fetch GET 304 https://registry.npmjs.org/fast-deep-equal 150ms (from cache) 949 silly pacote range manifest for fast-deep-equal@^3.1.1 fetched in 151ms 950 http fetch GET 304 https://registry.npmjs.org/isexe 164ms (from cache) 951 silly pacote range manifest for isexe@^2.0.0 fetched in 166ms 952 http fetch GET 200 https://registry.npmjs.org/@schematics/angular/-/angular-12.2.2.tgz 33282ms 953 silly pacote version manifest for @schematics/[email protected] fetched in 42114ms 954 http fetch GET 304 https://registry.npmjs.org/json-schema-traverse 110ms (from cache) 955 silly pacote range manifest for json-schema-traverse@^1.0.0 fetched in 114ms 956 http fetch GET 304 https://registry.npmjs.org/require-from-string 115ms (from cache) 957 silly pacote range manifest for require-from-string@^2.0.2 fetched in 116ms 958 http fetch GET 304 https://registry.npmjs.org/eventemitter3 92ms (from cache) 959 silly pacote range manifest for eventemitter3@^4.0.0 fetched in 95ms 960 http fetch GET 304 https://registry.npmjs.org/requires-port 121ms (from cache) 961 silly pacote range manifest for requires-port@^1.0.0 fetched in 123ms 962 silly pacote range manifest for ajv@^8.0.0 fetched in 1ms 963 silly pacote range manifest for @babel/compat-data@^7.15.0 fetched in 1ms 964 silly pacote range manifest for browserslist@^4.16.6 fetched in 1ms 965 http fetch GET 304 https://registry.npmjs.org/@babel%2fhighlight 116ms (from cache) 966 silly pacote range manifest for @babel/highlight@^7.14.5 fetched in 117ms 967 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-replace-supers 146ms (from cache) 968 silly pacote range manifest for @babel/helper-replace-supers@^7.15.0 fetched in 148ms 969 http fetch GET 304 https://registry.npmjs.org/streamroller 841ms (from cache) 970 silly pacote range manifest for streamroller@^2.2.4 fetched in 844ms 971 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-simple-access 130ms (from cache) 972 silly pacote range manifest for @babel/helper-simple-access@^7.14.8 fetched in 132ms 973 http fetch GET 304 https://registry.npmjs.org/uri-js 876ms (from cache) 974 silly pacote range manifest for uri-js@^4.2.2 fetched in 880ms 975 http fetch GET 200 https://registry.npmjs.org/@types%2fcors 833ms 976 silly pacote range manifest for @types/cors@^2.8.8 fetched in 835ms 977 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-split-export-declaration 1181ms (from cache) 978 silly pacote range manifest for @babel/helper-split-export-declaration@^7.14.5 fetched in 1184ms 979 http fetch GET 200 https://registry.npmjs.org/follow-redirects 1798ms 980 http fetch GET 304 https://registry.npmjs.org/accepts 211ms (from cache) 981 silly pacote range manifest for accepts@~1.3.4 fetched in 212ms 982 http fetch GET 304 https://registry.npmjs.org/base64id 433ms (from cache) 983 silly pacote range manifest for base64id@~2.0.0 fetched in 435ms 984 silly pacote range manifest for debug@~4.3.1 fetched in 0ms 985 http fetch GET 200 https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.2.tgz 577ms 986 silly pacote range manifest for follow-redirects@^1.0.0 fetched in 2380ms 987 http fetch GET 200 https://registry.npmjs.org/@types%2fcookie 2071ms 988 silly pacote range manifest for @types/cookie@^0.4.0 fetched in 2073ms 989 http fetch GET 304 https://registry.npmjs.org/engine.io 355ms (from cache) 990 silly pacote range manifest for engine.io@~4.1.0 fetched in 358ms 991 http fetch GET 304 https://registry.npmjs.org/socket.io-parser 428ms (from cache) 992 silly pacote range manifest for socket.io-parser@~4.0.3 fetched in 431ms 993 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-function-name 972ms (from cache) 994 silly pacote range manifest for @babel/helper-function-name@^7.14.5 fetched in 974ms 995 http fetch GET 304 https://registry.npmjs.org/socket.io-adapter 1691ms (from cache) 996 silly pacote range manifest for socket.io-adapter@~2.1.0 fetched in 1693ms 997 http fetch GET 200 https://registry.npmjs.org/ms 1572ms 998 silly pacote version manifest for [email protected] fetched in 1574ms 999 silly pacote range manifest for minimist@^1.2.5 fetched in 1ms 1000 silly pacote range manifest for @babel/helper-annotate-as-pure@^7.14.5 fetched in 1ms 1001 http fetch GET 200 https://registry.npmjs.org/ws 5869ms 1002 silly pacote range manifest for ws@^6.2.1 fetched in 5872ms 1003 silly pacote range manifest for @babel/compat-data@^7.13.11 fetched in 1ms 1004 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-hoist-variables 484ms (from cache) 1005 silly pacote range manifest for @babel/helper-hoist-variables@^7.14.5 fetched in 486ms 1006 silly pacote range manifest for semver@^6.1.1 fetched in 1ms 1007 silly pacote range manifest for core-js-compat@^3.14.0 fetched in 1ms 1008 http fetch GET 304 https://registry.npmjs.org/globals 395ms (from cache) 1009 silly pacote range manifest for globals@^11.1.0 fetched in 398ms 1010 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-wrap-function 318ms (from cache) 1011 silly pacote range manifest for @babel/helper-wrap-function@^7.14.5 fetched in 320ms 1012 silly pacote range manifest for @babel/helper-plugin-utils@^7.8.0 fetched in 1ms 1013 http fetch GET 200 https://registry.npmjs.org/electron-to-chromium 64129ms 1014 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-define-polyfill-provider 211ms (from cache) 1015 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-skip-transparent-expression-wrappers 162ms (from cache) 1016 silly pacote range manifest for @babel/helper-define-polyfill-provider@^0.2.2 fetched in 213ms 1017 silly pacote range manifest for @babel/helper-skip-transparent-expression-wrappers@^7.14.5 fetched in 167ms 1018 silly pacote range manifest for @babel/helper-plugin-utils@^7.12.13 fetched in 5ms 1019 silly pacote range manifest for @babel/helper-plugin-utils@^7.8.3 fetched in 1ms 1020 silly pacote range manifest for @babel/helper-plugin-utils@^7.10.4 fetched in 1ms 1021 silly pacote range manifest for @babel/helper-replace-supers@^7.14.5 fetched in 2ms 1022 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-create-class-features-plugin 131ms (from cache) 1023 silly pacote range manifest for @babel/helper-create-class-features-plugin@^7.14.5 fetched in 133ms 1024 silly pacote range manifest for @babel/helper-module-transforms@^7.14.5 fetched in 2ms 1025 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-create-regexp-features-plugin 84ms (from cache) 1026 silly pacote range manifest for @babel/helper-create-regexp-features-plugin@^7.14.5 fetched in 85ms 1027 silly pacote range manifest for @babel/helper-validator-identifier@^7.14.5 fetched in 1ms 1028 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-optimise-call-expression 106ms (from cache) 1029 silly pacote range manifest for @babel/helper-optimise-call-expression@^7.14.5 fetched in 108ms 1030 silly pacote range manifest for @babel/helper-plugin-utils@^7.0.0 fetched in 1ms 1031 silly pacote range manifest for @babel/plugin-proposal-unicode-property-regex@^7.4.4 fetched in 1ms 1032 silly pacote range manifest for @babel/plugin-transform-dotall-regex@^7.4.4 fetched in 1ms 1033 silly pacote range manifest for @babel/types@^7.4.4 fetched in 1ms 1034 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-builder-binary-assignment-operator-visitor 117ms (from cache) 1035 silly pacote range manifest for @babel/helper-builder-binary-assignment-operator-visitor@^7.14.5 fetched in 119ms 1036 silly pacote range manifest for json5@^1.0.1 fetched in 2ms 1037 silly pacote range manifest for ajv@^6.12.4 fetched in 2ms 1038 http fetch GET 304 https://registry.npmjs.org/regenerator-transform 130ms (from cache) 1039 silly pacote range manifest for regenerator-transform@^0.14.2 fetched in 132ms 1040 http fetch GET 200 https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.814.tgz 218ms 1041 silly pacote range manifest for electron-to-chromium@^1.3.811 fetched in 64358ms 1042 silly pacote range manifest for semver@^6.0.0 fetched in 2ms 1043 silly pacote range manifest for mkdirp@^1.0.4 fetched in 1ms 1044 silly pacote range manifest for minipass@^3.0.0 fetched in 1ms 1045 http fetch GET 304 https://registry.npmjs.org/esutils 99ms (from cache) 1046 silly pacote range manifest for esutils@^2.0.2 fetched in 100ms 1047 http fetch GET 304 https://registry.npmjs.org/ajv-keywords 93ms (from cache) 1048 silly pacote range manifest for ajv-keywords@^3.5.2 fetched in 95ms 1049 http fetch GET 304 https://registry.npmjs.org/yallist 96ms (from cache) 1050 silly pacote range manifest for yallist@^4.0.0 fetched in 97ms 1051 http fetch GET 200 https://registry.npmjs.org/@types%2feslint-scope 126ms 1052 http fetch GET 304 https://registry.npmjs.org/aggregate-error 135ms (from cache) 1053 silly pacote range manifest for @types/eslint-scope@^3.7.0 fetched in 127ms 1054 silly pacote range manifest for aggregate-error@^3.0.0 fetched in 138ms 1055 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2fast 223ms (from cache) 1056 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 226ms 1057 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2fwasm-edit 310ms (from cache) 1058 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 312ms 1059 http fetch GET 200 https://registry.npmjs.org/@types%2festree 922ms 1060 silly pacote range manifest for @types/estree@^0.0.50 fetched in 924ms 1061 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2fwasm-parser 728ms (from cache) 1062 http fetch GET 304 https://registry.npmjs.org/babel-plugin-dynamic-import-node 1276ms (from cache) 1063 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 730ms 1064 silly pacote range manifest for babel-plugin-dynamic-import-node@^2.3.3 fetched in 1278ms 1065 silly pacote range manifest for browserslist@^4.14.5 fetched in 2ms 1066 http fetch GET 304 https://registry.npmjs.org/acorn 686ms (from cache) 1067 silly pacote range manifest for acorn@^8.4.1 fetched in 689ms 1068 http fetch GET 200 https://registry.npmjs.org/@types%2fjson-schema 1258ms 1069 silly pacote range manifest for @types/json-schema@^7.0.5 fetched in 1260ms 1070 http fetch GET 304 https://registry.npmjs.org/acorn-import-assertions 237ms (from cache) 1071 silly pacote range manifest for acorn-import-assertions@^1.7.6 fetched in 238ms 1072 http fetch GET 304 https://registry.npmjs.org/chrome-trace-event 188ms (from cache) 1073 silly pacote range manifest for chrome-trace-event@^1.0.2 fetched in 189ms 1074 http fetch GET 304 https://registry.npmjs.org/enhanced-resolve 190ms (from cache) 1075 silly pacote range manifest for enhanced-resolve@^5.8.0 fetched in 194ms 1076 silly pacote range manifest for graceful-fs@^4.2.4 fetched in 1ms 1077 http fetch GET 304 https://registry.npmjs.org/es-module-lexer 154ms (from cache) 1078 silly pacote range manifest for es-module-lexer@^0.7.1 fetched in 155ms 1079 http fetch GET 304 https://registry.npmjs.org/eslint-scope 114ms (from cache) 1080 silly pacote version manifest for [email protected] fetched in 116ms 1081 silly pacote range manifest for mime-types@^2.1.27 fetched in 1ms 1082 silly pacote range manifest for schema-utils@^3.1.0 fetched in 1ms 1083 http fetch GET 304 https://registry.npmjs.org/events 93ms (from cache) 1084 silly pacote range manifest for events@^3.2.0 fetched in 94ms 1085 silly pacote range manifest for terser-webpack-plugin@^5.1.3 fetched in 2ms 1086 http fetch GET 304 https://registry.npmjs.org/json-parse-better-errors 82ms (from cache) 1087 http fetch GET 304 https://registry.npmjs.org/glob-to-regexp 89ms (from cache) 1088 silly pacote range manifest for glob-to-regexp@^0.4.1 fetched in 90ms 1089 silly pacote range manifest for json-parse-better-errors@^1.0.2 fetched in 84ms 1090 silly pacote range manifest for webpack-sources@^3.2.0 fetched in 3ms 1091 http fetch GET 304 https://registry.npmjs.org/loader-runner 113ms (from cache) 1092 silly pacote range manifest for loader-runner@^4.2.0 fetched in 114ms 1093 http fetch GET 304 https://registry.npmjs.org/tapable 84ms (from cache) 1094 silly pacote range manifest for tapable@^2.1.1 fetched in 86ms 1095 silly pacote range manifest for glob-parent@^5.1.2 fetched in 1ms 1096 http fetch GET 304 https://registry.npmjs.org/watchpack 87ms (from cache) 1097 silly pacote range manifest for watchpack@^2.2.0 fetched in 89ms 1098 http fetch GET 304 https://registry.npmjs.org/@nodelib%2ffs.stat 121ms (from cache) 1099 silly pacote range manifest for @nodelib/fs.stat@^2.0.2 fetched in 123ms 1100 silly pacote range manifest for is-glob@^4.0.1 fetched in 1ms 1101 http fetch GET 304 https://registry.npmjs.org/merge2 90ms (from cache) 1102 silly pacote range manifest for merge2@^1.3.0 fetched in 92ms 1103 http fetch GET 304 https://registry.npmjs.org/micromatch 89ms (from cache) 1104 silly pacote range manifest for micromatch@^4.0.4 fetched in 92ms 1105 silly pacote range manifest for fast-glob@^3.1.1 fetched in 1ms 1106 http fetch GET 304 https://registry.npmjs.org/@nodelib%2ffs.walk 140ms (from cache) 1107 silly pacote range manifest for @nodelib/fs.walk@^1.2.3 fetched in 142ms 1108 http fetch GET 304 https://registry.npmjs.org/array-union 96ms (from cache) 1109 http fetch GET 304 https://registry.npmjs.org/dir-glob 86ms (from cache) 1110 silly pacote range manifest for array-union@^2.1.0 fetched in 99ms 1111 silly pacote range manifest for dir-glob@^3.0.1 fetched in 88ms 1112 silly pacote range manifest for @types/json-schema@^7.0.8 fetched in 0ms 1113 silly pacote range manifest for ajv@^6.12.5 fetched in 3ms 1114 http fetch GET 304 https://registry.npmjs.org/ignore 101ms (from cache) 1115 silly pacote range manifest for ignore@^5.1.4 fetched in 104ms 1116 http fetch GET 304 https://registry.npmjs.org/unique-slug 278ms (from cache) 1117 silly pacote range manifest for unique-slug@^2.0.0 fetched in 279ms 1118 http fetch GET 304 https://registry.npmjs.org/slash 127ms (from cache) 1119 silly pacote range manifest for slash@^3.0.0 fetched in 128ms 1120 silly pacote range manifest for inherits@^2.0.4 fetched in 1ms 1121 http fetch GET 304 https://registry.npmjs.org/yocto-queue 81ms (from cache) 1122 silly pacote range manifest for yocto-queue@^0.1.0 fetched in 83ms 1123 silly pacote range manifest for icss-utils@^5.0.0 fetched in 1ms 1124 http fetch GET 304 https://registry.npmjs.org/randombytes 88ms (from cache) 1125 silly pacote range manifest for randombytes@^2.1.0 fetched in 90ms 1126 http fetch GET 304 https://registry.npmjs.org/minizlib 91ms (from cache) 1127 silly pacote range manifest for minizlib@^2.1.1 fetched in 92ms 1128 http fetch GET 304 https://registry.npmjs.org/ansi-styles 95ms (from cache) 1129 silly pacote range manifest for ansi-styles@^4.1.0 fetched in 97ms 1130 http fetch GET 304 https://registry.npmjs.org/source-map-resolve 79ms (from cache) 1131 silly pacote range manifest for source-map-resolve@^0.6.0 fetched in 82ms 1132 silly pacote range manifest for supports-color@^8.0.0 fetched in 1ms 1133 http fetch GET 304 https://registry.npmjs.org/postcss-selector-parser 88ms (from cache) 1134 silly pacote range manifest for postcss-selector-parser@^6.0.2 fetched in 90ms 1135 http fetch GET 304 https://registry.npmjs.org/postcss-selector-parser 115ms (from cache) 1136 silly pacote range manifest for postcss-selector-parser@^6.0.4 fetched in 116ms 1137 http fetch GET 304 https://registry.npmjs.org/merge-stream 83ms (from cache) 1138 silly pacote range manifest for merge-stream@^2.0.0 fetched in 85ms 1139 http fetch GET 304 https://registry.npmjs.org/is-resolvable 95ms (from cache) 1140 silly pacote range manifest for is-resolvable@^1.1.0 fetched in 97ms 1141 http fetch GET 304 https://registry.npmjs.org/lilconfig 113ms (from cache) 1142 silly pacote range manifest for lilconfig@^2.0.3 fetched in 115ms 1143 silly pacote range manifest for semver@^7.3.4 fetched in 2ms 1144 http fetch GET 304 https://registry.npmjs.org/yaml 96ms (from cache) 1145 silly pacote range manifest for yaml@^1.10.2 fetched in 99ms 1146 http fetch GET 304 https://registry.npmjs.org/hosted-git-info 101ms (from cache) 1147 silly pacote range manifest for hosted-git-info@^4.0.1 fetched in 103ms 1148 http fetch GET 304 https://registry.npmjs.org/npm-install-checks 115ms (from cache) 1149 silly pacote range manifest for npm-install-checks@^4.0.0 fetched in 117ms 1150 silly pacote range manifest for npm-package-arg@^8.1.2 fetched in 2ms 1151 http fetch GET 304 https://registry.npmjs.org/validate-npm-package-name 143ms (from cache) 1152 silly pacote range manifest for validate-npm-package-name@^3.0.0 fetched in 145ms 1153 http fetch GET 304 https://registry.npmjs.org/npm-normalize-package-bin 98ms (from cache) 1154 silly pacote range manifest for npm-normalize-package-bin@^1.0.1 fetched in 101ms 1155 http fetch GET 304 https://registry.npmjs.org/@npmcli%2fpromise-spawn 2220ms (from cache) 1156 silly pacote range manifest for @npmcli/promise-spawn@^1.2.0 fetched in 2222ms 1157 http fetch GET 304 https://registry.npmjs.org/@npmcli%2finstalled-package-contents 2228ms (from cache) 1158 http fetch GET 304 https://registry.npmjs.org/@npmcli%2fgit 2247ms (from cache) 1159 silly pacote range manifest for @npmcli/git@^2.1.0 fetched in 2249ms 1160 silly pacote range manifest for @npmcli/installed-package-contents@^1.0.6 fetched in 2230ms 1161 silly pacote range manifest for fs-minipass@^2.1.0 fetched in 1ms 1162 silly pacote range manifest for cacache@^15.0.5 fetched in 2ms 1163 silly pacote range manifest for minipass@^3.1.3 fetched in 2ms 1164 silly pacote range manifest for npm-package-arg@^8.0.1 fetched in 2ms 1165 silly pacote range manifest for npm-pick-manifest@^6.0.0 fetched in 1ms 1166 http fetch GET 304 https://registry.npmjs.org/npm-registry-fetch 1390ms (from cache) 1167 silly pacote range manifest for npm-registry-fetch@^11.0.0 fetched in 1392ms 1168 http fetch GET 304 https://registry.npmjs.org/@npmcli%2frun-script 1424ms (from cache) 1169 silly pacote range manifest for @npmcli/run-script@^1.8.2 fetched in 1426ms 1170 http fetch GET 304 https://registry.npmjs.org/promise-retry 350ms (from cache) 1171 silly pacote range manifest for promise-retry@^2.0.1 fetched in 352ms 1172 silly pacote range manifest for tar@^6.1.0 fetched in 1ms 1173 http fetch GET 304 https://registry.npmjs.org/read-package-json-fast 351ms (from cache) 1174 silly pacote range manifest for read-package-json-fast@^2.0.1 fetched in 352ms 1175 http fetch GET 304 https://registry.npmjs.org/path-parse 208ms (from cache) 1176 silly pacote range manifest for path-parse@^1.0.6 fetched in 209ms 1177 http fetch GET 304 https://registry.npmjs.org/find-up 265ms (from cache) 1178 silly pacote range manifest for find-up@^4.0.0 fetched in 267ms 1179 http fetch GET 304 https://registry.npmjs.org/wrappy 2144ms (from cache) 1180 silly pacote range manifest for wrappy@1 fetched in 2145ms 1181 http fetch GET 200 https://registry.npmjs.org/is-core-module 3159ms 1182 http fetch GET 200 https://registry.npmjs.org/npm-packlist 5409ms 1183 silly pacote range manifest for npm-packlist@^2.1.4 fetched in 5412ms 1184 http fetch GET 304 https://registry.npmjs.org/restore-cursor 764ms (from cache) 1185 silly pacote range manifest for restore-cursor@^3.1.0 fetched in 765ms 1186 http fetch GET 200 https://registry.npmjs.org/cssnano-preset-default 9824ms 1187 http fetch GET 304 https://registry.npmjs.org/chardet 1248ms (from cache) 1188 silly pacote range manifest for chardet@^0.7.0 fetched in 1251ms 1189 silly pacote range manifest for iconv-lite@^0.4.24 fetched in 3ms 1190 silly pacote range manifest for tmp@^0.0.33 fetched in 2ms 1191 http fetch GET 200 https://registry.npmjs.org/is-core-module/-/is-core-module-2.6.0.tgz 2615ms 1192 silly pacote range manifest for is-core-module@^2.2.0 fetched in 5779ms 1193 silly pacote range manifest for tslib@~2.1.0 fetched in 1ms 1194 http fetch GET 200 https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.1.4.tgz 599ms 1195 silly pacote range manifest for cssnano-preset-default@^5.1.4 fetched in 10428ms 1196 http fetch GET 304 https://registry.npmjs.org/escape-string-regexp 632ms (from cache) 1197 silly pacote range manifest for escape-string-regexp@^1.0.5 fetched in 634ms 1198 http fetch GET 304 https://registry.npmjs.org/emoji-regex 693ms (from cache) 1199 silly pacote range manifest for emoji-regex@^8.0.0 fetched in 695ms 1200 http fetch GET 304 https://registry.npmjs.org/is-fullwidth-code-point 399ms (from cache) 1201 silly pacote range manifest for is-fullwidth-code-point@^3.0.0 fetched in 401ms 1202 http fetch GET 304 https://registry.npmjs.org/ansi-regex 260ms (from cache) 1203 silly pacote range manifest for ansi-regex@^5.0.0 fetched in 262ms 1204 http fetch GET 304 https://registry.npmjs.org/prr 199ms (from cache) 1205 silly pacote range manifest for prr@~1.0.1 fetched in 201ms 1206 silly pacote range manifest for semver@^5.6.0 fetched in 2ms 1207 silly pacote range manifest for debug@^3.2.6 fetched in 2ms 1208 silly pacote range manifest for iconv-lite@^0.4.4 fetched in 1ms 1209 silly pacote range manifest for sax@^1.2.4 fetched in 2ms 1210 http fetch GET 304 https://registry.npmjs.org/pify 196ms (from cache) 1211 silly pacote range manifest for pify@^4.0.1 fetched in 198ms 1212 http fetch GET 304 https://registry.npmjs.org/balanced-match 218ms (from cache) 1213 silly pacote range manifest for balanced-match@^1.0.0 fetched in 220ms 1214 silly pacote range manifest for browserslist@^4.16.7 fetched in 1ms 1215 silly pacote version manifest for [email protected] fetched in 3ms 1216 silly pacote range manifest for is-docker@^2.0.0 fetched in 1ms 1217 http fetch GET 304 https://registry.npmjs.org/concat-map 257ms (from cache) 1218 silly pacote version manifest for [email protected] fetched in 259ms 1219 http fetch GET 304 https://registry.npmjs.org/buffer 383ms (from cache) 1220 silly pacote range manifest for buffer@^5.5.0 fetched in 385ms 1221 http fetch GET 304 https://registry.npmjs.org/readable-stream 347ms (from cache) 1222 silly pacote range manifest for readable-stream@^3.4.0 fetched in 349ms 1223 http fetch GET 200 https://registry.npmjs.org/type-fest 4839ms 1224 silly pacote range manifest for type-fest@^0.21.3 fetched in 4841ms 1225 http fetch GET 304 https://registry.npmjs.org/is-what 1294ms (from cache) 1226 silly pacote range manifest for is-what@^3.12.0 fetched in 1296ms 1227 http fetch GET 304 https://registry.npmjs.org/defaults 879ms (from cache) 1228 silly pacote range manifest for defaults@^1.0.3 fetched in 880ms 1229 silly pacote range manifest for pify@^2.3.0 fetched in 2ms 1230 silly pacote range manifest for postcss@^7.0.5 fetched in 1ms 1231 http fetch GET 304 https://registry.npmjs.org/base64-js 1052ms (from cache) 1232 silly pacote range manifest for base64-js@^1.2.0 fetched in 1054ms 1233 http fetch GET 304 https://registry.npmjs.org/node-gyp-build 1665ms (from cache) 1234 silly pacote range manifest for node-gyp-build@^4.2.2 fetched in 1667ms 1235 silly pacote range manifest for postcss@^7.0.6 fetched in 2ms 1236 silly pacote range manifest for postcss-selector-parser@^5.0.0-rc.4 fetched in 2ms 1237 silly pacote range manifest for chalk@^2.4.2 fetched in 2ms 1238 silly pacote range manifest for postcss@^7.0.2 fetched in 2ms 1239 http fetch GET 304 https://registry.npmjs.org/@assemblyscript%2floader 2858ms (from cache) 1240 silly pacote range manifest for @assemblyscript/loader@^0.10.1 fetched in 2862ms 1241 http fetch GET 304 https://registry.npmjs.org/pako 2555ms (from cache) 1242 silly pacote range manifest for pako@^1.0.3 fetched in 2558ms 1243 silly pacote range manifest for postcss@^7.0.14 fetched in 2ms 1244 http fetch GET 304 https://registry.npmjs.org/node-addon-api 2097ms (from cache) 1245 silly pacote range manifest for node-addon-api@^3.0.0 fetched in 2100ms 1246 silly pacote range manifest for postcss-selector-parser@^5.0.0-rc.3 fetched in 1ms 1247 http fetch GET 304 https://registry.npmjs.org/postcss-values-parser 143ms (from cache) 1248 silly pacote range manifest for postcss-values-parser@^2.0.0 fetched in 146ms 1249 http fetch GET 304 https://registry.npmjs.org/postcss-values-parser 112ms (from cache) 1250 silly pacote range manifest for postcss-values-parser@^2.0.1 fetched in 113ms 1251 http fetch GET 304 https://registry.npmjs.org/@csstools%2fconvert-colors 212ms (from cache) 1252 silly pacote range manifest for @csstools/convert-colors@^1.4.0 fetched in 213ms 1253 http fetch GET 304 https://registry.npmjs.org/import-fresh 114ms (from cache) 1254 silly pacote range manifest for import-fresh@^3.2.1 fetched in 116ms 1255 silly pacote range manifest for yaml@^1.10.0 fetched in 1ms 1256 http fetch GET 200 https://registry.npmjs.org/@types%2fparse-json 191ms 1257 silly pacote range manifest for @types/parse-json@^4.0.0 fetched in 193ms 1258 silly pacote range manifest for safer-buffer@&gt;= 2.1.2 &lt; 3.0.0 fetched in 1ms 1259 silly pacote version manifest for [email protected] fetched in 1ms 1260 http fetch GET 304 https://registry.npmjs.org/parse-json 95ms (from cache) 1261 silly pacote range manifest for parse-json@^5.0.0 fetched in 97ms 1262 silly pacote range manifest for source-map@~0.6.1 fetched in 2ms 1263 silly pacote range manifest for css@^2.0.0 fetched in 2ms 1264 http fetch GET 304 https://registry.npmjs.org/path-type 98ms (from cache) 1265 silly pacote range manifest for path-type@^4.0.0 fetched in 99ms 1266 http fetch GET 304 https://registry.npmjs.org/regex-parser 109ms (from cache) 1267 silly pacote range manifest for regex-parser@^2.2.11 fetched in 111ms 1268 http fetch GET 304 https://registry.npmjs.org/source-list-map 100ms (from cache) 1269 silly pacote range manifest for source-list-map@^2.0.0 fetched in 102ms 1270 http fetch GET 304 https://registry.npmjs.org/mime-db 108ms (from cache) 1271 silly pacote version manifest for [email protected] fetched in 110ms 1272 http fetch GET 200 https://registry.npmjs.org/@types%2fsource-list-map 170ms 1273 silly pacote range manifest for @types/source-list-map@* fetched in 172ms 1274 http fetch GET 304 https://registry.npmjs.org/is-plain-object 136ms (from cache) 1275 silly pacote range manifest for is-plain-object@^2.0.4 fetched in 138ms 1276 http fetch GET 304 https://registry.npmjs.org/kind-of 87ms (from cache) 1277 silly pacote range manifest for kind-of@^6.0.2 fetched in 89ms 1278 http fetch GET 304 https://registry.npmjs.org/shallow-clone 81ms (from cache) 1279 silly pacote range manifest for shallow-clone@^3.0.0 fetched in 83ms 1280 http fetch GET 304 https://registry.npmjs.org/has-flag 109ms (from cache) 1281 silly pacote range manifest for has-flag@^4.0.0 fetched in 111ms 1282 http fetch GET 304 https://registry.npmjs.org/mimic-fn 97ms (from cache) 1283 silly pacote range manifest for mimic-fn@^3.1.0 fetched in 99ms 1284 http fetch GET 304 https://registry.npmjs.org/map-age-cleaner 130ms (from cache) 1285 silly pacote range manifest for map-age-cleaner@^0.1.3 fetched in 131ms 1286 http fetch GET 304 https://registry.npmjs.org/picomatch 111ms (from cache) 1287 silly pacote range manifest for picomatch@^2.0.4 fetched in 114ms 1288 silly pacote range manifest for picomatch@^2.2.1 fetched in 3ms 1289 http fetch GET 304 https://registry.npmjs.org/is-extglob 118ms (from cache) 1290 silly pacote range manifest for is-extglob@^2.1.1 fetched in 120ms 1291 silly pacote range manifest for safer-buffer@&gt;= 2.1.2 &lt; 3 fetched in 1ms 1292 http fetch GET 304 https://registry.npmjs.org/binary-extensions 186ms (from cache) 1293 silly pacote range manifest for binary-extensions@^2.0.0 fetched in 188ms 1294 silly pacote version manifest for [email protected] fetched in 2ms 1295 http fetch GET 200 https://registry.npmjs.org/@types%2fnode 20381ms 1296 http fetch GET 304 https://registry.npmjs.org/wrap-ansi 141ms (from cache) 1297 silly pacote range manifest for wrap-ansi@^7.0.0 fetched in 143ms 1298 http fetch GET 304 https://registry.npmjs.org/ee-first 111ms (from cache) 1299 silly pacote version manifest for [email protected] fetched in 112ms 1300 http fetch GET 304 https://registry.npmjs.org/setprototypeof 95ms (from cache) 1301 silly pacote version manifest for [email protected] fetched in 97ms 1302 http fetch GET 304 https://registry.npmjs.org/statuses 91ms (from cache) 1303 silly pacote range manifest for statuses@&gt;= 1.5.0 &lt; 2 fetched in 94ms 1304 http fetch GET 304 https://registry.npmjs.org/toidentifier 109ms (from cache) 1305 silly pacote version manifest for [email protected] fetched in 110ms 1306 http fetch GET 304 https://registry.npmjs.org/unpipe 137ms (from cache) 1307 silly pacote version manifest for [email protected] fetched in 139ms 1308 http fetch GET 304 https://registry.npmjs.org/encodeurl 88ms (from cache) 1309 silly pacote range manifest for encodeurl@~1.0.2 fetched in 90ms 1310 silly pacote range manifest for statuses@~1.5.0 fetched in 1ms 1311 silly pacote range manifest for unpipe@~1.0.0 fetched in 4ms 1312 http fetch GET 304 https://registry.npmjs.org/to-regex-range 122ms (from cache) 1313 silly pacote range manifest for to-regex-range@^5.0.1 fetched in 124ms 1314 silly pacote range manifest for mime-types@~2.1.24 fetched in 1ms 1315 silly pacote range manifest for anymatch@^2.0.0 fetched in 2ms 1316 http fetch GET 304 https://registry.npmjs.org/fs-monkey 862ms (from cache) 1317 silly pacote version manifest for [email protected] fetched in 864ms 1318 silly pacote range manifest for braces@^2.3.2 fetched in 2ms 1319 silly pacote range manifest for glob-parent@^3.1.0 fetched in 2ms 1320 silly pacote range manifest for inherits@^2.0.3 fetched in 1ms 1321 silly pacote range manifest for is-binary-path@^1.0.0 fetched in 2ms 1322 silly pacote range manifest for is-glob@^4.0.0 fetched in 1ms 1323 silly pacote range manifest for readdirp@^2.2.1 fetched in 2ms 1324 http fetch GET 304 https://registry.npmjs.org/escape-html 111ms (from cache) 1325 silly pacote range manifest for escape-html@~1.0.3 fetched in 113ms 1326 silly pacote range manifest for fsevents@^1.2.7 fetched in 2ms 1327 warn deprecated [email protected]: fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2. 1328 http fetch GET 304 https://registry.npmjs.org/media-typer 103ms (from cache) 1329 silly pacote version manifest for [email protected] fetched in 105ms 1330 http fetch GET 304 https://registry.npmjs.org/async-each 97ms (from cache) 1331 silly pacote range manifest for async-each@^1.0.1 fetched in 99ms 1332 http fetch GET 304 https://registry.npmjs.org/upath 112ms (from cache) 1333 http fetch GET 304 https://registry.npmjs.org/deep-equal 85ms (from cache) 1334 silly pacote range manifest for deep-equal@^1.0.1 fetched in 87ms 1335 silly pacote range manifest for upath@^1.1.1 fetched in 115ms 1336 http fetch GET 304 https://registry.npmjs.org/array-flatten 116ms (from cache) 1337 silly pacote range manifest for array-flatten@^2.1.0 fetched in 118ms 1338 http fetch GET 304 https://registry.npmjs.org/dns-equal 108ms (from cache) 1339 silly pacote range manifest for dns-equal@^1.0.0 fetched in 110ms 1340 silly pacote range manifest for accepts@~1.3.5 fetched in 1ms 1341 silly pacote version manifest for [email protected] fetched in 2ms 1342 http fetch GET 304 https://registry.npmjs.org/multicast-dns 94ms (from cache) 1343 silly pacote range manifest for multicast-dns@^6.0.1 fetched in 96ms 1344 http fetch GET 304 https://registry.npmjs.org/multicast-dns-service-types 113ms (from cache) 1345 http fetch GET 304 https://registry.npmjs.org/dns-txt 124ms (from cache) 1346 silly pacote range manifest for multicast-dns-service-types@^1.1.0 fetched in 115ms 1347 silly pacote range manifest for dns-txt@^2.0.2 fetched in 126ms 1348 silly pacote version manifest for [email protected] fetched in 2ms 1349 http fetch GET 304 https://registry.npmjs.org/compressible 105ms (from cache) 1350 silly pacote range manifest for compressible@~2.0.16 fetched in 106ms 1351 silly pacote range manifest for globby@^6.1.0 fetched in 4ms 1352 http fetch GET 304 https://registry.npmjs.org/on-headers 95ms (from cache) 1353 silly pacote range manifest for on-headers@~1.0.2 fetched in 97ms 1354 http fetch GET 304 https://registry.npmjs.org/vary 117ms (from cache) 1355 silly pacote range manifest for vary@~1.1.2 fetched in 119ms 1356 silly pacote range manifest for p-map@^2.0.0 fetched in 1ms 1357 silly pacote range manifest for rimraf@^2.6.3 fetched in 2ms 1358 silly pacote range manifest for accepts@~1.3.7 fetched in 1ms 1359 silly pacote version manifest for [email protected] fetched in 1ms 1360 silly pacote version manifest for [email protected] fetched in 2ms 1361 http fetch GET 304 https://registry.npmjs.org/is-path-cwd 128ms (from cache) 1362 silly pacote range manifest for is-path-cwd@^2.0.0 fetched in 129ms 1363 http fetch GET 304 https://registry.npmjs.org/is-path-in-cwd 97ms (from cache) 1364 silly pacote range manifest for is-path-in-cwd@^2.0.0 fetched in 98ms 1365 http fetch GET 304 https://registry.npmjs.org/content-disposition 124ms (from cache) 1366 silly pacote version manifest for [email protected] fetched in 125ms 1367 http fetch GET 304 https://registry.npmjs.org/cookie-signature 107ms (from cache) 1368 silly pacote version manifest for [email protected] fetched in 109ms 1369 silly pacote range manifest for finalhandler@~1.1.2 fetched in 1ms 1370 http fetch GET 304 https://registry.npmjs.org/cookie 144ms (from cache) 1371 silly pacote version manifest for [email protected] fetched in 145ms 1372 http fetch GET 304 https://registry.npmjs.org/etag 112ms (from cache) 1373 silly pacote range manifest for etag@~1.8.1 fetched in 113ms 1374 http fetch GET 304 https://registry.npmjs.org/fresh 130ms (from cache) 1375 silly pacote version manifest for [email protected] fetched in 132ms 1376 http fetch GET 304 https://registry.npmjs.org/merge-descriptors 157ms (from cache) 1377 silly pacote version manifest for [email protected] fetched in 159ms 1378 http fetch GET 304 https://registry.npmjs.org/methods 124ms (from cache) 1379 silly pacote range manifest for methods@~1.1.2 fetched in 127ms 1380 silly pacote range manifest for range-parser@~1.2.1 fetched in 1ms 1381 http fetch GET 304 https://registry.npmjs.org/path-to-regexp 150ms (from cache) 1382 silly pacote version manifest for [email protected] fetched in 151ms 1383 http fetch GET 304 https://registry.npmjs.org/proxy-addr 139ms (from cache) 1384 silly pacote range manifest for proxy-addr@~2.0.5 fetched in 141ms 1385 silly pacote range manifest for type-is@~1.6.18 fetched in 1ms 1386 silly pacote range manifest for http-proxy@^1.17.0 fetched in 1ms 1387 silly pacote range manifest for lodash@^4.17.11 fetched in 1ms 1388 silly pacote range manifest for micromatch@^3.1.10 fetched in 2ms 1389 silly pacote range manifest for pkg-dir@^3.0.0 fetched in 2ms 1390 http fetch GET 304 https://registry.npmjs.org/send 130ms (from cache) 1391 silly pacote version manifest for [email protected] fetched in 132ms 1392 http fetch GET 304 https://registry.npmjs.org/serve-static 130ms (from cache) 1393 silly pacote version manifest for [email protected] fetched in 132ms 1394 http fetch GET 200 https://registry.npmjs.org/@types%2fglob 715ms 1395 silly pacote range manifest for @types/glob@^7.1.1 fetched in 717ms 1396 silly pacote range manifest for ajv@^6.1.0 fetched in 2ms 1397 http fetch GET 304 https://registry.npmjs.org/resolve-cwd 128ms (from cache) 1398 silly pacote range manifest for resolve-cwd@^2.0.0 fetched in 129ms 1399 silly pacote range manifest for ajv-keywords@^3.1.0 fetched in 1ms 1400 http fetch GET 304 https://registry.npmjs.org/default-gateway 136ms (from cache) 1401 silly pacote range manifest for default-gateway@^4.2.0 fetched in 138ms 1402 silly pacote range manifest for is-wsl@^1.1.0 fetched in 2ms 1403 http fetch GET 200 https://registry.npmjs.org/@ngtools%2fwebpack 174692ms 1404 http fetch GET 304 https://registry.npmjs.org/ipaddr.js 113ms (from cache) 1405 silly pacote range manifest for ipaddr.js@^1.9.0 fetched in 115ms 1406 silly pacote range manifest for debug@^3.1.1 fetched in 2ms 1407 silly pacote range manifest for mkdirp@^0.5.5 fetched in 1ms 1408 http fetch GET 304 https://registry.npmjs.org/ajv-errors 144ms (from cache) 1409 http fetch GET 304 https://registry.npmjs.org/retry 136ms (from cache) 1410 silly pacote range manifest for retry@^0.12.0 fetched in 137ms 1411 silly pacote range manifest for ajv-errors@^1.0.0 fetched in 148ms 1412 silly pacote range manifest for uuid@^3.4.0 fetched in 3ms 1413 warn deprecated [email protected]: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. 1414 http fetch GET 304 https://registry.npmjs.org/async 117ms (from cache) 1415 silly pacote range manifest for async@^2.6.2 fetched in 122ms 1416 http fetch GET 304 https://registry.npmjs.org/faye-websocket 94ms (from cache) 1417 silly pacote range manifest for faye-websocket@^0.11.3 fetched in 96ms 1418 silly pacote range manifest for http-errors@~1.6.2 fetched in 2ms 1419 silly pacote range manifest for mime-types@~2.1.17 fetched in 1ms 1420 silly pacote range manifest for parseurl@~1.3.2 fetched in 1ms 1421 silly pacote range manifest for ansi-regex@^2.0.0 fetched in 1ms 1422 silly pacote range manifest for has-flag@^3.0.0 fetched in 1ms 1423 http fetch GET 304 https://registry.npmjs.org/websocket-driver 112ms (from cache) 1424 silly pacote range manifest for websocket-driver@^0.7.4 fetched in 113ms 1425 silly pacote range manifest for mime@^2.4.4 fetched in 1ms 1426 silly pacote range manifest for mkdirp@^0.5.1 fetched in 1ms 1427 http fetch GET 304 https://registry.npmjs.org/batch 145ms (from cache) 1428 silly pacote version manifest for [email protected] fetched in 147ms 1429 http fetch GET 304 https://registry.npmjs.org/memory-fs 104ms (from cache) 1430 silly pacote range manifest for memory-fs@^0.4.1 fetched in 105ms 1431 http fetch GET 304 https://registry.npmjs.org/eventsource 120ms (from cache) 1432 silly pacote range manifest for eventsource@^1.0.7 fetched in 122ms 1433 http fetch GET 304 https://registry.npmjs.org/url-parse 134ms (from cache) 1434 silly pacote range manifest for url-parse@^1.5.1 fetched in 136ms 1435 http fetch GET 304 https://registry.npmjs.org/json3 237ms (from cache) 1436 silly pacote range manifest for json3@^3.3.3 fetched in 238ms 1437 http fetch GET 304 https://registry.npmjs.org/node-forge 517ms (from cache) 1438 http fetch GET 304 https://registry.npmjs.org/handle-thing 220ms (from cache) 1439 silly pacote range manifest for node-forge@^0.10.0 fetched in 520ms 1440 silly pacote range manifest for handle-thing@^2.0.0 fetched in 223ms 1441 silly pacote range manifest for cliui@^5.0.0 fetched in 1ms 1442 silly pacote range manifest for find-up@^3.0.0 fetched in 2ms 1443 silly pacote range manifest for get-caller-file@^2.0.1 fetched in 1ms 1444 http fetch GET 304 https://registry.npmjs.org/http-deceiver 812ms (from cache) 1445 silly pacote range manifest for http-deceiver@^1.2.7 fetched in 814ms 1446 http fetch GET 304 https://registry.npmjs.org/select-hose 1069ms (from cache) 1447 silly pacote range manifest for select-hose@^2.0.0 fetched in 1071ms 1448 silly pacote range manifest for string-width@^3.0.0 fetched in 1ms 1449 http fetch GET 304 https://registry.npmjs.org/require-main-filename 1017ms (from cache) 1450 http fetch GET 304 https://registry.npmjs.org/spdy-transport 1023ms (from cache) 1451 silly pacote range manifest for require-main-filename@^2.0.0 fetched in 1019ms 1452 silly pacote range manifest for spdy-transport@^3.0.0 fetched in 1025ms 1453 silly pacote range manifest for y18n@^4.0.0 fetched in 2ms 1454 silly pacote range manifest for yargs-parser@^13.1.2 fetched in 2ms 1455 http fetch GET 304 https://registry.npmjs.org/set-blocking 497ms (from cache) 1456 silly pacote range manifest for set-blocking@^2.0.0 fetched in 499ms 1457 silly pacote range manifest for ansi-colors@^3.0.0 fetched in 2ms 1458 silly pacote range manifest for uuid@^3.3.2 fetched in 1ms 1459 silly pacote range manifest for chalk@^2.0.0 fetched in 1ms 1460 http fetch GET 304 https://registry.npmjs.org/which-module 326ms (from cache) 1461 silly pacote range manifest for which-module@^2.0.0 fetched in 328ms 1462 http fetch GET 304 https://registry.npmjs.org/punycode 325ms (from cache) 1463 http fetch GET 304 https://registry.npmjs.org/querystring 324ms (from cache) 1464 silly pacote version manifest for [email protected] fetched in 326ms 1465 silly pacote version manifest for [email protected] fetched in 326ms 1466 warn deprecated [email protected]: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. 1467 silly pacote range manifest for date-format@^2.1.0 fetched in 2ms 1468 silly pacote range manifest for punycode@^2.1.0 fetched in 2ms 1469 http fetch GET 304 https://registry.npmjs.org/js-tokens 359ms (from cache) 1470 silly pacote range manifest for js-tokens@^4.0.0 fetched in 361ms 1471 silly pacote version manifest for [email protected] fetched in 1ms 1472 silly pacote range manifest for cookie@~0.4.1 fetched in 2ms 1473 http fetch GET 304 https://registry.npmjs.org/fs-extra 686ms (from cache) 1474 silly pacote range manifest for fs-extra@^8.1.0 fetched in 689ms 1475 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-member-expression-to-functions 731ms (from cache) 1476 http fetch GET 304 https://registry.npmjs.org/negotiator 718ms (from cache) 1477 silly pacote range manifest for @babel/helper-member-expression-to-functions@^7.15.0 fetched in 733ms 1478 silly pacote version manifest for [email protected] fetched in 720ms 1479 silly pacote range manifest for ws@~7.4.2 fetched in 2ms 1480 http fetch GET 200 https://registry.npmjs.org/@ngtools/webpack/-/webpack-12.2.2.tgz 2961ms 1481 silly pacote version manifest for @ngtools/[email protected] fetched in 177660ms 1482 http fetch GET 304 https://registry.npmjs.org/engine.io-parser 518ms (from cache) 1483 silly pacote range manifest for engine.io-parser@~4.0.0 fetched in 520ms 1484 http fetch GET 304 https://registry.npmjs.org/component-emitter 498ms (from cache) 1485 silly pacote range manifest for component-emitter@~1.3.0 fetched in 499ms 1486 silly pacote range manifest for @babel/traverse@^7.14.5 fetched in 0ms 1487 silly pacote range manifest for @babel/helper-compilation-targets@^7.13.0 fetched in 2ms 1488 silly pacote range manifest for @babel/helper-module-imports@^7.12.13 fetched in 1ms 1489 silly pacote range manifest for @babel/helper-plugin-utils@^7.13.0 fetched in 0ms 1490 silly pacote range manifest for @babel/traverse@^7.13.0 fetched in 0ms 1491 http fetch GET 200 https://registry.npmjs.org/@types%2fcomponent-emitter 741ms 1492 silly pacote range manifest for @types/component-emitter@^1.2.10 fetched in 743ms 1493 silly pacote range manifest for resolve@^1.14.2 fetched in 1ms 1494 silly pacote range manifest for semver@^6.1.2 fetched in 1ms 1495 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-get-function-arity 432ms (from cache) 1496 silly pacote range manifest for @babel/helper-get-function-arity@^7.14.5 fetched in 434ms 1497 http fetch GET 304 https://registry.npmjs.org/async-limiter 338ms (from cache) 1498 silly pacote range manifest for async-limiter@~1.0.0 fetched in 340ms 1499 silly pacote range manifest for fast-json-stable-stringify@^2.0.0 fetched in 2ms 1500 silly pacote range manifest for json-schema-traverse@^0.4.1 fetched in 1ms 1501 silly pacote range manifest for @babel/runtime@^7.8.4 fetched in 1ms 1502 http fetch GET 304 https://registry.npmjs.org/lodash.debounce 388ms (from cache) 1503 silly pacote range manifest for lodash.debounce@^4.0.8 fetched in 392ms 1504 silly pacote range manifest for @types/estree@* fetched in 1ms 1505 http fetch GET 304 https://registry.npmjs.org/cors 1559ms (from cache) 1506 silly pacote range manifest for cors@~2.8.5 fetched in 1562ms 1507 http fetch GET 304 https://registry.npmjs.org/regexpu-core 350ms (from cache) 1508 silly pacote range manifest for regexpu-core@^4.7.1 fetched in 351ms 1509 http fetch GET 200 https://registry.npmjs.org/@types/node/-/node-16.7.1.tgz 5133ms 1510 silly pacote range manifest for @types/node@&gt;=10.0.0 fetched in 25526ms 1511 http fetch GET 304 https://registry.npmjs.org/@babel%2fhelper-explode-assignable-expression 404ms (from cache) 1512 silly pacote range manifest for @babel/helper-explode-assignable-expression@^7.14.5 fetched in 406ms 1513 http fetch GET 304 https://registry.npmjs.org/clean-stack 424ms (from cache) 1514 silly pacote range manifest for clean-stack@^2.0.0 fetched in 426ms 1515 http fetch GET 304 https://registry.npmjs.org/indent-string 345ms (from cache) 1516 silly pacote range manifest for indent-string@^4.0.0 fetched in 346ms 1517 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2fhelper-numbers 328ms (from cache) 1518 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 329ms 1519 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2fhelper-wasm-bytecode 317ms (from cache) 1520 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 319ms 1521 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2fhelper-buffer 319ms (from cache) 1522 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 321ms 1523 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2fhelper-wasm-section 334ms (from cache) 1524 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 336ms 1525 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2fwasm-gen 312ms (from cache) 1526 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 314ms 1527 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2fwasm-opt 286ms (from cache) 1528 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 287ms 1529 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2fhelper-api-error 211ms (from cache) 1530 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2fwast-printer 217ms (from cache) 1531 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 213ms 1532 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 219ms 1533 silly pacote range manifest for tapable@^2.2.0 fetched in 1ms 1534 http fetch GET 304 https://registry.npmjs.org/esrecurse 206ms (from cache) 1535 http fetch GET 304 https://registry.npmjs.org/object.assign 209ms (from cache) 1536 silly pacote range manifest for esrecurse@^4.3.0 fetched in 208ms 1537 silly pacote range manifest for object.assign@^4.1.0 fetched in 211ms 1538 silly pacote range manifest for braces@^3.0.1 fetched in 1ms 1539 silly pacote range manifest for picomatch@^2.2.3 fetched in 3ms 1540 http fetch GET 304 https://registry.npmjs.org/estraverse 156ms (from cache) 1541 silly pacote range manifest for estraverse@^4.1.1 fetched in 157ms 1542 http fetch GET 304 https://registry.npmjs.org/@nodelib%2ffs.scandir 167ms (from cache) 1543 silly pacote version manifest for @nodelib/[email protected] fetched in 169ms 1544 http fetch GET 304 https://registry.npmjs.org/imurmurhash 144ms (from cache) 1545 silly pacote range manifest for imurmurhash@^0.1.4 fetched in 145ms 1546 silly pacote range manifest for safe-buffer@^5.1.0 fetched in 2ms 1547 http fetch GET 304 https://registry.npmjs.org/color-convert 253ms (from cache) 1548 silly pacote range manifest for color-convert@^2.0.1 fetched in 255ms 1549 http fetch GET 200 https://registry.npmjs.org/fastq 534ms 1550 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2futf8 926ms (from cache) 1551 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 929ms 1552 http fetch GET 304 https://registry.npmjs.org/atob 182ms (from cache) 1553 silly pacote range manifest for atob@^2.1.2 fetched in 184ms 1554 http fetch GET 304 https://registry.npmjs.org/decode-uri-component 308ms (from cache) 1555 silly pacote range manifest for decode-uri-component@^0.2.0 fetched in 310ms 1556 http fetch GET 304 https://registry.npmjs.org/cssesc 329ms (from cache) 1557 silly pacote range manifest for cssesc@^3.0.0 fetched in 331ms 1558 silly pacote range manifest for semver@^7.1.1 fetched in 1ms 1559 http fetch GET 200 https://registry.npmjs.org/@types%2fnode 22512ms 1560 silly pacote range manifest for @types/node@* fetched in 22518ms 1561 silly pacote range manifest for @npmcli/promise-spawn@^1.3.2 fetched in 1ms 1562 silly pacote range manifest for npm-pick-manifest@^6.1.1 fetched in 1ms 1563 silly pacote range manifest for which@^2.0.2 fetched in 2ms 1564 http fetch GET 200 https://registry.npmjs.org/fastq/-/fastq-1.12.0.tgz 509ms 1565 http fetch GET 304 https://registry.npmjs.org/builtins 113ms (from cache) 1566 silly pacote range manifest for fastq@^1.6.0 fetched in 1050ms 1567 silly pacote range manifest for builtins@^1.0.3 fetched in 116ms 1568 http fetch GET 304 https://registry.npmjs.org/npm-bundled 96ms (from cache) 1569 silly pacote range manifest for npm-bundled@^1.1.1 fetched in 98ms 1570 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2fleb128 1559ms (from cache) 1571 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 1561ms 1572 silly pacote range manifest for minizlib@^2.0.0 fetched in 0ms 1573 silly pacote range manifest for npm-package-arg@^8.0.0 fetched in 1ms 1574 http fetch GET 304 https://registry.npmjs.org/minipass-json-stream 85ms (from cache) 1575 silly pacote range manifest for minipass-json-stream@^1.0.1 fetched in 87ms 1576 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2fieee754 1645ms (from cache) 1577 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 1646ms 1578 http fetch GET 304 https://registry.npmjs.org/@npmcli%2fnode-gyp 148ms (from cache) 1579 silly pacote range manifest for @npmcli/node-gyp@^1.0.2 fetched in 149ms 1580 http fetch GET 304 https://registry.npmjs.org/err-code 111ms (from cache) 1581 silly pacote range manifest for err-code@^2.0.2 fetched in 115ms 1582 http fetch GET 304 https://registry.npmjs.org/json-parse-even-better-errors 100ms (from cache) 1583 silly pacote range manifest for json-parse-even-better-errors@^2.3.0 fetched in 102ms 1584 http fetch GET 304 https://registry.npmjs.org/locate-path 99ms (from cache) 1585 silly pacote range manifest for locate-path@^5.0.0 fetched in 100ms 1586 http fetch GET 200 https://registry.npmjs.org/autoprefixer 50055ms 1587 silly pacote range manifest for autoprefixer@^9.6.1 fetched in 50057ms 1588 http fetch GET 304 https://registry.npmjs.org/path-exists 133ms (from cache) 1589 silly pacote range manifest for path-exists@^4.0.0 fetched in 134ms 1590 http fetch GET 304 https://registry.npmjs.org/onetime 413ms (from cache) 1591 silly pacote range manifest for onetime@^5.1.0 fetched in 415ms 1592 http fetch GET 304 https://registry.npmjs.org/signal-exit 418ms (from cache) 1593 silly pacote range manifest for signal-exit@^3.0.2 fetched in 420ms 1594 http fetch GET 304 https://registry.npmjs.org/util-deprecate 1207ms (from cache) 1595 silly pacote range manifest for util-deprecate@^1.0.2 fetched in 1209ms 1596 http fetch GET 200 https://registry.npmjs.org/node-gyp 931ms 1597 silly pacote range manifest for node-gyp@^7.1.0 fetched in 933ms 1598 http fetch GET 304 https://registry.npmjs.org/minipass-fetch 1161ms (from cache) 1599 silly pacote range manifest for minipass-fetch@^1.3.0 fetched in 1163ms 1600 http fetch GET 200 https://registry.npmjs.org/ignore-walk 813ms 1601 silly pacote range manifest for ignore-walk@^3.0.3 fetched in 816ms 1602 http fetch GET 304 https://registry.npmjs.org/os-tmpdir 295ms (from cache) 1603 http fetch GET 304 https://registry.npmjs.org/has 284ms (from cache) 1604 silly pacote range manifest for os-tmpdir@~1.0.2 fetched in 298ms 1605 silly pacote range manifest for has@^1.0.3 fetched in 287ms 1606 http fetch GET 304 https://registry.npmjs.org/css-declaration-sorter 212ms (from cache) 1607 http fetch GET 304 https://registry.npmjs.org/cssnano-utils 138ms (from cache) 1608 silly pacote range manifest for css-declaration-sorter@^6.0.3 fetched in 214ms 1609 silly pacote range manifest for cssnano-utils@^2.0.1 fetched in 140ms 1610 http fetch GET 304 https://registry.npmjs.org/postcss-calc 105ms (from cache) 1611 silly pacote range manifest for postcss-calc@^8.0.0 fetched in 106ms 1612 http fetch GET 304 https://registry.npmjs.org/postcss-convert-values 109ms (from cache) 1613 http fetch GET 304 https://registry.npmjs.org/postcss-colormin 132ms (from cache) 1614 http fetch GET 304 https://registry.npmjs.org/postcss-discard-comments 111ms (from cache) 1615 silly pacote range manifest for postcss-convert-values@^5.0.1 fetched in 113ms 1616 silly pacote range manifest for postcss-colormin@^5.2.0 fetched in 135ms 1617 silly pacote range manifest for postcss-discard-comments@^5.0.1 fetched in 116ms 1618 http fetch GET 304 https://registry.npmjs.org/postcss-discard-duplicates 110ms (from cache) 1619 silly pacote range manifest for postcss-discard-duplicates@^5.0.1 fetched in 112ms 1620 http fetch GET 304 https://registry.npmjs.org/postcss-discard-overridden 86ms (from cache) 1621 http fetch GET 304 https://registry.npmjs.org/postcss-discard-empty 134ms (from cache) 1622 silly pacote range manifest for postcss-discard-overridden@^5.0.1 fetched in 89ms 1623 silly pacote range manifest for postcss-discard-empty@^5.0.1 fetched in 136ms 1624 http fetch GET 304 https://registry.npmjs.org/postcss-merge-rules 85ms (from cache) 1625 http fetch GET 304 https://registry.npmjs.org/postcss-merge-longhand 86ms (from cache) 1626 silly pacote range manifest for postcss-merge-rules@^5.0.2 fetched in 88ms 1627 silly pacote range manifest for postcss-merge-longhand@^5.0.2 fetched in 89ms 1628 http fetch GET 304 https://registry.npmjs.org/postcss-minify-font-values 103ms (from cache) 1629 silly pacote range manifest for postcss-minify-font-values@^5.0.1 fetched in 104ms 1630 http fetch GET 304 https://registry.npmjs.org/postcss-minify-selectors 81ms (from cache) 1631 silly pacote range manifest for postcss-minify-selectors@^5.1.0 fetched in 83ms 1632 http fetch GET 304 https://registry.npmjs.org/postcss-minify-params 89ms (from cache) 1633 silly pacote range manifest for postcss-minify-params@^5.0.1 fetched in 91ms 1634 http fetch GET 304 https://registry.npmjs.org/postcss-normalize-charset 106ms (from cache) 1635 http fetch GET 304 https://registry.npmjs.org/postcss-normalize-display-values 106ms (from cache) 1636 silly pacote range manifest for postcss-normalize-charset@^5.0.1 fetched in 108ms 1637 silly pacote range manifest for postcss-normalize-display-values@^5.0.1 fetched in 108ms 1638 http fetch GET 304 https://registry.npmjs.org/postcss-normalize-repeat-style 77ms (from cache) 1639 silly pacote range manifest for postcss-normalize-repeat-style@^5.0.1 fetched in 78ms 1640 http fetch GET 304 https://registry.npmjs.org/postcss-normalize-positions 116ms (from cache) 1641 silly pacote range manifest for postcss-normalize-positions@^5.0.1 fetched in 117ms 1642 http fetch GET 304 https://registry.npmjs.org/postcss-normalize-string 93ms (from cache) 1643 silly pacote range manifest for postcss-normalize-string@^5.0.1 fetched in 95ms 1644 http fetch GET 304 https://registry.npmjs.org/postcss-normalize-timing-functions 90ms (from cache) 1645 http fetch GET 304 https://registry.npmjs.org/postcss-normalize-url 85ms (from cache) 1646 silly pacote range manifest for postcss-normalize-timing-functions@^5.0.1 fetched in 92ms 1647 silly pacote range manifest for postcss-normalize-url@^5.0.2 fetched in 88ms 1648 http fetch GET 304 https://registry.npmjs.org/postcss-normalize-unicode 116ms (from cache) 1649 silly pacote range manifest for postcss-normalize-unicode@^5.0.1 fetched in 119ms 1650 http fetch GET 304 https://registry.npmjs.org/postcss-normalize-whitespace 96ms (from cache) 1651 silly pacote range manifest for postcss-normalize-whitespace@^5.0.1 fetched in 97ms 1652 http fetch GET 200 https://registry.npmjs.org/@types%2feslint 3964ms 1653 silly pacote range manifest for @types/eslint@* fetched in 3966ms 1654 silly pacote range manifest for ms@^2.1.1 fetched in 1ms 1655 silly pacote range manifest for base64-js@^1.3.1 fetched in 1ms 1656 http fetch GET 304 https://registry.npmjs.org/postcss-ordered-values 104ms (from cache) 1657 silly pacote range manifest for postcss-ordered-values@^5.0.2 fetched in 106ms 1658 http fetch GET 304 https://registry.npmjs.org/postcss-reduce-transforms 93ms (from cache) 1659 silly pacote range manifest for postcss-reduce-transforms@^5.0.1 fetched in 95ms 1660 http fetch GET 304 https://registry.npmjs.org/postcss-reduce-initial 97ms (from cache) 1661 silly pacote range manifest for util-deprecate@^1.0.1 fetched in 2ms 1662 silly pacote range manifest for postcss-reduce-initial@^5.0.1 fetched in 99ms 1663 silly pacote range manifest for cssesc@^2.0.0 fetched in 3ms 1664 http fetch GET 304 https://registry.npmjs.org/postcss-svgo 91ms (from cache) 1665 silly pacote range manifest for postcss-svgo@^5.0.2 fetched in 93ms 1666 http fetch GET 304 https://registry.npmjs.org/string_decoder 89ms (from cache) 1667 silly pacote range manifest for string_decoder@^1.1.1 fetched in 91ms 1668 silly pacote range manifest for ansi-styles@^3.2.1 fetched in 2ms 1669 silly pacote range manifest for supports-color@^5.3.0 fetched in 1ms 1670 http fetch GET 304 https://registry.npmjs.org/ieee754 100ms (from cache) 1671 silly pacote range manifest for ieee754@^1.1.13 fetched in 101ms 1672 http fetch GET 304 https://registry.npmjs.org/postcss-unique-selectors 142ms (from cache) 1673 silly pacote range manifest for postcss-unique-selectors@^5.0.1 fetched in 144ms 1674 http fetch GET 304 https://registry.npmjs.org/clone 97ms (from cache) 1675 silly pacote range manifest for clone@^1.0.2 fetched in 98ms 1676 silly pacote range manifest for @babel/code-frame@^7.0.0 fetched in 1ms 1677 http fetch GET 304 https://registry.npmjs.org/indexes-of 96ms (from cache) 1678 silly pacote range manifest for indexes-of@^1.0.1 fetched in 98ms 1679 http fetch GET 304 https://registry.npmjs.org/flatten 103ms (from cache) 1680 silly pacote range manifest for flatten@^1.0.2 fetched in 105ms 1681 warn deprecated [email protected]: flatten is deprecated in favor of utility frameworks such as lodash. 1682 silly pacote range manifest for source-map-resolve@^0.5.2 fetched in 2ms 1683 http fetch GET 304 https://registry.npmjs.org/parent-module 111ms (from cache) 1684 silly pacote range manifest for parent-module@^1.0.0 fetched in 113ms 1685 http fetch GET 304 https://registry.npmjs.org/resolve-from 102ms (from cache) 1686 silly pacote range manifest for resolve-from@^4.0.0 fetched in 103ms 1687 http fetch GET 304 https://registry.npmjs.org/lines-and-columns 82ms (from cache) 1688 silly pacote range manifest for lines-and-columns@^1.1.6 fetched in 84ms 1689 silly pacote range manifest for ansi-styles@^4.0.0 fetched in 1ms 1690 http fetch GET 304 https://registry.npmjs.org/error-ex 101ms (from cache) 1691 silly pacote range manifest for error-ex@^1.3.1 fetched in 104ms 1692 silly pacote range manifest for micromatch@^3.1.4 fetched in 1ms 1693 silly pacote range manifest for normalize-path@^2.1.1 fetched in 2ms 1694 http fetch GET 304 https://registry.npmjs.org/urix 91ms (from cache) 1695 silly pacote range manifest for urix@^0.1.0 fetched in 92ms 1696 warn deprecated [email protected]: Please see https://github.com/lydell/urix#deprecated 1697 http fetch GET 304 https://registry.npmjs.org/isobject 94ms (from cache) 1698 silly pacote range manifest for isobject@^3.0.1 fetched in 95ms 1699 http fetch GET 304 https://registry.npmjs.org/p-defer 100ms (from cache) 1700 http fetch GET 304 https://registry.npmjs.org/is-number 95ms (from cache) 1701 silly pacote range manifest for p-defer@^1.0.0 fetched in 101ms 1702 silly pacote range manifest for is-number@^7.0.0 fetched in 97ms 1703 silly pacote range manifest for fill-range@^4.0.0 fetched in 2ms 1704 http fetch GET 304 https://registry.npmjs.org/arr-flatten 88ms (from cache) 1705 silly pacote range manifest for arr-flatten@^1.1.0 fetched in 90ms 1706 http fetch GET 304 https://registry.npmjs.org/array-unique 99ms (from cache) 1707 silly pacote range manifest for array-unique@^0.3.2 fetched in 100ms 1708 http fetch GET 304 https://registry.npmjs.org/extend-shallow 111ms (from cache) 1709 silly pacote range manifest for extend-shallow@^2.0.1 fetched in 113ms 1710 http fetch GET 304 https://registry.npmjs.org/repeat-element 85ms (from cache) 1711 silly pacote range manifest for repeat-element@^1.1.2 fetched in 86ms 1712 silly pacote range manifest for is-glob@^3.1.0 fetched in 1ms 1713 http fetch GET 200 https://registry.npmjs.org/postcss-minify-gradients 746ms 1714 http fetch GET 304 https://registry.npmjs.org/snapdragon 120ms (from cache) 1715 http fetch GET 304 https://registry.npmjs.org/snapdragon-node 110ms (from cache) 1716 silly pacote range manifest for snapdragon@^0.8.1 fetched in 122ms 1717 silly pacote range manifest for snapdragon-node@^2.0.1 fetched in 112ms 1718 silly pacote range manifest for graceful-fs@^4.1.11 fetched in 2ms 1719 silly pacote range manifest for binary-extensions@^1.0.0 fetched in 3ms 1720 silly pacote range manifest for readable-stream@^2.0.2 fetched in 2ms 1721 http fetch GET 304 https://registry.npmjs.org/to-regex 88ms (from cache) 1722 silly pacote range manifest for to-regex@^3.0.1 fetched in 89ms 1723 http fetch GET 304 https://registry.npmjs.org/path-dirname 82ms (from cache) 1724 silly pacote range manifest for path-dirname@^1.0.0 fetched in 85ms 1725 http fetch GET 304 https://registry.npmjs.org/nan 82ms (from cache) 1726 silly pacote range manifest for nan@^2.12.1 fetched in 83ms 1727 http fetch GET 200 https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.0.2.tgz 121ms 1728 silly pacote range manifest for postcss-minify-gradients@^5.0.2 fetched in 871ms 1729 http fetch GET 304 https://registry.npmjs.org/split-string 175ms (from cache) 1730 silly pacote range manifest for split-string@^3.0.2 fetched in 176ms 1731 http fetch GET 304 https://registry.npmjs.org/bindings 116ms (from cache) 1732 silly pacote range manifest for bindings@^1.5.0 fetched in 117ms 1733 http fetch GET 304 https://registry.npmjs.org/is-date-object 98ms (from cache) 1734 silly pacote range manifest for is-date-object@^1.0.1 fetched in 100ms 1735 http fetch GET 304 https://registry.npmjs.org/is-arguments 114ms (from cache) 1736 silly pacote range manifest for is-arguments@^1.0.4 fetched in 116ms 1737 http fetch GET 304 https://registry.npmjs.org/object-is 78ms (from cache) 1738 silly pacote range manifest for object-is@^1.0.1 fetched in 80ms 1739 http fetch GET 304 https://registry.npmjs.org/is-regex 88ms (from cache) 1740 silly pacote range manifest for is-regex@^1.0.4 fetched in 90ms 1741 silly pacote range manifest for mime-db@&gt;= 1.43.0 &lt; 2 fetched in 1ms 1742 silly pacote range manifest for array-union@^1.0.1 fetched in 1ms 1743 silly pacote range manifest for glob@^7.0.3 fetched in 1ms 1744 http fetch GET 304 https://registry.npmjs.org/object-keys 106ms (from cache) 1745 silly pacote range manifest for object-keys@^1.1.1 fetched in 108ms 1746 silly pacote range manifest for pify@^2.0.0 fetched in 1ms 1747 http fetch GET 304 https://registry.npmjs.org/regexp.prototype.flags 106ms (from cache) 1748 silly pacote range manifest for regexp.prototype.flags@^1.2.0 fetched in 108ms 1749 http fetch GET 304 https://registry.npmjs.org/dns-packet 93ms (from cache) 1750 silly pacote range manifest for dns-packet@^1.3.1 fetched in 94ms 1751 http fetch GET 304 https://registry.npmjs.org/thunky 90ms (from cache) 1752 http fetch GET 304 https://registry.npmjs.org/object-assign 72ms (from cache) 1753 silly pacote range manifest for thunky@^1.0.2 fetched in 92ms 1754 silly pacote range manifest for object-assign@^4.0.1 fetched in 73ms 1755 silly pacote version manifest for [email protected] fetched in 1ms 1756 silly pacote range manifest for braces@^2.3.1 fetched in 0ms 1757 http fetch GET 304 https://registry.npmjs.org/buffer-indexof 94ms (from cache) 1758 silly pacote range manifest for buffer-indexof@^1.0.0 fetched in 95ms 1759 silly pacote range manifest for extend-shallow@^3.0.2 fetched in 2ms 1760 http fetch GET 304 https://registry.npmjs.org/pinkie-promise 75ms (from cache) 1761 silly pacote range manifest for pinkie-promise@^2.0.0 fetched in 76ms 1762 http fetch GET 304 https://registry.npmjs.org/forwarded 79ms (from cache) 1763 silly pacote version manifest for [email protected] fetched in 81ms 1764 http fetch GET 304 https://registry.npmjs.org/arr-diff 95ms (from cache) 1765 silly pacote range manifest for arr-diff@^4.0.0 fetched in 96ms 1766 http fetch GET 304 https://registry.npmjs.org/extglob 85ms (from cache) 1767 silly pacote range manifest for extglob@^2.0.4 fetched in 86ms 1768 http fetch GET 304 https://registry.npmjs.org/fragment-cache 84ms (from cache) 1769 http fetch GET 304 https://registry.npmjs.org/define-property 120ms (from cache) 1770 silly pacote range manifest for fragment-cache@^0.2.1 fetched in 85ms 1771 silly pacote range manifest for define-property@^2.0.2 fetched in 123ms 1772 silly pacote range manifest for to-regex@^3.0.2 fetched in 2ms 1773 silly pacote range manifest for http-errors@~1.7.2 fetched in 2ms 1774 silly pacote version manifest for [email protected] fetched in 1ms 1775 silly pacote version manifest for [email protected] fetched in 1ms 1776 http fetch GET 304 https://registry.npmjs.org/uniq 792ms (from cache) 1777 silly pacote range manifest for uniq@^1.0.1 fetched in 793ms 1778 silly pacote range manifest for resolve-from@^3.0.0 fetched in 1ms 1779 http fetch GET 304 https://registry.npmjs.org/nanomatch 104ms (from cache) 1780 silly pacote range manifest for nanomatch@^1.2.9 fetched in 106ms 1781 http fetch GET 304 https://registry.npmjs.org/object.pick 96ms (from cache) 1782 silly pacote range manifest for object.pick@^1.3.0 fetched in 98ms 1783 silly pacote range manifest for lodash@^4.17.14 fetched in 1ms 1784 silly pacote range manifest for websocket-driver@&gt;=0.5.1 fetched in 0ms 1785 silly pacote version manifest for [email protected] fetched in 1ms 1786 silly pacote range manifest for statuses@&gt;= 1.4.0 &lt; 2 fetched in 0ms 1787 http fetch GET 304 https://registry.npmjs.org/regex-not 153ms (from cache) 1788 silly pacote range manifest for regex-not@^1.0.0 fetched in 155ms 1789 silly pacote range manifest for safe-buffer@&gt;=5.1.0 fetched in 1ms 1790 http fetch GET 304 https://registry.npmjs.org/destroy 134ms (from cache) 1791 silly pacote range manifest for destroy@~1.0.4 fetched in 136ms 1792 silly pacote range manifest for errno@^0.1.3 fetched in 1ms 1793 silly pacote range manifest for readable-stream@^2.0.1 fetched in 1ms 1794 http fetch GET 304 https://registry.npmjs.org/execa 110ms (from cache) 1795 silly pacote range manifest for execa@^1.0.0 fetched in 113ms 1796 http fetch GET 304 https://registry.npmjs.org/ip-regex 94ms (from cache) 1797 silly pacote range manifest for ip-regex@^2.1.0 fetched in 95ms 1798 silly pacote range manifest for string-width@^3.1.0 fetched in 1ms 1799 silly pacote range manifest for strip-ansi@^5.2.0 fetched in 2ms 1800 silly pacote range manifest for wrap-ansi@^5.1.0 fetched in 1ms 1801 silly pacote range manifest for locate-path@^3.0.0 fetched in 1ms 1802 silly pacote range manifest for emoji-regex@^7.0.1 fetched in 1ms 1803 silly pacote range manifest for is-fullwidth-code-point@^2.0.0 fetched in 1ms 1804 silly pacote range manifest for strip-ansi@^5.1.0 fetched in 0ms 1805 http fetch GET 200 https://registry.npmjs.org/@types%2fminimatch 170ms 1806 silly pacote range manifest for @types/minimatch@* fetched in 171ms 1807 http fetch GET 304 https://registry.npmjs.org/http-parser-js 105ms (from cache) 1808 silly pacote range manifest for http-parser-js@&gt;=0.5.1 fetched in 107ms 1809 http fetch GET 304 https://registry.npmjs.org/querystringify 92ms (from cache) 1810 silly pacote range manifest for querystringify@^2.1.1 fetched in 94ms 1811 silly pacote range manifest for readable-stream@^3.0.6 fetched in 1ms 1812 http fetch GET 304 https://registry.npmjs.org/websocket-extensions 121ms (from cache) 1813 silly pacote range manifest for websocket-extensions@&gt;=0.1.1 fetched in 123ms 1814 http fetch GET 304 https://registry.npmjs.org/is-path-inside 412ms (from cache) 1815 http fetch GET 304 https://registry.npmjs.org/detect-node 107ms (from cache) 1816 silly pacote range manifest for is-path-inside@^2.1.0 fetched in 414ms 1817 silly pacote range manifest for detect-node@^2.0.4 fetched in 108ms 1818 silly pacote range manifest for graceful-fs@^4.2.0 fetched in 0ms 1819 http fetch GET 304 https://registry.npmjs.org/hpack.js 118ms (from cache) 1820 silly pacote range manifest for hpack.js@^2.1.6 fetched in 119ms 1821 http fetch GET 304 https://registry.npmjs.org/obuf 118ms (from cache) 1822 silly pacote range manifest for obuf@^1.1.2 fetched in 120ms 1823 http fetch GET 304 https://registry.npmjs.org/jsonfile 85ms (from cache) 1824 silly pacote range manifest for jsonfile@^4.0.0 fetched in 87ms 1825 silly pacote range manifest for object-assign@^4 fetched in 3ms 1826 http fetch GET 304 https://registry.npmjs.org/wbuf 118ms (from cache) 1827 silly pacote range manifest for vary@^1 fetched in 3ms 1828 silly pacote range manifest for wbuf@^1.7.3 fetched in 121ms 1829 http fetch GET 304 https://registry.npmjs.org/decamelize 102ms (from cache) 1830 http fetch GET 304 https://registry.npmjs.org/camelcase 111ms (from cache) 1831 silly pacote range manifest for decamelize@^1.2.0 fetched in 104ms 1832 silly pacote range manifest for camelcase@^5.0.0 fetched in 113ms 1833 http fetch GET 304 https://registry.npmjs.org/base64-arraybuffer 94ms (from cache) 1834 silly pacote version manifest for [email protected] fetched in 96ms 1835 http fetch GET 304 https://registry.npmjs.org/universalify 136ms (from cache) 1836 silly pacote range manifest for universalify@^0.1.0 fetched in 137ms 1837 http fetch GET 304 https://registry.npmjs.org/regenerate 102ms (from cache) 1838 silly pacote range manifest for regenerate@^1.4.0 fetched in 103ms 1839 http fetch GET 304 https://registry.npmjs.org/regjsgen 95ms (from cache) 1840 silly pacote range manifest for regjsgen@^0.5.1 fetched in 98ms 1841 http fetch GET 304 https://registry.npmjs.org/regenerate-unicode-properties 106ms (from cache) 1842 silly pacote range manifest for regenerate-unicode-properties@^8.2.0 fetched in 108ms 1843 http fetch GET 304 https://registry.npmjs.org/regjsparser 102ms (from cache) 1844 silly pacote range manifest for estraverse@^5.2.0 fetched in 2ms 1845 silly pacote range manifest for regjsparser@^0.6.4 fetched in 103ms 1846 http fetch GET 200 https://registry.npmjs.org/make-fetch-happen 2982ms 1847 http fetch GET 304 https://registry.npmjs.org/unicode-match-property-ecmascript 99ms (from cache) 1848 silly pacote range manifest for unicode-match-property-ecmascript@^1.0.4 fetched in 100ms 1849 http fetch GET 304 https://registry.npmjs.org/unicode-match-property-value-ecmascript 83ms (from cache) 1850 silly pacote range manifest for unicode-match-property-value-ecmascript@^1.2.0 fetched in 85ms 1851 silly pacote version manifest for @nodelib/[email protected] fetched in 1ms 1852 http fetch GET 304 https://registry.npmjs.org/original 402ms (from cache) 1853 silly pacote range manifest for original@^1.0.0 fetched in 403ms 1854 http fetch GET 304 https://registry.npmjs.org/call-bind 104ms (from cache) 1855 silly pacote range manifest for call-bind@^1.0.0 fetched in 106ms 1856 http fetch GET 304 https://registry.npmjs.org/define-properties 109ms (from cache) 1857 http fetch GET 304 https://registry.npmjs.org/@webassemblyjs%2ffloating-point-hex-parser 121ms (from cache) 1858 silly pacote range manifest for define-properties@^1.1.3 fetched in 111ms 1859 silly pacote version manifest for @webassemblyjs/[email protected] fetched in 123ms 1860 http fetch GET 304 https://registry.npmjs.org/@xtuc%2flong 124ms (from cache) 1861 silly pacote version manifest for @xtuc/[email protected] fetched in 126ms 1862 http fetch GET 304 https://registry.npmjs.org/run-parallel 90ms (from cache) 1863 silly pacote range manifest for run-parallel@^1.1.9 fetched in 93ms 1864 http fetch GET 304 https://registry.npmjs.org/has-symbols 117ms (from cache) 1865 silly pacote range manifest for browserslist@^4.12.0 fetched in 1ms 1866 silly pacote range manifest for caniuse-lite@^1.0.30001109 fetched in 2ms 1867 silly pacote range manifest for has-symbols@^1.0.1 fetched in 120ms 1868 silly pacote range manifest for colorette@^1.2.1 fetched in 1ms 1869 http fetch GET 304 https://registry.npmjs.org/color-name 114ms (from cache) 1870 silly pacote range manifest for color-name@~1.1.4 fetched in 115ms 1871 silly pacote range manifest for postcss@^7.0.32 fetched in 1ms 1872 silly pacote range manifest for mimic-fn@^2.1.0 fetched in 1ms 1873 http fetch GET 304 https://registry.npmjs.org/reusify 97ms (from cache) 1874 silly pacote range manifest for reusify@^1.0.4 fetched in 99ms 1875 silly pacote range manifest for graceful-fs@^4.2.3 fetched in 1ms 1876 http fetch GET 304 https://registry.npmjs.org/jsonparse 94ms (from cache) 1877 silly pacote range manifest for jsonparse@^1.3.1 fetched in 95ms 1878 http fetch GET 200 https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.0.5.tgz 211ms 1879 http fetch GET 304 https://registry.npmjs.org/p-locate 114ms (from cache) 1880 silly pacote range manifest for p-locate@^4.1.0 fetched in 115ms 1881 silly pacote range manifest for make-fetch-happen@^9.0.1 fetched in 3200ms 1882 silly pacote range manifest for semver@^7.3.2 fetched in 2ms 1883 http fetch GET 304 https://registry.npmjs.org/normalize-range 97ms (from cache) 1884 silly pacote range manifest for normalize-range@^0.1.2 fetched in 98ms 1885 silly pacote range manifest for minipass@^3.1.0 fetched in 1ms 1886 http fetch GET 304 https://registry.npmjs.org/@xtuc%2fieee754 132ms (from cache) 1887 silly pacote range manifest for @xtuc/ieee754@^1.2.0 fetched in 134ms 1888 http fetch GET 304 https://registry.npmjs.org/num2fraction 103ms (from cache) 1889 silly pacote range manifest for num2fraction@^1.2.2 fetched in 105ms 1890 http fetch GET 304 https://registry.npmjs.org/env-paths 83ms (from cache) 1891 silly pacote range manifest for env-paths@^2.2.0 fetched in 84ms 1892 silly pacote range manifest for postcss-value-parser@^4.0.2 fetched in 1ms 1893 http fetch GET 304 https://registry.npmjs.org/npmlog 90ms (from cache) 1894 silly pacote range manifest for npmlog@^4.1.2 fetched in 93ms 1895 http fetch GET 304 https://registry.npmjs.org/function-bind 93ms (from cache) 1896 http fetch GET 304 https://registry.npmjs.org/request 106ms (from cache) 1897 silly pacote range manifest for function-bind@^1.1.1 fetched in 96ms 1898 silly pacote range manifest for request@^2.88.2 fetched in 109ms 1899 warn deprecated [email protected]: request has been deprecated, see https://github.com/request/request/issues/3142 1900 silly pacote range manifest for postcss-selector-parser@^6.0.5 fetched in 1ms 1901 http fetch GET 304 https://registry.npmjs.org/timsort 97ms (from cache) 1902 silly pacote range manifest for timsort@^0.3.0 fetched in 100ms 1903 http fetch GET 304 https://registry.npmjs.org/caniuse-api 82ms (from cache) 1904 silly pacote range manifest for caniuse-api@^3.0.0 fetched in 84ms 1905 http fetch GET 304 https://registry.npmjs.org/colord 81ms (from cache) 1906 silly pacote range manifest for colord@^2.0.1 fetched in 83ms 1907 silly pacote range manifest for browserslist@^4.16.0 fetched in 1ms 1908 http fetch GET 304 https://registry.npmjs.org/vendors 85ms (from cache) 1909 silly pacote range manifest for vendors@^1.0.3 fetched in 86ms 1910 http fetch GET 304 https://registry.npmjs.org/css-color-names 94ms (from cache) 1911 silly pacote range manifest for css-color-names@^1.0.1 fetched in 95ms 1912 silly pacote range manifest for @types/json-schema@* fetched in 1ms 1913 http fetch GET 304 https://registry.npmjs.org/alphanum-sort 86ms (from cache) 1914 silly pacote range manifest for alphanum-sort@^1.0.2 fetched in 87ms 1915 silly pacote range manifest for safe-buffer@~5.2.0 fetched in 1ms 1916 silly pacote range manifest for color-convert@^1.9.0 fetched in 1ms 1917 http fetch GET 304 https://registry.npmjs.org/uniqs 88ms (from cache) 1918 silly pacote range manifest for uniqs@^2.0.0 fetched in 89ms 1919 http fetch GET 304 https://registry.npmjs.org/stylehacks 169ms (from cache) 1920 http fetch GET 304 https://registry.npmjs.org/svgo 78ms (from cache) 1921 silly pacote range manifest for stylehacks@^5.0.1 fetched in 172ms 1922 silly pacote range manifest for svgo@^2.3.0 fetched in 81ms 1923 http fetch GET 304 https://registry.npmjs.org/resolve-url 78ms (from cache) 1924 silly pacote range manifest for resolve-url@^0.2.1 fetched in 79ms 1925 warn deprecated [email protected]: https://github.com/lydell/resolve-url#deprecated 1926 http fetch GET 304 https://registry.npmjs.org/normalize-url 109ms (from cache) 1927 silly pacote range manifest for normalize-url@^6.0.1 fetched in 111ms 1928 silly pacote range manifest for is-number@^3.0.0 fetched in 1ms 1929 http fetch GET 304 https://registry.npmjs.org/source-map-url 88ms (from cache) 1930 silly pacote range manifest for source-map-url@^0.4.0 fetched in 89ms 1931 silly pacote range manifest for to-regex-range@^2.1.0 fetched in 2ms 1932 http fetch GET 304 https://registry.npmjs.org/remove-trailing-separator 90ms (from cache) 1933 silly pacote range manifest for remove-trailing-separator@^1.0.1 fetched in 92ms 1934 silly pacote range manifest for is-extglob@^2.1.0 fetched in 1ms 1935 http fetch GET 304 https://registry.npmjs.org/is-arrayish 102ms (from cache) 1936 silly pacote range manifest for is-arrayish@^0.2.1 fetched in 103ms 1937 silly pacote range manifest for debug@^2.2.0 fetched in 2ms 1938 silly pacote range manifest for define-property@^0.2.5 fetched in 1ms 1939 http fetch GET 304 https://registry.npmjs.org/repeat-string 118ms (from cache) 1940 silly pacote range manifest for repeat-string@^1.6.1 fetched in 119ms 1941 silly pacote range manifest for source-map@^0.5.6 fetched in 0ms 1942 silly pacote range manifest for source-map-resolve@^0.5.0 fetched in 1ms 1943 http fetch GET 304 https://registry.npmjs.org/callsites 148ms (from cache) 1944 silly pacote range manifest for callsites@^3.0.0 fetched in 151ms 1945 silly pacote range manifest for define-property@^1.0.0 fetched in 2ms 1946 silly pacote range manifest for isobject@^3.0.0 fetched in 1ms 1947 http fetch GET 304 https://registry.npmjs.org/is-extendable 116ms (from cache) 1948 silly pacote range manifest for is-extendable@^0.1.0 fetched in 117ms 1949 http fetch GET 304 https://registry.npmjs.org/base 101ms (from cache) 1950 silly pacote range manifest for base@^0.11.1 fetched in 103ms 1951 http fetch GET 304 https://registry.npmjs.org/map-cache 96ms (from cache) 1952 silly pacote range manifest for inherits@~2.0.3 fetched in 2ms 1953 silly pacote range manifest for map-cache@^0.2.2 fetched in 98ms 1954 http fetch GET 304 https://registry.npmjs.org/use 101ms (from cache) 1955 silly pacote range manifest for use@^3.1.0 fetched in 103ms 1956 silly pacote range manifest for string_decoder@~1.1.1 fetched in 1ms 1957 silly pacote range manifest for util-deprecate@~1.0.1 fetched in 1ms 1958 silly pacote range manifest for regex-not@^1.0.2 fetched in 1ms 1959 http fetch GET 304 https://registry.npmjs.org/core-util-is 101ms (from cache) 1960 silly pacote range manifest for core-util-is@~1.0.0 fetched in 102ms 1961 silly pacote range manifest for colord@^2.6 fetched in 2ms 1962 silly pacote range manifest for extend-shallow@^3.0.0 fetched in 1ms 1963 http fetch GET 304 https://registry.npmjs.org/process-nextick-args 98ms (from cache) 1964 silly pacote range manifest for process-nextick-args@~2.0.0 fetched in 100ms 1965 http fetch GET 304 https://registry.npmjs.org/isarray 118ms (from cache) 1966 silly pacote range manifest for isarray@~1.0.0 fetched in 119ms 1967 silly pacote range manifest for call-bind@^1.0.2 fetched in 0ms 1968 http fetch GET 304 https://registry.npmjs.org/file-uri-to-path 90ms (from cache) 1969 silly pacote version manifest for [email protected] fetched in 92ms 1970 silly pacote range manifest for ip@^1.1.0 fetched in 1ms 1971 silly pacote range manifest for safe-buffer@^5.0.1 fetched in 0ms 1972 http fetch GET 304 https://registry.npmjs.org/has-tostringtag 118ms (from cache) 1973 http fetch GET 304 https://registry.npmjs.org/safe-regex 176ms (from cache) 1974 silly pacote range manifest for has-tostringtag@^1.0.0 fetched in 120ms 1975 silly pacote range manifest for safe-regex@^1.1.0 fetched in 178ms 1976 silly pacote range manifest for is-extendable@^1.0.1 fetched in 2ms 1977 http fetch GET 304 https://registry.npmjs.org/array-uniq 108ms (from cache) 1978 silly pacote range manifest for array-uniq@^1.0.1 fetched in 109ms 1979 http fetch GET 304 https://registry.npmjs.org/assign-symbols 98ms (from cache) 1980 silly pacote range manifest for assign-symbols@^1.0.0 fetched in 100ms 1981 silly pacote version manifest for [email protected] fetched in 2ms 1982 http fetch GET 304 https://registry.npmjs.org/nopt 780ms (from cache) 1983 silly pacote range manifest for nopt@^5.0.0 fetched in 781ms 1984 http fetch GET 304 https://registry.npmjs.org/snapdragon-util 324ms (from cache) 1985 silly pacote range manifest for snapdragon-util@^3.0.1 fetched in 325ms 1986 http fetch GET 304 https://registry.npmjs.org/pinkie 77ms (from cache) 1987 silly pacote range manifest for pinkie@^2.0.0 fetched in 79ms 1988 http fetch GET 304 https://registry.npmjs.org/is-descriptor 102ms (from cache) 1989 silly pacote range manifest for is-descriptor@^1.0.2 fetched in 105ms 1990 http fetch GET 304 https://registry.npmjs.org/minipass-sized 831ms (from cache) 1991 http fetch GET 304 https://registry.npmjs.org/expand-brackets 127ms (from cache) 1992 http fetch GET 304 https://registry.npmjs.org/is-windows 95ms (from cache) 1993 silly pacote range manifest for minipass-sized@^1.0.3 fetched in 834ms 1994 silly pacote range manifest for is-windows@^1.0.2 fetched in 96ms 1995 silly pacote range manifest for expand-brackets@^2.1.4 fetched in 130ms 1996 silly pacote range manifest for signal-exit@^3.0.0 fetched in 1ms 1997 silly pacote range manifest for ansi-regex@^4.1.0 fetched in 1ms 1998 silly pacote range manifest for ansi-styles@^3.2.0 fetched in 1ms 1999 silly pacote range manifest for strip-ansi@^5.0.0 fetched in 0ms 2000 silly pacote range manifest for p-locate@^3.0.0 fetched in 2ms 2001 silly pacote range manifest for path-exists@^3.0.0 fetched in 1ms 2002 http fetch GET 304 https://registry.npmjs.org/encoding 873ms (from cache) 2003 silly pacote range manifest for encoding@^0.1.12 fetched in 875ms 2004 silly pacote range manifest for inherits@^2.0.1 fetched in 1ms 2005 silly pacote range manifest for obuf@^1.0.0 fetched in 1ms 2006 silly pacote range manifest for wbuf@^1.1.0 fetched in 0ms 2007 silly pacote range manifest for graceful-fs@^4.1.6 fetched in 0ms 2008 http fetch GET 304 https://registry.npmjs.org/is-stream 94ms (from cache) 2009 silly pacote range manifest for is-stream@^1.1.0 fetched in 95ms 2010 silly pacote range manifest for jsesc@~0.5.0 fetched in 2ms 2011 http fetch GET 304 https://registry.npmjs.org/cross-spawn 191ms (from cache) 2012 silly pacote range manifest for cross-spawn@^6.0.0 fetched in 193ms 2013 http fetch GET 304 https://registry.npmjs.org/p-finally 112ms (from cache) 2014 silly pacote range manifest for p-finally@^1.0.0 fetched in 113ms 2015 silly pacote range manifest for url-parse@^1.4.3 fetched in 1ms 2016 http fetch GET 304 https://registry.npmjs.org/path-is-inside 108ms (from cache) 2017 http fetch GET 304 https://registry.npmjs.org/get-stream 194ms (from cache) 2018 silly pacote range manifest for path-is-inside@^1.0.2 fetched in 110ms 2019 silly pacote range manifest for object-keys@^1.0.12 fetched in 1ms 2020 silly pacote range manifest for get-stream@^4.0.0 fetched in 196ms 2021 silly pacote range manifest for p-limit@^2.2.0 fetched in 2ms 2022 http fetch GET 304 https://registry.npmjs.org/minimalistic-assert 117ms (from cache) 2023 silly pacote range manifest for minimalistic-assert@^1.0.0 fetched in 119ms 2024 silly pacote range manifest for cacache@^15.2.0 fetched in 2ms 2025 http fetch GET 304 https://registry.npmjs.org/unicode-canonical-property-names-ecmascript 116ms (from cache) 2026 silly pacote range manifest for unicode-canonical-property-names-ecmascript@^1.0.4 fetched in 118ms 2027 http fetch GET 304 https://registry.npmjs.org/strip-eof 166ms (from cache) 2028 silly pacote range manifest for strip-eof@^1.0.0 fetched in 167ms 2029 silly pacote range manifest for https-proxy-agent@^5.0.0 fetched in 1ms 2030 http fetch GET 304 https://registry.npmjs.org/queue-microtask 80ms (from cache) 2031 silly pacote range manifest for queue-microtask@^1.2.2 fetched in 81ms 2032 silly pacote range manifest for minipass-fetch@^1.3.2 fetched in 1ms 2033 silly pacote range manifest for minipass-pipeline@^1.2.4 fetched in 1ms 2034 silly pacote range manifest for negotiator@^0.6.2 fetched in 1ms 2035 http fetch GET 304 https://registry.npmjs.org/get-intrinsic 94ms (from cache) 2036 silly pacote range manifest for get-intrinsic@^1.0.2 fetched in 97ms 2037 silly pacote range manifest for ssri@^8.0.0 fetched in 1ms 2038 http fetch GET 304 https://registry.npmjs.org/agentkeepalive 98ms (from cache) 2039 silly pacote range manifest for agentkeepalive@^4.1.3 fetched in 100ms 2040 http fetch GET 304 https://registry.npmjs.org/npm-run-path 241ms (from cache) 2041 silly pacote range manifest for npm-run-path@^2.0.0 fetched in 243ms 2042 http fetch GET 304 https://registry.npmjs.org/http-cache-semantics 84ms (from cache) 2043 http fetch GET 304 https://registry.npmjs.org/http-proxy-agent 81ms (from cache) 2044 silly pacote range manifest for http-cache-semantics@^4.1.0 fetched in 85ms 2045 silly pacote range manifest for http-proxy-agent@^4.0.1 fetched in 83ms 2046 silly pacote range manifest for set-blocking@~2.0.0 fetched in 2ms 2047 http fetch GET 304 https://registry.npmjs.org/is-lambda 97ms (from cache) 2048 silly pacote range manifest for is-lambda@^1.0.1 fetched in 98ms 2049 http fetch GET 304 https://registry.npmjs.org/socks-proxy-agent 82ms (from cache) 2050 http fetch GET 304 https://registry.npmjs.org/console-control-strings 89ms (from cache) 2051 silly pacote range manifest for console-control-strings@~1.1.0 fetched in 91ms 2052 http fetch GET 304 https://registry.npmjs.org/gauge 96ms (from cache) 2053 silly pacote range manifest for gauge@~2.7.3 fetched in 98ms 2054 silly pacote range manifest for extend@~3.0.2 fetched in 1ms 2055 http fetch GET 304 https://registry.npmjs.org/aws-sign2 116ms (from cache) 2056 http fetch GET 304 https://registry.npmjs.org/are-we-there-yet 153ms (from cache) 2057 silly pacote range manifest for aws-sign2@~0.7.0 fetched in 118ms 2058 silly pacote range manifest for are-we-there-yet@~1.1.2 fetched in 155ms 2059 http fetch GET 304 https://registry.npmjs.org/aws4 123ms (from cache) 2060 silly pacote range manifest for aws4@^1.8.0 fetched in 125ms 2061 http fetch GET 304 https://registry.npmjs.org/caseless 131ms (from cache) 2062 silly pacote range manifest for caseless@~0.12.0 fetched in 133ms 2063 http fetch GET 304 https://registry.npmjs.org/forever-agent 142ms (from cache) 2064 silly pacote range manifest for forever-agent@~0.6.1 fetched in 144ms 2065 http fetch GET 304 https://registry.npmjs.org/combined-stream 187ms (from cache) 2066 silly pacote range manifest for combined-stream@~1.0.6 fetched in 188ms 2067 http fetch GET 304 https://registry.npmjs.org/har-validator 376ms (from cache) 2068 silly pacote range manifest for har-validator@~5.1.3 fetched in 378ms 2069 warn deprecated [email protected]: this library is no longer supported 2070 http fetch GET 304 https://registry.npmjs.org/http-signature 371ms (from cache) 2071 silly pacote range manifest for mime-types@~2.1.19 fetched in 1ms 2072 silly pacote range manifest for http-signature@~1.2.0 fetched in 373ms 2073 http fetch GET 304 https://registry.npmjs.org/form-data 387ms (from cache) 2074 silly pacote range manifest for form-data@~2.3.2 fetched in 389ms 2075 silly pacote range manifest for qs@~6.5.2 fetched in 2ms 2076 silly pacote range manifest for safe-buffer@^5.1.2 fetched in 1ms 2077 http fetch GET 200 https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.0.0.tgz 596ms 2078 silly pacote range manifest for socks-proxy-agent@^6.0.0 fetched in 682ms 2079 http fetch GET 304 https://registry.npmjs.org/unicode-property-aliases-ecmascript 796ms (from cache) 2080 silly pacote range manifest for unicode-property-aliases-ecmascript@^1.0.4 fetched in 798ms 2081 silly pacote range manifest for browserslist@^4.0.0 fetched in 0ms 2082 silly pacote range manifest for caniuse-lite@^1.0.0 fetched in 1ms 2083 http fetch GET 304 https://registry.npmjs.org/is-typedarray 546ms (from cache) 2084 silly pacote range manifest for is-typedarray@~1.0.0 fetched in 547ms 2085 http fetch GET 304 https://registry.npmjs.org/isstream 521ms (from cache) 2086 silly pacote range manifest for isstream@~0.1.2 fetched in 522ms 2087 silly pacote version manifest for [email protected] fetched in 2ms 2088 http fetch GET 304 https://registry.npmjs.org/json-stringify-safe 503ms (from cache) 2089 silly pacote range manifest for json-stringify-safe@~5.0.1 fetched in 505ms 2090 silly pacote range manifest for commander@^7.1.0 fetched in 3ms 2091 http fetch GET 304 https://registry.npmjs.org/performance-now 353ms (from cache) 2092 silly pacote range manifest for performance-now@^2.1.0 fetched in 355ms 2093 http fetch GET 304 https://registry.npmjs.org/tough-cookie 364ms (from cache) 2094 silly pacote range manifest for tough-cookie@~2.5.0 fetched in 366ms 2095 http fetch GET 304 https://registry.npmjs.org/tunnel-agent 425ms (from cache) 2096 silly pacote range manifest for tunnel-agent@^0.6.0 fetched in 426ms 2097 http fetch GET 304 https://registry.npmjs.org/lodash.memoize 416ms (from cache) 2098 silly pacote range manifest for lodash.memoize@^4.1.2 fetched in 417ms 2099 silly pacote range manifest for kind-of@^3.0.2 fetched in 2ms 2100 silly pacote range manifest for is-descriptor@^0.1.0 fetched in 2ms 2101 silly pacote range manifest for is-descriptor@^1.0.0 fetched in 1ms 2102 http fetch GET 304 https://registry.npmjs.org/lodash.uniq 577ms (from cache) 2103 silly pacote range manifest for lodash.uniq@^4.5.0 fetched in 580ms 2104 http fetch GET 304 https://registry.npmjs.org/css-select 631ms (from cache) 2105 silly pacote range manifest for css-select@^4.1.3 fetched in 633ms 2106 silly pacote range manifest for component-emitter@^1.2.1 fetched in 2ms 2107 http fetch GET 304 https://registry.npmjs.org/@trysound%2fsax 668ms (from cache) 2108 silly pacote version manifest for @trysound/[email protected] fetched in 669ms 2109 http fetch GET 304 https://registry.npmjs.org/oauth-sign 939ms (from cache) 2110 silly pacote range manifest for oauth-sign@~0.9.0 fetched in 942ms 2111 silly pacote range manifest for safe-buffer@~5.1.0 fetched in 0ms 2112 silly pacote range manifest for has-symbols@^1.0.2 fetched in 0ms 2113 http fetch GET 304 https://registry.npmjs.org/css-tree 613ms (from cache) 2114 silly pacote range manifest for css-tree@^1.1.2 fetched in 615ms 2115 http fetch GET 304 https://registry.npmjs.org/csso 594ms (from cache) 2116 silly pacote range manifest for csso@^4.2.0 fetched in 596ms 2117 silly pacote range manifest for kind-of@^3.2.0 fetched in 1ms 2118 http fetch GET 304 https://registry.npmjs.org/stable 534ms (from cache) 2119 silly pacote range manifest for stable@^0.1.8 fetched in 536ms 2120 http fetch GET 304 https://registry.npmjs.org/cache-base 553ms (from cache) 2121 silly pacote range manifest for cache-base@^1.0.1 fetched in 555ms 2122 silly pacote range manifest for debug@^2.3.3 fetched in 1ms 2123 http fetch GET 304 https://registry.npmjs.org/class-utils 433ms (from cache) 2124 silly pacote range manifest for class-utils@^0.3.5 fetched in 435ms 2125 silly pacote range manifest for p-limit@^2.0.0 fetched in 1ms 2126 http fetch GET 304 https://registry.npmjs.org/mixin-deep 377ms (from cache) 2127 silly pacote range manifest for mixin-deep@^1.2.0 fetched in 379ms 2128 http fetch GET 304 https://registry.npmjs.org/pascalcase 375ms (from cache) 2129 silly pacote range manifest for pascalcase@^0.1.1 fetched in 377ms 2130 silly pacote range manifest for semver@^5.5.0 fetched in 1ms 2131 http fetch GET 304 https://registry.npmjs.org/ret 358ms (from cache) 2132 silly pacote range manifest for ret@~0.1.10 fetched in 360ms 2133 silly pacote range manifest for which@^1.2.9 fetched in 1ms 2134 http fetch GET 304 https://registry.npmjs.org/abbrev 354ms (from cache) 2135 silly pacote range manifest for abbrev@1 fetched in 355ms 2136 http fetch GET 304 https://registry.npmjs.org/is-accessor-descriptor 352ms (from cache) 2137 silly pacote range manifest for is-accessor-descriptor@^1.0.0 fetched in 354ms 2138 silly pacote range manifest for depd@^1.1.2 fetched in 1ms 2139 http fetch GET 304 https://registry.npmjs.org/is-data-descriptor 262ms (from cache) 2140 silly pacote range manifest for is-data-descriptor@^1.0.0 fetched in 263ms 2141 http fetch GET 304 https://registry.npmjs.org/posix-character-classes 231ms (from cache) 2142 silly pacote range manifest for posix-character-classes@^0.1.0 fetched in 232ms 2143 http fetch GET 304 https://registry.npmjs.org/nice-try 158ms (from cache) 2144 silly pacote range manifest for nice-try@^1.0.4 fetched in 160ms 2145 http fetch GET 304 https://registry.npmjs.org/pump 92ms (from cache) 2146 silly pacote range manifest for pump@^3.0.0 fetched in 94ms 2147 silly pacote range manifest for console-control-strings@^1.0.0 fetched in 1ms 2148 http fetch GET 304 https://registry.npmjs.org/shebang-command 104ms (from cache) 2149 silly pacote range manifest for shebang-command@^1.2.0 fetched in 105ms 2150 silly pacote range manifest for object-assign@^4.1.0 fetched in 1ms 2151 silly pacote range manifest for string-width@^1.0.1 fetched in 2ms 2152 http fetch GET 304 https://registry.npmjs.org/path-key 138ms (from cache) 2153 silly pacote range manifest for path-key@^2.0.1 fetched in 139ms 2154 http fetch GET 304 https://registry.npmjs.org/humanize-ms 88ms (from cache) 2155 silly pacote range manifest for humanize-ms@^1.2.1 fetched in 90ms 2156 silly pacote range manifest for readable-stream@^2.0.6 fetched in 1ms 2157 http fetch GET 304 https://registry.npmjs.org/p-try 116ms (from cache) 2158 silly pacote range manifest for p-try@^2.0.0 fetched in 117ms 2159 silly pacote range manifest for ajv@^6.12.3 fetched in 1ms 2160 http fetch GET 304 https://registry.npmjs.org/path-key 93ms (from cache) 2161 silly pacote range manifest for path-key@^2.0.0 fetched in 95ms 2162 http fetch GET 304 https://registry.npmjs.org/aproba 97ms (from cache) 2163 silly pacote range manifest for aproba@^1.0.3 fetched in 99ms 2164 http fetch GET 304 https://registry.npmjs.org/has-unicode 79ms (from cache) 2165 silly pacote range manifest for has-unicode@^2.0.0 fetched in 81ms 2166 http fetch GET 304 https://registry.npmjs.org/@tootallnate%2fonce 119ms (from cache) 2167 silly pacote range manifest for @tootallnate/once@1 fetched in 121ms 2168 http fetch GET 304 https://registry.npmjs.org/delegates 81ms (from cache) 2169 silly pacote range manifest for delegates@^1.0.0 fetched in 82ms 2170 silly pacote range manifest for combined-stream@^1.0.6 fetched in 1ms 2171 silly pacote range manifest for mime-types@^2.1.12 fetched in 1ms 2172 http fetch GET 304 https://registry.npmjs.org/wide-align 97ms (from cache) 2173 silly pacote range manifest for agent-base@^6.0.2 fetched in 1ms 2174 silly pacote range manifest for debug@^4.3.1 fetched in 0ms 2175 silly pacote range manifest for wide-align@^1.1.0 fetched in 99ms 2176 http fetch GET 304 https://registry.npmjs.org/delayed-stream 105ms (from cache) 2177 silly pacote range manifest for delayed-stream@~1.0.0 fetched in 106ms 2178 silly pacote range manifest for punycode@^2.1.1 fetched in 1ms 2179 http fetch GET 304 https://registry.npmjs.org/har-schema 94ms (from cache) 2180 silly pacote range manifest for har-schema@^2.0.0 fetched in 95ms 2181 silly pacote range manifest for is-accessor-descriptor@^0.1.6 fetched in 1ms 2182 http fetch GET 304 https://registry.npmjs.org/assert-plus 82ms (from cache) 2183 silly pacote range manifest for is-data-descriptor@^0.1.4 fetched in 2ms 2184 silly pacote range manifest for assert-plus@^1.0.0 fetched in 84ms 2185 silly pacote range manifest for kind-of@^5.0.0 fetched in 1ms 2186 http fetch GET 304 https://registry.npmjs.org/sshpk 88ms (from cache) 2187 silly pacote range manifest for sshpk@^1.7.0 fetched in 90ms 2188 http fetch GET 304 https://registry.npmjs.org/jsprim 101ms (from cache) 2189 http fetch GET 304 https://registry.npmjs.org/asynckit 90ms (from cache) 2190 silly pacote range manifest for jsprim@^1.2.2 fetched in 102ms 2191 silly pacote range manifest for asynckit@^0.4.0 fetched in 92ms 2192 http fetch GET 304 https://registry.npmjs.org/socks 96ms (from cache) 2193 http fetch GET 304 https://registry.npmjs.org/psl 96ms (from cache) 2194 silly pacote range manifest for socks@^2.6.1 fetched in 98ms 2195 silly pacote range manifest for psl@^1.1.28 fetched in 99ms 2196 http fetch GET 304 https://registry.npmjs.org/is-buffer 86ms (from cache) 2197 silly pacote range manifest for is-buffer@^1.1.5 fetched in 88ms 2198 http fetch GET 304 https://registry.npmjs.org/css-what 106ms (from cache) 2199 silly pacote range manifest for css-what@^5.0.0 fetched in 109ms 2200 http fetch GET 304 https://registry.npmjs.org/boolbase 112ms (from cache) 2201 silly pacote range manifest for boolbase@^1.0.0 fetched in 113ms 2202 http fetch GET 304 https://registry.npmjs.org/domhandler 88ms (from cache) 2203 silly pacote range manifest for domhandler@^4.2.0 fetched in 91ms 2204 http fetch GET 304 https://registry.npmjs.org/domutils 99ms (from cache) 2205 silly pacote range manifest for domutils@^2.6.0 fetched in 101ms 2206 http fetch GET 304 https://registry.npmjs.org/nth-check 110ms (from cache) 2207 silly pacote range manifest for nth-check@^2.0.0 fetched in 112ms 2208 http fetch GET 304 https://registry.npmjs.org/get-value 83ms (from cache) 2209 silly pacote range manifest for get-value@^2.0.6 fetched in 84ms 2210 http fetch GET 304 https://registry.npmjs.org/collection-visit 99ms (from cache) 2211 silly pacote range manifest for collection-visit@^1.0.0 fetched in 100ms 2212 http fetch GET 304 https://registry.npmjs.org/has-value 83ms (from cache) 2213 silly pacote range manifest for has-value@^1.0.0 fetched in 84ms 2214 http fetch GET 304 https://registry.npmjs.org/to-object-path 103ms (from cache) 2215 http fetch GET 304 https://registry.npmjs.org/union-value 86ms (from cache) 2216 silly pacote range manifest for to-object-path@^0.3.0 fetched in 105ms 2217 silly pacote range manifest for kind-of@^6.0.0 fetched in 0ms 2218 silly pacote range manifest for union-value@^1.0.0 fetched in 88ms 2219 http fetch GET 304 https://registry.npmjs.org/set-value 111ms (from cache) 2220 silly pacote range manifest for once@^1.3.1 fetched in 2ms 2221 silly pacote range manifest for set-value@^2.0.0 fetched in 113ms 2222 http fetch GET 304 https://registry.npmjs.org/unset-value 85ms (from cache) 2223 silly pacote range manifest for unset-value@^1.0.0 fetched in 86ms 2224 silly pacote range manifest for is-fullwidth-code-point@^1.0.0 fetched in 2ms 2225 silly pacote range manifest for strip-ansi@^3.0.0 fetched in 1ms 2226 silly pacote range manifest for ms@^2.0.0 fetched in 1ms 2227 silly pacote range manifest for string-width@^1.0.2 || 2 fetched in 1ms 2228 http fetch GET 304 https://registry.npmjs.org/static-extend 101ms (from cache) 2229 http fetch GET 304 https://registry.npmjs.org/arr-union 104ms (from cache) 2230 silly pacote range manifest for static-extend@^0.1.1 fetched in 102ms 2231 silly pacote range manifest for arr-union@^3.1.0 fetched in 105ms 2232 http fetch GET 304 https://registry.npmjs.org/for-in 78ms (from cache) 2233 silly pacote range manifest for for-in@^1.0.2 fetched in 79ms 2234 silly pacote range manifest for safer-buffer@^2.0.2 fetched in 1ms 2235 http fetch GET 304 https://registry.npmjs.org/end-of-stream 85ms (from cache) 2236 silly pacote range manifest for end-of-stream@^1.1.0 fetched in 86ms 2237 http fetch GET 304 https://registry.npmjs.org/shebang-regex 92ms (from cache) 2238 silly pacote range manifest for shebang-regex@^1.0.0 fetched in 94ms 2239 http fetch GET 304 https://registry.npmjs.org/asn1 89ms (from cache) 2240 silly pacote range manifest for asn1@~0.2.3 fetched in 92ms 2241 http fetch GET 304 https://registry.npmjs.org/getpass 93ms (from cache) 2242 silly pacote range manifest for getpass@^0.1.1 fetched in 95ms 2243 silly pacote version manifest for [email protected] fetched in 1ms 2244 http fetch GET 304 https://registry.npmjs.org/jsbn 102ms (from cache) 2245 silly pacote range manifest for jsbn@~0.1.0 fetched in 104ms 2246 http fetch GET 304 https://registry.npmjs.org/code-point-at 159ms (from cache) 2247 silly pacote range manifest for code-point-at@^1.0.0 fetched in 160ms 2248 http fetch GET 304 https://registry.npmjs.org/dashdash 127ms (from cache) 2249 silly pacote range manifest for dashdash@^1.12.0 fetched in 129ms 2250 http fetch GET 304 https://registry.npmjs.org/tweetnacl 100ms (from cache) 2251 http fetch GET 304 https://registry.npmjs.org/ecc-jsbn 91ms (from cache) 2252 silly pacote range manifest for ecc-jsbn@~0.1.1 fetched in 92ms 2253 silly pacote range manifest for tweetnacl@~0.14.0 fetched in 102ms 2254 http fetch GET 304 https://registry.npmjs.org/bcrypt-pbkdf 120ms (from cache) 2255 silly pacote range manifest for bcrypt-pbkdf@^1.0.0 fetched in 122ms 2256 http fetch GET 304 https://registry.npmjs.org/json-schema 117ms (from cache) 2257 silly pacote version manifest for [email protected] fetched in 119ms 2258 http fetch GET 304 https://registry.npmjs.org/domelementtype 86ms (from cache) 2259 http fetch GET 304 https://registry.npmjs.org/smart-buffer 108ms (from cache) 2260 silly pacote range manifest for domelementtype@^2.2.0 fetched in 87ms 2261 silly pacote range manifest for smart-buffer@^4.1.0 fetched in 110ms 2262 silly pacote range manifest for is-extendable@^0.1.1 fetched in 1ms 2263 silly pacote range manifest for set-value@^2.0.1 fetched in 1ms 2264 silly pacote range manifest for is-plain-object@^2.0.3 fetched in 1ms 2265 silly pacote range manifest for split-string@^3.0.1 fetched in 1ms 2266 silly pacote range manifest for has-value@^0.3.1 fetched in 1ms 2267 http fetch GET 304 https://registry.npmjs.org/dom-serializer 96ms (from cache) 2268 silly pacote range manifest for dom-serializer@^1.0.1 fetched in 98ms 2269 silly pacote range manifest for strip-ansi@^4.0.0 fetched in 2ms 2270 http fetch GET 304 https://registry.npmjs.org/extsprintf 158ms (from cache) 2271 silly pacote version manifest for [email protected] fetched in 159ms 2272 silly pacote range manifest for once@^1.4.0 fetched in 1ms 2273 silly pacote range manifest for safer-buffer@~2.1.0 fetched in 1ms 2274 silly pacote range manifest for safer-buffer@^2.1.0 fetched in 0ms 2275 silly pacote range manifest for tweetnacl@^0.14.3 fetched in 1ms 2276 silly pacote range manifest for get-value@^2.0.3 fetched in 1ms 2277 http fetch GET 304 https://registry.npmjs.org/map-visit 102ms (from cache) 2278 silly pacote range manifest for map-visit@^1.0.0 fetched in 104ms 2279 silly pacote range manifest for isobject@^2.0.0 fetched in 2ms 2280 silly pacote range manifest for domelementtype@^2.0.1 fetched in 1ms 2281 http fetch GET 304 https://registry.npmjs.org/verror 181ms (from cache) 2282 silly pacote version manifest for [email protected] fetched in 183ms 2283 silly pacote range manifest for ansi-regex@^3.0.0 fetched in 1ms 2284 silly pacote version manifest for [email protected] fetched in 1ms 2285 silly pacote version manifest for [email protected] fetched in 1ms 2286 silly pacote range manifest for extsprintf@^1.2.0 fetched in 1ms 2287 http fetch GET 304 https://registry.npmjs.org/object-visit 86ms (from cache) 2288 silly pacote range manifest for object-visit@^1.0.0 fetched in 87ms 2289 http fetch GET 304 https://registry.npmjs.org/has-values 91ms (from cache) 2290 silly pacote range manifest for has-values@^1.0.0 fetched in 93ms 2291 silly pacote range manifest for kind-of@^4.0.0 fetched in 2ms 2292 http fetch GET 304 https://registry.npmjs.org/object-copy 102ms (from cache) 2293 silly pacote range manifest for object-copy@^0.1.0 fetched in 104ms 2294 silly pacote range manifest for kind-of@^3.0.3 fetched in 2ms 2295 http fetch GET 304 https://registry.npmjs.org/has-values 104ms (from cache) 2296 http fetch GET 304 https://registry.npmjs.org/number-is-nan 119ms (from cache) 2297 silly pacote range manifest for has-values@^0.1.4 fetched in 105ms 2298 silly pacote range manifest for number-is-nan@^1.0.0 fetched in 120ms 2299 http fetch GET 304 https://registry.npmjs.org/entities 74ms (from cache) 2300 silly pacote range manifest for entities@^2.0.0 fetched in 76ms 2301 http fetch GET 304 https://registry.npmjs.org/copy-descriptor 97ms (from cache) 2302 silly pacote range manifest for copy-descriptor@^0.1.0 fetched in 99ms 2303 http fetch GET 200 https://registry.npmjs.org/mdn-data 927ms 2304 silly pacote version manifest for [email protected] fetched in 929ms 2305 timing npm Completed in 398442ms 2306 error cb() never called! 2307 error This is an error with npm itself. Please report this error at: 2308 error &lt;https://npm.community&gt; </code></pre></div>
0
<p dir="auto">At present, the draw order order in 3D plots is determined exclusively by sorting the values returned by calling do_3d_projection() in each collection/patch:<br> </p><div class="Box Box--condensed my-2"> <div class="Box-header f6"> <p class="mb-0 text-bold"> <a href="https://github.com/matplotlib/matplotlib/blob/40583b0722fbc5f01bd9e74be84e29cea30ec3a2/lib/mpl_toolkits/mplot3d/axes3d.py#L294-L307">matplotlib/lib/mpl_toolkits/mplot3d/axes3d.py</a> </p> <p class="mb-0 color-fg-muted"> Lines 294 to 307 in <a data-pjax="true" class="commit-tease-sha" href="/matplotlib/matplotlib/commit/40583b0722fbc5f01bd9e74be84e29cea30ec3a2">40583b0</a> </p> </div> <div itemprop="text" class="Box-body p-0 blob-wrapper blob-wrapper-embedded data"> <table class="highlight tab-size mb-0 js-file-line-container" data-tab-size="8" data-paste-markdown-skip=""> <tbody><tr class="border-0"> <td id="L294" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="294"></td> <td id="LC294" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c"># Calculate projection of collections and patches and zorder them.</span> </td> </tr> <tr class="border-0"> <td id="L295" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="295"></td> <td id="LC295" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c"># Make sure they are drawn above the grids.</span> </td> </tr> <tr class="border-0"> <td id="L296" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="296"></td> <td id="LC296" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-s1">zorder_offset</span> <span class="pl-c1">=</span> <span class="pl-en">max</span>(<span class="pl-s1">axis</span>.<span class="pl-en">get_zorder</span>() </td> </tr> <tr class="border-0"> <td id="L297" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="297"></td> <td id="LC297" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">for</span> <span class="pl-s1">axis</span> <span class="pl-c1">in</span> <span class="pl-s1">self</span>.<span class="pl-en">_get_axis_list</span>()) <span class="pl-c1">+</span> <span class="pl-c1">1</span> </td> </tr> <tr class="border-0"> <td id="L298" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="298"></td> <td id="LC298" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">for</span> <span class="pl-s1">i</span>, <span class="pl-s1">col</span> <span class="pl-c1">in</span> <span class="pl-en">enumerate</span>( </td> </tr> <tr class="border-0"> <td id="L299" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="299"></td> <td id="LC299" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-en">sorted</span>(<span class="pl-s1">self</span>.<span class="pl-s1">collections</span>, </td> </tr> <tr class="border-0"> <td id="L300" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="300"></td> <td id="LC300" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-s1">key</span><span class="pl-c1">=</span><span class="pl-k">lambda</span> <span class="pl-s1">col</span>: <span class="pl-s1">col</span>.<span class="pl-en">do_3d_projection</span>(<span class="pl-s1">renderer</span>), </td> </tr> <tr class="border-0"> <td id="L301" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="301"></td> <td id="LC301" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-s1">reverse</span><span class="pl-c1">=</span><span class="pl-c1">True</span>)): </td> </tr> <tr class="border-0"> <td id="L302" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="302"></td> <td id="LC302" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-s1">col</span>.<span class="pl-s1">zorder</span> <span class="pl-c1">=</span> <span class="pl-s1">zorder_offset</span> <span class="pl-c1">+</span> <span class="pl-s1">i</span> </td> </tr> <tr class="border-0"> <td id="L303" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="303"></td> <td id="LC303" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">for</span> <span class="pl-s1">i</span>, <span class="pl-s1">patch</span> <span class="pl-c1">in</span> <span class="pl-en">enumerate</span>( </td> </tr> <tr class="border-0"> <td id="L304" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="304"></td> <td id="LC304" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-en">sorted</span>(<span class="pl-s1">self</span>.<span class="pl-s1">patches</span>, </td> </tr> <tr class="border-0"> <td id="L305" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="305"></td> <td id="LC305" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-s1">key</span><span class="pl-c1">=</span><span class="pl-k">lambda</span> <span class="pl-s1">patch</span>: <span class="pl-s1">patch</span>.<span class="pl-en">do_3d_projection</span>(<span class="pl-s1">renderer</span>), </td> </tr> <tr class="border-0"> <td id="L306" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="306"></td> <td id="LC306" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-s1">reverse</span><span class="pl-c1">=</span><span class="pl-c1">True</span>)): </td> </tr> <tr class="border-0"> <td id="L307" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="307"></td> <td id="LC307" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-s1">patch</span>.<span class="pl-s1">zorder</span> <span class="pl-c1">=</span> <span class="pl-s1">zorder_offset</span> <span class="pl-c1">+</span> <span class="pl-s1">i</span> </td> </tr> </tbody></table> </div> </div> <p></p> <p dir="auto">However, this sorting is not always ideal and a common issue reported by users. I'd propose adding a "force_zorder" optional parameter to Axes3D (defaulting to False) that would ignore the above calculation and instead use the zorder already stored in each collection/patch, i.e.</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="if self.force_zorder: for col in self.collections: col.zorder = zorder_offset + col.zorder for patch in self.patches: patch.zorder = zorder_offset + patch.zorder else: # current code"><pre class="notranslate"><span class="pl-k">if</span> <span class="pl-s1">self</span>.<span class="pl-s1">force_zorder</span>: <span class="pl-k">for</span> <span class="pl-s1">col</span> <span class="pl-c1">in</span> <span class="pl-s1">self</span>.<span class="pl-s1">collections</span>: <span class="pl-s1">col</span>.<span class="pl-s1">zorder</span> <span class="pl-c1">=</span> <span class="pl-s1">zorder_offset</span> <span class="pl-c1">+</span> <span class="pl-s1">col</span>.<span class="pl-s1">zorder</span> <span class="pl-k">for</span> <span class="pl-s1">patch</span> <span class="pl-c1">in</span> <span class="pl-s1">self</span>.<span class="pl-s1">patches</span>: <span class="pl-s1">patch</span>.<span class="pl-s1">zorder</span> <span class="pl-c1">=</span> <span class="pl-s1">zorder_offset</span> <span class="pl-c1">+</span> <span class="pl-s1">patch</span>.<span class="pl-s1">zorder</span> <span class="pl-k">else</span>: <span class="pl-c"># current code</span></pre></div> <p dir="auto">This keeps existing behavior as default, but allows users to override that behavior. This does allow users to specify duplicate or negative zorders, as they can in 2D plots, but that hasn't generated errors in my testing.</p> <p dir="auto">However, not being at all familiar with the deeper workings, I'd rather get comments/concerns from the matplotlib maintainers and contributors before setting off to produce a full pull request.</p> <p dir="auto">Thanks!</p>
<h3 dir="auto">Bug report</h3> <p dir="auto"><strong>Bug summary</strong></p> <p dir="auto">ImageGrid seems to be broken on 3.0.0?</p> <p dir="auto"><strong>Code for reproduction</strong></p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="f = plt.figure() grid = ImageGrid(f, 111, nrows_ncols=(2, 2), direction='column', label_mode=&quot;L&quot;, cbar_location=&quot;right&quot;, cbar_mode=&quot;single&quot;, cbar_size=&quot;5%&quot;, cbar_pad=&quot;3%&quot; ) axarr = np.array(grid).reshape(2, 2) for ax in axarr.flatten(): m = ax.imshow(np.random.random(15**2).reshape((15, 15))+0.5, norm=LogNorm(vmax=2, vmin=0.5), cmap='coolwarm') plt.colorbar(m, cax=grid.cbar_axes[0], format=FormatStrFormatter('%.2f'))"><pre class="notranslate"><span class="pl-s1">f</span> <span class="pl-c1">=</span> <span class="pl-s1">plt</span>.<span class="pl-en">figure</span>() <span class="pl-s1">grid</span> <span class="pl-c1">=</span> <span class="pl-v">ImageGrid</span>(<span class="pl-s1">f</span>, <span class="pl-c1">111</span>, <span class="pl-s1">nrows_ncols</span><span class="pl-c1">=</span>(<span class="pl-c1">2</span>, <span class="pl-c1">2</span>), <span class="pl-s1">direction</span><span class="pl-c1">=</span><span class="pl-s">'column'</span>, <span class="pl-s1">label_mode</span><span class="pl-c1">=</span><span class="pl-s">"L"</span>, <span class="pl-s1">cbar_location</span><span class="pl-c1">=</span><span class="pl-s">"right"</span>, <span class="pl-s1">cbar_mode</span><span class="pl-c1">=</span><span class="pl-s">"single"</span>, <span class="pl-s1">cbar_size</span><span class="pl-c1">=</span><span class="pl-s">"5%"</span>, <span class="pl-s1">cbar_pad</span><span class="pl-c1">=</span><span class="pl-s">"3%"</span> ) <span class="pl-s1">axarr</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">array</span>(<span class="pl-s1">grid</span>).<span class="pl-en">reshape</span>(<span class="pl-c1">2</span>, <span class="pl-c1">2</span>) <span class="pl-k">for</span> <span class="pl-s1">ax</span> <span class="pl-c1">in</span> <span class="pl-s1">axarr</span>.<span class="pl-en">flatten</span>(): <span class="pl-s1">m</span> <span class="pl-c1">=</span> <span class="pl-s1">ax</span>.<span class="pl-en">imshow</span>(<span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">random</span>(<span class="pl-c1">15</span><span class="pl-c1">**</span><span class="pl-c1">2</span>).<span class="pl-en">reshape</span>((<span class="pl-c1">15</span>, <span class="pl-c1">15</span>))<span class="pl-c1">+</span><span class="pl-c1">0.5</span>, <span class="pl-s1">norm</span><span class="pl-c1">=</span><span class="pl-v">LogNorm</span>(<span class="pl-s1">vmax</span><span class="pl-c1">=</span><span class="pl-c1">2</span>, <span class="pl-s1">vmin</span><span class="pl-c1">=</span><span class="pl-c1">0.5</span>), <span class="pl-s1">cmap</span><span class="pl-c1">=</span><span class="pl-s">'coolwarm'</span>) <span class="pl-s1">plt</span>.<span class="pl-en">colorbar</span>(<span class="pl-s1">m</span>, <span class="pl-s1">cax</span><span class="pl-c1">=</span><span class="pl-s1">grid</span>.<span class="pl-s1">cbar_axes</span>[<span class="pl-c1">0</span>], <span class="pl-s1">format</span><span class="pl-c1">=</span><span class="pl-v">FormatStrFormatter</span>(<span class="pl-s">'%.2f'</span>))</pre></div> <p dir="auto"><strong>Actual outcome</strong><br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/2895034/46876325-f1cafa00-ce35-11e8-955e-c4ae429dd9c0.png"><img src="https://user-images.githubusercontent.com/2895034/46876325-f1cafa00-ce35-11e8-955e-c4ae429dd9c0.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto"><strong>Expected outcome</strong><br> From 2.2.2<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/2895034/46876255-c3e5b580-ce35-11e8-837e-5880a42bf4f4.png"><img src="https://user-images.githubusercontent.com/2895034/46876255-c3e5b580-ce35-11e8-837e-5880a42bf4f4.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">Note: if I remove all colorbar-related code, it again looks weird, but in a different way:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="f = plt.figure() grid = ImageGrid(f, 111, nrows_ncols=(2, 2), direction='column', label_mode=&quot;L&quot;, ) axarr = np.array(grid).reshape(2, 2) for ax in axarr.flatten(): m = ax.imshow(np.random.random(15**2).reshape((15, 15))+0.5, norm=LogNorm(vmax=2, vmin=0.5), cmap='coolwarm')"><pre class="notranslate"><span class="pl-s1">f</span> <span class="pl-c1">=</span> <span class="pl-s1">plt</span>.<span class="pl-en">figure</span>() <span class="pl-s1">grid</span> <span class="pl-c1">=</span> <span class="pl-v">ImageGrid</span>(<span class="pl-s1">f</span>, <span class="pl-c1">111</span>, <span class="pl-s1">nrows_ncols</span><span class="pl-c1">=</span>(<span class="pl-c1">2</span>, <span class="pl-c1">2</span>), <span class="pl-s1">direction</span><span class="pl-c1">=</span><span class="pl-s">'column'</span>, <span class="pl-s1">label_mode</span><span class="pl-c1">=</span><span class="pl-s">"L"</span>, ) <span class="pl-s1">axarr</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">array</span>(<span class="pl-s1">grid</span>).<span class="pl-en">reshape</span>(<span class="pl-c1">2</span>, <span class="pl-c1">2</span>) <span class="pl-k">for</span> <span class="pl-s1">ax</span> <span class="pl-c1">in</span> <span class="pl-s1">axarr</span>.<span class="pl-en">flatten</span>(): <span class="pl-s1">m</span> <span class="pl-c1">=</span> <span class="pl-s1">ax</span>.<span class="pl-en">imshow</span>(<span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">random</span>(<span class="pl-c1">15</span><span class="pl-c1">**</span><span class="pl-c1">2</span>).<span class="pl-en">reshape</span>((<span class="pl-c1">15</span>, <span class="pl-c1">15</span>))<span class="pl-c1">+</span><span class="pl-c1">0.5</span>, <span class="pl-s1">norm</span><span class="pl-c1">=</span><span class="pl-v">LogNorm</span>(<span class="pl-s1">vmax</span><span class="pl-c1">=</span><span class="pl-c1">2</span>, <span class="pl-s1">vmin</span><span class="pl-c1">=</span><span class="pl-c1">0.5</span>), <span class="pl-s1">cmap</span><span class="pl-c1">=</span><span class="pl-s">'coolwarm'</span>)</pre></div> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/2895034/46876557-89304d00-ce36-11e8-88ab-3f22f63941b6.png"><img src="https://user-images.githubusercontent.com/2895034/46876557-89304d00-ce36-11e8-88ab-3f22f63941b6.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">Seems like maybe all axes take up the whole figure, and so cover the rest?.. Just a guess.</p> <p dir="auto"><strong>Matplotlib version</strong></p> <ul dir="auto"> <li>Operating system: Ubuntu 16.04</li> <li>Matplotlib version: 3.0.0</li> <li>Matplotlib backend (<code class="notranslate">print(matplotlib.get_backend())</code>): inline</li> <li>Python version: 3.5.2</li> <li>Jupyter version (if applicable): Jupyter Lab 0.33.6</li> </ul>
0
<p dir="auto">Hi ,<br> I follow steps in : <a href="https://github.com/tensorflow/tensorflow/tree/master/tensorflow/contrib/lite">https://github.com/tensorflow/tensorflow/tree/master/tensorflow/contrib/lite</a> to build tensoflowlite from sources.</p> <p dir="auto">trying run output demo apk on Google Pixel 2 create crash :</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="03-07 06:09:44.739 22823-22837/? I/Adreno: ESXAPILOG: API logging initialized: Name = com.example.android.tflitecamerademo, PID = 22823 03-07 06:09:44.744 22823-22823/? W/linker: /data/app/com.example.android.tflitecamerademo-qSwQ-3Ztm2MtPAw8Lu3x4A==/lib/arm64/libtensorflowlite_jni.so: is missing DT_SONAME will use basename as a replacement: &quot;libtensorflowlite_jni.so&quot; 03-07 06:09:44.744 22823-22823/? W/System.err: TensorFlowLite: failed to load native library: dlopen failed: cannot locate symbol &quot;_ZN6tflite14getCurrentTimeEv&quot; referenced by &quot;/data/app/com.example.android.tflitecamerademo-qSwQ-3Ztm2MtPAw8Lu3x4A==/lib/arm64/libtensorflowlite_jni.so&quot;... 03-07 06:09:44.745 22823-22823/? W/linker: /data/app/com.example.android.tflitecamerademo-qSwQ-3Ztm2MtPAw8Lu3x4A==/lib/arm64/libtensorflowlite_jni.so: is missing DT_SONAME will use basename as a replacement: &quot;libtensorflowlite_jni.so&quot; 03-07 06:09:44.745 22823-22823/? W/System.err: TensorFlowLite: failed to load native library: dlopen failed: cannot locate symbol &quot;_ZN6tflite14getCurrentTimeEv&quot; referenced by &quot;/data/app/com.example.android.tflitecamerademo-qSwQ-3Ztm2MtPAw8Lu3x4A==/lib/arm64/libtensorflowlite_jni.so&quot;... 03-07 06:09:44.745 22823-22823/? E/zygote64: No implementation found for long org.tensorflow.lite.NativeInterpreterWrapper.createErrorReporter(int) (tried Java_org_tensorflow_lite_NativeInterpreterWrapper_createErrorReporter and Java_org_tensorflow_lite_NativeInterpreterWrapper_createErrorReporter__I) 03-07 06:09:44.745 22823-22823/? D/AndroidRuntime: Shutting down VM 03-07 06:09:44.746 22823-22823/? E/AndroidRuntime: FATAL EXCEPTION: main Process: com.example.android.tflitecamerademo, PID: 22823 java.lang.UnsatisfiedLinkError: No implementation found for long org.tensorflow.lite.NativeInterpreterWrapper.createErrorReporter(int) (tried Java_org_tensorflow_lite_NativeInterpreterWrapper_createErrorReporter and Java_org_tensorflow_lite_NativeInterpreterWrapper_createErrorReporter__I) at org.tensorflow.lite.NativeInterpreterWrapper.createErrorReporter(Native Method) at org.tensorflow.lite.NativeInterpreterWrapper.&lt;init&gt;(NativeInterpreterWrapper.java:48) at org.tensorflow.lite.Interpreter.&lt;init&gt;(Interpreter.java:77) at com.example.android.tflitecamerademo.ImageClassifier.&lt;init&gt;(ImageClassifier.java:87) at com.example.android.tflitecamerademo.ImageClassifierFloatIntel.&lt;init&gt;(ImageClassifierFloatIntel.java:50) at com.example.android.tflitecamerademo.CameraActivity.testImage(CameraActivity.java:71) at com.example.android.tflitecamerademo.CameraActivity.onCreate(CameraActivity.java:36) at android.app.Activity.performCreate(Activity.java:6999) at android.app.Activity.performCreate(Activity.java:6990) at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1214) at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2731) at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2856) at android.app.ActivityThread.-wrap11(Unknown Source:0) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1589) at android.os.Handler.dispatchMessage(Handler.java:106) at android.os.Looper.loop(Looper.java:164) at android.app.ActivityThread.main(ActivityThread.java:6494) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:438) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:807)"><pre class="notranslate"><code class="notranslate">03-07 06:09:44.739 22823-22837/? I/Adreno: ESXAPILOG: API logging initialized: Name = com.example.android.tflitecamerademo, PID = 22823 03-07 06:09:44.744 22823-22823/? W/linker: /data/app/com.example.android.tflitecamerademo-qSwQ-3Ztm2MtPAw8Lu3x4A==/lib/arm64/libtensorflowlite_jni.so: is missing DT_SONAME will use basename as a replacement: "libtensorflowlite_jni.so" 03-07 06:09:44.744 22823-22823/? W/System.err: TensorFlowLite: failed to load native library: dlopen failed: cannot locate symbol "_ZN6tflite14getCurrentTimeEv" referenced by "/data/app/com.example.android.tflitecamerademo-qSwQ-3Ztm2MtPAw8Lu3x4A==/lib/arm64/libtensorflowlite_jni.so"... 03-07 06:09:44.745 22823-22823/? W/linker: /data/app/com.example.android.tflitecamerademo-qSwQ-3Ztm2MtPAw8Lu3x4A==/lib/arm64/libtensorflowlite_jni.so: is missing DT_SONAME will use basename as a replacement: "libtensorflowlite_jni.so" 03-07 06:09:44.745 22823-22823/? W/System.err: TensorFlowLite: failed to load native library: dlopen failed: cannot locate symbol "_ZN6tflite14getCurrentTimeEv" referenced by "/data/app/com.example.android.tflitecamerademo-qSwQ-3Ztm2MtPAw8Lu3x4A==/lib/arm64/libtensorflowlite_jni.so"... 03-07 06:09:44.745 22823-22823/? E/zygote64: No implementation found for long org.tensorflow.lite.NativeInterpreterWrapper.createErrorReporter(int) (tried Java_org_tensorflow_lite_NativeInterpreterWrapper_createErrorReporter and Java_org_tensorflow_lite_NativeInterpreterWrapper_createErrorReporter__I) 03-07 06:09:44.745 22823-22823/? D/AndroidRuntime: Shutting down VM 03-07 06:09:44.746 22823-22823/? E/AndroidRuntime: FATAL EXCEPTION: main Process: com.example.android.tflitecamerademo, PID: 22823 java.lang.UnsatisfiedLinkError: No implementation found for long org.tensorflow.lite.NativeInterpreterWrapper.createErrorReporter(int) (tried Java_org_tensorflow_lite_NativeInterpreterWrapper_createErrorReporter and Java_org_tensorflow_lite_NativeInterpreterWrapper_createErrorReporter__I) at org.tensorflow.lite.NativeInterpreterWrapper.createErrorReporter(Native Method) at org.tensorflow.lite.NativeInterpreterWrapper.&lt;init&gt;(NativeInterpreterWrapper.java:48) at org.tensorflow.lite.Interpreter.&lt;init&gt;(Interpreter.java:77) at com.example.android.tflitecamerademo.ImageClassifier.&lt;init&gt;(ImageClassifier.java:87) at com.example.android.tflitecamerademo.ImageClassifierFloatIntel.&lt;init&gt;(ImageClassifierFloatIntel.java:50) at com.example.android.tflitecamerademo.CameraActivity.testImage(CameraActivity.java:71) at com.example.android.tflitecamerademo.CameraActivity.onCreate(CameraActivity.java:36) at android.app.Activity.performCreate(Activity.java:6999) at android.app.Activity.performCreate(Activity.java:6990) at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1214) at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2731) at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2856) at android.app.ActivityThread.-wrap11(Unknown Source:0) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1589) at android.os.Handler.dispatchMessage(Handler.java:106) at android.os.Looper.loop(Looper.java:164) at android.app.ActivityThread.main(ActivityThread.java:6494) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:438) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:807) </code></pre></div> <p dir="auto">Build command : bazel build --cxxopt=--std=c++11 //tensorflow/contrib/lite/java/demo/app/src/main:TfLiteCameraDemo --config=android_arm64 --cpu=arm64-v8a --fat_apk_cpu=arm64-v8a</p> <p dir="auto">Tensorflow WORKSPACE file changes:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# Uncomment and update the paths in these entries to build the Android demo. android_sdk_repository( name = &quot;androidsdk&quot;, api_level = 27, # Ensure that you have the build_tools_version below installed in the # SDK manager as it updates periodically. build_tools_version = &quot;27.0.3&quot;, # Replace with path to Android SDK on your system path = &quot;/home/XXX/Android/Sdk/&quot;, ) android_ndk_repository( name=&quot;androidndk&quot;, path=&quot;/home/dnozik/Code/Tensorflow/android-ndk-r14b/&quot;, # This needs to be 14 or higher to compile TensorFlow. # # Please specify API level to &gt;= 21 to build for 64-bit # # archtectures or the Android NDK will automatically select biggest # # API level that it supports without notice. # # Note that the NDK version is not the API level. api_level=27)"><pre class="notranslate"><code class="notranslate"># Uncomment and update the paths in these entries to build the Android demo. android_sdk_repository( name = "androidsdk", api_level = 27, # Ensure that you have the build_tools_version below installed in the # SDK manager as it updates periodically. build_tools_version = "27.0.3", # Replace with path to Android SDK on your system path = "/home/XXX/Android/Sdk/", ) android_ndk_repository( name="androidndk", path="/home/dnozik/Code/Tensorflow/android-ndk-r14b/", # This needs to be 14 or higher to compile TensorFlow. # # Please specify API level to &gt;= 21 to build for 64-bit # # archtectures or the Android NDK will automatically select biggest # # API level that it supports without notice. # # Note that the NDK version is not the API level. api_level=27) </code></pre></div> <p dir="auto">Symbols:<br> XXX@XXX-VirtualBox:~/Code$ nm -S libtensorflowlite_jni.so<br> nm: libtensorflowlite_jni.so: no symbols</p> <p dir="auto">Thanks for help.</p>
<p dir="auto">It would be nice to be able to append or remove samples to or from an existing set of samples saved in a tfrecords file. Otherwise the file has to be duplicated, which is unpractical for datasets &gt;&gt; 1TB.<br> Formulated in a more generalized way, this can also be seen as splitting and concatenating tfrecord files.</p>
0
<p dir="auto">JavaScript file at <a href="https://deno.land/x/once/index.js" rel="nofollow">https://deno.land/x/once/index.js</a> has a Triple-Slash Directive that define location of TypeScript definition:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="/// &lt;reference types=&quot;./index.d.ts&quot; /&gt;"><pre class="notranslate"><span class="pl-c">/// &lt;reference types="./index.d.ts" /&gt;</span></pre></div> <p dir="auto">When I run <code class="notranslate">deno fetch --reload https://deno.land/x/once/index.js</code>, I expect Deno to also fetch <code class="notranslate">index.d.ts</code> but it does not.</p> <hr> <p dir="auto">This issue was suspected to be the cause of <a href="https://github.com/axetroy/vscode-deno/issues/102">https://github.com/axetroy/vscode-deno/issues/102</a>.</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ deno fetch https://cdn.pika.dev/date-fns Download https://cdn.pika.dev/date-fns Download https://cdn.pika.dev/-/[email protected]/dist=es2019/date-fns.js"><pre class="notranslate">$ deno fetch https://cdn.pika.dev/date-fns Download https://cdn.pika.dev/date-fns Download https://cdn.pika.dev/-/[email protected]/dist=es2019/date-fns.js</pre></div> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ deno run mod.ts Compile file:///Users/name/gpm/github.com/axetroy/deno_dnx/mod.ts Download https://cdn.pika.dev/date-fns Download https://cdn.pika.dev/-/[email protected]/dist=es2019/date-fns.js Download https://cdn.pika.dev/-/[email protected]/dist=es2019/types/index.d.ts Download https://cdn.pika.dev/-/[email protected]/dist=es2019/types/index.d.ts"><pre class="notranslate">$ deno run mod.ts Compile file:///Users/name/gpm/github.com/axetroy/deno_dnx/mod.ts Download https://cdn.pika.dev/date-fns Download https://cdn.pika.dev/-/[email protected]/dist=es2019/date-fns.js Download https://cdn.pika.dev/-/[email protected]/dist=es2019/types/index.d.ts Download https://cdn.pika.dev/-/[email protected]/dist=es2019/types/index.d.ts</pre></div>
1
<p dir="auto">Currently lifetimes has little docs on manual, I found <strong>14 matches for "lifetime"</strong> on <a href="http://static.rust-lang.org/master/doc/rust.html" rel="nofollow">http://static.rust-lang.org/master/doc/rust.html</a></p> <p dir="auto">The <a href="http://static.rust-lang.org/doc/master/tutorial-borrowed-ptr.html#named-lifetimes" rel="nofollow">borrowed pointers tutorial mentions named lifetimes</a> but doesn't mention the apostrophe symbol, newcomers might get confused about that.</p> <p dir="auto">Same goes for manual, there's no mention to apostrophe, just some examples using <strong>'static</strong>. It also lacks grammar production.</p>
<p dir="auto">[NOTE: I misread <code class="notranslate">'</code> as a backtick ]<br> I've come across types with backticks aka `.</p> <p dir="auto">Examples (from memory, could be wrong):</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&amp;`a `static"><pre class="notranslate"><code class="notranslate">&amp;`a `static </code></pre></div> <p dir="auto">From reading <a href="http://smallcultfollowing.com/babysteps/pubs/2013.07.17-NEU.pdf" rel="nofollow">a presentation on memory</a> I guess one use is to denote lifetype scope (???).</p> <p dir="auto">Since the compiler gives type errors that use backtick, it would be great to have a section on them.</p>
1
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/aba6c7ac2675d077fc076a38bec8a9af4479cf0bebeb090ce682366884e30ea7/68747470733a2f2f73312e617832782e636f6d2f323031382f31322f31322f355164566b472e706e67"><img src="https://camo.githubusercontent.com/aba6c7ac2675d077fc076a38bec8a9af4479cf0bebeb090ce682366884e30ea7/68747470733a2f2f73312e617832782e636f6d2f323031382f31322f31322f355164566b472e706e67" alt="The effect I want is this" data-canonical-src="https://s1.ax2x.com/2018/12/12/5QdVkG.png" style="max-width: 100%;"></a></p> <p dir="auto">Can you give me some suggestions?<br> Thank you very much!</p>
<p dir="auto">Android's <code class="notranslate">EditText</code> and <code class="notranslate">TextView</code> both support rich text spans.<br> But in Flutter, only <code class="notranslate">RichText</code> widget support rich text spans.<br> <code class="notranslate">TextField</code> should support rich text spans natively using <code class="notranslate">TextSpan</code>.</p> <p dir="auto">Android example of using text span in edit text component:</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/3154529/40371551-51f279c2-5e00-11e8-9e0e-f923af4b4ecb.png"><img src="https://user-images.githubusercontent.com/3154529/40371551-51f279c2-5e00-11e8-9e0e-f923af4b4ecb.png" alt="image" style="max-width: 100%;"></a></p>
1
<p dir="auto">Describe what you were doing when the bug occurred:</p> <ol dir="auto"> <li>Click on Reload and start profiliing</li> <li>Click on Start profiling</li> <li>Click on Select next commit</li> </ol> <hr> <h2 dir="auto">Please do not remove the text below this line</h2> <p dir="auto">DevTools version: 4.7.0-23309eb38</p> <p dir="auto">Call stack: at N (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:164715)<br> at I (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:163849)<br> at e.getCommitTree (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:166664)<br> at Ul (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:342328)<br> at gi (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:62450)<br> at tl (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:71793)<br> at zl (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:113765)<br> at Ic (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:104502)<br> at Tc (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:104430)<br> at Dc (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:32:104298)</p> <p dir="auto">Component stack: at Ul (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:342099)<br> at div<br> at div<br> at div<br> at Co (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:263571)<br> at chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:366677<br> at n (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:276314)<br> at chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:278724<br> at div<br> at div<br> at Xi (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:325177)<br> at Ge (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:207026)<br> at sn (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:216342)<br> at Va (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:293773)<br> at us (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:371869)</p>
<p dir="auto">Describe what you were doing when the bug occurred:</p> <ol dir="auto"> <li>I was using the devtools to investigate some performance issues w/ an app I help maintain</li> <li>I had just turned on the "Record why each component rendered while profiling" checkbox</li> <li>I ran a profile while navigating on the underlying page</li> </ol> <p dir="auto">The react profiler tab in the devtools gave this error, I think as I clicked the record icon to stop recording the profile.</p> <hr> <h2 dir="auto">Please do not remove the text below this line</h2> <p dir="auto">DevTools version: 4.5.0-355970aa4</p> <p dir="auto">Call stack: at N (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:160881)<br> at j (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:160015)<br> at j (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:159939)<br> at j (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:159939)<br> at j (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:159939)<br> at j (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:159939)<br> at j (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:159939)<br> at j (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:159939)<br> at j (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:159939)<br> at j (chrome-extension://fmkadmapgofadopljbjfkapdkoienihi/build/main.js:40:159939)</p> <p dir="auto">Component stack: in ec<br> in div<br> in div<br> in div<br> in So<br> in Unknown<br> in n<br> in Unknown<br> in div<br> in div<br> in rl<br> in Ze<br> in fn<br> in Ga<br> in _s</p>
1
<p dir="auto"><code class="notranslate">git status</code> takes around 2 seconds to run on my large repository, the blue clock icon on git integration to indicate "working" can be quite visually distracting as it seems to ping the repo every 5-10 seconds.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/2193314/11287544/4a6665ac-8ed1-11e5-8b46-31fb323a658e.png"><img src="https://cloud.githubusercontent.com/assets/2193314/11287544/4a6665ac-8ed1-11e5-8b46-31fb323a658e.png" alt="git" style="max-width: 100%;"></a></p> <p dir="auto">I'm not so sure there is a benefit in indicating work unless the user explicitly requested it, such as when clicking the button.</p>
<p dir="auto">Several times now I've had mysteriously deleted files when doing a git pull in a console while Visual Studio Code is running. I've seen this roughly since version 0.10.</p> <p dir="auto">It seems that when auto-merging, Git is able to delete a file but not able to write the merged file back if it's open in Code. However that is just a hypothesis.</p> <p dir="auto">Seen the issue last with git version 1.9.5.msysgit.1 and Code 0.10.2.</p>
1
<p dir="auto">As far as I could tell, there is no place for the community to discuss tensorflow in realtime; the recommendations all seem to be about asking specific questions in a detailed async fashion.</p> <p dir="auto">It would be nice if there was a gitter.im or IRC channel for tensorflow so that the community could interact more easily. not even as a dedicated support channel.</p> <p dir="auto">There is already a gitter.im for skflow, but since fewer people know about skflow, let alone the gitter.im for it, it's pretty small: <a href="https://gitter.im/tensorflow/skflow" rel="nofollow">https://gitter.im/tensorflow/skflow</a></p> <p dir="auto">It would be even nicer if the channel was linked from the repo, but gitter.im is nice since it has some automatic discoverability if you're already familiar with gitter</p>
<p dir="auto">If we're in for the openess and effectiveness of the whole thing...</p> <p dir="auto">(1) Why not using gitter.im ?</p> <p dir="auto">I also believe we should have a discourse forums, which I'm more than willing to help / set up if you really need (just can't pay for it or move people from the mailing list without being official).</p> <p dir="auto">(2) Yes, discourse would be a <strong>perfect</strong> replacement for the mailing list <strong>and</strong> to this Issue tracker. :)</p>
1
<p dir="auto">When I use the scene with both InstancedMesh and normal Mesh, and set the scene.overrideMaterial =Depthmaterial; then object.instanceMatrix Is the undefined value, because normal Mesh does not have this property. In the setupVertexAttributes method of WebGLBindingStates, const attribute= attributes.get(object.instanceMatrix) On line 386, an exception is thrown. It is suggested to modify the get method of WebGLAttributes and add judgment:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="function get(attribute) { if (attribute === undefined) { return undefined; } if ( attribute.isInterleavedBufferAttribute ) { attribute = attribute.data ;} return buffers.get ( attribute ); }"><pre class="notranslate"><code class="notranslate">function get(attribute) { if (attribute === undefined) { return undefined; } if ( attribute.isInterleavedBufferAttribute ) { attribute = attribute.data ;} return buffers.get ( attribute ); } </code></pre></div>
<h5 dir="auto">Description of the problem</h5> <p dir="auto">I'm having a problem where the InstancedMesh method <code class="notranslate">setMatrixAt</code> seems to fail (the matrix positions doesn't change visually) whenever I add another object with the same material object (not a clone) in the scene. No log/warning/errors are emitted.</p> <p dir="auto">The following briefly illustrates:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" var geometry = new THREE.BoxBufferGeometry(); var material = new THREE.MeshStandardMaterial( { roughness: 0, envMap: texture }); var mesh1 = new THREE.Mesh( geometry, material ); mesh1.position.set(0, 1, 0); scene.add( mesh1 ); // removing this line makes the instanced mesh work as intended mesh = new THREE.InstancedMesh( geometry, material, 9 ); // same material usage scene.add( mesh ); // This works and I can see both meshes in the scene. var dummy = new THREE.Object3D(); dummy.position.set( 1, 5, 1 ); dummy.updateMatrix(); mesh.setMatrixAt( 0, dummy.matrix ); // Nope, doesn't work, it just stays where it's at. mesh.setMatrixAt( 1, dummy.matrix ); // Rotation seems to be applied, but position doesn't. // It looks like every instance is at the same place, but I don't know."><pre class="notranslate"> <span class="pl-k">var</span> <span class="pl-s1">geometry</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-c1">THREE</span><span class="pl-kos">.</span><span class="pl-c1">BoxBufferGeometry</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">var</span> <span class="pl-s1">material</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-c1">THREE</span><span class="pl-kos">.</span><span class="pl-c1">MeshStandardMaterial</span><span class="pl-kos">(</span> <span class="pl-kos">{</span> <span class="pl-c1">roughness</span>: <span class="pl-c1">0</span><span class="pl-kos">,</span> <span class="pl-c1">envMap</span>: <span class="pl-s1">texture</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">var</span> <span class="pl-s1">mesh1</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-c1">THREE</span><span class="pl-kos">.</span><span class="pl-c1">Mesh</span><span class="pl-kos">(</span> <span class="pl-s1">geometry</span><span class="pl-kos">,</span> <span class="pl-s1">material</span> <span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">mesh1</span><span class="pl-kos">.</span><span class="pl-c1">position</span><span class="pl-kos">.</span><span class="pl-en">set</span><span class="pl-kos">(</span><span class="pl-c1">0</span><span class="pl-kos">,</span> <span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-c1">0</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">scene</span><span class="pl-kos">.</span><span class="pl-en">add</span><span class="pl-kos">(</span> <span class="pl-s1">mesh1</span> <span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// removing this line makes the instanced mesh work as intended</span> <span class="pl-s1">mesh</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-c1">THREE</span><span class="pl-kos">.</span><span class="pl-c1">InstancedMesh</span><span class="pl-kos">(</span> <span class="pl-s1">geometry</span><span class="pl-kos">,</span> <span class="pl-s1">material</span><span class="pl-kos">,</span> <span class="pl-c1">9</span> <span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// same material usage</span> <span class="pl-s1">scene</span><span class="pl-kos">.</span><span class="pl-en">add</span><span class="pl-kos">(</span> <span class="pl-s1">mesh</span> <span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// This works and I can see both meshes in the scene.</span> <span class="pl-k">var</span> <span class="pl-s1">dummy</span> <span class="pl-c1">=</span> <span class="pl-k">new</span> <span class="pl-c1">THREE</span><span class="pl-kos">.</span><span class="pl-c1">Object3D</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">dummy</span><span class="pl-kos">.</span><span class="pl-c1">position</span><span class="pl-kos">.</span><span class="pl-en">set</span><span class="pl-kos">(</span> <span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-c1">5</span><span class="pl-kos">,</span> <span class="pl-c1">1</span> <span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">dummy</span><span class="pl-kos">.</span><span class="pl-en">updateMatrix</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">mesh</span><span class="pl-kos">.</span><span class="pl-en">setMatrixAt</span><span class="pl-kos">(</span> <span class="pl-c1">0</span><span class="pl-kos">,</span> <span class="pl-s1">dummy</span><span class="pl-kos">.</span><span class="pl-c1">matrix</span> <span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Nope, doesn't work, it just stays where it's at.</span> <span class="pl-s1">mesh</span><span class="pl-kos">.</span><span class="pl-en">setMatrixAt</span><span class="pl-kos">(</span> <span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-s1">dummy</span><span class="pl-kos">.</span><span class="pl-c1">matrix</span> <span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// Rotation seems to be applied, but position doesn't.</span> <span class="pl-c">// It looks like every instance is at the same place, but I don't know.</span></pre></div> <p dir="auto">Note that if I use material.clone() at the instanced mesh declaration, the problem also goes away / is fixed, but now I have two materials, and I intend to have one for performance reasons.</p> <p dir="auto">A live example is available here:</p> <ul dir="auto"> <li><a href="https://jsfiddle.net/ghmrdk4z/4/" rel="nofollow">jsfiddle</a> (The problem is that you should see multiple boxes, but only 1 or 2 are visible, remove line 41 to fix)</li> </ul> <h5 dir="auto">Three.js version</h5> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Dev</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> r109</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> r108</li> </ul> <h5 dir="auto">Browser</h5> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> All of them</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Chrome</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Firefox</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Internet Explorer</li> </ul> <h5 dir="auto">OS</h5> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> All of them</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Windows</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> macOS</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Linux</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Android</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> iOS</li> </ul> <h5 dir="auto">Hardware Requirements (graphics card, VR Device, ...)</h5> <p dir="auto">(Not applicable, as far as I know)</p>
1
<p dir="auto">Consider a series of quoted strings in an array in ruby:</p> <div class="highlight highlight-source-ruby notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="states = ['AL', 'AK', 'AZ', 'AR', 'CO', 'DE', 'FL', 'GA', 'HI', 'ID', 'IL', 'IN', 'IA', 'KS', 'KY', 'LA', 'ME', 'MD', 'MI', 'MN', 'MS', 'MO', 'MT', 'NE', 'NV', 'NH', 'NJ', 'NM', 'NY', 'NC', 'ND', 'OH', 'OK', 'OR', 'RI', 'SC', 'SD', 'TX', 'UT', 'VT', 'VA', 'WA', 'WV', 'WI', 'WY']"><pre class="notranslate"><span class="pl-s1">states</span> <span class="pl-c1">=</span> <span class="pl-kos">[</span><span class="pl-s">'AL'</span><span class="pl-kos">,</span> <span class="pl-s">'AK'</span><span class="pl-kos">,</span> <span class="pl-s">'AZ'</span><span class="pl-kos">,</span> <span class="pl-s">'AR'</span><span class="pl-kos">,</span> <span class="pl-s">'CO'</span><span class="pl-kos">,</span> <span class="pl-s">'DE'</span><span class="pl-kos">,</span> <span class="pl-s">'FL'</span><span class="pl-kos">,</span> <span class="pl-s">'GA'</span><span class="pl-kos">,</span> <span class="pl-s">'HI'</span><span class="pl-kos">,</span> <span class="pl-s">'ID'</span><span class="pl-kos">,</span> <span class="pl-s">'IL'</span><span class="pl-kos">,</span> <span class="pl-s">'IN'</span><span class="pl-kos">,</span> <span class="pl-s">'IA'</span><span class="pl-kos">,</span> <span class="pl-s">'KS'</span><span class="pl-kos">,</span> <span class="pl-s">'KY'</span><span class="pl-kos">,</span> <span class="pl-s">'LA'</span><span class="pl-kos">,</span> <span class="pl-s">'ME'</span><span class="pl-kos">,</span> <span class="pl-s">'MD'</span><span class="pl-kos">,</span> <span class="pl-s">'MI'</span><span class="pl-kos">,</span> <span class="pl-s">'MN'</span><span class="pl-kos">,</span> <span class="pl-s">'MS'</span><span class="pl-kos">,</span> <span class="pl-s">'MO'</span><span class="pl-kos">,</span> <span class="pl-s">'MT'</span><span class="pl-kos">,</span> <span class="pl-s">'NE'</span><span class="pl-kos">,</span> <span class="pl-s">'NV'</span><span class="pl-kos">,</span> <span class="pl-s">'NH'</span><span class="pl-kos">,</span> <span class="pl-s">'NJ'</span><span class="pl-kos">,</span> <span class="pl-s">'NM'</span><span class="pl-kos">,</span> <span class="pl-s">'NY'</span><span class="pl-kos">,</span> <span class="pl-s">'NC'</span><span class="pl-kos">,</span> <span class="pl-s">'ND'</span><span class="pl-kos">,</span> <span class="pl-s">'OH'</span><span class="pl-kos">,</span> <span class="pl-s">'OK'</span><span class="pl-kos">,</span> <span class="pl-s">'OR'</span><span class="pl-kos">,</span> <span class="pl-s">'RI'</span><span class="pl-kos">,</span> <span class="pl-s">'SC'</span><span class="pl-kos">,</span> <span class="pl-s">'SD'</span><span class="pl-kos">,</span> <span class="pl-s">'TX'</span><span class="pl-kos">,</span> <span class="pl-s">'UT'</span><span class="pl-kos">,</span> <span class="pl-s">'VT'</span><span class="pl-kos">,</span> <span class="pl-s">'VA'</span><span class="pl-kos">,</span> <span class="pl-s">'WA'</span><span class="pl-kos">,</span> <span class="pl-s">'WV'</span><span class="pl-kos">,</span> <span class="pl-s">'WI'</span><span class="pl-kos">,</span> <span class="pl-s">'WY'</span><span class="pl-kos">]</span></pre></div> <p dir="auto">In atom, if this list stopped at <code class="notranslate">MI</code> syntax highlighting would resume as normal. However, it acts as if the rest of the file has a single quote at the top:</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/49549/2928565/eb0b968c-d77e-11e3-934c-1b7c165ada03.gif"><img src="https://cloud.githubusercontent.com/assets/49549/2928565/eb0b968c-d77e-11e3-934c-1b7c165ada03.gif" alt="quote-bug" data-animated-image="" style="max-width: 100%;"></a></p> <p dir="auto">I'm using the <a href="https://atom.io/themes/tomorrow" rel="nofollow">Tomorrow theme</a> but it shows up in others as well. This also happens in python, but the quote limit is one less and only the rest of the line is unquoted. Same with C, although again the quote limit changes. Very odd.</p>
<p dir="auto">I opened a Python file with the following line (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="20976125" data-permission-text="Title is private" data-url="https://github.com/atom/atom/issues/963" data-hovercard-type="pull_request" data-hovercard-url="/atom/atom/pull/963/hovercard" href="https://github.com/atom/atom/pull/963">#963</a>):</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" PrintAndLog(u&quot;SSID: &quot; + RememberedNetwork[&quot;SSIDString&quot;].decode(&quot;utf-8&quot;) + u&quot; - BSSID: &quot; + RememberedNetwork[&quot;CachedScanRecord&quot;][&quot;BSSID&quot;] + u&quot; - RSSI: &quot; + str(RememberedNetwork[&quot;CachedScanRecord&quot;][&quot;RSSI&quot;]) + u&quot; - Last connected: &quot; + str(RememberedNetwork[&quot;LastConnected&quot;]) + u&quot; - Security type: &quot; + RememberedNetwork[&quot;SecurityType&quot;] + u&quot; - Geolocation: &quot; + Geolocation, &quot;INFO&quot;)"><pre class="notranslate"> <span class="pl-v">PrintAndLog</span>(<span class="pl-s">u"SSID: "</span> <span class="pl-c1">+</span> <span class="pl-v">RememberedNetwork</span>[<span class="pl-s">"SSIDString"</span>].<span class="pl-en">decode</span>(<span class="pl-s">"utf-8"</span>) <span class="pl-c1">+</span> <span class="pl-s">u" - BSSID: "</span> <span class="pl-c1">+</span> <span class="pl-v">RememberedNetwork</span>[<span class="pl-s">"CachedScanRecord"</span>][<span class="pl-s">"BSSID"</span>] <span class="pl-c1">+</span> <span class="pl-s">u" - RSSI: "</span> <span class="pl-c1">+</span> <span class="pl-en">str</span>(<span class="pl-v">RememberedNetwork</span>[<span class="pl-s">"CachedScanRecord"</span>][<span class="pl-s">"RSSI"</span>]) <span class="pl-c1">+</span> <span class="pl-s">u" - Last connected: "</span> <span class="pl-c1">+</span> <span class="pl-en">str</span>(<span class="pl-v">RememberedNetwork</span>[<span class="pl-s">"LastConnected"</span>]) <span class="pl-c1">+</span> <span class="pl-s">u" - Security type: "</span> <span class="pl-c1">+</span> <span class="pl-v">RememberedNetwork</span>[<span class="pl-s">"SecurityType"</span>] <span class="pl-c1">+</span> <span class="pl-s">u" - Geolocation: "</span> <span class="pl-c1">+</span> <span class="pl-v">Geolocation</span>, <span class="pl-s">"INFO"</span>)</pre></div> <p dir="auto">Which led to the following bug:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/e06069206d526a16adf21e84cd179f1185d3fb5e0f05fea4d4b4a08a978092f4/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f34343737342f323331333737382f37366262346262612d613330642d313165332d396136342d3831663666393163323563342e706e67"><img src="https://camo.githubusercontent.com/e06069206d526a16adf21e84cd179f1185d3fb5e0f05fea4d4b4a08a978092f4/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f34343737342f323331333737382f37366262346262612d613330642d313165332d396136342d3831663666393163323563342e706e67" alt="screen shot 2014-03-03 at 2 52 40 pm" data-canonical-src="https://f.cloud.github.com/assets/44774/2313778/76bb4bba-a30d-11e3-9a64-81f6f91c25c4.png" style="max-width: 100%;"></a></p> <p dir="auto">You can find this as the main file in <a href="https://github.com/jipegit/OSXAuditor/blob/master/osxauditor.py"><code class="notranslate">osxauditor.py</code></a>.</p>
1
<h1 dir="auto">Checklist</h1> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/issues?utf8=%E2%9C%93&amp;q=is%3Aissue+label%3A%22Issue+Type%3A+Feature+Request%22+">issues list</a><br> for similar or identical feature requests.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/pulls?utf8=%E2%9C%93&amp;q=is%3Apr+label%3A%22PR+Type%3A+Feature%22+">pull requests list</a><br> for existing proposed implementations of this feature.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/commits/master">commit log</a><br> to find out if the if the same feature was already implemented in the<br> master branch.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included all related issues and possible duplicate issues<br> in this issue (If there are none, check this box anyway).</li> </ul> <h2 dir="auto">Related Issues and Possible Duplicates</h2> <h4 dir="auto">Related Issues</h4> <ul dir="auto"> <li>None</li> </ul> <h4 dir="auto">Possible Duplicates</h4> <ul dir="auto"> <li>None</li> </ul> <h1 dir="auto">Brief Summary</h1> <p dir="auto">I need to have a possibility to override backend implementation in my project.</p> <p dir="auto"><a href="https://github.com/celery/celery/commit/169668b4cc61431c5162837d2fae740c1a765db7">Overriding backend implementation with Loader.override_backend</a> was introduced years ago. But there is no way to set <code class="notranslate">Loader.override_backends</code> member -- nor with celeryconfig nor with command line arguments or env variables -- it is always empty dict.</p> <p dir="auto">So my request is to add a possibility to set <code class="notranslate">Loader.override_backends</code> with celeryconfig.</p> <p dir="auto">I have checked that setting <a href="https://github.com/celery/celery/blob/afff659fcca833ea48483b219355044dc8de7aa2/celery/loaders/base.py#L55">override_backend</a> field works and allows to override backend.</p> <h1 dir="auto">Design</h1> <h2 dir="auto">Architectural Considerations</h2> <p dir="auto">None</p> <h2 dir="auto">Proposed Behavior</h2> <p dir="auto">Adding next dict to <code class="notranslate">celeryconfig.py</code></p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="override_backends = { 'db': 'my_module.DatabaseBackend', }"><pre class="notranslate"><span class="pl-s1">override_backends</span> <span class="pl-c1">=</span> { <span class="pl-s">'db'</span>: <span class="pl-s">'my_module.DatabaseBackend'</span>, }</pre></div> <p dir="auto">should change <code class="notranslate">Loader.override_backends</code> from empty dict to</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{ 'db': 'my_module.DatabaseBackend', }"><pre class="notranslate"><code class="notranslate">{ 'db': 'my_module.DatabaseBackend', } </code></pre></div> <p dir="auto">which is used in <a href="https://github.com/celery/celery/blob/afff659fcca833ea48483b219355044dc8de7aa2/celery/app/backends.py#L41-L46">celery.app.backends.by_name</a><br> to replace default backend implementation with custom one.</p> <h2 dir="auto">Proposed UI/UX</h2> <h2 dir="auto">Diagrams</h2> <p dir="auto">N/A</p> <h2 dir="auto">Alternatives</h2> <p dir="auto">None</p>
<h1 dir="auto">Checklist</h1> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/issues?utf8=%E2%9C%93&amp;q=is%3Aissue+label%3A%22Category%3A+Documentation%22+">issues list</a><br> for similar or identical bug reports.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/pulls?q=is%3Apr+label%3A%22Category%3A+Documentation%22">pull requests list</a><br> for existing proposed fixes.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/commits/master">commit log</a><br> to find out if the bug was already fixed in the master branch.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included all related issues and possible duplicate issues in this issue<br> (If there are none, check this box anyway).</li> </ul> <h2 dir="auto">Related Issues and Possible Duplicates</h2> <h4 dir="auto">Related Issues</h4> <ul dir="auto"> <li>None</li> </ul> <h4 dir="auto">Possible Duplicates</h4> <ul dir="auto"> <li>None</li> </ul> <h1 dir="auto">Description</h1> <p dir="auto"><code class="notranslate">docs/getting-started/next-steps.rst</code> includes the text:</p> <blockquote> <p dir="auto">The backend argument specifies the result backend to use, It's used to keep track of task state and results. While results are disabled by default I use the RPC result backend here because I demonstrate how retrieving results work later, you may want to use a different backend for your application</p> </blockquote> <p dir="auto">However, the code that is included is <code class="notranslate">examples/next-steps/proj/celery.py</code> which uses the amqp backend.</p> <h2 dir="auto">Screenshot of the issue:</h2> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/82541/73284238-45478f80-41c2-11ea-95bc-2471c2320267.png"><img src="https://user-images.githubusercontent.com/82541/73284238-45478f80-41c2-11ea-95bc-2471c2320267.png" alt="image" style="max-width: 100%;"></a></p> <h1 dir="auto">Suggestions</h1> <p dir="auto">Simply change the next-steps.rst doc file to say "I use the AMQP/Rabbitmq result backend here because..."</p>
0
<h1 dir="auto">Bug report</h1> <p dir="auto"><strong>What is the current behavior?</strong></p> <p dir="auto">When loading 2 entry points on the same page that share a common module, the module is instantiated twice, even when it's bundled into the commons bundle.</p> <p dir="auto">We ran into this while upgrading <a href="https://github.com/zeit/next.js">Next.js</a> to webpack 4 and it's currently blocking the upgrade until we know if this is expected behavior.</p> <p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce.</strong></p> <p dir="auto">I've created a reproduction for both webpack 3 and webpack 4, also added an explanation about how Next.js handles things and research into the issue:</p> <p dir="auto"><a href="https://github.com/timneutkens/webpack-instantiation-issue">https://github.com/timneutkens/webpack-instantiation-issue</a></p> <p dir="auto"><strong>What is the expected behavior?</strong></p> <p dir="auto">Following webpack 3 there should be only one instance of a shared module. Which is not the case in webpack 4 when having multiple entries on the same page. Though this might be expected.</p> <p dir="auto">My main question being: is this expected? Should we bind the "singleton" instance to <code class="notranslate">window</code> so that it will be the same across multiple module instances, or is this a regression/bug?</p> <p dir="auto"><strong>Other relevant information:</strong><br> webpack version: 4.12.0<br> Node.js version: any<br> Operating System: any<br> Additional tools:</p>
<p dir="auto">I'm working on this larg(ish) project where we currently use AMD. It works all right, we don't build the project in development and load each module individually. It takes about ~2.5 seconds to load the page with ~420 modules/templates.</p> <p dir="auto">I'm exploring switching to webpack (which so far looks amazing) for all the benefits that would add. I have our entire existing project building with webpack with no modifications to the project, which is awesome.</p> <p dir="auto">It takes 14s to build the project, but if I use <code class="notranslate">webpack-dev-server</code>, the rebuilds are impressively fast ~1s.</p> <p dir="auto">However, if I turn on <code class="notranslate">devtool: "source-map"</code>, the rebuilds then take ~4s which is slower than loading all modules individually with Require.js where source maps are not needed.<br> I've tried using <code class="notranslate">devtool: "eval"</code> and that's fast, but it's not .. a perfect sourcemap (e.g. requires are all numbers now and <code class="notranslate">pathInfo: true</code> doesn't seem to work for me).</p> <p dir="auto">So, my question really is, why does sourcemap slowdown rebuilds so much and how could I try to go around it. E.g. Should I try to make more smaller chunks? Should I try to move some of the shared dependencies from the chunks into the entry bundle? Am I doing something wrong with having so many megabytes of JavaScript?</p> <p dir="auto">Here's my current output just to give you the idea of the size of the project.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Version: webpack 1.0.0-rc3 Time: 14180ms Asset Size Chunks Chunk Names bundle.js 985492 0 [emitted] main 1.bundle.js 437111 1 [emitted] 2.bundle.js 552099 2 [emitted] 3.bundle.js 1848882 3 [emitted] 4.bundle.js 2413145 4 [emitted] "><pre class="notranslate"><code class="notranslate">Version: webpack 1.0.0-rc3 Time: 14180ms Asset Size Chunks Chunk Names bundle.js 985492 0 [emitted] main 1.bundle.js 437111 1 [emitted] 2.bundle.js 552099 2 [emitted] 3.bundle.js 1848882 3 [emitted] 4.bundle.js 2413145 4 [emitted] </code></pre></div> <p dir="auto">That's 5.9MB in total at the moment, even though the unuglified r.js build is 3.8MB. That's because there's a lot of code duplication in chunks 1, 2, 3, 4. I'd like to build all modules that are shared at least once into the parent bundle, but haven't figured how to do that yet.</p>
0
<ul dir="auto"> <li><strong>Electron Version(s)</strong> <ul dir="auto"> <li><code class="notranslate">1.3.1</code>, <code class="notranslate">1.8.4</code>, <code class="notranslate">8.4.0</code>, <code class="notranslate">9.1.0</code> &amp; <code class="notranslate">10.0.0-beta.12</code></li> </ul> </li> <li><strong>Operating System:</strong> <ul dir="auto"> <li>MacOS</li> </ul> </li> <li><strong>Last Known Working Electron version:</strong> <ul dir="auto"> <li>NA</li> </ul> </li> </ul> <h3 dir="auto">Expected Behavior</h3> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/9450414/87662802-69068e00-c780-11ea-8aea-426c189b3a9a.png"><img width="551" alt="Screen Shot 2020-07-16 at 4 21 27 PM" src="https://user-images.githubusercontent.com/9450414/87662802-69068e00-c780-11ea-8aea-426c189b3a9a.png" style="max-width: 100%;"></a></p> I have an app which has 3 levels, level1 incudes a webview with page source level2.html; inside level2 an `&lt;iframe&gt;` element is embedded with source set to level3.html. Each page has button &amp; input field. <p dir="auto">The expected behavior would be while tabbing the screen readers should be able to focus &amp; read through all three buttons &amp; input fields.</p> <h3 dir="auto">Actual Behavior</h3> <p dir="auto">Screen readers are reaching till the buttons &amp; input fields of level 2 &amp; ignoring level3. But if I relace <code class="notranslate">&lt;webview&gt;</code> with <code class="notranslate">&lt;iframe&gt;</code> everything seems to work fine.<br> <a href="https://www.loom.com/share/318395aa07f54592bd047f6afa4b300a" rel="nofollow">Please check out the video for more details on the issue</a></p> <p dir="auto"><strong>Check the below image showing the accessibility tree not being generated properly incase of webview</strong>:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/9450414/87664530-0498fe00-c783-11ea-8b27-cfff4ad1eedd.png"><img width="977" alt="Screen Shot 2020-07-16 at 4 36 20 PM" src="https://user-images.githubusercontent.com/9450414/87664530-0498fe00-c783-11ea-8b27-cfff4ad1eedd.png" style="max-width: 100%;"></a></p> <h3 dir="auto">To Reproduce</h3> <ul dir="auto"> <li> <p dir="auto">Clone this repository<br> $ git clone <a href="https://github.com/microsoft/electron-webview-accessibility-issue">https://github.com/microsoft/electron-webview-accessibility-issue</a><br> $ cd electron-quick-start<br> $ npm install<br> $ npm start || electron .</p> </li> <li> <p dir="auto">Turn on the screen reader</p> </li> <li> <p dir="auto">Tab across button &amp; input fields</p> </li> <li> <p dir="auto">You will notice that the screen reader focus is not moving to level3 hence is not able to read the corresponding elements</p> </li> </ul> <h3 dir="auto">Additional Information</h3> <p dir="auto">This issue has been reported earlier &amp; is a possible duplicate of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="309913258" data-permission-text="Title is private" data-url="https://github.com/electron/electron/issues/12478" data-hovercard-type="issue" data-hovercard-url="/electron/electron/issues/12478/hovercard" href="https://github.com/electron/electron/issues/12478">#12478</a> but it contains more information on reproducing the bug for electron version <code class="notranslate">8.4.0</code></p>
<h3 dir="auto">Preflight Checklist</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/main/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://www.github.com/electron/electron/issues">issue tracker</a> for a feature request that matches the one I want to file, without success.</li> </ul> <h3 dir="auto">Electron Version</h3> <p dir="auto">15.0.0</p> <h3 dir="auto">What operating system are you using?</h3> <p dir="auto">Windows</p> <h3 dir="auto">Operating System Version</h3> <p dir="auto">Windows 10</p> <h3 dir="auto">What arch are you using?</h3> <p dir="auto">x64</p> <h3 dir="auto">Last Known Working Electron version</h3> <p dir="auto">9.3.0</p> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">Custom titlebar with Draggable region would working with the resizable:false browser window.</p> <p dir="auto">Browser window property: resizable: false<br> CSS Property: -webkit-app-region: drag</p> <h3 dir="auto">Actual Behavior</h3> <p dir="auto">It is not working with fixed-size browser window.<br> It is working with only resizable browser window.</p> <h3 dir="auto">Testcase Gist URL</h3> <p dir="auto"><em>No response</em></p> <h3 dir="auto">Additional Information</h3> <p dir="auto"><em>No response</em></p>
0
<p dir="auto"><a href="http://www.sitepoint.com/opera-css3-webkit-prefix/" rel="nofollow">Since opera is webkit internally</a>, we should remove the opera (-o-) css vendor prefix and prevent websites from bloated css, IMO.</p> <p dir="auto">Agreed? Other knowhow?</p>
<p dir="auto">When changing color values in variables.less to suit your app design, having the variables named after the hex color value they represent seems illogical. Would this not be better used to describe the color's purpose?</p> <p dir="auto">e.g.</p> <p dir="auto"><a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/blue/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/blue">@blue</a>: #049CDB;<br> <a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/green/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/green">@green</a>: #46a546;<br> <a class="user-mention notranslate" data-hovercard-type="organization" data-hovercard-url="/orgs/red/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/red">@red</a>: #9d261d;</p> <p dir="auto">changes to:</p> <p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/primarycolor/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/primarycolor">@primarycolor</a>: #049CDB;<br> @successColor: #46a546;<br> @warningColor: #9d261d;</p>
0
<h1 dir="auto">Bug report</h1> <p dir="auto"><strong>What is the current behavior?</strong><br> Bundling <code class="notranslate">node</code> library target with <code class="notranslate">commonjs2</code> output type produces incorrect exports statements when dynamic import chunks are generated with prefetch hints.</p> <p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce.</strong><br> Full repro case is available in this repo: <a href="https://github.com/dbanisimov/webpack-commonjs-exports-repro">https://github.com/dbanisimov/webpack-commonjs-exports-repro</a></p> <ol dir="auto"> <li>Create a library with dynamic imports and prefetch hints:</li> </ol> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// dep.js export default () =&gt; console.log(&quot;dep&quot;); // src.js export default async () =&gt; { import(/* webpackPrefetch: true */ './dep').then((res) =&gt; { res.default(); console.log('lib'); }) }"><pre class="notranslate"><span class="pl-c">// dep.js</span> <span class="pl-k">export</span> <span class="pl-k">default</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">"dep"</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// src.js</span> <span class="pl-k">export</span> <span class="pl-k">default</span> <span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">import</span><span class="pl-kos">(</span><span class="pl-c">/* webpackPrefetch: true */</span> <span class="pl-s">'./dep'</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">then</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-s1">res</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-s1">res</span><span class="pl-kos">.</span><span class="pl-en">default</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">'lib'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-kos">}</span></pre></div> <ol start="2" dir="auto"> <li>Bundle for node commonjs2</li> </ol> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="module.exports = { target: &quot;node&quot;, output: { library: { type: &quot;commonjs2&quot;, }, }, };"><pre class="notranslate"><span class="pl-smi">module</span><span class="pl-kos">.</span><span class="pl-c1">exports</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span> <span class="pl-c1">target</span>: <span class="pl-s">"node"</span><span class="pl-kos">,</span> <span class="pl-c1">output</span>: <span class="pl-kos">{</span> <span class="pl-c1">library</span>: <span class="pl-kos">{</span> <span class="pl-c1">type</span>: <span class="pl-s">"commonjs2"</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">;</span></pre></div> <ol start="3" dir="auto"> <li>Import the bundled library and inspect the library exports</li> </ol> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const lib = require('./dist/lib'); console.log(lib); // =&gt; actual `undefined` // =&gt; expected Object [Module] { default: [Getter] }"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">lib</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">'./dist/lib'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s1">lib</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// =&gt; actual `undefined`</span> <span class="pl-c">// =&gt; expected Object [Module] { default: [Getter] }</span></pre></div> <p dir="auto"><strong>What is the expected behavior?</strong><br> The expected behavior is preserving the entrypoint exports, including the default one.</p> <p dir="auto"><strong>Other</strong><br> After digging around I've found that this extra webpack runtime code line is responsible for corrupting the exports</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// webpack bundle mode: 'development' // `__webpack_exports__` becomes `undefined` after the `__webpack_require__.O` function call var __webpack_exports__ = __webpack_require__(&quot;./lib/lib.js&quot;); __webpack_exports__ = __webpack_require__.O(__webpack_exports__); module.exports = __webpack_exports__;"><pre class="notranslate"><span class="pl-c">// webpack bundle mode: 'development'</span> <span class="pl-c">// `__webpack_exports__` becomes `undefined` after the `__webpack_require__.O` function call</span> <span class="pl-k">var</span> <span class="pl-s1">__webpack_exports__</span> <span class="pl-c1">=</span> <span class="pl-en">__webpack_require__</span><span class="pl-kos">(</span><span class="pl-s">"./lib/lib.js"</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-s1">__webpack_exports__</span> <span class="pl-c1">=</span> <span class="pl-s1">__webpack_require__</span><span class="pl-kos">.</span><span class="pl-en">O</span><span class="pl-kos">(</span><span class="pl-s1">__webpack_exports__</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-smi">module</span><span class="pl-kos">.</span><span class="pl-c1">exports</span> <span class="pl-c1">=</span> <span class="pl-s1">__webpack_exports__</span><span class="pl-kos">;</span></pre></div> <p dir="auto">This line comes from the <code class="notranslate">onChunksLoaded</code> runtime call introduced in <a href="https://github.com/webpack/webpack/commit/c7f93af138cc56fb825c256b7972bcaf1bb2e137">this change</a>. I can confirm that downgrading to <code class="notranslate">[email protected]</code> mitigates the issue.</p> <p dir="auto"><strong>Other relevant information:</strong><br> webpack version: 5.25+<br> Node.js version: 14.16<br> Operating System: Ubuntu 20.04<br> Additional tools: -</p>
<h1 dir="auto">Bug report</h1> <p dir="auto"><strong>What is the current behavior?</strong></p> <p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce.</strong></p> <p dir="auto"><strong>What is the expected behavior?</strong></p> <p dir="auto"><strong>Other relevant information:</strong><br> webpack version: 5.72.1<br> Node.js version: v16.14.2<br> Operating System: windows<br> Additional tools:</p> <p dir="auto">My configuration is going to look like this。</p> <p dir="auto">const BrowserReloadErrorOverlayWepbackPlugin = require('browser-reload-error-overlay-wepback-plugin');</p> <p dir="auto">let compiler = webpack({</p> <p dir="auto">// ... Omit the configuration<br> plugins: [<br> new BrowserReloadErrorOverlayWepbackPlugin(),<br> ]</p> <p dir="auto">});</p> <p dir="auto">BrowserReloadErrorOverlayWepbackPlugin npm</p> <p dir="auto"><a href="https://www.npmjs.com/package/browser-reload-error-overlay-wepback-plugin" rel="nofollow">https://www.npmjs.com/package/browser-reload-error-overlay-wepback-plugin</a></p> <p dir="auto">Main error code<br> I used it in the plugin compiler.watch</p> <p dir="auto">apply(compiler) {<br> compiler.watch({},(err, stats) =&gt; {</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="})"><pre class="notranslate"><code class="notranslate">}) </code></pre></div> <p dir="auto">}</p> <p dir="auto">And then there was this mistake:<br> ConcurrentCompilationError: You ran Webpack twice. Each instance only supports a single concurrent compilation at a time.<br> at Compiler.watch (K:\webpack-cli\node_modules\webpack\lib\Compiler.js:411:19)<br> at webpack (K:\webpack-cli\node_modules\webpack\lib\webpack.js:144:15)<br> at f (K:\webpack-cli\node_modules\webpack\lib\index.js:63:16)<br> at App.setCompiler (K:\webpack-cli@webpack-cli\compiler-server.js:96:26)<br> at App.middleware (K:\webpack-cli@webpack-cli\compiler-server.js:445:29)<br> at App.init (K:\webpack-cli@webpack-cli\compiler-server.js:67:14)<br> at processTicksAndRejections (node:internal/process/task_queues:96:5)</p>
0
<p dir="auto">This is an attempt to simplify/streamline internal API that has been brewing inside my head for quite a while. It does mean a significant overhaul and may take time, but it may prove worth the while. I'm putting it here for discussion ahead of time to make sure the effort isn't wasted for going in the wrong direction.</p> <h3 dir="auto">Idea</h3> <p dir="auto">The idea is simple: "augmented take" operation — with -1 taking from nowhere and creating a new column — is enough to express any reindexing/merging/joining that may happen at Index level. So, lower levels of API that do the heavy lifting may be relieved from the burden of operating on labels and keeping them in sync. This will make them more self-contained with the following benefits:</p> <ul dir="auto"> <li>simplify implementation</li> <li>regularize data-handling operations making them more dependable, no more "oh no, I have a duplicate/timestamp/period/multiindex/etc. label in the index, all slicing operations are now 10x slower", this happened to me more times than I'm proud of.</li> <li>simplify contributions from new developers, no more tracking down all the code paths up to the public API to fix one small check.</li> <li>make code more test- and benchmark-friendly, no more exponential growth in number of tests/benchmarks for each new feature</li> <li>declaring an API will simplify developing and maintaining "unconventional" storages (sparse, categorical, compressed, etc.)</li> </ul> <p dir="auto">There's a <a href="https://github.com/pydata/pandas/issues/162" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/162/hovercard">three-year-old ticket</a> ticket that mentions a similar (if not the same) idea. As mentioned there, this <em>may</em> break pickles and other deserialization and thus it will require a separate legacy deserialization compatibility layer.</p> <p dir="auto"><a href="https://github.com/pydata/pandas/issues/163" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/163/hovercard">Another ticket</a> mentions moving Block &amp; BlockManager internals to cython level and dropping axes dependency will definitely facilitate that.</p> <h3 dir="auto">Goals</h3> <p dir="auto">The end goal is to have internals layered as follows:</p> <ul dir="auto"> <li><strong>Block</strong>: a <em>proper</em> homogenous ndarray <ul dir="auto"> <li>think numpy.ndarray with all necessary fixes/workarounds</li> <li>datatype inference</li> <li>support for custom pandas datatypes</li> <li>typical (slice, concatenate) and pandas-specific (take-with-insert) operations</li> </ul> </li> <li><strong>RemappableBlock</strong>: homogeneous ndarray that supports "remapping" one of its axes <ul dir="auto"> <li>think <em>Block</em> + <em>ref_locs</em></li> <li><em>ref_locs</em> should be Int64Index (platform-int-index?, also <a href="https://github.com/pydata/pandas/issues/939" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/939/hovercard">RangeIndex</a> will help)</li> <li><em>Block</em> instances may be shared between <em>RemappableBlocks</em></li> <li>optimizations for no-remapping mode of work (think <em>SingleBlockManager</em>)</li> <li>FIXME: better name?</li> </ul> </li> <li><strong>BlockManager</strong>: a <em>proper</em> heterogeneous ndarray <ul dir="auto"> <li>external interface is similar to that of <strong>Block</strong></li> <li>can share <em>RemappableBlocks</em></li> </ul> </li> <li><strong>NDFrame</strong>: labeled heterogeneous ndarray <ul dir="auto"> <li>more or less equivalent to current <em>NDFrames</em></li> <li>merging/joining/reindexing only appears at this level</li> </ul> </li> </ul> <h3 dir="auto">Deliverables</h3> <ul dir="auto"> <li>Stage 1 <strong>DONE</strong> <ul dir="auto"> <li>make ref_locs primary source of information (leaving items/ref_items in place to back it up and avoid breakage)</li> <li>port merging/joining internals to loc-based implementation (there's quite a number of hacks a.t.m. that make this non-trivial)</li> <li>drop Block <code class="notranslate">items</code> &amp; <code class="notranslate">ref_items</code> fields (ensure io backward compatibility!)</li> <li>fix performance issues &amp; integrate with mainline</li> </ul> </li> <li>Stage 2: TBA</li> </ul>
<p dir="auto">I found that segfault that messed up my HDFStore earlier.</p> <p dir="auto">You'll need to csv files:</p> <p dir="auto"><a href="https://www.dropbox.com/s/55gcpkp3b8byfka/df1.csv" rel="nofollow">https://www.dropbox.com/s/55gcpkp3b8byfka/df1.csv</a><br> <a href="https://www.dropbox.com/s/mqqhfgocdg4qggp/df2.csv" rel="nofollow">https://www.dropbox.com/s/mqqhfgocdg4qggp/df2.csv</a></p> <p dir="auto">To reproduce:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="In [1]: df1 = pd.read_csv('df1.csv', index_col=[0,1,2]) In [2]: df2 = pd.read_csv('df2.csv', index_col=[0,1,2]) In [3]: df2.loc[df1.index] Segmentation fault: 11 (pandas-dev)dhcp80fff527:Desktop tom$ "><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">1</span>]: <span class="pl-s1">df1</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-en">read_csv</span>(<span class="pl-s">'df1.csv'</span>, <span class="pl-s1">index_col</span><span class="pl-c1">=</span>[<span class="pl-c1">0</span>,<span class="pl-c1">1</span>,<span class="pl-c1">2</span>]) <span class="pl-v">In</span> [<span class="pl-c1">2</span>]: <span class="pl-s1">df2</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-en">read_csv</span>(<span class="pl-s">'df2.csv'</span>, <span class="pl-s1">index_col</span><span class="pl-c1">=</span>[<span class="pl-c1">0</span>,<span class="pl-c1">1</span>,<span class="pl-c1">2</span>]) <span class="pl-v">In</span> [<span class="pl-c1">3</span>]: <span class="pl-s1">df2</span>.<span class="pl-s1">loc</span>[<span class="pl-s1">df1</span>.<span class="pl-s1">index</span>] <span class="pl-v">Segmentation</span> <span class="pl-s1">fault</span>: <span class="pl-c1">11</span> (<span class="pl-s1">pandas</span><span class="pl-c1">-</span><span class="pl-s1">dev</span>)<span class="pl-s1">dhcp80fff527</span>:<span class="pl-v">Desktop</span> <span class="pl-s1">tom</span>$ </pre></div> <p dir="auto">I've never debugged a segfault before, but I gather there are some <a href="https://wiki.python.org/moin/DebuggingWithGdb" rel="nofollow">methods</a>. Can anyone reproduce this?</p> <p dir="auto">Also, that's a valid use of <code class="notranslate">.loc</code> right?</p> <p dir="auto">In [1]: pd.<strong>version</strong><br> Out[1]: '0.12.0-1084-ged64416'</p> <p dir="auto">In [2]: np.<strong>version</strong><br> Out[2]: '1.7.1'</p>
0
<p dir="auto">The collapse js plugin should be made more flexible by not requiring a wrapping .panel for data-parent to work. The "show only one at a time" functionality is useful outside of accordions and without panel-like styling.</p> <p dir="auto">Fixing this is as easy as changing the selector in <a href="https://github.com/twbs/bootstrap/blob/v3.0.2/js/collapse.js#L51">https://github.com/twbs/bootstrap/blob/v3.0.2/js/collapse.js#L51</a> to something purely semantic that doesn't come with styles -- try <code class="notranslate">&gt; .collapse-group &gt; .in</code> for example.</p> <p dir="auto">Also note that the docs do not explicitly mention what the DOM should be for data-parent to work.</p> <p dir="auto">See also discussion in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="18403346" data-permission-text="Title is private" data-url="https://github.com/twbs/bootstrap/issues/10023" data-hovercard-type="pull_request" data-hovercard-url="/twbs/bootstrap/pull/10023/hovercard" href="https://github.com/twbs/bootstrap/pull/10023">#10023</a>.</p>
<p dir="auto">Hi, i found this pull request: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="13284254" data-permission-text="Title is private" data-url="https://github.com/twbs/bootstrap/issues/7600" data-hovercard-type="pull_request" data-hovercard-url="/twbs/bootstrap/pull/7600/hovercard" href="https://github.com/twbs/bootstrap/pull/7600">#7600</a></p> <p dir="auto">In the latest version i see that the <code class="notranslate">parent</code> option is now dependent on the <code class="notranslate">.panel</code> class, i.e.:</p> <p dir="auto"><code class="notranslate">var actives = this.$parent &amp;&amp; this.$parent.find('&gt; .panel &gt; .in')</code></p> <p dir="auto">Why don't you just leave it like it was (<code class="notranslate">.collapse.in</code>) or better yet, just:</p> <p dir="auto"><code class="notranslate">var actives = this.$parent &amp;&amp; this.$parent.find('.in')</code></p> <p dir="auto">Or, i get it if the parent must have a class, to avoid conflicts with other libraries, but can you please explain what's up with depending on dom structure? (the double &gt; in the selector really don't look good to me)</p> <p dir="auto">Oh and, the docs are way behind on this one. There's an <code class="notranslate">.accordion-group</code> class mentioned, but not saying how it should be used, and the example doesn't have one at all (yet it works, probably on an old bootstrap version).</p> <p dir="auto">So basically, please decide on a structure and update the docs &amp; examples accordingly. If you want i could help you with some of the workload, as you see fit.</p> <p dir="auto">Thank you.</p>
1
<p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/scipy/ticket/1292" rel="nofollow">http://projects.scipy.org/scipy/ticket/1292</a> on 2010-10-03 by trac user heroxbd, assigned to unknown.</em></p> <p dir="auto">In minpack.py, <em>print "Warning: " msg</em> is used to print Warning messages into stdout. This is not a good idea if one want to control its warning behavior using python's warnings module.</p> <p dir="auto">Please consider improving this.</p>
<h2 dir="auto">The issue</h2> <ul dir="auto"> <li><a href="http://docs.scipy.org/doc/scipy/reference/generated/scipy.ndimage.imread.html#scipy-ndimage-imread" rel="nofollow"><code class="notranslate">imread</code></a> is in scipy.ndimage and <a href="http://docs.scipy.org/doc/scipy/reference/generated/scipy.misc.imread.html" rel="nofollow"><code class="notranslate">scipy.misc.imread</code></a></li> <li><a href="http://docs.scipy.org/doc/scipy/reference/generated/scipy.misc.imshow.html" rel="nofollow"><code class="notranslate">imshow</code></a> and <a href="http://docs.scipy.org/doc/scipy/reference/generated/scipy.misc.imsave.html" rel="nofollow"><code class="notranslate">imsave</code></a> are in scipy.misc</li> </ul> <p dir="auto">This seems inconsistent / unlogical from a users perspective.</p> <h2 dir="auto">Proposed solution</h2> <p dir="auto">Moving some to <a href="http://docs.scipy.org/doc/scipy/reference/ndimage.html#utility" rel="nofollow"><code class="notranslate">scipy.ndimage</code></a> and others to <a href="https://docs.scipy.org/doc/scipy/reference/io.html" rel="nofollow"><code class="notranslate">scipy.io</code></a>:</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">scipy.misc.imshow</code> → <code class="notranslate">scipy.ndimage.imshow</code></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">scipy.ndimage.imread</code>, <code class="notranslate">scipy.misc.imread</code> → <code class="notranslate">scipy.io.imread</code></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">scipy.misc.imsave</code> → <code class="notranslate">scipy.io.imwrite</code></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">scipy.misc.imfilter</code> → <code class="notranslate">scipy.ndimage.imfilter</code></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">scipy.misc.imresize</code> → <code class="notranslate">scipy.ndimage.imresize</code></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <code class="notranslate">scipy.misc.imrotate</code> → <code class="notranslate">scipy.ndimage.imrotate</code></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">scipy.misc.ascent</code> → <code class="notranslate">scipy.ndimage.ascent</code></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> <code class="notranslate">scipy.misc.face</code> → <code class="notranslate">scipy.ndimage.face</code></li> </ul> <p dir="auto">I'm not sure about the remaining <code class="notranslate">bytescale</code>, <code class="notranslate">fromimage</code>, <code class="notranslate">toimage</code>.</p> <h2 dir="auto">What needs to be done</h2> <ul dir="auto"> <li>Moving the code from <code class="notranslate">pilutil.py</code> to <code class="notranslate">io.py</code> (and importing the functions from <code class="notranslate">io.py</code> in <code class="notranslate">pilutil.py</code>)</li> <li>Adding deprecation warnings to <code class="notranslate">pilutil.py</code></li> <li>Adjusting tests</li> <li>Adjusting documentation</li> </ul>
0
<h4 dir="auto">Description</h4> <p dir="auto">sklearn PCA with n_components = 'mle' and svd_solver = 'full' results in math domain error</p> <p dir="auto">The problem is in <a href="https://github.com/scikit-learn/scikit-learn/blob/master/sklearn/decomposition/pca.py#L88">this line of code</a>. The result of <code class="notranslate">(spectrum[i] - spectrum[j])</code> is 0 and therefore i get <code class="notranslate">log(0)</code> which causes this exception.<br> Is this a sign of bad data or should the implementation handle this case?</p> <h4 dir="auto">Steps/Code to Reproduce</h4> <p dir="auto">Store this in a file i.e. foo.csv</p> <blockquote> <p dir="auto">0.00000, 0.09204, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.99960, 0.99903, 0.28285, 0.28246, 1.00000, 0.00000, 0.00000, 0.92666, 0.82283, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000<br> 0.00000, 0.09204, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.99991, 0.99934, 0.31101, 0.31064, 1.00000, 0.00000, 0.00000, 0.99241, 0.51799, 0.00000, 0.00000, 1.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000<br> 0.00000, 0.09204, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.99991, 0.99934, 0.31101, 0.31064, 1.00000, 0.00000, 0.00000, 0.99241, 0.51799, 0.00000, 0.00000, 1.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000<br> 0.00000, 0.09204, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.99991, 0.99934, 0.31101, 0.31064, 1.00000, 0.00000, 0.00000, 0.99241, 0.51799, 0.00000, 0.00000, 1.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000<br> 0.00006, 0.09204, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.99920, 0.99863, 0.35419, 0.35384, 1.00000, 0.00000, 0.00000, 0.99421, 0.47923, 0.00000, 0.00000, 0.00000, 1.00000, 0.00000, 0.00000, 0.00000, 0.00000<br> 1.00000, 0.11108, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.99144, 0.99088, 0.31786, 0.31748, 0.00000, 1.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 1.00000, 0.00000, 0.00000, 0.00000<br> 0.00027, 0.35941, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.87935, 0.87885, 0.32529, 0.32492, 0.00000, 1.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 1.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000<br> 0.00011, 0.09204, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00966, 0.99986, 0.99929, 0.35232, 0.35196, 1.00000, 0.00000, 0.00000, 0.98768, 0.53487, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 1.00000<br> 0.00000, 0.09204, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.99882, 0.99825, 0.21965, 0.21922, 1.00000, 0.00000, 0.00000, 1.00000, 0.60636, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000<br> 0.00027, 0.09204, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.99883, 0.99826, 0.33354, 0.33318, 1.00000, 0.00000, 0.00000, 0.99208, 0.51767, 0.00000, 0.00000, 0.00000, 0.00000, 1.00000, 0.00000, 0.00000, 0.00000<br> 0.00064, 0.38476, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.63538, 0.99263, 0.99207, 0.35795, 0.35759, 1.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 1.00000, 0.00000, 0.00000, 0.00000<br> 0.00064, 0.38476, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.74959, 0.96602, 1.00000, 0.35795, 0.35759, 1.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 1.00000, 0.00000, 0.00000, 0.00000<br> 0.00000, 0.11961, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.99962, 0.99906, 0.28849, 0.28810, 1.00000, 0.00000, 0.00000, 0.96794, 0.61479, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000<br> 0.00018, 0.17423, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 1.00000, 0.99251, 0.99195, 0.39428, 0.39395, 0.00000, 1.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 1.00000, 0.00000, 0.00000, 0.00000<br> 0.00041, 0.24312, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.98138, 0.99330, 0.99273, 0.40907, 0.40988, 0.00000, 0.00000, 1.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000<br> 0.00007, 0.16128, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.25979, 0.99251, 0.99195, 0.41658, 0.41626, 0.00000, 1.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 1.00000, 0.00000, 0.00000, 0.00000<br> 0.00000, 0.09204, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.99967, 0.99911, 0.34629, 0.34593, 0.00000, 1.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000<br> 0.00069, 0.10755, 1.00000, 1.00000, 1.00000, 1.00000, 1.00000, 1.00000, 0.00000, 0.99592, 0.99536, 0.00000, 0.00000, 1.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000<br> 0.00091, 0.18421, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 1.00000, 1.00000, 1.00000, 0.00000, 0.00000, 0.92623, 0.82295, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000<br> 0.00091, 0.18421, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 1.00000, 1.00000, 1.00000, 0.00000, 0.00000, 0.92623, 0.82295, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000<br> 0.00000, 1.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.99998, 0.99941, 0.31381, 0.31343, 1.00000, 0.00000, 0.00000, 0.96963, 0.69883, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000<br> 0.00000, 0.94950, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 1.00000, 0.99943, 0.31559, 0.31521, 1.00000, 0.00000, 0.00000, 0.92511, 0.68432, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000<br> 0.00224, 0.89557, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.99999, 0.99942, 0.31477, 0.31439, 1.00000, 0.00000, 0.00000, 0.00000, 0.00000, 1.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000<br> 0.00000, 0.79127, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 1.00000, 0.99943, 0.31602, 0.31580, 1.00000, 0.00000, 0.00000, 0.96963, 0.69883, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000<br> 0.00000, 0.61136, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 1.00000, 0.99943, 0.31618, 0.31580, 1.00000, 0.00000, 0.00000, 0.96963, 0.69883, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000<br> 0.00022, 0.19567, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 1.00000, 0.99943, 0.31477, 0.31439, 1.00000, 0.00000, 0.00000, 0.98541, 0.98441, 1.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000, 0.00000</p> </blockquote> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import numpy from sklearn.decomposition import PCA test = numpy.genfromtxt(&quot;path/to/foo.csv&quot;, delimiter=',') pca = PCA(n_components='mle', svd_solver='full') data = pca.fit_transform(test) # This will produce the error"><pre class="notranslate"><code class="notranslate">import numpy from sklearn.decomposition import PCA test = numpy.genfromtxt("path/to/foo.csv", delimiter=',') pca = PCA(n_components='mle', svd_solver='full') data = pca.fit_transform(test) # This will produce the error </code></pre></div> <h4 dir="auto">Expected Results</h4> <p dir="auto">I expect data to have dimensions (X,Y) with X &lt;= 26 and Y &lt;=26</p> <h4 dir="auto">Actual Results</h4> <blockquote> <p dir="auto">Traceback (most recent call last):<br> File "path/to/playground.py", line 13, in <br> data = pca.fit_transform(test) # This will produce the error<br> File "$path$\Python\Python36\lib\site-packages\sklearn\decomposition\pca.py", line 344, in fit_transform<br> U, S, V = self._fit(X)<br> File "$path$\Python\Python36\lib\site-packages\sklearn\decomposition\pca.py", line 388, in <em>fit<br> return self.<em>fit_full(X, n_components)<br> File "$path$\Python\Python36\lib\site-packages\sklearn\decomposition\pca.py", line 427, in <em>fit_full<br> <em>infer_dimension</em>(explained_variance</em>, n_samples, n_features)<br> File "$path$\Python\Python36\lib\site-packages\sklearn\decomposition\pca.py", line 103, in <em>infer_dimension</em><br> ll[rank] = <em>assess_dimension</em>(spectrum, rank, n_samples, n_features)<br> File "$path$\Python\Python36\lib\site-packages\sklearn\decomposition\pca.py", line 88, in <em>assess_dimension</em><br> (1. / spectrum</em>[j] - 1. / spectrum</em>[i])) + log(n_samples)<br> ValueError: math domain error</p> </blockquote> <h4 dir="auto">Versions</h4> <p dir="auto">Windows-10-10.0.14393-SP0<br> Python 3.6.2 (v3.6.2:5fd33b5, Jul 8 2017, 04:57:36) [MSC v.1900 64 bit (AMD64)]<br> NumPy 1.13.1<br> SciPy 0.19.1<br> Scikit-Learn 0.19.0</p> <h4 dir="auto">Side References</h4> <p dir="auto">I asked a question regarding this problem on <a href="https://stackoverflow.com/questions/47548178/sklearn-pca-with-n-components-mle-and-svd-solver-full-results-in-math-do" rel="nofollow">stackoverflow</a></p>
<p dir="auto">Sorry no show_versions output (yet to add to <code class="notranslate">debian/rules</code>, numpy 1.12.1), and I just wanted to possibly seek ideas/clues before digging deeper or skipping those tests - everything seems to be ok on more recentish systems:</p> <h2 dir="auto">1</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="____________________________ test_lars_cv_max_iter _____________________________ @pytest.mark.filterwarnings('ignore::FutureWarning') def test_lars_cv_max_iter(): with warnings.catch_warnings(record=True) as w: X = diabetes.data y = diabetes.target rng = np.random.RandomState(42) x = rng.randn(len(y)) X = np.c_[X, x, x] # add correlated features lars_cv = linear_model.LassoLarsCV(max_iter=5) lars_cv.fit(X, y) &gt; assert_true(len(w) == 0)"><pre class="notranslate"><code class="notranslate">____________________________ test_lars_cv_max_iter _____________________________ @pytest.mark.filterwarnings('ignore::FutureWarning') def test_lars_cv_max_iter(): with warnings.catch_warnings(record=True) as w: X = diabetes.data y = diabetes.target rng = np.random.RandomState(42) x = rng.randn(len(y)) X = np.c_[X, x, x] # add correlated features lars_cv = linear_model.LassoLarsCV(max_iter=5) lars_cv.fit(X, y) &gt; assert_true(len(w) == 0) </code></pre></div> <p dir="auto">re <code class="notranslate">assert_true</code> submitted <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="378548639" data-permission-text="Title is private" data-url="https://github.com/scikit-learn/scikit-learn/issues/12547" data-hovercard-type="pull_request" data-hovercard-url="/scikit-learn/scikit-learn/pull/12547/hovercard" href="https://github.com/scikit-learn/scikit-learn/pull/12547">#12547</a> - but anything sounds familiar?</p> <h2 dir="auto">2</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="__________________________ test_docstring_parameters ___________________________ @pytest.mark.filterwarnings('ignore::DeprecationWarning') @pytest.mark.skipif(IS_PYPY, reason='test segfaults on PyPy') def test_docstring_parameters(): # Test module docstring formatting ... msg = '\n' + '\n'.join(sorted(list(set(incorrect)))) if len(incorrect) &gt; 0: &gt; raise AssertionError(&quot;Docstring Error: &quot; + msg) E AssertionError: Docstring Error: E sklearn.utils.fixes.divide arg mismatch: ['dtype', 'out', 'x1', 'x2'] sklearn/tests/test_docstring_parameters.py:125: AssertionError"><pre class="notranslate"><code class="notranslate">__________________________ test_docstring_parameters ___________________________ @pytest.mark.filterwarnings('ignore::DeprecationWarning') @pytest.mark.skipif(IS_PYPY, reason='test segfaults on PyPy') def test_docstring_parameters(): # Test module docstring formatting ... msg = '\n' + '\n'.join(sorted(list(set(incorrect)))) if len(incorrect) &gt; 0: &gt; raise AssertionError("Docstring Error: " + msg) E AssertionError: Docstring Error: E sklearn.utils.fixes.divide arg mismatch: ['dtype', 'out', 'x1', 'x2'] sklearn/tests/test_docstring_parameters.py:125: AssertionError </code></pre></div> <p dir="auto">so this one is particularly mysterious ;)</p> <details> <summary>show_versions()</summary> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ATLAS version 3.10.3 built by buildd on Tue Jan 17 22:59:14 UTC 2017: UNAME : Linux x86-ubc-01 3.16.0-4-amd64 #1 SMP Debian 3.16.39-1 (2016-12-30) x86_64 GNU/Linux INSTFLG : -1 0 -a 1 -l 1 ARCHDEFS : -DATL_OS_Linux -DATL_ARCH_x86SSE2 -DATL_CPUMHZ=2297 -DATL_SSE2 -DATL_SSE1 -DATL_USE64BITS -DATL_GAS_x8664 F2CDEFS : -DAdd_ -DF77_INTEGER=int -DStringSunStyle CACHEEDGE: 1048576 F77 : /usr/bin/x86_64-linux-gnu-gfortran, version GNU Fortran (Debian 6.3.0-2) 6.3.0 20161229 F77FLAGS : -fomit-frame-pointer -mfpmath=sse -O2 -msse2 -fPIC -m64 SMC : /usr/bin/gcc-6, version gcc-6 (Debian 6.3.0-2) 6.3.0 20161229 SMCFLAGS : -fomit-frame-pointer -mfpmath=sse -O2 -msse2 -fPIC -m64 SKC : /usr/bin/gcc-6, version gcc-6 (Debian 6.3.0-2) 6.3.0 20161229 SKCFLAGS : -fomit-frame-pointer -mfpmath=sse -O2 -msse2 -fPIC -m64 System ------ python: 2.7.13 (default, Nov 24 2017, 17:33:09) [GCC 6.3.0 20170516] machine: Linux-4.16.0-0.bpo.2-amd64-x86_64-with-debian-9.5 executable: /usr/bin/python2.7 BLAS ---- macros: HAVE_CBLAS=None, ATLAS_INFO=&quot;\&quot;3.10.3\&quot;&quot; cblas_libs: f77blas, cblas, atlas, f77blas, cblas lib_dirs: /usr/lib/atlas-base Python deps ----------- Cython: None scipy: 0.18.1 setuptools: 33.1.1 pip: None numpy: 1.12.1 pandas: 0.22.0 sklearn: 0.20.0"><pre class="notranslate"><code class="notranslate">ATLAS version 3.10.3 built by buildd on Tue Jan 17 22:59:14 UTC 2017: UNAME : Linux x86-ubc-01 3.16.0-4-amd64 #1 SMP Debian 3.16.39-1 (2016-12-30) x86_64 GNU/Linux INSTFLG : -1 0 -a 1 -l 1 ARCHDEFS : -DATL_OS_Linux -DATL_ARCH_x86SSE2 -DATL_CPUMHZ=2297 -DATL_SSE2 -DATL_SSE1 -DATL_USE64BITS -DATL_GAS_x8664 F2CDEFS : -DAdd_ -DF77_INTEGER=int -DStringSunStyle CACHEEDGE: 1048576 F77 : /usr/bin/x86_64-linux-gnu-gfortran, version GNU Fortran (Debian 6.3.0-2) 6.3.0 20161229 F77FLAGS : -fomit-frame-pointer -mfpmath=sse -O2 -msse2 -fPIC -m64 SMC : /usr/bin/gcc-6, version gcc-6 (Debian 6.3.0-2) 6.3.0 20161229 SMCFLAGS : -fomit-frame-pointer -mfpmath=sse -O2 -msse2 -fPIC -m64 SKC : /usr/bin/gcc-6, version gcc-6 (Debian 6.3.0-2) 6.3.0 20161229 SKCFLAGS : -fomit-frame-pointer -mfpmath=sse -O2 -msse2 -fPIC -m64 System ------ python: 2.7.13 (default, Nov 24 2017, 17:33:09) [GCC 6.3.0 20170516] machine: Linux-4.16.0-0.bpo.2-amd64-x86_64-with-debian-9.5 executable: /usr/bin/python2.7 BLAS ---- macros: HAVE_CBLAS=None, ATLAS_INFO="\"3.10.3\"" cblas_libs: f77blas, cblas, atlas, f77blas, cblas lib_dirs: /usr/lib/atlas-base Python deps ----------- Cython: None scipy: 0.18.1 setuptools: 33.1.1 pip: None numpy: 1.12.1 pandas: 0.22.0 sklearn: 0.20.0 </code></pre></div> </details>
0
<h3 dir="auto">Bug report</h3> <p dir="auto">There is no version information on the documentation pages.</p> <h3 dir="auto">Details</h3> <p dir="auto">If you google code samples of matplotlib, you will get links to different versions of the matplotlib documentation. On these documentation pages, there is no hint, <em>which version</em> of matplotlib you are looking at. Even the URL of the documentation doesn't give a clue! If you try some code (<em>official samples</em> from the <em>official documentation</em>!), you may wonder why it is not working in your installation of matplotlib.</p> <h3 dir="auto">Why this matters</h3> <p dir="auto">Especially for beginners, this is very frustrating! You may try to figure out whats wrong for hours and post questions on stackoverlow, just to find out, that the matplotlib documentation doesn't care to show a clue which version you are looking at (as happened to me <a href="https://matplotlib.org/examples/showcase/xkcd.html" rel="nofollow">examples/showcase/xkcd.py</a>)!</p>
<p dir="auto">On the current live docs, the examples page claims to be from release <code class="notranslate">2.0.2</code>, but it should be <code class="notranslate">2.1</code>: <a href="http://matplotlib.org/examples/index.html" rel="nofollow">http://matplotlib.org/examples/index.html</a></p>
1
<p dir="auto">Challenge <a href="http://www.freecodecamp.com/challenges/waypoint-target-elements-by-id-using-jquery" rel="nofollow">http://www.freecodecamp.com/challenges/waypoint-target-elements-by-id-using-jquery</a> has an issue. Please describe how to reproduce it, and include links to screenshots if possible.</p> <p dir="auto">When lessons in this section are loaded the &lt;script&gt; and &lt;/script&gt; tags are changing to other characters. Might just be a browser issue(?) Safari 8.0.8 - OS X 10.10.5<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/13261325/9372687/5a01aeb4-4696-11e5-9942-6bbb3c362720.png"><img src="https://cloud.githubusercontent.com/assets/13261325/9372687/5a01aeb4-4696-11e5-9942-6bbb3c362720.png" alt="screen shot 2015-08-19 at 5 16 51 pm" style="max-width: 100%;"></a></p>
<p dir="auto"><a href="http://www.freecodecamp.com/challenges/waypoint-bring-your-javascript-slot-machine-to-life" rel="nofollow">http://www.freecodecamp.com/challenges/waypoint-bring-your-javascript-slot-machine-to-life</a></p> <p dir="auto">e.g.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$($('.slot')[0]).html(slotOne);"><pre class="notranslate"><code class="notranslate">$($('.slot')[0]).html(slotOne); </code></pre></div> <p dir="auto">Doesn't work</p>
0
<p dir="auto">I am trying to rebuild application with latest Angular 2.0.0 version and everything works fine except that there are some intellisense errors in observables. Is this an issue with rxjs module where the error is throwing. How can i get rid of these error:</p> <p dir="auto">For some reason i cannot paste image here so getting somethign went wrong while uploading so providing link to stackoverflow:</p> <p dir="auto"><a href="http://stackoverflow.com/questions/39874609/intellisense-errors-while-rebuilding-application-in-angular-2-0-0-version" rel="nofollow">http://stackoverflow.com/questions/39874609/intellisense-errors-while-rebuilding-application-in-angular-2-0-0-version</a></p>
<p dir="auto">When using the ContentChild annotation with a type query it works very well but when I try to use string query - for some reason the annotated field is always null.</p> <p dir="auto">the following is a SSCCE that reproduce the problem:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import {Component, ContentChild} from 'angular2/core'; import {bootstrap} from 'angular2/platform/browser'; @Component({ template: ` &lt;ng-content select=&quot;inner&quot;&gt;&lt;/ng-content&gt; `, selector: 'ctr' }) class TestContainerComponent { @ContentChild('inner') inner; ngAfterContentInit() { console.log('inner: ', this.inner); } } @Component({ template: ` &lt;ctr&gt; &lt;inner&gt; SOME TEXT &lt;/inner&gt; &lt;/ctr&gt; `, selector: 'app', directives: [TestContainerComponent] }) class TestAppComponent { } function main() { return bootstrap(TestAppComponent).catch(err =&gt; console.error(err)); } document.addEventListener('DOMContentLoaded', main);"><pre class="notranslate"><code class="notranslate">import {Component, ContentChild} from 'angular2/core'; import {bootstrap} from 'angular2/platform/browser'; @Component({ template: ` &lt;ng-content select="inner"&gt;&lt;/ng-content&gt; `, selector: 'ctr' }) class TestContainerComponent { @ContentChild('inner') inner; ngAfterContentInit() { console.log('inner: ', this.inner); } } @Component({ template: ` &lt;ctr&gt; &lt;inner&gt; SOME TEXT &lt;/inner&gt; &lt;/ctr&gt; `, selector: 'app', directives: [TestContainerComponent] }) class TestAppComponent { } function main() { return bootstrap(TestAppComponent).catch(err =&gt; console.error(err)); } document.addEventListener('DOMContentLoaded', main); </code></pre></div> <p dir="auto">When running the above code the result is:<br> console: inner: null<br> view: SOME TEXT</p> <p dir="auto">although the API docs show a usage example with a type query, the type definition indicates that the query can be either a Type or a string (Type | string)</p>
0
<p dir="auto"><strong>Migrated issue, originally created by Anonymous</strong></p> <p dir="auto">Without the foreign key, it works fine and with sqlite instead of postgres, it works fine too.</p> <p dir="auto">See attached file for a test case.</p> <p dir="auto">It fails with the following traceback:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last): File &quot;test_autoload.py&quot;, line 20, in &lt;module&gt; meta2.create_all() # this fails. File &quot;/home/ged/devel/sqlalchemy/lib/sqlalchemy/schema.py&quot;, line 1147, in create_all connectable.create(self, checkfirst=checkfirst, tables=tables) File &quot;/home/ged/devel/sqlalchemy/lib/sqlalchemy/engine/base.py&quot;, line 681, in create self._run_visitor(self.dialect.schemagenerator, entity, connection=connection, **kwargs) File &quot;/home/ged/devel/sqlalchemy/lib/sqlalchemy/engine/base.py&quot;, line 711, in _run_visitor element.accept_visitor(visitorcallable(conn, **kwargs)) File &quot;/home/ged/devel/sqlalchemy/lib/sqlalchemy/schema.py&quot;, line 1169, in accept_visitor visitor.visit_metadata(self) File &quot;/home/ged/devel/sqlalchemy/lib/sqlalchemy/ansisql.py&quot;, line 805, in visit_metadata table.accept_visitor(self) File &quot;/home/ged/devel/sqlalchemy/lib/sqlalchemy/sql.py&quot;, line 2095, in accept_visitor visitor.visit_table(self) File &quot;/home/ged/devel/sqlalchemy/lib/sqlalchemy/ansisql.py&quot;, line 840, in visit_table self.execute() File &quot;/home/ged/devel/sqlalchemy/lib/sqlalchemy/engine/base.py&quot;, line 1179, in execute return self.connection.execute(self.buffer.getvalue()) File &quot;/home/ged/devel/sqlalchemy/lib/sqlalchemy/engine/base.py&quot;, line 502, in execute return Connection.executors[c](c)(self, object, *multiparams, **params) File &quot;/home/ged/devel/sqlalchemy/lib/sqlalchemy/engine/base.py&quot;, line 517, in execute_text self._execute_raw(context) File &quot;/home/ged/devel/sqlalchemy/lib/sqlalchemy/engine/base.py&quot;, line 566, in _execute_raw self._execute(context) File &quot;/home/ged/devel/sqlalchemy/lib/sqlalchemy/engine/base.py&quot;, line 583, in _execute raise exceptions.SQLError(context.statement, context.parameters, e) sqlalchemy.exceptions.SQLError: (ProgrammingError) syntax error at or near &quot;$1&quot; LINE 6: CONSTRAINT $1 FOREIGN KEY(test_id) REFERENCES test (id) ^ &quot;\nCREATE TABLE test (\n\tid INTEGER DEFAULT nextval('public.test_id_seq'::text) NOT NULL, \n\ttest_id INTEGER, \n\tPRIMARY KEY (id), \n\t CONSTRAINT $1 FOREIGN KEY(test_id) REFERENCES test (id)\n)\n\n&quot; {}"><pre class="notranslate"><code class="notranslate">Traceback (most recent call last): File "test_autoload.py", line 20, in &lt;module&gt; meta2.create_all() # this fails. File "/home/ged/devel/sqlalchemy/lib/sqlalchemy/schema.py", line 1147, in create_all connectable.create(self, checkfirst=checkfirst, tables=tables) File "/home/ged/devel/sqlalchemy/lib/sqlalchemy/engine/base.py", line 681, in create self._run_visitor(self.dialect.schemagenerator, entity, connection=connection, **kwargs) File "/home/ged/devel/sqlalchemy/lib/sqlalchemy/engine/base.py", line 711, in _run_visitor element.accept_visitor(visitorcallable(conn, **kwargs)) File "/home/ged/devel/sqlalchemy/lib/sqlalchemy/schema.py", line 1169, in accept_visitor visitor.visit_metadata(self) File "/home/ged/devel/sqlalchemy/lib/sqlalchemy/ansisql.py", line 805, in visit_metadata table.accept_visitor(self) File "/home/ged/devel/sqlalchemy/lib/sqlalchemy/sql.py", line 2095, in accept_visitor visitor.visit_table(self) File "/home/ged/devel/sqlalchemy/lib/sqlalchemy/ansisql.py", line 840, in visit_table self.execute() File "/home/ged/devel/sqlalchemy/lib/sqlalchemy/engine/base.py", line 1179, in execute return self.connection.execute(self.buffer.getvalue()) File "/home/ged/devel/sqlalchemy/lib/sqlalchemy/engine/base.py", line 502, in execute return Connection.executors[c](c)(self, object, *multiparams, **params) File "/home/ged/devel/sqlalchemy/lib/sqlalchemy/engine/base.py", line 517, in execute_text self._execute_raw(context) File "/home/ged/devel/sqlalchemy/lib/sqlalchemy/engine/base.py", line 566, in _execute_raw self._execute(context) File "/home/ged/devel/sqlalchemy/lib/sqlalchemy/engine/base.py", line 583, in _execute raise exceptions.SQLError(context.statement, context.parameters, e) sqlalchemy.exceptions.SQLError: (ProgrammingError) syntax error at or near "$1" LINE 6: CONSTRAINT $1 FOREIGN KEY(test_id) REFERENCES test (id) ^ "\nCREATE TABLE test (\n\tid INTEGER DEFAULT nextval('public.test_id_seq'::text) NOT NULL, \n\ttest_id INTEGER, \n\tPRIMARY KEY (id), \n\t CONSTRAINT $1 FOREIGN KEY(test_id) REFERENCES test (id)\n)\n\n" {} </code></pre></div>
<p dir="auto"><strong>Migrated issue, originally created by Anonymous</strong></p> <p dir="auto">I searched existing open issues tagged with mssql but didn't see this one. Please close it if it's a duplicate.</p> <p dir="auto">~Matt</p> <p dir="auto">Pylons 0.9.7, SQLAlchemy 0.5.x, OSX 10.5, iodbc, freetds, remote MSSQL Server instance</p> <p dir="auto">test.py contains:</p> <p dir="auto">engine = create_engine("mssql://mdoar:<a href="mailto:[email protected]">[email protected]</a>:1433/my_database?driver=TDS&amp;odbc_options='TDS_Version=7.0'")</p> <h1 dir="auto">This breaks with the attached backtrace</h1> <p dir="auto">meta = schema.MetaData(engine, reflect=True)</p> <h1 dir="auto">but this works fine:</h1> <h1 dir="auto">meta = schema.MetaData(engine, reflect=False)</h1> <p dir="auto">File "/Users/mdoar/atlassian/jira/commercial/venv_0.9.7/lib/python2.5/site-packages/SQLAlchemy-0.4.7p1-py2.5.egg/sqlalchemy/engine/base.py", line 907, in _execute_compiled<br> self.__execute_raw(context)<br> File "/Users/mdoar/atlassian/jira/commercial/venv_0.9.7/lib/python2.5/site-packages/SQLAlchemy-0.4.7p1-py2.5.egg/sqlalchemy/engine/base.py", line 916, in __execute_raw<br> self._cursor_execute(context.cursor, context.statement, context.parameters<a href="0">0</a>, context=context)<br> File "/Users/mdoar/atlassian/jira/commercial/venv_0.9.7/lib/python2.5/site-packages/SQLAlchemy-0.4.7p1-py2.5.egg/sqlalchemy/engine/base.py", line 960, in _cursor_execute<br> self._handle_dbapi_exception(e, statement, parameters, cursor)<br> File "/Users/mdoar/atlassian/jira/commercial/venv_0.9.7/lib/python2.5/site-packages/SQLAlchemy-0.4.7p1-py2.5.egg/sqlalchemy/engine/base.py", line 942, in _handle_dbapi_exception<br> raise exceptions.DBAPIError.instance(statement, parameters, e, connection_invalidated=is_disconnect)<br> sqlalchemy.exceptions.ProgrammingError: (ProgrammingError) ('The SQL contains 0 parameter markers, but 1 parameters were supplied', 'HY000') u'SELECT tables_1.table_name \nFROM information_schema.tables AS tables_1 \nWHERE tables_1.table_schema = ?' <a href="'dbo'">'dbo'</a></p> <hr> <p dir="auto">Attachments: <a href="../wiki/imported_issue_attachments/1312/add_flag.patch">add_flag.patch</a></p>
0
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import { x, y } from &quot;./alphabet.ts&quot; import { foo, bar } from &quot;std/foo/bar.ts&quot; import { z } from &quot;./blah.ts&quot;"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">x</span><span class="pl-kos">,</span> <span class="pl-s1">y</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"./alphabet.ts"</span> <span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">foo</span><span class="pl-kos">,</span> <span class="pl-s1">bar</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"std/foo/bar.ts"</span> <span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">z</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"./blah.ts"</span></pre></div> <p dir="auto">imo would look better as</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import { x, y } from &quot;./alphabet.ts&quot; import { z } from &quot;./blah.ts&quot; import { foo, bar } from &quot;std/foo/bar.ts&quot;"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">x</span><span class="pl-kos">,</span> <span class="pl-s1">y</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"./alphabet.ts"</span> <span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">z</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"./blah.ts"</span> <span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">foo</span><span class="pl-kos">,</span> <span class="pl-s1">bar</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"std/foo/bar.ts"</span></pre></div>
<p dir="auto">When I run <code class="notranslate">bundle</code> with Deno, I get an error and can't create a Javascript file.</p> <p dir="auto">The target code.</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="/// &lt;reference lib=&quot;dom&quot; /&gt; class ClickLogger { constructor() { document.addEventListener('click', this.eventListener); } eventListener(e: Event) { const phase = e.eventPhase; const tag = (&lt;HTMLElement&gt;e.target) console.log(`Click event in phase ${phase} detected on element ${tag} by ClickLogger`); } }"><pre class="notranslate"><span class="pl-c">/// &lt;reference lib="dom" /&gt;</span> <span class="pl-k">class</span> <span class="pl-v">ClickLogger</span> <span class="pl-kos">{</span> <span class="pl-en">constructor</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-smi">document</span><span class="pl-kos">.</span><span class="pl-en">addEventListener</span><span class="pl-kos">(</span><span class="pl-s">'click'</span><span class="pl-kos">,</span> <span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-c1">eventListener</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-en">eventListener</span><span class="pl-kos">(</span><span class="pl-s1">e</span>: <span class="pl-v">Event</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">const</span> <span class="pl-s1">phase</span> <span class="pl-c1">=</span> <span class="pl-s1">e</span><span class="pl-kos">.</span><span class="pl-c1">eventPhase</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-s1">tag</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-c1">&lt;</span><span class="pl-ent">HTMLElement</span><span class="pl-c1">&gt;</span>e.target) console.log(`Click event in phase $<span class="pl-kos">{</span><span class="pl-s1">phase</span><span class="pl-kos">}</span> detected on element $<span class="pl-kos">{</span><span class="pl-s1">tag</span><span class="pl-kos">}</span> by ClickLogger`); <span class="pl-kos">}</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">tsconfig.js</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{ &quot;compilerOptions&quot;: { &quot;plugins&quot;: [ { &quot;name&quot;: &quot;typescript-deno-plugin&quot; } ] } }"><pre class="notranslate"><code class="notranslate">{ "compilerOptions": { "plugins": [ { "name": "typescript-deno-plugin" } ] } } </code></pre></div> <p dir="auto">The executed command.</p> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="deno bundle input.ts output.js"><pre class="notranslate">deno bundle input.ts output.js</pre></div> <p dir="auto">The error that occurred.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Bundle file:///Users/nabezokodaikon/workspace/develop-private/learning-typescript/chapter04/List04_13.ts error: TS6200 [ERROR]: Definitions of the following identifiers conflict with those in another file: ImportExportKind, Module, Instance, Memory, TableKind, Table, ValueType, Global, CompileError, LinkError, RuntimeError, ReadableStreamReadResult, CountQueuingStrategy, ByteLengthQueuingStrategy, WritableStream, TransformStream, DOMException, BufferSource, BlobPart, Blob, File, FormDataEntryValue, FormData, HeadersInit, Headers, RequestInfo, RequestCache, RequestCredentials, RequestMode, RequestRedirect, ReferrerPolicy, BodyInit, RequestDestination, Request, ResponseType, Response, TextDecoder, TextEncoder, URLSearchParams, URL, MessageEvent, ErrorEvent, Worker, PerformanceEntryList, Performance, performance, PerformanceEntry, PerformanceMark, PerformanceMeasure, Event, EventTarget, EventListenerOrEventListenerObject, CustomEvent, AbortController, AbortSignal declare namespace WebAssembly { ~~~~~~~ at asset:///lib.deno.shared_globals.d.ts:10:1 Conflicts are in this file. interface Account { ~~~~~~~~~ at asset:///lib.dom.d.ts:25:1 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'byobRequest' must be of type 'ReadableStreamBYOBRequest | undefined', but here has type 'undefined'. readonly byobRequest: undefined; ~~~~~~~~~~~ at asset:///lib.deno.shared_globals.d.ts:346:12 'byobRequest' was also declared here. readonly byobRequest: ReadableStreamBYOBRequest | undefined; ~~~~~~~~~~~ at asset:///lib.dom.d.ts:12477:14 TS2375 [ERROR]: Duplicate number index signature. [index: number]: string; ~~~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.deno.shared_globals.d.ts:529:3 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'log' must be of type '(...data: any[]) =&gt; void', but here has type '(...args: unknown[]) =&gt; void'. log: (...args: unknown[]) =&gt; void; ~~~ at asset:///lib.deno.shared_globals.d.ts:583:3 'log' was also declared here. log(...data: any[]): void; ~~~~~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.dom.d.ts:18948:5 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'debug' must be of type '(...data: any[]) =&gt; void', but here has type '(...args: unknown[]) =&gt; void'. debug: (...args: unknown[]) =&gt; void; ~~~~~ at asset:///lib.deno.shared_globals.d.ts:585:3 'debug' was also declared here. debug(...data: any[]): void; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.dom.d.ts:18939:5 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'info' must be of type '(...data: any[]) =&gt; void', but here has type '(...args: unknown[]) =&gt; void'. info: (...args: unknown[]) =&gt; void; ~~~~ at asset:///lib.deno.shared_globals.d.ts:587:3 'info' was also declared here. info(...data: any[]): void; ~~~~~~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.dom.d.ts:18947:5 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'dir' must be of type '(item?: any, options?: any) =&gt; void', but here has type '(obj: unknown, options?: Partial&lt;{ depth: number; indentLevel: number; }&gt; | undefined) =&gt; void'. dir: ( ~~~ at asset:///lib.deno.shared_globals.d.ts:589:3 'dir' was also declared here. dir(item?: any, options?: any): void; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.dom.d.ts:18940:5 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'dirxml' must be of type '(...data: any[]) =&gt; void', but here has type '(obj: unknown, options?: Partial&lt;{ showHidden: boolean; depth: number; colors: boolean; indentLevel: number; }&gt; | undefined) =&gt; void'. dirxml: ( ~~~~~~ at asset:///lib.deno.shared_globals.d.ts:607:3 'dirxml' was also declared here. dirxml(...data: any[]): void; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.dom.d.ts:18941:5 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'warn' must be of type '(...data: any[]) =&gt; void', but here has type '(...args: unknown[]) =&gt; void'. warn: (...args: unknown[]) =&gt; void; ~~~~ at asset:///lib.deno.shared_globals.d.ts:618:3 'warn' was also declared here. warn(...data: any[]): void; ~~~~~~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.dom.d.ts:18955:5 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'error' must be of type '(...data: any[]) =&gt; void', but here has type '(...args: unknown[]) =&gt; void'. error: (...args: unknown[]) =&gt; void; ~~~~~ at asset:///lib.deno.shared_globals.d.ts:620:3 'error' was also declared here. error(...data: any[]): void; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.dom.d.ts:18942:5 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'assert' must be of type '(condition?: boolean | undefined, ...data: any[]) =&gt; void', but here has type '(condition?: boolean | undefined, ...args: unknown[]) =&gt; void'. assert: (condition?: boolean, ...args: unknown[]) =&gt; void; ~~~~~~ at asset:///lib.deno.shared_globals.d.ts:626:3 'assert' was also declared here. assert(condition?: boolean, ...data: any[]): void; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.dom.d.ts:18935:5 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'table' must be of type '(tabularData?: any, properties?: string[] | undefined) =&gt; void', but here has type '(data: unknown, properties?: string[] | undefined) =&gt; void'. table: (data: unknown, properties?: string[] | undefined) =&gt; void; ~~~~~ at asset:///lib.deno.shared_globals.d.ts:629:3 'table' was also declared here. table(tabularData?: any, properties?: string[]): void; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.dom.d.ts:18949:5 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'timeLog' must be of type '(label?: string | undefined, ...data: any[]) =&gt; void', but here has type '(label?: string | undefined, ...args: unknown[]) =&gt; void'. timeLog: (label?: string, ...args: unknown[]) =&gt; void; ~~~~~~~ at asset:///lib.deno.shared_globals.d.ts:631:3 'timeLog' was also declared here. timeLog(label?: string, ...data: any[]): void; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.dom.d.ts:18952:5 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'group' must be of type '(...data: any[]) =&gt; void', but here has type '(...label: unknown[]) =&gt; void'. group: (...label: unknown[]) =&gt; void; ~~~~~ at asset:///lib.deno.shared_globals.d.ts:633:3 'group' was also declared here. group(...data: any[]): void; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.dom.d.ts:18944:5 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'groupCollapsed' must be of type '(...data: any[]) =&gt; void', but here has type '(...label: unknown[]) =&gt; void'. groupCollapsed: (...label: unknown[]) =&gt; void; ~~~~~~~~~~~~~~ at asset:///lib.deno.shared_globals.d.ts:634:3 'groupCollapsed' was also declared here. groupCollapsed(...data: any[]): void; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.dom.d.ts:18945:5 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'trace' must be of type '(...data: any[]) =&gt; void', but here has type '(...args: unknown[]) =&gt; void'. trace: (...args: unknown[]) =&gt; void; ~~~~~ at asset:///lib.deno.shared_globals.d.ts:637:3 'trace' was also declared here. trace(...data: any[]): void; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.dom.d.ts:18954:5 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'subtle' must be of type 'SubtleCrypto', but here has type 'null'. readonly subtle: null; ~~~~~~ at asset:///lib.deno.shared_globals.d.ts:642:12 'subtle' was also declared here. readonly subtle: SubtleCrypto; ~~~~~~ at asset:///lib.dom.d.ts:3684:14 TS2451 [ERROR]: Cannot redeclare block-scoped variable 'window'. declare const window: Window &amp; typeof globalThis; ~~~~~~ at asset:///lib.deno.window.d.ts:20:15 'window' was also declared here. declare var window: Window &amp; typeof globalThis; ~~~~~~ at asset:///lib.dom.d.ts:19505:13 TS2451 [ERROR]: Cannot redeclare block-scoped variable 'self'. declare const self: Window &amp; typeof globalThis; ~~~~ at asset:///lib.deno.window.d.ts:21:15 'self' was also declared here. declare var self: Window &amp; typeof globalThis; ~~~~ at asset:///lib.dom.d.ts:19498:13 TS2451 [ERROR]: Cannot redeclare block-scoped variable 'onload'. declare const onload: ((this: Window, ev: Event) =&gt; any) | null; ~~~~~~ at asset:///lib.deno.window.d.ts:22:15 'onload' was also declared here. declare var onload: ((this: Window, ev: Event) =&gt; any) | null; ~~~~~~ at asset:///lib.dom.d.ts:19670:13 TS2451 [ERROR]: Cannot redeclare block-scoped variable 'onunload'. declare const onunload: ((this: Window, ev: Event) =&gt; any) | null; ~~~~~~~~ at asset:///lib.deno.window.d.ts:23:15 'onunload' was also declared here. declare var onunload: ((this: Window, ev: Event) =&gt; any) | null; ~~~~~~~~ at asset:///lib.dom.d.ts:19845:13 TS6200 [ERROR]: Definitions of the following identifiers conflict with those in another file: ImportExportKind, Module, Instance, Memory, TableKind, Table, ValueType, Global, CompileError, LinkError, RuntimeError, ReadableStreamReadResult, CountQueuingStrategy, ByteLengthQueuingStrategy, WritableStream, TransformStream, DOMException, BufferSource, BlobPart, Blob, File, FormDataEntryValue, FormData, HeadersInit, Headers, RequestInfo, RequestCache, RequestCredentials, RequestMode, RequestRedirect, ReferrerPolicy, BodyInit, RequestDestination, Request, ResponseType, Response, TextDecoder, TextEncoder, URLSearchParams, URL, MessageEvent, ErrorEvent, Worker, PerformanceEntryList, Performance, performance, PerformanceEntry, PerformanceMark, PerformanceMeasure, Event, EventTarget, EventListenerOrEventListenerObject, CustomEvent, AbortController, AbortSignal interface Account { ~~~~~~~~~ at asset:///lib.dom.d.ts:25:1 Conflicts are in this file. declare namespace WebAssembly { ~~~~~~~ at asset:///lib.deno.shared_globals.d.ts:10:1 TS2430 [ERROR]: Interface 'Window' incorrectly extends interface 'GlobalEventHandlers'. Types of property 'onload' are incompatible. Type '((this: Window, ev: Event) =&gt; any) | null' is not assignable to type '((this: GlobalEventHandlers, ev: Event) =&gt; any) | null'. Type '(this: Window, ev: Event) =&gt; any' is not assignable to type '(this: GlobalEventHandlers, ev: Event) =&gt; any'. The 'this' types of each signature are incompatible. Type 'GlobalEventHandlers' is missing the following properties from type 'Window': applicationCache, clientInformation, closed, customElements, and 141 more. at asset:///lib.dom.d.ts:18394:11 TS2430 [ERROR]: Interface 'Window' incorrectly extends interface 'WindowEventHandlers'. Types of property 'onunload' are incompatible. Type '((this: Window, ev: Event) =&gt; any) | null' is not assignable to type '((this: WindowEventHandlers, ev: Event) =&gt; any) | null'. Type '(this: Window, ev: Event) =&gt; any' is not assignable to type '(this: WindowEventHandlers, ev: Event) =&gt; any'. The 'this' types of each signature are incompatible. Type 'WindowEventHandlers' is missing the following properties from type 'Window': applicationCache, clientInformation, closed, customElements, and 206 more. at asset:///lib.dom.d.ts:18394:11 TS2451 [ERROR]: Cannot redeclare block-scoped variable 'self'. declare var self: Window &amp; typeof globalThis; ~~~~ at asset:///lib.dom.d.ts:19498:13 'self' was also declared here. declare const self: Window &amp; typeof globalThis; ~~~~ at asset:///lib.deno.window.d.ts:21:15 TS2451 [ERROR]: Cannot redeclare block-scoped variable 'window'. declare var window: Window &amp; typeof globalThis; ~~~~~~ at asset:///lib.dom.d.ts:19505:13 'window' was also declared here. declare const window: Window &amp; typeof globalThis; ~~~~~~ at asset:///lib.deno.window.d.ts:20:15 TS2451 [ERROR]: Cannot redeclare block-scoped variable 'onload'. declare var onload: ((this: Window, ev: Event) =&gt; any) | null; ~~~~~~ at asset:///lib.dom.d.ts:19670:13 'onload' was also declared here. declare const onload: ((this: Window, ev: Event) =&gt; any) | null; ~~~~~~ at asset:///lib.deno.window.d.ts:22:15 TS2451 [ERROR]: Cannot redeclare block-scoped variable 'onunload'. declare var onunload: ((this: Window, ev: Event) =&gt; any) | null; ~~~~~~~~ at asset:///lib.dom.d.ts:19845:13 'onunload' was also declared here. declare const onunload: ((this: Window, ev: Event) =&gt; any) | null; ~~~~~~~~ at asset:///lib.deno.window.d.ts:23:15 Found 28 errors."><pre class="notranslate"><code class="notranslate">Bundle file:///Users/nabezokodaikon/workspace/develop-private/learning-typescript/chapter04/List04_13.ts error: TS6200 [ERROR]: Definitions of the following identifiers conflict with those in another file: ImportExportKind, Module, Instance, Memory, TableKind, Table, ValueType, Global, CompileError, LinkError, RuntimeError, ReadableStreamReadResult, CountQueuingStrategy, ByteLengthQueuingStrategy, WritableStream, TransformStream, DOMException, BufferSource, BlobPart, Blob, File, FormDataEntryValue, FormData, HeadersInit, Headers, RequestInfo, RequestCache, RequestCredentials, RequestMode, RequestRedirect, ReferrerPolicy, BodyInit, RequestDestination, Request, ResponseType, Response, TextDecoder, TextEncoder, URLSearchParams, URL, MessageEvent, ErrorEvent, Worker, PerformanceEntryList, Performance, performance, PerformanceEntry, PerformanceMark, PerformanceMeasure, Event, EventTarget, EventListenerOrEventListenerObject, CustomEvent, AbortController, AbortSignal declare namespace WebAssembly { ~~~~~~~ at asset:///lib.deno.shared_globals.d.ts:10:1 Conflicts are in this file. interface Account { ~~~~~~~~~ at asset:///lib.dom.d.ts:25:1 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'byobRequest' must be of type 'ReadableStreamBYOBRequest | undefined', but here has type 'undefined'. readonly byobRequest: undefined; ~~~~~~~~~~~ at asset:///lib.deno.shared_globals.d.ts:346:12 'byobRequest' was also declared here. readonly byobRequest: ReadableStreamBYOBRequest | undefined; ~~~~~~~~~~~ at asset:///lib.dom.d.ts:12477:14 TS2375 [ERROR]: Duplicate number index signature. [index: number]: string; ~~~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.deno.shared_globals.d.ts:529:3 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'log' must be of type '(...data: any[]) =&gt; void', but here has type '(...args: unknown[]) =&gt; void'. log: (...args: unknown[]) =&gt; void; ~~~ at asset:///lib.deno.shared_globals.d.ts:583:3 'log' was also declared here. log(...data: any[]): void; ~~~~~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.dom.d.ts:18948:5 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'debug' must be of type '(...data: any[]) =&gt; void', but here has type '(...args: unknown[]) =&gt; void'. debug: (...args: unknown[]) =&gt; void; ~~~~~ at asset:///lib.deno.shared_globals.d.ts:585:3 'debug' was also declared here. debug(...data: any[]): void; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.dom.d.ts:18939:5 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'info' must be of type '(...data: any[]) =&gt; void', but here has type '(...args: unknown[]) =&gt; void'. info: (...args: unknown[]) =&gt; void; ~~~~ at asset:///lib.deno.shared_globals.d.ts:587:3 'info' was also declared here. info(...data: any[]): void; ~~~~~~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.dom.d.ts:18947:5 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'dir' must be of type '(item?: any, options?: any) =&gt; void', but here has type '(obj: unknown, options?: Partial&lt;{ depth: number; indentLevel: number; }&gt; | undefined) =&gt; void'. dir: ( ~~~ at asset:///lib.deno.shared_globals.d.ts:589:3 'dir' was also declared here. dir(item?: any, options?: any): void; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.dom.d.ts:18940:5 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'dirxml' must be of type '(...data: any[]) =&gt; void', but here has type '(obj: unknown, options?: Partial&lt;{ showHidden: boolean; depth: number; colors: boolean; indentLevel: number; }&gt; | undefined) =&gt; void'. dirxml: ( ~~~~~~ at asset:///lib.deno.shared_globals.d.ts:607:3 'dirxml' was also declared here. dirxml(...data: any[]): void; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.dom.d.ts:18941:5 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'warn' must be of type '(...data: any[]) =&gt; void', but here has type '(...args: unknown[]) =&gt; void'. warn: (...args: unknown[]) =&gt; void; ~~~~ at asset:///lib.deno.shared_globals.d.ts:618:3 'warn' was also declared here. warn(...data: any[]): void; ~~~~~~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.dom.d.ts:18955:5 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'error' must be of type '(...data: any[]) =&gt; void', but here has type '(...args: unknown[]) =&gt; void'. error: (...args: unknown[]) =&gt; void; ~~~~~ at asset:///lib.deno.shared_globals.d.ts:620:3 'error' was also declared here. error(...data: any[]): void; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.dom.d.ts:18942:5 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'assert' must be of type '(condition?: boolean | undefined, ...data: any[]) =&gt; void', but here has type '(condition?: boolean | undefined, ...args: unknown[]) =&gt; void'. assert: (condition?: boolean, ...args: unknown[]) =&gt; void; ~~~~~~ at asset:///lib.deno.shared_globals.d.ts:626:3 'assert' was also declared here. assert(condition?: boolean, ...data: any[]): void; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.dom.d.ts:18935:5 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'table' must be of type '(tabularData?: any, properties?: string[] | undefined) =&gt; void', but here has type '(data: unknown, properties?: string[] | undefined) =&gt; void'. table: (data: unknown, properties?: string[] | undefined) =&gt; void; ~~~~~ at asset:///lib.deno.shared_globals.d.ts:629:3 'table' was also declared here. table(tabularData?: any, properties?: string[]): void; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.dom.d.ts:18949:5 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'timeLog' must be of type '(label?: string | undefined, ...data: any[]) =&gt; void', but here has type '(label?: string | undefined, ...args: unknown[]) =&gt; void'. timeLog: (label?: string, ...args: unknown[]) =&gt; void; ~~~~~~~ at asset:///lib.deno.shared_globals.d.ts:631:3 'timeLog' was also declared here. timeLog(label?: string, ...data: any[]): void; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.dom.d.ts:18952:5 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'group' must be of type '(...data: any[]) =&gt; void', but here has type '(...label: unknown[]) =&gt; void'. group: (...label: unknown[]) =&gt; void; ~~~~~ at asset:///lib.deno.shared_globals.d.ts:633:3 'group' was also declared here. group(...data: any[]): void; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.dom.d.ts:18944:5 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'groupCollapsed' must be of type '(...data: any[]) =&gt; void', but here has type '(...label: unknown[]) =&gt; void'. groupCollapsed: (...label: unknown[]) =&gt; void; ~~~~~~~~~~~~~~ at asset:///lib.deno.shared_globals.d.ts:634:3 'groupCollapsed' was also declared here. groupCollapsed(...data: any[]): void; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.dom.d.ts:18945:5 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'trace' must be of type '(...data: any[]) =&gt; void', but here has type '(...args: unknown[]) =&gt; void'. trace: (...args: unknown[]) =&gt; void; ~~~~~ at asset:///lib.deno.shared_globals.d.ts:637:3 'trace' was also declared here. trace(...data: any[]): void; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ at asset:///lib.dom.d.ts:18954:5 TS2717 [ERROR]: Subsequent property declarations must have the same type. Property 'subtle' must be of type 'SubtleCrypto', but here has type 'null'. readonly subtle: null; ~~~~~~ at asset:///lib.deno.shared_globals.d.ts:642:12 'subtle' was also declared here. readonly subtle: SubtleCrypto; ~~~~~~ at asset:///lib.dom.d.ts:3684:14 TS2451 [ERROR]: Cannot redeclare block-scoped variable 'window'. declare const window: Window &amp; typeof globalThis; ~~~~~~ at asset:///lib.deno.window.d.ts:20:15 'window' was also declared here. declare var window: Window &amp; typeof globalThis; ~~~~~~ at asset:///lib.dom.d.ts:19505:13 TS2451 [ERROR]: Cannot redeclare block-scoped variable 'self'. declare const self: Window &amp; typeof globalThis; ~~~~ at asset:///lib.deno.window.d.ts:21:15 'self' was also declared here. declare var self: Window &amp; typeof globalThis; ~~~~ at asset:///lib.dom.d.ts:19498:13 TS2451 [ERROR]: Cannot redeclare block-scoped variable 'onload'. declare const onload: ((this: Window, ev: Event) =&gt; any) | null; ~~~~~~ at asset:///lib.deno.window.d.ts:22:15 'onload' was also declared here. declare var onload: ((this: Window, ev: Event) =&gt; any) | null; ~~~~~~ at asset:///lib.dom.d.ts:19670:13 TS2451 [ERROR]: Cannot redeclare block-scoped variable 'onunload'. declare const onunload: ((this: Window, ev: Event) =&gt; any) | null; ~~~~~~~~ at asset:///lib.deno.window.d.ts:23:15 'onunload' was also declared here. declare var onunload: ((this: Window, ev: Event) =&gt; any) | null; ~~~~~~~~ at asset:///lib.dom.d.ts:19845:13 TS6200 [ERROR]: Definitions of the following identifiers conflict with those in another file: ImportExportKind, Module, Instance, Memory, TableKind, Table, ValueType, Global, CompileError, LinkError, RuntimeError, ReadableStreamReadResult, CountQueuingStrategy, ByteLengthQueuingStrategy, WritableStream, TransformStream, DOMException, BufferSource, BlobPart, Blob, File, FormDataEntryValue, FormData, HeadersInit, Headers, RequestInfo, RequestCache, RequestCredentials, RequestMode, RequestRedirect, ReferrerPolicy, BodyInit, RequestDestination, Request, ResponseType, Response, TextDecoder, TextEncoder, URLSearchParams, URL, MessageEvent, ErrorEvent, Worker, PerformanceEntryList, Performance, performance, PerformanceEntry, PerformanceMark, PerformanceMeasure, Event, EventTarget, EventListenerOrEventListenerObject, CustomEvent, AbortController, AbortSignal interface Account { ~~~~~~~~~ at asset:///lib.dom.d.ts:25:1 Conflicts are in this file. declare namespace WebAssembly { ~~~~~~~ at asset:///lib.deno.shared_globals.d.ts:10:1 TS2430 [ERROR]: Interface 'Window' incorrectly extends interface 'GlobalEventHandlers'. Types of property 'onload' are incompatible. Type '((this: Window, ev: Event) =&gt; any) | null' is not assignable to type '((this: GlobalEventHandlers, ev: Event) =&gt; any) | null'. Type '(this: Window, ev: Event) =&gt; any' is not assignable to type '(this: GlobalEventHandlers, ev: Event) =&gt; any'. The 'this' types of each signature are incompatible. Type 'GlobalEventHandlers' is missing the following properties from type 'Window': applicationCache, clientInformation, closed, customElements, and 141 more. at asset:///lib.dom.d.ts:18394:11 TS2430 [ERROR]: Interface 'Window' incorrectly extends interface 'WindowEventHandlers'. Types of property 'onunload' are incompatible. Type '((this: Window, ev: Event) =&gt; any) | null' is not assignable to type '((this: WindowEventHandlers, ev: Event) =&gt; any) | null'. Type '(this: Window, ev: Event) =&gt; any' is not assignable to type '(this: WindowEventHandlers, ev: Event) =&gt; any'. The 'this' types of each signature are incompatible. Type 'WindowEventHandlers' is missing the following properties from type 'Window': applicationCache, clientInformation, closed, customElements, and 206 more. at asset:///lib.dom.d.ts:18394:11 TS2451 [ERROR]: Cannot redeclare block-scoped variable 'self'. declare var self: Window &amp; typeof globalThis; ~~~~ at asset:///lib.dom.d.ts:19498:13 'self' was also declared here. declare const self: Window &amp; typeof globalThis; ~~~~ at asset:///lib.deno.window.d.ts:21:15 TS2451 [ERROR]: Cannot redeclare block-scoped variable 'window'. declare var window: Window &amp; typeof globalThis; ~~~~~~ at asset:///lib.dom.d.ts:19505:13 'window' was also declared here. declare const window: Window &amp; typeof globalThis; ~~~~~~ at asset:///lib.deno.window.d.ts:20:15 TS2451 [ERROR]: Cannot redeclare block-scoped variable 'onload'. declare var onload: ((this: Window, ev: Event) =&gt; any) | null; ~~~~~~ at asset:///lib.dom.d.ts:19670:13 'onload' was also declared here. declare const onload: ((this: Window, ev: Event) =&gt; any) | null; ~~~~~~ at asset:///lib.deno.window.d.ts:22:15 TS2451 [ERROR]: Cannot redeclare block-scoped variable 'onunload'. declare var onunload: ((this: Window, ev: Event) =&gt; any) | null; ~~~~~~~~ at asset:///lib.dom.d.ts:19845:13 'onunload' was also declared here. declare const onunload: ((this: Window, ev: Event) =&gt; any) | null; ~~~~~~~~ at asset:///lib.deno.window.d.ts:23:15 Found 28 errors. </code></pre></div> <p dir="auto">How can I bundle it?</p>
0
<p dir="auto">I am using Python 3.4.4 |Anaconda 2.3.0 (64-bit) on win64 bits, with latest matplotlib and pyqt updated by conda install xx<br> for the following code, if I use unicode title in the for-loop, the images are shown with their corretced direction, i.e., the head is toward up like which is in original image. However, if I use English title, the images are upside-down: the people's head is toward earth</p> <p dir="auto">This can be observed for both TkAgg and Qt5Agg</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="#coding=utf-8 import matplotlib #~ matplotlib.rcParams['backend'] = 'TkAgg' matplotlib.rcParams['backend'] = 'Qt5Agg' from pylab import * import PIL.Image as Image im=Image.open('Mario cosplay.jpg').convert('L') orgsize=im.size newsize=[int(i/4) for i in orgsize] subplot(2,3,1) imshow(im, cmap='gray', vmin=0, vmax=255) title('original pic', fontsize=20); filters=[Image.NEAREST, Image.BILINEAR, Image.BICUBIC, Image.ANTIALIAS] filtersName=['NEAREST', 'BILINEAR', 'BICUBIC', 'ANTIALIAS'] for k in range(len(filters)): subplot(2,3,k+2) im1=im.resize(newsize, filters[k]) imshow(im1, cmap='gray', vmin=0, vmax=255) title('原图的1/%i,插值法:%s' % (4, filtersName[k]), fontsize=20) # head up title('size: 1/%i,interpolation: %s' % (4, filtersName[k]), fontsize=20) # head down gcf().tight_layout() show()"><pre class="notranslate"><span class="pl-c">#coding=utf-8</span> <span class="pl-k">import</span> <span class="pl-s1">matplotlib</span> <span class="pl-c">#~ matplotlib.rcParams['backend'] = 'TkAgg'</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">rcParams</span>[<span class="pl-s">'backend'</span>] <span class="pl-c1">=</span> <span class="pl-s">'Qt5Agg'</span> <span class="pl-k">from</span> <span class="pl-s1">pylab</span> <span class="pl-k">import</span> <span class="pl-c1">*</span> <span class="pl-k">import</span> <span class="pl-v">PIL</span>.<span class="pl-v">Image</span> <span class="pl-k">as</span> <span class="pl-v">Image</span> <span class="pl-s1">im</span><span class="pl-c1">=</span><span class="pl-v">Image</span>.<span class="pl-en">open</span>(<span class="pl-s">'Mario cosplay.jpg'</span>).<span class="pl-en">convert</span>(<span class="pl-s">'L'</span>) <span class="pl-s1">orgsize</span><span class="pl-c1">=</span><span class="pl-s1">im</span>.<span class="pl-s1">size</span> <span class="pl-s1">newsize</span><span class="pl-c1">=</span>[<span class="pl-en">int</span>(<span class="pl-s1">i</span><span class="pl-c1">/</span><span class="pl-c1">4</span>) <span class="pl-k">for</span> <span class="pl-s1">i</span> <span class="pl-c1">in</span> <span class="pl-s1">orgsize</span>] <span class="pl-en">subplot</span>(<span class="pl-c1">2</span>,<span class="pl-c1">3</span>,<span class="pl-c1">1</span>) <span class="pl-en">imshow</span>(<span class="pl-s1">im</span>, <span class="pl-s1">cmap</span><span class="pl-c1">=</span><span class="pl-s">'gray'</span>, <span class="pl-s1">vmin</span><span class="pl-c1">=</span><span class="pl-c1">0</span>, <span class="pl-s1">vmax</span><span class="pl-c1">=</span><span class="pl-c1">255</span>) <span class="pl-en">title</span>(<span class="pl-s">'original pic'</span>, <span class="pl-s1">fontsize</span><span class="pl-c1">=</span><span class="pl-c1">20</span>); <span class="pl-s1">filters</span><span class="pl-c1">=</span>[<span class="pl-v">Image</span>.<span class="pl-v">NEAREST</span>, <span class="pl-v">Image</span>.<span class="pl-v">BILINEAR</span>, <span class="pl-v">Image</span>.<span class="pl-v">BICUBIC</span>, <span class="pl-v">Image</span>.<span class="pl-v">ANTIALIAS</span>] <span class="pl-s1">filtersName</span><span class="pl-c1">=</span>[<span class="pl-s">'NEAREST'</span>, <span class="pl-s">'BILINEAR'</span>, <span class="pl-s">'BICUBIC'</span>, <span class="pl-s">'ANTIALIAS'</span>] <span class="pl-k">for</span> <span class="pl-s1">k</span> <span class="pl-c1">in</span> <span class="pl-en">range</span>(<span class="pl-en">len</span>(<span class="pl-s1">filters</span>)): <span class="pl-en">subplot</span>(<span class="pl-c1">2</span>,<span class="pl-c1">3</span>,<span class="pl-s1">k</span><span class="pl-c1">+</span><span class="pl-c1">2</span>) <span class="pl-s1">im1</span><span class="pl-c1">=</span><span class="pl-s1">im</span>.<span class="pl-en">resize</span>(<span class="pl-s1">newsize</span>, <span class="pl-s1">filters</span>[<span class="pl-s1">k</span>]) <span class="pl-en">imshow</span>(<span class="pl-s1">im1</span>, <span class="pl-s1">cmap</span><span class="pl-c1">=</span><span class="pl-s">'gray'</span>, <span class="pl-s1">vmin</span><span class="pl-c1">=</span><span class="pl-c1">0</span>, <span class="pl-s1">vmax</span><span class="pl-c1">=</span><span class="pl-c1">255</span>) <span class="pl-en">title</span>(<span class="pl-s">'原图的1/%i,插值法:%s'</span> <span class="pl-c1">%</span> (<span class="pl-c1">4</span>, <span class="pl-s1">filtersName</span>[<span class="pl-s1">k</span>]), <span class="pl-s1">fontsize</span><span class="pl-c1">=</span><span class="pl-c1">20</span>) <span class="pl-c"># head up</span> <span class="pl-en">title</span>(<span class="pl-s">'size: 1/%i,interpolation: %s'</span> <span class="pl-c1">%</span> (<span class="pl-c1">4</span>, <span class="pl-s1">filtersName</span>[<span class="pl-s1">k</span>]), <span class="pl-s1">fontsize</span><span class="pl-c1">=</span><span class="pl-c1">20</span>) <span class="pl-c"># head down</span> <span class="pl-en">gcf</span>().<span class="pl-en">tight_layout</span>() <span class="pl-en">show</span>()</pre></div> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/7960913/23596979/43168210-026a-11e7-8228-dd43c858b0d5.png"><img src="https://cloud.githubusercontent.com/assets/7960913/23596979/43168210-026a-11e7-8228-dd43c858b0d5.png" alt="chinese_headup" style="max-width: 100%;"></a><br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/7960913/23596980/4440d8de-026a-11e7-9235-e4419e206e22.png"><img src="https://cloud.githubusercontent.com/assets/7960913/23596980/4440d8de-026a-11e7-9235-e4419e206e22.png" alt="english_headdown" style="max-width: 100%;"></a></p>
<p dir="auto">When plotting a lot of subplots (here 6), with long y-labels <em>and</em> tight_layout, the y-axis is reverted.<br> In this example, it is particularly striking as I am plotting histograms.</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import matplotlib.pyplot as plt import numpy as np alphas = [0.001, 0.1, 1, 10, 1000, 10000] X = np.random.randn(len(alphas), 1000) fig, axes = plt.subplots(nrows=len(alphas), ncols=2) fig.set_tight_layout(True) for i, alpha in enumerate(alphas): ax = axes[i, 0] ax.hist(X[i]) ax.set_xlabel(&quot;Number of features&quot;, fontweight=&quot;bold&quot;) ax.set_ylabel(&quot;Number of genes&quot;, fontweight=&quot;bold&quot;) ax = axes[i, 1] ax.plot(sorted(X[i])) ax.set_ylabel(&quot;Number of genes&quot;, fontweight=&quot;bold&quot;)"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">pyplot</span> <span class="pl-k">as</span> <span class="pl-s1">plt</span> <span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span> <span class="pl-s1">alphas</span> <span class="pl-c1">=</span> [<span class="pl-c1">0.001</span>, <span class="pl-c1">0.1</span>, <span class="pl-c1">1</span>, <span class="pl-c1">10</span>, <span class="pl-c1">1000</span>, <span class="pl-c1">10000</span>] <span class="pl-v">X</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">randn</span>(<span class="pl-en">len</span>(<span class="pl-s1">alphas</span>), <span class="pl-c1">1000</span>) <span class="pl-s1">fig</span>, <span class="pl-s1">axes</span> <span class="pl-c1">=</span> <span class="pl-s1">plt</span>.<span class="pl-en">subplots</span>(<span class="pl-s1">nrows</span><span class="pl-c1">=</span><span class="pl-en">len</span>(<span class="pl-s1">alphas</span>), <span class="pl-s1">ncols</span><span class="pl-c1">=</span><span class="pl-c1">2</span>) <span class="pl-s1">fig</span>.<span class="pl-en">set_tight_layout</span>(<span class="pl-c1">True</span>) <span class="pl-k">for</span> <span class="pl-s1">i</span>, <span class="pl-s1">alpha</span> <span class="pl-c1">in</span> <span class="pl-en">enumerate</span>(<span class="pl-s1">alphas</span>): <span class="pl-s1">ax</span> <span class="pl-c1">=</span> <span class="pl-s1">axes</span>[<span class="pl-s1">i</span>, <span class="pl-c1">0</span>] <span class="pl-s1">ax</span>.<span class="pl-en">hist</span>(<span class="pl-v">X</span>[<span class="pl-s1">i</span>]) <span class="pl-s1">ax</span>.<span class="pl-en">set_xlabel</span>(<span class="pl-s">"Number of features"</span>, <span class="pl-s1">fontweight</span><span class="pl-c1">=</span><span class="pl-s">"bold"</span>) <span class="pl-s1">ax</span>.<span class="pl-en">set_ylabel</span>(<span class="pl-s">"Number of genes"</span>, <span class="pl-s1">fontweight</span><span class="pl-c1">=</span><span class="pl-s">"bold"</span>) <span class="pl-s1">ax</span> <span class="pl-c1">=</span> <span class="pl-s1">axes</span>[<span class="pl-s1">i</span>, <span class="pl-c1">1</span>] <span class="pl-s1">ax</span>.<span class="pl-en">plot</span>(<span class="pl-en">sorted</span>(<span class="pl-v">X</span>[<span class="pl-s1">i</span>])) <span class="pl-s1">ax</span>.<span class="pl-en">set_ylabel</span>(<span class="pl-s">"Number of genes"</span>, <span class="pl-s1">fontweight</span><span class="pl-c1">=</span><span class="pl-s">"bold"</span>)</pre></div> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/184798/22847757/191f0c3a-efa4-11e6-9b64-2b9a098b754c.png"><img src="https://cloud.githubusercontent.com/assets/184798/22847757/191f0c3a-efa4-11e6-9b64-2b9a098b754c.png" alt="mpl_bug" style="max-width: 100%;"></a></p> <p dir="auto"><strong>Expected outcome</strong></p> <p dir="auto">Removing the tight layout, the labels collapse, but at least the plots are oriented the correct way.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/184798/22847782/421d5704-efa4-11e6-8956-91f8008c95e5.png"><img src="https://cloud.githubusercontent.com/assets/184798/22847782/421d5704-efa4-11e6-8956-91f8008c95e5.png" alt="mpl_bug_wo_tight_layout" style="max-width: 100%;"></a></p> <p dir="auto">Matplotlib should <del>either raise a proper error</del> raise a proper warning, or plot the histograms in the proper order.</p> <p dir="auto"><strong>Matplotlib version</strong></p> <p dir="auto">Matplotlib 2.0.0</p>
1
<h2 dir="auto"><g-emoji class="g-emoji" alias="rocket" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f680.png">🚀</g-emoji> Feature</h2> <p dir="auto">Add support for PyPy interpreter</p> <h2 dir="auto">Motivation</h2> <p dir="auto">Increase speed of Python code that do not relate to PyTorch</p>
<h2 dir="auto"><g-emoji class="g-emoji" alias="rocket" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f680.png">🚀</g-emoji> Feature</h2> <p dir="auto">Support pytorch from PyPy -- a fast, compliant alternative implementation of the Python language (<a href="http://pypy.org" rel="nofollow">http://pypy.org</a>)</p> <h2 dir="auto">Motivation</h2> <p dir="auto">While pytorch itself probably won't benefit much from PyPy JIT, but often pytorch is used as a part of larger application, where using PyPy can have speed benefits, e.g. for evaluation, data generation, or other activities.</p> <h2 dir="auto">Pitch</h2> <p dir="auto">(A clear and concise description of what you want to happen). I can imagine several stages:</p> <ul dir="auto"> <li>PyPy support works by compiling from source</li> <li>PyPy is integrated into CI</li> <li>PyPy wheels are built and released</li> </ul> <h2 dir="auto">Additional context</h2> <p dir="auto">Right now it seems that PyPy support, at least for commonly used stuff, is not far from reality, for example this branch <a href="https://github.com/lopuhin/pytorch/tree/pypy3.6">https://github.com/lopuhin/pytorch/tree/pypy3.6</a> works in PyPy 3.6 7.0.0 for a moderately complex application (didn't try running tests yet).</p> <p dir="auto">Here is a summary of fixes in that branch:</p> <ol dir="auto"> <li>working around a compilation issue in the JIT: <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/0481da14052c09605b38940e08d8cae275c6a8cd/hovercard" href="https://github.com/pytorch/pytorch/commit/0481da14052c09605b38940e08d8cae275c6a8cd"><tt>0481da1</tt></a> - this is definitely a hack to get the compilation working, a proper implementation for PyPy needs to be in place.</li> <li><strong>[merged]</strong> <code class="notranslate">PySlice_Unpack</code> is not yet available in PyPy 3.6 -<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/752e204c90a782432eed77018e4fe3ad5fa4dbf2/hovercard" href="https://github.com/pytorch/pytorch/commit/752e204c90a782432eed77018e4fe3ad5fa4dbf2"><tt>752e204</tt></a> - probably it's ok to merge this. With two above fixes, pytorch compiles on PyPy 3.6. PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="419048233" data-permission-text="Title is private" data-url="https://github.com/pytorch/pytorch/issues/17836" data-hovercard-type="pull_request" data-hovercard-url="/pytorch/pytorch/pull/17836/hovercard" href="https://github.com/pytorch/pytorch/pull/17836">#17836</a></li> <li><strong>[merged in https://github.com/<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="588071040" data-permission-text="Title is private" data-url="https://github.com/pybind/pybind11/issues/2146" data-hovercard-type="pull_request" data-hovercard-url="/pybind/pybind11/pull/2146/hovercard" href="https://github.com/pybind/pybind11/pull/2146">pybind/pybind11/pull/2146</a> ]</strong> Applying <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="351937050" data-permission-text="Title is private" data-url="https://github.com/pybind/pybind11/issues/1494" data-hovercard-type="pull_request" data-hovercard-url="/pybind/pybind11/pull/1494/hovercard" href="https://github.com/pybind/pybind11/pull/1494">pybind/pybind11#1494</a> to pybind11 - <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/912b0b2a77b3ea0a5bac9fbe3ac5d577c86c6d7/hovercard" href="https://github.com/pytorch/pytorch/commit/912b0b2a77b3ea0a5bac9fbe3ac5d577c86c6d7"><tt>912b0b2</tt></a>. Unfortunately, while the fix seems correct, and pybind11 has partial support and CI for PyPy, more work needs to be done to properly integrate it into pybind11, because other pybind11 tests are failing on a more recent PyPy, see <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="351937050" data-permission-text="Title is private" data-url="https://github.com/pybind/pybind11/issues/1494" data-hovercard-type="pull_request" data-hovercard-url="/pybind/pybind11/pull/1494/hovercard" href="https://github.com/pybind/pybind11/pull/1494">pybind/pybind11#1494</a> and <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="418717719" data-permission-text="Title is private" data-url="https://github.com/pybind/pybind11/issues/1720" data-hovercard-type="pull_request" data-hovercard-url="/pybind/pybind11/pull/1720/hovercard" href="https://github.com/pybind/pybind11/pull/1720">pybind/pybind11#1720</a></li> <li><strong>[merged]</strong> work around PyPy cpyext issue - <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/pytorch/pytorch/commit/00941d8ae4e28bd03245a04c5096297c35a3128d/hovercard" href="https://github.com/pytorch/pytorch/commit/00941d8ae4e28bd03245a04c5096297c35a3128d"><tt>00941d8</tt></a> - see <a href="https://bitbucket.org/pypy/pypy/issues/2968/segfault-calling-cpyext_tp_new_tuple" rel="nofollow">https://bitbucket.org/pypy/pypy/issues/2968/segfault-calling-cpyext_tp_new_tuple</a> (thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/rlamy/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/rlamy">@rlamy</a> for the fix!), it seems that it is fine to merge this. PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="419048246" data-permission-text="Title is private" data-url="https://github.com/pytorch/pytorch/issues/17837" data-hovercard-type="pull_request" data-hovercard-url="/pytorch/pytorch/pull/17837/hovercard" href="https://github.com/pytorch/pytorch/pull/17837">#17837</a></li> </ol> <p dir="auto">Thanks to <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/xuhdev/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/xuhdev">@xuhdev</a> for an already merged PyPy compilation fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="361649752" data-permission-text="Title is private" data-url="https://github.com/pytorch/pytorch/issues/11857" data-hovercard-type="pull_request" data-hovercard-url="/pytorch/pytorch/pull/11857/hovercard" href="https://github.com/pytorch/pytorch/pull/11857">#11857</a></p> <p dir="auto">I submitted PRs for 2 and 4. If anyone can pick other items, that would be great.</p> <p dir="auto">While these are quite small fixes, still properly integrating them is not a small task, not speaking of setting up CI and supporting it.</p> <p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ezyang/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ezyang">@ezyang</a></p>
1
<p dir="auto">I notice this error (cgohlke wheels):</p> <p dir="auto">Python 3.4.4 (v3.4.4:737efcadf5a6, Dec 20 2015, 19:28:18) [MSC v.1600 32 bit (Intel)] on win32<br> Type "copyright", "credits" or "license()" for more information.</p> <blockquote> <blockquote> <blockquote> <p dir="auto">import scipy;scipy.test()<br> Running unit tests for scipy<br> NumPy version 1.10.2<br> NumPy relaxed strides checking option: False<br> NumPy is installed in D:\WinPython\basedir34\buildQt5\winpython-3.4.4\python-3.4.4\lib\site-packages\numpy<br> SciPy version 0.17.0rc1<br> SciPy is installed in D:\WinPython\basedir34\buildQt5\winpython-3.4.4\python-3.4.4\lib\site-packages\scipy<br> Python version 3.4.4 (v3.4.4:737efcadf5a6, Dec 20 2015, 19:28:18) [MSC v.1600 32 bit (Intel)]<br> nose version 1.3.7</p> </blockquote> </blockquote> </blockquote> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="====================================================================== FAIL: test_improvement (test_quadpack.TestMultivariateCtypesQuad) ---------------------------------------------------------------------- Traceback (most recent call last): File &quot;D:\WinPython\basedir34\buildQt5\winpython-3.4.4\python-3.4.4\lib\site-packages\numpy\testing\decorators.py&quot;, line 146, in skipper_func return f(*args, **kwargs) File &quot;D:\WinPython\basedir34\buildQt5\winpython-3.4.4\python-3.4.4\lib\site-packages\scipy\integrate\tests\test_quadpack.py&quot;, line 134, in test_improvement assert_(fast &lt; 0.5*slow, (fast, slow)) File &quot;D:\WinPython\basedir34\buildQt5\winpython-3.4.4\python-3.4.4\lib\site-packages\numpy\testing\utils.py&quot;, line 53, in assert_ raise AssertionError(smsg) AssertionError: (0.015599966049194336, 0.031199932098388672) ---------------------------------------------------------------------- Ran 20177 tests in 982.734s FAILED (KNOWNFAIL=98, SKIP=1675, failures=1)"><pre class="notranslate"><code class="notranslate">====================================================================== FAIL: test_improvement (test_quadpack.TestMultivariateCtypesQuad) ---------------------------------------------------------------------- Traceback (most recent call last): File "D:\WinPython\basedir34\buildQt5\winpython-3.4.4\python-3.4.4\lib\site-packages\numpy\testing\decorators.py", line 146, in skipper_func return f(*args, **kwargs) File "D:\WinPython\basedir34\buildQt5\winpython-3.4.4\python-3.4.4\lib\site-packages\scipy\integrate\tests\test_quadpack.py", line 134, in test_improvement assert_(fast &lt; 0.5*slow, (fast, slow)) File "D:\WinPython\basedir34\buildQt5\winpython-3.4.4\python-3.4.4\lib\site-packages\numpy\testing\utils.py", line 53, in assert_ raise AssertionError(smsg) AssertionError: (0.015599966049194336, 0.031199932098388672) ---------------------------------------------------------------------- Ran 20177 tests in 982.734s FAILED (KNOWNFAIL=98, SKIP=1675, failures=1) </code></pre></div> <p dir="auto">seems a follow-up of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="48948945" data-permission-text="Title is private" data-url="https://github.com/scipy/scipy/issues/4152" data-hovercard-type="issue" data-hovercard-url="/scipy/scipy/issues/4152/hovercard" href="https://github.com/scipy/scipy/issues/4152">#4152</a> ?</p>
<p dir="auto">In the documentation of <a href="http://docs.scipy.org/doc/scipy/reference/generated/scipy.interpolate.griddata.html" rel="nofollow">interpolate.griddata</a> there is a <a href="http://docs.scipy.org/doc/scipy/reference/generated/scipy-interpolate-griddata-1.py" rel="nofollow">broken link to the source code</a> of the examples.</p>
0
<h1 dir="auto">Summary of the new feature/enhancement</h1> <p dir="auto">A costumized fancy zone configuration shall call defined programs and attach it to a zone whenever it will be activated</p>
<p dir="auto">Hi all,</p> <p dir="auto">It would be great to choose what apps to show up on startup within a specific layout using FancyZones. For example, I have a setup of two displays and three virtual desktops and I need to open my apps and reposition them on the screen each time I boot-up my system.</p>
1
<h1 dir="auto">Bug report</h1> <p dir="auto"><strong>What is the current behavior?</strong><br> Latest webpack (4.29.4) pulls in <code class="notranslate">[email protected]</code> using Git.</p> <p dir="auto"><a href="https://www.npmjs.com/package/long" rel="nofollow">long</a> is still on 4.0.0, so 4.0.1 hasn't been published yet. This mean it is doing so via <code class="notranslate">git</code>, which creates a hard dependency on <code class="notranslate">git</code> for projects bundled with webpack. This creates issues w/CI pipelines that do not use <code class="notranslate">git</code>.</p> <p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce.</strong><br> Simply install webpack with yarn/npm and inspect the lock files, and you should see something like:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="long &quot;git://github.com/dcodeIO/long.js.git#8181a6b50a2a230f0b2a1e4c4093f9b9d19c8b69&quot;"><pre class="notranslate"><code class="notranslate">long "git://github.com/dcodeIO/long.js.git#8181a6b50a2a230f0b2a1e4c4093f9b9d19c8b69" </code></pre></div> <p dir="auto"><strong>What is the expected behavior?</strong></p> <p dir="auto">Webpack itself should not have a dependency on <code class="notranslate">git</code>. This is an unnecessary dependency for CI/build systems.</p> <p dir="auto"><strong>Other relevant information:</strong><br> webpack version: 4.29.4<br> Node.js version: v8.15.0<br> Operating System: Ubuntu 18.04.2 LTS<br> Additional tools:</p>
<blockquote> <p dir="auto">npm sill fetchPackageMetaData error for long@git://github.com/dcodeIO/long.js.git#8181a6b50a2a230f0b2a1e4c4093f9b9d19c8b69 Error while executing:</p> </blockquote> <p dir="auto">In my firm direct access to Github assets is blocked, and I imagine this will be the case for a lot of enterprise applications. Hence it is impossible to install the latest version of Webpack which depends on 1.8.2 of this module.</p> <p dir="auto">Can this change be reverted or fixed?</p>
1