text1
stringlengths 0
536k
| text2
stringlengths 0
536k
| label
int64 0
1
|
---|---|---|
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/apache/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.0</li>
<li>Operating System version: mac</li>
<li>Java version: 1.8</li>
</ul>
<p dir="auto">Why this method <code class="notranslate">org.apache.dubbo.qos.protocol.QosProtocolWrapper#stopServer</code> not invoked?<br>
My understanding is that when the service stops, the http service should stop.</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.2</li>
<li>Operating System version: Linux 3.10.0-957.5.1.el7.x86_64</li>
<li>Java version: 1.8</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<p dir="auto">Data length too large</p>
<h3 dir="auto">Expected Result</h3>
<p dir="auto">Locate the exception method based on the log</p>
<h3 dir="auto">Actual Result</h3>
<p dir="auto">java.io.IOException: Data length too large: 18463787, max payload: 8388608, channel: NettyChannel [channel=[id: 0x57203c57, /127.0.0.1:43554 => /127.0.0.1:20890]]</p> | 0 |
<h1 dir="auto">Bug report</h1>
<p dir="auto"><strong>What is the current behavior?</strong><br>
I've a react project in which I use the <a href="https://github.com/microsoft/monaco-editor-webpack-plugin">monaco-editor-webpack-plugin</a></p>
<p dir="auto">I want to bundle all dependencies to <code class="notranslate">monaco-editor</code> to a separate chunk.</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="chunkFilename: isEnvProduction
? "static/js/[name].[contenthash:8].chunk.js"
: isEnvDevelopment && "static/js/[name].chunk.js",
...
splitChunks: {
chunks: "all",
maxInitialRequests: Infinity,
minSize: 0,
cacheGroups: {
vendor: {
test: /[\\/](monaco-editor)[\\/]/,
name: "monaco-editor"
}
}
},"><pre class="notranslate"><span class="pl-s1">chunkFilename</span>: <span class="pl-s1">isEnvProduction</span>
? <span class="pl-s">"static/js/[name].[contenthash:8].chunk.js"</span>
: <span class="pl-s1">isEnvDevelopment</span> <span class="pl-c1">&&</span> <span class="pl-s">"static/js/[name].chunk.js"</span><span class="pl-kos">,</span>
...
<span class="pl-s1">splitChunks</span>: <span class="pl-kos">{</span>
<span class="pl-c1">chunks</span>: <span class="pl-s">"all"</span><span class="pl-kos">,</span>
<span class="pl-c1">maxInitialRequests</span>: <span class="pl-v">Infinity</span><span class="pl-kos">,</span>
<span class="pl-c1">minSize</span>: <span class="pl-c1">0</span><span class="pl-kos">,</span>
<span class="pl-c1">cacheGroups</span>: <span class="pl-kos">{</span>
<span class="pl-c1">vendor</span>: <span class="pl-kos">{</span>
<span class="pl-c1">test</span>: <span class="pl-pds"><span class="pl-c1">/</span><span class="pl-kos">[</span><span class="pl-cce">\\</span>/<span class="pl-kos">]</span><span class="pl-kos">(</span>monaco-editor<span class="pl-kos">)</span><span class="pl-kos">[</span><span class="pl-cce">\\</span>/<span class="pl-kos">]</span><span class="pl-c1">/</span></span><span class="pl-kos">,</span>
<span class="pl-c1">name</span>: <span class="pl-s">"monaco-editor"</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span></pre></div>
<p dir="auto">When doing this I get the following error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="chunk runtime-main [entry]
Cannot convert undefined or null to object"><pre class="notranslate"><code class="notranslate">chunk runtime-main [entry]
Cannot convert undefined or null to object
</code></pre></div>
<p dir="auto">As you can see I'm using <code class="notranslate">contenthash</code> within my <code class="notranslate">chunkFilename</code> if I change this to <code class="notranslate">chunkhash</code> it works fine.</p>
<p dir="auto">I did some research in <code class="notranslate">monaco-editor-webpack-plugin</code> and I found out that it is using <code class="notranslate">new webpack.optimize.LimitChunkCountPlugin({ maxChunks: 1 })</code> for the workers that are added by the plugin. This seems to be the issue somehow.</p>
<p dir="auto">I tested this by defining an empty <code class="notranslate">languages</code> option for the plugin (the plugin doesn't add any worker that uses the <code class="notranslate">LimitChunkCountPlugin</code> when and empty array is defined):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="new MonacoWebpackPlugin({
//does work
languages: []
// does not work
languages: ["json"]
})"><pre class="notranslate"><code class="notranslate">new MonacoWebpackPlugin({
//does work
languages: []
// does not work
languages: ["json"]
})
</code></pre></div>
<p dir="auto">To reproduce this error download the repository below:<br>
<a href="https://github.com/webpack/webpack/files/3864485/my-app.zip">my-app.zip</a></p>
<p dir="auto">The <code class="notranslate">monaco-editor-webpack-plugin</code> is added on line <code class="notranslate">674</code></p>
<p dir="auto"><strong>What is the expected behavior?</strong><br>
I expect webpack to bundle and chunk my files normally without throwing an error.</p>
<p dir="auto"><strong>Other relevant information:</strong><br>
webpack version: 4.41.0<br>
Node.js version: v10.17.0<br>
Operating System: ubuntu<br>
Additional tools:</p> | <p dir="auto">I'm trying to bundle all my monaco-editor dependencies to a separate chunk inside my webpack config.</p>
<p dir="auto">Right now I'm doing is by using the cacheGroups feature of webpack:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="splitChunks: {
chunks: "all",
maxInitialRequests: Infinity,
minSize: 0,
cacheGroups: {
vendor: {
test: /[\\/](monaco-editor)[\\/]/,
name: "monaco-editor"
}
}
},"><pre class="notranslate"><span class="pl-s1">splitChunks</span>: <span class="pl-kos">{</span>
<span class="pl-c1">chunks</span>: <span class="pl-s">"all"</span><span class="pl-kos">,</span>
<span class="pl-c1">maxInitialRequests</span>: <span class="pl-v">Infinity</span><span class="pl-kos">,</span>
<span class="pl-c1">minSize</span>: <span class="pl-c1">0</span><span class="pl-kos">,</span>
<span class="pl-c1">cacheGroups</span>: <span class="pl-kos">{</span>
<span class="pl-c1">vendor</span>: <span class="pl-kos">{</span>
<span class="pl-c1">test</span>: <span class="pl-pds"><span class="pl-c1">/</span><span class="pl-kos">[</span><span class="pl-cce">\\</span>/<span class="pl-kos">]</span><span class="pl-kos">(</span>monaco-editor<span class="pl-kos">)</span><span class="pl-kos">[</span><span class="pl-cce">\\</span>/<span class="pl-kos">]</span><span class="pl-c1">/</span></span><span class="pl-kos">,</span>
<span class="pl-c1">name</span>: <span class="pl-s">"monaco-editor"</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've created a little sample project which contains this bug. Feel free to try it out :)</p>
<p dir="auto"><a href="https://github.com/microsoft/monaco-editor-webpack-plugin/files/3864460/my-app.zip">my-app.zip</a></p>
<p dir="auto">My config:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=""use strict";
const fs = require("fs");
const isWsl = require("is-wsl");
const path = require("path");
const webpack = require("webpack");
const resolve = require("resolve");
const PnpWebpackPlugin = require("pnp-webpack-plugin");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const CaseSensitivePathsPlugin = require("case-sensitive-paths-webpack-plugin");
const InlineChunkHtmlPlugin = require("react-dev-utils/InlineChunkHtmlPlugin");
const TerserPlugin = require("terser-webpack-plugin");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const OptimizeCSSAssetsPlugin = require("optimize-css-assets-webpack-plugin");
const safePostCssParser = require("postcss-safe-parser");
const ManifestPlugin = require("webpack-manifest-plugin");
const InterpolateHtmlPlugin = require("react-dev-utils/InterpolateHtmlPlugin");
const WorkboxWebpackPlugin = require("workbox-webpack-plugin");
const WatchMissingNodeModulesPlugin = require("react-dev-utils/WatchMissingNodeModulesPlugin");
const ModuleScopePlugin = require("react-dev-utils/ModuleScopePlugin");
const getCSSModuleLocalIdent = require("react-dev-utils/getCSSModuleLocalIdent");
const paths = require("./paths");
const modules = require("./modules");
const getClientEnvironment = require("./env");
const ModuleNotFoundPlugin = require("react-dev-utils/ModuleNotFoundPlugin");
const ForkTsCheckerWebpackPlugin = require("react-dev-utils/ForkTsCheckerWebpackPlugin");
const typescriptFormatter = require("react-dev-utils/typescriptFormatter");
const eslint = require("eslint");
const BundleAnalyzerPlugin = require("webpack-bundle-analyzer")
.BundleAnalyzerPlugin;
const MonacoWebpackPlugin = require("monaco-editor-webpack-plugin");
const postcssNormalize = require("postcss-normalize");
const appPackageJson = require(paths.appPackageJson);
// Source maps are resource heavy and can cause out of memory issue for large source files.
const shouldUseSourceMap = process.env.GENERATE_SOURCEMAP !== "false";
// Some apps do not need the benefits of saving a web request, so not inlining the chunk
// makes for a smoother build process.
const shouldInlineRuntimeChunk = process.env.INLINE_RUNTIME_CHUNK !== "false";
const imageInlineSizeLimit = parseInt(
process.env.IMAGE_INLINE_SIZE_LIMIT || "10000"
);
// Check if TypeScript is setup
const useTypeScript = fs.existsSync(paths.appTsConfig);
// style files regexes
const cssRegex = /\.css$/;
const cssModuleRegex = /\.module\.css$/;
const sassRegex = /\.(scss|sass)$/;
const sassModuleRegex = /\.module\.(scss|sass)$/;
// This is the production and development configuration.
// It is focused on developer experience, fast rebuilds, and a minimal bundle.
module.exports = function(webpackEnv) {
const isEnvDevelopment = webpackEnv === "development";
const isEnvProduction = webpackEnv === "production";
// Variable used for enabling profiling in Production
// passed into alias object. Uses a flag if passed into the build command
const isEnvProductionProfile =
isEnvProduction && process.argv.includes("--profile");
// Webpack uses `publicPath` to determine where the app is being served from.
// It requires a trailing slash, or the file assets will get an incorrect path.
// In development, we always serve from the root. This makes config easier.
const publicPath = isEnvProduction
? paths.servedPath
: isEnvDevelopment && "/";
// Some apps do not use client-side routing with pushState.
// For these, "homepage" can be set to "." to enable relative asset paths.
const shouldUseRelativeAssetPaths = publicPath === "./";
// `publicUrl` is just like `publicPath`, but we will provide it to our app
// as %PUBLIC_URL% in `index.html` and `process.env.PUBLIC_URL` in JavaScript.
// Omit trailing slash as %PUBLIC_URL%/xyz looks better than %PUBLIC_URL%xyz.
const publicUrl = isEnvProduction
? publicPath.slice(0, -1)
: isEnvDevelopment && "";
// Get environment variables to inject into our app.
const env = getClientEnvironment(publicUrl);
// common function to get style loaders
const getStyleLoaders = (cssOptions, preProcessor) => {
const loaders = [
isEnvDevelopment && require.resolve("style-loader"),
isEnvProduction && {
loader: MiniCssExtractPlugin.loader,
options: shouldUseRelativeAssetPaths ? { publicPath: "../../" } : {}
},
{
loader: require.resolve("css-loader"),
options: cssOptions
},
{
// Options for PostCSS as we reference these options twice
// Adds vendor prefixing based on your specified browser support in
// package.json
loader: require.resolve("postcss-loader"),
options: {
// Necessary for external CSS imports to work
// https://github.com/facebook/create-react-app/issues/2677
ident: "postcss",
plugins: () => [
require("postcss-flexbugs-fixes"),
require("postcss-preset-env")({
autoprefixer: {
flexbox: "no-2009"
},
stage: 3
}),
// Adds PostCSS Normalize as the reset css with default options,
// so that it honors browserslist config in package.json
// which in turn let's users customize the target behavior as per their needs.
postcssNormalize()
],
sourceMap: isEnvProduction && shouldUseSourceMap
}
}
].filter(Boolean);
if (preProcessor) {
loaders.push(
{
loader: require.resolve("resolve-url-loader"),
options: {
sourceMap: isEnvProduction && shouldUseSourceMap
}
},
{
loader: require.resolve(preProcessor),
options: {
sourceMap: true
}
}
);
}
return loaders;
};
return {
mode: isEnvProduction ? "production" : isEnvDevelopment && "development",
// Stop compilation early in production
bail: isEnvProduction,
devtool: isEnvProduction
? shouldUseSourceMap
? "source-map"
: false
: isEnvDevelopment && "cheap-module-source-map",
// These are the "entry points" to our application.
// This means they will be the "root" imports that are included in JS bundle.
entry: [
// Include an alternative client for WebpackDevServer. A client's job is to
// connect to WebpackDevServer by a socket and get notified about changes.
// When you save a file, the client will either apply hot updates (in case
// of CSS changes), or refresh the page (in case of JS changes). When you
// make a syntax error, this client will display a syntax error overlay.
// Note: instead of the default WebpackDevServer client, we use a custom one
// to bring better experience for Create React App users. You can replace
// the line below with these two lines if you prefer the stock client:
// require.resolve('webpack-dev-server/client') + '?/',
// require.resolve('webpack/hot/dev-server'),
isEnvDevelopment &&
require.resolve("react-dev-utils/webpackHotDevClient"),
// Finally, this is your app's code:
paths.appIndexJs
// We include the app code last so that if there is a runtime error during
// initialization, it doesn't blow up the WebpackDevServer client, and
// changing JS code would still trigger a refresh.
].filter(Boolean),
output: {
// The build folder.
path: isEnvProduction ? paths.appBuild : undefined,
// Add /* filename */ comments to generated require()s in the output.
pathinfo: isEnvDevelopment,
// There will be one main bundle, and one file per asynchronous chunk.
// In development, it does not produce real files.
filename: isEnvProduction
? "static/js/[name].[contenthash:8].js"
: isEnvDevelopment && "static/js/bundle.js",
// TODO: remove this when upgrading to webpack 5
futureEmitAssets: true,
// There are also additional JS chunk files if you use code splitting.
chunkFilename: isEnvProduction
? "static/js/[name].[contenthash:8].chunk.js"
: isEnvDevelopment && "static/js/[name].chunk.js",
// We inferred the "public path" (such as / or /my-project) from homepage.
// We use "/" in development.
publicPath: publicPath,
// Point sourcemap entries to original disk location (format as URL on Windows)
devtoolModuleFilenameTemplate: isEnvProduction
? info =>
path
.relative(paths.appSrc, info.absoluteResourcePath)
.replace(/\\/g, "/")
: isEnvDevelopment &&
(info => path.resolve(info.absoluteResourcePath).replace(/\\/g, "/")),
// Prevents conflicts when multiple Webpack runtimes (from different apps)
// are used on the same page.
jsonpFunction: `webpackJsonp${appPackageJson.name}`,
// this defaults to 'window', but by setting it to 'this' then
// module chunks which are built will work in web workers as well.
globalObject: "this"
},
optimization: {
minimize: isEnvProduction,
minimizer: [
// This is only used in production mode
new TerserPlugin({
terserOptions: {
parse: {
// We want terser to parse ecma 8 code. However, we don't want it
// to apply any minification steps that turns valid ecma 5 code
// into invalid ecma 5 code. This is why the 'compress' and 'output'
// sections only apply transformations that are ecma 5 safe
// https://github.com/facebook/create-react-app/pull/4234
ecma: 8
},
compress: {
ecma: 5,
warnings: false,
// Disabled because of an issue with Uglify breaking seemingly valid code:
// https://github.com/facebook/create-react-app/issues/2376
// Pending further investigation:
// https://github.com/mishoo/UglifyJS2/issues/2011
comparisons: false,
// Disabled because of an issue with Terser breaking valid code:
// https://github.com/facebook/create-react-app/issues/5250
// Pending further investigation:
// https://github.com/terser-js/terser/issues/120
inline: 2
},
mangle: {
safari10: true
},
// Added for profiling in devtools
keep_classnames: isEnvProductionProfile,
keep_fnames: isEnvProductionProfile,
output: {
ecma: 5,
comments: false,
// Turned on because emoji and regex is not minified properly using default
// https://github.com/facebook/create-react-app/issues/2488
ascii_only: true
}
},
// Use multi-process parallel running to improve the build speed
// Default number of concurrent runs: os.cpus().length - 1
// Disabled on WSL (Windows Subsystem for Linux) due to an issue with Terser
// https://github.com/webpack-contrib/terser-webpack-plugin/issues/21
parallel: !isWsl,
// Enable file caching
cache: true,
sourceMap: shouldUseSourceMap
}),
// This is only used in production mode
new OptimizeCSSAssetsPlugin({
cssProcessorOptions: {
parser: safePostCssParser,
map: shouldUseSourceMap
? {
// `inline: false` forces the sourcemap to be output into a
// separate file
inline: false,
// `annotation: true` appends the sourceMappingURL to the end of
// the css file, helping the browser find the sourcemap
annotation: true
}
: false
}
})
],
// Automatically split vendor and commons
// https://twitter.com/wSokra/status/969633336732905474
// https://medium.com/webpack/webpack-4-code-splitting-chunk-graph-and-the-splitchunks-optimization-be739a861366
splitChunks: {
chunks: "all",
maxInitialRequests: Infinity,
minSize: 0,
cacheGroups: {
vendor: {
test: /[\\/](monaco-editor)[\\/]/,
name: "monaco-editor"
}
}
},
// Keep the runtime chunk separated to enable long term caching
// https://twitter.com/wSokra/status/969679223278505985
// https://github.com/facebook/create-react-app/issues/5358
runtimeChunk: {
name: entrypoint => `runtime-${entrypoint.name}`
}
},
resolve: {
// This allows you to set a fallback for where Webpack should look for modules.
// We placed these paths second because we want `node_modules` to "win"
// if there are any conflicts. This matches Node resolution mechanism.
// https://github.com/facebook/create-react-app/issues/253
modules: ["node_modules", paths.appNodeModules].concat(
modules.additionalModulePaths || []
),
// These are the reasonable defaults supported by the Node ecosystem.
// We also include JSX as a common component filename extension to support
// some tools, although we do not recommend using it, see:
// https://github.com/facebook/create-react-app/issues/290
// `web` extension prefixes have been added for better support
// for React Native Web.
extensions: paths.moduleFileExtensions
.map(ext => `.${ext}`)
.filter(ext => useTypeScript || !ext.includes("ts")),
alias: {
// Support React Native Web
// https://www.smashingmagazine.com/2016/08/a-glimpse-into-the-future-with-react-native-for-web/
"react-native": "react-native-web",
// Allows for better profiling with ReactDevTools
...(isEnvProductionProfile && {
"react-dom$": "react-dom/profiling",
"scheduler/tracing": "scheduler/tracing-profiling"
}),
...(modules.webpackAliases || {})
},
plugins: [
// Adds support for installing with Plug'n'Play, leading to faster installs and adding
// guards against forgotten dependencies and such.
PnpWebpackPlugin,
// Prevents users from importing files from outside of src/ (or node_modules/).
// This often causes confusion because we only process files within src/ with babel.
// To fix this, we prevent you from importing files out of src/ -- if you'd like to,
// please link the files into your node_modules/ and let module-resolution kick in.
// Make sure your source files are compiled, as they will not be processed in any way.
new ModuleScopePlugin(paths.appSrc, [paths.appPackageJson])
]
},
resolveLoader: {
plugins: [
// Also related to Plug'n'Play, but this time it tells Webpack to load its loaders
// from the current package.
PnpWebpackPlugin.moduleLoader(module)
]
},
module: {
strictExportPresence: true,
rules: [
// Disable require.ensure as it's not a standard language feature.
{ parser: { requireEnsure: false } },
// First, run the linter.
// It's important to do this before Babel processes the JS.
{
test: /\.(js|mjs|jsx|ts|tsx)$/,
enforce: "pre",
use: [
{
options: {
cache: true,
formatter: require.resolve("react-dev-utils/eslintFormatter"),
eslintPath: require.resolve("eslint"),
resolvePluginsRelativeTo: __dirname
},
loader: require.resolve("eslint-loader")
}
],
include: paths.appSrc
},
{
// "oneOf" will traverse all following loaders until one will
// match the requirements. When no loader matches it will fall
// back to the "file" loader at the end of the loader list.
oneOf: [
// "url" loader works like "file" loader except that it embeds assets
// smaller than specified limit in bytes as data URLs to avoid requests.
// A missing `test` is equivalent to a match.
{
test: [/\.bmp$/, /\.gif$/, /\.jpe?g$/, /\.png$/],
loader: require.resolve("url-loader"),
options: {
limit: imageInlineSizeLimit,
name: "static/media/[name].[hash:8].[ext]"
}
},
// Process application JS with Babel.
// The preset includes JSX, Flow, TypeScript, and some ESnext features.
{
test: /\.(js|mjs|jsx|ts|tsx)$/,
include: paths.appSrc,
loader: require.resolve("babel-loader"),
options: {
customize: require.resolve(
"babel-preset-react-app/webpack-overrides"
),
plugins: [
[
require.resolve("babel-plugin-named-asset-import"),
{
loaderMap: {
svg: {
ReactComponent:
"@svgr/webpack?-svgo,+titleProp,+ref![path]"
}
}
}
]
],
// This is a feature of `babel-loader` for webpack (not Babel itself).
// It enables caching results in ./node_modules/.cache/babel-loader/
// directory for faster rebuilds.
cacheDirectory: true,
// See #6846 for context on why cacheCompression is disabled
cacheCompression: false,
compact: isEnvProduction
}
},
// Process any JS outside of the app with Babel.
// Unlike the application JS, we only compile the standard ES features.
{
test: /\.(js|mjs)$/,
exclude: /@babel(?:\/|\\{1,2})runtime/,
loader: require.resolve("babel-loader"),
options: {
babelrc: false,
configFile: false,
compact: false,
presets: [
[
require.resolve("babel-preset-react-app/dependencies"),
{ helpers: true }
]
],
cacheDirectory: true,
// See #6846 for context on why cacheCompression is disabled
cacheCompression: false,
// If an error happens in a package, it's possible to be
// because it was compiled. Thus, we don't want the browser
// debugger to show the original code. Instead, the code
// being evaluated would be much more helpful.
sourceMaps: false
}
},
// "postcss" loader applies autoprefixer to our CSS.
// "css" loader resolves paths in CSS and adds assets as dependencies.
// "style" loader turns CSS into JS modules that inject <style> tags.
// In production, we use MiniCSSExtractPlugin to extract that CSS
// to a file, but in development "style" loader enables hot editing
// of CSS.
// By default we support CSS Modules with the extension .module.css
{
test: cssRegex,
exclude: cssModuleRegex,
use: getStyleLoaders({
importLoaders: 1,
sourceMap: isEnvProduction && shouldUseSourceMap
}),
// Don't consider CSS imports dead code even if the
// containing package claims to have no side effects.
// Remove this when webpack adds a warning or an error for this.
// See https://github.com/webpack/webpack/issues/6571
sideEffects: true
},
// Adds support for CSS Modules (https://github.com/css-modules/css-modules)
// using the extension .module.css
{
test: cssModuleRegex,
use: getStyleLoaders({
importLoaders: 1,
sourceMap: isEnvProduction && shouldUseSourceMap,
modules: true,
getLocalIdent: getCSSModuleLocalIdent
})
},
// Opt-in support for SASS (using .scss or .sass extensions).
// By default we support SASS Modules with the
// extensions .module.scss or .module.sass
{
test: sassRegex,
exclude: sassModuleRegex,
use: getStyleLoaders(
{
importLoaders: 2,
sourceMap: isEnvProduction && shouldUseSourceMap
},
"sass-loader"
),
// Don't consider CSS imports dead code even if the
// containing package claims to have no side effects.
// Remove this when webpack adds a warning or an error for this.
// See https://github.com/webpack/webpack/issues/6571
sideEffects: true
},
// Adds support for CSS Modules, but using SASS
// using the extension .module.scss or .module.sass
{
test: sassModuleRegex,
use: getStyleLoaders(
{
importLoaders: 2,
sourceMap: isEnvProduction && shouldUseSourceMap,
modules: true,
getLocalIdent: getCSSModuleLocalIdent
},
"sass-loader"
)
},
// "file" loader makes sure those assets get served by WebpackDevServer.
// When you `import` an asset, you get its (virtual) filename.
// In production, they would get copied to the `build` folder.
// This loader doesn't use a "test" so it will catch all modules
// that fall through the other loaders.
{
loader: require.resolve("file-loader"),
// Exclude `js` files to keep "css" loader working as it injects
// its runtime that would otherwise be processed through "file" loader.
// Also exclude `html` and `json` extensions so they get processed
// by webpacks internal loaders.
exclude: [/\.(js|mjs|jsx|ts|tsx)$/, /\.html$/, /\.json$/],
options: {
name: "static/media/[name].[hash:8].[ext]"
}
}
// ** STOP ** Are you adding a new loader?
// Make sure to add the new loader(s) before the "file" loader.
]
}
]
},
plugins: [
// Generates an `index.html` file with the <script> injected.
new HtmlWebpackPlugin(
Object.assign(
{},
{
inject: true,
template: paths.appHtml
},
isEnvProduction
? {
minify: {
removeComments: true,
collapseWhitespace: true,
removeRedundantAttributes: true,
useShortDoctype: true,
removeEmptyAttributes: true,
removeStyleLinkTypeAttributes: true,
keepClosingSlash: true,
minifyJS: true,
minifyCSS: true,
minifyURLs: true
}
}
: undefined
)
),
// Inlines the webpack runtime script. This script is too small to warrant
// a network request.
// https://github.com/facebook/create-react-app/issues/5358
isEnvProduction &&
shouldInlineRuntimeChunk &&
new InlineChunkHtmlPlugin(HtmlWebpackPlugin, [/runtime-.+[.]js/]),
// Makes some environment variables available in index.html.
// The public URL is available as %PUBLIC_URL% in index.html, e.g.:
// <link rel="icon" href="%PUBLIC_URL%/favicon.ico">
// In production, it will be an empty string unless you specify "homepage"
// in `package.json`, in which case it will be the pathname of that URL.
// In development, this will be an empty string.
new InterpolateHtmlPlugin(HtmlWebpackPlugin, env.raw),
// This gives some necessary context to module not found errors, such as
// the requesting resource.
new ModuleNotFoundPlugin(paths.appPath),
// Makes some environment variables available to the JS code, for example:
// if (process.env.NODE_ENV === 'production') { ... }. See `./env.js`.
// It is absolutely essential that NODE_ENV is set to production
// during a production build.
// Otherwise React will be compiled in the very slow development mode.
new webpack.DefinePlugin(env.stringified),
// This is necessary to emit hot updates (currently CSS only):
isEnvDevelopment && new webpack.HotModuleReplacementPlugin(),
// Watcher doesn't work well if you mistype casing in a path so we use
// a plugin that prints an error when you attempt to do this.
// See https://github.com/facebook/create-react-app/issues/240
isEnvDevelopment && new CaseSensitivePathsPlugin(),
// If you require a missing module and then `npm install` it, you still have
// to restart the development server for Webpack to discover it. This plugin
// makes the discovery automatic so you don't have to restart.
// See https://github.com/facebook/create-react-app/issues/186
isEnvDevelopment &&
new WatchMissingNodeModulesPlugin(paths.appNodeModules),
isEnvProduction &&
new MiniCssExtractPlugin({
// Options similar to the same options in webpackOptions.output
// both options are optional
filename: "static/css/[name].[contenthash:8].css",
chunkFilename: "static/css/[name].[contenthash:8].chunk.css"
}),
// Generate an asset manifest file with the following content:
// - "files" key: Mapping of all asset filenames to their corresponding
// output file so that tools can pick it up without having to parse
// `index.html`
// - "entrypoints" key: Array of files which are included in `index.html`,
// can be used to reconstruct the HTML if necessary
new ManifestPlugin({
fileName: "asset-manifest.json",
publicPath: publicPath,
generate: (seed, files, entrypoints) => {
const manifestFiles = files.reduce((manifest, file) => {
manifest[file.name] = file.path;
return manifest;
}, seed);
const entrypointFiles = entrypoints.main.filter(
fileName => !fileName.endsWith(".map")
);
return {
files: manifestFiles,
entrypoints: entrypointFiles
};
}
}),
// Moment.js is an extremely popular library that bundles large locale files
// by default due to how Webpack interprets its code. This is a practical
// solution that requires the user to opt into importing specific locales.
// https://github.com/jmblog/how-to-optimize-momentjs-with-webpack
// You can remove this if you don't use Moment.js:
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
// Generate a service worker script that will precache, and keep up to date,
// the HTML & assets that are part of the Webpack build.
isEnvProduction &&
new WorkboxWebpackPlugin.GenerateSW({
clientsClaim: true,
exclude: [/\.map$/, /asset-manifest\.json$/],
importWorkboxFrom: "cdn",
navigateFallback: publicUrl + "/index.html",
navigateFallbackBlacklist: [
// Exclude URLs starting with /_, as they're likely an API call
new RegExp("^/_"),
// Exclude any URLs whose last part seems to be a file extension
// as they're likely a resource and not a SPA route.
// URLs containing a "?" character won't be blacklisted as they're likely
// a route with query params (e.g. auth callbacks).
new RegExp("/[^/?]+\\.[^/]+$")
]
}),
// TypeScript type checking
useTypeScript &&
new ForkTsCheckerWebpackPlugin({
typescript: resolve.sync("typescript", {
basedir: paths.appNodeModules
}),
async: isEnvDevelopment,
useTypescriptIncrementalApi: true,
checkSyntacticErrors: true,
resolveModuleNameModule: process.versions.pnp
? `${__dirname}/pnpTs.js`
: undefined,
resolveTypeReferenceDirectiveModule: process.versions.pnp
? `${__dirname}/pnpTs.js`
: undefined,
tsconfig: paths.appTsConfig,
reportFiles: [
"**",
"!**/__tests__/**",
"!**/?(*.)(spec|test).*",
"!**/src/setupProxy.*",
"!**/src/setupTests.*"
],
silent: true,
// The formatter is invoked directly in WebpackDevServerUtils during development
formatter: isEnvProduction ? typescriptFormatter : undefined
}),
// THIS BREAKS THE BUILD WHEN USING contenthash
new MonacoWebpackPlugin()
// new BundleAnalyzerPlugin()
].filter(Boolean),
// Some libraries import Node modules but don't use them in the browser.
// Tell Webpack to provide empty mocks for them so importing them works.
node: {
module: "empty",
dgram: "empty",
dns: "mock",
fs: "empty",
http2: "empty",
net: "empty",
tls: "empty",
child_process: "empty"
},
// Turn off performance processing because we utilize
// our own hints via the FileSizeReporter
performance: false
};
};"><pre class="notranslate"><span class="pl-s">"use strict"</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">fs</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"fs"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">isWsl</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"is-wsl"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">path</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"path"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">webpack</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"webpack"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">resolve</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"resolve"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-v">PnpWebpackPlugin</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"pnp-webpack-plugin"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-v">HtmlWebpackPlugin</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"html-webpack-plugin"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-v">CaseSensitivePathsPlugin</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"case-sensitive-paths-webpack-plugin"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-v">InlineChunkHtmlPlugin</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"react-dev-utils/InlineChunkHtmlPlugin"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-v">TerserPlugin</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"terser-webpack-plugin"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-v">MiniCssExtractPlugin</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"mini-css-extract-plugin"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-v">OptimizeCSSAssetsPlugin</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"optimize-css-assets-webpack-plugin"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">safePostCssParser</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"postcss-safe-parser"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-v">ManifestPlugin</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"webpack-manifest-plugin"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-v">InterpolateHtmlPlugin</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"react-dev-utils/InterpolateHtmlPlugin"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-v">WorkboxWebpackPlugin</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"workbox-webpack-plugin"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-v">WatchMissingNodeModulesPlugin</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"react-dev-utils/WatchMissingNodeModulesPlugin"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-v">ModuleScopePlugin</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"react-dev-utils/ModuleScopePlugin"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">getCSSModuleLocalIdent</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"react-dev-utils/getCSSModuleLocalIdent"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">paths</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"./paths"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">modules</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"./modules"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">getClientEnvironment</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"./env"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-v">ModuleNotFoundPlugin</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"react-dev-utils/ModuleNotFoundPlugin"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-v">ForkTsCheckerWebpackPlugin</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"react-dev-utils/ForkTsCheckerWebpackPlugin"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">typescriptFormatter</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"react-dev-utils/typescriptFormatter"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">eslint</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"eslint"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-v">BundleAnalyzerPlugin</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"webpack-bundle-analyzer"</span><span class="pl-kos">)</span>
<span class="pl-kos">.</span><span class="pl-c1">BundleAnalyzerPlugin</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-v">MonacoWebpackPlugin</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"monaco-editor-webpack-plugin"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">postcssNormalize</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"postcss-normalize"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">appPackageJson</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s1">paths</span><span class="pl-kos">.</span><span class="pl-c1">appPackageJson</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">// Source maps are resource heavy and can cause out of memory issue for large source files.</span>
<span class="pl-k">const</span> <span class="pl-s1">shouldUseSourceMap</span> <span class="pl-c1">=</span> <span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">GENERATE_SOURCEMAP</span> <span class="pl-c1">!==</span> <span class="pl-s">"false"</span><span class="pl-kos">;</span>
<span class="pl-c">// Some apps do not need the benefits of saving a web request, so not inlining the chunk</span>
<span class="pl-c">// makes for a smoother build process.</span>
<span class="pl-k">const</span> <span class="pl-s1">shouldInlineRuntimeChunk</span> <span class="pl-c1">=</span> <span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">INLINE_RUNTIME_CHUNK</span> <span class="pl-c1">!==</span> <span class="pl-s">"false"</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">imageInlineSizeLimit</span> <span class="pl-c1">=</span> <span class="pl-en">parseInt</span><span class="pl-kos">(</span>
<span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">IMAGE_INLINE_SIZE_LIMIT</span> <span class="pl-c1">||</span> <span class="pl-s">"10000"</span>
<span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">// Check if TypeScript is setup</span>
<span class="pl-k">const</span> <span class="pl-s1">useTypeScript</span> <span class="pl-c1">=</span> <span class="pl-s1">fs</span><span class="pl-kos">.</span><span class="pl-en">existsSync</span><span class="pl-kos">(</span><span class="pl-s1">paths</span><span class="pl-kos">.</span><span class="pl-c1">appTsConfig</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">// style files regexes</span>
<span class="pl-k">const</span> <span class="pl-s1">cssRegex</span> <span class="pl-c1">=</span> <span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">\.</span>css<span class="pl-cce">$</span><span class="pl-c1">/</span></span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">cssModuleRegex</span> <span class="pl-c1">=</span> <span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">\.</span>module<span class="pl-cce">\.</span>css<span class="pl-cce">$</span><span class="pl-c1">/</span></span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">sassRegex</span> <span class="pl-c1">=</span> <span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">\.</span><span class="pl-kos">(</span>scss<span class="pl-c1">|</span>sass<span class="pl-kos">)</span><span class="pl-cce">$</span><span class="pl-c1">/</span></span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">sassModuleRegex</span> <span class="pl-c1">=</span> <span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">\.</span>module<span class="pl-cce">\.</span><span class="pl-kos">(</span>scss<span class="pl-c1">|</span>sass<span class="pl-kos">)</span><span class="pl-cce">$</span><span class="pl-c1">/</span></span><span class="pl-kos">;</span>
<span class="pl-c">// This is the production and development configuration.</span>
<span class="pl-c">// It is focused on developer experience, fast rebuilds, and a minimal bundle.</span>
<span class="pl-smi">module</span><span class="pl-kos">.</span><span class="pl-en">exports</span> <span class="pl-c1">=</span> <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">webpackEnv</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-s1">isEnvDevelopment</span> <span class="pl-c1">=</span> <span class="pl-s1">webpackEnv</span> <span class="pl-c1">===</span> <span class="pl-s">"development"</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">isEnvProduction</span> <span class="pl-c1">=</span> <span class="pl-s1">webpackEnv</span> <span class="pl-c1">===</span> <span class="pl-s">"production"</span><span class="pl-kos">;</span>
<span class="pl-c">// Variable used for enabling profiling in Production</span>
<span class="pl-c">// passed into alias object. Uses a flag if passed into the build command</span>
<span class="pl-k">const</span> <span class="pl-s1">isEnvProductionProfile</span> <span class="pl-c1">=</span>
<span class="pl-s1">isEnvProduction</span> <span class="pl-c1">&&</span> <span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">argv</span><span class="pl-kos">.</span><span class="pl-en">includes</span><span class="pl-kos">(</span><span class="pl-s">"--profile"</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">// Webpack uses `publicPath` to determine where the app is being served from.</span>
<span class="pl-c">// It requires a trailing slash, or the file assets will get an incorrect path.</span>
<span class="pl-c">// In development, we always serve from the root. This makes config easier.</span>
<span class="pl-k">const</span> <span class="pl-s1">publicPath</span> <span class="pl-c1">=</span> <span class="pl-s1">isEnvProduction</span>
? <span class="pl-s1">paths</span><span class="pl-kos">.</span><span class="pl-c1">servedPath</span>
: <span class="pl-s1">isEnvDevelopment</span> <span class="pl-c1">&&</span> <span class="pl-s">"/"</span><span class="pl-kos">;</span>
<span class="pl-c">// Some apps do not use client-side routing with pushState.</span>
<span class="pl-c">// For these, "homepage" can be set to "." to enable relative asset paths.</span>
<span class="pl-k">const</span> <span class="pl-s1">shouldUseRelativeAssetPaths</span> <span class="pl-c1">=</span> <span class="pl-s1">publicPath</span> <span class="pl-c1">===</span> <span class="pl-s">"./"</span><span class="pl-kos">;</span>
<span class="pl-c">// `publicUrl` is just like `publicPath`, but we will provide it to our app</span>
<span class="pl-c">// as %PUBLIC_URL% in `index.html` and `process.env.PUBLIC_URL` in JavaScript.</span>
<span class="pl-c">// Omit trailing slash as %PUBLIC_URL%/xyz looks better than %PUBLIC_URL%xyz.</span>
<span class="pl-k">const</span> <span class="pl-s1">publicUrl</span> <span class="pl-c1">=</span> <span class="pl-s1">isEnvProduction</span>
? <span class="pl-s1">publicPath</span><span class="pl-kos">.</span><span class="pl-en">slice</span><span class="pl-kos">(</span><span class="pl-c1">0</span><span class="pl-kos">,</span> <span class="pl-c1">-</span><span class="pl-c1">1</span><span class="pl-kos">)</span>
: <span class="pl-s1">isEnvDevelopment</span> <span class="pl-c1">&&</span> <span class="pl-s">""</span><span class="pl-kos">;</span>
<span class="pl-c">// Get environment variables to inject into our app.</span>
<span class="pl-k">const</span> <span class="pl-s1">env</span> <span class="pl-c1">=</span> <span class="pl-s1">getClientEnvironment</span><span class="pl-kos">(</span><span class="pl-s1">publicUrl</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">// common function to get style loaders</span>
<span class="pl-k">const</span> <span class="pl-en">getStyleLoaders</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-s1">cssOptions</span><span class="pl-kos">,</span> <span class="pl-s1">preProcessor</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-s1">loaders</span> <span class="pl-c1">=</span> <span class="pl-kos">[</span>
<span class="pl-s1">isEnvDevelopment</span> <span class="pl-c1">&&</span> <span class="pl-en">require</span><span class="pl-kos">.</span><span class="pl-en">resolve</span><span class="pl-kos">(</span><span class="pl-s">"style-loader"</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-s1">isEnvProduction</span> <span class="pl-c1">&&</span> <span class="pl-kos">{</span>
<span class="pl-c1">loader</span>: <span class="pl-v">MiniCssExtractPlugin</span><span class="pl-kos">.</span><span class="pl-c1">loader</span><span class="pl-kos">,</span>
<span class="pl-c1">options</span>: <span class="pl-s1">shouldUseRelativeAssetPaths</span> ? <span class="pl-kos">{</span> <span class="pl-c1">publicPath</span>: <span class="pl-s">"../../"</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">loader</span>: <span class="pl-en">require</span><span class="pl-kos">.</span><span class="pl-en">resolve</span><span class="pl-kos">(</span><span class="pl-s">"css-loader"</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c1">options</span>: <span class="pl-s1">cssOptions</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">{</span>
<span class="pl-c">// Options for PostCSS as we reference these options twice</span>
<span class="pl-c">// Adds vendor prefixing based on your specified browser support in</span>
<span class="pl-c">// package.json</span>
<span class="pl-c1">loader</span>: <span class="pl-en">require</span><span class="pl-kos">.</span><span class="pl-en">resolve</span><span class="pl-kos">(</span><span class="pl-s">"postcss-loader"</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c1">options</span>: <span class="pl-kos">{</span>
<span class="pl-c">// Necessary for external CSS imports to work</span>
<span class="pl-c">// https://github.com/facebook/create-react-app/issues/2677</span>
<span class="pl-c1">ident</span>: <span class="pl-s">"postcss"</span><span class="pl-kos">,</span>
<span class="pl-en">plugins</span>: <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">[</span>
<span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"postcss-flexbugs-fixes"</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">"postcss-preset-env"</span><span class="pl-kos">)</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">autoprefixer</span>: <span class="pl-kos">{</span>
<span class="pl-c1">flexbox</span>: <span class="pl-s">"no-2009"</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c1">stage</span>: <span class="pl-c1">3</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c">// Adds PostCSS Normalize as the reset css with default options,</span>
<span class="pl-c">// so that it honors browserslist config in package.json</span>
<span class="pl-c">// which in turn let's users customize the target behavior as per their needs.</span>
<span class="pl-s1">postcssNormalize</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">sourceMap</span>: <span class="pl-s1">isEnvProduction</span> <span class="pl-c1">&&</span> <span class="pl-s1">shouldUseSourceMap</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">filter</span><span class="pl-kos">(</span><span class="pl-v">Boolean</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">preProcessor</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-s1">loaders</span><span class="pl-kos">.</span><span class="pl-en">push</span><span class="pl-kos">(</span>
<span class="pl-kos">{</span>
<span class="pl-c1">loader</span>: <span class="pl-en">require</span><span class="pl-kos">.</span><span class="pl-en">resolve</span><span class="pl-kos">(</span><span class="pl-s">"resolve-url-loader"</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c1">options</span>: <span class="pl-kos">{</span>
<span class="pl-c1">sourceMap</span>: <span class="pl-s1">isEnvProduction</span> <span class="pl-c1">&&</span> <span class="pl-s1">shouldUseSourceMap</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">loader</span>: <span class="pl-en">require</span><span class="pl-kos">.</span><span class="pl-en">resolve</span><span class="pl-kos">(</span><span class="pl-s1">preProcessor</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c1">options</span>: <span class="pl-kos">{</span>
<span class="pl-c1">sourceMap</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-kos">}</span>
<span class="pl-k">return</span> <span class="pl-s1">loaders</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">mode</span>: <span class="pl-s1">isEnvProduction</span> ? <span class="pl-s">"production"</span> : <span class="pl-s1">isEnvDevelopment</span> <span class="pl-c1">&&</span> <span class="pl-s">"development"</span><span class="pl-kos">,</span>
<span class="pl-c">// Stop compilation early in production</span>
<span class="pl-c1">bail</span>: <span class="pl-s1">isEnvProduction</span><span class="pl-kos">,</span>
<span class="pl-c1">devtool</span>: <span class="pl-s1">isEnvProduction</span>
? <span class="pl-s1">shouldUseSourceMap</span>
? <span class="pl-s">"source-map"</span>
: <span class="pl-c1">false</span>
: <span class="pl-s1">isEnvDevelopment</span> <span class="pl-c1">&&</span> <span class="pl-s">"cheap-module-source-map"</span><span class="pl-kos">,</span>
<span class="pl-c">// These are the "entry points" to our application.</span>
<span class="pl-c">// This means they will be the "root" imports that are included in JS bundle.</span>
<span class="pl-c1">entry</span>: <span class="pl-kos">[</span>
<span class="pl-c">// Include an alternative client for WebpackDevServer. A client's job is to</span>
<span class="pl-c">// connect to WebpackDevServer by a socket and get notified about changes.</span>
<span class="pl-c">// When you save a file, the client will either apply hot updates (in case</span>
<span class="pl-c">// of CSS changes), or refresh the page (in case of JS changes). When you</span>
<span class="pl-c">// make a syntax error, this client will display a syntax error overlay.</span>
<span class="pl-c">// Note: instead of the default WebpackDevServer client, we use a custom one</span>
<span class="pl-c">// to bring better experience for Create React App users. You can replace</span>
<span class="pl-c">// the line below with these two lines if you prefer the stock client:</span>
<span class="pl-c">// require.resolve('webpack-dev-server/client') + '?/',</span>
<span class="pl-c">// require.resolve('webpack/hot/dev-server'),</span>
<span class="pl-s1">isEnvDevelopment</span> <span class="pl-c1">&&</span>
<span class="pl-en">require</span><span class="pl-kos">.</span><span class="pl-en">resolve</span><span class="pl-kos">(</span><span class="pl-s">"react-dev-utils/webpackHotDevClient"</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c">// Finally, this is your app's code:</span>
<span class="pl-s1">paths</span><span class="pl-kos">.</span><span class="pl-c1">appIndexJs</span>
<span class="pl-c">// We include the app code last so that if there is a runtime error during</span>
<span class="pl-c">// initialization, it doesn't blow up the WebpackDevServer client, and</span>
<span class="pl-c">// changing JS code would still trigger a refresh.</span>
<span class="pl-kos">]</span><span class="pl-kos">.</span><span class="pl-en">filter</span><span class="pl-kos">(</span><span class="pl-v">Boolean</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c1">output</span>: <span class="pl-kos">{</span>
<span class="pl-c">// The build folder.</span>
<span class="pl-c1">path</span>: <span class="pl-s1">isEnvProduction</span> ? <span class="pl-s1">paths</span><span class="pl-kos">.</span><span class="pl-c1">appBuild</span> : <span class="pl-c1">undefined</span><span class="pl-kos">,</span>
<span class="pl-c">// Add /* filename */ comments to generated require()s in the output.</span>
<span class="pl-c1">pathinfo</span>: <span class="pl-s1">isEnvDevelopment</span><span class="pl-kos">,</span>
<span class="pl-c">// There will be one main bundle, and one file per asynchronous chunk.</span>
<span class="pl-c">// In development, it does not produce real files.</span>
<span class="pl-c1">filename</span>: <span class="pl-s1">isEnvProduction</span>
? <span class="pl-s">"static/js/[name].[contenthash:8].js"</span>
: <span class="pl-s1">isEnvDevelopment</span> <span class="pl-c1">&&</span> <span class="pl-s">"static/js/bundle.js"</span><span class="pl-kos">,</span>
<span class="pl-c">// TODO: remove this when upgrading to webpack 5</span>
<span class="pl-c1">futureEmitAssets</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c">// There are also additional JS chunk files if you use code splitting.</span>
<span class="pl-c1">chunkFilename</span>: <span class="pl-s1">isEnvProduction</span>
? <span class="pl-s">"static/js/[name].[contenthash:8].chunk.js"</span>
: <span class="pl-s1">isEnvDevelopment</span> <span class="pl-c1">&&</span> <span class="pl-s">"static/js/[name].chunk.js"</span><span class="pl-kos">,</span>
<span class="pl-c">// We inferred the "public path" (such as / or /my-project) from homepage.</span>
<span class="pl-c">// We use "/" in development.</span>
<span class="pl-c1">publicPath</span>: <span class="pl-s1">publicPath</span><span class="pl-kos">,</span>
<span class="pl-c">// Point sourcemap entries to original disk location (format as URL on Windows)</span>
<span class="pl-c1">devtoolModuleFilenameTemplate</span>: <span class="pl-s1">isEnvProduction</span>
? <span class="pl-s1">info</span> <span class="pl-c1">=></span>
<span class="pl-s1">path</span>
<span class="pl-kos">.</span><span class="pl-en">relative</span><span class="pl-kos">(</span><span class="pl-s1">paths</span><span class="pl-kos">.</span><span class="pl-c1">appSrc</span><span class="pl-kos">,</span> <span class="pl-s1">info</span><span class="pl-kos">.</span><span class="pl-c1">absoluteResourcePath</span><span class="pl-kos">)</span>
<span class="pl-kos">.</span><span class="pl-en">replace</span><span class="pl-kos">(</span><span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">\\</span><span class="pl-c1">/</span>g</span><span class="pl-kos">,</span> <span class="pl-s">"/"</span><span class="pl-kos">)</span>
: <span class="pl-s1">isEnvDevelopment</span> <span class="pl-c1">&&</span>
<span class="pl-kos">(</span><span class="pl-s1">info</span> <span class="pl-c1">=></span> <span class="pl-s1">path</span><span class="pl-kos">.</span><span class="pl-en">resolve</span><span class="pl-kos">(</span><span class="pl-s1">info</span><span class="pl-kos">.</span><span class="pl-c1">absoluteResourcePath</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">replace</span><span class="pl-kos">(</span><span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">\\</span><span class="pl-c1">/</span>g</span><span class="pl-kos">,</span> <span class="pl-s">"/"</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c">// Prevents conflicts when multiple Webpack runtimes (from different apps)</span>
<span class="pl-c">// are used on the same page.</span>
<span class="pl-c1">jsonpFunction</span>: <span class="pl-s">`webpackJsonp<span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">appPackageJson</span><span class="pl-kos">.</span><span class="pl-c1">name</span><span class="pl-kos">}</span></span>`</span><span class="pl-kos">,</span>
<span class="pl-c">// this defaults to 'window', but by setting it to 'this' then</span>
<span class="pl-c">// module chunks which are built will work in web workers as well.</span>
<span class="pl-c1">globalObject</span>: <span class="pl-s">"this"</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c1">optimization</span>: <span class="pl-kos">{</span>
<span class="pl-c1">minimize</span>: <span class="pl-s1">isEnvProduction</span><span class="pl-kos">,</span>
<span class="pl-c1">minimizer</span>: <span class="pl-kos">[</span>
<span class="pl-c">// This is only used in production mode</span>
<span class="pl-k">new</span> <span class="pl-v">TerserPlugin</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">terserOptions</span>: <span class="pl-kos">{</span>
<span class="pl-c1">parse</span>: <span class="pl-kos">{</span>
<span class="pl-c">// We want terser to parse ecma 8 code. However, we don't want it</span>
<span class="pl-c">// to apply any minification steps that turns valid ecma 5 code</span>
<span class="pl-c">// into invalid ecma 5 code. This is why the 'compress' and 'output'</span>
<span class="pl-c">// sections only apply transformations that are ecma 5 safe</span>
<span class="pl-c">// https://github.com/facebook/create-react-app/pull/4234</span>
<span class="pl-c1">ecma</span>: <span class="pl-c1">8</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c1">compress</span>: <span class="pl-kos">{</span>
<span class="pl-c1">ecma</span>: <span class="pl-c1">5</span><span class="pl-kos">,</span>
<span class="pl-c1">warnings</span>: <span class="pl-c1">false</span><span class="pl-kos">,</span>
<span class="pl-c">// Disabled because of an issue with Uglify breaking seemingly valid code:</span>
<span class="pl-c">// https://github.com/facebook/create-react-app/issues/2376</span>
<span class="pl-c">// Pending further investigation:</span>
<span class="pl-c">// https://github.com/mishoo/UglifyJS2/issues/2011</span>
<span class="pl-c1">comparisons</span>: <span class="pl-c1">false</span><span class="pl-kos">,</span>
<span class="pl-c">// Disabled because of an issue with Terser breaking valid code:</span>
<span class="pl-c">// https://github.com/facebook/create-react-app/issues/5250</span>
<span class="pl-c">// Pending further investigation:</span>
<span class="pl-c">// https://github.com/terser-js/terser/issues/120</span>
<span class="pl-c1">inline</span>: <span class="pl-c1">2</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c1">mangle</span>: <span class="pl-kos">{</span>
<span class="pl-c1">safari10</span>: <span class="pl-c1">true</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c">// Added for profiling in devtools</span>
<span class="pl-c1">keep_classnames</span>: <span class="pl-s1">isEnvProductionProfile</span><span class="pl-kos">,</span>
<span class="pl-c1">keep_fnames</span>: <span class="pl-s1">isEnvProductionProfile</span><span class="pl-kos">,</span>
<span class="pl-c1">output</span>: <span class="pl-kos">{</span>
<span class="pl-c1">ecma</span>: <span class="pl-c1">5</span><span class="pl-kos">,</span>
<span class="pl-c1">comments</span>: <span class="pl-c1">false</span><span class="pl-kos">,</span>
<span class="pl-c">// Turned on because emoji and regex is not minified properly using default</span>
<span class="pl-c">// https://github.com/facebook/create-react-app/issues/2488</span>
<span class="pl-c1">ascii_only</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-c">// Use multi-process parallel running to improve the build speed</span>
<span class="pl-c">// Default number of concurrent runs: os.cpus().length - 1</span>
<span class="pl-c">// Disabled on WSL (Windows Subsystem for Linux) due to an issue with Terser</span>
<span class="pl-c">// https://github.com/webpack-contrib/terser-webpack-plugin/issues/21</span>
<span class="pl-c1">parallel</span>: <span class="pl-c1">!</span><span class="pl-s1">isWsl</span><span class="pl-kos">,</span>
<span class="pl-c">// Enable file caching</span>
<span class="pl-c1">cache</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c1">sourceMap</span>: <span class="pl-s1">shouldUseSourceMap</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c">// This is only used in production mode</span>
<span class="pl-k">new</span> <span class="pl-v">OptimizeCSSAssetsPlugin</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">cssProcessorOptions</span>: <span class="pl-kos">{</span>
<span class="pl-c1">parser</span>: <span class="pl-s1">safePostCssParser</span><span class="pl-kos">,</span>
<span class="pl-c1">map</span>: <span class="pl-s1">shouldUseSourceMap</span>
? <span class="pl-kos">{</span>
<span class="pl-c">// `inline: false` forces the sourcemap to be output into a</span>
<span class="pl-c">// separate file</span>
<span class="pl-c1">inline</span>: <span class="pl-c1">false</span><span class="pl-kos">,</span>
<span class="pl-c">// `annotation: true` appends the sourceMappingURL to the end of</span>
<span class="pl-c">// the css file, helping the browser find the sourcemap</span>
<span class="pl-c1">annotation</span>: <span class="pl-c1">true</span>
<span class="pl-kos">}</span>
: <span class="pl-c1">false</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-c">// Automatically split vendor and commons</span>
<span class="pl-c">// https://twitter.com/wSokra/status/969633336732905474</span>
<span class="pl-c">// https://medium.com/webpack/webpack-4-code-splitting-chunk-graph-and-the-splitchunks-optimization-be739a861366</span>
<span class="pl-c1">splitChunks</span>: <span class="pl-kos">{</span>
<span class="pl-c1">chunks</span>: <span class="pl-s">"all"</span><span class="pl-kos">,</span>
<span class="pl-c1">maxInitialRequests</span>: <span class="pl-v">Infinity</span><span class="pl-kos">,</span>
<span class="pl-c1">minSize</span>: <span class="pl-c1">0</span><span class="pl-kos">,</span>
<span class="pl-c1">cacheGroups</span>: <span class="pl-kos">{</span>
<span class="pl-c1">vendor</span>: <span class="pl-kos">{</span>
<span class="pl-c1">test</span>: <span class="pl-pds"><span class="pl-c1">/</span><span class="pl-kos">[</span><span class="pl-cce">\\</span>/<span class="pl-kos">]</span><span class="pl-kos">(</span>monaco-editor<span class="pl-kos">)</span><span class="pl-kos">[</span><span class="pl-cce">\\</span>/<span class="pl-kos">]</span><span class="pl-c1">/</span></span><span class="pl-kos">,</span>
<span class="pl-c1">name</span>: <span class="pl-s">"monaco-editor"</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c">// Keep the runtime chunk separated to enable long term caching</span>
<span class="pl-c">// https://twitter.com/wSokra/status/969679223278505985</span>
<span class="pl-c">// https://github.com/facebook/create-react-app/issues/5358</span>
<span class="pl-c1">runtimeChunk</span>: <span class="pl-kos">{</span>
<span class="pl-en">name</span>: <span class="pl-s1">entrypoint</span> <span class="pl-c1">=></span> <span class="pl-s">`runtime-<span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">entrypoint</span><span class="pl-kos">.</span><span class="pl-c1">name</span><span class="pl-kos">}</span></span>`</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c1">resolve</span>: <span class="pl-kos">{</span>
<span class="pl-c">// This allows you to set a fallback for where Webpack should look for modules.</span>
<span class="pl-c">// We placed these paths second because we want `node_modules` to "win"</span>
<span class="pl-c">// if there are any conflicts. This matches Node resolution mechanism.</span>
<span class="pl-c">// https://github.com/facebook/create-react-app/issues/253</span>
<span class="pl-c1">modules</span>: <span class="pl-kos">[</span><span class="pl-s">"node_modules"</span><span class="pl-kos">,</span> <span class="pl-s1">paths</span><span class="pl-kos">.</span><span class="pl-c1">appNodeModules</span><span class="pl-kos">]</span><span class="pl-kos">.</span><span class="pl-en">concat</span><span class="pl-kos">(</span>
<span class="pl-s1">modules</span><span class="pl-kos">.</span><span class="pl-c1">additionalModulePaths</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-c">// These are the reasonable defaults supported by the Node ecosystem.</span>
<span class="pl-c">// We also include JSX as a common component filename extension to support</span>
<span class="pl-c">// some tools, although we do not recommend using it, see:</span>
<span class="pl-c">// https://github.com/facebook/create-react-app/issues/290</span>
<span class="pl-c">// `web` extension prefixes have been added for better support</span>
<span class="pl-c">// for React Native Web.</span>
<span class="pl-c1">extensions</span>: <span class="pl-s1">paths</span><span class="pl-kos">.</span><span class="pl-c1">moduleFileExtensions</span>
<span class="pl-kos">.</span><span class="pl-en">map</span><span class="pl-kos">(</span><span class="pl-s1">ext</span> <span class="pl-c1">=></span> <span class="pl-s">`.<span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">ext</span><span class="pl-kos">}</span></span>`</span><span class="pl-kos">)</span>
<span class="pl-kos">.</span><span class="pl-en">filter</span><span class="pl-kos">(</span><span class="pl-s1">ext</span> <span class="pl-c1">=></span> <span class="pl-s1">useTypeScript</span> <span class="pl-c1">||</span> <span class="pl-c1">!</span><span class="pl-s1">ext</span><span class="pl-kos">.</span><span class="pl-en">includes</span><span class="pl-kos">(</span><span class="pl-s">"ts"</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c1">alias</span>: <span class="pl-kos">{</span>
<span class="pl-c">// Support React Native Web</span>
<span class="pl-c">// https://www.smashingmagazine.com/2016/08/a-glimpse-into-the-future-with-react-native-for-web/</span>
<span class="pl-s">"react-native"</span>: <span class="pl-s">"react-native-web"</span><span class="pl-kos">,</span>
<span class="pl-c">// Allows for better profiling with ReactDevTools</span>
...<span class="pl-kos">(</span><span class="pl-s1">isEnvProductionProfile</span> <span class="pl-c1">&&</span> <span class="pl-kos">{</span>
<span class="pl-s">"react-dom$"</span>: <span class="pl-s">"react-dom/profiling"</span><span class="pl-kos">,</span>
<span class="pl-s">"scheduler/tracing"</span>: <span class="pl-s">"scheduler/tracing-profiling"</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">modules</span><span class="pl-kos">.</span><span class="pl-c1">webpackAliases</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>
<span class="pl-c1">plugins</span>: <span class="pl-kos">[</span>
<span class="pl-c">// Adds support for installing with Plug'n'Play, leading to faster installs and adding</span>
<span class="pl-c">// guards against forgotten dependencies and such.</span>
<span class="pl-v">PnpWebpackPlugin</span><span class="pl-kos">,</span>
<span class="pl-c">// Prevents users from importing files from outside of src/ (or node_modules/).</span>
<span class="pl-c">// This often causes confusion because we only process files within src/ with babel.</span>
<span class="pl-c">// To fix this, we prevent you from importing files out of src/ -- if you'd like to,</span>
<span class="pl-c">// please link the files into your node_modules/ and let module-resolution kick in.</span>
<span class="pl-c">// Make sure your source files are compiled, as they will not be processed in any way.</span>
<span class="pl-k">new</span> <span class="pl-v">ModuleScopePlugin</span><span class="pl-kos">(</span><span class="pl-s1">paths</span><span class="pl-kos">.</span><span class="pl-c1">appSrc</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-s1">paths</span><span class="pl-kos">.</span><span class="pl-c1">appPackageJson</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">resolveLoader</span>: <span class="pl-kos">{</span>
<span class="pl-c1">plugins</span>: <span class="pl-kos">[</span>
<span class="pl-c">// Also related to Plug'n'Play, but this time it tells Webpack to load its loaders</span>
<span class="pl-c">// from the current package.</span>
<span class="pl-v">PnpWebpackPlugin</span><span class="pl-kos">.</span><span class="pl-en">moduleLoader</span><span class="pl-kos">(</span><span class="pl-smi">module</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">module</span>: <span class="pl-kos">{</span>
<span class="pl-c1">strictExportPresence</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c1">rules</span>: <span class="pl-kos">[</span>
<span class="pl-c">// Disable require.ensure as it's not a standard language feature.</span>
<span class="pl-kos">{</span> <span class="pl-c1">parser</span>: <span class="pl-kos">{</span> <span class="pl-c1">requireEnsure</span>: <span class="pl-c1">false</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c">// First, run the linter.</span>
<span class="pl-c">// It's important to do this before Babel processes the JS.</span>
<span class="pl-kos">{</span>
<span class="pl-c1">test</span>: <span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">\.</span><span class="pl-kos">(</span>js<span class="pl-c1">|</span>mjs<span class="pl-c1">|</span>jsx<span class="pl-c1">|</span>ts<span class="pl-c1">|</span>tsx<span class="pl-kos">)</span><span class="pl-cce">$</span><span class="pl-c1">/</span></span><span class="pl-kos">,</span>
<span class="pl-c1">enforce</span>: <span class="pl-s">"pre"</span><span class="pl-kos">,</span>
<span class="pl-c1">use</span>: <span class="pl-kos">[</span>
<span class="pl-kos">{</span>
<span class="pl-c1">options</span>: <span class="pl-kos">{</span>
<span class="pl-c1">cache</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c1">formatter</span>: <span class="pl-en">require</span><span class="pl-kos">.</span><span class="pl-en">resolve</span><span class="pl-kos">(</span><span class="pl-s">"react-dev-utils/eslintFormatter"</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c1">eslintPath</span>: <span class="pl-en">require</span><span class="pl-kos">.</span><span class="pl-en">resolve</span><span class="pl-kos">(</span><span class="pl-s">"eslint"</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c1">resolvePluginsRelativeTo</span>: <span class="pl-s1">__dirname</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c1">loader</span>: <span class="pl-en">require</span><span class="pl-kos">.</span><span class="pl-en">resolve</span><span class="pl-kos">(</span><span class="pl-s">"eslint-loader"</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">include</span>: <span class="pl-s1">paths</span><span class="pl-kos">.</span><span class="pl-c1">appSrc</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">{</span>
<span class="pl-c">// "oneOf" will traverse all following loaders until one will</span>
<span class="pl-c">// match the requirements. When no loader matches it will fall</span>
<span class="pl-c">// back to the "file" loader at the end of the loader list.</span>
<span class="pl-c1">oneOf</span>: <span class="pl-kos">[</span>
<span class="pl-c">// "url" loader works like "file" loader except that it embeds assets</span>
<span class="pl-c">// smaller than specified limit in bytes as data URLs to avoid requests.</span>
<span class="pl-c">// A missing `test` is equivalent to a match.</span>
<span class="pl-kos">{</span>
<span class="pl-c1">test</span>: <span class="pl-kos">[</span><span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">\.</span>bmp<span class="pl-cce">$</span><span class="pl-c1">/</span></span><span class="pl-kos">,</span> <span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">\.</span>gif<span class="pl-cce">$</span><span class="pl-c1">/</span></span><span class="pl-kos">,</span> <span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">\.</span>jpe?g<span class="pl-cce">$</span><span class="pl-c1">/</span></span><span class="pl-kos">,</span> <span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">\.</span>png<span class="pl-cce">$</span><span class="pl-c1">/</span></span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-c1">loader</span>: <span class="pl-en">require</span><span class="pl-kos">.</span><span class="pl-en">resolve</span><span class="pl-kos">(</span><span class="pl-s">"url-loader"</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c1">options</span>: <span class="pl-kos">{</span>
<span class="pl-c1">limit</span>: <span class="pl-s1">imageInlineSizeLimit</span><span class="pl-kos">,</span>
<span class="pl-c1">name</span>: <span class="pl-s">"static/media/[name].[hash:8].[ext]"</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c">// Process application JS with Babel.</span>
<span class="pl-c">// The preset includes JSX, Flow, TypeScript, and some ESnext features.</span>
<span class="pl-kos">{</span>
<span class="pl-c1">test</span>: <span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">\.</span><span class="pl-kos">(</span>js<span class="pl-c1">|</span>mjs<span class="pl-c1">|</span>jsx<span class="pl-c1">|</span>ts<span class="pl-c1">|</span>tsx<span class="pl-kos">)</span><span class="pl-cce">$</span><span class="pl-c1">/</span></span><span class="pl-kos">,</span>
<span class="pl-c1">include</span>: <span class="pl-s1">paths</span><span class="pl-kos">.</span><span class="pl-c1">appSrc</span><span class="pl-kos">,</span>
<span class="pl-c1">loader</span>: <span class="pl-en">require</span><span class="pl-kos">.</span><span class="pl-en">resolve</span><span class="pl-kos">(</span><span class="pl-s">"babel-loader"</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c1">options</span>: <span class="pl-kos">{</span>
<span class="pl-c1">customize</span>: <span class="pl-en">require</span><span class="pl-kos">.</span><span class="pl-en">resolve</span><span class="pl-kos">(</span>
<span class="pl-s">"babel-preset-react-app/webpack-overrides"</span>
<span class="pl-kos">)</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-en">require</span><span class="pl-kos">.</span><span class="pl-en">resolve</span><span class="pl-kos">(</span><span class="pl-s">"babel-plugin-named-asset-import"</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-kos">{</span>
<span class="pl-c1">loaderMap</span>: <span class="pl-kos">{</span>
<span class="pl-c1">svg</span>: <span class="pl-kos">{</span>
<span class="pl-c1">ReactComponent</span>:
<span class="pl-s">"@svgr/webpack?-svgo,+titleProp,+ref![path]"</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-kos">]</span>
<span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-c">// This is a feature of `babel-loader` for webpack (not Babel itself).</span>
<span class="pl-c">// It enables caching results in ./node_modules/.cache/babel-loader/</span>
<span class="pl-c">// directory for faster rebuilds.</span>
<span class="pl-c1">cacheDirectory</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c">// See #6846 for context on why cacheCompression is disabled</span>
<span class="pl-c1">cacheCompression</span>: <span class="pl-c1">false</span><span class="pl-kos">,</span>
<span class="pl-c1">compact</span>: <span class="pl-s1">isEnvProduction</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c">// Process any JS outside of the app with Babel.</span>
<span class="pl-c">// Unlike the application JS, we only compile the standard ES features.</span>
<span class="pl-kos">{</span>
<span class="pl-c1">test</span>: <span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">\.</span><span class="pl-kos">(</span>js<span class="pl-c1">|</span>mjs<span class="pl-kos">)</span><span class="pl-cce">$</span><span class="pl-c1">/</span></span><span class="pl-kos">,</span>
<span class="pl-c1">exclude</span>: <span class="pl-pds"><span class="pl-c1">/</span>@babel<span class="pl-kos">(?:</span><span class="pl-cce">\/</span><span class="pl-c1">|</span><span class="pl-cce">\\</span><span class="pl-kos">{</span>1,2<span class="pl-kos">}</span><span class="pl-kos">)</span>runtime<span class="pl-c1">/</span></span><span class="pl-kos">,</span>
<span class="pl-c1">loader</span>: <span class="pl-en">require</span><span class="pl-kos">.</span><span class="pl-en">resolve</span><span class="pl-kos">(</span><span class="pl-s">"babel-loader"</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c1">options</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">configFile</span>: <span class="pl-c1">false</span><span class="pl-kos">,</span>
<span class="pl-c1">compact</span>: <span class="pl-c1">false</span><span class="pl-kos">,</span>
<span class="pl-c1">presets</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-en">resolve</span><span class="pl-kos">(</span><span class="pl-s">"babel-preset-react-app/dependencies"</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-kos">{</span> <span class="pl-c1">helpers</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-c1">cacheDirectory</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c">// See #6846 for context on why cacheCompression is disabled</span>
<span class="pl-c1">cacheCompression</span>: <span class="pl-c1">false</span><span class="pl-kos">,</span>
<span class="pl-c">// If an error happens in a package, it's possible to be</span>
<span class="pl-c">// because it was compiled. Thus, we don't want the browser</span>
<span class="pl-c">// debugger to show the original code. Instead, the code</span>
<span class="pl-c">// being evaluated would be much more helpful.</span>
<span class="pl-c1">sourceMaps</span>: <span class="pl-c1">false</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c">// "postcss" loader applies autoprefixer to our CSS.</span>
<span class="pl-c">// "css" loader resolves paths in CSS and adds assets as dependencies.</span>
<span class="pl-c">// "style" loader turns CSS into JS modules that inject <style> tags.</span>
<span class="pl-c">// In production, we use MiniCSSExtractPlugin to extract that CSS</span>
<span class="pl-c">// to a file, but in development "style" loader enables hot editing</span>
<span class="pl-c">// of CSS.</span>
<span class="pl-c">// By default we support CSS Modules with the extension .module.css</span>
<span class="pl-kos">{</span>
<span class="pl-c1">test</span>: <span class="pl-s1">cssRegex</span><span class="pl-kos">,</span>
<span class="pl-c1">exclude</span>: <span class="pl-s1">cssModuleRegex</span><span class="pl-kos">,</span>
<span class="pl-c1">use</span>: <span class="pl-en">getStyleLoaders</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">importLoaders</span>: <span class="pl-c1">1</span><span class="pl-kos">,</span>
<span class="pl-c1">sourceMap</span>: <span class="pl-s1">isEnvProduction</span> <span class="pl-c1">&&</span> <span class="pl-s1">shouldUseSourceMap</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c">// Don't consider CSS imports dead code even if the</span>
<span class="pl-c">// containing package claims to have no side effects.</span>
<span class="pl-c">// Remove this when webpack adds a warning or an error for this.</span>
<span class="pl-c">// See https://github.com/webpack/webpack/issues/6571</span>
<span class="pl-c1">sideEffects</span>: <span class="pl-c1">true</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c">// Adds support for CSS Modules (https://github.com/css-modules/css-modules)</span>
<span class="pl-c">// using the extension .module.css</span>
<span class="pl-kos">{</span>
<span class="pl-c1">test</span>: <span class="pl-s1">cssModuleRegex</span><span class="pl-kos">,</span>
<span class="pl-c1">use</span>: <span class="pl-en">getStyleLoaders</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">importLoaders</span>: <span class="pl-c1">1</span><span class="pl-kos">,</span>
<span class="pl-c1">sourceMap</span>: <span class="pl-s1">isEnvProduction</span> <span class="pl-c1">&&</span> <span class="pl-s1">shouldUseSourceMap</span><span class="pl-kos">,</span>
<span class="pl-c1">modules</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c1">getLocalIdent</span>: <span class="pl-s1">getCSSModuleLocalIdent</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c">// Opt-in support for SASS (using .scss or .sass extensions).</span>
<span class="pl-c">// By default we support SASS Modules with the</span>
<span class="pl-c">// extensions .module.scss or .module.sass</span>
<span class="pl-kos">{</span>
<span class="pl-c1">test</span>: <span class="pl-s1">sassRegex</span><span class="pl-kos">,</span>
<span class="pl-c1">exclude</span>: <span class="pl-s1">sassModuleRegex</span><span class="pl-kos">,</span>
<span class="pl-c1">use</span>: <span class="pl-en">getStyleLoaders</span><span class="pl-kos">(</span>
<span class="pl-kos">{</span>
<span class="pl-c1">importLoaders</span>: <span class="pl-c1">2</span><span class="pl-kos">,</span>
<span class="pl-c1">sourceMap</span>: <span class="pl-s1">isEnvProduction</span> <span class="pl-c1">&&</span> <span class="pl-s1">shouldUseSourceMap</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-s">"sass-loader"</span>
<span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c">// Don't consider CSS imports dead code even if the</span>
<span class="pl-c">// containing package claims to have no side effects.</span>
<span class="pl-c">// Remove this when webpack adds a warning or an error for this.</span>
<span class="pl-c">// See https://github.com/webpack/webpack/issues/6571</span>
<span class="pl-c1">sideEffects</span>: <span class="pl-c1">true</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c">// Adds support for CSS Modules, but using SASS</span>
<span class="pl-c">// using the extension .module.scss or .module.sass</span>
<span class="pl-kos">{</span>
<span class="pl-c1">test</span>: <span class="pl-s1">sassModuleRegex</span><span class="pl-kos">,</span>
<span class="pl-c1">use</span>: <span class="pl-en">getStyleLoaders</span><span class="pl-kos">(</span>
<span class="pl-kos">{</span>
<span class="pl-c1">importLoaders</span>: <span class="pl-c1">2</span><span class="pl-kos">,</span>
<span class="pl-c1">sourceMap</span>: <span class="pl-s1">isEnvProduction</span> <span class="pl-c1">&&</span> <span class="pl-s1">shouldUseSourceMap</span><span class="pl-kos">,</span>
<span class="pl-c1">modules</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c1">getLocalIdent</span>: <span class="pl-s1">getCSSModuleLocalIdent</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-s">"sass-loader"</span>
<span class="pl-kos">)</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c">// "file" loader makes sure those assets get served by WebpackDevServer.</span>
<span class="pl-c">// When you `import` an asset, you get its (virtual) filename.</span>
<span class="pl-c">// In production, they would get copied to the `build` folder.</span>
<span class="pl-c">// This loader doesn't use a "test" so it will catch all modules</span>
<span class="pl-c">// that fall through the other loaders.</span>
<span class="pl-kos">{</span>
<span class="pl-c1">loader</span>: <span class="pl-en">require</span><span class="pl-kos">.</span><span class="pl-en">resolve</span><span class="pl-kos">(</span><span class="pl-s">"file-loader"</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c">// Exclude `js` files to keep "css" loader working as it injects</span>
<span class="pl-c">// its runtime that would otherwise be processed through "file" loader.</span>
<span class="pl-c">// Also exclude `html` and `json` extensions so they get processed</span>
<span class="pl-c">// by webpacks internal loaders.</span>
<span class="pl-c1">exclude</span>: <span class="pl-kos">[</span><span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">\.</span><span class="pl-kos">(</span>js<span class="pl-c1">|</span>mjs<span class="pl-c1">|</span>jsx<span class="pl-c1">|</span>ts<span class="pl-c1">|</span>tsx<span class="pl-kos">)</span><span class="pl-cce">$</span><span class="pl-c1">/</span></span><span class="pl-kos">,</span> <span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">\.</span>html<span class="pl-cce">$</span><span class="pl-c1">/</span></span><span class="pl-kos">,</span> <span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">\.</span>json<span class="pl-cce">$</span><span class="pl-c1">/</span></span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-c1">options</span>: <span class="pl-kos">{</span>
<span class="pl-c1">name</span>: <span class="pl-s">"static/media/[name].[hash:8].[ext]"</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-c">// ** STOP ** Are you adding a new loader?</span>
<span class="pl-c">// Make sure to add the new loader(s) before the "file" loader.</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">plugins</span>: <span class="pl-kos">[</span>
<span class="pl-c">// Generates an `index.html` file with the <script> injected.</span>
<span class="pl-k">new</span> <span class="pl-v">HtmlWebpackPlugin</span><span class="pl-kos">(</span>
<span class="pl-v">Object</span><span class="pl-kos">.</span><span class="pl-en">assign</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">inject</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c1">template</span>: <span class="pl-s1">paths</span><span class="pl-kos">.</span><span class="pl-c1">appHtml</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-s1">isEnvProduction</span>
? <span class="pl-kos">{</span>
<span class="pl-c1">minify</span>: <span class="pl-kos">{</span>
<span class="pl-c1">removeComments</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c1">collapseWhitespace</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c1">removeRedundantAttributes</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c1">useShortDoctype</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c1">removeEmptyAttributes</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c1">removeStyleLinkTypeAttributes</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c1">keepClosingSlash</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c1">minifyJS</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c1">minifyCSS</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c1">minifyURLs</span>: <span class="pl-c1">true</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
: <span class="pl-c1">undefined</span>
<span class="pl-kos">)</span>
<span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c">// Inlines the webpack runtime script. This script is too small to warrant</span>
<span class="pl-c">// a network request.</span>
<span class="pl-c">// https://github.com/facebook/create-react-app/issues/5358</span>
<span class="pl-s1">isEnvProduction</span> <span class="pl-c1">&&</span>
<span class="pl-s1">shouldInlineRuntimeChunk</span> <span class="pl-c1">&&</span>
<span class="pl-k">new</span> <span class="pl-v">InlineChunkHtmlPlugin</span><span class="pl-kos">(</span><span class="pl-v">HtmlWebpackPlugin</span><span class="pl-kos">,</span> <span class="pl-kos">[</span><span class="pl-pds"><span class="pl-c1">/</span>runtime-.<span class="pl-c1">+</span><span class="pl-kos">[</span>.<span class="pl-kos">]</span>js<span class="pl-c1">/</span></span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c">// Makes some environment variables available in index.html.</span>
<span class="pl-c">// The public URL is available as %PUBLIC_URL% in index.html, e.g.:</span>
<span class="pl-c">// <link rel="icon" href="%PUBLIC_URL%/favicon.ico"></span>
<span class="pl-c">// In production, it will be an empty string unless you specify "homepage"</span>
<span class="pl-c">// in `package.json`, in which case it will be the pathname of that URL.</span>
<span class="pl-c">// In development, this will be an empty string.</span>
<span class="pl-k">new</span> <span class="pl-v">InterpolateHtmlPlugin</span><span class="pl-kos">(</span><span class="pl-v">HtmlWebpackPlugin</span><span class="pl-kos">,</span> <span class="pl-s1">env</span><span class="pl-kos">.</span><span class="pl-c1">raw</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c">// This gives some necessary context to module not found errors, such as</span>
<span class="pl-c">// the requesting resource.</span>
<span class="pl-k">new</span> <span class="pl-v">ModuleNotFoundPlugin</span><span class="pl-kos">(</span><span class="pl-s1">paths</span><span class="pl-kos">.</span><span class="pl-c1">appPath</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c">// Makes some environment variables available to the JS code, for example:</span>
<span class="pl-c">// if (process.env.NODE_ENV === 'production') { ... }. See `./env.js`.</span>
<span class="pl-c">// It is absolutely essential that NODE_ENV is set to production</span>
<span class="pl-c">// during a production build.</span>
<span class="pl-c">// Otherwise React will be compiled in the very slow development mode.</span>
<span class="pl-k">new</span> <span class="pl-s1">webpack</span><span class="pl-kos">.</span><span class="pl-c1">DefinePlugin</span><span class="pl-kos">(</span><span class="pl-s1">env</span><span class="pl-kos">.</span><span class="pl-c1">stringified</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c">// This is necessary to emit hot updates (currently CSS only):</span>
<span class="pl-s1">isEnvDevelopment</span> <span class="pl-c1">&&</span> <span class="pl-k">new</span> <span class="pl-s1">webpack</span><span class="pl-kos">.</span><span class="pl-c1">HotModuleReplacementPlugin</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c">// Watcher doesn't work well if you mistype casing in a path so we use</span>
<span class="pl-c">// a plugin that prints an error when you attempt to do this.</span>
<span class="pl-c">// See https://github.com/facebook/create-react-app/issues/240</span>
<span class="pl-s1">isEnvDevelopment</span> <span class="pl-c1">&&</span> <span class="pl-k">new</span> <span class="pl-v">CaseSensitivePathsPlugin</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c">// If you require a missing module and then `npm install` it, you still have</span>
<span class="pl-c">// to restart the development server for Webpack to discover it. This plugin</span>
<span class="pl-c">// makes the discovery automatic so you don't have to restart.</span>
<span class="pl-c">// See https://github.com/facebook/create-react-app/issues/186</span>
<span class="pl-s1">isEnvDevelopment</span> <span class="pl-c1">&&</span>
<span class="pl-k">new</span> <span class="pl-v">WatchMissingNodeModulesPlugin</span><span class="pl-kos">(</span><span class="pl-s1">paths</span><span class="pl-kos">.</span><span class="pl-c1">appNodeModules</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-s1">isEnvProduction</span> <span class="pl-c1">&&</span>
<span class="pl-k">new</span> <span class="pl-v">MiniCssExtractPlugin</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c">// Options similar to the same options in webpackOptions.output</span>
<span class="pl-c">// both options are optional</span>
<span class="pl-c1">filename</span>: <span class="pl-s">"static/css/[name].[contenthash:8].css"</span><span class="pl-kos">,</span>
<span class="pl-c1">chunkFilename</span>: <span class="pl-s">"static/css/[name].[contenthash:8].chunk.css"</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c">// Generate an asset manifest file with the following content:</span>
<span class="pl-c">// - "files" key: Mapping of all asset filenames to their corresponding</span>
<span class="pl-c">// output file so that tools can pick it up without having to parse</span>
<span class="pl-c">// `index.html`</span>
<span class="pl-c">// - "entrypoints" key: Array of files which are included in `index.html`,</span>
<span class="pl-c">// can be used to reconstruct the HTML if necessary</span>
<span class="pl-k">new</span> <span class="pl-v">ManifestPlugin</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">fileName</span>: <span class="pl-s">"asset-manifest.json"</span><span class="pl-kos">,</span>
<span class="pl-c1">publicPath</span>: <span class="pl-s1">publicPath</span><span class="pl-kos">,</span>
<span class="pl-en">generate</span>: <span class="pl-kos">(</span><span class="pl-s1">seed</span><span class="pl-kos">,</span> <span class="pl-s1">files</span><span class="pl-kos">,</span> <span class="pl-s1">entrypoints</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-s1">manifestFiles</span> <span class="pl-c1">=</span> <span class="pl-s1">files</span><span class="pl-kos">.</span><span class="pl-en">reduce</span><span class="pl-kos">(</span><span class="pl-kos">(</span><span class="pl-s1">manifest</span><span class="pl-kos">,</span> <span class="pl-s1">file</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-s1">manifest</span><span class="pl-kos">[</span><span class="pl-s1">file</span><span class="pl-kos">.</span><span class="pl-c1">name</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-s1">file</span><span class="pl-kos">.</span><span class="pl-c1">path</span><span class="pl-kos">;</span>
<span class="pl-k">return</span> <span class="pl-s1">manifest</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-s1">seed</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">entrypointFiles</span> <span class="pl-c1">=</span> <span class="pl-s1">entrypoints</span><span class="pl-kos">.</span><span class="pl-c1">main</span><span class="pl-kos">.</span><span class="pl-en">filter</span><span class="pl-kos">(</span>
<span class="pl-s1">fileName</span> <span class="pl-c1">=></span> <span class="pl-c1">!</span><span class="pl-s1">fileName</span><span class="pl-kos">.</span><span class="pl-en">endsWith</span><span class="pl-kos">(</span><span class="pl-s">".map"</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">files</span>: <span class="pl-s1">manifestFiles</span><span class="pl-kos">,</span>
<span class="pl-c1">entrypoints</span>: <span class="pl-s1">entrypointFiles</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c">// Moment.js is an extremely popular library that bundles large locale files</span>
<span class="pl-c">// by default due to how Webpack interprets its code. This is a practical</span>
<span class="pl-c">// solution that requires the user to opt into importing specific locales.</span>
<span class="pl-c">// https://github.com/jmblog/how-to-optimize-momentjs-with-webpack</span>
<span class="pl-c">// You can remove this if you don't use Moment.js:</span>
<span class="pl-k">new</span> <span class="pl-s1">webpack</span><span class="pl-kos">.</span><span class="pl-c1">IgnorePlugin</span><span class="pl-kos">(</span><span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">^</span><span class="pl-cce">\.</span><span class="pl-cce">\/</span>locale<span class="pl-cce">$</span><span class="pl-c1">/</span></span><span class="pl-kos">,</span> <span class="pl-pds"><span class="pl-c1">/</span>moment<span class="pl-cce">$</span><span class="pl-c1">/</span></span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c">// Generate a service worker script that will precache, and keep up to date,</span>
<span class="pl-c">// the HTML & assets that are part of the Webpack build.</span>
<span class="pl-s1">isEnvProduction</span> <span class="pl-c1">&&</span>
<span class="pl-k">new</span> <span class="pl-v">WorkboxWebpackPlugin</span><span class="pl-kos">.</span><span class="pl-c1">GenerateSW</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">clientsClaim</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c1">exclude</span>: <span class="pl-kos">[</span><span class="pl-pds"><span class="pl-c1">/</span><span class="pl-cce">\.</span>map<span class="pl-cce">$</span><span class="pl-c1">/</span></span><span class="pl-kos">,</span> <span class="pl-pds"><span class="pl-c1">/</span>asset-manifest<span class="pl-cce">\.</span>json<span class="pl-cce">$</span><span class="pl-c1">/</span></span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-c1">importWorkboxFrom</span>: <span class="pl-s">"cdn"</span><span class="pl-kos">,</span>
<span class="pl-c1">navigateFallback</span>: <span class="pl-s1">publicUrl</span> <span class="pl-c1">+</span> <span class="pl-s">"/index.html"</span><span class="pl-kos">,</span>
<span class="pl-c1">navigateFallbackBlacklist</span>: <span class="pl-kos">[</span>
<span class="pl-c">// Exclude URLs starting with /_, as they're likely an API call</span>
<span class="pl-k">new</span> <span class="pl-v">RegExp</span><span class="pl-kos">(</span><span class="pl-s">"^/_"</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c">// Exclude any URLs whose last part seems to be a file extension</span>
<span class="pl-c">// as they're likely a resource and not a SPA route.</span>
<span class="pl-c">// URLs containing a "?" character won't be blacklisted as they're likely</span>
<span class="pl-c">// a route with query params (e.g. auth callbacks).</span>
<span class="pl-k">new</span> <span class="pl-v">RegExp</span><span class="pl-kos">(</span><span class="pl-s">"/[^/?]+\\.[^/]+$"</span><span class="pl-kos">)</span>
<span class="pl-kos">]</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c">// TypeScript type checking</span>
<span class="pl-s1">useTypeScript</span> <span class="pl-c1">&&</span>
<span class="pl-k">new</span> <span class="pl-v">ForkTsCheckerWebpackPlugin</span><span class="pl-kos">(</span><span class="pl-kos">{</span>
<span class="pl-c1">typescript</span>: <span class="pl-s1">resolve</span><span class="pl-kos">.</span><span class="pl-en">sync</span><span class="pl-kos">(</span><span class="pl-s">"typescript"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span>
<span class="pl-c1">basedir</span>: <span class="pl-s1">paths</span><span class="pl-kos">.</span><span class="pl-c1">appNodeModules</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c1">async</span>: <span class="pl-s1">isEnvDevelopment</span><span class="pl-kos">,</span>
<span class="pl-c1">useTypescriptIncrementalApi</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c1">checkSyntacticErrors</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c1">resolveModuleNameModule</span>: <span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">versions</span><span class="pl-kos">.</span><span class="pl-c1">pnp</span>
? <span class="pl-s">`<span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">__dirname</span><span class="pl-kos">}</span></span>/pnpTs.js`</span>
: <span class="pl-c1">undefined</span><span class="pl-kos">,</span>
<span class="pl-c1">resolveTypeReferenceDirectiveModule</span>: <span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">versions</span><span class="pl-kos">.</span><span class="pl-c1">pnp</span>
? <span class="pl-s">`<span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">__dirname</span><span class="pl-kos">}</span></span>/pnpTs.js`</span>
: <span class="pl-c1">undefined</span><span class="pl-kos">,</span>
<span class="pl-c1">tsconfig</span>: <span class="pl-s1">paths</span><span class="pl-kos">.</span><span class="pl-c1">appTsConfig</span><span class="pl-kos">,</span>
<span class="pl-c1">reportFiles</span>: <span class="pl-kos">[</span>
<span class="pl-s">"**"</span><span class="pl-kos">,</span>
<span class="pl-s">"!**/__tests__/**"</span><span class="pl-kos">,</span>
<span class="pl-s">"!**/?(*.)(spec|test).*"</span><span class="pl-kos">,</span>
<span class="pl-s">"!**/src/setupProxy.*"</span><span class="pl-kos">,</span>
<span class="pl-s">"!**/src/setupTests.*"</span>
<span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-c1">silent</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span>
<span class="pl-c">// The formatter is invoked directly in WebpackDevServerUtils during development</span>
<span class="pl-c1">formatter</span>: <span class="pl-s1">isEnvProduction</span> ? <span class="pl-s1">typescriptFormatter</span> : <span class="pl-c1">undefined</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c">// THIS BREAKS THE BUILD WHEN USING contenthash</span>
<span class="pl-k">new</span> <span class="pl-v">MonacoWebpackPlugin</span><span class="pl-kos">(</span><span class="pl-kos">)</span>
<span class="pl-c">// new BundleAnalyzerPlugin()</span>
<span class="pl-kos">]</span><span class="pl-kos">.</span><span class="pl-en">filter</span><span class="pl-kos">(</span><span class="pl-v">Boolean</span><span class="pl-kos">)</span><span class="pl-kos">,</span>
<span class="pl-c">// Some libraries import Node modules but don't use them in the browser.</span>
<span class="pl-c">// Tell Webpack to provide empty mocks for them so importing them works.</span>
<span class="pl-c1">node</span>: <span class="pl-kos">{</span>
<span class="pl-c1">module</span>: <span class="pl-s">"empty"</span><span class="pl-kos">,</span>
<span class="pl-c1">dgram</span>: <span class="pl-s">"empty"</span><span class="pl-kos">,</span>
<span class="pl-c1">dns</span>: <span class="pl-s">"mock"</span><span class="pl-kos">,</span>
<span class="pl-c1">fs</span>: <span class="pl-s">"empty"</span><span class="pl-kos">,</span>
<span class="pl-c1">http2</span>: <span class="pl-s">"empty"</span><span class="pl-kos">,</span>
<span class="pl-c1">net</span>: <span class="pl-s">"empty"</span><span class="pl-kos">,</span>
<span class="pl-c1">tls</span>: <span class="pl-s">"empty"</span><span class="pl-kos">,</span>
<span class="pl-c1">child_process</span>: <span class="pl-s">"empty"</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c">// Turn off performance processing because we utilize</span>
<span class="pl-c">// our own hints via the FileSizeReporter</span>
<span class="pl-c1">performance</span>: <span class="pl-c1">false</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span></pre></div> | 1 |
<p dir="auto">I was tracking down an issue in my <a href="https://github.com/tpapp/julia-repl/issues/2" data-hovercard-type="issue" data-hovercard-url="/tpapp/julia-repl/issues/2/hovercard">Emacs-based Julia REPL</a>, which uses Emacs's <code class="notranslate">ansi-term</code>. The issue was that <code class="notranslate">Base.Terminals.cmove_col</code> <a href="https://github.com/JuliaLang/julia/blob/master/base/Terminals.jl#L116">emits</a> <code class="notranslate">\E[$(n)G</code>, which <code class="notranslate">ansi-term</code> did not know how to deal with. Apparently this concrete issue will be fixed with the next Emacs release, but strictly speaking <code class="notranslate">ansi-term</code> was behaving correctly, because its <code class="notranslate">terminfo</code> entry did not report supporting <code class="notranslate">CHA</code> (Cursor Horizontal Absolute), so the Julia REPL should not have used it.</p>
<p dir="auto">I don't know what the right approach would be to replace hardcoded sequences. For a fully general solution, one could parse <code class="notranslate">terminfo</code>, and then emit escape sequences accordingly, emulating missing ones, but that involves a lot of tedious work duplicated in eg <code class="notranslate">ncurses</code>, OTOH that using the latter would be overkill.</p> | <p dir="auto">I'm using <code class="notranslate">llvmcall</code> to hook-up certain intrinsics to Julia, but ran into the issue that intrinsics need to be declared, and this is currently not supported (for example, see <a href="https://groups.google.com/forum/#!topic/julia-dev/X0k-AErZBYk" rel="nofollow">this thread</a>). I have two possible solutions for this problem, but I'd like some feedback before cleaning it up and sending a PR.</p>
<p dir="auto">My first idea was to do as <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Keno/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Keno">@Keno</a> proposed, automatically adding declarations for intrinsics. This proved messy, because I could not find a way to use the existing LLVM parsing machinery because of the missing declarations immediately aborting the parser/lexer. Duplicating this functionality seems hopeless, especially for complex declarations (<code class="notranslate">addrspace</code> annotations, function pointers, ...). Anyway, for very simple declarations it looked like this:</p>
<div class="highlight highlight-source-c++ notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// Parse identifiers in the assembly
llvm::StringRef irstring(jl_string_data(ir));
llvm::SmallVector<StringRef, 2> Matches;
llvm::Regex re("[a-zA-Z_0-9]+ @[a-zA-Z$._][a-zA-Z$._0-9]*");
if (re.match(irstring, &Matches)) {
for (llvm::SmallVector<StringRef, 2>::const_iterator MI =
Matches.begin(), ME = Matches.end(); MI != ME; ++MI) {
std::pair<llvm::StringRef, llvm::StringRef> Identifier =
MI->split(' ');
llvm::Type *T =
llvm::StringSwitch<llvm::Type*>(Identifier.first)
.Case("i32", Type::getInt32Ty(getGlobalContext()))
.Case("float", Type::getFloatTy(getGlobalContext()))
.Case("double", Type::getDoubleTy(getGlobalContext()))
.Default(NULL);
if (T == NULL)
jl_error("Unknown type in LLVM assembly");
parent_Module->getOrInsertFunction(
Identifier.second.substr(1), T, NULL);
}
}"><pre class="notranslate"><span class="pl-c"><span class="pl-c">//</span> Parse identifiers in the assembly</span>
llvm::StringRef <span class="pl-en">irstring</span>(jl_string_data(ir));
llvm::SmallVector<StringRef, <span class="pl-c1">2</span>> Matches;
llvm::Regex <span class="pl-en">re</span>(<span class="pl-s"><span class="pl-pds">"</span>[a-zA-Z_0-9]+ @[a-zA-Z$._][a-zA-Z$._0-9]*<span class="pl-pds">"</span></span>);
<span class="pl-k">if</span> (re.match(irstring, &Matches)) {
<span class="pl-k">for</span> (llvm::SmallVector<StringRef, <span class="pl-c1">2</span>>::const_iterator MI =
Matches.<span class="pl-c1">begin</span>(), ME = Matches.<span class="pl-c1">end</span>(); MI != ME; ++MI) {
std::pair<llvm::StringRef, llvm::StringRef> Identifier =
MI-><span class="pl-c1">split</span>(<span class="pl-s"><span class="pl-pds">'</span> <span class="pl-pds">'</span></span>);
llvm::Type *T =
llvm::StringSwitch<llvm::Type*>(Identifier.<span class="pl-smi">first</span>)
.<span class="pl-c1">Case</span>(<span class="pl-s"><span class="pl-pds">"</span>i32<span class="pl-pds">"</span></span>, <span class="pl-c1">Type::getInt32Ty</span>(<span class="pl-c1">getGlobalContext</span>()))
.<span class="pl-c1">Case</span>(<span class="pl-s"><span class="pl-pds">"</span>float<span class="pl-pds">"</span></span>, <span class="pl-c1">Type::getFloatTy</span>(<span class="pl-c1">getGlobalContext</span>()))
.<span class="pl-c1">Case</span>(<span class="pl-s"><span class="pl-pds">"</span>double<span class="pl-pds">"</span></span>, <span class="pl-c1">Type::getDoubleTy</span>(<span class="pl-c1">getGlobalContext</span>()))
.<span class="pl-c1">Default</span>(<span class="pl-c1">NULL</span>);
<span class="pl-k">if</span> (T == <span class="pl-c1">NULL</span>)
<span class="pl-c1">jl_error</span>(<span class="pl-s"><span class="pl-pds">"</span>Unknown type in LLVM assembly<span class="pl-pds">"</span></span>);
parent_Module-><span class="pl-c1">getOrInsertFunction</span>(
Identifier.<span class="pl-smi">second</span>.<span class="pl-c1">substr</span>(<span class="pl-c1">1</span>), T, <span class="pl-c1">NULL</span>);
}
}</pre></div>
<p dir="auto">What seemed like a more flexible solution, is to extend <code class="notranslate">llvmcall</code> such that the user can pass arbitrary declarations, which get pasted before the function definition when called for the first time. By allowing the <code class="notranslate">ir</code> argument to be a tuple of <code class="notranslate">(decls, ir)</code>, this is backwards compatible. Disadvantage: the addition of global state, to check whether a certain (arbitrary) declaration has been added already (because redeclaring identifiers is invalid, and trips the parser). I haven't found another way of checking whether certain declarations have been added to the module already (or we'd need to parse the declarations). This allows using <code class="notranslate">llvmcall</code> as follows:</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="sync_threads() = Base.llvmcall(
("""declare void @llvm.nvvm.barrier0()""",
"""call void @llvm.nvvm.barrier0()
ret void"""),
Void, ())"><pre class="notranslate"><span class="pl-en">sync_threads</span>() <span class="pl-k">=</span> Base<span class="pl-k">.</span><span class="pl-c1">llvmcall</span>(
(<span class="pl-s"><span class="pl-pds">"""</span>declare void @llvm.nvvm.barrier0()<span class="pl-pds">"""</span></span>,
<span class="pl-s"><span class="pl-pds">"""</span>call void @llvm.nvvm.barrier0()</span>
<span class="pl-s"> ret void<span class="pl-pds">"""</span></span>),
Void, ())</pre></div>
<p dir="auto">Any comments?</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/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</li>
<li>Java version: 11</li>
</ul>
<h3 dir="auto">Steps to reproduce this issue</h3>
<ol dir="auto">
<li>Customize ProxyFactory extension in provider project.</li>
<li>Use zookeeper registry.</li>
<li>Start consumer project to call provider's interface.</li>
</ol>
<p dir="auto">Pls. provide [GitHub address] to reproduce this issue.</p>
<h3 dir="auto">Expected Result</h3>
<p dir="auto">Consumer projects use default extension rather than the one configured by provider.</p>
<h3 dir="auto">Actual Result</h3>
<p dir="auto">Consumer project throws "java.lang.IllegalStateException: No such extension org.apache.dubbo.rpc.ProxyFactory by name ..." because the custom ProxyFactory extension did not exist in consumer project.</p>
<p dir="auto">If there is an exception, please attach the exception trace:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Exception in thread "main" java.lang.IllegalStateException: No such extension org.apache.dubbo.rpc.ProxyFactory by name mh
at org.apache.dubbo.common.extension.ExtensionLoader.findException(ExtensionLoader.java:520)
at org.apache.dubbo.common.extension.ExtensionLoader.createExtension(ExtensionLoader.java:527)
at org.apache.dubbo.common.extension.ExtensionLoader.getExtension(ExtensionLoader.java:351)
at org.apache.dubbo.rpc.ProxyFactory$Adaptive.getProxy(ProxyFactory$Adaptive.java)
at org.apache.dubbo.config.ReferenceConfig.createProxy(ReferenceConfig.java:433)
at org.apache.dubbo.config.ReferenceConfig.init(ReferenceConfig.java:329)
at org.apache.dubbo.config.ReferenceConfig.get(ReferenceConfig.java:250)"><pre class="notranslate"><code class="notranslate">Exception in thread "main" java.lang.IllegalStateException: No such extension org.apache.dubbo.rpc.ProxyFactory by name mh
at org.apache.dubbo.common.extension.ExtensionLoader.findException(ExtensionLoader.java:520)
at org.apache.dubbo.common.extension.ExtensionLoader.createExtension(ExtensionLoader.java:527)
at org.apache.dubbo.common.extension.ExtensionLoader.getExtension(ExtensionLoader.java:351)
at org.apache.dubbo.rpc.ProxyFactory$Adaptive.getProxy(ProxyFactory$Adaptive.java)
at org.apache.dubbo.config.ReferenceConfig.createProxy(ReferenceConfig.java:433)
at org.apache.dubbo.config.ReferenceConfig.init(ReferenceConfig.java:329)
at org.apache.dubbo.config.ReferenceConfig.get(ReferenceConfig.java:250)
</code></pre></div> | <ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/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>
<p dir="auto">Our common logger is a logging facade just like SLF4J.<br>
We can enhance it to support parametrized logging</p>
<p dir="auto">We have many places like this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="if (logger.isInfoEnabled()) {
logger.info("aaa" + "bbb" + "ccc");
}"><pre class="notranslate"><code class="notranslate">if (logger.isInfoEnabled()) {
logger.info("aaa" + "bbb" + "ccc");
}
</code></pre></div>
<p dir="auto">We are using logging guard to avoid unnecessary string concatenate.</p>
<p dir="auto">With the support of parametrized logging, this can be simplified just like:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="logger.debug("Hello world {} {} and {}", a, b, c);"><pre class="notranslate"><code class="notranslate">logger.debug("Hello world {} {} and {}", a, b, c);
</code></pre></div>
<p dir="auto">Similar feature discribed in SLF4j:<br>
<a href="https://www.slf4j.org/faq.html#logging_performance" rel="nofollow">https://www.slf4j.org/faq.html#logging_performance</a></p>
<p dir="auto">Question: Any other points can be enhanced?</p> | 0 |
<h5 dir="auto">Description of the problem</h5>
<p dir="auto">I'm trying to render only the edges of the geometry below but I am getting unwanted edges specifically the ones in violet line. The green lines represent the ones generated by an EdgesGeometry with threshold 1 and the faded grey lines are generated by a WireframeGeometry for examination of the whole geometry of the object.</p>
<p dir="auto">Green lines:<br>
<code class="notranslate"> const edgesGeometry = new EdgesGeometry(geometry, 1); const edges = new THREE.LineSegments(edgesGeometry, this._brickEdgesMaterial);</code></p>
<p dir="auto">Grey lines:<br>
<code class="notranslate">const wireframeGeometry = new WireframeGeometry(geometry); const wireframe = new THREE.LineSegments(wireframeGeometry, this._brickWireframeMaterial);</code></p>
<p dir="auto">*Violet lines were edited in</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/5621894/37564137-9f437ca8-2aca-11e8-8947-98f2bc2cad81.PNG"><img src="https://user-images.githubusercontent.com/5621894/37564137-9f437ca8-2aca-11e8-8947-98f2bc2cad81.PNG" alt="capture" style="max-width: 100%;"></a></p>
<p dir="auto">Also. Here's the geometry in json format generated through Geometry.toJSON(). File is in txt format because github does not allow json file uploads.</p>
<p dir="auto"><a href="https://github.com/mrdoob/three.js/files/1822495/geometry.txt">geometry.txt</a></p>
<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"> Dev</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> r91</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> r89</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" checked=""> All of them</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> 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"> 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" checked=""> All of them</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> 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> | <h5 dir="auto">Description of the problem</h5>
<p dir="auto">The EdgesGeometry takes all the cords shared between faces and if the faces are not coplanar (or their "dot" is less than the thresholdDot) then it shows them as edges.</p>
<p dir="auto">The problem is that in some cases a cord is the sum of two other cords in two different faces. In this case the cord is shown as edge even if its's not.</p>
<p dir="auto">This is the wireframe:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/5675600/21715998/01b68580-d408-11e6-911c-d43090dbc16d.png"><img src="https://cloud.githubusercontent.com/assets/5675600/21715998/01b68580-d408-11e6-911c-d43090dbc16d.png" alt="screen shot 2017-01-06 at 12 02 01" style="max-width: 100%;"></a></p>
<p dir="auto">and this is with the EdgesGeometry:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/5675600/21715997/01b2fcf8-d408-11e6-9175-f8628cd184c6.png"><img src="https://cloud.githubusercontent.com/assets/5675600/21715997/01b2fcf8-d408-11e6-9175-f8628cd184c6.png" alt="screen shot 2017-01-06 at 12 01 44" style="max-width: 100%;"></a></p>
<p dir="auto">I'm thinking we should, for each cord, check if there is a vertex in it, and if so, split the face in two using that vertex.<br>
Any idea on how we could do it?</p>
<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=""> r82</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> ...</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" checked=""> All of them</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> 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"> 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" checked=""> All of them</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Windows</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> | 1 |
<p dir="auto">I like the design of the new <code class="notranslate">Deno.serveHttp</code> API. I think a similar design would work well for WebSockets, too.</p>
<p dir="auto">Example API:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="async function acceptWebSocket(
conn: Deno.Conn,
httpConn: Deno.RequestEvent
): Promise<WebSocket> {}"><pre class="notranslate"><span class="pl-k">async</span> <span class="pl-k">function</span> <span class="pl-en">acceptWebSocket</span><span class="pl-kos">(</span>
<span class="pl-s1">conn</span>: <span class="pl-smi">Deno</span><span class="pl-kos">.</span><span class="pl-smi">Conn</span><span class="pl-kos">,</span>
<span class="pl-s1">httpConn</span>: <span class="pl-smi">Deno</span><span class="pl-kos">.</span><span class="pl-smi">RequestEvent</span>
<span class="pl-kos">)</span>: <span class="pl-smi">Promise</span><span class="pl-kos"><</span><span class="pl-smi">WebSocket</span><span class="pl-kos">></span> <span class="pl-kos">{</span><span class="pl-kos">}</span></pre></div>
<p dir="auto">Example usage:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="for await (const conn of Deno.listen({ port: 80 })) {
handleConn(conn);
}
async function handleConn(conn: Deno.Conn) {
for await (const httpConn of Deno.serveHttp(conn)) {
handleHttpConn(conn, httpConn);
}
}
async function handleHttpConn(conn: Deno.Conn, httpConn: Deno.RequestEvent) {
try {
const ws = await Deno.acceptWebSocket(conn, httpConn);
ws.onopen = todo;
ws.onmessage = todo;
ws.onerror = todo;
ws.onclose = todo;
} catch {
httpConn.respondWith(new Response("Failed to accept WebSocket", { status: 400 }));
}
}
function todo() {}"><pre class="notranslate"><span class="pl-k">for</span> <span class="pl-k">await</span> <span class="pl-kos">(</span><span class="pl-k">const</span> <span class="pl-s1">conn</span> <span class="pl-k">of</span> <span class="pl-smi">Deno</span><span class="pl-kos">.</span><span class="pl-en">listen</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">port</span>: <span class="pl-c1">80</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">handleConn</span><span class="pl-kos">(</span><span class="pl-s1">conn</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-k">async</span> <span class="pl-k">function</span> <span class="pl-en">handleConn</span><span class="pl-kos">(</span><span class="pl-s1">conn</span>: <span class="pl-smi">Deno</span><span class="pl-kos">.</span><span class="pl-smi">Conn</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">for</span> <span class="pl-k">await</span> <span class="pl-kos">(</span><span class="pl-k">const</span> <span class="pl-s1">httpConn</span> <span class="pl-k">of</span> <span class="pl-smi">Deno</span><span class="pl-kos">.</span><span class="pl-en">serveHttp</span><span class="pl-kos">(</span><span class="pl-s1">conn</span><span class="pl-kos">)</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-en">handleHttpConn</span><span class="pl-kos">(</span><span class="pl-s1">conn</span><span class="pl-kos">,</span> <span class="pl-s1">httpConn</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-k">async</span> <span class="pl-k">function</span> <span class="pl-en">handleHttpConn</span><span class="pl-kos">(</span><span class="pl-s1">conn</span>: <span class="pl-smi">Deno</span><span class="pl-kos">.</span><span class="pl-smi">Conn</span><span class="pl-kos">,</span> <span class="pl-s1">httpConn</span>: <span class="pl-smi">Deno</span><span class="pl-kos">.</span><span class="pl-smi">RequestEvent</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">try</span> <span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-s1">ws</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-smi">Deno</span><span class="pl-kos">.</span><span class="pl-en">acceptWebSocket</span><span class="pl-kos">(</span><span class="pl-s1">conn</span><span class="pl-kos">,</span> <span class="pl-s1">httpConn</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-s1">ws</span><span class="pl-kos">.</span><span class="pl-c1">onopen</span> <span class="pl-c1">=</span> <span class="pl-s1">todo</span><span class="pl-kos">;</span>
<span class="pl-s1">ws</span><span class="pl-kos">.</span><span class="pl-c1">onmessage</span> <span class="pl-c1">=</span> <span class="pl-s1">todo</span><span class="pl-kos">;</span>
<span class="pl-s1">ws</span><span class="pl-kos">.</span><span class="pl-c1">onerror</span> <span class="pl-c1">=</span> <span class="pl-s1">todo</span><span class="pl-kos">;</span>
<span class="pl-s1">ws</span><span class="pl-kos">.</span><span class="pl-c1">onclose</span> <span class="pl-c1">=</span> <span class="pl-s1">todo</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span> <span class="pl-k">catch</span> <span class="pl-kos">{</span>
<span class="pl-s1">httpConn</span><span class="pl-kos">.</span><span class="pl-en">respondWith</span><span class="pl-kos">(</span><span class="pl-k">new</span> <span class="pl-smi">Response</span><span class="pl-kos">(</span><span class="pl-s">"Failed to accept WebSocket"</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">status</span>: <span class="pl-c1">400</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-k">function</span> <span class="pl-en">todo</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">Probably looks like this:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="let { respondWith, request } = await httpConn.nextRequest();
let { ws, response } = Deno.serveWebsocket(request);
respondWith(response);
// use web standard ws"><pre class="notranslate"><span class="pl-k">let</span> <span class="pl-kos">{</span> respondWith<span class="pl-kos">,</span> request <span class="pl-kos">}</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-s1">httpConn</span><span class="pl-kos">.</span><span class="pl-en">nextRequest</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">let</span> <span class="pl-kos">{</span> ws<span class="pl-kos">,</span> response <span class="pl-kos">}</span> <span class="pl-c1">=</span> <span class="pl-v">Deno</span><span class="pl-kos">.</span><span class="pl-en">serveWebsocket</span><span class="pl-kos">(</span><span class="pl-s1">request</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-en">respondWith</span><span class="pl-kos">(</span><span class="pl-s1">response</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-c">// use web standard ws</span></pre></div>
<p dir="auto">Should use <a href="https://crates.io/crates/tungstenite" rel="nofollow">tungstenite</a></p>
<p dir="auto">Probably this should proceed <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="859763399" data-permission-text="Title is private" data-url="https://github.com/denoland/deno/issues/10210" data-hovercard-type="issue" data-hovercard-url="/denoland/deno/issues/10210/hovercard" href="https://github.com/denoland/deno/issues/10210">#10210</a></p> | 1 |
<h4 dir="auto">Problem description</h4>
<p dir="auto">I would like to subset the data frame with a indexer. When using MultiIndex, the results are not following requested order.</p>
<h4 dir="auto">Code Sample, a copy-pastable example if possible</h4>
<p dir="auto">This works as expected when index is a simple <code class="notranslate">Index</code>: the returned entries are ordered as requested:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="df = pd.DataFrame(
{"i1":[1,1,1,1,2,4,4,2,3,3,3,3],
"i2":[1,3,2,2,1,1,2,2,1,1,3,2],
"d1":['a','b','c','d','e','f','g','h','i','j','k','l']}
)
df.set_index(['d1',], inplace=True)
df.loc[["a","c","b"],:]"><pre class="notranslate"><span class="pl-s1">df</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>(
{<span class="pl-s">"i1"</span>:[<span class="pl-c1">1</span>,<span class="pl-c1">1</span>,<span class="pl-c1">1</span>,<span class="pl-c1">1</span>,<span class="pl-c1">2</span>,<span class="pl-c1">4</span>,<span class="pl-c1">4</span>,<span class="pl-c1">2</span>,<span class="pl-c1">3</span>,<span class="pl-c1">3</span>,<span class="pl-c1">3</span>,<span class="pl-c1">3</span>],
<span class="pl-s">"i2"</span>:[<span class="pl-c1">1</span>,<span class="pl-c1">3</span>,<span class="pl-c1">2</span>,<span class="pl-c1">2</span>,<span class="pl-c1">1</span>,<span class="pl-c1">1</span>,<span class="pl-c1">2</span>,<span class="pl-c1">2</span>,<span class="pl-c1">1</span>,<span class="pl-c1">1</span>,<span class="pl-c1">3</span>,<span class="pl-c1">2</span>],
<span class="pl-s">"d1"</span>:[<span class="pl-s">'a'</span>,<span class="pl-s">'b'</span>,<span class="pl-s">'c'</span>,<span class="pl-s">'d'</span>,<span class="pl-s">'e'</span>,<span class="pl-s">'f'</span>,<span class="pl-s">'g'</span>,<span class="pl-s">'h'</span>,<span class="pl-s">'i'</span>,<span class="pl-s">'j'</span>,<span class="pl-s">'k'</span>,<span class="pl-s">'l'</span>]}
)
<span class="pl-s1">df</span>.<span class="pl-en">set_index</span>([<span class="pl-s">'d1'</span>,], <span class="pl-s1">inplace</span><span class="pl-c1">=</span><span class="pl-c1">True</span>)
<span class="pl-s1">df</span>.<span class="pl-s1">loc</span>[[<span class="pl-s">"a"</span>,<span class="pl-s">"c"</span>,<span class="pl-s">"b"</span>],:]</pre></div>
<p dir="auto">returns</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# i1 i2
# d1
# a 1 1
# c 1 2 <-- 'c' precedes 'b' as requested in query
# b 1 3
"><pre class="notranslate"><code class="notranslate"># i1 i2
# d1
# a 1 1
# c 1 2 <-- 'c' precedes 'b' as requested in query
# b 1 3
</code></pre></div>
<p dir="auto">However, when querying a data frame with a <code class="notranslate">MultiIndex</code> the behaviour is inconsistent:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="df = pd.DataFrame(
{"i1":[1,1,1,1,2,4,4,2,3,3,3,3],
"i2":[1,3,2,2,1,1,2,2,1,1,3,2],
"d1":['a','b','c','d','e','f','g','h','i','j','k','l']}
)
df.set_index(['d1',"i1"], inplace=True)
df.loc[["a","c","b"],:]"><pre class="notranslate"><span class="pl-s1">df</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>(
{<span class="pl-s">"i1"</span>:[<span class="pl-c1">1</span>,<span class="pl-c1">1</span>,<span class="pl-c1">1</span>,<span class="pl-c1">1</span>,<span class="pl-c1">2</span>,<span class="pl-c1">4</span>,<span class="pl-c1">4</span>,<span class="pl-c1">2</span>,<span class="pl-c1">3</span>,<span class="pl-c1">3</span>,<span class="pl-c1">3</span>,<span class="pl-c1">3</span>],
<span class="pl-s">"i2"</span>:[<span class="pl-c1">1</span>,<span class="pl-c1">3</span>,<span class="pl-c1">2</span>,<span class="pl-c1">2</span>,<span class="pl-c1">1</span>,<span class="pl-c1">1</span>,<span class="pl-c1">2</span>,<span class="pl-c1">2</span>,<span class="pl-c1">1</span>,<span class="pl-c1">1</span>,<span class="pl-c1">3</span>,<span class="pl-c1">2</span>],
<span class="pl-s">"d1"</span>:[<span class="pl-s">'a'</span>,<span class="pl-s">'b'</span>,<span class="pl-s">'c'</span>,<span class="pl-s">'d'</span>,<span class="pl-s">'e'</span>,<span class="pl-s">'f'</span>,<span class="pl-s">'g'</span>,<span class="pl-s">'h'</span>,<span class="pl-s">'i'</span>,<span class="pl-s">'j'</span>,<span class="pl-s">'k'</span>,<span class="pl-s">'l'</span>]}
)
<span class="pl-s1">df</span>.<span class="pl-en">set_index</span>([<span class="pl-s">'d1'</span>,<span class="pl-s">"i1"</span>], <span class="pl-s1">inplace</span><span class="pl-c1">=</span><span class="pl-c1">True</span>)
<span class="pl-s1">df</span>.<span class="pl-s1">loc</span>[[<span class="pl-s">"a"</span>,<span class="pl-s">"c"</span>,<span class="pl-s">"b"</span>],:]</pre></div>
<p dir="auto">returns</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# i2
# d1 i1
# a 1 1
# b 1 3
# c 1 2 <-- 'c' follows 'b' unlike in query"><pre class="notranslate"><code class="notranslate"># i2
# d1 i1
# a 1 1
# b 1 3
# c 1 2 <-- 'c' follows 'b' unlike in query
</code></pre></div>
<h4 dir="auto">Expected Output</h4>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# i2
# d1 i1
# a 1 1
# c 1 2
# b 1 3 "><pre class="notranslate"><code class="notranslate"># i2
# d1 i1
# a 1 1
# c 1 2
# b 1 3
</code></pre></div>
<h4 dir="auto">Output of <code class="notranslate">pd.show_versions()</code></h4>
<details>
INSTALLED VERSIONS
------------------
commit: None
python: 3.5.1.final.0
python-bits: 64
OS: Darwin
OS-release: 14.5.0
machine: x86_64
processor: i386
byteorder: little
LC_ALL: None
LANG: en_US.UTF-8
LOCALE: en_US.UTF-8
<p dir="auto">pandas: 0.19.2<br>
nose: 1.3.7<br>
pip: 9.0.1<br>
setuptools: 34.4.1<br>
Cython: 0.24<br>
numpy: 1.12.1<br>
scipy: 0.19.0<br>
statsmodels: 0.6.1<br>
xarray: None<br>
IPython: 5.3.0<br>
sphinx: 1.4.5<br>
patsy: 0.4.1<br>
dateutil: 2.6.0<br>
pytz: 2017.2<br>
blosc: None<br>
bottleneck: None<br>
tables: 3.2.2<br>
numexpr: 2.6.0<br>
matplotlib: 2.0.0<br>
openpyxl: None<br>
xlrd: None<br>
xlwt: None<br>
xlsxwriter: None<br>
lxml: None<br>
bs4: 4.5.3<br>
html5lib: 0.999999999<br>
httplib2: 0.9.2<br>
apiclient: 1.5.1<br>
sqlalchemy: 1.0.14<br>
pymysql: None<br>
psycopg2: None<br>
jinja2: 2.9.6<br>
boto: 2.42.0<br>
pandas_datareader: None</p>
</details> | <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [40]: cols = pd.MultiIndex.from_product([['A', 'B', 'C'],[1,2]])
In [41]: df = pd.DataFrame(np.random.randn(5,6), columns=cols)
In [42]: df.loc[:, ['B', 'A']]
Out[42]:
A B
1 2 1 2
0 -0.990868 1.577803 1.023247 -0.423165
1 -1.180170 1.236143 -1.484085 0.044929
2 1.665502 -0.711081 0.227827 0.651859
3 -0.659154 0.154327 -1.548650 -0.070550
4 -0.232819 0.100959 -0.102296 0.260816"><pre class="notranslate"><code class="notranslate">In [40]: cols = pd.MultiIndex.from_product([['A', 'B', 'C'],[1,2]])
In [41]: df = pd.DataFrame(np.random.randn(5,6), columns=cols)
In [42]: df.loc[:, ['B', 'A']]
Out[42]:
A B
1 2 1 2
0 -0.990868 1.577803 1.023247 -0.423165
1 -1.180170 1.236143 -1.484085 0.044929
2 1.665502 -0.711081 0.227827 0.651859
3 -0.659154 0.154327 -1.548650 -0.070550
4 -0.232819 0.100959 -0.102296 0.260816
</code></pre></div> | 1 |
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia> corrupt_stacktrace() = error("destroy stacktrace")
julia> f() = error("expected")
f (generic function with 1 method)
julia> try
f()
finally
try; corrupt_stacktrace(); end
end
ERROR:
Stacktrace:
[1] error at ./error.jl:33 [inlined]
[2] corrupt_stacktrace at ./REPL[8]:1 [inlined] # should have been f!
[3] macro expansion at ./REPL[14]:4 [inlined]
[4] top-level scope at ./<missing>:0"><pre class="notranslate">julia<span class="pl-k">></span> <span class="pl-en">corrupt_stacktrace</span>() <span class="pl-k">=</span> <span class="pl-c1">error</span>(<span class="pl-s"><span class="pl-pds">"</span>destroy stacktrace<span class="pl-pds">"</span></span>)
julia<span class="pl-k">></span> <span class="pl-en">f</span>() <span class="pl-k">=</span> <span class="pl-c1">error</span>(<span class="pl-s"><span class="pl-pds">"</span>expected<span class="pl-pds">"</span></span>)
f (generic <span class="pl-k">function</span> with <span class="pl-c1">1</span> method)
julia<span class="pl-k">></span> <span class="pl-k">try</span>
<span class="pl-c1">f</span>()
<span class="pl-k">finally</span>
<span class="pl-k">try</span>; <span class="pl-c1">corrupt_stacktrace</span>(); <span class="pl-k">end</span>
<span class="pl-k">end</span>
ERROR<span class="pl-k">:</span>
Stacktrace<span class="pl-k">:</span>
[<span class="pl-c1">1</span>] error at <span class="pl-k">./</span>error<span class="pl-k">.</span>jl<span class="pl-k">:</span><span class="pl-c1">33</span> [inlined]
[<span class="pl-c1">2</span>] corrupt_stacktrace at <span class="pl-k">./</span>REPL[<span class="pl-c1">8</span>]<span class="pl-k">:</span><span class="pl-c1">1</span> [inlined] <span class="pl-c"><span class="pl-c">#</span> should have been f!</span>
[<span class="pl-c1">3</span>] <span class="pl-k">macro</span> expansion at <span class="pl-k">./</span>REPL[<span class="pl-c1">14</span>]<span class="pl-k">:</span><span class="pl-c1">4</span> [inlined]
[<span class="pl-c1">4</span>] top<span class="pl-k">-</span>level scope at <span class="pl-k">./</span><span class="pl-k"><</span><span class="pl-c1">missing</span><span class="pl-k">>:</span><span class="pl-c1">0</span></pre></div> | <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function foo()
try
error("error in foo")
catch e
end
end
function bar()
try
error("error in bar")
catch e
foo()
rethrow(e)
end
end
bar()"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">foo</span>()
<span class="pl-k">try</span>
<span class="pl-c1">error</span>(<span class="pl-s"><span class="pl-pds">"</span>error in foo<span class="pl-pds">"</span></span>)
<span class="pl-k">catch</span> e
<span class="pl-k">end</span>
<span class="pl-k">end</span>
<span class="pl-k">function</span> <span class="pl-en">bar</span>()
<span class="pl-k">try</span>
<span class="pl-c1">error</span>(<span class="pl-s"><span class="pl-pds">"</span>error in bar<span class="pl-pds">"</span></span>)
<span class="pl-k">catch</span> e
<span class="pl-c1">foo</span>()
<span class="pl-c1">rethrow</span>(e)
<span class="pl-k">end</span>
<span class="pl-k">end</span>
<span class="pl-c1">bar</span>()</pre></div>
<p dir="auto">produces the misleading</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="ERROR: error in bar
Stacktrace:
[1] foo() at ./REPL[1]:3
[2] bar() at ./REPL[2]:5"><pre class="notranslate">ERROR<span class="pl-k">:</span> error <span class="pl-k">in</span> bar
Stacktrace<span class="pl-k">:</span>
[<span class="pl-c1">1</span>] <span class="pl-c1">foo</span>() at <span class="pl-k">./</span>REPL[<span class="pl-c1">1</span>]<span class="pl-k">:</span><span class="pl-c1">3</span>
[<span class="pl-c1">2</span>] <span class="pl-c1">bar</span>() at <span class="pl-k">./</span>REPL[<span class="pl-c1">2</span>]<span class="pl-k">:</span><span class="pl-c1">5</span></pre></div>
<p dir="auto">This just hit me in a really wicked situation: The stacktrace actually lead me to a line erroneously throwing the reported exception. I fixed it (to throw the correct exception), but the same error kept showing, leaving me completely puzzled for quite some time...</p> | 1 |
<h5 dir="auto">Issue Type:</h5>
<p dir="auto">Feature Request</p>
<h5 dir="auto">Ansible Version:</h5>
<p dir="auto">ansible 1.6.5</p>
<h5 dir="auto">Environment:</h5>
<p dir="auto">My situation is that I have a Mac OS X 10.9 machine which I am running Ansible from. I want to manage Ubuntu 12.04 hosts.</p>
<h5 dir="auto">Summary:</h5>
<p dir="auto">Forgive me if this is a duplicate (I find it hard to imagine I'm the first to encounter this) but I have spent a lot of time searching for an answer.</p>
<p dir="auto">My situation is that I have a Mac OS X 10.9 machine which I am running Ansible from. I want to manage Ubuntu hosts, ergo they require apt. I'm unable to find out how to install the python-apt or aptitude modules on my Mac, which of course means I cannot do rudimentary package management on the remote Ubuntu hosts, which ultimately means I'm unable to use Ansible to provision my systems.</p>
<h5 dir="auto">Steps To Reproduce:</h5>
<p dir="auto">N/A - Self explanatory.</p>
<h5 dir="auto">Expected Results:</h5>
<p dir="auto">Expected to be able to use apt: related modules in playbooks.</p>
<h5 dir="auto">Actual Results:</h5>
<p dir="auto">Apparently unable to use apt module from a Mac OS X machine when managing Ubuntu machines.</p> | <h5 dir="auto">Issue Type:</h5>
<p dir="auto">Bug Report</p>
<h5 dir="auto">Ansible Version:</h5>
<p dir="auto">ansible 1.6.1</p>
<h5 dir="auto">Environment:</h5>
<p dir="auto">Mac OSX</p>
<h5 dir="auto">Summary:</h5>
<p dir="auto">If we have a hosts file:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[service1]
www.host1.com
[service2]
www.host1.com"><pre class="notranslate"><code class="notranslate">[service1]
www.host1.com
[service2]
www.host1.com
</code></pre></div>
<p dir="auto">and we have these group_vars:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="group_vars/service1:
database_host: "www.database.com"
database_port: 3306
group_vars/service2:
database_host: "www.differentdatabase.com"
database_port: 3306"><pre class="notranslate"><code class="notranslate">group_vars/service1:
database_host: "www.database.com"
database_port: 3306
group_vars/service2:
database_host: "www.differentdatabase.com"
database_port: 3306
</code></pre></div>
<p dir="auto">and we are running this playbook:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- hosts: service1
remote_user: root"><pre class="notranslate"><code class="notranslate">- hosts: service1
remote_user: root
</code></pre></div>
<p dir="auto">the variables from group_vars/service1 and group_vars/service2 overwrite each other if we're deploying to the same server. This means service1 will get service2 groups variables and get the incorrect database host and port.</p>
<p dir="auto">to get around these, we've added DNS entries (aliases to <a href="http://www.host1-service.com" rel="nofollow">www.host1-service.com</a>) so our host looks like:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[service1]
www.host1-service1.com
[service2]
www.host1-service2.com"><pre class="notranslate"><code class="notranslate">[service1]
www.host1-service1.com
[service2]
www.host1-service2.com
</code></pre></div>
<p dir="auto">but this is highly error prone and is not ideal. What are some different methods to getting around this issue? (or misunderstanding of group_vars)</p>
<p dir="auto">The way I'm doing multi environmental deployments is like this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="inventory/stage/hosts
inventory/stage/group_vars/
inventory/stage/group_vars/service1
inventory/stage/group_vars/service2
inventory/live/hosts
inventory/live/group_vars/
inventory/live/group_vars/service1
inventory/live/group_vars/service2"><pre class="notranslate"><code class="notranslate">inventory/stage/hosts
inventory/stage/group_vars/
inventory/stage/group_vars/service1
inventory/stage/group_vars/service2
inventory/live/hosts
inventory/live/group_vars/
inventory/live/group_vars/service1
inventory/live/group_vars/service2
</code></pre></div>
<h5 dir="auto">Steps To Reproduce:</h5>
<p dir="auto">Summary describes how to reproduce this.</p>
<h5 dir="auto">Expected Results:</h5>
<p dir="auto">group_vars should not be overwritten by another group when sharing the same host</p>
<h5 dir="auto">Actual Results:</h5>
<p dir="auto">group_vars are overwritten by another group when sharing the same host</p> | 0 |
<p dir="auto">[Enter steps to reproduce below:]</p>
<ol dir="auto">
<li>...</li>
<li>...</li>
</ol>
<p dir="auto"><strong>Atom Version</strong>: 0.194.0<br>
<strong>System</strong>: Microsoft Windows 8.1<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\xia\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\xia\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)<br>
at EventEmitter. (C:\Users\xia\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\xia\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.<anonymous> (C:\Users\xia\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\xia\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)
at EventEmitter.<anonymous> (C:\Users\xia\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\xia\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77:15)
at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\xia\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\xia\AppData\Local\atom\app-0.194.0\resources\app.asar\src\context-menu-manager.js:170:31)
at HTMLDocument.<anonymous> (C:\Users\xia\AppData\Local\atom\app-0.194.0\resources\app.asar\src\window-event-handler.js:149:33)
at HTMLDocument.handler (C:\Users\xia\AppData\Local\atom\app-0.194.0\resources\app.asar\src\space-pen-extensions.js:112:34)
at HTMLDocument.jQuery.event.dispatch (C:\Users\xia\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\xia\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\xia\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.<anonymous> (C:\Users\xia\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\xia\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)
at EventEmitter.<anonymous> (C:\Users\xia\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\xia\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77:15)
at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\xia\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\xia\AppData\Local\atom\app-0.194.0\resources\app.asar\src\context-menu-manager.js:170:31)
at HTMLDocument.<anonymous> (C:\Users\xia\AppData\Local\atom\app-0.194.0\resources\app.asar\src\window-event-handler.js:149:33)
at HTMLDocument.handler (C:\Users\xia\AppData\Local\atom\app-0.194.0\resources\app.asar\src\space-pen-extensions.js:112:34)
at HTMLDocument.jQuery.event.dispatch (C:\Users\xia\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\xia\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=" 2x -0:04.6.0 tree-view:copy (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel)"><pre class="notranslate"><code class="notranslate"> 2x -0:04.6.0 tree-view:copy (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel)
</code></pre></div>
<h3 dir="auto">Config</h3>
<div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{
"core": {
"themes": [
"atom-light-ui",
"atom-light-syntax"
]
},
"editor": {
"invisibles": {},
"softWrap": true,
"fontSize": 13
}
}"><pre class="notranslate">{
<span class="pl-ent">"core"</span>: {
<span class="pl-ent">"themes"</span>: [
<span class="pl-s"><span class="pl-pds">"</span>atom-light-ui<span class="pl-pds">"</span></span>,
<span class="pl-s"><span class="pl-pds">"</span>atom-light-syntax<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">"fontSize"</span>: <span class="pl-c1">13</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.4.0
language-ejs, v0.1.0
linter, v0.12.0
linter-jshint, v0.1.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">4</span>.<span class="pl-ii">0</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">0</span>
linter<span class="pl-k">-</span>jshint, v0.<span class="pl-ii">1</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> | <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Uncaught Error: Cannot find module './context-menu' Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.js:351:15)
at Function.Module._load (module.js:293:25)
at Module.require (module.js:380:17)
at require (module.js:399:17)
at BrowserWindow. (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\app\src\browser\atom-window.js:127:27)
at BrowserWindow.emit (events.js:116:17)
at callFunction (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\atom\browser\lib\rpc-server.js:116:18)
at EventEmitter. (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\atom\browser\lib\rpc-server.js:208:14)
at EventEmitter.emit (events.js:127:17)
at EventEmitter. (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\atom\browser\api\lib\web-contents.js:99:23)"><pre class="notranslate"><code class="notranslate">Uncaught Error: Cannot find module './context-menu' Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.js:351:15)
at Function.Module._load (module.js:293:25)
at Module.require (module.js:380:17)
at require (module.js:399:17)
at BrowserWindow. (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\app\src\browser\atom-window.js:127:27)
at BrowserWindow.emit (events.js:116:17)
at callFunction (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\atom\browser\lib\rpc-server.js:116:18)
at EventEmitter. (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\atom\browser\lib\rpc-server.js:208:14)
at EventEmitter.emit (events.js:127:17)
at EventEmitter. (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\atom\browser\api\lib\web-contents.js:99:23)
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\atom\renderer\api\lib\remote.js:77
Error: Cannot find module './context-menu'
Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.js:351:15)
at Function.Module._load (module.js:293:25)
at Module.require (module.js:380:17)
at require (module.js:399:17)
at BrowserWindow.<anonymous> (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\app\src\browser\atom-window.js:127:27)
at BrowserWindow.emit (events.js:116:17)
at callFunction (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\atom\browser\lib\rpc-server.js:116:18)
at EventEmitter.<anonymous> (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\atom\browser\lib\rpc-server.js:208:14)
at EventEmitter.emit (events.js:127:17)
at EventEmitter.<anonymous> (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\atom\browser\api\lib\web-contents.js:99:23)
at metaToValue (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\atom\renderer\api\lib\remote.js:77:15)
at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\atom\renderer\api\lib\remote.js:111:26)
at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\app\src\context-menu-manager.js:169:33)
at HTMLDocument.<anonymous> (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\app\src\window-event-handler.js:143:33)
at HTMLDocument.handler (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\app\src\space-pen-extensions.js:112:34)
at HTMLDocument.jQuery.event.dispatch (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\app\node_modules\space-pen\vendor\jquery.js:4681:9)
at HTMLDocument.elemData.handle (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\app\node_modules\space-pen\vendor\jquery.js:4359:46)"><pre class="notranslate"><code class="notranslate">C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\atom\renderer\api\lib\remote.js:77
Error: Cannot find module './context-menu'
Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.js:351:15)
at Function.Module._load (module.js:293:25)
at Module.require (module.js:380:17)
at require (module.js:399:17)
at BrowserWindow.<anonymous> (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\app\src\browser\atom-window.js:127:27)
at BrowserWindow.emit (events.js:116:17)
at callFunction (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\atom\browser\lib\rpc-server.js:116:18)
at EventEmitter.<anonymous> (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\atom\browser\lib\rpc-server.js:208:14)
at EventEmitter.emit (events.js:127:17)
at EventEmitter.<anonymous> (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\atom\browser\api\lib\web-contents.js:99:23)
at metaToValue (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\atom\renderer\api\lib\remote.js:77:15)
at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\atom\renderer\api\lib\remote.js:111:26)
at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\app\src\context-menu-manager.js:169:33)
at HTMLDocument.<anonymous> (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\app\src\window-event-handler.js:143:33)
at HTMLDocument.handler (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\app\src\space-pen-extensions.js:112:34)
at HTMLDocument.jQuery.event.dispatch (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\app\node_modules\space-pen\vendor\jquery.js:4681:9)
at HTMLDocument.elemData.handle (C:\Users\Karai\AppData\Local\atom\app-0.179.0\resources\app\node_modules\space-pen\vendor\jquery.js:4359:46)
</code></pre></div> | 1 |
<p dir="auto">Hi,</p>
<p dir="auto">In the commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/symfony/symfony/commit/7e87eb1fdfac872687a4b9a7ce315812d5eb0d03/hovercard" href="https://github.com/symfony/symfony/commit/7e87eb1fdfac872687a4b9a7ce315812d5eb0d03"><tt>7e87eb1</tt></a>, which is fixing the request format when duplicating a <code class="notranslate">Request</code> object, you forcefully set the request format if the parent is already <code class="notranslate">null</code>.</p>
<p dir="auto">The thing is, when forwarding in a controller to another controller (or maybe something, I haven't tested for another case yet), you may need to let the request format be <code class="notranslate">null</code> and unbiased.</p>
<p dir="auto">Currently (brought by the commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/symfony/symfony/commit/7e87eb1fdfac872687a4b9a7ce315812d5eb0d03/hovercard" href="https://github.com/symfony/symfony/commit/7e87eb1fdfac872687a4b9a7ce315812d5eb0d03"><tt>7e87eb1</tt></a>), if the request format is null, then it is set to an arbitrary default which is <code class="notranslate">html</code>... Which renders useless any attempt to get the "correct" request format in the forwarded controller, and the possibility to set a default.</p>
<p dir="auto">This is easily manageable by doing a little hack before the forward :</p>
<div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<?php
use Syfmony\FrameworkBundle\Controller\Controller;
class MyController extends Controller
{
public function myAction()
{
// ... stuff
// little hack because of symfony/symfony's commit 7e87eb1fdf
$request->getRequestFormat('json'); // json example. could be whatever except null
$this->forward('Bundle:Action', ['param']);
}
}"><pre class="notranslate"><span class="pl-ent"><?php</span>
<span class="pl-k">use</span> <span class="pl-v">Syfmony</span>\<span class="pl-v">FrameworkBundle</span>\<span class="pl-v">Controller</span>\<span class="pl-v">Controller</span>;
<span class="pl-k">class</span> <span class="pl-v">MyController</span> <span class="pl-k">extends</span> <span class="pl-v">Controller</span>
{
<span class="pl-k">public</span> <span class="pl-k">function</span> <span class="pl-en">myAction</span>()
{
<span class="pl-c">// ... stuff</span>
<span class="pl-c">// little hack because of symfony/symfony's commit 7e87eb1fdf</span>
<span class="pl-s1"><span class="pl-c1">$</span>request</span>-><span class="pl-en">getRequestFormat</span>(<span class="pl-s">'json'</span>); <span class="pl-c">// json example. could be whatever except null</span>
<span class="pl-s1"><span class="pl-c1">$</span><span class="pl-smi">this</span></span>-><span class="pl-en">forward</span>(<span class="pl-s">'Bundle:Action'</span>, [<span class="pl-s">'param'</span>]);
}
}</pre></div>
<p dir="auto">But still, I don't think this is what should be expected from the framework ; the request format, which is in my case handled by a view listener should be left as is and unbiased, even if it has a null value per default.</p>
<p dir="auto">So, maybe this commit was made from a need, but still, I think this could be a possible regression.</p>
<p dir="auto">Cheers.</p> | <p dir="auto">After my first typo since updating dependencies, I noticed fatal errors were displayed in a symfony layout, unfortunately I'm getting displaying issues.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/fc5b7c9bfe00c2c6c7b1e7f23ccc815cfa23cdc95b3b528ed4fb7230e58f6569/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f313230353338362f333636352f61633030333636362d343264622d313165322d396561322d3666306363633030303065662e706e67"><img src="https://camo.githubusercontent.com/fc5b7c9bfe00c2c6c7b1e7f23ccc815cfa23cdc95b3b528ed4fb7230e58f6569/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f313230353338362f333636352f61633030333636362d343264622d313165322d396561322d3666306363633030303065662e706e67" alt="Capture du 2012-12-10 16:09:40.png" data-canonical-src="https://f.cloud.github.com/assets/1205386/3665/ac003666-42db-11e2-9ea2-6f0ccc0000ef.png" style="max-width: 100%;"></a></p>
<p dir="auto">The first issue occurs because I don't have xdebug installed, apparently it has only been tought for xdebug (<a href="http://easycaptures.com/fs/uploaded/737/5939488074.png" rel="nofollow">http://easycaptures.com/fs/uploaded/737/5939488074.png</a>).</p>
<p dir="auto">The second issue occurs because the register method of the ErrorHandler is called twice, I can't investigate on why now (but I don't touch it myself and don't have that many third party bundles installed, fostwitterbundle and genemubundle only), which causes the shutdown function being registered twice.</p>
<p dir="auto">A quick fix for the first issue could be to set display_errors to false on debug mode, as apparently all kind of errors would now be displayed by symfony anyway.</p> | 0 |
<h1 dir="auto">Feature request</h1>
<p dir="auto">When using a <code class="notranslate">next export</code> static build, I would like the <code class="notranslate">getInitialProps</code> method to fire only during the build step and not on the client for select page components. (<a href="https://stackoverflow.com/questions/57897785/how-can-i-use-getinitialprops-only-during-the-nextjs-site-build/57905091" rel="nofollow">Related StackOverflow question</a>)</p>
<p dir="auto">On a static client, Next.js invokes this method before the page component is rendered in order to provide the necessary props for the component. Thus, large requests can delay the client's first paint as this is a blocking request.</p>
<p dir="auto">I would like to selectively ignore <code class="notranslate">getInitialProps</code> for a page component, and instead use the props provided by <code class="notranslate">getInitialProps</code> during <code class="notranslate">next export</code>.</p>
<p dir="auto">I'm unwilling to move my slow API request to <code class="notranslate">componentDidMount</code> in order to avoid the blocking request because I want to use the data returned during the build step to populate the static HTML, and this particular request doesn't need to be dynamic or updated after the build.</p>
<blockquote>
<p dir="auto">Shallow routing works only for same page URL changes.</p>
</blockquote>
<p dir="auto">- <a href="https://nextjs.org/docs/#shallow-routing" rel="nofollow">Shallow Routing</a></p>
<p dir="auto">For this feature request, is it possible to implement something similar to shallow routing, but for <em>new</em> pages?</p>
<p dir="auto">To circumvent <code class="notranslate">getInitialProps</code> on static exports, I currently have to use a standard JSX anchor <code class="notranslate"><a href="/next-page"></code> to avoid invoking the method. This does cause a full page refresh which is a poor solution.</p> | <h2 dir="auto">Summary</h2>
<p dir="auto">Allow Next.js to become fully hybrid by providing methods to do both static generation and server-side rendering on a per-page basis.</p>
<ul dir="auto">
<li>Two new per-page data fetching methods
<ul dir="auto">
<li><code class="notranslate">getStaticProps</code> - Opt-in to static generation (SSG) at <code class="notranslate">next build</code> time.</li>
<li><code class="notranslate">getServerSideProps</code> - Opt-in to server-side rendering (SSR) which renders on-demand.</li>
</ul>
</li>
<li>A new method for statically generating (SSG) a set of routes from dynamic sources
<ul dir="auto">
<li><code class="notranslate">getStaticPaths</code> - Return list of parameters for dynamic routes to do static generation (SSG)</li>
</ul>
</li>
</ul>
<p dir="auto">This RFC exclusively discusses API additions. All new functionality is completely backwards compatible and can be incrementally adopted. This RFC introduces no deprecations.</p>
<h2 dir="auto">Background</h2>
<p dir="auto">When building websites or web applications you generally have to choose between 2 strategies: Static generation (SSG) or server-side rendering (SSR).</p>
<p dir="auto">Next.js instead lets you build hybrid applications that allow you to choose per-page which strategy is used. Starting with Next.js 9, pages without <code class="notranslate">getInitialProps</code> get <a href="https://nextjs.org/blog/next-9#automatic-static-optimization" rel="nofollow">statically optimized</a> and output as <code class="notranslate">.html</code> files upon <code class="notranslate">next build</code>.</p>
<p dir="auto">However, you might want to do data fetching while generating static pages for your specific use case.</p>
<p dir="auto">For example, to statically generate marketing pages from a CMS or a blog section of the site.</p>
<p dir="auto">Using <code class="notranslate">getInitialProps</code> would opt you into SSR in that case.</p>
<p dir="auto">Next.js currently has a <code class="notranslate">next export</code> command, that makes the application fully SSG, losing the hybrid nature of Next.js.</p>
<p dir="auto">If you use <code class="notranslate">next export</code> with <code class="notranslate">getInitialProps</code> there is another problem that surfaces. <code class="notranslate">getInitialProps</code> is called at build time (which is great), but then when you use <code class="notranslate">next/link</code> to move between pages <code class="notranslate">getInitialProps</code> is called client-side, instead of using the <code class="notranslate">next export</code> result.</p>
<p dir="auto">This also means the data source (CMS / API endpoint) is called directly on client-side transitions, if your data source is down, client-side transitions break while moving between pages.</p>
<p dir="auto">We've collaborated with heavy users of SSG and <code class="notranslate">next export</code> in Next.js like HashiCorp (thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jescalan/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jescalan">@jescalan</a>) and extensively investigated the right constraints for introducing two new data fetching methods: <code class="notranslate">getStaticProps</code> and <code class="notranslate">getServerSideProps</code>. But also a way to provide parameters to statically generate static pages for dynamic routes: <code class="notranslate">getStaticPaths</code> (replacement for <code class="notranslate">exportPathMap</code> that is per-page).</p>
<p dir="auto">These new methods have many advantages over the <code class="notranslate">getInitialProps</code> model as there is a clear distinction between what will become SSG vs SSR.</p>
<ul dir="auto">
<li><code class="notranslate">getStaticProps</code> marks the page to be statically generated at build time (when running <code class="notranslate">next build</code>)</li>
<li><code class="notranslate">getStaticPaths</code> allows for returning a list of parameters to generate at build time for dynamic routes</li>
<li><code class="notranslate">getServerSideProps</code> marks the page to be server-side rendered on every request and is the most similar to the current <code class="notranslate">getInitialProps</code> behavior when using a server.</li>
</ul>
<p dir="auto">Separating these methods also allows us to provide the correct context object that can be typed using TypeScript. When you opt for a specific rendering strategy you get the correct values, currently with <code class="notranslate">getInitialProps</code> you have to guess what is available on SSG vs SSR when using TypeScript.</p>
<p dir="auto">Furthermore, by making these methods explicit, it'll allow us to document the different trade-offs more clearly.</p>
<h2 dir="auto">Implementation</h2>
<p dir="auto">Note that all these methods are top-level on the page component file and can't be nested, similar to <code class="notranslate">getInitialProps</code>.</p>
<h3 dir="auto"><code class="notranslate">getStaticProps</code></h3>
<p dir="auto">Using <code class="notranslate">getStaticProps</code> means the page will be rendered statically at build time (SSG).</p>
<p dir="auto">This new method will allow you to do data fetching for a page that will be statically generated into a <code class="notranslate">.html</code> file at <code class="notranslate">next build</code> time.</p>
<p dir="auto">Next.js will also automatically generate a JSON file that holds the result of <code class="notranslate">getStaticProps</code> at <code class="notranslate">next build</code> time. This is being used for client-side routing.</p>
<p dir="auto">When client-side routing through <code class="notranslate">next/link</code> or <code class="notranslate">next/router</code>, Next.js will fetch this JSON file to get the props needed to render the page client-side.</p>
<p dir="auto">Properties are returned under a <code class="notranslate">props</code> key so that other options can be introduced in the future.</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// pages/index.js
// getStaticProps is only called server-side
// In theory you could do direct database queries
export async function getStaticProps(context) {
return {
// Unlike `getInitialProps` the props are returned under a props key
// The reasoning behind this is that there's potentially more options
// that will be introduced in the future.
// For example to allow you to further control behavior per-page.
props: {}
};
}"><pre class="notranslate"><span class="pl-c">// pages/index.js</span>
<span class="pl-c">// getStaticProps is only called server-side</span>
<span class="pl-c">// In theory you could do direct database queries</span>
<span class="pl-k">export</span> <span class="pl-k">async</span> <span class="pl-k">function</span> <span class="pl-en">getStaticProps</span><span class="pl-kos">(</span><span class="pl-s1">context</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-c">// Unlike `getInitialProps` the props are returned under a props key</span>
<span class="pl-c">// The reasoning behind this is that there's potentially more options</span>
<span class="pl-c">// that will be introduced in the future.</span>
<span class="pl-c">// For example to allow you to further control behavior per-page.</span>
<span class="pl-c1">props</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">The <code class="notranslate">context</code> will contain:</p>
<ul dir="auto">
<li><code class="notranslate">params</code> - The parameters when on a dynamic route.</li>
</ul>
<h3 dir="auto"><code class="notranslate">getStaticPaths</code></h3>
<p dir="auto">This is an extension on <code class="notranslate">getStaticProps</code> usage for dynamic routes.</p>
<p dir="auto"><code class="notranslate">getStaticPaths</code> replaces the need for having a <code class="notranslate">exportPathMap</code> and works per-page.</p>
<p dir="auto">Since you might want to statically generate a list of urls that have a dynamic parameter, like in the example below a <code class="notranslate">slug</code>. Next.js will provide a <code class="notranslate">getStaticPaths</code> method that allows for returning a list of urls. Since it's a <code class="notranslate">async</code> method you can also fetch that list from a data source like your CMS.</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// pages/blog/[slug].js
// `getStaticProps` gets a `params` object holding the dynamic parameters
// For `/blog/hello-world` it would look like `{ slug: 'hello-world }`
export async function getStaticProps({ params }) {
return {
props: {}
};
}
// `getStaticPaths` allows the user to return a list of parameters to
// render to HTML at build time.
export async function getStaticPaths() {
return {
paths: [
// This renders /blog/hello-world to HTML at build time
{ params: { slug: "hello-world" } }
]
};
}"><pre class="notranslate"><span class="pl-c">// pages/blog/[slug].js</span>
<span class="pl-c">// `getStaticProps` gets a `params` object holding the dynamic parameters</span>
<span class="pl-c">// For `/blog/hello-world` it would look like `{ slug: 'hello-world }`</span>
<span class="pl-k">export</span> <span class="pl-k">async</span> <span class="pl-k">function</span> <span class="pl-en">getStaticProps</span><span class="pl-kos">(</span><span class="pl-kos">{</span> params <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">props</span>: <span class="pl-kos">{</span><span class="pl-kos">}</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span>
<span class="pl-c">// `getStaticPaths` allows the user to return a list of parameters to</span>
<span class="pl-c">// render to HTML at build time.</span>
<span class="pl-k">export</span> <span class="pl-k">async</span> <span class="pl-k">function</span> <span class="pl-en">getStaticPaths</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">paths</span>: <span class="pl-kos">[</span>
<span class="pl-c">// This renders /blog/hello-world to HTML at build time</span>
<span class="pl-kos">{</span> <span class="pl-c1">params</span>: <span class="pl-kos">{</span> <span class="pl-c1">slug</span>: <span class="pl-s">"hello-world"</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span>
<span class="pl-kos">]</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span></pre></div>
<h4 dir="auto">Fallback</h4>
<p dir="auto">In many cases you might not want to pre-render every possible route in your application at build-time (for example if you have millions of products). For this reason Next.js will automatically generate a <code class="notranslate">fallback</code> page that is a render of the page without data (so that a loading state can be shown) for when the page hasnβt been generated yet.</p>
<p dir="auto">The exact behavior of serving will be:</p>
<ul dir="auto">
<li>Incoming request
<ul dir="auto">
<li>Next.js checks if the path was generated at build time
<ul dir="auto">
<li>If the path was generated
<ul dir="auto">
<li>serve directly</li>
</ul>
</li>
<li>If the path was not generated
<ul dir="auto">
<li>Serve the fallback
<ul dir="auto">
<li>Next.js renders the page (with data) in the background and adds it to the list of generated pages</li>
<li>Subsequent request to the same path will serve the generated page</li>
<li>This ensures that users always have a fast experience and never have slow TTFB from server-rendering while preserving fast builds and static-generation properties</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<p dir="auto">In case you want paths that werenβt generated at build time to result in a 404 that is also possible by returning <code class="notranslate">fallback: false</code> from <code class="notranslate">getStaticPaths</code></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// `getStaticPaths` allows the user to return a list of parameters to
// render to HTML at build time.
export async function getStaticPaths() {
return {
// Opt-out of the described fallback behavior
fallback: false,
paths: [
// This renders /blog/hello-world to HTML at build time
{ params: { slug: "hello-world" } }
]
};
}"><pre class="notranslate"><span class="pl-c">// `getStaticPaths` allows the user to return a list of parameters to</span>
<span class="pl-c">// render to HTML at build time.</span>
<span class="pl-k">export</span> <span class="pl-k">async</span> <span class="pl-k">function</span> <span class="pl-en">getStaticPaths</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-c">// Opt-out of the described fallback behavior</span>
<span class="pl-c1">fallback</span>: <span class="pl-c1">false</span><span class="pl-kos">,</span>
<span class="pl-c1">paths</span>: <span class="pl-kos">[</span>
<span class="pl-c">// This renders /blog/hello-world to HTML at build time</span>
<span class="pl-kos">{</span> <span class="pl-c1">params</span>: <span class="pl-kos">{</span> <span class="pl-c1">slug</span>: <span class="pl-s">"hello-world"</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span>
<span class="pl-kos">]</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span></pre></div>
<h3 dir="auto"><code class="notranslate">getServerSideProps</code></h3>
<p dir="auto">When using <code class="notranslate">getServerSideProps</code>, the page is not statically generated (SSG) and instead renders on-demand on every request to the server (SSR).</p>
<p dir="auto">Next.js will also automatically expose an API endpoint that returns the result of calling <code class="notranslate">getServerSideProps</code>. This is being used for client-side routing.</p>
<p dir="auto">When client-side routing through <code class="notranslate">next/link</code> or <code class="notranslate">next/router</code>, Next.js will fetch this exposed API endpoint to get the JSON data that is turned into the props needed to render the page client-side.</p>
<p dir="auto">This method is the most similar to the current <code class="notranslate">getInitialProps</code>, with the main difference being <code class="notranslate">getServerSideProps</code> is always executed server-side instead of in the browser. Either on server-side rendering or the API fetch when client-side routing.</p>
<p dir="auto">Similarly to <code class="notranslate">getStaticProps</code> the properties are returned under a <code class="notranslate">props</code> key.</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="// pages/index.js
// getServerSideProps is only called server-side
// In theory you could do direct database queries
export async function getServerSideProps(context) {
return {
// Unlike `getInitialProps` the props are returned under a props key
// The reasoning behind this is that there's potentially more options
// that will be introduced in the future.
// For example to allow you to further control behavior per-page.
props: {}
};
}"><pre class="notranslate"><span class="pl-c">// pages/index.js</span>
<span class="pl-c">// getServerSideProps is only called server-side</span>
<span class="pl-c">// In theory you could do direct database queries</span>
<span class="pl-k">export</span> <span class="pl-k">async</span> <span class="pl-k">function</span> <span class="pl-en">getServerSideProps</span><span class="pl-kos">(</span><span class="pl-s1">context</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-c">// Unlike `getInitialProps` the props are returned under a props key</span>
<span class="pl-c">// The reasoning behind this is that there's potentially more options</span>
<span class="pl-c">// that will be introduced in the future.</span>
<span class="pl-c">// For example to allow you to further control behavior per-page.</span>
<span class="pl-c1">props</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">The <code class="notranslate">context</code> will contain:</p>
<ul dir="auto">
<li><code class="notranslate">params</code> - The parameters on a dynamic route</li>
<li><code class="notranslate">req</code> - The HTTP request object</li>
<li><code class="notranslate">res</code> - The HTTP response object</li>
<li><code class="notranslate">query</code> - The query string (not entirely sure about this one, but probably needed)</li>
</ul>
<hr>
<p dir="auto">Authored by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/timneutkens/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/timneutkens">@timneutkens</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Timer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Timer">@Timer</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ijjk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ijjk">@ijjk</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/lfades/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/lfades">@lfades</a>. Collaborated with <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/rauchg/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/rauchg">@rauchg</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jescalan/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jescalan">@jescalan</a> and others <g-emoji class="g-emoji" alias="rocket" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f680.png">π</g-emoji></p> | 1 |
<h3 dir="auto">Preflight Checklist</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <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">11.4.4</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">W10P 20h2 19042.985</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"><em>No response</em></p>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">There should be an option to not enable fullpath but only name (like on chromium).</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">The fullpath seems to be always available whatever the flags sandbox or node_integration is set.</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> | <p dir="auto">The function to detect whether the current window is maximized is invalid</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="mainWindow = new BrowserWindow({
height: 670,
useContentSize: true,
width: 1022,
minWidth: 1022,
frame: false,
resizable: false,
icon: path.resolve(__dirname, '../renderer/assets/icon.png')
})"><pre class="notranslate"><code class="notranslate">mainWindow = new BrowserWindow({
height: 670,
useContentSize: true,
width: 1022,
minWidth: 1022,
frame: false,
resizable: false,
icon: path.resolve(__dirname, '../renderer/assets/icon.png')
})
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ipcMain.on('max', e => {
if (mainWindow.isMaximized()) {
mainWindow.unmaximize()
// mainWindow.setFullScreen(false)
} else {
// mainWindow.setFullScreen(true)
mainWindow.maximize()
}
})"><pre class="notranslate"><code class="notranslate">ipcMain.on('max', e => {
if (mainWindow.isMaximized()) {
mainWindow.unmaximize()
// mainWindow.setFullScreen(false)
} else {
// mainWindow.setFullScreen(true)
mainWindow.maximize()
}
})
</code></pre></div>
<p dir="auto"><code class="notranslate">mainWindow.isMaximized() </code>always returns false</p> | 0 |
<p dir="auto"><strong>Migrated issue, originally created by David Lord (<a href="https://github.com/davidism">@davidism</a>)</strong></p>
<p dir="auto"><code class="notranslate">as_declarative</code> has been removed from the top level module between 0.9.8 and 0.9.9. This no longer works:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from sqlalchemy.ext.declarative import as_declarative"><pre class="notranslate"><code class="notranslate">from sqlalchemy.ext.declarative import as_declarative
</code></pre></div>
<p dir="auto">Instead, this is required:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from sqlalchemy.ext.declarative.api import as_declarative"><pre class="notranslate"><code class="notranslate">from sqlalchemy.ext.declarative.api import as_declarative
</code></pre></div>
<p dir="auto">This seems to be an unintended change, as there's no reason for it to have been removed, and there's no mention in the changelog.</p>
<p dir="auto">Discovered while answering <a href="http://stackoverflow.com/a/29083190/400617" rel="nofollow">this Stack Overflow question</a>.</p> | <p dir="auto"><strong>Migrated issue, originally created by Eben Freeman (<a href="https://github.com/emfree">@emfree</a>)</strong></p>
<p dir="auto">Hi,<br>
Looks like <code class="notranslate">sqlalchemy.ext.declarative.__init__.py</code> no longer imports <code class="notranslate">as_declarative</code> in 0.9.9. Not a major problem for us, but seems likely to be a typo in the release, rather than an intentional change?</p> | 1 |
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=kdonald" rel="nofollow">Keith Donald</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-7973?redirect=false" rel="nofollow">SPR-7973</a></strong> and commented</p>
<p dir="auto">I found the following odd with <code class="notranslate">@ImportResource</code> usage:</p>
<ol dir="auto">
<li>
<p dir="auto">The <code class="notranslate">@ImportResource</code> ResourceLoader does not appear to be the same ResourceLoader as the ApplicationContext. I am using a AnnotationConfigWebApplicationContext, and I got classpath-relative resources by default.</p>
</li>
<li>
<p dir="auto">Configuration-class relative resource resolution does not work, and one might expect it to. For example, if I import <code class="notranslate">@ImportResource</code>("mvc-interceptors.xml") from the com.springsource.greenhouse.config.mvc package, I'd expect "mvc-interceptors.xml" to be in that package, and not the root of the classpath. Having to specify "com/springsource/greenhouse/config/mvc/mvc-interceptors.xml" is a lot more to type and feels strange.</p>
</li>
</ol>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.1 M1</p>
<p dir="auto"><strong>Attachments:</strong></p>
<ul dir="auto">
<li><a href="https://jira.spring.io/secure/attachment/17723/mylyn-context.zip" rel="nofollow">mylyn-context.zip</a> (<em>26.03 kB</em>)</li>
</ul>
<p dir="auto"><strong>Issue Links:</strong></p>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398110254" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/12630" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/12630/hovercard" href="https://github.com/spring-projects/spring-framework/issues/12630">#12630</a> Dependency injection not supported on <code class="notranslate">@FeatureConfiguration</code> classes</li>
</ul>
<p dir="auto"><strong>Referenced from:</strong> commits <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/spring-projects/spring-framework/commit/4cdb04ab25a91043ef51d52c916ef2684e98174b/hovercard" href="https://github.com/spring-projects/spring-framework/commit/4cdb04ab25a91043ef51d52c916ef2684e98174b"><tt>4cdb04a</tt></a></p> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=cbeams" rel="nofollow">Chris Beams</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-6310?redirect=false" rel="nofollow">SPR-6310</a></strong> and commented</p>
<p dir="auto">Much like Spring's TestContext framework and its <code class="notranslate">@ContextConfiguration</code> annotation, processing <code class="notranslate">@Configuration</code> classes should support relative paths and loading resources by convention when using <code class="notranslate">@ImportXml</code>:</p>
<ol dir="auto">
<li>Relative paths:</li>
</ol>
<div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="package com.biz.app;
@Configuration
@ImportResource("Foo.xml")
public class AppConfig { ... }"><pre class="notranslate"><span class="pl-k">package</span> <span class="pl-s1">com</span>.<span class="pl-s1">biz</span>.<span class="pl-s1">app</span>;
<span class="pl-c1">@</span><span class="pl-c1">Configuration</span>
<span class="pl-c1">@</span><span class="pl-c1">ImportResource</span>(<span class="pl-s">"Foo.xml"</span>)
<span class="pl-k">public</span> <span class="pl-k">class</span> <span class="pl-smi">AppConfig</span> { ... }</pre></div>
<p dir="auto">It is assumed that Foo.xml resides in <code class="notranslate">com.biz.app</code>, the same package in which <code class="notranslate">AppConfig</code> is declared.</p>
<ol dir="auto">
<li>Import by convention:</li>
</ol>
<div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="package com.biz.app;
@Configuration
@ImportResource
public class AppConfig { ... }"><pre class="notranslate"><span class="pl-k">package</span> <span class="pl-s1">com</span>.<span class="pl-s1">biz</span>.<span class="pl-s1">app</span>;
<span class="pl-c1">@</span><span class="pl-c1">Configuration</span>
<span class="pl-c1">@</span><span class="pl-c1">ImportResource</span>
<span class="pl-k">public</span> <span class="pl-k">class</span> <span class="pl-smi">AppConfig</span> { ... }</pre></div>
<p dir="auto">It is assumed that <code class="notranslate">classpath:/com/biz/app/AppConfig-context.xml</code> exists.</p>
<p dir="auto">See <code class="notranslate">testImportXmlWithRelativePath()</code> and <code class="notranslate">testImportXmlByConvention()</code>, which are both currently <code class="notranslate">@Ignore</code>'d in <code class="notranslate">org.springframework.context.annotation.configuration.ImportXmlTests</code>. See also TODO in <code class="notranslate">ConfigurationClassBeanDefinitionReader.loadBeanDefinitionsFromXml()</code></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="398097769" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/10826" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/10826/hovercard" href="https://github.com/spring-projects/spring-framework/issues/10826">#10826</a> Support <code class="notranslate">@ImportResource</code> within <code class="notranslate">@Configuration</code> classes (<em><strong>"depends on"</strong></em>)</li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398112416" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/13003" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/13003/hovercard" href="https://github.com/spring-projects/spring-framework/issues/13003">#13003</a> Relative imports in <code class="notranslate">@Configuration</code> classes</li>
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398099038" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/10993" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/10993/hovercard" href="https://github.com/spring-projects/spring-framework/issues/10993">#10993</a> Preserve 'reader' attribute in <code class="notranslate">@ImportResource</code> hierarchies</li>
</ul>
<p dir="auto"><strong>Referenced from:</strong> commits <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/spring-projects/spring-framework/commit/ae11387b4aa628c0834198c45cf733b6cd23f71d/hovercard" href="https://github.com/spring-projects/spring-framework/commit/ae11387b4aa628c0834198c45cf733b6cd23f71d"><tt>ae11387</tt></a></p>
<p dir="auto">1 votes, 3 watchers</p> | 1 |
<p dir="auto">Normally the columns in a row should float left in a row. When the row becomes to small for wrapping the columns, the columns should stack below and float again. Why is my last column not stacking in the small screen size (sm). Instead it floats also to the left on the first row of columns and dissapears behind the other, so it is not visible anymore. This is only with the class col-sm-12.</p>
<p dir="auto">Now I solved it with col-sm-11 and that is stacking properly, but it is not what it should have been.</p> | <p dir="auto">The probleme occurs when viewing this frgment of page on a small screen : the "heading 1.1" and "heading 1.2" blocks are not displayed.</p>
<p dir="auto">I am using Bootstrap 3.0.0, chrome 29.0.1547.57 on Linux.<br>
In this example, i am not using any CSS or Javascript files except bootstrap.min.css, jquery-1.10.2.min.js and bootstrap.min.js.</p>
<p dir="auto">You can also see it here : <a href="http://jsfiddle.net/tFHCY/" rel="nofollow">http://jsfiddle.net/tFHCY/</a></p>
<p dir="auto">Here is the HTML code :</p>
<div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="<section class="row">
<section class="col-lg-3 col-xs-6">
<div style="background-color:#CE45FF" class="heading">
<h2>Heading 2.1</h2>
<p>Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis euismod. Donec sed odio dui. </p>
<p><a class="btn btn-default" href="#">View details &raquo;</a></p>
</div>
</section>
<section class="col-lg-3 col-xs-6">
<div style="background-color:#DDBBFF" class="heading">
<h2>Heading 2.2</h2>
<p>Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis euismod. Donec sed odio dui. </p>
<p><a class="btn btn-default" href="#">View details &raquo;</a></p>
</div>
</section>
<section class="col-lg-6 col-xs-12">
<div style="background-color:#CDE9FF" class="heading">
<h2>Heading 2.3</h2>
<p>Donec sed odio dui. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Vestibulum id ligula porta felis euismod semper. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.</p>
<p><a class="btn btn-default" href="#">View details &raquo;</a></p>
</div>
</section>
</section>"><pre class="notranslate"><span class="pl-kos"><</span><span class="pl-ent">section</span> <span class="pl-c1">class</span>="<span class="pl-s">row</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">section</span> <span class="pl-c1">class</span>="<span class="pl-s">col-lg-3 col-xs-6</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">div</span> <span class="pl-c1">style</span>="<span class="pl-s">background-color:#CE45FF</span>" <span class="pl-c1">class</span>="<span class="pl-s">heading</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">h2</span><span class="pl-kos">></span>Heading 2.1<span class="pl-kos"></</span><span class="pl-ent">h2</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">p</span><span class="pl-kos">></span>Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis euismod. Donec sed odio dui. <span class="pl-kos"></</span><span class="pl-ent">p</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">p</span><span class="pl-kos">></span><span class="pl-kos"><</span><span class="pl-ent">a</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default</span>" <span class="pl-c1">href</span>="<span class="pl-s">#</span>"<span class="pl-kos">></span>View details &raquo;<span class="pl-kos"></</span><span class="pl-ent">a</span><span class="pl-kos">></span><span class="pl-kos"></</span><span class="pl-ent">p</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">div</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">section</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">section</span> <span class="pl-c1">class</span>="<span class="pl-s">col-lg-3 col-xs-6</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">div</span> <span class="pl-c1">style</span>="<span class="pl-s">background-color:#DDBBFF</span>" <span class="pl-c1">class</span>="<span class="pl-s">heading</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">h2</span><span class="pl-kos">></span>Heading 2.2<span class="pl-kos"></</span><span class="pl-ent">h2</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">p</span><span class="pl-kos">></span>Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis euismod. Donec sed odio dui. <span class="pl-kos"></</span><span class="pl-ent">p</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">p</span><span class="pl-kos">></span><span class="pl-kos"><</span><span class="pl-ent">a</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default</span>" <span class="pl-c1">href</span>="<span class="pl-s">#</span>"<span class="pl-kos">></span>View details &raquo;<span class="pl-kos"></</span><span class="pl-ent">a</span><span class="pl-kos">></span><span class="pl-kos"></</span><span class="pl-ent">p</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">div</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">section</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">section</span> <span class="pl-c1">class</span>="<span class="pl-s">col-lg-6 col-xs-12</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">div</span> <span class="pl-c1">style</span>="<span class="pl-s">background-color:#CDE9FF</span>" <span class="pl-c1">class</span>="<span class="pl-s">heading</span>"<span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">h2</span><span class="pl-kos">></span>Heading 2.3<span class="pl-kos"></</span><span class="pl-ent">h2</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">p</span><span class="pl-kos">></span>Donec sed odio dui. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Vestibulum id ligula porta felis euismod semper. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.<span class="pl-kos"></</span><span class="pl-ent">p</span><span class="pl-kos">></span>
<span class="pl-kos"><</span><span class="pl-ent">p</span><span class="pl-kos">></span><span class="pl-kos"><</span><span class="pl-ent">a</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default</span>" <span class="pl-c1">href</span>="<span class="pl-s">#</span>"<span class="pl-kos">></span>View details &raquo;<span class="pl-kos"></</span><span class="pl-ent">a</span><span class="pl-kos">></span><span class="pl-kos"></</span><span class="pl-ent">p</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">div</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">section</span><span class="pl-kos">></span>
<span class="pl-kos"></</span><span class="pl-ent">section</span><span class="pl-kos">></span></pre></div>
<p dir="auto">Screenshot simulating an xs screen size :</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/2bc4f32cfe7408b6a1b9dcf02629799e533ca789011d8e9cd66dcd885243b85b/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f353332323131342f313033353436362f36376337656237612d306632622d313165332d386239302d3537363539323131633663332e706e67"><img src="https://camo.githubusercontent.com/2bc4f32cfe7408b6a1b9dcf02629799e533ca789011d8e9cd66dcd885243b85b/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f353332323131342f313033353436362f36376337656237612d306632622d313165332d386239302d3537363539323131633663332e706e67" alt="bootstrap-hidden-columns" data-canonical-src="https://f.cloud.github.com/assets/5322114/1035466/67c7eb7a-0f2b-11e3-8b90-57659211c6c3.png" style="max-width: 100%;"></a></p>
<p dir="auto">Thanks,<br>
Yann scheydeker</p> | 1 |
<p dir="auto">If you go to preferences, open the Install page, enter something into the search form, then a list of packages will show up. Their titles will be styled as links, but clicking on the titles of uninstalled packages does nothing. (I'd expect it to go to a page about that package, or at least open the package's page on atom.io in a browser window.) Clicking the title of an installed package brings you to an atom page for the package that gives you more info about the package.</p>
<p dir="auto">Atom 0.170.0 on OS X</p> | <p dir="auto"><em>From <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/gfarrell/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gfarrell">@gfarrell</a> on January 9, 2015 12:14</em></p>
<p dir="auto">When trying to find out more about a package, in the <em>Install</em> view of the <em>Settings</em> page in Atom <code class="notranslate">0.169.0</code>, clicking the title does nothing, but clicking the author opens the author page in a browser.</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="53862048" data-permission-text="Title is private" data-url="https://github.com/atom/atom/issues/4947" data-hovercard-type="issue" data-hovercard-url="/atom/atom/issues/4947/hovercard" href="https://github.com/atom/atom/issues/4947">atom/atom#4947</a></em></p> | 1 |
<p dir="auto">Greetings and congrats again for this amazingly well documented library, I'm happy Twitter made me discover this !</p>
<p dir="auto">So I decided to dive a little bit into it, and I was in particular interested in the Starlette DatabaseMiddleware.</p>
<p dir="auto">I then cloned the related <a href="https://github.com/encode/starlette/blob/master/tests/test_database.py">test</a> in Starlette and reworked it using FastAPI here: <a href="https://github.com/euri10/fastapi/blob/dbmiddleware/tests/test_dbmiddleware.py">https://github.com/euri10/fastapi/blob/dbmiddleware/tests/test_dbmiddleware.py</a></p>
<p dir="auto">so in this test we got:</p>
<ul dir="auto">
<li>
<p dir="auto">one starlette instance of Starlette <a href="https://github.com/euri10/fastapi/blob/7b42e4d25383e33dcb4445aa657a2e5e3d9cb855/tests/test_dbmiddleware.py#L35"><code class="notranslate">starlette=Starlette()</code></a> that makes the very same tests as in the test_database mentionned aboveand</p>
</li>
<li>
<p dir="auto">one fastapi instance of FastAPI <a href="https://github.com/euri10/fastapi/blob/7b42e4d25383e33dcb4445aa657a2e5e3d9cb855/tests/test_dbmiddleware.py#L40"><code class="notranslate">fastapi=FastAPI()</code></a>, whose routes have been adapted by me to take the new "framework" into account (mainly switching to app.get and app.post instead of app.route, making use of pydantic models etc,....)</p>
</li>
</ul>
<p dir="auto">Each instance is tested separately in a class, namely <a href="https://github.com/euri10/fastapi/blob/7b42e4d25383e33dcb4445aa657a2e5e3d9cb855/tests/test_dbmiddleware.py#L192">class TestStarletteStyle():</a> and <a href="https://github.com/euri10/fastapi/blob/7b42e4d25383e33dcb4445aa657a2e5e3d9cb855/tests/test_dbmiddleware.py#L270">class TestFastAPIStyle():</a></p>
<p dir="auto">Obviously TestStarletteStyle passes like in the original file.<br>
Interestingly if you change <code class="notranslate">starlette=Starlette()</code> to <code class="notranslate">starlette=FastAPI()</code> TestStarletteStyle passes also, which makes sense since if I got it correctly a <code class="notranslate">fastapi.post</code> is the same as a <code class="notranslate">fastapi.route, methods=["POST"]</code></p>
<p dir="auto">However <code class="notranslate">TestFastAPIStyle</code> fails at various points, all tests fails but not all asserts:</p>
<ul dir="auto">
<li>fails <a href="https://github.com/euri10/fastapi/blob/7b42e4d25383e33dcb4445aa657a2e5e3d9cb855/tests/test_dbmiddleware.py#L293-L295">here</a> as while the previous RuntimeError has been raised, the entry has been put in the database, while in the TestStarletteStyle the RuntimeError prevented this, is seems related to the rollback_on_shutdown=True that would not have been taken into account if i understand correctly, but take this with caution I'm brand new to your code and starlette's one.</li>
<li>fails <a href="https://github.com/euri10/fastapi/blob/7b42e4d25383e33dcb4445aa657a2e5e3d9cb855/tests/test_dbmiddleware.py#L317-L319">here</a> too, and looking at what we got in db (5 entries instead of 2 in the test) it seems also related to a rollback not made.</li>
<li>finally fails <a href="https://github.com/euri10/fastapi/blob/7b42e4d25383e33dcb4445aa657a2e5e3d9cb855/tests/test_dbmiddleware.py#L335">here</a> too, and we got 6 entries in db instead of 1 tested, same intuition.</li>
</ul>
<p dir="auto">So there's seem to be something incorrect with the rollback setting, happy to dig further but you surely have ideas, if making a PR with my failing branch is ok let me know</p> | <h3 dir="auto">First check</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I added a very descriptive title to this issue.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I used the GitHub search to find a similar issue and didn't find it.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I searched the FastAPI documentation, with the integrated search.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already searched in Google "How to X in FastAPI" and didn't find any information.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already read and followed all the tutorial in the docs and didn't find an answer.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already checked if it is not related to FastAPI but to <a href="https://github.com/samuelcolvin/pydantic">Pydantic</a>.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already checked if it is not related to FastAPI but to <a href="https://github.com/swagger-api/swagger-ui">Swagger UI</a>.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already checked if it is not related to FastAPI but to <a href="https://github.com/Redocly/redoc">ReDoc</a>.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> After submitting this, I commit to one of:
<ul dir="auto">
<li>Read open issues with questions until I find 2 issues where I can help someone and add a comment to help there.</li>
<li>I already hit the "watch" button in this repository to receive notifications and I commit to help at least 2 people that ask questions in the future.</li>
<li>Implement a Pull Request for a confirmed bug.</li>
</ul>
</li>
</ul>
<h3 dir="auto">Example</h3>
<p dir="auto">Here's a self-contained, <a href="https://stackoverflow.com/help/minimal-reproducible-example" rel="nofollow">minimal, reproducible, example</a> with my use case:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from typing import List, Optional
from fastapi import FastAPI, Header
app = FastAPI()
@app.get("/items/")
async def read_items(x_token: Optional[List[str]] = Header(None)):
return {"X-Token values": x_token}"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">typing</span> <span class="pl-k">import</span> <span class="pl-v">List</span>, <span class="pl-v">Optional</span>
<span class="pl-k">from</span> <span class="pl-s1">fastapi</span> <span class="pl-k">import</span> <span class="pl-v">FastAPI</span>, <span class="pl-v">Header</span>
<span class="pl-s1">app</span> <span class="pl-c1">=</span> <span class="pl-v">FastAPI</span>()
<span class="pl-en">@<span class="pl-s1">app</span>.<span class="pl-en">get</span>(<span class="pl-s">"/items/"</span>)</span>
<span class="pl-k">async</span> <span class="pl-k">def</span> <span class="pl-en">read_items</span>(<span class="pl-s1">x_token</span>: <span class="pl-v">Optional</span>[<span class="pl-v">List</span>[<span class="pl-s1">str</span>]] <span class="pl-c1">=</span> <span class="pl-v">Header</span>(<span class="pl-c1">None</span>)):
<span class="pl-k">return</span> {<span class="pl-s">"X-Token values"</span>: <span class="pl-s1">x_token</span>}</pre></div>
<h3 dir="auto">Description</h3>
<ul dir="auto">
<li>What I did with HTTPie(and same as what Swagger did with curl):</li>
</ul>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ http -v :8000/items/ X-Token:first,second
GET /items/ HTTP/1.1
Accept: */*
Accept-Encoding: gzip, deflate
Connection: keep-alive
Host: localhost:8000
User-Agent: HTTPie/2.3.0
X-Token: first,second"><pre class="notranslate">$ http -v :8000/items/ X-Token:first,second
GET /items/ HTTP/1.1
Accept: <span class="pl-k">*</span>/<span class="pl-k">*</span>
Accept-Encoding: gzip, deflate
Connection: keep-alive
Host: localhost:8000
User-Agent: HTTPie/2.3.0
X-Token: first,second</pre></div>
<ul dir="auto">
<li>It returns a JSON with</li>
</ul>
<div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{
"X-Token values": [
"first,second"
]
}"><pre class="notranslate">{
<span class="pl-ent">"X-Token values"</span>: [
<span class="pl-s"><span class="pl-pds">"</span>first,second<span class="pl-pds">"</span></span>
]
}</pre></div>
<ul dir="auto">
<li>But I expected it to return:</li>
</ul>
<div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{
"X-Token values": [
"first",
"second"
]
}"><pre class="notranslate">{
<span class="pl-ent">"X-Token values"</span>: [
<span class="pl-s"><span class="pl-pds">"</span>first<span class="pl-pds">"</span></span>,
<span class="pl-s"><span class="pl-pds">"</span>second<span class="pl-pds">"</span></span>
]
}</pre></div>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>OS: macOS 11.2.3</li>
<li>FastAPI Version: 0.63.0</li>
<li>Python version: 3.9.4</li>
</ul>
<h3 dir="auto">Additional context</h3>
<p dir="auto">From <a href="https://fastapi.tiangolo.com/tutorial/header-params/#duplicate-headers" rel="nofollow">Header Parameters docs</a>, it said FastAPI can receive multiple values for a single header. However, It's not working properly. Thus, I had to pop it and split it with <code class="notranslate">,</code>.</p>
<p dir="auto">It's not a big deal, but I think the official doc must have reliability. Frankly, I'm confused this is a bug or a feature...</p> | 0 |
<p dir="auto">Error while compiling <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/rust-windowing/glutin/commit/7154ea5/hovercard" href="https://github.com/rust-windowing/glutin/commit/7154ea5">rust-windowing/glutin@<tt>7154ea5</tt></a> on OS X Yosemite:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ RUST_BACKTRACE=1 cargo build --verbose
[...dependency updates...]
Compiling glutin v0.0.6 (file:///path/to/glutin)
[...various warnings...]
/Users/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-mac/build/src/libstd/sync/mutex.rs:177:37: 180:2 error: internal compiler error: debuginfo: Could not find scope info for node NodeExpr(Expr { id: 20967, node: ExprStruct(Path { span: Span { lo: BytePos(4847499), hi: BytePos(4847510), expn_id: ExpnId(4294967295) }, global: false, segments: [PathSegment { identifier: StaticMutex#0, parameters: AngleBracketedParameters(AngleBracketedParameterData { lifetimes: [], types: [], bindings: [] }) }] }, [Field { ident: Spanned { node: lock#0, span: Span { lo: BytePos(1770102), hi: BytePos(1770106), expn_id: ExpnId(4294967295) } }, expr: Expr { id: 20968, node: ExprPath(None, Path { span: Span { lo: BytePos(4847523), hi: BytePos(4847538), expn_id: ExpnId(4294967295) }, global: false, segments: [PathSegment { identifier: sys#0, parameters: AngleBracketedParameters(AngleBracketedParameterData { lifetimes: [], types: [], bindings: [] }) }, PathSegment { identifier: MUTEX_INIT#0, parameters: AngleBracketedParameters(AngleBracketedParameterData { lifetimes: [], types: [], bindings: [] }) }] }), span: Span { lo: BytePos(4847523), hi: BytePos(4847538), expn_id: ExpnId(4294967295) } }, span: Span { lo: BytePos(4847517), hi: BytePos(4847538), expn_id: ExpnId(4294967295) } }, Field { ident: Spanned { node: poison#0, span: Span { lo: BytePos(1770129), hi: BytePos(1770135), expn_id: ExpnId(4294967295) } }, expr: Expr { id: 20969, node: ExprPath(None, Path { span: Span { lo: BytePos(4847552), hi: BytePos(4847569), expn_id: ExpnId(4294967295) }, global: false, segments: [PathSegment { identifier: poison#0, parameters: AngleBracketedParameters(AngleBracketedParameterData { lifetimes: [], types: [], bindings: [] }) }, PathSegment { identifier: FLAG_INIT#0, parameters: AngleBracketedParameters(AngleBracketedParameterData { lifetimes: [], types: [], bindings: [] }) }] }), span: Span { lo: BytePos(4847552), hi: BytePos(4847569), expn_id: ExpnId(4294967295) } }, span: Span { lo: BytePos(4847544), hi: BytePos(4847569), expn_id: ExpnId(4294967295) } }], None), span: Span { lo: BytePos(4847499), hi: BytePos(4847572), expn_id: ExpnId(4294967295) } })
note: the compiler unexpectedly panicked. this is a bug.
note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
note: run with `RUST_BACKTRACE=1` for a backtrace
thread 'rustc' panicked at 'Box<Any>', /Users/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-mac/build/src/libsyntax/diagnostic.rs:129
stack backtrace:
1: 0x111897b52 - sys::backtrace::write::h6b0889bc971c1ad3IDA
2: 0x1118c6844 - panicking::on_panic::h0fcd1d74630df38dKsJ
3: 0x1117e4c67 - rt::unwind::begin_unwind_inner::h56b969a14fc61916gbJ
4: 0x110f6b95e - rt::unwind::begin_unwind::h7097931347514503270
5: 0x110f6b90b - diagnostic::SpanHandler::span_bug::hd809ae68b3d05ee6h0D
6: 0x10e73ed7c - session::Session::span_bug::h5bc4aa3cff230a98ISp
7: 0x10e467134 - trans::debuginfo::scope_metadata::hbc8249b53299cdbdSjE
8: 0x10e371fb9 - trans::debuginfo::set_source_location::h27a07f90a8aeec578MD
9: 0x10e323925 - trans::expr::trans_into::h4a29f680db4b3526znh
10: 0x10e323c45 - trans::expr::trans_into::h4a29f680db4b3526znh
11: 0x10e38a2c0 - trans::expr::trans_uniq_expr::h9953b7ba5686a321ukj
12: 0x10e38b053 - trans::expr::trans_unary::h112ae451f6aff215Jgj
13: 0x10e3746fc - trans::expr::trans_unadjusted::h66feeb4ce59b408dz4h
14: 0x10e323f79 - trans::expr::trans_into::h4a29f680db4b3526znh
15: 0x10e3a9220 - trans::expr::trans_adt::h73a11f7497464a42O6i
16: 0x10e3abd52 - trans::expr::trans_struct::closure.42052
17: 0x10e3953cb - trans::expr::trans_struct::h4294120fb3439252K2i
18: 0x10e3766be - trans::expr::trans_rvalue_dps_unadjusted::hca2c07ae951484c14zi
19: 0x10e323f59 - trans::expr::trans_into::h4a29f680db4b3526znh
20: 0x10e324e29 - trans::controlflow::trans_block::h26a308528bb95051b5d
21: 0x10e403da9 - trans::base::trans_closure::h1e78b4450eb13a03Kkt
22: 0x10e30c645 - trans::base::trans_fn::h31c9353b85ff9dd9Dvt
23: 0x10e30e1c3 - trans::monomorphize::monomorphic_fn::h8c4abbed98c102adusd
24: 0x10e35658b - trans::callee::trans_fn_ref_with_substs::heb22ab8904f67bf64kg
25: 0x10e354b0e - trans::callee::trans_fn_ref::hb2be9d8aec49d9c4E9f
26: 0x10e3521d0 - trans::callee::trans::ha12ccf10898e9b03VYf
27: 0x10e36924d - trans::callee::trans_call_inner::h11221320451677754653
28: 0x10e376bec - trans::expr::trans_rvalue_dps_unadjusted::hca2c07ae951484c14zi
29: 0x10e323f59 - trans::expr::trans_into::h4a29f680db4b3526znh
30: 0x10e3a9220 - trans::expr::trans_adt::h73a11f7497464a42O6i
31: 0x10e3abd52 - trans::expr::trans_struct::closure.42052
32: 0x10e3953cb - trans::expr::trans_struct::h4294120fb3439252K2i
33: 0x10e3766be - trans::expr::trans_rvalue_dps_unadjusted::hca2c07ae951484c14zi
34: 0x10e323f59 - trans::expr::trans_into::h4a29f680db4b3526znh
35: 0x10e43dd26 - trans::_match::mk_binding_alloca::h3448676421097350985
36: 0x10e323280 - trans::base::init_local::h08a9fcff749ad013czs
37: 0x10e324b02 - trans::controlflow::trans_block::h26a308528bb95051b5d
38: 0x10e403da9 - trans::base::trans_closure::h1e78b4450eb13a03Kkt
39: 0x10e30c645 - trans::base::trans_fn::h31c9353b85ff9dd9Dvt
40: 0x10e308aa6 - trans::base::trans_item::h8ce277cc13b040a3vTt
41: 0x10e3088a7 - trans::base::trans_item::h8ce277cc13b040a3vTt
42: 0x10e40cecb - trans::base::trans_crate::hb69c466e59630a14GPu
43: 0x10dd3fec7 - driver::phase_4_translate_to_llvm::he4e045cdc3897b4crNa
44: 0x10dd1b7f2 - driver::compile_input::h25d96a14ec26932cIba
45: 0x10dded72e - run_compiler::h15c3ea085a111a6fH5b
46: 0x10ddeaac7 - thunk::F.Invoke<A, R>::invoke::h11905936354613679413
47: 0x10dde960f - rt::unwind::try::try_fn::h4025213131938170097
48: 0x111943628 - rust_try_inner
49: 0x111943615 - rust_try
50: 0x10dde9e48 - thunk::F.Invoke<A, R>::invoke::h13725635537516470714
51: 0x1118af0a2 - sys::thread::thread_start::h1120d6d2e105321012E
52: 0x7fff9557e267 - _pthread_body
53: 0x7fff9557e1e4 - _pthread_start
Could not compile `glutin`.
Caused by:
Process didn't exit successfully: `rustc src/lib.rs --crate-name glutin --crate-type lib -g --cfg feature="default" --cfg feature="window" -C metadata=6425255afb8a758e -C extra-filename=-6425255afb8a758e --out-dir /path/to/glutin/target --emit=dep-info,link -L dependency=/path/to/glutin/target -L dependency=/path/to/glutin/target/deps --extern core_foundation=/path/to/glutin/target/deps/libcore_foundation-df9d60bb8553a7f7.rlib --extern gl_common=/path/to/glutin/target/deps/libgl_common-ec39142a57c733b7.rlib --extern cocoa=/path/to/glutin/target/deps/libcocoa-0ab2cb870a6d387c.rlib --extern libc=/path/to/glutin/target/deps/liblibc-8d21de95f4de7169.rlib --extern core_graphics=/path/to/glutin/target/deps/libcore_graphics-2ddc84c21f1f2a32.rlib` (exit"><pre class="notranslate">$ RUST_BACKTRACE=1 cargo build --verbose
[...dependency updates...]
Compiling glutin v0.0.6 (file:///path/to/glutin)
[...various warnings...]
/Users/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-mac/build/src/libstd/sync/mutex.rs:177:37: 180:2 error: internal compiler error: debuginfo: Could not find scope info for node NodeExpr(Expr { id: 20967, node: ExprStruct(Path { span: Span { lo: BytePos(4847499), hi: BytePos(4847510), expn_id: ExpnId(4294967295) }, global: false, segments: [PathSegment { identifier: StaticMutex#0, parameters: AngleBracketedParameters(AngleBracketedParameterData { lifetimes: [], types: [], bindings: [] }) }] }, [Field { ident: Spanned { node: lock#0, span: Span { lo: BytePos(1770102), hi: BytePos(1770106), expn_id: ExpnId(4294967295) } }, expr: Expr { id: 20968, node: ExprPath(None, Path { span: Span { lo: BytePos(4847523), hi: BytePos(4847538), expn_id: ExpnId(4294967295) }, global: false, segments: [PathSegment { identifier: sys#0, parameters: AngleBracketedParameters(AngleBracketedParameterData { lifetimes: [], types: [], bindings: [] }) }, PathSegment { identifier: MUTEX_INIT#0, parameters: AngleBracketedParameters(AngleBracketedParameterData { lifetimes: [], types: [], bindings: [] }) }] }), span: Span { lo: BytePos(4847523), hi: BytePos(4847538), expn_id: ExpnId(4294967295) } }, span: Span { lo: BytePos(4847517), hi: BytePos(4847538), expn_id: ExpnId(4294967295) } }, Field { ident: Spanned { node: poison#0, span: Span { lo: BytePos(1770129), hi: BytePos(1770135), expn_id: ExpnId(4294967295) } }, expr: Expr { id: 20969, node: ExprPath(None, Path { span: Span { lo: BytePos(4847552), hi: BytePos(4847569), expn_id: ExpnId(4294967295) }, global: false, segments: [PathSegment { identifier: poison#0, parameters: AngleBracketedParameters(AngleBracketedParameterData { lifetimes: [], types: [], bindings: [] }) }, PathSegment { identifier: FLAG_INIT#0, parameters: AngleBracketedParameters(AngleBracketedParameterData { lifetimes: [], types: [], bindings: [] }) }] }), span: Span { lo: BytePos(4847552), hi: BytePos(4847569), expn_id: ExpnId(4294967295) } }, span: Span { lo: BytePos(4847544), hi: BytePos(4847569), expn_id: ExpnId(4294967295) } }], None), span: Span { lo: BytePos(4847499), hi: BytePos(4847572), expn_id: ExpnId(4294967295) } })
note: the compiler unexpectedly panicked. this is a bug.
note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
note: run with <span class="pl-s"><span class="pl-pds">`</span>RUST_BACKTRACE=1<span class="pl-pds">`</span></span> <span class="pl-k">for</span> a backtrace
thread <span class="pl-s"><span class="pl-pds">'</span>rustc<span class="pl-pds">'</span></span> panicked at <span class="pl-s"><span class="pl-pds">'</span>Box<Any><span class="pl-pds">'</span></span>, /Users/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-mac/build/src/libsyntax/diagnostic.rs:129
stack backtrace:
1: 0x111897b52 - sys::backtrace::write::h6b0889bc971c1ad3IDA
2: 0x1118c6844 - panicking::on_panic::h0fcd1d74630df38dKsJ
3: 0x1117e4c67 - rt::unwind::begin_unwind_inner::h56b969a14fc61916gbJ
4: 0x110f6b95e - rt::unwind::begin_unwind::h7097931347514503270
5: 0x110f6b90b - diagnostic::SpanHandler::span_bug::hd809ae68b3d05ee6h0D
6: 0x10e73ed7c - session::Session::span_bug::h5bc4aa3cff230a98ISp
7: 0x10e467134 - trans::debuginfo::scope_metadata::hbc8249b53299cdbdSjE
8: 0x10e371fb9 - trans::debuginfo::set_source_location::h27a07f90a8aeec578MD
9: 0x10e323925 - trans::expr::trans_into::h4a29f680db4b3526znh
10: 0x10e323c45 - trans::expr::trans_into::h4a29f680db4b3526znh
11: 0x10e38a2c0 - trans::expr::trans_uniq_expr::h9953b7ba5686a321ukj
12: 0x10e38b053 - trans::expr::trans_unary::h112ae451f6aff215Jgj
13: 0x10e3746fc - trans::expr::trans_unadjusted::h66feeb4ce59b408dz4h
14: 0x10e323f79 - trans::expr::trans_into::h4a29f680db4b3526znh
15: 0x10e3a9220 - trans::expr::trans_adt::h73a11f7497464a42O6i
16: 0x10e3abd52 - trans::expr::trans_struct::closure.42052
17: 0x10e3953cb - trans::expr::trans_struct::h4294120fb3439252K2i
18: 0x10e3766be - trans::expr::trans_rvalue_dps_unadjusted::hca2c07ae951484c14zi
19: 0x10e323f59 - trans::expr::trans_into::h4a29f680db4b3526znh
20: 0x10e324e29 - trans::controlflow::trans_block::h26a308528bb95051b5d
21: 0x10e403da9 - trans::base::trans_closure::h1e78b4450eb13a03Kkt
22: 0x10e30c645 - trans::base::trans_fn::h31c9353b85ff9dd9Dvt
23: 0x10e30e1c3 - trans::monomorphize::monomorphic_fn::h8c4abbed98c102adusd
24: 0x10e35658b - trans::callee::trans_fn_ref_with_substs::heb22ab8904f67bf64kg
25: 0x10e354b0e - trans::callee::trans_fn_ref::hb2be9d8aec49d9c4E9f
26: 0x10e3521d0 - trans::callee::trans::ha12ccf10898e9b03VYf
27: 0x10e36924d - trans::callee::trans_call_inner::h11221320451677754653
28: 0x10e376bec - trans::expr::trans_rvalue_dps_unadjusted::hca2c07ae951484c14zi
29: 0x10e323f59 - trans::expr::trans_into::h4a29f680db4b3526znh
30: 0x10e3a9220 - trans::expr::trans_adt::h73a11f7497464a42O6i
31: 0x10e3abd52 - trans::expr::trans_struct::closure.42052
32: 0x10e3953cb - trans::expr::trans_struct::h4294120fb3439252K2i
33: 0x10e3766be - trans::expr::trans_rvalue_dps_unadjusted::hca2c07ae951484c14zi
34: 0x10e323f59 - trans::expr::trans_into::h4a29f680db4b3526znh
35: 0x10e43dd26 - trans::_match::mk_binding_alloca::h3448676421097350985
36: 0x10e323280 - trans::base::init_local::h08a9fcff749ad013czs
37: 0x10e324b02 - trans::controlflow::trans_block::h26a308528bb95051b5d
38: 0x10e403da9 - trans::base::trans_closure::h1e78b4450eb13a03Kkt
39: 0x10e30c645 - trans::base::trans_fn::h31c9353b85ff9dd9Dvt
40: 0x10e308aa6 - trans::base::trans_item::h8ce277cc13b040a3vTt
41: 0x10e3088a7 - trans::base::trans_item::h8ce277cc13b040a3vTt
42: 0x10e40cecb - trans::base::trans_crate::hb69c466e59630a14GPu
43: 0x10dd3fec7 - driver::phase_4_translate_to_llvm::he4e045cdc3897b4crNa
44: 0x10dd1b7f2 - driver::compile_input::h25d96a14ec26932cIba
45: 0x10dded72e - run_compiler::h15c3ea085a111a6fH5b
46: 0x10ddeaac7 - thunk::F.Invoke<span class="pl-k"><</span>A, R<span class="pl-k">></span>::invoke::h11905936354613679413
47: 0x10dde960f - rt::unwind::try::try_fn::h4025213131938170097
48: 0x111943628 - rust_try_inner
49: 0x111943615 - rust_try
50: 0x10dde9e48 - thunk::F.Invoke<span class="pl-k"><</span>A, R<span class="pl-k">></span>::invoke::h13725635537516470714
51: 0x1118af0a2 - sys::thread::thread_start::h1120d6d2e105321012E
52: 0x7fff9557e267 - _pthread_body
53: 0x7fff9557e1e4 - _pthread_start
Could not compile <span class="pl-s"><span class="pl-pds">`</span>glutin<span class="pl-pds">`</span></span>.
Caused by:
Process didn<span class="pl-s"><span class="pl-pds">'</span>t exit successfully: `rustc src/lib.rs --crate-name glutin --crate-type lib -g --cfg feature="default" --cfg feature="window" -C metadata=6425255afb8a758e -C extra-filename=-6425255afb8a758e --out-dir /path/to/glutin/target --emit=dep-info,link -L dependency=/path/to/glutin/target -L dependency=/path/to/glutin/target/deps --extern core_foundation=/path/to/glutin/target/deps/libcore_foundation-df9d60bb8553a7f7.rlib --extern gl_common=/path/to/glutin/target/deps/libgl_common-ec39142a57c733b7.rlib --extern cocoa=/path/to/glutin/target/deps/libcocoa-0ab2cb870a6d387c.rlib --extern libc=/path/to/glutin/target/deps/liblibc-8d21de95f4de7169.rlib --extern core_graphics=/path/to/glutin/target/deps/libcore_graphics-2ddc84c21f1f2a32.rlib` (exit</span></pre></div>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ rustc --version --verbose
rustc 1.0.0-nightly (3b3bb0e68 2015-03-04) (built 2015-03-04)
binary: rustc
commit-hash: 3b3bb0e682c2d252e9f62dd9df5cff9552af91ad
commit-date: 2015-03-04
build-date: 2015-03-04
host: x86_64-apple-darwin
release: 1.0.0-nightly"><pre class="notranslate">$ rustc --version --verbose
rustc 1.0.0-nightly (3b3bb0e68 2015-03-04) (built 2015-03-04)
binary: rustc
commit-hash: 3b3bb0e682c2d252e9f62dd9df5cff9552af91ad
commit-date: 2015-03-04
build-date: 2015-03-04
host: x86_64-apple-darwin
release: 1.0.0-nightly</pre></div> | <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="ββmindcat@mindcat-linux-pc ~/workspace/nekoneko βΉmaster*βΊ
β°ββ€ RUST_BACKTRACE=1 RUST_LOG=nekoneko cargo build
Compiling env_logger v0.2.2 (https://github.com/rust-lang/log#e78b7368)
/home/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-linux/build/src/libstd/sync/mutex.rs:177:37: 180:2 error: internal compiler error: debuginfo: Could not find scope info for node NodeExpr(Expr { id: 8309, node: ExprStruct(Path { span: Span { lo: BytePos(4566650), hi: BytePos(4566661), expn_id: ExpnId(4294967295) }, global: false, segments: [PathSegment { identifier: StaticMutex#0, parameters: AngleBracketedParameters(AngleBracketedParameterData { lifetimes: [], types: [], bindings: [] }) }] }, [Field { ident: Spanned { node: lock#0, span: Span { lo: BytePos(1770102), hi: BytePos(1770106), expn_id: ExpnId(4294967295) } }, expr: Expr { id: 8310, node: ExprPath(None, Path { span: Span { lo: BytePos(4566674), hi: BytePos(4566689), expn_id: ExpnId(4294967295) }, global: false, segments: [PathSegment { identifier: sys#0, parameters: AngleBracketedParameters(AngleBracketedParameterData { lifetimes: [], types: [], bindings: [] }) }, PathSegment { identifier: MUTEX_INIT#0, parameters: AngleBracketedParameters(AngleBracketedParameterData { lifetimes: [], types: [], bindings: [] }) }] }), span: Span { lo: BytePos(4566674), hi: BytePos(4566689), expn_id: ExpnId(4294967295) } }, span: Span { lo: BytePos(4566668), hi: BytePos(4566689), expn_id: ExpnId(4294967295) } }, Field { ident: Spanned { node: poison#0, span: Span { lo: BytePos(1770129), hi: BytePos(1770135), expn_id: ExpnId(4294967295) } }, expr: Expr { id: 8311, node: ExprPath(None, Path { span: Span { lo: BytePos(4566703), hi: BytePos(4566720), expn_id: ExpnId(4294967295) }, global: false, segments: [PathSegment { identifier: poison#0, parameters: AngleBracketedParameters(AngleBracketedParameterData { lifetimes: [], types: [], bindings: [] }) }, PathSegment { identifier: FLAG_INIT#0, parameters: AngleBracketedParameters(AngleBracketedParameterData { lifetimes: [], types: [], bindings: [] }) }] }), span: Span { lo: BytePos(4566703), hi: BytePos(4566720), expn_id: ExpnId(4294967295) } }, span: Span { lo: BytePos(4566695), hi: BytePos(4566720), expn_id: ExpnId(4294967295) } }], None), span: Span { lo: BytePos(4566650), hi: BytePos(4566723), expn_id: ExpnId(4294967295) } })
note: the compiler unexpectedly panicked. this is a bug.
note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
note: run with `RUST_BACKTRACE=1` for a backtrace
thread 'rustc' panicked at 'Box<Any>', /home/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-linux/build/src/libsyntax/diagnostic.rs:129
stack backtrace:
1: 0x7fa61c039f1f - sys::backtrace::write::hf79a3da4fdecb8a0OBA
2: 0x7fa61c064c32 - panicking::on_panic::h9f64f4c69e19f194hHJ
3: 0x7fa61bf99eda - rt::unwind::begin_unwind_inner::h37f4496c980fe936knJ
4: 0x7fa6193ecabd - rt::unwind::begin_unwind::h8320268356453106285
5: 0x7fa6193eca63 - diagnostic::SpanHandler::span_bug::h83c8af232eaba6a9h0D
6: 0x7fa619cc8ca3 - session::Session::span_bug::h857b2c7ae23c9286ISp
7: 0x7fa61b7e680c - trans::debuginfo::scope_metadata::hac54dfdbdcd04cd9SjE
8: 0x7fa61b6f9408 - trans::debuginfo::set_source_location::h1067a74086ed9dd48MD
9: 0x7fa61b6ade42 - trans::expr::trans_into::h95c6d2681fdd2548znh
10: 0x7fa61b6ae109 - trans::expr::trans_into::h95c6d2681fdd2548znh
11: 0x7fa61b71067f - trans::expr::trans_uniq_expr::h5f082eea62818f84ukj
12: 0x7fa61b7112ef - trans::expr::trans_unary::h4412379888608420Jgj
13: 0x7fa61b6fb80e - trans::expr::trans_unadjusted::hfd3a5e1b5cbe37d5z4h
14: 0x7fa61b6ae417 - trans::expr::trans_into::h95c6d2681fdd2548znh
15: 0x7fa61b72e6f9 - trans::expr::trans_adt::h1af69b9b4e52152aO6i
16: 0x7fa61b7311af - trans::expr::trans_struct::closure.42069
17: 0x7fa61b71b016 - trans::expr::trans_struct::hcae8f9103f3460d5K2i
18: 0x7fa61b6fd53d - trans::expr::trans_rvalue_dps_unadjusted::hd47de7ac66e018254zi
19: 0x7fa61b6ae3f6 - trans::expr::trans_into::h95c6d2681fdd2548znh
20: 0x7fa61b6af227 - trans::controlflow::trans_block::h3e86dfa8c58560e6b5d
21: 0x7fa61b786821 - trans::base::trans_closure::hab3cc3c679d5ff23Kkt
22: 0x7fa61b697b08 - trans::base::trans_fn::he0569b8eb832adf9Dvt
23: 0x7fa61b6995a0 - trans::monomorphize::monomorphic_fn::hc1b7393dd1dc77f1usd
24: 0x7fa61b6dee4e - trans::callee::trans_fn_ref_with_substs::hd01acb4398310d154kg
25: 0x7fa61b6dd43e - trans::callee::trans_fn_ref::hb48e614c9b6dd9bcE9f
26: 0x7fa61b6da88d - trans::callee::trans::ha56f4fe94448e6baVYf
27: 0x7fa61b6f0fbb - trans::callee::trans_call_inner::h9722042290657949952
28: 0x7fa61b6fd9e0 - trans::expr::trans_rvalue_dps_unadjusted::hd47de7ac66e018254zi
29: 0x7fa61b6ae3f6 - trans::expr::trans_into::h95c6d2681fdd2548znh
30: 0x7fa61b72e6f9 - trans::expr::trans_adt::h1af69b9b4e52152aO6i
31: 0x7fa61b7311af - trans::expr::trans_struct::closure.42069
32: 0x7fa61b71b016 - trans::expr::trans_struct::hcae8f9103f3460d5K2i
33: 0x7fa61b6fd53d - trans::expr::trans_rvalue_dps_unadjusted::hd47de7ac66e018254zi
34: 0x7fa61b6fb668 - trans::expr::trans_unadjusted::hfd3a5e1b5cbe37d5z4h
35: 0x7fa61b6afb58 - trans::expr::trans::h23d7d0dd91a5190fHth
36: 0x7fa61b6ec9f3 - trans::callee::trans_args::h29a92a6ed71c85ebm1g
37: 0x7fa61b6f1ea0 - trans::callee::trans_call_inner::h9722042290657949952
38: 0x7fa61b6fd9e0 - trans::expr::trans_rvalue_dps_unadjusted::hd47de7ac66e018254zi
39: 0x7fa61b6fb668 - trans::expr::trans_unadjusted::hfd3a5e1b5cbe37d5z4h
40: 0x7fa61b6afb58 - trans::expr::trans::h23d7d0dd91a5190fHth
41: 0x7fa61b6adee3 - trans::expr::trans_into::h95c6d2681fdd2548znh
42: 0x7fa61b6af227 - trans::controlflow::trans_block::h3e86dfa8c58560e6b5d
43: 0x7fa61b6fcf7e - trans::expr::trans_rvalue_dps_unadjusted::hd47de7ac66e018254zi
44: 0x7fa61b6ae3f6 - trans::expr::trans_into::h95c6d2681fdd2548znh
45: 0x7fa61b6af227 - trans::controlflow::trans_block::h3e86dfa8c58560e6b5d
46: 0x7fa61b786821 - trans::base::trans_closure::hab3cc3c679d5ff23Kkt
47: 0x7fa61b72f139 - trans::closure::trans_closure_expr::hc99a1619c43ed333flx
48: 0x7fa61b6fda38 - trans::expr::trans_rvalue_dps_unadjusted::hd47de7ac66e018254zi
49: 0x7fa61b6fb764 - trans::expr::trans_unadjusted::hfd3a5e1b5cbe37d5z4h
50: 0x7fa61b6afb58 - trans::expr::trans::h23d7d0dd91a5190fHth
51: 0x7fa61b6ec9f3 - trans::callee::trans_args::h29a92a6ed71c85ebm1g
52: 0x7fa61b6f1ea0 - trans::callee::trans_call_inner::h9722042290657949952
53: 0x7fa61b6fd9e0 - trans::expr::trans_rvalue_dps_unadjusted::hd47de7ac66e018254zi
54: 0x7fa61b6ae3f6 - trans::expr::trans_into::h95c6d2681fdd2548znh
55: 0x7fa61b6af227 - trans::controlflow::trans_block::h3e86dfa8c58560e6b5d
56: 0x7fa61b786821 - trans::base::trans_closure::hab3cc3c679d5ff23Kkt
57: 0x7fa61b697b08 - trans::base::trans_fn::he0569b8eb832adf9Dvt
58: 0x7fa61b6938a1 - trans::base::trans_item::h48fc370b7d259ac7vTt
59: 0x7fa61b78f7ec - trans::base::trans_crate::hc92be67ede893c70GPu
60: 0x7fa61c672e83 - driver::phase_4_translate_to_llvm::h9904f5d5fc3fb761rNa
61: 0x7fa61c64e83f - driver::compile_input::h3913ff7013f0c056Iba
62: 0x7fa61c716cb7 - run_compiler::h28a4446bae1034e7H5b
63: 0x7fa61c714829 - thunk::F.Invoke<A, R>::invoke::h6503055919709693733
64: 0x7fa61c7134a0 - rt::unwind::try::try_fn::h1384674024000742916
65: 0x7fa61c0d4de8 - rust_try_inner
66: 0x7fa61c0d4dd5 - rust_try
67: 0x7fa61c713c3f - thunk::F.Invoke<A, R>::invoke::h5780663349966142752
68: 0x7fa61c04f965 - sys::thread::thread_start::h4ab695857833a5dar8E
69: 0x7fa615ecc373 - start_thread
70: 0x7fa61bc1a27c - __clone
71: 0x0 - <unknown>
Could not compile `env_logger`.
To learn more, run the command again with --verbose.
ββmindcat@mindcat-linux-pc ~/workspace/nekoneko βΉmaster*βΊ
β°ββ€ rustc --version 101 β΅
rustc 1.0.0-nightly (3b3bb0e68 2015-03-04) (built 2015-03-05)"><pre class="notranslate">ββmindcat@mindcat-linux-pc <span class="pl-k">~</span>/workspace/nekoneko βΉmaster<span class="pl-k">*</span>βΊ
β°ββ€ RUST_BACKTRACE=1 RUST_LOG=nekoneko cargo build
Compiling env_logger v0.2.2 (https://github.com/rust-lang/log#e78b7368)
/home/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-linux/build/src/libstd/sync/mutex.rs:177:37: 180:2 error: internal compiler error: debuginfo: Could not find scope info for node NodeExpr(Expr { id: 8309, node: ExprStruct(Path { span: Span { lo: BytePos(4566650), hi: BytePos(4566661), expn_id: ExpnId(4294967295) }, global: false, segments: [PathSegment { identifier: StaticMutex#0, parameters: AngleBracketedParameters(AngleBracketedParameterData { lifetimes: [], types: [], bindings: [] }) }] }, [Field { ident: Spanned { node: lock#0, span: Span { lo: BytePos(1770102), hi: BytePos(1770106), expn_id: ExpnId(4294967295) } }, expr: Expr { id: 8310, node: ExprPath(None, Path { span: Span { lo: BytePos(4566674), hi: BytePos(4566689), expn_id: ExpnId(4294967295) }, global: false, segments: [PathSegment { identifier: sys#0, parameters: AngleBracketedParameters(AngleBracketedParameterData { lifetimes: [], types: [], bindings: [] }) }, PathSegment { identifier: MUTEX_INIT#0, parameters: AngleBracketedParameters(AngleBracketedParameterData { lifetimes: [], types: [], bindings: [] }) }] }), span: Span { lo: BytePos(4566674), hi: BytePos(4566689), expn_id: ExpnId(4294967295) } }, span: Span { lo: BytePos(4566668), hi: BytePos(4566689), expn_id: ExpnId(4294967295) } }, Field { ident: Spanned { node: poison#0, span: Span { lo: BytePos(1770129), hi: BytePos(1770135), expn_id: ExpnId(4294967295) } }, expr: Expr { id: 8311, node: ExprPath(None, Path { span: Span { lo: BytePos(4566703), hi: BytePos(4566720), expn_id: ExpnId(4294967295) }, global: false, segments: [PathSegment { identifier: poison#0, parameters: AngleBracketedParameters(AngleBracketedParameterData { lifetimes: [], types: [], bindings: [] }) }, PathSegment { identifier: FLAG_INIT#0, parameters: AngleBracketedParameters(AngleBracketedParameterData { lifetimes: [], types: [], bindings: [] }) }] }), span: Span { lo: BytePos(4566703), hi: BytePos(4566720), expn_id: ExpnId(4294967295) } }, span: Span { lo: BytePos(4566695), hi: BytePos(4566720), expn_id: ExpnId(4294967295) } }], None), span: Span { lo: BytePos(4566650), hi: BytePos(4566723), expn_id: ExpnId(4294967295) } })
note: the compiler unexpectedly panicked. this is a bug.
note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
note: run with <span class="pl-s"><span class="pl-pds">`</span>RUST_BACKTRACE=1<span class="pl-pds">`</span></span> <span class="pl-k">for</span> a backtrace
thread <span class="pl-s"><span class="pl-pds">'</span>rustc<span class="pl-pds">'</span></span> panicked at <span class="pl-s"><span class="pl-pds">'</span>Box<Any><span class="pl-pds">'</span></span>, /home/rustbuild/src/rust-buildbot/slave/nightly-dist-rustc-linux/build/src/libsyntax/diagnostic.rs:129
stack backtrace:
1: 0x7fa61c039f1f - sys::backtrace::write::hf79a3da4fdecb8a0OBA
2: 0x7fa61c064c32 - panicking::on_panic::h9f64f4c69e19f194hHJ
3: 0x7fa61bf99eda - rt::unwind::begin_unwind_inner::h37f4496c980fe936knJ
4: 0x7fa6193ecabd - rt::unwind::begin_unwind::h8320268356453106285
5: 0x7fa6193eca63 - diagnostic::SpanHandler::span_bug::h83c8af232eaba6a9h0D
6: 0x7fa619cc8ca3 - session::Session::span_bug::h857b2c7ae23c9286ISp
7: 0x7fa61b7e680c - trans::debuginfo::scope_metadata::hac54dfdbdcd04cd9SjE
8: 0x7fa61b6f9408 - trans::debuginfo::set_source_location::h1067a74086ed9dd48MD
9: 0x7fa61b6ade42 - trans::expr::trans_into::h95c6d2681fdd2548znh
10: 0x7fa61b6ae109 - trans::expr::trans_into::h95c6d2681fdd2548znh
11: 0x7fa61b71067f - trans::expr::trans_uniq_expr::h5f082eea62818f84ukj
12: 0x7fa61b7112ef - trans::expr::trans_unary::h4412379888608420Jgj
13: 0x7fa61b6fb80e - trans::expr::trans_unadjusted::hfd3a5e1b5cbe37d5z4h
14: 0x7fa61b6ae417 - trans::expr::trans_into::h95c6d2681fdd2548znh
15: 0x7fa61b72e6f9 - trans::expr::trans_adt::h1af69b9b4e52152aO6i
16: 0x7fa61b7311af - trans::expr::trans_struct::closure.42069
17: 0x7fa61b71b016 - trans::expr::trans_struct::hcae8f9103f3460d5K2i
18: 0x7fa61b6fd53d - trans::expr::trans_rvalue_dps_unadjusted::hd47de7ac66e018254zi
19: 0x7fa61b6ae3f6 - trans::expr::trans_into::h95c6d2681fdd2548znh
20: 0x7fa61b6af227 - trans::controlflow::trans_block::h3e86dfa8c58560e6b5d
21: 0x7fa61b786821 - trans::base::trans_closure::hab3cc3c679d5ff23Kkt
22: 0x7fa61b697b08 - trans::base::trans_fn::he0569b8eb832adf9Dvt
23: 0x7fa61b6995a0 - trans::monomorphize::monomorphic_fn::hc1b7393dd1dc77f1usd
24: 0x7fa61b6dee4e - trans::callee::trans_fn_ref_with_substs::hd01acb4398310d154kg
25: 0x7fa61b6dd43e - trans::callee::trans_fn_ref::hb48e614c9b6dd9bcE9f
26: 0x7fa61b6da88d - trans::callee::trans::ha56f4fe94448e6baVYf
27: 0x7fa61b6f0fbb - trans::callee::trans_call_inner::h9722042290657949952
28: 0x7fa61b6fd9e0 - trans::expr::trans_rvalue_dps_unadjusted::hd47de7ac66e018254zi
29: 0x7fa61b6ae3f6 - trans::expr::trans_into::h95c6d2681fdd2548znh
30: 0x7fa61b72e6f9 - trans::expr::trans_adt::h1af69b9b4e52152aO6i
31: 0x7fa61b7311af - trans::expr::trans_struct::closure.42069
32: 0x7fa61b71b016 - trans::expr::trans_struct::hcae8f9103f3460d5K2i
33: 0x7fa61b6fd53d - trans::expr::trans_rvalue_dps_unadjusted::hd47de7ac66e018254zi
34: 0x7fa61b6fb668 - trans::expr::trans_unadjusted::hfd3a5e1b5cbe37d5z4h
35: 0x7fa61b6afb58 - trans::expr::trans::h23d7d0dd91a5190fHth
36: 0x7fa61b6ec9f3 - trans::callee::trans_args::h29a92a6ed71c85ebm1g
37: 0x7fa61b6f1ea0 - trans::callee::trans_call_inner::h9722042290657949952
38: 0x7fa61b6fd9e0 - trans::expr::trans_rvalue_dps_unadjusted::hd47de7ac66e018254zi
39: 0x7fa61b6fb668 - trans::expr::trans_unadjusted::hfd3a5e1b5cbe37d5z4h
40: 0x7fa61b6afb58 - trans::expr::trans::h23d7d0dd91a5190fHth
41: 0x7fa61b6adee3 - trans::expr::trans_into::h95c6d2681fdd2548znh
42: 0x7fa61b6af227 - trans::controlflow::trans_block::h3e86dfa8c58560e6b5d
43: 0x7fa61b6fcf7e - trans::expr::trans_rvalue_dps_unadjusted::hd47de7ac66e018254zi
44: 0x7fa61b6ae3f6 - trans::expr::trans_into::h95c6d2681fdd2548znh
45: 0x7fa61b6af227 - trans::controlflow::trans_block::h3e86dfa8c58560e6b5d
46: 0x7fa61b786821 - trans::base::trans_closure::hab3cc3c679d5ff23Kkt
47: 0x7fa61b72f139 - trans::closure::trans_closure_expr::hc99a1619c43ed333flx
48: 0x7fa61b6fda38 - trans::expr::trans_rvalue_dps_unadjusted::hd47de7ac66e018254zi
49: 0x7fa61b6fb764 - trans::expr::trans_unadjusted::hfd3a5e1b5cbe37d5z4h
50: 0x7fa61b6afb58 - trans::expr::trans::h23d7d0dd91a5190fHth
51: 0x7fa61b6ec9f3 - trans::callee::trans_args::h29a92a6ed71c85ebm1g
52: 0x7fa61b6f1ea0 - trans::callee::trans_call_inner::h9722042290657949952
53: 0x7fa61b6fd9e0 - trans::expr::trans_rvalue_dps_unadjusted::hd47de7ac66e018254zi
54: 0x7fa61b6ae3f6 - trans::expr::trans_into::h95c6d2681fdd2548znh
55: 0x7fa61b6af227 - trans::controlflow::trans_block::h3e86dfa8c58560e6b5d
56: 0x7fa61b786821 - trans::base::trans_closure::hab3cc3c679d5ff23Kkt
57: 0x7fa61b697b08 - trans::base::trans_fn::he0569b8eb832adf9Dvt
58: 0x7fa61b6938a1 - trans::base::trans_item::h48fc370b7d259ac7vTt
59: 0x7fa61b78f7ec - trans::base::trans_crate::hc92be67ede893c70GPu
60: 0x7fa61c672e83 - driver::phase_4_translate_to_llvm::h9904f5d5fc3fb761rNa
61: 0x7fa61c64e83f - driver::compile_input::h3913ff7013f0c056Iba
62: 0x7fa61c716cb7 - run_compiler::h28a4446bae1034e7H5b
63: 0x7fa61c714829 - thunk::F.Invoke<span class="pl-k"><</span>A, R<span class="pl-k">></span>::invoke::h6503055919709693733
64: 0x7fa61c7134a0 - rt::unwind::try::try_fn::h1384674024000742916
65: 0x7fa61c0d4de8 - rust_try_inner
66: 0x7fa61c0d4dd5 - rust_try
67: 0x7fa61c713c3f - thunk::F.Invoke<span class="pl-k"><</span>A, R<span class="pl-k">></span>::invoke::h5780663349966142752
68: 0x7fa61c04f965 - sys::thread::thread_start::h4ab695857833a5dar8E
69: 0x7fa615ecc373 - start_thread
70: 0x7fa61bc1a27c - __clone
71: 0x0 - <span class="pl-k"><</span>unknown<span class="pl-k">></span>
Could not compile <span class="pl-s"><span class="pl-pds">`</span>env_logger<span class="pl-pds">`</span></span>.
To learn more, run the <span class="pl-c1">command</span> again with --verbose.
ββmindcat@mindcat-linux-pc <span class="pl-k">~</span>/workspace/nekoneko βΉmaster<span class="pl-k">*</span>βΊ
β°ββ€ rustc --version 101 β΅
rustc 1.0.0-nightly (3b3bb0e68 2015-03-04) (built 2015-03-05)</pre></div> | 1 |
<h2 dir="auto">Question</h2>
<p dir="auto">version : ShardingSphere-JDBC 5.1.0</p>
<p dir="auto">According to the logic of ShardingSphere, the query condition has no sharding field and the routing engine will use the Cartesian product for it.<br>
Now we have the following SQL:<br>
SQL1: select a.id ,a.time,b.id from photo a left join alarm_photo b on a.alarm_id = b.id<br>
Logic Table photo has two actual tables: photo_202201,photo_202203 , two months has one actual table;<br>
Logic Table alarm_photo has three actual tables: alarm_photo_202201,alarm_photo_202202,alarm_photo_202203, one months has one acutal table;<br>
Logic table photo has one data :[ idοΌ1γdate:'20220201' ]γand the data is in actual table photo_202201<br>
Logic alarm_photo has no data.<br>
Now I execute the above SQL1(left join ! not right join)γand get the three results:<br>
[id:1,time:'20220201', id null],[id:1,time:'20220201', id null],[id:1,time:'20220201', id null]</p>
<p dir="auto">This is not what I expected, I think there should be only one data.<br>
Why is this, I know it's caused by the Cartesian product, but why doesn't ShardingSphere solve this problem?<br>
Can you give me an answer οΌthanks.</p> | <h2 dir="auto">Bug Report</h2>
<h3 dir="auto">Which version of ShardingSphere did you use?</h3>
<p dir="auto">sharding scaling 5.0.0 RC SNAPSHOT + sharding proxy 4.1.0</p>
<h3 dir="auto">Reason analyze (If you can)</h3>
<p dir="auto">seems that resource not enough</p>
<h3 dir="auto">Steps to reproduce the behavior, such as: SQL to execute, sharding rule configuration, when exception occur etc.</h3>
<p dir="auto">CPU INFO :<br>
Architecture: x86_64<br>
CPU op-mode(s): 32-bit, 64-bit<br>
Byte Order: Little Endian<br>
CPU(s): 8</p>
<p dir="auto">sharding-scaling :</p>
<ul dir="auto">
<li>xmx 4G</li>
<li>blockQueueSize: 500w</li>
<li>concurrency: 12</li>
</ul>
<p dir="auto">sharding-proxy: xmx 4G</p>
<h3 dir="auto">Example codes for reproduce this issue (such as a github link).</h3>
<p dir="auto">the test data is about 5000w +<br>
I start up scaling with jobConfiguration {concurreny 12 } , and I got erros from both scaling and proxy like followings :</p>
<h3 dir="auto">error in scaling log</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[WARN ] 20:16:27.926 [pool-2-thread-10] com.zaxxer.hikari.pool.PoolBase - HikariPool-34 - Default transaction isolation level detection failed (Communications link failure
The last packet successfully received from the server was 7,417 milliseconds ago. The last packet sent successfully to the server was 7,417 milliseconds ago.).
[ERROR] 20:16:27.929 [pool-2-thread-10] com.zaxxer.hikari.pool.HikariPool - HikariPool-34 - Error thrown while acquiring connection from data source
com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after connection closed.
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
at com.mysql.jdbc.Util.getInstance(Util.java:408)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:919)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:898)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:887)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:861)
at com.mysql.jdbc.ConnectionImpl.throwConnectionClosedException(ConnectionImpl.java:1192)
at com.mysql.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:1187)
at com.mysql.jdbc.ConnectionImpl.setTransactionIsolation(ConnectionImpl.java:5046)
at com.zaxxer.hikari.pool.PoolBase.setupConnection(PoolBase.java:409)
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:359)
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:202)
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:473)
at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:554)
at com.zaxxer.hikari.pool.HikariPool.<init>(HikariPool.java:115)
at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:112)
at org.apache.shardingsphere.scaling.core.execute.executor.importer.AbstractJDBCImporter.flush(AbstractJDBCImporter.java:98)
at org.apache.shardingsphere.scaling.core.execute.executor.importer.AbstractJDBCImporter.write(AbstractJDBCImporter.java:84)
at org.apache.shardingsphere.scaling.core.execute.executor.importer.AbstractJDBCImporter.start(AbstractJDBCImporter.java:75)
at org.apache.shardingsphere.scaling.core.execute.executor.AbstractShardingScalingExecutor.run(AbstractShardingScalingExecutor.java:51)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
The last packet successfully received from the server was 7,417 milliseconds ago. The last packet sent successfully to the server was 7,417 milliseconds ago.
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:990)
at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3562)
at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3462)
at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3905)
at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)
at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)
at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2491)
at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2449)
at com.mysql.jdbc.StatementImpl.executeQuery(StatementImpl.java:1381)
at com.mysql.jdbc.ConnectionImpl.getTransactionIsolation(ConnectionImpl.java:3010)
at com.zaxxer.hikari.pool.PoolBase.checkDefaultIsolation(PoolBase.java:475)
at com.zaxxer.hikari.pool.PoolBase.checkDriverSupport(PoolBase.java:438)
at com.zaxxer.hikari.pool.PoolBase.setupConnection(PoolBase.java:406)
... 15 common frames omitted
Caused by: java.net.SocketTimeoutException: Read timed out
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.socketRead(SocketInputStream.java:116)
at java.net.SocketInputStream.read(SocketInputStream.java:171)
at java.net.SocketInputStream.read(SocketInputStream.java:141)
at com.mysql.jdbc.util.ReadAheadInputStream.fill(ReadAheadInputStream.java:101)
at com.mysql.jdbc.util.ReadAheadInputStream.readFromUnderlyingStreamIfNecessary(ReadAheadInputStream.java:144)
at com.mysql.jdbc.util.ReadAheadInputStream.read(ReadAheadInputStream.java:174)
at com.mysql.jdbc.MysqlIO.readFully(MysqlIO.java:3011)
at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3472)
... 26 common frames omitted
[ERROR] 20:16:27.938 [pool-2-thread-10] com.zaxxer.hikari.pool.HikariPool - HikariPool-34 - Exception during pool initialization.
com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after connection closed.
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
at com.mysql.jdbc.Util.getInstance(Util.java:408)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:919)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:898)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:887)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:861)
at com.mysql.jdbc.ConnectionImpl.throwConnectionClosedException(ConnectionImpl.java:1192)
at com.mysql.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:1187)
at com.mysql.jdbc.ConnectionImpl.setTransactionIsolation(ConnectionImpl.java:5046)
at com.zaxxer.hikari.pool.PoolBase.setupConnection(PoolBase.java:409)
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:359)
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:202)
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:473)
at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:554)
at com.zaxxer.hikari.pool.HikariPool.<init>(HikariPool.java:115)
at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:112)
at org.apache.shardingsphere.scaling.core.execute.executor.importer.AbstractJDBCImporter.flush(AbstractJDBCImporter.java:98)
at org.apache.shardingsphere.scaling.core.execute.executor.importer.AbstractJDBCImporter.write(AbstractJDBCImporter.java:84)
at org.apache.shardingsphere.scaling.core.execute.executor.importer.AbstractJDBCImporter.start(AbstractJDBCImporter.java:75)
at org.apache.shardingsphere.scaling.core.execute.executor.AbstractShardingScalingExecutor.run(AbstractShardingScalingExecutor.java:51)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
The last packet successfully received from the server was 7,417 milliseconds ago. The last packet sent successfully to the server was 7,417 milliseconds ago.
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:990)
at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3562)
at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3462)
at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3905)
at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)
at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)
at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2491)
at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2449)
at com.mysql.jdbc.StatementImpl.executeQuery(StatementImpl.java:1381)
at com.mysql.jdbc.ConnectionImpl.getTransactionIsolation(ConnectionImpl.java:3010)
at com.zaxxer.hikari.pool.PoolBase.checkDefaultIsolation(PoolBase.java:475)
at com.zaxxer.hikari.pool.PoolBase.checkDriverSupport(PoolBase.java:438)
at com.zaxxer.hikari.pool.PoolBase.setupConnection(PoolBase.java:406)
... 15 common frames omitted
Caused by: java.net.SocketTimeoutException: Read timed out
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.socketRead(SocketInputStream.java:116)
at java.net.SocketInputStream.read(SocketInputStream.java:171)
at java.net.SocketInputStream.read(SocketInputStream.java:141)
at com.mysql.jdbc.util.ReadAheadInputStream.fill(ReadAheadInputStream.java:101)
at com.mysql.jdbc.util.ReadAheadInputStream.readFromUnderlyingStreamIfNecessary(ReadAheadInputStream.java:144)
at com.mysql.jdbc.util.ReadAheadInputStream.read(ReadAheadInputStream.java:174)
at com.mysql.jdbc.MysqlIO.readFully(MysqlIO.java:3011)
at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3472)
... 26 common frames omitted
[INFO ] 20:16:37.199 [pool-1-thread-12] com.zaxxer.hikari.HikariDataSource - HikariPool-37 - Starting...
[INFO ] 20:16:37.212 [pool-1-thread-12] com.zaxxer.hikari.HikariDataSource - HikariPool-37 - Start completed.
[INFO ] 20:16:37.350 [pool-2-thread-12] com.zaxxer.hikari.HikariDataSource - HikariPool-38 - Starting...
[INFO ] 20:16:51.044 [pool-2-thread-11] com.zaxxer.hikari.HikariDataSource - HikariPool-36 - Start completed.
[INFO ] 20:16:51.071 [pool-2-thread-12] com.zaxxer.hikari.HikariDataSource - HikariPool-38 - Start completed.
[ERROR] 20:16:51.247 [pool-2-thread-9] com.zaxxer.hikari.pool.HikariPool - HikariPool-32 - Exception during pool initialization.
java.sql.SQLException: 2Unknown exception: [null]
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:965)
at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3978)
at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3914)
at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)
at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)
at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2491)
at com.mysql.jdbc.ConnectionImpl.configureClientCharacterSet(ConnectionImpl.java:1820)
at com.mysql.jdbc.ConnectionImpl.initializePropsFromServer(ConnectionImpl.java:3320)
at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2243)
at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2025)
at com.mysql.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:778)
at com.mysql.jdbc.JDBC4Connection.<init>(JDBC4Connection.java:47)
at sun.reflect.GeneratedConstructorAccessor6.newInstance(Unknown Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:386)
at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:330)
at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:354)
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:202)
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:473)
at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:554)
at com.zaxxer.hikari.pool.HikariPool.<init>(HikariPool.java:115)
at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:112)
at org.apache.shardingsphere.scaling.core.execute.executor.importer.AbstractJDBCImporter.flush(AbstractJDBCImporter.java:98)
at org.apache.shardingsphere.scaling.core.execute.executor.importer.AbstractJDBCImporter.write(AbstractJDBCImporter.java:84)
at org.apache.shardingsphere.scaling.core.execute.executor.importer.AbstractJDBCImporter.start(AbstractJDBCImporter.java:75)
at org.apache.shardingsphere.scaling.core.execute.executor.AbstractShardingScalingExecutor.run(AbstractShardingScalingExecutor.java:51)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)"><pre class="notranslate"><code class="notranslate">[WARN ] 20:16:27.926 [pool-2-thread-10] com.zaxxer.hikari.pool.PoolBase - HikariPool-34 - Default transaction isolation level detection failed (Communications link failure
The last packet successfully received from the server was 7,417 milliseconds ago. The last packet sent successfully to the server was 7,417 milliseconds ago.).
[ERROR] 20:16:27.929 [pool-2-thread-10] com.zaxxer.hikari.pool.HikariPool - HikariPool-34 - Error thrown while acquiring connection from data source
com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after connection closed.
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
at com.mysql.jdbc.Util.getInstance(Util.java:408)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:919)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:898)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:887)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:861)
at com.mysql.jdbc.ConnectionImpl.throwConnectionClosedException(ConnectionImpl.java:1192)
at com.mysql.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:1187)
at com.mysql.jdbc.ConnectionImpl.setTransactionIsolation(ConnectionImpl.java:5046)
at com.zaxxer.hikari.pool.PoolBase.setupConnection(PoolBase.java:409)
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:359)
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:202)
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:473)
at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:554)
at com.zaxxer.hikari.pool.HikariPool.<init>(HikariPool.java:115)
at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:112)
at org.apache.shardingsphere.scaling.core.execute.executor.importer.AbstractJDBCImporter.flush(AbstractJDBCImporter.java:98)
at org.apache.shardingsphere.scaling.core.execute.executor.importer.AbstractJDBCImporter.write(AbstractJDBCImporter.java:84)
at org.apache.shardingsphere.scaling.core.execute.executor.importer.AbstractJDBCImporter.start(AbstractJDBCImporter.java:75)
at org.apache.shardingsphere.scaling.core.execute.executor.AbstractShardingScalingExecutor.run(AbstractShardingScalingExecutor.java:51)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
The last packet successfully received from the server was 7,417 milliseconds ago. The last packet sent successfully to the server was 7,417 milliseconds ago.
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:990)
at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3562)
at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3462)
at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3905)
at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)
at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)
at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2491)
at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2449)
at com.mysql.jdbc.StatementImpl.executeQuery(StatementImpl.java:1381)
at com.mysql.jdbc.ConnectionImpl.getTransactionIsolation(ConnectionImpl.java:3010)
at com.zaxxer.hikari.pool.PoolBase.checkDefaultIsolation(PoolBase.java:475)
at com.zaxxer.hikari.pool.PoolBase.checkDriverSupport(PoolBase.java:438)
at com.zaxxer.hikari.pool.PoolBase.setupConnection(PoolBase.java:406)
... 15 common frames omitted
Caused by: java.net.SocketTimeoutException: Read timed out
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.socketRead(SocketInputStream.java:116)
at java.net.SocketInputStream.read(SocketInputStream.java:171)
at java.net.SocketInputStream.read(SocketInputStream.java:141)
at com.mysql.jdbc.util.ReadAheadInputStream.fill(ReadAheadInputStream.java:101)
at com.mysql.jdbc.util.ReadAheadInputStream.readFromUnderlyingStreamIfNecessary(ReadAheadInputStream.java:144)
at com.mysql.jdbc.util.ReadAheadInputStream.read(ReadAheadInputStream.java:174)
at com.mysql.jdbc.MysqlIO.readFully(MysqlIO.java:3011)
at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3472)
... 26 common frames omitted
[ERROR] 20:16:27.938 [pool-2-thread-10] com.zaxxer.hikari.pool.HikariPool - HikariPool-34 - Exception during pool initialization.
com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operations allowed after connection closed.
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
at com.mysql.jdbc.Util.getInstance(Util.java:408)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:919)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:898)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:887)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:861)
at com.mysql.jdbc.ConnectionImpl.throwConnectionClosedException(ConnectionImpl.java:1192)
at com.mysql.jdbc.ConnectionImpl.checkClosed(ConnectionImpl.java:1187)
at com.mysql.jdbc.ConnectionImpl.setTransactionIsolation(ConnectionImpl.java:5046)
at com.zaxxer.hikari.pool.PoolBase.setupConnection(PoolBase.java:409)
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:359)
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:202)
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:473)
at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:554)
at com.zaxxer.hikari.pool.HikariPool.<init>(HikariPool.java:115)
at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:112)
at org.apache.shardingsphere.scaling.core.execute.executor.importer.AbstractJDBCImporter.flush(AbstractJDBCImporter.java:98)
at org.apache.shardingsphere.scaling.core.execute.executor.importer.AbstractJDBCImporter.write(AbstractJDBCImporter.java:84)
at org.apache.shardingsphere.scaling.core.execute.executor.importer.AbstractJDBCImporter.start(AbstractJDBCImporter.java:75)
at org.apache.shardingsphere.scaling.core.execute.executor.AbstractShardingScalingExecutor.run(AbstractShardingScalingExecutor.java:51)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Caused by: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
The last packet successfully received from the server was 7,417 milliseconds ago. The last packet sent successfully to the server was 7,417 milliseconds ago.
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
at com.mysql.jdbc.SQLError.createCommunicationsException(SQLError.java:990)
at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3562)
at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3462)
at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3905)
at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)
at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)
at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2491)
at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2449)
at com.mysql.jdbc.StatementImpl.executeQuery(StatementImpl.java:1381)
at com.mysql.jdbc.ConnectionImpl.getTransactionIsolation(ConnectionImpl.java:3010)
at com.zaxxer.hikari.pool.PoolBase.checkDefaultIsolation(PoolBase.java:475)
at com.zaxxer.hikari.pool.PoolBase.checkDriverSupport(PoolBase.java:438)
at com.zaxxer.hikari.pool.PoolBase.setupConnection(PoolBase.java:406)
... 15 common frames omitted
Caused by: java.net.SocketTimeoutException: Read timed out
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.socketRead(SocketInputStream.java:116)
at java.net.SocketInputStream.read(SocketInputStream.java:171)
at java.net.SocketInputStream.read(SocketInputStream.java:141)
at com.mysql.jdbc.util.ReadAheadInputStream.fill(ReadAheadInputStream.java:101)
at com.mysql.jdbc.util.ReadAheadInputStream.readFromUnderlyingStreamIfNecessary(ReadAheadInputStream.java:144)
at com.mysql.jdbc.util.ReadAheadInputStream.read(ReadAheadInputStream.java:174)
at com.mysql.jdbc.MysqlIO.readFully(MysqlIO.java:3011)
at com.mysql.jdbc.MysqlIO.reuseAndReadPacket(MysqlIO.java:3472)
... 26 common frames omitted
[INFO ] 20:16:37.199 [pool-1-thread-12] com.zaxxer.hikari.HikariDataSource - HikariPool-37 - Starting...
[INFO ] 20:16:37.212 [pool-1-thread-12] com.zaxxer.hikari.HikariDataSource - HikariPool-37 - Start completed.
[INFO ] 20:16:37.350 [pool-2-thread-12] com.zaxxer.hikari.HikariDataSource - HikariPool-38 - Starting...
[INFO ] 20:16:51.044 [pool-2-thread-11] com.zaxxer.hikari.HikariDataSource - HikariPool-36 - Start completed.
[INFO ] 20:16:51.071 [pool-2-thread-12] com.zaxxer.hikari.HikariDataSource - HikariPool-38 - Start completed.
[ERROR] 20:16:51.247 [pool-2-thread-9] com.zaxxer.hikari.pool.HikariPool - HikariPool-32 - Exception during pool initialization.
java.sql.SQLException: 2Unknown exception: [null]
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:965)
at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3978)
at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3914)
at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2530)
at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2683)
at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2491)
at com.mysql.jdbc.ConnectionImpl.configureClientCharacterSet(ConnectionImpl.java:1820)
at com.mysql.jdbc.ConnectionImpl.initializePropsFromServer(ConnectionImpl.java:3320)
at com.mysql.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:2243)
at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2025)
at com.mysql.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:778)
at com.mysql.jdbc.JDBC4Connection.<init>(JDBC4Connection.java:47)
at sun.reflect.GeneratedConstructorAccessor6.newInstance(Unknown Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:386)
at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:330)
at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:354)
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:202)
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:473)
at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:554)
at com.zaxxer.hikari.pool.HikariPool.<init>(HikariPool.java:115)
at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:112)
at org.apache.shardingsphere.scaling.core.execute.executor.importer.AbstractJDBCImporter.flush(AbstractJDBCImporter.java:98)
at org.apache.shardingsphere.scaling.core.execute.executor.importer.AbstractJDBCImporter.write(AbstractJDBCImporter.java:84)
at org.apache.shardingsphere.scaling.core.execute.executor.importer.AbstractJDBCImporter.start(AbstractJDBCImporter.java:75)
at org.apache.shardingsphere.scaling.core.execute.executor.AbstractShardingScalingExecutor.run(AbstractShardingScalingExecutor.java:51)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
</code></pre></div>
<h3 dir="auto">errors in proxy log</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ERROR] 20:16:50.190 [ShardingSphere-Command-8] o.a.s.s.f.c.CommandExecutorTask - Exception occur:
java.lang.NullPointerException: null
at org.apache.shardingsphere.shardingproxy.frontend.mysql.MySQLErrPacketFactory.newInstance(MySQLErrPacketFactory.java:50)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.createErrorPacket(MySQLComQueryPacketExecutor.java:86)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.execute(MySQLComQueryPacketExecutor.java:76)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.executeCommand(CommandExecutorTask.java:93)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.run(CommandExecutorTask.java:71)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
[ERROR] 20:16:50.190 [ShardingSphere-Command-0] o.a.s.s.f.c.CommandExecutorTask - Exception occur:
java.lang.NullPointerException: null
at org.apache.shardingsphere.shardingproxy.frontend.mysql.MySQLErrPacketFactory.newInstance(MySQLErrPacketFactory.java:50)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.createErrorPacket(MySQLComQueryPacketExecutor.java:86)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.execute(MySQLComQueryPacketExecutor.java:76)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.executeCommand(CommandExecutorTask.java:93)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.run(CommandExecutorTask.java:71)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
[ERROR] 20:16:50.190 [ShardingSphere-Command-5] o.a.s.s.f.c.CommandExecutorTask - Exception occur:
java.lang.NullPointerException: null
at org.apache.shardingsphere.shardingproxy.frontend.mysql.MySQLErrPacketFactory.newInstance(MySQLErrPacketFactory.java:50)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.createErrorPacket(MySQLComQueryPacketExecutor.java:86)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.execute(MySQLComQueryPacketExecutor.java:76)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.executeCommand(CommandExecutorTask.java:93)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.run(CommandExecutorTask.java:71)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
[ERROR] 20:16:50.230 [ShardingSphere-Command-13] o.a.s.s.f.c.CommandExecutorTask - Exception occur:
java.lang.NullPointerException: null
at org.apache.shardingsphere.shardingproxy.frontend.mysql.MySQLErrPacketFactory.newInstance(MySQLErrPacketFactory.java:50)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.createErrorPacket(MySQLComQueryPacketExecutor.java:86)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.execute(MySQLComQueryPacketExecutor.java:76)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.executeCommand(CommandExecutorTask.java:93)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.run(CommandExecutorTask.java:71)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
[ERROR] 20:16:50.231 [ShardingSphere-Command-4] o.a.s.s.f.c.CommandExecutorTask - Exception occur:
java.lang.NullPointerException: null
at org.apache.shardingsphere.shardingproxy.frontend.mysql.MySQLErrPacketFactory.newInstance(MySQLErrPacketFactory.java:50)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.createErrorPacket(MySQLComQueryPacketExecutor.java:86)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.execute(MySQLComQueryPacketExecutor.java:76)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.executeCommand(CommandExecutorTask.java:93)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.run(CommandExecutorTask.java:71)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
[ERROR] 20:16:50.240 [ShardingSphere-Command-3] o.a.s.s.f.c.CommandExecutorTask - Exception occur:
java.lang.NullPointerException: null
at org.apache.shardingsphere.shardingproxy.frontend.mysql.MySQLErrPacketFactory.newInstance(MySQLErrPacketFactory.java:50)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.createErrorPacket(MySQLComQueryPacketExecutor.java:86)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.execute(MySQLComQueryPacketExecutor.java:76)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.executeCommand(CommandExecutorTask.java:93)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.run(CommandExecutorTask.java:71)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
[INFO ] 20:16:50.244 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ: [id: 0x65dc1c88, L:/127.0.0.1:13307 - R:/127.0.0.1:57792]
[INFO ] 20:16:50.244 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ COMPLETE
[INFO ] 20:16:50.313 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ: [id: 0x7edf2f3b, L:/127.0.0.1:13307 - R:/127.0.0.1:57794]
[INFO ] 20:16:50.313 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ COMPLETE
[ERROR] 20:16:50.318 [ShardingSphere-Command-15] o.a.s.s.f.c.CommandExecutorTask - Exception occur:
java.lang.NullPointerException: null
at org.apache.shardingsphere.shardingproxy.frontend.mysql.MySQLErrPacketFactory.newInstance(MySQLErrPacketFactory.java:50)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.createErrorPacket(MySQLComQueryPacketExecutor.java:86)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.execute(MySQLComQueryPacketExecutor.java:76)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.executeCommand(CommandExecutorTask.java:93)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.run(CommandExecutorTask.java:71)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
[ERROR] 20:16:50.369 [ShardingSphere-Command-12] o.a.s.s.f.c.CommandExecutorTask - Exception occur:
java.lang.NullPointerException: null
at org.apache.shardingsphere.shardingproxy.frontend.mysql.MySQLErrPacketFactory.newInstance(MySQLErrPacketFactory.java:50)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.createErrorPacket(MySQLComQueryPacketExecutor.java:86)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.execute(MySQLComQueryPacketExecutor.java:76)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.executeCommand(CommandExecutorTask.java:93)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.run(CommandExecutorTask.java:71)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
[INFO ] 20:16:50.394 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ: [id: 0xb5d39931, L:/127.0.0.1:13307 - R:/127.0.0.1:57798]
[INFO ] 20:16:50.394 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ COMPLETE
[INFO ] 20:16:50.447 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ: [id: 0xfe15877f, L:/127.0.0.1:13307 - R:/127.0.0.1:57802]
[INFO ] 20:16:50.447 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ: [id: 0xa3117e14, L:/127.0.0.1:13307 - R:/127.0.0.1:57804]
[INFO ] 20:16:50.448 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ COMPLETE
[ERROR] 20:16:50.448 [ShardingSphere-Command-2] o.a.s.s.f.c.CommandExecutorTask - Exception occur:
java.lang.NullPointerException: null
at org.apache.shardingsphere.shardingproxy.frontend.mysql.MySQLErrPacketFactory.newInstance(MySQLErrPacketFactory.java:50)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.createErrorPacket(MySQLComQueryPacketExecutor.java:86)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.execute(MySQLComQueryPacketExecutor.java:76)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.executeCommand(CommandExecutorTask.java:93)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.run(CommandExecutorTask.java:71)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
[INFO ] 20:16:50.466 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ: [id: 0x38f12011, L:/127.0.0.1:13307 - R:/127.0.0.1:57806]
[INFO ] 20:16:50.466 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ COMPLETE
[INFO ] 20:16:50.481 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ: [id: 0xbf006941, L:/127.0.0.1:13307 - R:/127.0.0.1:57808]
[INFO ] 20:16:50.481 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ COMPLETE
[INFO ] 20:16:50.487 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ: [id: 0x18c188d0, L:/127.0.0.1:13307 - R:/127.0.0.1:57810]
[INFO ] 20:16:50.488 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ COMPLETE
line 1:0 no viable alternative at input 'KILL'
line 1:0 mismatched input 'KILL' expecting {SELECT, INSERT, UPDATE, DELETE, CREATE, ALTER, DROP, TRUNCATE, GRANT, REVOKE, SET, WITH, DESC, BEGIN, COMMIT, ROLLBACK, SAVEPOINT, CALL, USE, DESCRIBE, SHOW, REPLACE, START, CHANGE, RENAME, REPAIR, STOP}
[ERROR] 20:16:50.527 [ShardingSphere-Command-10] o.a.s.s.f.c.CommandExecutorTask - Exception occur:
org.apache.shardingsphere.sql.parser.exception.SQLParsingException: Unsupported SQL of `KILL QUERY 6`
at org.apache.shardingsphere.sql.parser.core.parser.SQLParserExecutor.execute(SQLParserExecutor.java:49)
at org.apache.shardingsphere.sql.parser.SQLParserEngine.parse0(SQLParserEngine.java:79)
at org.apache.shardingsphere.sql.parser.SQLParserEngine.parse(SQLParserEngine.java:61)
at org.apache.shardingsphere.shardingproxy.backend.text.TextProtocolBackendHandlerFactory.newInstance(TextProtocolBackendHandlerFactory.java:69)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.<init>(MySQLComQueryPacketExecutor.java:65)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.MySQLCommandExecutorFactory.newInstance(MySQLCommandExecutorFactory.java:70)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.MySQLCommandExecuteEngine.getCommandExecutor(MySQLCommandExecuteEngine.java:59)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.executeCommand(CommandExecutorTask.java:92)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.run(CommandExecutorTask.java:71)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)"><pre class="notranslate"><code class="notranslate">[ERROR] 20:16:50.190 [ShardingSphere-Command-8] o.a.s.s.f.c.CommandExecutorTask - Exception occur:
java.lang.NullPointerException: null
at org.apache.shardingsphere.shardingproxy.frontend.mysql.MySQLErrPacketFactory.newInstance(MySQLErrPacketFactory.java:50)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.createErrorPacket(MySQLComQueryPacketExecutor.java:86)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.execute(MySQLComQueryPacketExecutor.java:76)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.executeCommand(CommandExecutorTask.java:93)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.run(CommandExecutorTask.java:71)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
[ERROR] 20:16:50.190 [ShardingSphere-Command-0] o.a.s.s.f.c.CommandExecutorTask - Exception occur:
java.lang.NullPointerException: null
at org.apache.shardingsphere.shardingproxy.frontend.mysql.MySQLErrPacketFactory.newInstance(MySQLErrPacketFactory.java:50)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.createErrorPacket(MySQLComQueryPacketExecutor.java:86)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.execute(MySQLComQueryPacketExecutor.java:76)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.executeCommand(CommandExecutorTask.java:93)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.run(CommandExecutorTask.java:71)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
[ERROR] 20:16:50.190 [ShardingSphere-Command-5] o.a.s.s.f.c.CommandExecutorTask - Exception occur:
java.lang.NullPointerException: null
at org.apache.shardingsphere.shardingproxy.frontend.mysql.MySQLErrPacketFactory.newInstance(MySQLErrPacketFactory.java:50)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.createErrorPacket(MySQLComQueryPacketExecutor.java:86)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.execute(MySQLComQueryPacketExecutor.java:76)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.executeCommand(CommandExecutorTask.java:93)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.run(CommandExecutorTask.java:71)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
[ERROR] 20:16:50.230 [ShardingSphere-Command-13] o.a.s.s.f.c.CommandExecutorTask - Exception occur:
java.lang.NullPointerException: null
at org.apache.shardingsphere.shardingproxy.frontend.mysql.MySQLErrPacketFactory.newInstance(MySQLErrPacketFactory.java:50)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.createErrorPacket(MySQLComQueryPacketExecutor.java:86)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.execute(MySQLComQueryPacketExecutor.java:76)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.executeCommand(CommandExecutorTask.java:93)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.run(CommandExecutorTask.java:71)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
[ERROR] 20:16:50.231 [ShardingSphere-Command-4] o.a.s.s.f.c.CommandExecutorTask - Exception occur:
java.lang.NullPointerException: null
at org.apache.shardingsphere.shardingproxy.frontend.mysql.MySQLErrPacketFactory.newInstance(MySQLErrPacketFactory.java:50)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.createErrorPacket(MySQLComQueryPacketExecutor.java:86)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.execute(MySQLComQueryPacketExecutor.java:76)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.executeCommand(CommandExecutorTask.java:93)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.run(CommandExecutorTask.java:71)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
[ERROR] 20:16:50.240 [ShardingSphere-Command-3] o.a.s.s.f.c.CommandExecutorTask - Exception occur:
java.lang.NullPointerException: null
at org.apache.shardingsphere.shardingproxy.frontend.mysql.MySQLErrPacketFactory.newInstance(MySQLErrPacketFactory.java:50)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.createErrorPacket(MySQLComQueryPacketExecutor.java:86)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.execute(MySQLComQueryPacketExecutor.java:76)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.executeCommand(CommandExecutorTask.java:93)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.run(CommandExecutorTask.java:71)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
[INFO ] 20:16:50.244 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ: [id: 0x65dc1c88, L:/127.0.0.1:13307 - R:/127.0.0.1:57792]
[INFO ] 20:16:50.244 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ COMPLETE
[INFO ] 20:16:50.313 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ: [id: 0x7edf2f3b, L:/127.0.0.1:13307 - R:/127.0.0.1:57794]
[INFO ] 20:16:50.313 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ COMPLETE
[ERROR] 20:16:50.318 [ShardingSphere-Command-15] o.a.s.s.f.c.CommandExecutorTask - Exception occur:
java.lang.NullPointerException: null
at org.apache.shardingsphere.shardingproxy.frontend.mysql.MySQLErrPacketFactory.newInstance(MySQLErrPacketFactory.java:50)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.createErrorPacket(MySQLComQueryPacketExecutor.java:86)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.execute(MySQLComQueryPacketExecutor.java:76)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.executeCommand(CommandExecutorTask.java:93)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.run(CommandExecutorTask.java:71)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
[ERROR] 20:16:50.369 [ShardingSphere-Command-12] o.a.s.s.f.c.CommandExecutorTask - Exception occur:
java.lang.NullPointerException: null
at org.apache.shardingsphere.shardingproxy.frontend.mysql.MySQLErrPacketFactory.newInstance(MySQLErrPacketFactory.java:50)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.createErrorPacket(MySQLComQueryPacketExecutor.java:86)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.execute(MySQLComQueryPacketExecutor.java:76)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.executeCommand(CommandExecutorTask.java:93)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.run(CommandExecutorTask.java:71)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
[INFO ] 20:16:50.394 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ: [id: 0xb5d39931, L:/127.0.0.1:13307 - R:/127.0.0.1:57798]
[INFO ] 20:16:50.394 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ COMPLETE
[INFO ] 20:16:50.447 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ: [id: 0xfe15877f, L:/127.0.0.1:13307 - R:/127.0.0.1:57802]
[INFO ] 20:16:50.447 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ: [id: 0xa3117e14, L:/127.0.0.1:13307 - R:/127.0.0.1:57804]
[INFO ] 20:16:50.448 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ COMPLETE
[ERROR] 20:16:50.448 [ShardingSphere-Command-2] o.a.s.s.f.c.CommandExecutorTask - Exception occur:
java.lang.NullPointerException: null
at org.apache.shardingsphere.shardingproxy.frontend.mysql.MySQLErrPacketFactory.newInstance(MySQLErrPacketFactory.java:50)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.createErrorPacket(MySQLComQueryPacketExecutor.java:86)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.execute(MySQLComQueryPacketExecutor.java:76)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.executeCommand(CommandExecutorTask.java:93)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.run(CommandExecutorTask.java:71)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
[INFO ] 20:16:50.466 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ: [id: 0x38f12011, L:/127.0.0.1:13307 - R:/127.0.0.1:57806]
[INFO ] 20:16:50.466 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ COMPLETE
[INFO ] 20:16:50.481 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ: [id: 0xbf006941, L:/127.0.0.1:13307 - R:/127.0.0.1:57808]
[INFO ] 20:16:50.481 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ COMPLETE
[INFO ] 20:16:50.487 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ: [id: 0x18c188d0, L:/127.0.0.1:13307 - R:/127.0.0.1:57810]
[INFO ] 20:16:50.488 [epollEventLoopGroup-2-1] i.n.handler.logging.LoggingHandler - [id: 0x9b44031c, L:/0.0.0.0:13307] READ COMPLETE
line 1:0 no viable alternative at input 'KILL'
line 1:0 mismatched input 'KILL' expecting {SELECT, INSERT, UPDATE, DELETE, CREATE, ALTER, DROP, TRUNCATE, GRANT, REVOKE, SET, WITH, DESC, BEGIN, COMMIT, ROLLBACK, SAVEPOINT, CALL, USE, DESCRIBE, SHOW, REPLACE, START, CHANGE, RENAME, REPAIR, STOP}
[ERROR] 20:16:50.527 [ShardingSphere-Command-10] o.a.s.s.f.c.CommandExecutorTask - Exception occur:
org.apache.shardingsphere.sql.parser.exception.SQLParsingException: Unsupported SQL of `KILL QUERY 6`
at org.apache.shardingsphere.sql.parser.core.parser.SQLParserExecutor.execute(SQLParserExecutor.java:49)
at org.apache.shardingsphere.sql.parser.SQLParserEngine.parse0(SQLParserEngine.java:79)
at org.apache.shardingsphere.sql.parser.SQLParserEngine.parse(SQLParserEngine.java:61)
at org.apache.shardingsphere.shardingproxy.backend.text.TextProtocolBackendHandlerFactory.newInstance(TextProtocolBackendHandlerFactory.java:69)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.<init>(MySQLComQueryPacketExecutor.java:65)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.MySQLCommandExecutorFactory.newInstance(MySQLCommandExecutorFactory.java:70)
at org.apache.shardingsphere.shardingproxy.frontend.mysql.command.MySQLCommandExecuteEngine.getCommandExecutor(MySQLCommandExecuteEngine.java:59)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.executeCommand(CommandExecutorTask.java:92)
at org.apache.shardingsphere.shardingproxy.frontend.command.CommandExecutorTask.run(CommandExecutorTask.java:71)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
</code></pre></div> | 0 |
<p dir="auto">While trying to play a large sized gif (11mb) on Android 6 it plays very slowly, even if the gif is inside the app and not fetched from the network.<br>
Smaller gifs play well, so I assume this is related to memory limit, is there anything that can be done to work around this?</p>
<p dir="auto">I already tried the override down to 50x50, still plays extremely slow.</p> | <p dir="auto">Here is a screen capture of two gifs playing w/ Glide 3.7:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/512439/31472012-f0ca007a-aea0-11e7-882e-2b4ef259a954.gif"><img src="https://user-images.githubusercontent.com/512439/31472012-f0ca007a-aea0-11e7-882e-2b4ef259a954.gif" alt="fastgif" data-animated-image="" style="max-width: 100%;"></a></p>
<p dir="auto">Here is a screen capture of the same two gifs playing w/ Glide 4.2:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/512439/31471903-2d611a6a-aea0-11e7-9f92-5ab4d83dc3cb.gif"><img src="https://user-images.githubusercontent.com/512439/31471903-2d611a6a-aea0-11e7-9f92-5ab4d83dc3cb.gif" alt="slowgif" data-animated-image="" style="max-width: 100%;"></a></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" GlideApp.with(context)
.load(url)
.diskCacheStrategy(DiskCacheStrategy.ALL)
.into(view);"><pre class="notranslate"><code class="notranslate"> GlideApp.with(context)
.load(url)
.diskCacheStrategy(DiskCacheStrategy.ALL)
.into(view);
</code></pre></div>
<p dir="auto">This happens with any gif that I've tried, here's an example:<br>
<a href="https://media.giphy.com/media/3ohjV3cQ9lvPeCVLOg/giphy.gif" rel="nofollow">https://media.giphy.com/media/3ohjV3cQ9lvPeCVLOg/giphy.gif</a></p>
<p dir="auto"><strong>Glide Version</strong>: 4.2.0<br>
<strong>Integration libraries</strong>: None<br>
<strong>Device/Android Version</strong>: Nexus 5, OnePlus One, Pixel</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
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[ x ] bug report
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
</code></pre></div>
<p dir="auto"><strong>Current behavior</strong><br>
When executing "webpack -p" against existing project w/o any changes other than upgrading the version number from rc.4 -> rc.5 (aka, not converting code to use NgModule), child components do not get rendered.</p>
<p dir="auto">"webpack -p" works when the version is rc.4 and also works with rc.5 with "webpack -d"</p>
<p dir="auto"><strong>Expected/desired behavior</strong><br>
Expected for the minified code via "webpack -p" would render all components like it does with rc.4</p>
<p dir="auto"><strong>Angular version</strong> 2.0.0-rc.5</p>
<p dir="auto"><strong>Browser</strong> latest Chrome</p>
<p dir="auto"><strong>Language</strong> TypeScript 1.8.7 | ES6; generated from VS 2015</p> | <p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[x] bug report
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[x] bug report
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
</code></pre></div>
<p dir="auto"><strong>Current behavior</strong><br>
<strong>Minified</strong> bundle breaks, but <strong>SOLVED temporarily</strong> by either:</p>
<ul dir="auto">
<li>turning <code class="notranslate">mangle</code> off (change the option <a href="https://github.com/antonybudianto/angular2-starter/blob/update-rc5/config/gulp/config.js#L54">here</a>)</li>
<li>re-order your components/pipes/directives declarations in NgModule</li>
<li>Use AOT compilation: <a href="https://github.com/angular/angular/tree/master/modules/%40angular/compiler-cli">ngc, or a.k.a @angular/compiler-cli</a> (Update from <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/IgorMinar/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/IgorMinar">@IgorMinar</a> ) -> most recommended</li>
</ul>
<p dir="auto">Error traces:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="lib-2cf12bf509.js:7 Unhandled Promise rejection: Template parse errors:
Can't bind to 'brand' since it isn't a known property of 'as-navbar'.
1. If 'as-navbar' is an Angular component and it has 'brand' input, then verify that it is part of this module.
2. If 'as-navbar' is a Web Component then add "CUSTOM_ELEMENTS_SCHEMA" to the '@NgModule.schema' of this component to suppress this message.
("<as-navbar [ERROR ->][brand]="appBrand"></as-navbar>
<div class="container" style="margin-top: 100px;">
<router-outlet></"): a@0:11 ; Zone: <root> ; Task: Promise.then ; Value:"><pre class="notranslate"><code class="notranslate">lib-2cf12bf509.js:7 Unhandled Promise rejection: Template parse errors:
Can't bind to 'brand' since it isn't a known property of 'as-navbar'.
1. If 'as-navbar' is an Angular component and it has 'brand' input, then verify that it is part of this module.
2. If 'as-navbar' is a Web Component then add "CUSTOM_ELEMENTS_SCHEMA" to the '@NgModule.schema' of this component to suppress this message.
("<as-navbar [ERROR ->][brand]="appBrand"></as-navbar>
<div class="container" style="margin-top: 100px;">
<router-outlet></"): a@0:11 ; Zone: <root> ; Task: Promise.then ; Value:
</code></pre></div>
<p dir="auto"><strong>Expected/desired behavior</strong><br>
The minified bundle should work as in RC4</p>
<p dir="auto"><strong>Reproduction of the problem</strong><br>
<a href="https://github.com/OasisDigital/rc5-declaration-order">https://github.com/OasisDigital/rc5-declaration-order</a></p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="npm install
// try run in dev, it works well now
npm start
// try run in prod, the bundle created but break
npm run serve-build
// now try changing the mangle option and retry, it works!"><pre class="notranslate">npm install
// try run <span class="pl-k">in</span> dev, it works well now
npm start
// try run <span class="pl-k">in</span> prod, the bundle created but <span class="pl-c1">break</span>
npm run serve-build
// now try changing the mangle option and retry, it works<span class="pl-k">!</span></pre></div>
<p dir="auto"><strong>What is the expected behavior?</strong><br>
Should work as in RC4</p>
<p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong></p>
<p dir="auto"><strong>Please tell us about your environment:</strong></p>
<ul dir="auto">
<li><strong>Angular version:</strong> 2.0.0-rc.5</li>
<li><strong>Browser:</strong> [all | Chrome 52 | Web Browser</li>
<li><strong>Language:</strong> [all | TypeScript 1.8.10]</li>
</ul> | 1 |
<p dir="auto"><strong>Apache Airflow version</strong>:<br>
2.0.0</p>
<p dir="auto"><strong>Kubernetes version (if you are using kubernetes)</strong> (use <code class="notranslate">kubectl version</code>):<br>
N/A</p>
<p dir="auto"><strong>Environment</strong>:<br>
virtualenv</p>
<ul dir="auto">
<li><strong>Cloud provider or hardware configuration</strong>: N/A - Localhost:8080</li>
<li><strong>OS</strong> (e.g. from /etc/os-release): MacOS Cataline 10.15.7</li>
<li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>): Kernel Version 19.6.0</li>
<li><strong>Install tools</strong>: pip</li>
<li><strong>Others</strong>:</li>
</ul>
<p dir="auto"><strong>What happened</strong>:<br>
Could not fire up 'airflow webserver.' Error Message as follows:</p>
<h2 dir="auto">Python version: 3.8.3<br>
Airflow version: 2.0.0<br>
Node: CHAAZML-T3CAMD6</h2>
<p dir="auto">Traceback (most recent call last):<br>
File "/Users/Me/projects/git_stuff/pols_analytics_general/airflow/lib/python3.8/site-packages/flask/app.py", line 2447, in wsgi_app<br>
response = self.full_dispatch_request()<br>
File "/Users/Me/projects/git_stuff/pols_analytics_general/airflow/lib/python3.8/site-packages/flask/app.py", line 1953, in full_dispatch_request<br>
return self.finalize_request(rv)<br>
File "/Users/Me/projects/git_stuff/pols_analytics_general/airflow/lib/python3.8/site-packages/flask/app.py", line 1970, in finalize_request<br>
response = self.process_response(response)<br>
File "/Users/Me/projects/git_stuff/pols_analytics_general/airflow/lib/python3.8/site-packages/flask/app.py", line 2269, in process_response<br>
self.session_interface.save_session(self, ctx.session, response)<br>
File "/Users/Me/projects/git_stuff/pols_analytics_general/airflow/lib/python3.8/site-packages/flask/sessions.py", line 379, in save_session<br>
response.set_cookie(<br>
File "/Users/Me/projects/git_stuff/pols_analytics_general/airflow/lib/python3.8/site-packages/werkzeug/wrappers/base_response.py", line 468, in set_cookie<br>
dump_cookie(<br>
File "/Users/Me/projects/git_stuff/pols_analytics_general/airflow/lib/python3.8/site-packages/werkzeug/http.py", line 1217, in dump_cookie<br>
raise ValueError("SameSite must be 'Strict', 'Lax', or 'None'.")<br>
ValueError: SameSite must be 'Strict', 'Lax', or 'None'.</p>
<p dir="auto"><strong>What you expected to happen</strong>:<br>
Webserver start.</p>
<p dir="auto">Uknown</p>
<p dir="auto"><strong>How to reproduce it</strong>:</p>
<p dir="auto"><strong>Anything else we need to know</strong>:</p>
<p dir="auto">Log in Terminal says:</p>
<p dir="auto">/Users/me/projects/git_stuff/pols_analytics_general/airflow/lib/python3.8/site-packages/airflow/configuration.py:324 DeprecationWarning: The statsd_on option in [scheduler] has been moved to the statsd_on option in [metrics] - the old setting has been used, but please update your config.<br>
/Users/me/projects/git_stuff/pols_analytics_general/airflow/lib/python3.8/site-packages/airflow/configuration.py:324 DeprecationWarning: The logging_config_class option in [core] has been moved to the logging_config_class option in [logging] - the old setting has been used, but please update your config.<br>
/Users/me/projects/git_stuff/pols_analytics_general/airflow/lib/python3.8/site-packages/airflow/configuration.py:324 DeprecationWarning: The task_log_reader option in [core] has been moved to the task_log_reader option in [logging] - the old setting has been used, but please update your config.</p> | <h3 dir="auto">Apache Airflow version</h3>
<p dir="auto">2.3.3 (latest released)</p>
<h3 dir="auto">What happened</h3>
<p dir="auto">In 2.3.3</p>
<p dir="auto">If I use <a href="https://airflow.apache.org/docs/apache-airflow/stable/plugins.html#plugins-as-python-packages" rel="nofollow">https://airflow.apache.org/docs/apache-airflow/stable/plugins.html#plugins-as-python-packages</a> feature, then I see these Error:</p>
<p dir="auto">short:<br>
<code class="notranslate">ValueError: The name 'airs' is already registered for this blueprint. Use 'name=' to provide a unique name.</code></p>
<p dir="auto">long:</p>
<blockquote>
<p dir="auto">i'm trying to reproduce it...</p>
</blockquote>
<p dir="auto">If I don't use it(workarounding by AIRFLOW__CORE__PLUGINS_FOLDER), errors doesn't occur.</p>
<p dir="auto">It didn't happend in 2.3.2 and earlier</p>
<h3 dir="auto">What you think should happen instead</h3>
<p dir="auto">Looks like plugins are import multiple times if it is plugins-as-python-packages.</p>
<p dir="auto">Perhaps flask's major version change is the main cause.<br>
Presumably, in flask 1.0, duplicate registration of blueprint was quietly filtered out, but in 2.0 it seems to have been changed to generate an error. (I am trying to find out if this hypothesis is correct)</p>
<p dir="auto">Anyway, use the latest version of FAB is important. we will have to adapt to this change, so plugins will have to be imported once regardless how it defined.</p>
<h3 dir="auto">How to reproduce</h3>
<blockquote>
<p dir="auto">It was reproduced in the environment used at work, but it is difficult to disclose or explain it.<br>
I'm working to reproduce it with the breeze command, and I open the issue first with the belief that it's not just me.</p>
</blockquote>
<h3 dir="auto">Operating System</h3>
<p dir="auto">CentOS Linux release 7.9.2009 (Core)</p>
<h3 dir="auto">Versions of Apache Airflow Providers</h3>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ SHIV_INTERPRETER=1 airsflow -m pip freeze | grep apache-
apache-airflow==2.3.3
apache-airflow-providers-apache-hive==3.1.0
apache-airflow-providers-apache-spark==2.1.0
apache-airflow-providers-celery==3.0.0
apache-airflow-providers-common-sql==1.0.0
apache-airflow-providers-ftp==3.1.0
apache-airflow-providers-http==3.0.0
apache-airflow-providers-imap==3.0.0
apache-airflow-providers-postgres==5.1.0
apache-airflow-providers-redis==3.0.0
apache-airflow-providers-sqlite==3.1.0"><pre class="notranslate">$ SHIV_INTERPRETER=1 airsflow -m pip freeze <span class="pl-k">|</span> grep apache-
apache-airflow==2.3.3
apache-airflow-providers-apache-hive==3.1.0
apache-airflow-providers-apache-spark==2.1.0
apache-airflow-providers-celery==3.0.0
apache-airflow-providers-common-sql==1.0.0
apache-airflow-providers-ftp==3.1.0
apache-airflow-providers-http==3.0.0
apache-airflow-providers-imap==3.0.0
apache-airflow-providers-postgres==5.1.0
apache-airflow-providers-redis==3.0.0
apache-airflow-providers-sqlite==3.1.0</pre></div>
<p dir="auto">but I think these are irrelevant.</p>
<h3 dir="auto">Deployment</h3>
<p dir="auto">Other 3rd-party Helm chart</p>
<h3 dir="auto">Deployment details</h3>
<p dir="auto">docker image based on centos7, python 3.9.10 interpreter, self-written helm2 chart ....</p>
<p dir="auto">... but I think these are irrelevant.</p>
<h3 dir="auto">Anything else</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Are you willing to submit PR?</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Yes I am willing to submit a PR!</li>
</ul>
<h3 dir="auto">Code of Conduct</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow this project's <a href="https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a></li>
</ul> | 0 |
<p dir="auto">This doesn't seem right:</p>
<div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia> [1][begin:end]
1-element Vector{Int64}:
1
julia> @less [1][begin:end]
ERROR: UndefVarError: begin not defined
Stacktrace:
[1] top-level scope
@ REPL[16]:1"><pre class="notranslate">julia<span class="pl-k">></span> [<span class="pl-c1">1</span>][<span class="pl-c1">begin</span><span class="pl-k">:</span><span class="pl-c1">end</span>]
<span class="pl-c1">1</span><span class="pl-k">-</span>element Vector{Int64}<span class="pl-k">:</span>
<span class="pl-c1">1</span>
julia<span class="pl-k">></span> <span class="pl-c1">@less</span> [<span class="pl-c1">1</span>][<span class="pl-c1">begin</span><span class="pl-k">:</span><span class="pl-c1">end</span>]
ERROR<span class="pl-k">:</span> UndefVarError<span class="pl-k">:</span> <span class="pl-k">begin</span> not defined
Stacktrace<span class="pl-k">:</span>
[<span class="pl-c1">1</span>] top<span class="pl-k">-</span>level scope
@ REPL[<span class="pl-c1">16</span>]<span class="pl-k">:</span><span class="pl-c1">1</span></pre></div>
<p dir="auto">Julia 1.6.1</p> | <p dir="auto">This would be heavily breaking, so definitely not a 1.x thing, but it has come up (I can't recall where but perhaps <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/JeffBezanson/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/JeffBezanson">@JeffBezanson</a> can link) that comparing unrelated objects with <code class="notranslate">==</code> can hide bugs in situations where it doesn't make sense to compare two objects. In static languages, this will typically be a type error, whereas dynamic languages have traditionally been quite liberal with what can be compared for equality since it's often useful to be able to check whether two objects are the same object, for example, or to have heterogenous collections like dicts where equality is used to compare very different kinds of objects sometimes. The best practice in Julia for such situations, however, is to use <code class="notranslate">===</code> for comparing object identity when you want the strict comparison and <code class="notranslate">isequal</code> to compare objects in collections where you need an intuitive equivalence relation. That actually leaves us in the position to remove the <code class="notranslate">x == y</code> fallback that calls <code class="notranslate">x === y</code> and make <code class="notranslate">==</code> fail unless there's an explicit method for the comparison. Any case where <code class="notranslate">x == y</code> was previously being used to compare disparate objects would then have to changed to using <code class="notranslate">===</code> or <code class="notranslate">isequal</code> as appropriate.</p> | 0 |
<p dir="auto">We've had quite a few issues crop up about how to define types of outputs given inputs. My view is that this is revealing limitations in the promotion system. A proposal to deal with this might be to define arithmetic on types.</p>
<p dir="auto">For example, here would be some rules:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Int*Int == Int
Int+Int == Int
Meter{Float64}+Meter{Float64} == Meter{Float64}
Meter{Float64}*Meter{Float64} == Meter{Float64}^2
Meter{Float64}/Meter{Float64} == Float64
Matrix{Int}+Matrix{Float64} == Matrix{Float64}"><pre class="notranslate"><code class="notranslate">Int*Int == Int
Int+Int == Int
Meter{Float64}+Meter{Float64} == Meter{Float64}
Meter{Float64}*Meter{Float64} == Meter{Float64}^2
Meter{Float64}/Meter{Float64} == Float64
Matrix{Int}+Matrix{Float64} == Matrix{Float64}
</code></pre></div>
<p dir="auto">and so on.</p> | <p dir="auto">3^(-5) gives a Float64 of value 0.004115226337448558</p>
<p dir="auto">while</p>
<p dir="auto">@code_llvm ^(3, -5) emits the following llvm code</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="; @ intfuncs.jl:221 within `^'
define i64 @"julia_^_11097"(i64, i64) {
top:
%2 = call i64 @julia_power_by_squaring_990(i64 %0, i64 %1)
ret i64 %2
}"><pre class="notranslate"><code class="notranslate">; @ intfuncs.jl:221 within `^'
define i64 @"julia_^_11097"(i64, i64) {
top:
%2 = call i64 @julia_power_by_squaring_990(i64 %0, i64 %1)
ret i64 %2
}
</code></pre></div>
<p dir="auto">which indicates that the function has an integer return type.</p>
<p dir="auto">The output of versioninfo() is as follows-</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Julia Version 1.2.0
Commit c6da87ff4b (2019-08-20 00:03 UTC)
Platform Info:
OS: macOS (x86_64-apple-darwin18.6.0)
CPU: Intel(R) Core(TM) i5-5257U CPU @ 2.70GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-6.0.1 (ORCJIT, broadwell)
Environment:
JULIA_EDITOR = atom -a
JULIA_NUM_THREADS = 2"><pre class="notranslate"><code class="notranslate">Julia Version 1.2.0
Commit c6da87ff4b (2019-08-20 00:03 UTC)
Platform Info:
OS: macOS (x86_64-apple-darwin18.6.0)
CPU: Intel(R) Core(TM) i5-5257U CPU @ 2.70GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-6.0.1 (ORCJIT, broadwell)
Environment:
JULIA_EDITOR = atom -a
JULIA_NUM_THREADS = 2
</code></pre></div> | 0 |
<p dir="auto">I created a custom JSON encoder class extended from flask.json.JSONEncoder but it is not called when calling flask.jsonify. Additionally, I removed my custom JSON encoder and confirmed that flask.json.JSONEncoder isn't called either via a break statement in Pycharm.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from flask import Flask
from flask import jsonify
from flask.json import JSONEncoder
class MyEncoder(JSONEncoder):
def default(self, obj):
if hasattr(obj, '__json__'):
return obj.__json__()
else:
try:
iterable = iter(obj)
except TypeError:
pass
else:
return list(iterable)
return JSONEncoder.default(self, obj)
class MyClass(object):
key = 'a'
value = 'b'
def __json__(self):
return {'key': self.key, 'value': self.value}
app = Flask(__name__)
app.json_encoder = MyEncoder
@app.route('/')
def hello_world():
return jsonify(MyClass())
if __name__ == '__main__':
app.run(debug=True)"><pre class="notranslate"><code class="notranslate">from flask import Flask
from flask import jsonify
from flask.json import JSONEncoder
class MyEncoder(JSONEncoder):
def default(self, obj):
if hasattr(obj, '__json__'):
return obj.__json__()
else:
try:
iterable = iter(obj)
except TypeError:
pass
else:
return list(iterable)
return JSONEncoder.default(self, obj)
class MyClass(object):
key = 'a'
value = 'b'
def __json__(self):
return {'key': self.key, 'value': self.value}
app = Flask(__name__)
app.json_encoder = MyEncoder
@app.route('/')
def hello_world():
return jsonify(MyClass())
if __name__ == '__main__':
app.run(debug=True)
</code></pre></div> | <p dir="auto">ECMAscript 5 changed behavior of Array literals. That part of the documentation is outdated by now. We should check what browsers are affected by this and update the docs accordingly.</p> | 1 |
<h3 dir="auto">Bug report</h3>
<p dir="auto"><strong>Bug summary</strong></p>
<p dir="auto">TypeError for internal matplotlib code when constructing a figure with a specified figsize</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="# Paste your code here
ipython --pylab
>>> figure(figsize=(11,5))"><pre class="notranslate"><span class="pl-c"># Paste your code here</span>
<span class="pl-s1">ipython</span> <span class="pl-c1">-</span><span class="pl-c1">-</span><span class="pl-s1">pylab</span>
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-en">figure</span>(<span class="pl-s1">figsize</span><span class="pl-c1">=</span>(<span class="pl-c1">11</span>,<span class="pl-c1">5</span>))</pre></div>
<p dir="auto"><strong>Actual outcome</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-1-6b0588efc287> in <module>()
----> 1 figure(figsize=(11,5))
/Users/nevay/Library/Python/2.7/lib/python/site-packages/matplotlib/pyplot.pyc in figure(num, figsize, dpi, facecolor, edgecolor, frameon, FigureClass, clear, **kwargs)
554 # FigureManager base class.
555 if matplotlib.is_interactive():
--> 556 draw_if_interactive()
557
558 if _INSTALL_FIG_OBSERVER:
/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/IPython/utils/decorators.pyc in wrapper(*args, **kw)
41 def wrapper(*args,**kw):
42 wrapper.called = False
---> 43 out = func(*args,**kw)
44 wrapper.called = True
45 return out
/Users/nevay/Library/Python/2.7/lib/python/site-packages/matplotlib/backend_bases.pyc in draw_if_interactive(cls)
183 manager = Gcf.get_active()
184 if manager:
--> 185 cls.trigger_manager_draw(manager)
186
187 @classmethod
TypeError: unbound method trigger_manager_draw() must be called with _BackendMac instance as first argument (got FigureManagerMac instance instead)"><pre class="notranslate"><code class="notranslate">---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-1-6b0588efc287> in <module>()
----> 1 figure(figsize=(11,5))
/Users/nevay/Library/Python/2.7/lib/python/site-packages/matplotlib/pyplot.pyc in figure(num, figsize, dpi, facecolor, edgecolor, frameon, FigureClass, clear, **kwargs)
554 # FigureManager base class.
555 if matplotlib.is_interactive():
--> 556 draw_if_interactive()
557
558 if _INSTALL_FIG_OBSERVER:
/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/IPython/utils/decorators.pyc in wrapper(*args, **kw)
41 def wrapper(*args,**kw):
42 wrapper.called = False
---> 43 out = func(*args,**kw)
44 wrapper.called = True
45 return out
/Users/nevay/Library/Python/2.7/lib/python/site-packages/matplotlib/backend_bases.pyc in draw_if_interactive(cls)
183 manager = Gcf.get_active()
184 if manager:
--> 185 cls.trigger_manager_draw(manager)
186
187 @classmethod
TypeError: unbound method trigger_manager_draw() must be called with _BackendMac instance as first argument (got FigureManagerMac instance instead)
</code></pre></div>
<p dir="auto"><strong>Expected outcome</strong><br>
A figure is constructed without error.</p>
<p dir="auto"><strong>Matplotlib version</strong></p>
<ul dir="auto">
<li>Operating system: Mac OSX 11.6</li>
<li>Matplotlib version: 2.1.0</li>
<li>Matplotlib backend (<code class="notranslate">print(matplotlib.get_backend())</code>):MacOSX</li>
<li>Python version: Python 2.7.14</li>
<li>Jupyter version (if applicable):</li>
<li>Other libraries: py27-ipython @5.4.0_0</li>
</ul>
<p dir="auto">Software installed through macports.</p>
<p dir="auto">This seems to work with just ipython</p>
<p dir="auto">ipython</p>
<blockquote>
<blockquote>
<blockquote>
<p dir="auto">import matplotlib.pyplot as plt<br>
plt.figure(figsize=(11,5))<br>
plt.show(block=False)</p>
</blockquote>
</blockquote>
</blockquote> | <h3 dir="auto">Bug report</h3>
<p dir="auto"><strong>Bug summary</strong></p>
<p dir="auto">matplotlib 2.1.0 from ipython with backend macosx -><br>
need _BackendMac, got FigureManagerMac</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="# Paste your code here
#
#
import sys
import matplotlib as mpl
import matplotlib.pyplot as pl
print "matplotlib.__version__ :", mpl.__version__
print "pl.rcParams['backend'] :", pl.rcParams["backend"]
print "sys.version :", sys.version
# -> /Library/Frameworks/Python.framework/Versions/2.7/bin/python
# a framework build ? https://matplotlib.org/faq/osx_framework.html
fig, ax = pl.subplots()"><pre class="notranslate"><span class="pl-c"># Paste your code here</span>
<span class="pl-c">#</span>
<span class="pl-c">#</span>
<span class="pl-k">import</span> <span class="pl-s1">sys</span>
<span class="pl-k">import</span> <span class="pl-s1">matplotlib</span> <span class="pl-k">as</span> <span class="pl-s1">mpl</span>
<span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">pyplot</span> <span class="pl-k">as</span> <span class="pl-s1">pl</span>
<span class="pl-k">print</span> <span class="pl-s">"matplotlib.__version__ :"</span>, <span class="pl-s1">mpl</span>.<span class="pl-s1">__version__</span>
<span class="pl-k">print</span> <span class="pl-s">"pl.rcParams['backend'] :"</span>, <span class="pl-s1">pl</span>.<span class="pl-s1">rcParams</span>[<span class="pl-s">"backend"</span>]
<span class="pl-k">print</span> <span class="pl-s">"sys.version :"</span>, <span class="pl-s1">sys</span>.<span class="pl-s1">version</span>
<span class="pl-c"># -> /Library/Frameworks/Python.framework/Versions/2.7/bin/python</span>
<span class="pl-c"># a framework build ? https://matplotlib.org/faq/osx_framework.html </span>
<span class="pl-s1">fig</span>, <span class="pl-s1">ax</span> <span class="pl-c1">=</span> <span class="pl-s1">pl</span>.<span class="pl-en">subplots</span>()</pre></div>
<p dir="auto"><strong>Actual outcome</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# If applicable, paste the console output here
#
#
IPython
matplotlib.__version__ : 2.1.0
pl.rcParams['backend'] : MacOSX
sys.version : 2.7.14 (v2.7.14:84471935ed, Sep 16 2017, 12:01:12)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)]
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
/Users/bz/py/etc/plot/mpl210.py in <module>()
19
20
---> 21 fig, ax = pl.subplots()
22
/Library/Python/2.7/site-packages/matplotlib/pyplot.pyc in subplots(nrows, ncols, sharex, sharey, squeeze, subplot_kw, gridspec_kw, **fig_kw)
1177 subplot
1178 """
-> 1179 fig = figure(**fig_kw)
1180 axs = fig.subplots(nrows=nrows, ncols=ncols, sharex=sharex, sharey=sharey,
1181 squeeze=squeeze, subplot_kw=subplot_kw,
/Library/Python/2.7/site-packages/matplotlib/pyplot.pyc in figure(num, figsize, dpi, facecolor, edgecolor, frameon, FigureClass, clear, **kwargs)
554 # FigureManager base class.
555 if matplotlib.is_interactive():
--> 556 draw_if_interactive()
557
558 if _INSTALL_FIG_OBSERVER:
/Library/Python/2.7/site-packages/matplotlib/backend_bases.py in draw_if_interactive(cls)
183 manager = Gcf.get_active()
184 if manager:
--> 185 cls.trigger_manager_draw(manager)
186
187 @classmethod
TypeError: unbound method trigger_manager_draw() must be called with _BackendMac instance as first argument (got FigureManagerMac instance instead)
"><pre class="notranslate"><code class="notranslate"># If applicable, paste the console output here
#
#
IPython
matplotlib.__version__ : 2.1.0
pl.rcParams['backend'] : MacOSX
sys.version : 2.7.14 (v2.7.14:84471935ed, Sep 16 2017, 12:01:12)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)]
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
/Users/bz/py/etc/plot/mpl210.py in <module>()
19
20
---> 21 fig, ax = pl.subplots()
22
/Library/Python/2.7/site-packages/matplotlib/pyplot.pyc in subplots(nrows, ncols, sharex, sharey, squeeze, subplot_kw, gridspec_kw, **fig_kw)
1177 subplot
1178 """
-> 1179 fig = figure(**fig_kw)
1180 axs = fig.subplots(nrows=nrows, ncols=ncols, sharex=sharex, sharey=sharey,
1181 squeeze=squeeze, subplot_kw=subplot_kw,
/Library/Python/2.7/site-packages/matplotlib/pyplot.pyc in figure(num, figsize, dpi, facecolor, edgecolor, frameon, FigureClass, clear, **kwargs)
554 # FigureManager base class.
555 if matplotlib.is_interactive():
--> 556 draw_if_interactive()
557
558 if _INSTALL_FIG_OBSERVER:
/Library/Python/2.7/site-packages/matplotlib/backend_bases.py in draw_if_interactive(cls)
183 manager = Gcf.get_active()
184 if manager:
--> 185 cls.trigger_manager_draw(manager)
186
187 @classmethod
TypeError: unbound method trigger_manager_draw() must be called with _BackendMac instance as first argument (got FigureManagerMac instance instead)
</code></pre></div>
<p dir="auto"><strong>Expected outcome</strong></p>
<p dir="auto">used to work: 2.0.2</p>
<p dir="auto"><strong>Matplotlib version</strong></p>
<ul dir="auto">
<li>Operating system: 10.8.3</li>
<li>Matplotlib version: 2.1.0</li>
<li>Matplotlib backend (<code class="notranslate">print(matplotlib.get_backend())</code>): macosx</li>
<li>Python version: 2.7.14</li>
<li>Jupyter version (if applicable):</li>
<li>Other libraries:</li>
</ul>
<p dir="auto">pip install --upgrade --user matplotlib<br>
python.org python-2.7.14-macosx10.6.pkg</p>
<p dir="auto">Sorry if this a "framework build issue" which I don't understand, but 2.0.2 worked.</p>
<p dir="auto">Also, kudos for the improved doc in 2.1 !</p> | 1 |
<h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: Win32NT 10.0.18362.0
Windows Terminal version (if applicable): 0.5.2762.0"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: Win32NT 10.0.18362.0
Windows Terminal version (if applicable): 0.5.2762.0
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="echo -e '\e[4m underlined \e[33m yellow \e[39m should still be underlined \e[m'"><pre class="notranslate"><code class="notranslate">echo -e '\e[4m underlined \e[33m yellow \e[39m should still be underlined \e[m'
</code></pre></div>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto">The entire line should be underlined.</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">The "should still be underlined" bits aren't underlined.</p>
<p dir="auto">Note that SGR codes <code class="notranslate">22</code>, <code class="notranslate">27</code>, <code class="notranslate">39</code> and <code class="notranslate">49</code> seem to cause this effect, but only if they're predeced by a <code class="notranslate">1</code>, <code class="notranslate">7</code>, <code class="notranslate">30-37</code> or <code class="notranslate">40-47</code>, resp., that is, only if they do actually turn off some other attribute.</p>
<p dir="auto">Also note that if the "should still be underlined" text is made longer so that it overflows to the next line (or even multiple new lines), it's underlined in the last one of these lines. This makes it perhaps a reincarnation of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="286718366" data-permission-text="Title is private" data-url="https://github.com/microsoft/terminal/issues/47" data-hovercard-type="issue" data-hovercard-url="/microsoft/terminal/issues/47/hovercard" href="https://github.com/microsoft/terminal/issues/47">#47</a>.</p>
<p dir="auto">Furthermore, changing the window width and thus causing a reflow of the text removes the underlining from the last line.</p> | <h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: Microsoft Windows [Version 10.0.18362.356]
Windows Terminal version (if applicable): 0.5.2681.0
# Steps to reproduce
Try to select, copy and paste with the normal windows shortcuts for these operations.
# Expected behavior
I can select, copy and paste text with these shortcuts just like in the old console
# Actual behavior
The operations do not work"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: Microsoft Windows [Version 10.0.18362.356]
Windows Terminal version (if applicable): 0.5.2681.0
# Steps to reproduce
Try to select, copy and paste with the normal windows shortcuts for these operations.
# Expected behavior
I can select, copy and paste text with these shortcuts just like in the old console
# Actual behavior
The operations do not work
</code></pre></div> | 0 |
<p dir="auto">A very useful feature of Powershell terminal is being able to get all commands that start with a particular string just writing the initial letters and clicking Ctrl-Space... that give us a bunch of similar commands to select from. That feature seems missing in new Windows Terminal.<br>
Example: typing ConvertTo<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/6997495/65764981-40e16c00-e127-11e9-8900-f033ce210ba7.png"><img src="https://user-images.githubusercontent.com/6997495/65764981-40e16c00-e127-11e9-8900-f033ce210ba7.png" alt="imagen" style="max-width: 100%;"></a></p> | <h1 dir="auto">Environment</h1>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: 10.0.18990.1
Windows Terminal version 0.5.2681.0
Windows Snip & Sketch"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: 10.0.18990.1
Windows Terminal version 0.5.2681.0
Windows Snip & Sketch
</code></pre></div>
<h1 dir="auto">Steps to reproduce</h1>
<p dir="auto">When I open a Terminal window, and start writing some commands, some lines doesn't show properly and are truncated. I think the problem might be my current Windows resolution, which I set on 125%</p>
<h1 dir="auto">Expected behavior</h1>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/45128551/65830815-42d83600-e2b3-11e9-92d7-7a162d56deaa.png"><img src="https://user-images.githubusercontent.com/45128551/65830815-42d83600-e2b3-11e9-92d7-7a162d56deaa.png" alt="image" style="max-width: 100%;"></a><br>
The most weird thing is that when taking a screenshot with the Windows Tool, everything appears normal on the screenshot like above.</p>
<h1 dir="auto">Actual behavior</h1>
<p dir="auto">Here's below what I really see on my screen (when taking a photo of it). For eg., first line is truncated.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/45128551/65831538-fb55a800-e2ba-11e9-94ab-53d6df5f4e1e.JPG"><img src="https://user-images.githubusercontent.com/45128551/65831538-fb55a800-e2ba-11e9-94ab-53d6df5f4e1e.JPG" alt="IMG_2013 232" style="max-width: 100%;"></a><br>
<em>Sorry for the image Github doesn't want to turn it anyway but clicking on it shows the photo correctly :)</em></p> | 0 |
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ godep restore
can't load package: package github.com/influxdb/influxdb/client: code in directory /home/decarr/code/kubernetes/src/github.com/influxdb/influxdb/client expects import "github.com/influxdata/influxdb/client"
godep: restore: exit status 1
can't load package: package github.com/influxdb/influxdb/influxql: code in directory /home/decarr/code/kubernetes/src/github.com/influxdb/influxdb/influxql expects import "github.com/influxdata/influxdb/influxql"
godep: restore: exit status 1
package github.com/influxdb/influxdb/meta: cannot find package "github.com/influxdb/influxdb/meta" in any of:
/usr/lib/golang/src/github.com/influxdb/influxdb/meta (from $GOROOT)
/home/decarr/code/kubernetes/src/github.com/influxdb/influxdb/meta (from $GOPATH)
godep: restore: exit status 1
package github.com/influxdb/influxdb/snapshot: cannot find package "github.com/influxdb/influxdb/snapshot" in any of:
/usr/lib/golang/src/github.com/influxdb/influxdb/snapshot (from $GOROOT)
/home/decarr/code/kubernetes/src/github.com/influxdb/influxdb/snapshot (from $GOPATH)
godep: restore: exit status 1
can't load package: package github.com/influxdb/influxdb/toml: code in directory /home/decarr/code/kubernetes/src/github.com/influxdb/influxdb/toml expects import "github.com/influxdata/influxdb/toml"
godep: restore: exit status 1
can't load package: package github.com/influxdb/influxdb/tsdb: code in directory /home/decarr/code/kubernetes/src/github.com/influxdb/influxdb/tsdb expects import "github.com/influxdata/influxdb/tsdb"
godep: restore: exit status 1"><pre class="notranslate"><code class="notranslate">$ godep restore
can't load package: package github.com/influxdb/influxdb/client: code in directory /home/decarr/code/kubernetes/src/github.com/influxdb/influxdb/client expects import "github.com/influxdata/influxdb/client"
godep: restore: exit status 1
can't load package: package github.com/influxdb/influxdb/influxql: code in directory /home/decarr/code/kubernetes/src/github.com/influxdb/influxdb/influxql expects import "github.com/influxdata/influxdb/influxql"
godep: restore: exit status 1
package github.com/influxdb/influxdb/meta: cannot find package "github.com/influxdb/influxdb/meta" in any of:
/usr/lib/golang/src/github.com/influxdb/influxdb/meta (from $GOROOT)
/home/decarr/code/kubernetes/src/github.com/influxdb/influxdb/meta (from $GOPATH)
godep: restore: exit status 1
package github.com/influxdb/influxdb/snapshot: cannot find package "github.com/influxdb/influxdb/snapshot" in any of:
/usr/lib/golang/src/github.com/influxdb/influxdb/snapshot (from $GOROOT)
/home/decarr/code/kubernetes/src/github.com/influxdb/influxdb/snapshot (from $GOPATH)
godep: restore: exit status 1
can't load package: package github.com/influxdb/influxdb/toml: code in directory /home/decarr/code/kubernetes/src/github.com/influxdb/influxdb/toml expects import "github.com/influxdata/influxdb/toml"
godep: restore: exit status 1
can't load package: package github.com/influxdb/influxdb/tsdb: code in directory /home/decarr/code/kubernetes/src/github.com/influxdb/influxdb/tsdb expects import "github.com/influxdata/influxdb/tsdb"
godep: restore: exit status 1
</code></pre></div> | <p dir="auto"><strong>Is this a request for help?</strong> (If yes, you should use our troubleshooting guide and community support channels, see <a href="http://kubernetes.io/docs/troubleshooting/" rel="nofollow">http://kubernetes.io/docs/troubleshooting/</a>.): No.</p>
<p dir="auto"><strong>What keywords did you search in Kubernetes issues before filing this one?</strong> (If you have found any duplicates, you should instead reply there.):</p>
<p dir="auto">documentation title<br>
docs title</p>
<hr>
<p dir="auto"><strong>Is this a BUG REPORT or FEATURE REQUEST?</strong> (choose one): BUG REPORT</p>
<p dir="auto"><strong>Kubernetes version</strong> (use <code class="notranslate">kubectl version</code>): N/A</p>
<p dir="auto">This is about docs on kubernetes.io.</p>
<p dir="auto"><strong>What happened</strong>: Searched for "kubernetes readiness probe" on google, noticed title of first result was "Kubernetes - Persistent Storage", but clicked on it anyway since there was a fitting subheading with relevant-seeming info, as well as a potentially-matching URL: <a href="http://kubernetes.io/docs/user-guide/production-pods/" rel="nofollow">http://kubernetes.io/docs/user-guide/production-pods/</a></p>
<p dir="auto"><strong>What you expected to happen</strong>: That that particular docs page would be titled something like "Production Pods" or "Working with containers in production" (its link name in the menu on the left).</p>
<p dir="auto"><strong>How to reproduce it</strong> (as minimally and precisely as possible): (see above)</p>
<p dir="auto"><strong>Anything else do we need to know</strong>:</p>
<hr>
<p dir="auto">I would gladly send a PR to fix the issue, if someone kindly pointed me towards where such a change may be done. I'm assuming there's some kind of config file or text file from which the menu item titles are drawn, which could be used to fix this. Not sure if there's a more appropriate way than to use those titles as both page title and auto-generating an initial heading.</p> | 0 |
<p dir="auto"><strong>I'm submitting a Improvement for documents</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ ] bug report
[x] feature request
[x] improvement request
[ ] support request"><pre class="notranslate"><code class="notranslate">[ ] bug report
[x] feature request
[x] improvement request
[ ] support request
</code></pre></div>
<p dir="auto"><strong>Current behavior</strong><br>
For example, in <a href="https://angular.io/docs/ts/latest/api/core/index/HostListener-interface.html" rel="nofollow">HostListener</a> doc, there is no detailed descriptions for <code class="notranslate">eventName</code>.<br>
In common that should be dom event names, but actually we could use it some way like <code class="notranslate">document:click</code>/<code class="notranslate">keyup.esc</code> etc.</p>
<p dir="auto"><strong>Expected behavior</strong><br>
I think it should be a more clear doc for any details even that advanced usage,<br>
e.g. how can we use that <code class="notranslate">eventName</code> in <code class="notranslate">HostListener</code> decorator.<br>
Angular is moving fast, any details should be checkable for developers.</p>
<p dir="auto">Thx.</p> | <p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[x] bug report
[ ] feature request
[ ] support request"><pre class="notranslate"><code class="notranslate">[x] bug report
[ ] feature request
[ ] support request
</code></pre></div>
<p dir="auto"><strong>Current behavior</strong><br>
Generating a correct URL from a route containing an auxiliary route seems to be impossible in some cases. For example, in my use case, the correct route would be /Test/(List//details:/Details/1) but the router generates /Test/List(details:Details/1).</p>
<p dir="auto"><strong>Expected behavior</strong><br>
The router should generate the correct route.</p>
<p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong><br>
Here is the plunker: <a href="https://plnkr.co/edit/2xo6WFI2JzGbIcAzio04" rel="nofollow">https://plnkr.co/edit/2xo6WFI2JzGbIcAzio04</a></p>
<p dir="auto"><strong>What is the motivation/use case for changing the behavior?</strong><br>
In my plunker, I want to generate the <strong>details</strong> below the <strong>list</strong> in an auxiliary route.</p>
<p dir="auto"><strong>Please tell us about your environment:</strong></p>
<p dir="auto">Windows/ASP.NET</p>
<ul dir="auto">
<li>
<p dir="auto"><strong>Angular version:</strong> 2.0.X<br>
Angular 2.3</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>
all</p>
</li>
<li>
<p dir="auto"><strong>Language:</strong> [all | TypeScript X.X | ES6/7 | ES5]<br>
TS 2.1, ES5</p>
</li>
</ul> | 0 |
<p dir="auto">If I have a form 'A' which has an embedded form 'B' that map an object, and that object has defaults values in the constructor, with the current implementation I lose those defaults values when displaying the 'A' form. Of course this is bad...</p>
<p dir="auto">Is there a way to fix this?</p> | <p dir="auto">It is currently not possible to set default values for a <code class="notranslate">Collection</code> prototype. The default values specified in an entity are not passed to the prototype. However, setting the <code class="notranslate">data</code> option causes the prototype to have the value set.</p> | 1 |
<p dir="auto">The <code class="notranslate">editor.insertSpaces</code> setting can autodetect if it should insert spaces or tabs. Some people like tabs more then spaces, but it's just personal preference.</p>
<p dir="auto">I think in Code < 0.10 it inserted tabs when the setting was set to <code class="notranslate">auto</code>. In Code >= 0.10 it changed to spaces. I'm more a tab guy, except for <code class="notranslate">json</code> files. So that's why I don't want to set it to <code class="notranslate">false</code> because I would have to change it forth and back when in a JSON file.</p>
<p dir="auto">The setting should not be reverted, but maybe an extra setting like <code class="notranslate">editor.insertSpacesDefault</code> which can only be set to <code class="notranslate">true</code> and <code class="notranslate">false</code> and has a default of <code class="notranslate">true</code> (to not break the current behaviour). If <code class="notranslate">editor.insertSpaces</code> is set to <code class="notranslate">auto</code> and a new file is created, it will check the <code class="notranslate">editor.insertSpacesDefault</code> setting.</p>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/alexandrudima/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/alexandrudima">@alexandrudima</a> I guess you are the person for this as you wrote the tests regarding the <code class="notranslate">insertSpaces</code> autodetect :)</p> | <p dir="auto">When <code class="notranslate">insertSpaces = auto</code> is set and you create a new file, pressing the tab key will insert spaces rather than a tab character. This is a problematic default because it means there is no easy way to actually get the first tab into the file so the <code class="notranslate">auto</code> can start learning what the file's indentation mechanism is. If you want space indent, you can simply press the space bar a few times to start the learning process. In order to start a new file with tab indentation though you (currently) need to go find another file with a tab in it, copy the tab, and paste it into the new file.</p>
<p dir="auto">I recommend having the fallback behavior for an empty file be that the space bar inserts spaces and the tab key inserts tabs. This way both camps (spaces and tabs) have the ability to reasonably start new files when in auto-mode.</p> | 1 |
<h3 dir="auto">Preflight Checklist</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the issue tracker for an issue that matches the one I want to file, without success.</li>
</ul>
<h3 dir="auto">Issue Details</h3>
<ul dir="auto">
<li><strong>Electron Version:</strong>
<ul dir="auto">
<li>
</li>
</ul>
</li>
</ul>
<p dir="auto">6.9.0</p>
<ul dir="auto">
<li><strong>Operating System:</strong><br>
Windows 10
<ul dir="auto">
<li>
</li>
</ul>
</li>
<li><strong>Last Known Working Electron version:</strong>
<ul dir="auto">
<li>
</li>
</ul>
</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto">The defaultId property in the Options object in dialog.showMessageBox should change the default button.</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">The defaultId property in the Options object in dialog.showMessageBox isn't changing the default button. The rest of the properties work just fine</p>
<h3 dir="auto">To Reproduce</h3>
<p dir="auto"><code class="notranslate"> dialog.showMessageBox(mainWindow, { type: 'warning', buttons: ['Yes', 'No', 'Cancel'], defaultId: 2, cancelId: 2, detail: "...you want to continue?", message:"You are about to delete the current calendar!" })</code></p>
<h3 dir="auto">Screenshots</h3>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/30180567/83594887-616f8a80-a52e-11ea-8ef4-292a6efe6628.PNG"><img width="418" alt="Capture" src="https://user-images.githubusercontent.com/30180567/83594887-616f8a80-a52e-11ea-8ef4-292a6efe6628.PNG" style="max-width: 100%;"></a></p>
<h3 dir="auto">Additional Information</h3> | <h3 dir="auto">Preflight Checklist</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the issue tracker for an issue that matches the one I want to file, without success.</li>
</ul>
<h3 dir="auto">Issue Details</h3>
<ul dir="auto">
<li><strong>Electron Version:</strong>
<ul dir="auto">
<li>8.0.0</li>
</ul>
</li>
</ul>
<ul dir="auto">
<li><strong>Operating System:</strong>
<ul dir="auto">
<li>Windows 10 (18362)</li>
<li>Ubuntu 14.04 x64</li>
</ul>
</li>
</ul>
<ul dir="auto">
<li><strong>Last Known Working Electron version:</strong>
<ul dir="auto">
<li>
</li>
</ul>
</li>
</ul>
<h3 dir="auto">Expected Behavior</h3>
<p dir="auto"><code class="notranslate">dialog.showMessageBoxSync(null, { type:'warning', buttons: ['Yes', 'No'], defaultId: 1, cancelId: 1, title: 'Power Control', message: "Warning!", });</code><br>
I set "defaultId:1", after executing the function,it should focus on the "No" button.</p>
<h3 dir="auto">Actual Behavior</h3>
<p dir="auto">Execute the function, in windows 10, it focuses on the "Yes" button. And it focuses on the "No" button in Ubuntu 14.04.</p>
<h3 dir="auto">To Reproduce</h3>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ git clone git@github.com:ForJason/electron-smt.git
$ cd electron-smt
$ npm start"><pre class="notranslate">$ git clone git@github.com:ForJason/electron-smt.git
$ <span class="pl-c1">cd</span> electron-smt
$ npm start</pre></div>
<h3 dir="auto">Screenshots</h3>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/25317078/76181106-fd714a80-61fa-11ea-89fb-511014ce84ab.png"><img src="https://user-images.githubusercontent.com/25317078/76181106-fd714a80-61fa-11ea-89fb-511014ce84ab.png" alt="win10" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/25317078/76181111-05c98580-61fb-11ea-9440-475401e0e97d.png"><img src="https://user-images.githubusercontent.com/25317078/76181111-05c98580-61fb-11ea-9440-475401e0e97d.png" alt="ubuntu" style="max-width: 100%;"></a></p>
<h3 dir="auto">Additional Information</h3> | 1 |
<h3 dir="auto">Apache Airflow Provider(s)</h3>
<p dir="auto">google</p>
<h3 dir="auto">Versions of Apache Airflow Providers</h3>
<p dir="auto">apache-airflow-providers-google==6.3.0</p>
<h3 dir="auto">Apache Airflow version</h3>
<p dir="auto">2.2.3 (latest released)</p>
<h3 dir="auto">Operating System</h3>
<p dir="auto">Macos m1</p>
<h3 dir="auto">Deployment</h3>
<p dir="auto">Virtualenv installation</p>
<h3 dir="auto">Deployment details</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">What happened</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="get_dataset = BigQueryGetDatasetOperator(task_id="get-dataset", dataset_id="my_table")"><pre class="notranslate"><code class="notranslate">get_dataset = BigQueryGetDatasetOperator(task_id="get-dataset", dataset_id="my_table")
</code></pre></div>
<p dir="auto">Google libraries cause:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="'/usr/lib/cygrpc.cpython-310-darwin.so' (no such file)"><pre class="notranslate"><code class="notranslate">'/usr/lib/cygrpc.cpython-310-darwin.so' (no such file)
</code></pre></div>
<p dir="auto">Similar issue fixed: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="777504528" data-permission-text="Title is private" data-url="https://github.com/grpc/grpc/issues/25082" data-hovercard-type="issue" data-hovercard-url="/grpc/grpc/issues/25082/hovercard" href="https://github.com/grpc/grpc/issues/25082">grpc/grpc#25082</a><br>
Need to update libraries</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" from grpc._cython import cygrpc
ImportError: dlopen(/.venv/lib/python3.10/site-packages/grpc/_cython/cygrpc.cpython-310-darwin.so, 0x0002): tried: '/.venv/lib/python3.10/site-packages/grpc/_cython/cygrpc.cpython-310-darwin.so' (mach-o file, but is an incompatible architecture (have 'x86_64', need 'arm64e')), '/usr/local/lib/cygrpc.cpython-310-darwin.so' (no such file), '/usr/lib/cygrpc.cpython-310-darwin.so' (no such file)
"><pre class="notranslate"><code class="notranslate"> from grpc._cython import cygrpc
ImportError: dlopen(/.venv/lib/python3.10/site-packages/grpc/_cython/cygrpc.cpython-310-darwin.so, 0x0002): tried: '/.venv/lib/python3.10/site-packages/grpc/_cython/cygrpc.cpython-310-darwin.so' (mach-o file, but is an incompatible architecture (have 'x86_64', need 'arm64e')), '/usr/local/lib/cygrpc.cpython-310-darwin.so' (no such file), '/usr/lib/cygrpc.cpython-310-darwin.so' (no such file)
</code></pre></div>
<h3 dir="auto">What you expected to happen</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">How to reproduce</h3>
<p dir="auto">Install <code class="notranslate">apache-airflow-providers-google==6.3.0</code> on Apple Silicon mac</p>
<h3 dir="auto">Anything else</h3>
<p dir="auto">Similar issue been fixed here:</p>
<p dir="auto"><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="777504528" data-permission-text="Title is private" data-url="https://github.com/grpc/grpc/issues/25082" data-hovercard-type="issue" data-hovercard-url="/grpc/grpc/issues/25082/hovercard" href="https://github.com/grpc/grpc/issues/25082">grpc/grpc#25082</a></p>
<p dir="auto">Need to update google packages</p>
<h3 dir="auto">Are you willing to submit PR?</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Yes I am willing to submit a PR!</li>
</ul>
<h3 dir="auto">Code of Conduct</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow this project's <a href="https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a></li>
</ul> | <p dir="auto"><strong>Apache Airflow version</strong>: v2.0.0b3</p>
<p dir="auto"><strong>Kubernetes version (if you are using kubernetes)</strong> (use <code class="notranslate">kubectl version</code>): 1.16.15</p>
<p dir="auto"><strong>Environment</strong>:</p>
<ul dir="auto">
<li><strong>Cloud provider or hardware configuration</strong>: AWS</li>
<li><strong>OS</strong> (e.g. from /etc/os-release):</li>
<li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>):</li>
<li><strong>Install tools</strong>: Custom Helm Chart</li>
<li><strong>Others</strong>:</li>
</ul>
<p dir="auto"><strong>What happened</strong>:</p>
<p dir="auto">S3 Remote Logging not working. Below is the stacktrace:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" Running <TaskInstance: canary_dag.print_date 2020-12-09T19:46:17.200838+00:00 [queued]> on host canarydagprintdate-9fafada4409d4eafb5e6e9c7187810ae β
β [2020-12-09 19:54:09,825] {s3_task_handler.py:183} ERROR - Could not verify previous log to append: 'NoneType' object is not callable β
β Traceback (most recent call last): β
β File "/home/airflow/.local/lib/python3.7/site-packages/airflow/providers/amazon/aws/log/s3_task_handler.py", line 179, in s3_write β
β if append and self.s3_log_exists(remote_log_location): β
β File "/home/airflow/.local/lib/python3.7/site-packages/airflow/providers/amazon/aws/log/s3_task_handler.py", line 141, in s3_log_exists β
β return self.hook.check_for_key(remote_log_location) β
β File "/home/airflow/.local/lib/python3.7/site-packages/airflow/providers/amazon/aws/hooks/s3.py", line 57, in wrapper β
β connection = self.get_connection(self.aws_conn_id) β
β File "/home/airflow/.local/lib/python3.7/site-packages/airflow/hooks/base.py", line 63, in get_connection β
β conn = Connection.get_connection_from_secrets(conn_id) β
β File "/home/airflow/.local/lib/python3.7/site-packages/airflow/models/connection.py", line 351, in get_connection_from_secrets β
β conn = secrets_backend.get_connection(conn_id=conn_id) β
β File "/home/airflow/.local/lib/python3.7/site-packages/airflow/utils/session.py", line 64, in wrapper β
β with create_session() as session: β
β File "/usr/local/lib/python3.7/contextlib.py", line 112, in __enter__ β
β return next(self.gen) β
β File "/home/airflow/.local/lib/python3.7/site-packages/airflow/utils/session.py", line 29, in create_session β
β session = settings.Session() β
β TypeError: 'NoneType' object is not callable β
β [2020-12-09 19:54:09,826] {s3_task_handler.py:193} ERROR - Could not write logs to s3://my-favorite-airflow-logs/canary_dag/print_date/2020-12-09T19:46:17.200838+00:00/2.log β
β Traceback (most recent call last): β
β File "/home/airflow/.local/lib/python3.7/site-packages/airflow/providers/amazon/aws/log/s3_task_handler.py", line 190, in s3_write β
β encrypt=conf.getboolean('logging', 'ENCRYPT_S3_LOGS'), β
β File "/home/airflow/.local/lib/python3.7/site-packages/airflow/providers/amazon/aws/hooks/s3.py", line 57, in wrapper β
β connection = self.get_connection(self.aws_conn_id) β
β File "/home/airflow/.local/lib/python3.7/site-packages/airflow/hooks/base.py", line 63, in get_connection β
β conn = Connection.get_connection_from_secrets(conn_id) β
β File "/home/airflow/.local/lib/python3.7/site-packages/airflow/models/connection.py", line 351, in get_connection_from_secrets β
β conn = secrets_backend.get_connection(conn_id=conn_id) β
β File "/home/airflow/.local/lib/python3.7/site-packages/airflow/utils/session.py", line 64, in wrapper β
β with create_session() as session: β
β File "/usr/local/lib/python3.7/contextlib.py", line 112, in __enter__ β
β return next(self.gen) β
β File "/home/airflow/.local/lib/python3.7/site-packages/airflow/utils/session.py", line 29, in create_session β
β session = settings.Session() β
β TypeError: 'NoneType' object is not callable
stream closed"><pre class="notranslate"><code class="notranslate"> Running <TaskInstance: canary_dag.print_date 2020-12-09T19:46:17.200838+00:00 [queued]> on host canarydagprintdate-9fafada4409d4eafb5e6e9c7187810ae β
β [2020-12-09 19:54:09,825] {s3_task_handler.py:183} ERROR - Could not verify previous log to append: 'NoneType' object is not callable β
β Traceback (most recent call last): β
β File "/home/airflow/.local/lib/python3.7/site-packages/airflow/providers/amazon/aws/log/s3_task_handler.py", line 179, in s3_write β
β if append and self.s3_log_exists(remote_log_location): β
β File "/home/airflow/.local/lib/python3.7/site-packages/airflow/providers/amazon/aws/log/s3_task_handler.py", line 141, in s3_log_exists β
β return self.hook.check_for_key(remote_log_location) β
β File "/home/airflow/.local/lib/python3.7/site-packages/airflow/providers/amazon/aws/hooks/s3.py", line 57, in wrapper β
β connection = self.get_connection(self.aws_conn_id) β
β File "/home/airflow/.local/lib/python3.7/site-packages/airflow/hooks/base.py", line 63, in get_connection β
β conn = Connection.get_connection_from_secrets(conn_id) β
β File "/home/airflow/.local/lib/python3.7/site-packages/airflow/models/connection.py", line 351, in get_connection_from_secrets β
β conn = secrets_backend.get_connection(conn_id=conn_id) β
β File "/home/airflow/.local/lib/python3.7/site-packages/airflow/utils/session.py", line 64, in wrapper β
β with create_session() as session: β
β File "/usr/local/lib/python3.7/contextlib.py", line 112, in __enter__ β
β return next(self.gen) β
β File "/home/airflow/.local/lib/python3.7/site-packages/airflow/utils/session.py", line 29, in create_session β
β session = settings.Session() β
β TypeError: 'NoneType' object is not callable β
β [2020-12-09 19:54:09,826] {s3_task_handler.py:193} ERROR - Could not write logs to s3://my-favorite-airflow-logs/canary_dag/print_date/2020-12-09T19:46:17.200838+00:00/2.log β
β Traceback (most recent call last): β
β File "/home/airflow/.local/lib/python3.7/site-packages/airflow/providers/amazon/aws/log/s3_task_handler.py", line 190, in s3_write β
β encrypt=conf.getboolean('logging', 'ENCRYPT_S3_LOGS'), β
β File "/home/airflow/.local/lib/python3.7/site-packages/airflow/providers/amazon/aws/hooks/s3.py", line 57, in wrapper β
β connection = self.get_connection(self.aws_conn_id) β
β File "/home/airflow/.local/lib/python3.7/site-packages/airflow/hooks/base.py", line 63, in get_connection β
β conn = Connection.get_connection_from_secrets(conn_id) β
β File "/home/airflow/.local/lib/python3.7/site-packages/airflow/models/connection.py", line 351, in get_connection_from_secrets β
β conn = secrets_backend.get_connection(conn_id=conn_id) β
β File "/home/airflow/.local/lib/python3.7/site-packages/airflow/utils/session.py", line 64, in wrapper β
β with create_session() as session: β
β File "/usr/local/lib/python3.7/contextlib.py", line 112, in __enter__ β
β return next(self.gen) β
β File "/home/airflow/.local/lib/python3.7/site-packages/airflow/utils/session.py", line 29, in create_session β
β session = settings.Session() β
β TypeError: 'NoneType' object is not callable
stream closed
</code></pre></div>
<p dir="auto"><strong>What you expected to happen</strong><br>
Able to see the task instance logs in the airflow UI being read from S3 remote location.</p>
<p dir="auto"><strong>How to reproduce it</strong>:</p>
<p dir="auto">Pulled the latest master and created an airflow image from the dockerfile mentioned in the repo.</p> | 0 |
<h3 dir="auto">Preflight Checklist</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have read the <a href="https://github.com/electron/electron/blob/master/CONTRIBUTING.md">Contributing Guidelines</a> for this project.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow the <a href="https://github.com/electron/electron/blob/master/CODE_OF_CONDUCT.md">Code of Conduct</a> that this project adheres to.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <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">Problem Description</h3>
<p dir="auto">If I am not mistaken, the <code class="notranslate">cookie</code>, <code class="notranslate">localStorage</code>, <code class="notranslate">indexedDB</code> and resource cache of the programs based on Electron store in the following locations currently:</p>
<ul dir="auto">
<li>Windows: <code class="notranslate">C:\Users\<userName>\AppData\Roaming\<productName></code></li>
<li>Linux: <code class="notranslate">/home/<userName>/.config/<productName></code></li>
<li>OS X: <code class="notranslate">/Users/<userName>/Library/Application Support/<productName></code></li>
</ul>
<p dir="auto">But when we use software in portable devices on different computers, we probably want to be able to freely specify the storage location to the portable device self, to <strong>use it anywhere continuously</strong>, or do not leave persistent traces in the temporary computer (maybe through in-memory session it's possible, but <code class="notranslate">loadExtension</code> is not supported in this case).</p>
<p dir="auto">In addition, we may also have multiple programs based on Electron <strong>developing</strong> (or just using). Even if we are careful to avoid duplication of names, we will encounter problems when different versions of the same software coexist.</p>
<h3 dir="auto">Proposed Solution</h3>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="session.setPath(`<customPath>`);"><pre class="notranslate"><span class="pl-s1">session</span><span class="pl-kos">.</span><span class="pl-en">setPath</span><span class="pl-kos">(</span><span class="pl-s">`<customPath>`</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<h3 dir="auto">Alternatives Considered</h3>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="session.fromPartition('persist:name', {
path: `<customPath>`,
});"><pre class="notranslate"><span class="pl-s1">session</span><span class="pl-kos">.</span><span class="pl-en">fromPartition</span><span class="pl-kos">(</span><span class="pl-s">'persist:name'</span><span class="pl-kos">,</span> <span class="pl-kos">{</span>
<span class="pl-c1">path</span>: <span class="pl-s">`<customPath>`</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="session.fromPartition('persist:<customPath>', {
path: true,
});"><pre class="notranslate"><span class="pl-s1">session</span><span class="pl-kos">.</span><span class="pl-en">fromPartition</span><span class="pl-kos">(</span><span class="pl-s">'persist:<customPath>'</span><span class="pl-kos">,</span> <span class="pl-kos">{</span>
<span class="pl-c1">path</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></pre></div>
<h3 dir="auto">Additional Information</h3>
<p dir="auto">no</p> | <p dir="auto">In Electron 5, sandbox mode will no longer be experimental, and running with --enable-sandbox or --enable-mixed-sandbox will be the recommended way to use Electron. In Electron 6, --enable-mixed-sandbox will be on by default and the <code class="notranslate">sandbox</code> webPreferences option will be true by default.</p>
<p dir="auto">This is still an early-stage proposal, so definitely keen to hear any feedback or concerns people might have!</p> | 0 |
<p dir="auto">Please:</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Check for duplicate requests.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Describe your goal, and if possible provide a code snippet with a motivating example.</li>
</ul>
<p dir="auto">I think the documentation for the <code class="notranslate">jax.random.gamma</code> random variable (sampler) could possibly be clearer. In particular, letting the user know that the standard form is implemented and how to incorporate the rate (or alternatively scale) parameter in their samples. Maybe an addendum along the lines of</p>
<p dir="auto"><em>"we implement the standard gamma density. Dividing the sample by the rate is equivalent to sampling from</em> <math-renderer class="js-inline-math" style="display: inline" data-static-url="https://github.githubassets.com/static" data-run-id="7af9ac75c1357d6d22994502ac195ca5">$\text{Gamma}(\alpha, \text{rate})$</math-renderer><em>. And multiplying the sample by the scale is equivalent to sampling from</em> <math-renderer class="js-inline-math" style="display: inline" data-static-url="https://github.githubassets.com/static" data-run-id="7af9ac75c1357d6d22994502ac195ca5">$\text{Gamma}(\alpha, \text{scale})$</math-renderer>."</p>
<p dir="auto">The discussion for this started <a href="https://github.com/google/jax/pull/551" data-hovercard-type="pull_request" data-hovercard-url="/google/jax/pull/551/hovercard">here</a> and I'm mentioning <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mattjj/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mattjj">@mattjj</a> for visibility. Thanks!</p> | <p dir="auto">Please:</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Check for duplicate issues.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Provide a complete example of how to reproduce the bug, wrapped in triple backticks like this:</li>
</ul>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# On Ubuntu 20.04.3, conda-forge channel only
conda create -n test python=3.9 openssl=1 jax jaxlib=0.3.0
conda activate test
python -c 'import jax'"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> On Ubuntu 20.04.3, conda-forge channel only</span>
conda create -n <span class="pl-c1">test</span> python=3.9 openssl=1 jax jaxlib=0.3.0
conda activate <span class="pl-c1">test</span>
python -c <span class="pl-s"><span class="pl-pds">'</span>import jax<span class="pl-pds">'</span></span></pre></div>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> If applicable, include full error messages/tracebacks.</li>
</ul>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[libprotobuf ERROR google/protobuf/descriptor_database.cc:641] File already exists in database: tensorflow/compiler/xla/xla_data.proto
[libprotobuf FATAL google/protobuf/descriptor.cc:2021] CHECK failed: GeneratedDatabase()->Add(encoded_file_descriptor, size):
terminate called after throwing an instance of 'google::protobuf::FatalException'
what(): CHECK failed: GeneratedDatabase()->Add(encoded_file_descriptor, size):
Aborted (core dumped)"><pre class="notranslate"><code class="notranslate">[libprotobuf ERROR google/protobuf/descriptor_database.cc:641] File already exists in database: tensorflow/compiler/xla/xla_data.proto
[libprotobuf FATAL google/protobuf/descriptor.cc:2021] CHECK failed: GeneratedDatabase()->Add(encoded_file_descriptor, size):
terminate called after throwing an instance of 'google::protobuf::FatalException'
what(): CHECK failed: GeneratedDatabase()->Add(encoded_file_descriptor, size):
Aborted (core dumped)
</code></pre></div> | 0 |
<h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Bug Report</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">ansible-playbook</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.4.2.0
config file = /ansible/ansible.cfg
configured module search path = ['/ansible/library', '/usr/share/ansible']
ansible python module location = /usr/local/lib/python3.5/dist-packages/ansible
executable location = /usr/local/bin/ansible
python version = 3.5.3 (default, Jan 19 2017, 14:11:04) [GCC 6.3.0 20170118]"><pre class="notranslate"><code class="notranslate">ansible 2.4.2.0
config file = /ansible/ansible.cfg
configured module search path = ['/ansible/library', '/usr/share/ansible']
ansible python module location = /usr/local/lib/python3.5/dist-packages/ansible
executable location = /usr/local/bin/ansible
python version = 3.5.3 (default, Jan 19 2017, 14:11:04) [GCC 6.3.0 20170118]
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<p dir="auto">I'm using docker as an environment host in Windows 10. My docker version is:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Version 17.09.0-ce-win33 (13620)
Channel: stable
8c56a3b"><pre class="notranslate"><code class="notranslate">Version 17.09.0-ce-win33 (13620)
Channel: stable
8c56a3b
</code></pre></div>
<p dir="auto">The Docker File I use to run the environment:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="FROM debian:stable-slim
RUN apt-get update && \
apt-get install -y \
cowsay \
mysql-client \
openssh-client \
rsync \
python3 \
python3-pip \
python3-mysqldb
RUN pip3 install \
ansible \
boto \
boto3 \
awscli \
colorama \
jmespath \
passlib
VOLUME "/ansible"
VOLUME "/root/.aws"
WORKDIR "/ansible""><pre lang="docker" class="notranslate"><code class="notranslate">FROM debian:stable-slim
RUN apt-get update && \
apt-get install -y \
cowsay \
mysql-client \
openssh-client \
rsync \
python3 \
python3-pip \
python3-mysqldb
RUN pip3 install \
ansible \
boto \
boto3 \
awscli \
colorama \
jmespath \
passlib
VOLUME "/ansible"
VOLUME "/root/.aws"
WORKDIR "/ansible"
</code></pre></div>
<p dir="auto">I then build and then start it up with something like:</p>
<p dir="auto"><code class="notranslate">docker run -it --rm --mount type=bind,source=C:\git\my_ansible,target=/ansible --mount source=C:\Users\Me\.aws,target=/root/.aws ansible</code></p>
<p dir="auto"><code class="notranslate">$root@....> ansible-playbook _test.yaml</code></p>
<p dir="auto">I am also using the "stock" ec2.py dynamic inventory.</p>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">Occasionally simple playbooks explode with a bunch of errors at the end of an invocation</p>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<p dir="auto">This is the playbook that "sometimes" barfs (run it a couple of times)</p>
<div class="highlight highlight-source-yaml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="- hosts: localhost
become: no
tasks:
- debug: msg="{{'a' if what is defined else 'b'}}""><pre class="notranslate">- <span class="pl-ent">hosts</span>: <span class="pl-s">localhost</span>
<span class="pl-ent">become</span>: <span class="pl-s">no</span>
<span class="pl-ent">tasks</span>:
- <span class="pl-ent">debug</span>: <span class="pl-s">msg="{{'a' if what is defined else 'b'}}"</span></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="root@2c92f553e7c7:/ansible# ansible-playbook _test.yml -vvvv
ansible-playbook 2.4.2.0
config file = /ansible/ansible.cfg
configured module search path = ['/ansible/library', '/usr/share/ansible']
ansible python module location = /usr/local/lib/python3.5/dist-packages/ansible
executable location = /usr/local/bin/ansible-playbook
python version = 3.5.3 (default, Jan 19 2017, 14:11:04) [GCC 6.3.0 20170118]
Using /ansible/ansible.cfg as config file
setting up inventory plugins
Parsed /ansible/ec2.py inventory source with script plugin
Parsed /ansible/ansible_hosts.ini inventory source with ini plugin
Loading callback plugin default of type stdout, v2.0 from /usr/local/lib/python3.5/dist-packages/ansible/plugins/callback/__init__.py
_____________________
< PLAYBOOK: _test.yml >
---------------------
1 plays in _test.yml
__________________
< PLAY [localhost] >
------------------
META: ran handlers
______________
< TASK [debug] >
--------------
task path: /ansible/_test.yml:5
ok: [localhost] => {
"msg": "b"
}
META: ran handlers
META: ran handlers
____________
< PLAY RECAP >
------------
localhost : ok=1 changed=0 unreachable=0 failed=0"><pre class="notranslate"><code class="notranslate">root@2c92f553e7c7:/ansible# ansible-playbook _test.yml -vvvv
ansible-playbook 2.4.2.0
config file = /ansible/ansible.cfg
configured module search path = ['/ansible/library', '/usr/share/ansible']
ansible python module location = /usr/local/lib/python3.5/dist-packages/ansible
executable location = /usr/local/bin/ansible-playbook
python version = 3.5.3 (default, Jan 19 2017, 14:11:04) [GCC 6.3.0 20170118]
Using /ansible/ansible.cfg as config file
setting up inventory plugins
Parsed /ansible/ec2.py inventory source with script plugin
Parsed /ansible/ansible_hosts.ini inventory source with ini plugin
Loading callback plugin default of type stdout, v2.0 from /usr/local/lib/python3.5/dist-packages/ansible/plugins/callback/__init__.py
_____________________
< PLAYBOOK: _test.yml >
---------------------
1 plays in _test.yml
__________________
< PLAY [localhost] >
------------------
META: ran handlers
______________
< TASK [debug] >
--------------
task path: /ansible/_test.yml:5
ok: [localhost] => {
"msg": "b"
}
META: ran handlers
META: ran handlers
____________
< PLAY RECAP >
------------
localhost : ok=1 changed=0 unreachable=0 failed=0
</code></pre></div>
<p dir="auto">Then this is repeated 26 times</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Exception ignored in: <function WeakValueDictionary.__init__.<locals>.remove at 0x7fa5c4a9e950>
Traceback (most recent call last):
File "/usr/lib/python3.5/weakref.py", line 117, in remove
TypeError: 'NoneType' object is not callable"><pre class="notranslate"><code class="notranslate">Exception ignored in: <function WeakValueDictionary.__init__.<locals>.remove at 0x7fa5c4a9e950>
Traceback (most recent call last):
File "/usr/lib/python3.5/weakref.py", line 117, in remove
TypeError: 'NoneType' object is not callable
</code></pre></div>
<h5 dir="auto">EXPECTED RESULTS</h5>
<p dir="auto">Less ignored exceptions</p> | <h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Bug Report</li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">ansible-playbook</p>
<h5 dir="auto">ANSIBLE VERSION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.3.0
config file = /home/β¦/ansible.cfg
configured module search path = Default w/o overrides
"><pre class="notranslate"><code class="notranslate">ansible 2.3.0
config file = /home/β¦/ansible.cfg
configured module search path = Default w/o overrides
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<p dir="auto">forks = 100, pipelining = True</p>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Distributor ID: Debian
Description: Debian GNU/Linux 8.7 (jessie)
Release: 8.7
Codename: jessie"><pre class="notranslate"><code class="notranslate">Distributor ID: Debian
Description: Debian GNU/Linux 8.7 (jessie)
Release: 8.7
Codename: jessie
</code></pre></div>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">Sometimes, like once every 10 runs, I'm getting a whole lot of (like 20 times, all have the exact same address):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Exception ignored in: <function WeakValueDictionary.__init__.<locals>.remove at 0x7f51bb741950>
Traceback (most recent call last):
File "/usr/lib/python3.5/weakref.py", line 117, in remove
TypeError: 'NoneType' object is not callable"><pre class="notranslate"><code class="notranslate">Exception ignored in: <function WeakValueDictionary.__init__.<locals>.remove at 0x7f51bb741950>
Traceback (most recent call last):
File "/usr/lib/python3.5/weakref.py", line 117, in remove
TypeError: 'NoneType' object is not callable
</code></pre></div>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<p dir="auto">I can reproduce it with a <code class="notranslate">--limit</code> on one host and a <code class="notranslate">--start-at-task</code> with an unexisting task, so the playbook is doing like nothing apart skipping hosts.</p> | 1 |
<p dir="auto">The <a href="https://github.com/JuliaLang/julia/blob/4aeb2d499686beab0e66978e8719357387dc1b25/base/pkg/pkg.jl#L71">docs</a> for <code class="notranslate">Pkg.dir()</code> say <em>"In particular, <code class="notranslate">Pkg.dir(pkg)</code> returns the path to the package <code class="notranslate">pkg</code>."</em> However <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/tkelman/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/tkelman">@tkelman</a> points out in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="235504856" data-permission-text="Title is private" data-url="https://github.com/EcoJulia/Phylo.jl/issues/2" data-hovercard-type="pull_request" data-hovercard-url="/EcoJulia/Phylo.jl/pull/2/hovercard" href="https://github.com/EcoJulia/Phylo.jl/pull/2">EcoJulia/Phylo.jl#2</a> that this doesn't happen when <code class="notranslate">LOAD_PATH</code> is set. As a result there's no way of finding the path to a file in an installed package (from outside that package), which is extremely desirable if, for instance, you want to install a resource with a package for reference. If this is right, this seems like a bug as it conflicts with the documented behaviour...</p> | <p dir="auto">it works fine if the package is in .julia/v0.x, but if it is somewhere else then it claims there is no <code class="notranslate">test/runtests.jl</code> even if my <code class="notranslate">LOAD_PATH</code> is set such that i can <code class="notranslate">using</code> it. i know that the recommended dev cycle is to keep packages in .julia, but would it make sense to make Pkg.test() work otherwise?</p> | 1 |
<p dir="auto"><a href="https://playwright.dev/python/docs/chrome-extensions" rel="nofollow">The Playwright docs</a> encourage the use of <code class="notranslate">launch_persistent_context</code> in headful mode in order to include a browser extension. I have been attempting to do this and struggling hard. While the code works flawlessly on my laptop, GitHub Actions using xvfb are failing.</p>
<p dir="auto">I've filed a ticket in the downstream Python library <a href="https://github.com/microsoft/playwright-python/issues/1277" data-hovercard-type="issue" data-hovercard-url="/microsoft/playwright-python/issues/1277/hovercard">here</a>. Logs of the error can be found <a href="https://github.com/palewire/news-homepages/runs/6637493508?check_suite_focus=true">here</a>. The relevant workflow file is <a href="https://github.com/palewire/news-homepages/blob/ad-blocking/.github/actions/screenshot/action.yml">here</a>. The Python code that launches the browser is <a href="https://github.com/palewire/news-homepages/blob/ad-blocking/newshomepages/screenshot.py">here</a>.</p>
<p dir="auto">Here's my request: This core library should add a unittest that verifies that the recommended use of <code class="notranslate">launch_persistent_context</code> with a browser extension. This would be similar to <a href="https://github.com/microsoft/playwright/blob/main/.github/workflows/tests_video.yml">the existing test that captures video</a>.</p> | <p dir="auto"><strong>Context:</strong></p>
<ul dir="auto">
<li>Playwright Version: [what Playwright version do you use?] Version 1.10.0-next-1616530863000</li>
<li>Operating System: [e.g. Windows, Linux or Mac] WIndows 10 10.0.19043 N/A Build 19043</li>
<li>Node.js version: [e.g. 12.22, 14.6] Python 3.9</li>
<li>Browser: [e.g. All, Chromium, Firefox, WebKit] All</li>
<li>Extra: [any specific details about your environment]</li>
</ul>
<p dir="auto"><strong>Code Snippet</strong></p>
<p dir="auto">Try to launch playwright for codegen</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ playwright codegen https://github.com/"><pre class="notranslate">$ playwright codegen https://github.com/</pre></div>
<p dir="auto"><strong>Describe the bug</strong></p>
<p dir="auto">When the playwright inspector is launched, It is out of my view of my display, so I clicked on taskbar with <kbd>shift</kbd> and clicked maximised I got inspector full screen but wasn't able to get inspector without maximising it.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/59607654/117133513-f7a4d400-adc1-11eb-96b2-551a60904881.png"><img src="https://user-images.githubusercontent.com/59607654/117133513-f7a4d400-adc1-11eb-96b2-551a60904881.png" alt="Screenshot (58)" style="max-width: 100%;"></a></p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/59607654/117134177-de505780-adc2-11eb-98a1-16c5afdbc445.png"><img src="https://user-images.githubusercontent.com/59607654/117134177-de505780-adc2-11eb-98a1-16c5afdbc445.png" alt="Screenshot (60)" style="max-width: 100%;"></a></p> | 0 |
<p dir="auto">The new Atom icon looks very blurry and JPEG-y when viewed in cases where it would be shrunk, like in the top-left of a Windows window.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/4724556/5696386/ffe6ee4a-999c-11e4-8070-12032325dc0d.png"><img src="https://cloud.githubusercontent.com/assets/4724556/5696386/ffe6ee4a-999c-11e4-8070-12032325dc0d.png" alt="blurry atom icon" style="max-width: 100%;"></a></p> | <p dir="auto">Status: waiting for the next release of atom shell.</p>
<p dir="auto">The icon of the editor windows seems to be pixelated, at least on windows. (Atom v0.165.0; Windows 8.1)</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/4069263/5584108/51b27cb6-9084-11e4-9409-27b1b07bfd4f.png"><img src="https://cloud.githubusercontent.com/assets/4069263/5584108/51b27cb6-9084-11e4-9409-27b1b07bfd4f.png" alt="issue00" style="max-width: 100%;"></a></p> | 1 |
<h2 dir="auto">π Bug</h2>
<p dir="auto">When running ctc on the GPU, torch.nn.functional.ctc_loss expects different types for the "targets" input, depending on whether the selected backed is cudnn or the native implementation.</p>
<p dir="auto">However, the user does not know in advance whether the cuDNN implementation will be used by PyTorch or not. This is very inconvenient since the program may crash without any clear mechanism to prevent it.</p>
<h2 dir="auto">To Reproduce</h2>
<p dir="auto">Python script:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import torch
# Generate data.
logits = torch.normal(mean=torch.zeros((20, 10, 5), dtype=torch.float32))
logprobs = torch.nn.functional.log_softmax(logits, dim=-1)
targets = torch.randint(1, 10, size=(10, 4), dtype=torch.int32)
target_lengths = torch.randint(1, 5, size=(10,), dtype=torch.int32)
# All examples have the same input length, so that cuDNN can be used.
input_lengths = 20 * torch.ones((10,), dtype=torch.int32)
# Reshape targets, so that cuDNN can be used
targets = torch.cat(tuple(targets[i, :target_lengths[i]] for i in range(10)))
# CPU: OK
print(torch.nn.functional.ctc_loss(logprobs, targets, input_lengths, target_lengths))
# CUDA, PyTorch native implementation: OK
torch.backends.cudnn.enabled = False
print(torch.nn.functional.ctc_loss(logprobs.to('cuda'), targets.to('cuda'), input_lengths, target_lengths))
# CUDA, cuDNN implementation: CRASHES (cuDNN expects targets in CPU).
torch.backends.cudnn.enabled = True
print(torch.nn.functional.ctc_loss(logprobs.to('cuda'), targets.to('cuda'), input_lengths, target_lengths))"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">torch</span>
<span class="pl-c"># Generate data.</span>
<span class="pl-s1">logits</span> <span class="pl-c1">=</span> <span class="pl-s1">torch</span>.<span class="pl-en">normal</span>(<span class="pl-s1">mean</span><span class="pl-c1">=</span><span class="pl-s1">torch</span>.<span class="pl-en">zeros</span>((<span class="pl-c1">20</span>, <span class="pl-c1">10</span>, <span class="pl-c1">5</span>), <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">torch</span>.<span class="pl-s1">float32</span>))
<span class="pl-s1">logprobs</span> <span class="pl-c1">=</span> <span class="pl-s1">torch</span>.<span class="pl-s1">nn</span>.<span class="pl-s1">functional</span>.<span class="pl-en">log_softmax</span>(<span class="pl-s1">logits</span>, <span class="pl-s1">dim</span><span class="pl-c1">=</span><span class="pl-c1">-</span><span class="pl-c1">1</span>)
<span class="pl-s1">targets</span> <span class="pl-c1">=</span> <span class="pl-s1">torch</span>.<span class="pl-en">randint</span>(<span class="pl-c1">1</span>, <span class="pl-c1">10</span>, <span class="pl-s1">size</span><span class="pl-c1">=</span>(<span class="pl-c1">10</span>, <span class="pl-c1">4</span>), <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">torch</span>.<span class="pl-s1">int32</span>)
<span class="pl-s1">target_lengths</span> <span class="pl-c1">=</span> <span class="pl-s1">torch</span>.<span class="pl-en">randint</span>(<span class="pl-c1">1</span>, <span class="pl-c1">5</span>, <span class="pl-s1">size</span><span class="pl-c1">=</span>(<span class="pl-c1">10</span>,), <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">torch</span>.<span class="pl-s1">int32</span>)
<span class="pl-c"># All examples have the same input length, so that cuDNN can be used.</span>
<span class="pl-s1">input_lengths</span> <span class="pl-c1">=</span> <span class="pl-c1">20</span> <span class="pl-c1">*</span> <span class="pl-s1">torch</span>.<span class="pl-en">ones</span>((<span class="pl-c1">10</span>,), <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">torch</span>.<span class="pl-s1">int32</span>)
<span class="pl-c"># Reshape targets, so that cuDNN can be used</span>
<span class="pl-s1">targets</span> <span class="pl-c1">=</span> <span class="pl-s1">torch</span>.<span class="pl-en">cat</span>(<span class="pl-en">tuple</span>(<span class="pl-s1">targets</span>[<span class="pl-s1">i</span>, :<span class="pl-s1">target_lengths</span>[<span class="pl-s1">i</span>]] <span class="pl-k">for</span> <span class="pl-s1">i</span> <span class="pl-c1">in</span> <span class="pl-en">range</span>(<span class="pl-c1">10</span>)))
<span class="pl-c"># CPU: OK</span>
<span class="pl-en">print</span>(<span class="pl-s1">torch</span>.<span class="pl-s1">nn</span>.<span class="pl-s1">functional</span>.<span class="pl-en">ctc_loss</span>(<span class="pl-s1">logprobs</span>, <span class="pl-s1">targets</span>, <span class="pl-s1">input_lengths</span>, <span class="pl-s1">target_lengths</span>))
<span class="pl-c"># CUDA, PyTorch native implementation: OK</span>
<span class="pl-s1">torch</span>.<span class="pl-s1">backends</span>.<span class="pl-s1">cudnn</span>.<span class="pl-s1">enabled</span> <span class="pl-c1">=</span> <span class="pl-c1">False</span>
<span class="pl-en">print</span>(<span class="pl-s1">torch</span>.<span class="pl-s1">nn</span>.<span class="pl-s1">functional</span>.<span class="pl-en">ctc_loss</span>(<span class="pl-s1">logprobs</span>.<span class="pl-en">to</span>(<span class="pl-s">'cuda'</span>), <span class="pl-s1">targets</span>.<span class="pl-en">to</span>(<span class="pl-s">'cuda'</span>), <span class="pl-s1">input_lengths</span>, <span class="pl-s1">target_lengths</span>))
<span class="pl-c"># CUDA, cuDNN implementation: CRASHES (cuDNN expects targets in CPU).</span>
<span class="pl-s1">torch</span>.<span class="pl-s1">backends</span>.<span class="pl-s1">cudnn</span>.<span class="pl-s1">enabled</span> <span class="pl-c1">=</span> <span class="pl-c1">True</span>
<span class="pl-en">print</span>(<span class="pl-s1">torch</span>.<span class="pl-s1">nn</span>.<span class="pl-s1">functional</span>.<span class="pl-en">ctc_loss</span>(<span class="pl-s1">logprobs</span>.<span class="pl-en">to</span>(<span class="pl-s">'cuda'</span>), <span class="pl-s1">targets</span>.<span class="pl-en">to</span>(<span class="pl-s">'cuda'</span>), <span class="pl-s1">input_lengths</span>, <span class="pl-s1">target_lengths</span>))</pre></div>
<p dir="auto">Output:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ python minimal_ctc.py
tensor(17.2880)
tensor(17.2880, device='cuda:0')
Traceback (most recent call last):
File "minimal_ctc.py", line 24, in <module>
print(torch.nn.functional.ctc_loss(logprobs.to('cuda'), targets.to('cuda'), input_lengths, target_lengths))
File "/home/joapuipe/.virtualenvs/pytorch1.1-py3.6/lib/python3.6/site-packages/torch/nn/functional.py", line 1813, in ctc_loss
zero_infinity)
RuntimeError: Expected tensor to have CPU Backend, but got tensor with CUDA Backend (while checking arguments for cudnn_ctc_loss)"><pre class="notranslate"><code class="notranslate">$ python minimal_ctc.py
tensor(17.2880)
tensor(17.2880, device='cuda:0')
Traceback (most recent call last):
File "minimal_ctc.py", line 24, in <module>
print(torch.nn.functional.ctc_loss(logprobs.to('cuda'), targets.to('cuda'), input_lengths, target_lengths))
File "/home/joapuipe/.virtualenvs/pytorch1.1-py3.6/lib/python3.6/site-packages/torch/nn/functional.py", line 1813, in ctc_loss
zero_infinity)
RuntimeError: Expected tensor to have CPU Backend, but got tensor with CUDA Backend (while checking arguments for cudnn_ctc_loss)
</code></pre></div>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">First, the ctc_loss API should specify in the doc which device it expects the inputs.<br>
Secondly, I think it should be consistent regardless of the backend implementation used (e.g. copy to the expected device if necessary).</p>
<p dir="auto">If the dev team does not like implicit copies, I suggest a function like: <code class="notranslate">torch.backends.cudnn.will_ctc_loss_run_on_cudnn(logprobs, targets, inputs_lengths, targets_length, blank)</code> so that the user can check whether or not cudnn will be used for the given input (i.e the same check as </p><div class="Box Box--condensed my-2">
<div class="Box-header f6">
<p class="mb-0 text-bold">
<a href="https://github.com/pytorch/pytorch/blob/1d705b4b075e32540293d1717b582442a66ffcce/aten/src/ATen/native/LossCTC.cpp#L344">pytorch/aten/src/ATen/native/LossCTC.cpp</a>
</p>
<p class="mb-0 color-fg-muted">
Line 344
in
<a data-pjax="true" class="commit-tease-sha" href="/pytorch/pytorch/commit/1d705b4b075e32540293d1717b582442a66ffcce">1d705b4</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="L344" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="344"></td>
<td id="LC344" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">bool</span> use_cudnn = </td>
</tr>
</tbody></table>
</div>
</div>
).<p></p>
<h2 dir="auto">Environment</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Collecting environment information...
PyTorch version: 1.1.0
Is debug build: No
CUDA used to build PyTorch: 9.0.176
OS: Ubuntu 16.04.6 LTS
GCC version: (Ubuntu 5.4.0-6ubuntu1~16.04.11) 5.4.0 20160609
CMake version: version 3.6.1
Python version: 3.6
Is CUDA available: Yes
CUDA runtime version: 10.0.130
GPU models and configuration:
GPU 0: GeForce GTX 780
GPU 1: GeForce GTX 1080
Nvidia driver version: 415.27
cuDNN version: Could not collect
Versions of relevant libraries:
[pip3] nnutils-pytorch==0.4.0
[pip3] numpy==1.16.4
[pip3] torch==1.1.0
[pip3] torch-baidu-ctc==0.3.0
[pip3] torchvision==0.3.0
[conda] Could not collect"><pre class="notranslate"><code class="notranslate">Collecting environment information...
PyTorch version: 1.1.0
Is debug build: No
CUDA used to build PyTorch: 9.0.176
OS: Ubuntu 16.04.6 LTS
GCC version: (Ubuntu 5.4.0-6ubuntu1~16.04.11) 5.4.0 20160609
CMake version: version 3.6.1
Python version: 3.6
Is CUDA available: Yes
CUDA runtime version: 10.0.130
GPU models and configuration:
GPU 0: GeForce GTX 780
GPU 1: GeForce GTX 1080
Nvidia driver version: 415.27
cuDNN version: Could not collect
Versions of relevant libraries:
[pip3] nnutils-pytorch==0.4.0
[pip3] numpy==1.16.4
[pip3] torch==1.1.0
[pip3] torch-baidu-ctc==0.3.0
[pip3] torchvision==0.3.0
[conda] Could not collect
</code></pre></div>
<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/jerryzh168/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jerryzh168">@jerryzh168</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ssnl/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ssnl">@ssnl</a></p> | <h2 dir="auto">π Bug</h2>
<h2 dir="auto">To Reproduce</h2>
<p dir="auto">Steps to reproduce the behavior:</p>
<p dir="auto">1.I i updated pytorch version and ctcοΌuse pytorch_nightly, but in my train ,nn.CTCloss() is still zero,so,i would like to ask if the version pytorch(nightly) has been solved this problem<br>
1.<br>
1.</p>
<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="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):</li>
<li>OS (e.g., Linux):</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:</li>
<li>GPU models and configuration:</li>
<li>Any other relevant information:</li>
</ul>
<h2 dir="auto">Additional context</h2> | 1 |
<h3 dir="auto">First check</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I added a very descriptive title to this issue.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I used the GitHub search to find a similar issue and didn't find it.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I searched the FastAPI documentation, with the integrated search.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already searched in Google "How to X in FastAPI" and didn't find any information.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already read and followed all the tutorial in the docs and didn't find an answer.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already checked if it is not related to FastAPI but to <a href="https://github.com/samuelcolvin/pydantic">Pydantic</a>.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already checked if it is not related to FastAPI but to <a href="https://github.com/swagger-api/swagger-ui">Swagger UI</a>.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already checked if it is not related to FastAPI but to <a href="https://github.com/Redocly/redoc">ReDoc</a>.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> After submitting this, I commit to one of:
<ul dir="auto">
<li>Read open issues with questions until I find 2 issues where I can help someone and add a comment to help there.</li>
<li>I already hit the "watch" button in this repository to receive notifications and I commit to help at least 2 people that ask questions in the future.</li>
<li>Implement a Pull Request for a confirmed bug.</li>
</ul>
</li>
</ul>
<h3 dir="auto">Example</h3>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from fastapi import FastAPI
from pydantic import BaseModel, Field
from typing import Optional
app = FastAPI()
class MyResponseAmbiguous(BaseModel):
a: Optional[int]
@app.get("/ambiguous", response_model=MyResponseAmbiguous)
def ambiguous():
# swagger shows ``a`` as type int, even though it can be None
return MyResponseAmbiguous(a=1)
class MyResponseNullable(BaseModel):
a: Optional[int] = Field(..., nullable=True)
@app.get("/nullable", response_model=MyResponseNullable)
def nullable():
# swagger shows ``a`` as type int, and also says it can be nullable.
return MyResponseNullable(a=1)
"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">fastapi</span> <span class="pl-k">import</span> <span class="pl-v">FastAPI</span>
<span class="pl-k">from</span> <span class="pl-s1">pydantic</span> <span class="pl-k">import</span> <span class="pl-v">BaseModel</span>, <span class="pl-v">Field</span>
<span class="pl-k">from</span> <span class="pl-s1">typing</span> <span class="pl-k">import</span> <span class="pl-v">Optional</span>
<span class="pl-s1">app</span> <span class="pl-c1">=</span> <span class="pl-v">FastAPI</span>()
<span class="pl-k">class</span> <span class="pl-v">MyResponseAmbiguous</span>(<span class="pl-v">BaseModel</span>):
<span class="pl-s1">a</span>: <span class="pl-v">Optional</span>[<span class="pl-s1">int</span>]
<span class="pl-en">@<span class="pl-s1">app</span>.<span class="pl-en">get</span>(<span class="pl-s">"/ambiguous"</span>, <span class="pl-s1">response_model</span><span class="pl-c1">=</span><span class="pl-v">MyResponseAmbiguous</span>)</span>
<span class="pl-k">def</span> <span class="pl-en">ambiguous</span>():
<span class="pl-c"># swagger shows ``a`` as type int, even though it can be None</span>
<span class="pl-k">return</span> <span class="pl-v">MyResponseAmbiguous</span>(<span class="pl-s1">a</span><span class="pl-c1">=</span><span class="pl-c1">1</span>)
<span class="pl-k">class</span> <span class="pl-v">MyResponseNullable</span>(<span class="pl-v">BaseModel</span>):
<span class="pl-s1">a</span>: <span class="pl-v">Optional</span>[<span class="pl-s1">int</span>] <span class="pl-c1">=</span> <span class="pl-v">Field</span>(..., <span class="pl-s1">nullable</span><span class="pl-c1">=</span><span class="pl-c1">True</span>)
<span class="pl-en">@<span class="pl-s1">app</span>.<span class="pl-en">get</span>(<span class="pl-s">"/nullable"</span>, <span class="pl-s1">response_model</span><span class="pl-c1">=</span><span class="pl-v">MyResponseNullable</span>)</span>
<span class="pl-k">def</span> <span class="pl-en">nullable</span>():
<span class="pl-c"># swagger shows ``a`` as type int, and also says it can be nullable.</span>
<span class="pl-k">return</span> <span class="pl-v">MyResponseNullable</span>(<span class="pl-s1">a</span><span class="pl-c1">=</span><span class="pl-c1">1</span>)</pre></div>
<h3 dir="auto">Description</h3>
<p dir="auto">When generating an openapi schema, FastAPI does not mark <code class="notranslate">Optional</code> items as nullable - as in the <code class="notranslate">MyResponseAmbiguous</code> model above.<br>
To mark an item as nullable in openapi you need to manually pass <code class="notranslate">nullable=True</code> to the pydantic Field function - as in the <code class="notranslate">MyResponseNullable</code> model above.<br>
How can this be done automatically?</p>
<p dir="auto">Additionally, one of the models has <code class="notranslate">a</code> marked as required (red asterisk) and the other does not - is this the intended behaviour? I think it should be marked as required in both models.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/33386122/110582238-05721a80-81c0-11eb-9afb-6b9e62265a2e.png"><img width="401" alt="Screen Shot 2021-03-10 at 4 45 25 pm" src="https://user-images.githubusercontent.com/33386122/110582238-05721a80-81c0-11eb-9afb-6b9e62265a2e.png" style="max-width: 100%;"></a></p>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>OS: Macos</li>
<li>FastAPI Version: 0.63.0</li>
<li>Python version: 3.7</li>
</ul> | <h3 dir="auto">First check</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I added a very descriptive title to this issue.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I used the GitHub search to find a similar issue and didn't find it.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I searched the FastAPI documentation, with the integrated search.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already searched in Google "How to X in FastAPI" and didn't find any information.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already read and followed all the tutorial in the docs and didn't find an answer.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already checked if it is not related to FastAPI but to <a href="https://github.com/samuelcolvin/pydantic">Pydantic</a>.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already checked if it is not related to FastAPI but to <a href="https://github.com/swagger-api/swagger-ui">Swagger UI</a>.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already checked if it is not related to FastAPI but to <a href="https://github.com/Redocly/redoc">ReDoc</a>.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> After submitting this, I commit to one of:
<ul dir="auto">
<li>Read open issues with questions until I find 2 issues where I can help someone and add a comment to help there.</li>
<li>I already hit the "watch" button in this repository to receive notifications and I commit to help at least 2 people that ask questions in the future.</li>
<li>Implement a Pull Request for a confirmed bug.</li>
</ul>
</li>
</ul>
<h3 dir="auto">Example</h3>
<p dir="auto">Here's a self-contained, <a href="https://stackoverflow.com/help/minimal-reproducible-example" rel="nofollow">minimal, reproducible, example</a> with my use case:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import enum
from typing import Optional
import pytest
from fastapi import FastAPI
from pydantic import BaseModel, Field
app = FastAPI()
class RHELVersions(enum.Enum):
"""Available RHEL versions within the database."""
el7: str = "RHEL 7"
el8: str = "RHEL 8"
el9: str = "RHEL 9"
class DeviceEntry(BaseModel):
"""A model which represents the single hardware device."""
simple_property: Optional[bool] = Field(None, nullable=True)
complex_property: Optional[RHELVersions] = Field(None, nullable=True)
@app.get("/", response_model=DeviceEntry)
def read_root() -> DeviceEntry:
return DeviceEntry(simple_property=None, complex_property=None)
def test_case():
spec = app.openapi()
assert spec["components"]["schemas"]["DeviceEntry"]["properties"][
"simple_property"
]["nullable"]
with pytest.raises(KeyError):
assert spec["components"]["schemas"]["DeviceEntry"]["properties"][
"complex_property"
]["nullable"]
"""
+ 'components': {'schemas': {'DeviceEntry': {'description': 'A model which '
+ 'represents the '
+ 'single hardware '
+ 'device.',
+ 'properties': {'complex_property': {'$ref': '#/components/schemas/RHELVersions'},
+ 'simple_property': {'nullable': True,
+ 'title': 'Simple '
+ 'Property',
+ 'type': 'boolean'}},
+ 'title': 'DeviceEntry',
+ 'type': 'object'},
"""
"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">enum</span>
<span class="pl-k">from</span> <span class="pl-s1">typing</span> <span class="pl-k">import</span> <span class="pl-v">Optional</span>
<span class="pl-k">import</span> <span class="pl-s1">pytest</span>
<span class="pl-k">from</span> <span class="pl-s1">fastapi</span> <span class="pl-k">import</span> <span class="pl-v">FastAPI</span>
<span class="pl-k">from</span> <span class="pl-s1">pydantic</span> <span class="pl-k">import</span> <span class="pl-v">BaseModel</span>, <span class="pl-v">Field</span>
<span class="pl-s1">app</span> <span class="pl-c1">=</span> <span class="pl-v">FastAPI</span>()
<span class="pl-k">class</span> <span class="pl-v">RHELVersions</span>(<span class="pl-s1">enum</span>.<span class="pl-v">Enum</span>):
<span class="pl-s">"""Available RHEL versions within the database."""</span>
<span class="pl-s1">el7</span>: <span class="pl-s1">str</span> <span class="pl-c1">=</span> <span class="pl-s">"RHEL 7"</span>
<span class="pl-s1">el8</span>: <span class="pl-s1">str</span> <span class="pl-c1">=</span> <span class="pl-s">"RHEL 8"</span>
<span class="pl-s1">el9</span>: <span class="pl-s1">str</span> <span class="pl-c1">=</span> <span class="pl-s">"RHEL 9"</span>
<span class="pl-k">class</span> <span class="pl-v">DeviceEntry</span>(<span class="pl-v">BaseModel</span>):
<span class="pl-s">"""A model which represents the single hardware device."""</span>
<span class="pl-s1">simple_property</span>: <span class="pl-v">Optional</span>[<span class="pl-s1">bool</span>] <span class="pl-c1">=</span> <span class="pl-v">Field</span>(<span class="pl-c1">None</span>, <span class="pl-s1">nullable</span><span class="pl-c1">=</span><span class="pl-c1">True</span>)
<span class="pl-s1">complex_property</span>: <span class="pl-v">Optional</span>[<span class="pl-v">RHELVersions</span>] <span class="pl-c1">=</span> <span class="pl-v">Field</span>(<span class="pl-c1">None</span>, <span class="pl-s1">nullable</span><span class="pl-c1">=</span><span class="pl-c1">True</span>)
<span class="pl-en">@<span class="pl-s1">app</span>.<span class="pl-en">get</span>(<span class="pl-s">"/"</span>, <span class="pl-s1">response_model</span><span class="pl-c1">=</span><span class="pl-v">DeviceEntry</span>)</span>
<span class="pl-k">def</span> <span class="pl-en">read_root</span>() <span class="pl-c1">-></span> <span class="pl-v">DeviceEntry</span>:
<span class="pl-k">return</span> <span class="pl-v">DeviceEntry</span>(<span class="pl-s1">simple_property</span><span class="pl-c1">=</span><span class="pl-c1">None</span>, <span class="pl-s1">complex_property</span><span class="pl-c1">=</span><span class="pl-c1">None</span>)
<span class="pl-k">def</span> <span class="pl-en">test_case</span>():
<span class="pl-s1">spec</span> <span class="pl-c1">=</span> <span class="pl-s1">app</span>.<span class="pl-en">openapi</span>()
<span class="pl-k">assert</span> <span class="pl-s1">spec</span>[<span class="pl-s">"components"</span>][<span class="pl-s">"schemas"</span>][<span class="pl-s">"DeviceEntry"</span>][<span class="pl-s">"properties"</span>][
<span class="pl-s">"simple_property"</span>
][<span class="pl-s">"nullable"</span>]
<span class="pl-k">with</span> <span class="pl-s1">pytest</span>.<span class="pl-en">raises</span>(<span class="pl-v">KeyError</span>):
<span class="pl-k">assert</span> <span class="pl-s1">spec</span>[<span class="pl-s">"components"</span>][<span class="pl-s">"schemas"</span>][<span class="pl-s">"DeviceEntry"</span>][<span class="pl-s">"properties"</span>][
<span class="pl-s">"complex_property"</span>
][<span class="pl-s">"nullable"</span>]
<span class="pl-s">"""</span>
<span class="pl-s"> + 'components': {'schemas': {'DeviceEntry': {'description': 'A model which '</span>
<span class="pl-s"> + 'represents the '</span>
<span class="pl-s"> + 'single hardware '</span>
<span class="pl-s"> + 'device.',</span>
<span class="pl-s"> + 'properties': {'complex_property': {'$ref': '#/components/schemas/RHELVersions'},</span>
<span class="pl-s"> + 'simple_property': {'nullable': True,</span>
<span class="pl-s"> + 'title': 'Simple '</span>
<span class="pl-s"> + 'Property',</span>
<span class="pl-s"> + 'type': 'boolean'}},</span>
<span class="pl-s"> + 'title': 'DeviceEntry',</span>
<span class="pl-s"> + 'type': 'object'},</span>
<span class="pl-s">"""</span></pre></div>
<h3 dir="auto">Description</h3>
<p dir="auto">Run pytest {path_tothe_module}.<br>
Simple property has nullable in the apispec, but complex property doesn't.</p>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li>OS: [e.g. Linux / Windows / macOS]: Linux</li>
<li>FastAPI Version [e.g. 0.3.0]: 0.62</li>
</ul>
<p dir="auto">To know the FastAPI version use:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="python -c "import fastapi; print(fastapi.__version__)""><pre class="notranslate">python -c <span class="pl-s"><span class="pl-pds">"</span>import fastapi; print(fastapi.__version__)<span class="pl-pds">"</span></span></pre></div>
<ul dir="auto">
<li>Python version: 3.9</li>
</ul>
<p dir="auto">To know the Python version use:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="python --version"><pre class="notranslate">python --version</pre></div>
<h3 dir="auto">Additional context</h3> | 1 |
<p dir="auto">It would be great if VS Code supported the paradigm of semantic highlighting.<br>
In short, it makes syntax highlighting more useful, by varying the colors of the same syntax-types of different names in a given scope. This makes it easier to catch mistakes and to see the flow of variables (since every variable in a given scope has a unique color, yet based of the same color range).<br>
Here's an in depth explanation of what is is with some examples: <a href="https://medium.com/@evnbr/coding-in-color-3a6db2743a1e#.n2zb9ohw8" rel="nofollow">https://medium.com/@evnbr/coding-in-color-3a6db2743a1e#.n2zb9ohw8</a></p>
<p dir="auto">Example - before:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/0f54ecffce50e1c1e55c15f8481a45b0747e0664c049016b6fea7248b08c80f4/68747470733a2f2f63646e2d696d616765732d312e6d656469756d2e636f6d2f6d61782f313736302f312a4354626b4a75596d304a556348465441676f764173672e706e67"><img src="https://camo.githubusercontent.com/0f54ecffce50e1c1e55c15f8481a45b0747e0664c049016b6fea7248b08c80f4/68747470733a2f2f63646e2d696d616765732d312e6d656469756d2e636f6d2f6d61782f313736302f312a4354626b4a75596d304a556348465441676f764173672e706e67" alt="Before" data-canonical-src="https://cdn-images-1.medium.com/max/1760/1*CTbkJuYm0JUcHFTAgovAsg.png" style="max-width: 100%;"></a></p>
<p dir="auto">Example - after:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/9bd32b7338c3485d6083cce699d3a2be1bdc963edf07faa9449363b7c8d4cf2e/68747470733a2f2f63646e2d696d616765732d312e6d656469756d2e636f6d2f6d61782f313736302f312a545653504f594f317a38474f5673337475784e5271412e706e67"><img src="https://camo.githubusercontent.com/9bd32b7338c3485d6083cce699d3a2be1bdc963edf07faa9449363b7c8d4cf2e/68747470733a2f2f63646e2d696d616765732d312e6d656469756d2e636f6d2f6d61782f313736302f312a545653504f594f317a38474f5673337475784e5271412e706e67" alt="After" data-canonical-src="https://cdn-images-1.medium.com/max/1760/1*TVSPOYO1z8GOVs3tuxNRqA.png" style="max-width: 100%;"></a></p> | <p dir="auto"><em>From <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Wosi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Wosi">@Wosi</a> on October 13, 2015 14:22</em></p>
<p dir="auto">I'm looking for a way to implement an advanced source highlighting<br>
where a language service changes the color of words in a file. The result would look similar to the output Visual Studio creates in C# files.<br>
The screenshot shows C# code in Visual Studio. The word "Customer" is highlighted differently based on its context:<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/3448684/10456067/6b53769e-71bf-11e5-95b3-f2e95348101b.PNG"><img src="https://cloud.githubusercontent.com/assets/3448684/10456067/6b53769e-71bf-11e5-95b3-f2e95348101b.PNG" alt="advancedhighlighting" style="max-width: 100%;"></a></p>
<p dir="auto">To implement highlighting like this it's necassary to let a language service decide about the color of a word after the grammar based highlighter has done its job.<br>
I would like to see an API for this in the future.</p>
<p dir="auto"><em>Copied from original issue: Microsoft/vscode-extensionbuilders#14</em></p> | 1 |
<p dir="auto">[Enter steps to reproduce below:]</p>
<ol dir="auto">
<li>...</li>
<li>...</li>
</ol>
<p dir="auto"><strong>Atom Version</strong>: 0.169.0<br>
<strong>System</strong>: Mac OS X 10.10.2<br>
<strong>Thrown From</strong>: Atom Core</p>
<h3 dir="auto">Stack Trace</h3>
<p dir="auto">Uncaught Error: ENOENT, open '/Users/non/Repositories/ohmpieng/production/config/omniauth.rb'</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At /Applications/Atom.app/Contents/Resources/app/node_modules/pathwatcher/node_modules/q/q.js:126
Error: ENOENT, open '/Users/non/Repositories/ohmpieng/production/config/omniauth.rb'
at Error (native)
"><pre class="notranslate"><code class="notranslate">At /Applications/Atom.app/Contents/Resources/app/node_modules/pathwatcher/node_modules/q/q.js:126
Error: ENOENT, open '/Users/non/Repositories/ohmpieng/production/config/omniauth.rb'
at Error (native)
</code></pre></div>
<h3 dir="auto">Commands</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" 4x -0:02.6 pane:show-previous-item (atom-text-editor.editor)
11x -0:00.0 pane:show-next-item (atom-text-editor.editor)"><pre class="notranslate"><code class="notranslate"> 4x -0:02.6 pane:show-previous-item (atom-text-editor.editor)
11x -0:00.0 pane:show-next-item (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="{
"core": {
"themes": [
"atom-dark-ui",
"monokai"
]
},
"editor": {
"fontFamily": "Menlo",
"fontSize": 12,
"invisibles": {}
}
}"><pre class="notranslate">{
<span class="pl-ent">"core"</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>monokai<span class="pl-pds">"</span></span>
]
},
<span class="pl-ent">"editor"</span>: {
<span class="pl-ent">"fontFamily"</span>: <span class="pl-s"><span class="pl-pds">"</span>Menlo<span class="pl-pds">"</span></span>,
<span class="pl-ent">"fontSize"</span>: <span class="pl-c1">12</span>,
<span class="pl-ent">"invisibles"</span>: {}
}
}</pre></div>
<h3 dir="auto">Installed Packages</h3>
<div class="highlight highlight-source-coffee notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# User
monokai, v0.8.0
# Dev
No dev packages"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> User</span>
monokai, v0.<span class="pl-ii">8</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> | <ol dir="auto">
<li>switch the node_modules package from a version to a git repository</li>
<li>npm install</li>
</ol>
<p dir="auto"><strong>Atom Version</strong>: 0.165.0<br>
<strong>System</strong>: Mac OS X 10.10.1<br>
<strong>Thrown From</strong>: Atom Core</p>
<h3 dir="auto">Stack Trace</h3>
<p dir="auto">Uncaught Error: ENOENT, open '/Users/joscha/Development/mailbutler/node_modules/grunt-crx/tasks/crx.js'</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At /Applications/Atom.app/Contents/Resources/app/node_modules/pathwatcher/node_modules/q/q.js:126
Error: ENOENT, open '/Users/joscha/Development/mailbutler/node_modules/grunt-crx/tasks/crx.js'
at Error (native)
"><pre class="notranslate"><code class="notranslate">At /Applications/Atom.app/Contents/Resources/app/node_modules/pathwatcher/node_modules/q/q.js:126
Error: ENOENT, open '/Users/joscha/Development/mailbutler/node_modules/grunt-crx/tasks/crx.js'
at Error (native)
</code></pre></div>
<h3 dir="auto">Commands</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" -0:28.1 find-and-replace:show (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel)
-0:26.0 core:confirm (input.hidden-input)
7x -0:19.3 core:move-left (input.hidden-input)
-0:14.9 core:backspace (input.hidden-input)
-0:14.2 core:move-left (input.hidden-input)
2x -0:13.7 core:move-right (input.hidden-input)
-0:13.1 core:move-left (input.hidden-input)
-0:12.8 core:backspace (input.hidden-input)
7x -0:12.5 core:move-right (input.hidden-input)
-0:11.3 core:backspace (input.hidden-input)
2x -0:10.9 core:move-right (input.hidden-input)
-0:09.7 core:backspace (input.hidden-input)
5x -0:09.3 core:move-left (input.hidden-input)
-0:02.6 core:copy (input.hidden-input)
-0:00.7 core:paste (input.hidden-input)
-0:00.0 core:save (input.hidden-input)"><pre class="notranslate"><code class="notranslate"> -0:28.1 find-and-replace:show (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel)
-0:26.0 core:confirm (input.hidden-input)
7x -0:19.3 core:move-left (input.hidden-input)
-0:14.9 core:backspace (input.hidden-input)
-0:14.2 core:move-left (input.hidden-input)
2x -0:13.7 core:move-right (input.hidden-input)
-0:13.1 core:move-left (input.hidden-input)
-0:12.8 core:backspace (input.hidden-input)
7x -0:12.5 core:move-right (input.hidden-input)
-0:11.3 core:backspace (input.hidden-input)
2x -0:10.9 core:move-right (input.hidden-input)
-0:09.7 core:backspace (input.hidden-input)
5x -0:09.3 core:move-left (input.hidden-input)
-0:02.6 core:copy (input.hidden-input)
-0:00.7 core:paste (input.hidden-input)
-0:00.0 core:save (input.hidden-input)
</code></pre></div>
<h3 dir="auto">Config</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
"core": {
"ignoredNames": [
".git",
".svn",
".DS_Store"
]
},
"editor": {
"showInvisibles": true,
"autoIndentOnPaste": false
}
}"><pre class="notranslate"><code class="notranslate">{
"core": {
"ignoredNames": [
".git",
".svn",
".DS_Store"
]
},
"editor": {
"showInvisibles": true,
"autoIndentOnPaste": false
}
}
</code></pre></div>
<h3 dir="auto">Installed Packages</h3>
<div class="highlight highlight-source-coffee notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# User
atom-jasmine, v0.4.0
editorconfig, v0.2.2
jsformat, v0.7.18
language-scala, v1.1.0
linter, v0.9.0
linter-coffeelint, v0.1.7
linter-jshint, v0.1.0
linter-php, v0.0.11
travis-ci-status, v0.11.1
visual-bell, v0.9.0
# Dev
No dev packages"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> User</span>
atom<span class="pl-k">-</span>jasmine, v0.<span class="pl-ii">4</span>.<span class="pl-ii">0</span>
editorconfig, v0.<span class="pl-ii">2</span>.<span class="pl-ii">2</span>
jsformat, v0.<span class="pl-ii">7</span>.<span class="pl-ii">18</span>
language<span class="pl-k">-</span>scala, v1.<span class="pl-ii">1</span>.<span class="pl-ii">0</span>
linter, v0.<span class="pl-ii">9</span>.<span class="pl-ii">0</span>
linter<span class="pl-k">-</span>coffeelint, v0.<span class="pl-ii">1</span>.<span class="pl-ii">7</span>
linter<span class="pl-k">-</span>jshint, v0.<span class="pl-ii">1</span>.<span class="pl-ii">0</span>
linter<span class="pl-k">-</span>php, v0.<span class="pl-ii">0</span>.<span class="pl-ii">11</span>
travis<span class="pl-k">-</span>ci<span class="pl-k">-</span>status, v0.<span class="pl-ii">11</span>.<span class="pl-ii">1</span>
visual<span class="pl-k">-</span>bell, v0.<span class="pl-ii">9</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 |
<p dir="auto">When I installed tensorflow with "pip install",I meet the "A protocol message was rejected because it was too big (more than 67108864 bytes) ",and I uninstall protobuf with pip,then download a new protobuf,install it with changing 256 << 20 in coded_stream.h as "Readme" said,but the same problem occurred,it seems that tensorflow hasn't used the new protobuf,how could I deal with this problem?</p> | <p dir="auto">I'm using tf: '2.0.0-rc1'</p>
<p dir="auto">In the process to load image, you said</p>
<p dir="auto">for image, label in labeled_ds.take(1):<br>
print("Image shape: ", image.numpy().shape)<br>
print("Label: ", label.numpy())</p>
<p dir="auto">InvalidArgumentError: {{function_node __inference_Dataset_map_process_path_378}} slice index -1 of dimension 0 out of bounds.<br>
[[{{node strided_slice}}]] [Op:IteratorGetNextSync]</p>
<p dir="auto">and then:<br>
train_ds = prepare_for_training(labeled_ds)</p>
<p dir="auto">image_batch, label_batch = next(iter(train_ds))</p>
<p dir="auto">InvalidArgumentError: {{function_node __inference_Dataset_map_process_path_378}} slice index -1 of dimension 0 out of bounds.<br>
[[{{node strided_slice}}]] [Op:IteratorGetNextSync]</p>
<p dir="auto">some kind of problem...</p> | 0 |
<p dir="auto">In this simplified example I want to explain my problem using the grid-system. When I understand the grid system right you can add as many cols as you like in one row and when the 12-grids are full the next col break into the next line.</p>
<p dir="auto">Until rc1 the following example worked well but with the release of Bootstrap 3.0 I've got an error. I think it's because of the missing "float:left" on the col-xs-12, col-sm-12 ... classes.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<div class="row">
<div class="col-xs-4">Col 1</div>
<div class="col-xs-4">Col 2</div>
<div class="col-xs-4">Col 3</div>
<div class="col-xs-12">Col 4</div>
<div class="col-xs-6">Col 5</div>
</div>"><pre class="notranslate"><code class="notranslate"><div class="row">
<div class="col-xs-4">Col 1</div>
<div class="col-xs-4">Col 2</div>
<div class="col-xs-4">Col 3</div>
<div class="col-xs-12">Col 4</div>
<div class="col-xs-6">Col 5</div>
</div>
</code></pre></div>
<p dir="auto">Can you tell me why the float:left has been removed with the rc2 of bootstap 3?</p> | <p dir="auto">Example:<br>
`</p><div dir="auto"><p dir="auto"></p>
<div dir="auto">.col-xs-6 .col-md-4</div>
<div dir="auto">.col-xs-6 .col-md-4</div>
<div dir="auto">.col-xs-6 .col-md-4</div>
</div>`
<p dir="auto">see: <a href="http://stackoverflow.com/questions/18428450/bootstrap-3-layout-with-panel-display-not-correct-on-small-device/18433782" rel="nofollow">http://stackoverflow.com/questions/18428450/bootstrap-3-layout-with-panel-display-not-correct-on-small-device/18433782</a></p> | 1 |
<p dir="auto">The SciPy documentation <a href="https://docs.scipy.org/doc/" rel="nofollow">site</a> does not load securely (in Google Chrome) due to mixed content (HTTPS vs HTTP). This seems to have been resolved in the Sphinx repo in this <a href="https://github.com/sphinx-doc/sphinx/commit/f9250e198b5dab4ab9ff9a489ffdf723d873451c#diff-efa15804d6baa4dbab13c1d4788865c1">commit</a> and in the SciPy Sphinx Theme repo in this <a href="https://github.com/scipy/scipy-sphinx-theme/commit/0eaef7ac75f6181c5b8d6f6608a46688fcf202ed#diff-d92810ca57a19738154e282c2426f6f1">commit</a>. However, it doesn't appear that the doc site has been updated with these changes.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/714528/41494082-6a9ff910-70c3-11e8-97a4-88dc0cb7facf.png"><img src="https://user-images.githubusercontent.com/714528/41494082-6a9ff910-70c3-11e8-97a4-88dc0cb7facf.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">I couldn't find another issue with this, but if I overlooked it, feel free to refer me to the duplicate. Thanks.</p> | <h3 dir="auto">Is your feature request related to a problem? Please describe.</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Describe the solution you'd like.</h3>
<p dir="auto">I would like to be able to access the objective function value at each iteration of the differential_evolution algorithm provided in scipy.optimize. This is currently not available in the callback method.</p>
<h3 dir="auto">Describe alternatives you've considered.</h3>
<p dir="auto">I have considered evaluating the function given the parameters value xk (which is available in the callback method). Unfortunately, this means I need to reevaluate the objective function, which in my case is prohibitive because the objective is very expensive to evaluate.</p>
<h3 dir="auto">Additional context (e.g. screenshots, GIFs)</h3>
<p dir="auto"><em>No response</em></p> | 0 |
<p dir="auto">This appears to be valid:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import os
os.environ["XLA_FLAGS"] = '--xla_force_host_platform_device_count=8'
import functools
import jax
import jax.numpy as jnp
import numpy as np
@functools.partial(jax.custom_vjp, nondiff_argnums=(1,))
def custom_psum(x, axis_name):
return x
def fwd(x, axis_name):
print('fwd_arg0', x)
print('fwd_arg1', axis_name)
return custom_psum(x, axis_name), None
def bwd(axis_name, res, g):
print('bwd_arg0', axis_name)
print('bwd_arg1', res)
print('bwd_arg2', g)
del axis_name, res
return (g,)
custom_psum.defvjp(fwd, bwd)
def loss_fn(x):
return jnp.sum(custom_psum(x, 'i'))
jax.pmap(jax.grad(loss_fn), 'i')(np.random.random((8, 2, 3)))"><pre class="notranslate"><code class="notranslate">import os
os.environ["XLA_FLAGS"] = '--xla_force_host_platform_device_count=8'
import functools
import jax
import jax.numpy as jnp
import numpy as np
@functools.partial(jax.custom_vjp, nondiff_argnums=(1,))
def custom_psum(x, axis_name):
return x
def fwd(x, axis_name):
print('fwd_arg0', x)
print('fwd_arg1', axis_name)
return custom_psum(x, axis_name), None
def bwd(axis_name, res, g):
print('bwd_arg0', axis_name)
print('bwd_arg1', res)
print('bwd_arg2', g)
del axis_name, res
return (g,)
custom_psum.defvjp(fwd, bwd)
def loss_fn(x):
return jnp.sum(custom_psum(x, 'i'))
jax.pmap(jax.grad(loss_fn), 'i')(np.random.random((8, 2, 3)))
</code></pre></div>
<p dir="auto">It appears that the non-diff arguments are brought to the front for <code class="notranslate">bwd</code>, but not <code class="notranslate">fwd</code>.<br>
However, the document implies that they should be moved for both <code class="notranslate">fwd</code> and <code class="notranslate">bwd</code>:<br>
<a href="https://jax.readthedocs.io/en/latest/notebooks/Custom_derivative_rules_for_Python_code.html#jax.custom_vjp-with-nondiff_argnums" rel="nofollow">https://jax.readthedocs.io/en/latest/notebooks/Custom_derivative_rules_for_Python_code.html#jax.custom_vjp-with-nondiff_argnums</a></p> | <p dir="auto">The <code class="notranslate">lax.custom_root</code> method does not work on methods that require gradient, e.g., the Newton-Raphson method. The core of the problem seems to be overly-aggressive application of <code class="notranslate">stop_gradient</code> <a href="https://github.com/google/jax/blob/e6950dd63ed3c054067c53bd4806dfbb85e0eef7/jax/_src/lax/control_flow.py#L2310">here</a>.</p>
<p dir="auto">While I've included a minimal example below, <a href="https://colab.research.google.com/drive/1e5_0gGYc-v9lKKwvUS7rqSUhA0D-OpT3" rel="nofollow">this notebook</a> does a deeper dive into the error and demonstrates that removing <code class="notranslate">_stop_gradient_fun</code> applications resolves the problem.</p>
<p dir="auto">I'd be happy to make a PR to resolve the issue, but my naΓ―ve solution of removing all calls to <code class="notranslate">stop_gradient</code> in <code class="notranslate">custom_root</code> appears... well, naΓ―ve. I'm just not sure why <code class="notranslate">stop_gradient</code> is required at all here, but it seems related to not wanting to trace gradients through control structures like while-loops. I suppose I'm curious why custom JVP'ing a function doesn't automatiically shortcut the gradient computation...</p>
<h3 dir="auto">Related issues</h3>
<ul dir="auto">
<li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="502922387" data-permission-text="Title is private" data-url="https://github.com/google/jax/issues/1448" data-hovercard-type="issue" data-hovercard-url="/google/jax/issues/1448/hovercard" href="https://github.com/google/jax/issues/1448">#1448</a> discusses a <code class="notranslate">define_implicit_gradient</code> function that doesn't use <code class="notranslate">stop_gradient</code>. This function was never merged. Regardless, the fact that <code class="notranslate">custom_root</code> methods can't use gradients seems like a bug.
<ul dir="auto">
<li>Additional reading of the discussion there suggests that one of the main reasons for <code class="notranslate">stop_gradient</code> was the non-differentiability of control structures (<code class="notranslate">lax.while_loop</code> in particular). Nevertheless, my tests don't seem to trigger the issue.</li>
</ul>
</li>
</ul>
<h2 dir="auto">Minimal example</h2>
<p dir="auto">This example follows <a href="https://github.com/google/jax/blob/e6950dd63ed3c054067c53bd4806dfbb85e0eef7/tests/lax_control_flow_test.py#L2010">the JAX unit test</a> of the <code class="notranslate">custom_root</code> method, with the bisection method replaced with Newton's method.</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import jax
import numpy as np
def newton(f, x0):
"""Newton's method for root-finding."""
initial_state = (0, x0) # (iteration, x)
def cond(state):
it, x = state
# We fix 10 iterations for simplicity, this is plenty for convergence in our tests.
return (it < 10)
def body(state):
it, x = state
fx, dfx = f(x), jax.grad(f)(x)
step = fx / dfx
new_state = it + 1, x - step
return new_state
return jax.lax.while_loop(
cond,
body,
initial_state,
)[1]"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">jax</span>
<span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-k">def</span> <span class="pl-en">newton</span>(<span class="pl-s1">f</span>, <span class="pl-s1">x0</span>):
<span class="pl-s">"""Newton's method for root-finding."""</span>
<span class="pl-s1">initial_state</span> <span class="pl-c1">=</span> (<span class="pl-c1">0</span>, <span class="pl-s1">x0</span>) <span class="pl-c"># (iteration, x)</span>
<span class="pl-k">def</span> <span class="pl-en">cond</span>(<span class="pl-s1">state</span>):
<span class="pl-s1">it</span>, <span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-s1">state</span>
<span class="pl-c"># We fix 10 iterations for simplicity, this is plenty for convergence in our tests.</span>
<span class="pl-k">return</span> (<span class="pl-s1">it</span> <span class="pl-c1"><</span> <span class="pl-c1">10</span>)
<span class="pl-k">def</span> <span class="pl-en">body</span>(<span class="pl-s1">state</span>):
<span class="pl-s1">it</span>, <span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-s1">state</span>
<span class="pl-s1">fx</span>, <span class="pl-s1">dfx</span> <span class="pl-c1">=</span> <span class="pl-en">f</span>(<span class="pl-s1">x</span>), <span class="pl-s1">jax</span>.<span class="pl-en">grad</span>(<span class="pl-s1">f</span>)(<span class="pl-s1">x</span>)
<span class="pl-s1">step</span> <span class="pl-c1">=</span> <span class="pl-s1">fx</span> <span class="pl-c1">/</span> <span class="pl-s1">dfx</span>
<span class="pl-s1">new_state</span> <span class="pl-c1">=</span> <span class="pl-s1">it</span> <span class="pl-c1">+</span> <span class="pl-c1">1</span>, <span class="pl-s1">x</span> <span class="pl-c1">-</span> <span class="pl-s1">step</span>
<span class="pl-k">return</span> <span class="pl-s1">new_state</span>
<span class="pl-k">return</span> <span class="pl-s1">jax</span>.<span class="pl-s1">lax</span>.<span class="pl-en">while_loop</span>(
<span class="pl-s1">cond</span>,
<span class="pl-s1">body</span>,
<span class="pl-s1">initial_state</span>,
)[<span class="pl-c1">1</span>]</pre></div>
<h3 dir="auto">Newton's method without <code class="notranslate">custom_root</code></h3>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="initial_guess = 2.0
x_test = 5.0
def sqrt_cubed_newton(x):
implicit = lambda y: y ** 2 - x ** 3
return newton(implicit, initial_guess)
print("Without custom_root")
v = sqrt_cubed_newton(x_test)
print(f"Value = {v}")
if abs(v - x_test ** 1.5) < 1e-5:
print("Pass")
else:
print("Fail")"><pre class="notranslate"><span class="pl-s1">initial_guess</span> <span class="pl-c1">=</span> <span class="pl-c1">2.0</span>
<span class="pl-s1">x_test</span> <span class="pl-c1">=</span> <span class="pl-c1">5.0</span>
<span class="pl-k">def</span> <span class="pl-en">sqrt_cubed_newton</span>(<span class="pl-s1">x</span>):
<span class="pl-s1">implicit</span> <span class="pl-c1">=</span> <span class="pl-k">lambda</span> <span class="pl-s1">y</span>: <span class="pl-s1">y</span> <span class="pl-c1">**</span> <span class="pl-c1">2</span> <span class="pl-c1">-</span> <span class="pl-s1">x</span> <span class="pl-c1">**</span> <span class="pl-c1">3</span>
<span class="pl-k">return</span> <span class="pl-en">newton</span>(<span class="pl-s1">implicit</span>, <span class="pl-s1">initial_guess</span>)
<span class="pl-en">print</span>(<span class="pl-s">"Without custom_root"</span>)
<span class="pl-s1">v</span> <span class="pl-c1">=</span> <span class="pl-en">sqrt_cubed_newton</span>(<span class="pl-s1">x_test</span>)
<span class="pl-en">print</span>(<span class="pl-s">f"Value = <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">v</span><span class="pl-kos">}</span></span>"</span>)
<span class="pl-k">if</span> <span class="pl-en">abs</span>(<span class="pl-s1">v</span> <span class="pl-c1">-</span> <span class="pl-s1">x_test</span> <span class="pl-c1">**</span> <span class="pl-c1">1.5</span>) <span class="pl-c1"><</span> <span class="pl-c1">1e-5</span>:
<span class="pl-en">print</span>(<span class="pl-s">"Pass"</span>)
<span class="pl-k">else</span>:
<span class="pl-en">print</span>(<span class="pl-s">"Fail"</span>)</pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Without custom_root
Value=11.180339813232422
Pass"><pre class="notranslate"><code class="notranslate">Without custom_root
Value=11.180339813232422
Pass
</code></pre></div>
<h3 dir="auto">With <code class="notranslate">custom_root</code></h3>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="
def sqrt_cubed_newton_custom_root(x):
def scalar_solve(g, y):
return y / g(1.0)
implicit = lambda y: y ** 2 - x ** 3
return jax.lax.custom_root(implicit, initial_guess, newton, scalar_solve)
print("With custom_root")
v = sqrt_cubed_newton_custom_root(x_test)
print(f"Value = {v}")
if abs(v - x_test ** 1.5) < 1e-5:
print("Pass")
else:
print("Fail")"><pre class="notranslate"><span class="pl-k">def</span> <span class="pl-en">sqrt_cubed_newton_custom_root</span>(<span class="pl-s1">x</span>):
<span class="pl-k">def</span> <span class="pl-en">scalar_solve</span>(<span class="pl-s1">g</span>, <span class="pl-s1">y</span>):
<span class="pl-k">return</span> <span class="pl-s1">y</span> <span class="pl-c1">/</span> <span class="pl-en">g</span>(<span class="pl-c1">1.0</span>)
<span class="pl-s1">implicit</span> <span class="pl-c1">=</span> <span class="pl-k">lambda</span> <span class="pl-s1">y</span>: <span class="pl-s1">y</span> <span class="pl-c1">**</span> <span class="pl-c1">2</span> <span class="pl-c1">-</span> <span class="pl-s1">x</span> <span class="pl-c1">**</span> <span class="pl-c1">3</span>
<span class="pl-k">return</span> <span class="pl-s1">jax</span>.<span class="pl-s1">lax</span>.<span class="pl-en">custom_root</span>(<span class="pl-s1">implicit</span>, <span class="pl-s1">initial_guess</span>, <span class="pl-s1">newton</span>, <span class="pl-s1">scalar_solve</span>)
<span class="pl-en">print</span>(<span class="pl-s">"With custom_root"</span>)
<span class="pl-s1">v</span> <span class="pl-c1">=</span> <span class="pl-en">sqrt_cubed_newton_custom_root</span>(<span class="pl-s1">x_test</span>)
<span class="pl-en">print</span>(<span class="pl-s">f"Value = <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">v</span><span class="pl-kos">}</span></span>"</span>)
<span class="pl-k">if</span> <span class="pl-en">abs</span>(<span class="pl-s1">v</span> <span class="pl-c1">-</span> <span class="pl-s1">x_test</span> <span class="pl-c1">**</span> <span class="pl-c1">1.5</span>) <span class="pl-c1"><</span> <span class="pl-c1">1e-5</span>:
<span class="pl-en">print</span>(<span class="pl-s">"Pass"</span>)
<span class="pl-k">else</span>:
<span class="pl-en">print</span>(<span class="pl-s">"Fail"</span>)</pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="With custom_root
Value = nan
Fail"><pre class="notranslate"><code class="notranslate">With custom_root
Value = nan
Fail
</code></pre></div>
<p dir="auto">The notebook referenced above shows how removing the call to <code class="notranslate">_stop_gradient_fun</code> fixes the problem.</p>
<p dir="auto">Please:</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Check for duplicate issues.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Provide a complete example of how to reproduce the bug, wrapped in triple backticks like this</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> If applicable, include full error messages/tracebacks.</li>
</ul> | 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.x</td>
</tr>
</tbody>
</table>
<p dir="auto"><strong>Description:</strong><br>
I am using the PropertyInfo component to read phpdoc comments.<br>
Somewhere we got :</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" /**
* Array of categories IDs
* @var array|null
* @SWG\Property(@SWG\Items(type="string"))
*/"><pre class="notranslate"><code class="notranslate"> /**
* Array of categories IDs
* @var array|null
* @SWG\Property(@SWG\Items(type="string"))
*/
</code></pre></div>
<p dir="auto">and in our code $type->isNullable() returns "false".<br>
$type is a Symfony\Component\PropertyInfo\Type instance.</p>
<p dir="auto"><strong>Fix:</strong><br>
<a href="https://github.com/symfony/symfony/blob/3.2/src/Symfony/Component/PropertyInfo/Util/PhpDocTypeHelper.php#L107">https://github.com/symfony/symfony/blob/3.2/src/Symfony/Component/PropertyInfo/Util/PhpDocTypeHelper.php#L107</a><br>
The "nullable" argument should be used here i believe ?</p>
<p dir="auto">I can provide a pull request to fix this if you agree that it is an issue (not sure if the argument is unused on purpose here ..)</p> | <table role="table">
<thead>
<tr>
<th>Q</th>
<th>A</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bug report?</td>
<td>yes</td>
</tr>
<tr>
<td>Feature request?</td>
<td>no</td>
</tr>
<tr>
<td>BC Break report?</td>
<td>no</td>
</tr>
<tr>
<td>RFC?</td>
<td>no</td>
</tr>
<tr>
<td>Symfony version</td>
<td>2.8</td>
</tr>
</tbody>
</table>
<p dir="auto">PHP allows null value when using an array type hint but the <a href="https://github.com/symfony/property-info/blob/2.8/Extractor/PhpDocExtractor.php#L343">PhpDocExtractor</a> does not consider array and collections as nullable since the <a href="https://github.com/symfony/property-info/blob/2.8/Extractor/ReflectionExtractor.php#L214">ReflectionExtractor</a> does.</p>
<div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function setProperty(array $prop = null)"><pre class="notranslate"><span class="pl-k">function</span> setProperty(<span class="pl-smi">array</span> <span class="pl-s1"><span class="pl-c1">$</span>prop</span> = <span class="pl-c1">null</span>)</pre></div> | 1 |
<p dir="auto">es6-shim.d.ts conflicts with lib.es6.d.ts when typescript target is ES6.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/16577444/12433189/eb6044c4-beff-11e5-9a32-f586fe0155df.jpeg"><img src="https://cloud.githubusercontent.com/assets/16577444/12433189/eb6044c4-beff-11e5-9a32-f586fe0155df.jpeg" alt="screenshot" style="max-width: 100%;"></a></p> | <p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[x ] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[x ] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
</code></pre></div>
<p dir="auto"><strong>Current behavior</strong></p>
<p dir="auto">With the tag, if you use the multiple="false" property, the ngModel will not update the selected item. If you remove the multiple="false" property, it works correctly.
Expected behavior
Including the multiple="false" property of the tag will allow the ngModel to correctly select the item.</p>
<p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<select id="mySelect" name="mySelect" [(ngModel)]="mySelectedValue" multiple="false" size="3">
<option *ngFor="let option of options" [ngValue]="option">{{option.label}}</option>
</select>"><pre class="notranslate"><code class="notranslate"><select id="mySelect" name="mySelect" [(ngModel)]="mySelectedValue" multiple="false" size="3">
<option *ngFor="let option of options" [ngValue]="option">{{option.label}}</option>
</select>
</code></pre></div>
<p dir="auto">if multiple="true" it works correctly if mySelectedValue is set, if you remove multiple="false" it works as well, but you cannot dynamically set the value of multiple property utilizing [multiple]="myDecision" or multiple="false"</p>
<p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong></p>
<p dir="auto"><strong>Please tell us about your environment:</strong></p>
<p dir="auto">Windows 7, Angular CLI (ng serve)</p>
<ul dir="auto">
<li><strong>Angular version:</strong> 2.0.X</li>
</ul>
<p dir="auto">2.4.0</p>
<ul dir="auto">
<li><strong>Browser:</strong> [all | Chrome XX | Firefox XX | IE XX | Safari XX | Mobile Chrome XX | Android X.X Web Browser | iOS XX Safari | iOS XX UIWebView | iOS XX WKWebView ]</li>
</ul>
<p dir="auto">Chrome, Firefox, IE</p>
<ul dir="auto">
<li><strong>Language:</strong> [all | TypeScript X.X | ES6/7 | ES5]<br>
all</li>
<li><strong>Node (for AoT issues):</strong> <code class="notranslate">node --version</code> =</li>
</ul> | 0 |
<p dir="auto">I want to access the used/generated babel configuration. Especially which presets includes which plugins exactly.</p>
<p dir="auto">PS: I get option-manager work, the ONLY problem is that plugins which presets uses, are anonymous functions. Normally the <strong>key</strong> prop reference to the full path. Plugins included by presets have a dynamical incrementef name something with "$"</p>
<p dir="auto">How this ensures to avoid duplication plugins?<br>
Is there any way to get some hints of those kind of plugins, so i can list it in a kind debug output?</p> | <p dir="auto">I'm trying to use mocha with "@babel/register" but I'm getting this error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="(function (exports, require, module, __filename, __dirname) { import "core-js/modules/es6.array.iterator";
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Unexpected string
at new Script (vm.js:74:7)
at createScript (vm.js:246:10)
at Object.runInThisContext (vm.js:298:10)
at Module._compile (internal/modules/cjs/loader.js:657:28)"><pre class="notranslate"><code class="notranslate">(function (exports, require, module, __filename, __dirname) { import "core-js/modules/es6.array.iterator";
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Unexpected string
at new Script (vm.js:74:7)
at createScript (vm.js:246:10)
at Object.runInThisContext (vm.js:298:10)
at Module._compile (internal/modules/cjs/loader.js:657:28)
</code></pre></div>
<p dir="auto">This is my current configuration (babel/core and babel/register have the same version, so I don't understand what I'm doing wrong):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ββ @babel/code-frame@7.0.0-beta.44
ββ @babel/core@7.0.0-beta.47
ββ @babel/generator@7.0.0-beta.47
ββ @babel/helper-annotate-as-pure@7.0.0-beta.47
ββ @babel/helper-builder-binary-assignment-operator-visitor@7.0.0-beta.47
ββ @babel/helper-call-delegate@7.0.0-beta.47
ββ @babel/helper-define-map@7.0.0-beta.47
ββ @babel/helper-explode-assignable-expression@7.0.0-beta.47
ββ @babel/helper-function-name@7.0.0-beta.47
ββ @babel/helper-get-function-arity@7.0.0-beta.47
ββ @babel/helper-hoist-variables@7.0.0-beta.47
ββ @babel/helper-member-expression-to-functions@7.0.0-beta.47
ββ @babel/helper-module-imports@7.0.0-beta.47
ββ @babel/helper-module-transforms@7.0.0-beta.47
ββ @babel/helper-optimise-call-expression@7.0.0-beta.47
ββ @babel/helper-plugin-utils@7.0.0-beta.47
ββ @babel/helper-regex@7.0.0-beta.47
ββ @babel/helper-remap-async-to-generator@7.0.0-beta.47
ββ @babel/helper-replace-supers@7.0.0-beta.47
ββ @babel/helper-simple-access@7.0.0-beta.47
ββ @babel/helper-split-export-declaration@7.0.0-beta.47
ββ @babel/helper-wrap-function@7.0.0-beta.47
ββ @babel/helpers@7.0.0-beta.47
ββ @babel/highlight@7.0.0-beta.44
ββ @babel/plugin-proposal-async-generator-functions@7.0.0-beta.47
ββ @babel/plugin-proposal-class-properties@7.0.0-beta.47
ββ @babel/plugin-proposal-decorators@7.0.0-beta.47
ββ @babel/plugin-proposal-object-rest-spread@7.0.0-beta.47
ββ @babel/plugin-proposal-optional-catch-binding@7.0.0-beta.47
ββ @babel/plugin-proposal-unicode-property-regex@7.0.0-beta.47
ββ @babel/plugin-syntax-async-generators@7.0.0-beta.47
ββ @babel/plugin-syntax-class-properties@7.0.0-beta.47
ββ @babel/plugin-syntax-decorators@7.0.0-beta.47
ββ @babel/plugin-syntax-dynamic-import@7.0.0-beta.47
ββ @babel/plugin-syntax-jsx@7.0.0-beta.47
ββ @babel/plugin-syntax-object-rest-spread@7.0.0-beta.47
ββ @babel/plugin-syntax-optional-catch-binding@7.0.0-beta.47
ββ @babel/plugin-transform-arrow-functions@7.0.0-beta.47
ββ @babel/plugin-transform-async-to-generator@7.0.0-beta.47
ββ @babel/plugin-transform-block-scoped-functions@7.0.0-beta.47
ββ @babel/plugin-transform-block-scoping@7.0.0-beta.47
ββ @babel/plugin-transform-classes@7.0.0-beta.47
ββ @babel/plugin-transform-computed-properties@7.0.0-beta.47
ββ @babel/plugin-transform-destructuring@7.0.0-beta.47
ββ @babel/plugin-transform-dotall-regex@7.0.0-beta.47
ββ @babel/plugin-transform-duplicate-keys@7.0.0-beta.47
ββ @babel/plugin-transform-exponentiation-operator@7.0.0-beta.47
ββ @babel/plugin-transform-for-of@7.0.0-beta.47
ββ @babel/plugin-transform-function-name@7.0.0-beta.47
ββ @babel/plugin-transform-literals@7.0.0-beta.47
ββ @babel/plugin-transform-modules-amd@7.0.0-beta.47
ββ @babel/plugin-transform-modules-commonjs@7.0.0-beta.47
ββ @babel/plugin-transform-modules-systemjs@7.0.0-beta.47
ββ @babel/plugin-transform-modules-umd@7.0.0-beta.47
ββ @babel/plugin-transform-new-target@7.0.0-beta.47
ββ @babel/plugin-transform-object-super@7.0.0-beta.47
ββ @babel/plugin-transform-parameters@7.0.0-beta.47
ββ @babel/plugin-transform-regenerator@7.0.0-beta.47
ββ @babel/plugin-transform-runtime@7.0.0-beta.47
ββ @babel/plugin-transform-shorthand-properties@7.0.0-beta.47
ββ @babel/plugin-transform-spread@7.0.0-beta.47
ββ @babel/plugin-transform-sticky-regex@7.0.0-beta.47
ββ @babel/plugin-transform-template-literals@7.0.0-beta.47
ββ @babel/plugin-transform-typeof-symbol@7.0.0-beta.47
ββ @babel/plugin-transform-unicode-regex@7.0.0-beta.47
ββ @babel/preset-env@7.0.0-beta.47
ββ @babel/register@7.0.0-beta.47
ββ @babel/runtime-corejs2@7.0.0
ββ @babel/runtime@7.0.0
ββ @babel/template@7.0.0-beta.47
ββ @babel/traverse@7.0.0-beta.47
ββ @babel/types@7.0.0-beta.47"><pre class="notranslate"><code class="notranslate">ββ @babel/code-frame@7.0.0-beta.44
ββ @babel/core@7.0.0-beta.47
ββ @babel/generator@7.0.0-beta.47
ββ @babel/helper-annotate-as-pure@7.0.0-beta.47
ββ @babel/helper-builder-binary-assignment-operator-visitor@7.0.0-beta.47
ββ @babel/helper-call-delegate@7.0.0-beta.47
ββ @babel/helper-define-map@7.0.0-beta.47
ββ @babel/helper-explode-assignable-expression@7.0.0-beta.47
ββ @babel/helper-function-name@7.0.0-beta.47
ββ @babel/helper-get-function-arity@7.0.0-beta.47
ββ @babel/helper-hoist-variables@7.0.0-beta.47
ββ @babel/helper-member-expression-to-functions@7.0.0-beta.47
ββ @babel/helper-module-imports@7.0.0-beta.47
ββ @babel/helper-module-transforms@7.0.0-beta.47
ββ @babel/helper-optimise-call-expression@7.0.0-beta.47
ββ @babel/helper-plugin-utils@7.0.0-beta.47
ββ @babel/helper-regex@7.0.0-beta.47
ββ @babel/helper-remap-async-to-generator@7.0.0-beta.47
ββ @babel/helper-replace-supers@7.0.0-beta.47
ββ @babel/helper-simple-access@7.0.0-beta.47
ββ @babel/helper-split-export-declaration@7.0.0-beta.47
ββ @babel/helper-wrap-function@7.0.0-beta.47
ββ @babel/helpers@7.0.0-beta.47
ββ @babel/highlight@7.0.0-beta.44
ββ @babel/plugin-proposal-async-generator-functions@7.0.0-beta.47
ββ @babel/plugin-proposal-class-properties@7.0.0-beta.47
ββ @babel/plugin-proposal-decorators@7.0.0-beta.47
ββ @babel/plugin-proposal-object-rest-spread@7.0.0-beta.47
ββ @babel/plugin-proposal-optional-catch-binding@7.0.0-beta.47
ββ @babel/plugin-proposal-unicode-property-regex@7.0.0-beta.47
ββ @babel/plugin-syntax-async-generators@7.0.0-beta.47
ββ @babel/plugin-syntax-class-properties@7.0.0-beta.47
ββ @babel/plugin-syntax-decorators@7.0.0-beta.47
ββ @babel/plugin-syntax-dynamic-import@7.0.0-beta.47
ββ @babel/plugin-syntax-jsx@7.0.0-beta.47
ββ @babel/plugin-syntax-object-rest-spread@7.0.0-beta.47
ββ @babel/plugin-syntax-optional-catch-binding@7.0.0-beta.47
ββ @babel/plugin-transform-arrow-functions@7.0.0-beta.47
ββ @babel/plugin-transform-async-to-generator@7.0.0-beta.47
ββ @babel/plugin-transform-block-scoped-functions@7.0.0-beta.47
ββ @babel/plugin-transform-block-scoping@7.0.0-beta.47
ββ @babel/plugin-transform-classes@7.0.0-beta.47
ββ @babel/plugin-transform-computed-properties@7.0.0-beta.47
ββ @babel/plugin-transform-destructuring@7.0.0-beta.47
ββ @babel/plugin-transform-dotall-regex@7.0.0-beta.47
ββ @babel/plugin-transform-duplicate-keys@7.0.0-beta.47
ββ @babel/plugin-transform-exponentiation-operator@7.0.0-beta.47
ββ @babel/plugin-transform-for-of@7.0.0-beta.47
ββ @babel/plugin-transform-function-name@7.0.0-beta.47
ββ @babel/plugin-transform-literals@7.0.0-beta.47
ββ @babel/plugin-transform-modules-amd@7.0.0-beta.47
ββ @babel/plugin-transform-modules-commonjs@7.0.0-beta.47
ββ @babel/plugin-transform-modules-systemjs@7.0.0-beta.47
ββ @babel/plugin-transform-modules-umd@7.0.0-beta.47
ββ @babel/plugin-transform-new-target@7.0.0-beta.47
ββ @babel/plugin-transform-object-super@7.0.0-beta.47
ββ @babel/plugin-transform-parameters@7.0.0-beta.47
ββ @babel/plugin-transform-regenerator@7.0.0-beta.47
ββ @babel/plugin-transform-runtime@7.0.0-beta.47
ββ @babel/plugin-transform-shorthand-properties@7.0.0-beta.47
ββ @babel/plugin-transform-spread@7.0.0-beta.47
ββ @babel/plugin-transform-sticky-regex@7.0.0-beta.47
ββ @babel/plugin-transform-template-literals@7.0.0-beta.47
ββ @babel/plugin-transform-typeof-symbol@7.0.0-beta.47
ββ @babel/plugin-transform-unicode-regex@7.0.0-beta.47
ββ @babel/preset-env@7.0.0-beta.47
ββ @babel/register@7.0.0-beta.47
ββ @babel/runtime-corejs2@7.0.0
ββ @babel/runtime@7.0.0
ββ @babel/template@7.0.0-beta.47
ββ @babel/traverse@7.0.0-beta.47
ββ @babel/types@7.0.0-beta.47
</code></pre></div> | 0 |
<h3 dir="auto"><g-emoji class="g-emoji" alias="computer" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f4bb.png">π»</g-emoji></h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Would you like to work on a fix?</li>
</ul>
<h3 dir="auto">How are you using Babel?</h3>
<p dir="auto">@babel/cli</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 fn = async () /* test */ => {
};"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-en">fn</span> <span class="pl-c1">=</span> <span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c">/* test */</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span></pre></div>
<h3 dir="auto">Configuration file name</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Configuration</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Current and expected behavior</h3>
<p dir="auto">using <code class="notranslate">@babel/generator</code> version 7.20.0 and newer results in error</p>
<p dir="auto">last working version is <code class="notranslate">7.19.6</code></p>
<h3 dir="auto">Environment</h3>
<ul dir="auto">
<li><code class="notranslate">@babel/generator@7.20.0</code></li>
</ul>
<h3 dir="auto">Possible solution</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Additional context</h3>
<p dir="auto">also fails in <a href="https://babeljs.io/repl#?browsers=defaults%2C%20ie%2011%2C%20ie_mob%2011&build=&builtIns=false&corejs=3.6&spec=false&loose=false&code_lz=MYewdgzgLgBAZmGBeGBDCBPMwYAoCUMA9AFQxQCm0MJRyAfDAN4BQAvgNxA&debug=false&forceAllTransforms=false&shippedProposals=false&circleciRepo=&evaluate=false&fileSize=false&timeTravel=false&sourceType=module&lineWrap=true&presets=&prettier=true&targets=&version=7.20.1&externalPlugins=&assumptions=%7B%7D" rel="nofollow">babel repl</a></p> | <h3 dir="auto"><g-emoji class="g-emoji" alias="computer" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f4bb.png">π»</g-emoji></h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Would you like to work on a fix?</li>
</ul>
<h3 dir="auto">How are you using Babel?</h3>
<p dir="auto">babel-loader (webpack)</p>
<h3 dir="auto">Input code</h3>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import { apiLogout } from "../api";
import { reportError } from "../libs/report_error";
export function logout() {
return reportError(async (/*dispatch*/) => {
await apiLogout();
window.location.reload();
});
}"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">apiLogout</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"../api"</span><span class="pl-kos">;</span>
<span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">reportError</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">"../libs/report_error"</span><span class="pl-kos">;</span>
<span class="pl-k">export</span> <span class="pl-k">function</span> <span class="pl-en">logout</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-en">reportError</span><span class="pl-kos">(</span><span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-c">/*dispatch*/</span><span class="pl-kos">)</span> <span class="pl-c1">=></span> <span class="pl-kos">{</span>
<span class="pl-k">await</span> <span class="pl-en">apiLogout</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-smi">window</span><span class="pl-kos">.</span><span class="pl-c1">location</span><span class="pl-kos">.</span><span class="pl-en">reload</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span></pre></div>
<h3 dir="auto">Configuration file name</h3>
<p dir="auto">babel.config.js</p>
<h3 dir="auto">Configuration</h3>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="module.exports = function(api) {
const isTest = api.env('test');
const envOptions = isTest
? {
"targets": {
"node": "current"
}
}
: {
modules: false,
useBuiltIns: 'usage',
corejs: "3.25",
// debug: true,
};
return {
"presets": [
["@babel/preset-env", envOptions],
"@babel/preset-react"
],
};
};"><pre class="notranslate"><span class="pl-smi">module</span><span class="pl-kos">.</span><span class="pl-en">exports</span> <span class="pl-c1">=</span> <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">api</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-k">const</span> <span class="pl-s1">isTest</span> <span class="pl-c1">=</span> <span class="pl-s1">api</span><span class="pl-kos">.</span><span class="pl-en">env</span><span class="pl-kos">(</span><span class="pl-s">'test'</span><span class="pl-kos">)</span><span class="pl-kos">;</span>
<span class="pl-k">const</span> <span class="pl-s1">envOptions</span> <span class="pl-c1">=</span> <span class="pl-s1">isTest</span>
? <span class="pl-kos">{</span>
<span class="pl-s">"targets"</span>: <span class="pl-kos">{</span>
<span class="pl-s">"node"</span>: <span class="pl-s">"current"</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
: <span class="pl-kos">{</span>
<span class="pl-c1">modules</span>: <span class="pl-c1">false</span><span class="pl-kos">,</span>
<span class="pl-c1">useBuiltIns</span>: <span class="pl-s">'usage'</span><span class="pl-kos">,</span>
<span class="pl-c1">corejs</span>: <span class="pl-s">"3.25"</span><span class="pl-kos">,</span>
<span class="pl-c">// debug: true,</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-s">"presets"</span>: <span class="pl-kos">[</span>
<span class="pl-kos">[</span><span class="pl-s">"@babel/preset-env"</span><span class="pl-kos">,</span> <span class="pl-s1">envOptions</span><span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-s">"@babel/preset-react"</span>
<span class="pl-kos">]</span><span class="pl-kos">,</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span>
<span class="pl-kos">}</span><span class="pl-kos">;</span></pre></div>
<h3 dir="auto">Current and expected behavior</h3>
<p dir="auto">After an upgrade from <code class="notranslate">7.19.3</code> to <code class="notranslate">7.19.6</code> I've got a following failure.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ERROR in ./assets/actions/user.js 12:5
Module parse failed: Unexpected token (12:5)
File was processed with these loaders:
* ./node_modules/babel-loader/lib/index.js
You may need an additional loader to handle the result of these loaders.
| export function logout() {
| return reportError(async /*dispatch*/
> () => {
| await apiLogout();
| window.location.reload();
@ ./assets/actions/index.js 2:0-37 12:13-24
@ ./assets/app.js 6:0-37 12:15-23"><pre class="notranslate"><code class="notranslate">ERROR in ./assets/actions/user.js 12:5
Module parse failed: Unexpected token (12:5)
File was processed with these loaders:
* ./node_modules/babel-loader/lib/index.js
You may need an additional loader to handle the result of these loaders.
| export function logout() {
| return reportError(async /*dispatch*/
> () => {
| await apiLogout();
| window.location.reload();
@ ./assets/actions/index.js 2:0-37 12:13-24
@ ./assets/app.js 6:0-37 12:15-23
</code></pre></div>
<p dir="auto">Babel inserts a new line and breaks async closure (I guess, auto-insertion of semicolon is involved).</p>
<p dir="auto">The same error is reproducible in an online playground with other versions: <a href="https://babel.dev/repl#?browsers=defaults%2C%20not%20ie%2011%2C%20not%20ie_mob%2011&build=&builtIns=false&corejs=3.21&spec=false&loose=false&code_lz=JYWwDg9gTgLgBAbzgQzMAMhA5hArvAXzgDMoIQ4AiAOmoHpVhKBuAKFElkTigFNOYAUShkocIqXJVadADbAARgGc6fAQH1eI6C1ateADwElcAOwDGMYBFNxZ2PDAAUASkSs4PXjFxRba6CFtKCdkJQBPCzgnOgAqABNgJTBkGHMAC1i6NwBeAD53T09kAHdkYHhGTBx8VzYiuBLgU3iIEup7c1TrU2o-e2R4uo9xFzYCViA&debug=false&forceAllTransforms=false&shippedProposals=false&circleciRepo=&evaluate=false&fileSize=false&timeTravel=false&sourceType=module&lineWrap=true&presets=env%2Creact&prettier=false&targets=&version=7.17.12&externalPlugins=&assumptions=%7B%7D" rel="nofollow">7.17.12 generates correct code</a> while <a href="https://babel.dev/repl#?browsers=defaults%2C%20not%20ie%2011%2C%20not%20ie_mob%2011&build=&builtIns=false&corejs=3.21&spec=false&loose=false&code_lz=JYWwDg9gTgLgBAbzgQzMAMhA5hArvAXzgDMoIQ4AiAOmoHpVhKBuAKFElkTigFNOYAUShkocIqXJVadADbAARgGc6fAQH1eI6C1ateADwElcAOwDGMYBFNxZ2PDAAUASkSs4PXjFxRba6CFtKCdkJQBPCzgnOgAqABNgJTBkGHMAC1i6NwBeAD53T09kAHdkYHhGTBx8VzYiuBLgU3iIEup7c1TrU2o-e2R4uo9xFzYCViA&debug=false&forceAllTransforms=false&shippedProposals=false&circleciRepo=&evaluate=false&fileSize=false&timeTravel=false&sourceType=module&lineWrap=true&presets=env%2Creact&prettier=false&targets=&version=7.20.1&externalPlugins=&assumptions=%7B%7D" rel="nofollow">7.20.1 generates invalid code</a></p>
<h3 dir="auto">Environment</h3>
<h4 dir="auto">Environment w/o the issue</h4>
<p dir="auto">System:<br>
OS: Linux 6.0 Debian GNU/Linux bookworm/sid<br>
Binaries:<br>
Node: 14.20.0 - ~/apps/nodejs/bin/node<br>
Yarn: 1.22.19 - ~/apps/nodejs/bin/yarn<br>
npm: 6.14.17 - ~/apps/nodejs/bin/npm<br>
npmPackages:<br>
@babel/core: ^7 => 7.19.3<br>
@babel/eslint-parser: ^7 => 7.19.1<br>
@babel/preset-env: ^7 => 7.19.3<br>
@babel/preset-react: ^7 => 7.18.6<br>
babel-jest: ^29 => 29.1.2<br>
babel-loader: ^8.0.0 => 8.2.5<br>
eslint: ^8.2 => 8.24.0<br>
jest: ^29 => 29.1.2<br>
webpack: ^5 => 5.74.0</p>
<h4 dir="auto">Environment with the issue (after <code class="notranslate">yarn upgrade</code>)</h4>
<p dir="auto">System:<br>
OS: Linux 6.0 Debian GNU/Linux bookworm/sid<br>
Binaries:<br>
Node: 14.20.0 - ~/apps/nodejs/bin/node<br>
Yarn: 1.22.19 - ~/apps/nodejs/bin/yarn<br>
npm: 6.14.17 - ~/apps/nodejs/bin/npm<br>
npmPackages:<br>
@babel/core: ^7 => 7.19.6<br>
@babel/eslint-parser: ^7 => 7.19.1<br>
@babel/preset-env: ^7 => 7.19.4<br>
@babel/preset-react: ^7 => 7.18.6<br>
babel-jest: ^29 => 29.2.2<br>
babel-loader: ^8.0.0 => 8.2.5<br>
eslint: ^8.2 => 8.26.0<br>
jest: ^29 => 29.2.2<br>
webpack: ^5 => 5.74.0</p>
<h3 dir="auto">Possible solution</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Additional context</h3>
<p dir="auto"><em>No response</em></p> | 1 |
<p dir="auto">Whenever I try to open Dialog from Drawer, the Dialog shows up for very short time and disappears.</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/callemall/material-ui/issues">issues</a> of this repository and believe that this is not a duplicate.</li>
</ul>
<h2 dir="auto">Expected Behavior</h2>
<p dir="auto">Dialog shows up while the Drawer slides back in the background.</p>
<h2 dir="auto">Current Behavior</h2>
<p dir="auto">After clicking an ListItemText in the drawer with function to open the dialog passed to it's onClick prop, the dialog shows up and the drawer starts to slide off as it is supposed to do. When the drawer slides off completely, the dialog disappears too.</p>
<h2 dir="auto">Steps to Reproduce (for bugs)</h2>
<ol dir="auto">
<li>
<p dir="auto">Create a component containing < ListItemText /> (inside < ListItem button >) and < Dialog >. Bind function to open the dialog to listitemtext prop onClick.</p>
</li>
<li>
<p dir="auto">Import this component into < List > that is inside < Drawer ></p>
</li>
</ol>
<p dir="auto">Now you can open the dialog by clicking on list item in the drawer.</p>
<p dir="auto">Working example : <a href="https://codesandbox.io/embed/3m46jpwk1" rel="nofollow">https://codesandbox.io/embed/3m46jpwk1</a></p>
<h2 dir="auto">Context</h2>
<p dir="auto">I am react newbie but I am pretty sure that is problem caused by this framework.<br>
I do not know how these components works, but from the behavior I guess when the Drawer stops rendering, the Dialog stops aswell as it is directly in it.</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.0-beta.8</td>
</tr>
<tr>
<td>React</td>
<td>15.6.1</td>
</tr>
<tr>
<td>browser</td>
<td>Chrome, v60</td>
</tr>
</tbody>
</table> | <p dir="auto">Hi, just completed the process of migrating our application to material-ui-next. Most things are working great, but the color theme system only appears to work for some components. We have a configuration object that we run through the createMuiTheme utility and provide it as the theme to the MuiThemeProvider. Even though the theme and the palette are correctly generated, these colors do not carry down to all components, most notably the TabIndicator (which appears as the hideous pink color #f50057), and Input's inkbar:after psuedo-selector, which comes back as '#303f9f'. I can see where these colors appear to be coming from, but shouldn't they be inheriting from the provided theme? Here is my config object (palette is at the bottom). It seems like it should be working to me:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="const options = {
palette: {
type: 'light',
primary: {
light: '#1abcf7',
main: '#1abcf7',
dark: '#006699'
},
secondary: {
light: '#00ff00',
main: '#1abcf7',
dark: '#006699'
}
}
}"><pre class="notranslate"><span class="pl-k">const</span> <span class="pl-s1">options</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span>
<span class="pl-c1">palette</span>: <span class="pl-kos">{</span>
<span class="pl-c1">type</span>: <span class="pl-s">'light'</span><span class="pl-kos">,</span>
<span class="pl-c1">primary</span>: <span class="pl-kos">{</span>
<span class="pl-c1">light</span>: <span class="pl-s">'#1abcf7'</span><span class="pl-kos">,</span>
<span class="pl-c1">main</span>: <span class="pl-s">'#1abcf7'</span><span class="pl-kos">,</span>
<span class="pl-c1">dark</span>: <span class="pl-s">'#006699'</span>
<span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-c1">secondary</span>: <span class="pl-kos">{</span>
<span class="pl-c1">light</span>: <span class="pl-s">'#00ff00'</span><span class="pl-kos">,</span>
<span class="pl-c1">main</span>: <span class="pl-s">'#1abcf7'</span><span class="pl-kos">,</span>
<span class="pl-c1">dark</span>: <span class="pl-s">'#006699'</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">const theme = createMuiTheme(options)</p>
<p dir="auto"></p>
<p dir="auto">This has been driving me crazy. Thanks -- Steve</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have searched the <a href="https://github.com/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>
<h2 dir="auto">Current Behavior</h2>
<h2 dir="auto">Steps to Reproduce (for bugs)</h2>
<ol dir="auto">
<li></li>
<li></li>
<li></li>
<li></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> | 0 |
<h2 dir="auto"><g-emoji class="g-emoji" alias="bug" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f41b.png">π</g-emoji> Bug</h2>
<p dir="auto">Test case failed but test job passed in windows CI.</p>
<h2 dir="auto">To Reproduce</h2>
<p dir="auto">Steps to reproduce the behavior:</p>
<ol dir="auto">
<li>Check recent PR's ci report, pytorch_windows_vs2019_py36_cuda10.1_test1 passed but in fact there's always one test cases failed.<br>
It's the example <a href="https://app.circleci.com/pipelines/github/pytorch/pytorch/233135/workflows/f5cf2f9d-3f45-45d7-ac3c-cd6d9e4860f4/jobs/8578221" rel="nofollow">link </a></li>
</ol>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">The test job of pytorch_windows_vs2019_py36_cuda10.1_test1 should be failed and block the PR into master.</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/seemethere/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/seemethere">@seemethere</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/malfet/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/malfet">@malfet</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/walterddr/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/walterddr">@walterddr</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> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/maxluk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/maxluk">@maxluk</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/nbcsm/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/nbcsm">@nbcsm</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/guyang3532/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/guyang3532">@guyang3532</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/gunandrose4u/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gunandrose4u">@gunandrose4u</a> @smartcat2010 <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mszhanyi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mszhanyi">@mszhanyi</a></p> | <p dir="auto">Have a look at those two for example:<br>
<a href="https://app.circleci.com/pipelines/github/pytorch/pytorch/222634/workflows/005e1922-33bf-43e0-8e7f-d14cfae47fed/jobs/7964572" rel="nofollow">https://app.circleci.com/pipelines/github/pytorch/pytorch/222634/workflows/005e1922-33bf-43e0-8e7f-d14cfae47fed/jobs/7964572</a><br>
<a href="https://app.circleci.com/pipelines/github/pytorch/pytorch/222634/workflows/005e1922-33bf-43e0-8e7f-d14cfae47fed/jobs/7964565" rel="nofollow">https://app.circleci.com/pipelines/github/pytorch/pytorch/222634/workflows/005e1922-33bf-43e0-8e7f-d14cfae47fed/jobs/7964565</a></p>
<p dir="auto">TestAtomicOps.TestAtomicMul is failed, but run is considered successful</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/seemethere/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/seemethere">@seemethere</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/malfet/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/malfet">@malfet</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/walterddr/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/walterddr">@walterddr</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> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/maxluk/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/maxluk">@maxluk</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/nbcsm/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/nbcsm">@nbcsm</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/guyang3532/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/guyang3532">@guyang3532</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/gunandrose4u/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gunandrose4u">@gunandrose4u</a> @smartcat2010 <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mszhanyi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mszhanyi">@mszhanyi</a></p> | 1 |
<h3 dir="auto">Describe the issue:</h3>
<p dir="auto">Release notes document MD5 checksums for universal2 wheels. However, I can't seem to find one.</p>
<p dir="auto">Any attempt to <code class="notranslate">python3 -m pip install numpy --target foo --platform=universal2</code> results in building from source (asks to add <code class="notranslate">--no-deps</code>), which subsequently fails.</p>
<p dir="auto">What would be the best way to install universal2 (e.g. arm64+x86_64) distribution of numpy?</p>
<h3 dir="auto">Reproduce the code example:</h3>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="n/a"><pre class="notranslate"><span class="pl-s1">n</span><span class="pl-c1">/</span><span class="pl-s1">a</span></pre></div>
<h3 dir="auto">Error message:</h3>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=": error: no such file or directory: 'build/temp.macosx-10.9-universal2-3.9/numpy/core/src/multiarray/dragon4.o'"><pre class="notranslate"><span class="pl-c1">:</span> error: no such file or directory: <span class="pl-s"><span class="pl-pds">'</span>build/temp.macosx-10.9-universal2-3.9/numpy/core/src/multiarray/dragon4.o<span class="pl-pds">'</span></span></pre></div>
<p dir="auto">Full error: <a href="https://gist.github.com/w3sip/a99d0febfd44e7e991b6d32117ba3291">https://gist.github.com/w3sip/a99d0febfd44e7e991b6d32117ba3291</a></p>
<h3 dir="auto">NumPy/Python version information:</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ python3.9 --version
Python 3.9.11
$ which python3.9
/usr/local/bin/python3.9
$ ls -la /usr/local/bin/python3.9
lrwxr-xr-x 1 root wheel 71 Mar 16 2021 /usr/local/bin/python3.9 -> ../../../Library/Frameworks/Python.framework/Versions/3.9/bin/python3.9"><pre class="notranslate"><code class="notranslate">$ python3.9 --version
Python 3.9.11
$ which python3.9
/usr/local/bin/python3.9
$ ls -la /usr/local/bin/python3.9
lrwxr-xr-x 1 root wheel 71 Mar 16 2021 /usr/local/bin/python3.9 -> ../../../Library/Frameworks/Python.framework/Versions/3.9/bin/python3.9
</code></pre></div> | <h2 dir="auto">Feature</h2>
<p dir="auto">The binary wheels for macOS on PyPI are currently for x86_64. Please also provide a universal2 wheel (x86_64 and arm64) for use with the (currently experimental) universal2 Python 3.9.1 installer on Python.org.</p> | 1 |
<p dir="auto">I came across the following situation that had some really unexpected behavior:</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="let [left, top] = (function that returns [number, number]);
var reactComponent = (
<Component left={left} top={top} />
);"><pre class="notranslate"><span class="pl-k">let</span> <span class="pl-kos">[</span><span class="pl-s1">left</span><span class="pl-kos">,</span> <span class="pl-s1">top</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span><span class="pl-k">function</span> <span class="pl-s1">that</span> <span class="pl-s1">returns</span> <span class="pl-kos">[</span><span class="pl-s1">number</span><span class="pl-kos">,</span> <span class="pl-s1">number</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">reactComponent</span> <span class="pl-c1">=</span> <span class="pl-kos">(</span>
<span class="pl-c1"><</span><span class="pl-ent">Component</span> <span class="pl-c1">left</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-s1">left</span><span class="pl-kos">}</span> <span class="pl-c1">top</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-s1">top</span><span class="pl-kos">}</span> <span class="pl-c1">/</span><span class="pl-c1">></span>
<span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">inside reactComponent, this.props.top was undefined...</p>
<p dir="auto">I checked out the generated code, and it looks like babel was rewriting the variable <code class="notranslate">top</code> to <code class="notranslate">_top</code>, but it was also rewriting the prop to <code class="notranslate">_top</code>, so I was left with <code class="notranslate"><Component left={left} _top={_top}</code>, and was losing my prop.</p>
<p dir="auto">(Rhyming totally unintentional...)</p> | <p dir="auto">Sorry for the lack of specificity of this message, but we upgraded from <code class="notranslate">babel-core@5.3.3</code> / <code class="notranslate">babel-loader@5.0.0</code> to the latest <code class="notranslate">babel-loader@5.0.0</code> / <code class="notranslate">babel-core@5.4.5</code> this morning and we are encountering major breaking changes our code. Pinning the versions back to <code class="notranslate">5.0.0</code>/<code class="notranslate">5.3.3</code> has resolved them.</p>
<p dir="auto">Do you have any advice for how to address these breaking changes, or is this a mistake in this particular release?</p>
<p dir="auto">Thanks!</p> | 1 |
<p dir="auto">I think this could be a very practical solutions for whole set of issues where aggregation needs to be done on nested documents but be able to group on its parent document properties. It i snot the same as using reverse nested because reverse nested changes document scope to groupp and then it will needs to be changed back to nested again introducing double-counting.<br>
Also from ease of use it would be a significant step forward comparing to using reverse nested just to be able to access parent document properties (even if were equivalent)</p>
<p dir="auto">Here is an example I used in another issue:</p>
<p dir="auto">Imagine having Teams that handle Requests of certain Priority. Each request may have multiple teams assigned to it and each team request assignment has number of hours allocated for this team on this request</p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="request:{
priority:1,
teams:[
{name:'team1', hours:10},
{name:'team2', hours:20},
]
}"><pre class="notranslate">request:<span class="pl-kos">{</span>
<span class="pl-c1">priority</span>:<span class="pl-c1">1</span><span class="pl-kos">,</span>
<span class="pl-c1">teams</span>:<span class="pl-kos">[</span>
<span class="pl-kos">{</span><span class="pl-c1">name</span>:<span class="pl-s">'team1'</span><span class="pl-kos">,</span> <span class="pl-c1">hours</span>:<span class="pl-c1">10</span><span class="pl-kos">}</span><span class="pl-kos">,</span>
<span class="pl-kos">{</span><span class="pl-c1">name</span>:<span class="pl-s">'team2'</span><span class="pl-kos">,</span> <span class="pl-c1">hours</span>:<span class="pl-c1">20</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 need a report that gives me number of hours by team by priority. Doing nested aggregation on <strong>teams.name</strong> and then reverse nested to group on <strong>priority</strong> and then nested to sum <strong>teams.hours</strong> double-counts hours because second nesting on teams knows nothing about upstream nesting as it is executed in context of request and as result it will lump hours for each team on request under the top level team aggregation</p>
<p dir="auto">If i could access "../priority" from teams nested document context I would not have to use reverse nested and lose my aggregation context and everything would have worked like a charm</p>
<p dir="auto">please see also <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="130759616" data-permission-text="Title is private" data-url="https://github.com/elastic/elasticsearch/issues/16380" data-hovercard-type="issue" data-hovercard-url="/elastic/elasticsearch/issues/16380/hovercard" href="https://github.com/elastic/elasticsearch/issues/16380">#16380</a></p> | <p dir="auto">If multiple hosts are running on a single server hostname doesn't provide an accurate picture of the recovery process. Addition of node name, or at least the ports would differentiate between the different running processes.</p> | 0 |
<p dir="auto">As <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/giordano/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/giordano">@giordano</a> and I are working on microarchitecture-specific tarballs in BinaryBuilder, we are currently importing a modified version of <a href="https://github.com/m-j-w/CpuId.jl"><code class="notranslate">CpuId.jl</code></a>, however if <code class="notranslate">Base</code> is going to be selecting artifacts based on the current CPU type, it makes sense that something with similar capabilities to this <code class="notranslate">CpuId</code> package would become a stdlib at the least, if not a part of <code class="notranslate">Base</code>.</p>
<p dir="auto">We already have some CPUID code in <code class="notranslate">src/processor*.cpp</code>; should we export <code class="notranslate">jl_test_cpu_feature()</code> and simply maintain a Julia mapping of the flags? The way I see it, we have three options:</p>
<ul dir="auto">
<li>Export the C function, create a simple wrapper stdlib that has various flag definitions and invokes a <code class="notranslate">ccall()</code> to probe CPUID bits.</li>
<li>Leave the C code alone, duplicate the functionality in pure Julia (similar to <a href="https://github.com/m-j-w/CpuId.jl"><code class="notranslate">CpuId.jl</code></a>), but have it shipped by default with Julia.</li>
<li>Force all packages that want to use microarchitecture-specific artifacts to do the artifact selection themselves (this will only work for lazy artifacts; no <code class="notranslate">Pkg.add()</code>-time artifacts allowed)</li>
</ul>
<p dir="auto">I am in favor of 1 or 2, and between the two of them I'm in favor of (2) because it is most maintainable.</p> | <p dir="auto">Julia should have linear/cubic/spline interpolation functions in 1+ dimensions, along the line of Matlab's <a href="http://www.mathworks.com/help/matlab/ref/interp1.html" rel="nofollow">interp1</a> and friends.</p>
<p dir="auto">This is a basic tool for numerical calculations, and shouldn't be too hard to implement.</p> | 0 |
<h4 dir="auto">Code Sample</h4>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import pandas as pd
import numpy as np
#working data
names = ['d1', 'd2', 'd3', 'd4', 'd5']
formats = ['u1', '<f8', 'u1', 'u1', 'u1']
dtype = dict(names=names, formats=formats)
data = {'d1':[1,11], 'd2':[2,12], 'd3':[3,13], 'd4':[4,14], 'd5':[5,15]}
#create a pandas dataframe with uint8 variables except for a double in d2 slot.
df_create = np.rec.fromarrays(data.values(), dtype=dtype, names=data.keys())
df_create = pd.DataFrame(df_create)
df_create.loc[:,'d2'] *= 0.12345
#create a pandas dataframe with all variables uint8
df_mod = pd.DataFrame.from_dict(data, dtype=np.dtype('u1'))
#convert d2 to double and modify
df_mod.loc[:,'d2'] = df_mod.loc[:,'d2'].astype(np.dtype('float64'))
df_mod.loc[:,'d2'] *= 0.12345
print('type of df_create.loc[0,\'d1\']: {}'.format(type(df_create.loc[0,'d1'])))
print('type of df_create.loc[0,\'d2\']: {}'.format(type(df_create.loc[0,'d2'])))
print('type of df_create.iloc[0,0]: {}'.format(type(df_create.iloc[0,2])))
print('type of df_create.iloc[0,1]: {}'.format(type(df_create.iloc[0,1])))
print('type of df_create.ix[0,0]: {}'.format(type(df_create.iloc[0,2])))
print('type of df_create.ix[0,1]: {}'.format(type(df_create.iloc[0,1])))
print('')
print('type of df_mod.loc[0,\'d1\']: {}'.format(type(df_mod.loc[0,'d1'])))
print('type of df_mod.loc[0,\'d2\']: {}'.format(type(df_mod.loc[0,'d2'])))
print('type of df_mod.iloc[0,0]: {}'.format(type(df_mod.iloc[0,2])))
print('type of df_mod.iloc[0,1]: {}'.format(type(df_mod.iloc[0,1])))
print('type of df_mod.ix[0,0]: {}'.format(type(df_mod.iloc[0,2])))
print('type of df_mod.ix[0,1]: {}'.format(type(df_mod.iloc[0,1])))
print('')
print('All dtypes for dataframe df_mod:')
print(df_mod.dtypes)
print('')
pd.show_versions()"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">pandas</span> <span class="pl-k">as</span> <span class="pl-s1">pd</span>
<span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-c">#working data</span>
<span class="pl-s1">names</span> <span class="pl-c1">=</span> [<span class="pl-s">'d1'</span>, <span class="pl-s">'d2'</span>, <span class="pl-s">'d3'</span>, <span class="pl-s">'d4'</span>, <span class="pl-s">'d5'</span>]
<span class="pl-s1">formats</span> <span class="pl-c1">=</span> [<span class="pl-s">'u1'</span>, <span class="pl-s">'<f8'</span>, <span class="pl-s">'u1'</span>, <span class="pl-s">'u1'</span>, <span class="pl-s">'u1'</span>]
<span class="pl-s1">dtype</span> <span class="pl-c1">=</span> <span class="pl-en">dict</span>(<span class="pl-s1">names</span><span class="pl-c1">=</span><span class="pl-s1">names</span>, <span class="pl-s1">formats</span><span class="pl-c1">=</span><span class="pl-s1">formats</span>)
<span class="pl-s1">data</span> <span class="pl-c1">=</span> {<span class="pl-s">'d1'</span>:[<span class="pl-c1">1</span>,<span class="pl-c1">11</span>], <span class="pl-s">'d2'</span>:[<span class="pl-c1">2</span>,<span class="pl-c1">12</span>], <span class="pl-s">'d3'</span>:[<span class="pl-c1">3</span>,<span class="pl-c1">13</span>], <span class="pl-s">'d4'</span>:[<span class="pl-c1">4</span>,<span class="pl-c1">14</span>], <span class="pl-s">'d5'</span>:[<span class="pl-c1">5</span>,<span class="pl-c1">15</span>]}
<span class="pl-c">#create a pandas dataframe with uint8 variables except for a double in d2 slot.</span>
<span class="pl-s1">df_create</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-s1">rec</span>.<span class="pl-en">fromarrays</span>(<span class="pl-s1">data</span>.<span class="pl-en">values</span>(), <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">dtype</span>, <span class="pl-s1">names</span><span class="pl-c1">=</span><span class="pl-s1">data</span>.<span class="pl-en">keys</span>())
<span class="pl-s1">df_create</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>(<span class="pl-s1">df_create</span>)
<span class="pl-s1">df_create</span>.<span class="pl-s1">loc</span>[:,<span class="pl-s">'d2'</span>] <span class="pl-c1">*=</span> <span class="pl-c1">0.12345</span>
<span class="pl-c">#create a pandas dataframe with all variables uint8</span>
<span class="pl-s1">df_mod</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>.<span class="pl-en">from_dict</span>(<span class="pl-s1">data</span>, <span class="pl-s1">dtype</span><span class="pl-c1">=</span><span class="pl-s1">np</span>.<span class="pl-en">dtype</span>(<span class="pl-s">'u1'</span>))
<span class="pl-c">#convert d2 to double and modify</span>
<span class="pl-s1">df_mod</span>.<span class="pl-s1">loc</span>[:,<span class="pl-s">'d2'</span>] <span class="pl-c1">=</span> <span class="pl-s1">df_mod</span>.<span class="pl-s1">loc</span>[:,<span class="pl-s">'d2'</span>].<span class="pl-en">astype</span>(<span class="pl-s1">np</span>.<span class="pl-en">dtype</span>(<span class="pl-s">'float64'</span>))
<span class="pl-s1">df_mod</span>.<span class="pl-s1">loc</span>[:,<span class="pl-s">'d2'</span>] <span class="pl-c1">*=</span> <span class="pl-c1">0.12345</span>
<span class="pl-en">print</span>(<span class="pl-s">'type of df_create.loc[0,<span class="pl-cce">\'</span>d1<span class="pl-cce">\'</span>]: {}'</span>.<span class="pl-en">format</span>(<span class="pl-en">type</span>(<span class="pl-s1">df_create</span>.<span class="pl-s1">loc</span>[<span class="pl-c1">0</span>,<span class="pl-s">'d1'</span>])))
<span class="pl-en">print</span>(<span class="pl-s">'type of df_create.loc[0,<span class="pl-cce">\'</span>d2<span class="pl-cce">\'</span>]: {}'</span>.<span class="pl-en">format</span>(<span class="pl-en">type</span>(<span class="pl-s1">df_create</span>.<span class="pl-s1">loc</span>[<span class="pl-c1">0</span>,<span class="pl-s">'d2'</span>])))
<span class="pl-en">print</span>(<span class="pl-s">'type of df_create.iloc[0,0]: {}'</span>.<span class="pl-en">format</span>(<span class="pl-en">type</span>(<span class="pl-s1">df_create</span>.<span class="pl-s1">iloc</span>[<span class="pl-c1">0</span>,<span class="pl-c1">2</span>])))
<span class="pl-en">print</span>(<span class="pl-s">'type of df_create.iloc[0,1]: {}'</span>.<span class="pl-en">format</span>(<span class="pl-en">type</span>(<span class="pl-s1">df_create</span>.<span class="pl-s1">iloc</span>[<span class="pl-c1">0</span>,<span class="pl-c1">1</span>])))
<span class="pl-en">print</span>(<span class="pl-s">'type of df_create.ix[0,0]: {}'</span>.<span class="pl-en">format</span>(<span class="pl-en">type</span>(<span class="pl-s1">df_create</span>.<span class="pl-s1">iloc</span>[<span class="pl-c1">0</span>,<span class="pl-c1">2</span>])))
<span class="pl-en">print</span>(<span class="pl-s">'type of df_create.ix[0,1]: {}'</span>.<span class="pl-en">format</span>(<span class="pl-en">type</span>(<span class="pl-s1">df_create</span>.<span class="pl-s1">iloc</span>[<span class="pl-c1">0</span>,<span class="pl-c1">1</span>])))
<span class="pl-en">print</span>(<span class="pl-s">''</span>)
<span class="pl-en">print</span>(<span class="pl-s">'type of df_mod.loc[0,<span class="pl-cce">\'</span>d1<span class="pl-cce">\'</span>]: {}'</span>.<span class="pl-en">format</span>(<span class="pl-en">type</span>(<span class="pl-s1">df_mod</span>.<span class="pl-s1">loc</span>[<span class="pl-c1">0</span>,<span class="pl-s">'d1'</span>])))
<span class="pl-en">print</span>(<span class="pl-s">'type of df_mod.loc[0,<span class="pl-cce">\'</span>d2<span class="pl-cce">\'</span>]: {}'</span>.<span class="pl-en">format</span>(<span class="pl-en">type</span>(<span class="pl-s1">df_mod</span>.<span class="pl-s1">loc</span>[<span class="pl-c1">0</span>,<span class="pl-s">'d2'</span>])))
<span class="pl-en">print</span>(<span class="pl-s">'type of df_mod.iloc[0,0]: {}'</span>.<span class="pl-en">format</span>(<span class="pl-en">type</span>(<span class="pl-s1">df_mod</span>.<span class="pl-s1">iloc</span>[<span class="pl-c1">0</span>,<span class="pl-c1">2</span>])))
<span class="pl-en">print</span>(<span class="pl-s">'type of df_mod.iloc[0,1]: {}'</span>.<span class="pl-en">format</span>(<span class="pl-en">type</span>(<span class="pl-s1">df_mod</span>.<span class="pl-s1">iloc</span>[<span class="pl-c1">0</span>,<span class="pl-c1">1</span>])))
<span class="pl-en">print</span>(<span class="pl-s">'type of df_mod.ix[0,0]: {}'</span>.<span class="pl-en">format</span>(<span class="pl-en">type</span>(<span class="pl-s1">df_mod</span>.<span class="pl-s1">iloc</span>[<span class="pl-c1">0</span>,<span class="pl-c1">2</span>])))
<span class="pl-en">print</span>(<span class="pl-s">'type of df_mod.ix[0,1]: {}'</span>.<span class="pl-en">format</span>(<span class="pl-en">type</span>(<span class="pl-s1">df_mod</span>.<span class="pl-s1">iloc</span>[<span class="pl-c1">0</span>,<span class="pl-c1">1</span>])))
<span class="pl-en">print</span>(<span class="pl-s">''</span>)
<span class="pl-en">print</span>(<span class="pl-s">'All dtypes for dataframe df_mod:'</span>)
<span class="pl-en">print</span>(<span class="pl-s1">df_mod</span>.<span class="pl-s1">dtypes</span>)
<span class="pl-en">print</span>(<span class="pl-s">''</span>)
<span class="pl-s1">pd</span>.<span class="pl-en">show_versions</span>()</pre></div>
<p dir="auto">produces the following output:<br>
type of df_create.loc[0,'d1']: <class 'numpy.float64'><br>
type of df_create.loc[0,'d2']: <class 'numpy.float64'><br>
type of df_create.iloc[0,0]: <class 'numpy.float64'><br>
type of df_create.iloc[0,1]: <class 'numpy.float64'><br>
type of df_create.ix[0,0]: <class 'numpy.float64'><br>
type of df_create.ix[0,1]: <class 'numpy.float64'></p>
<p dir="auto">type of df_mod.loc[0,'d1']: <class 'numpy.float64'><br>
type of df_mod.loc[0,'d2']: <class 'numpy.float64'><br>
type of df_mod.iloc[0,0]: <class 'numpy.float64'><br>
type of df_mod.iloc[0,1]: <class 'numpy.float64'><br>
type of df_mod.ix[0,0]: <class 'numpy.float64'><br>
type of df_mod.ix[0,1]: <class 'numpy.float64'></p>
<p dir="auto">All dtypes for dataframe df_mod:<br>
d1 uint8<br>
d2 float64<br>
d3 uint8<br>
d4 uint8<br>
d5 uint8<br>
dtype: object</p>
<h4 dir="auto">Problem description</h4>
<p dir="auto">As far as I can see, the indexing mechanism is converting non-float64s to float64s. According to the dtypes, the internal representation of the data remains uint8, but when exposed by some indexing mechanism, the uint8 data is converted to float64.</p>
<h4 dir="auto">Expected Output</h4>
<p dir="auto">type of df_create.loc[0,'d1']: <class 'numpy.uint8'><br>
type of df_create.loc[0,'d2']: <class 'numpy.float64'><br>
type of df_create.iloc[0,0]: <class 'numpy.uint8'><br>
type of df_create.iloc[0,1]: <class 'numpy.float64'><br>
type of df_create.ix[0,0]: <class 'numpy.uint8'><br>
type of df_create.ix[0,1]: <class 'numpy.float64'></p>
<p dir="auto">type of df_mod.loc[0,'d1']: <class 'numpy.uint8'><br>
type of df_mod.loc[0,'d2']: <class 'numpy.float64'><br>
type of df_mod.iloc[0,0]: <class 'numpy.uint8'><br>
type of df_mod.iloc[0,1]: <class 'numpy.float64'><br>
type of df_mod.ix[0,0]: <class 'numpy.uint8'><br>
type of df_mod.ix[0,1]: <class 'numpy.float64'></p>
<h4 dir="auto">Output of <code class="notranslate">pd.show_versions()</code></h4>
<details>
INSTALLED VERSIONS
<p dir="auto">commit: None<br>
python: 3.5.2.final.0<br>
python-bits: 64<br>
OS: Windows<br>
OS-release: 7<br>
machine: AMD64<br>
processor: Intel64 Family 6 Model 30 Stepping 5, GenuineIntel<br>
byteorder: little<br>
LC_ALL: None<br>
LANG: None<br>
LOCALE: None.None</p>
<p dir="auto">pandas: 0.19.2<br>
nose: 1.3.7<br>
pip: 9.0.1<br>
setuptools: 27.2.0<br>
Cython: 0.23.4<br>
numpy: 1.12.0<br>
scipy: 0.18.0<br>
statsmodels: 0.6.1<br>
xarray: 0.8.2<br>
IPython: 4.0.1<br>
sphinx: 1.3.1<br>
patsy: 0.4.0<br>
dateutil: 2.6.0<br>
pytz: 2016.10<br>
blosc: None<br>
bottleneck: 1.1.0<br>
tables: 3.2.2<br>
numexpr: 2.6.1<br>
matplotlib: 1.5.1<br>
openpyxl: 2.4.0<br>
xlrd: 0.9.4<br>
xlwt: 1.0.0<br>
xlsxwriter: 0.7.7<br>
lxml: 3.4.4<br>
bs4: 4.4.1<br>
html5lib: None<br>
httplib2: None<br>
apiclient: None<br>
sqlalchemy: 1.0.9<br>
pymysql: None<br>
psycopg2: None<br>
jinja2: 2.8<br>
boto: 2.38.0<br>
pandas_datareader: None</p>
</details> | <p dir="auto">xref <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="176344670" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/14205" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/14205/hovercard" href="https://github.com/pandas-dev/pandas/issues/14205">#14205</a></p>
<p dir="auto">The <code class="notranslate">.loc</code> method of <code class="notranslate">DataFrame</code> with different dtypes yields coerced type <strong>even if the resulting slice does only contain elements from one type</strong>. This happens only when selecting a single row.<br>
I can guess that this might be intended because the implementation of <code class="notranslate">loc</code> seems to first lookup the row <em>as a single Series</em>, doing the coercion and <em>then</em> applying the second (column) indexer.</p>
<p dir="auto">However, when the column indexer narrows down the selection such that the upcasting would not have been necessary in the first place, it can be very surprising and may even cause bugs (on user-side) if it goes unnoticed. (Like, "I was sure that those column was <code class="notranslate">int64</code>").</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=">>> import pandas as pd
>>> d = pd.DataFrame(dict(a=[1.23]))
>>> d["b"] = 666 # adding column with int
>>> d.info() # info as expected (column b is int64 - fine)
<class 'pandas.core.frame.DataFrame'>
Int64Index: 1 entries, 0 to 0
Data columns (total 2 columns):
a 1 non-null float64
b 1 non-null int64
dtypes: float64(1), int64(1)
memory usage: 24.0 bytes
>>> d.loc[0,"b"] # UNEXPECTED: returning a single float
666.0
>>> d.ix[0, "b"] # OK: returns a single int
666
>>> d.loc[[0], "b"] # OK
0 666
Name: b, dtype: int64"><pre class="notranslate"><span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-k">import</span> <span class="pl-s1">pandas</span> <span class="pl-k">as</span> <span class="pl-s1">pd</span>
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">d</span> <span class="pl-c1">=</span> <span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>(<span class="pl-en">dict</span>(<span class="pl-s1">a</span><span class="pl-c1">=</span>[<span class="pl-c1">1.23</span>]))
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">d</span>[<span class="pl-s">"b"</span>] <span class="pl-c1">=</span> <span class="pl-c1">666</span> <span class="pl-c"># adding column with int</span>
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">d</span>.<span class="pl-en">info</span>() <span class="pl-c"># info as expected (column b is int64 - fine)</span>
<span class="pl-c1"><</span><span class="pl-k">class</span> <span class="pl-s">'pandas.core.frame.DataFrame'</span><span class="pl-c1">></span>
<span class="pl-v">Int64Index</span>: <span class="pl-c1">1</span> <span class="pl-s1">entries</span>, <span class="pl-c1">0</span> <span class="pl-s1">to</span> <span class="pl-c1">0</span>
<span class="pl-v">Data</span> <span class="pl-en">columns</span> (<span class="pl-s1">total</span> <span class="pl-c1">2</span> <span class="pl-s1">columns</span>):
<span class="pl-s1">a</span> <span class="pl-c1">1</span> <span class="pl-s1">non</span><span class="pl-c1">-</span><span class="pl-s1">null</span> <span class="pl-s1">float64</span>
<span class="pl-s1">b</span> <span class="pl-c1">1</span> <span class="pl-s1">non</span><span class="pl-c1">-</span><span class="pl-s1">null</span> <span class="pl-s1">int64</span>
<span class="pl-s1">dtypes</span>: <span class="pl-en">float64</span>(<span class="pl-c1">1</span>), <span class="pl-en">int64</span>(<span class="pl-c1">1</span>)
<span class="pl-s1">memory</span> <span class="pl-s1">usage</span>: <span class="pl-c1">24.0</span> <span class="pl-s1">bytes</span>
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">d</span>.<span class="pl-s1">loc</span>[<span class="pl-c1">0</span>,<span class="pl-s">"b"</span>] <span class="pl-c"># UNEXPECTED: returning a single float</span>
<span class="pl-c1">666.0</span>
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">d</span>.<span class="pl-s1">ix</span>[<span class="pl-c1">0</span>, <span class="pl-s">"b"</span>] <span class="pl-c"># OK: returns a single int</span>
<span class="pl-c1">666</span>
<span class="pl-c1">>></span><span class="pl-c1">></span> <span class="pl-s1">d</span>.<span class="pl-s1">loc</span>[[<span class="pl-c1">0</span>], <span class="pl-s">"b"</span>] <span class="pl-c"># OK</span>
<span class="pl-c1">0</span> <span class="pl-c1">666</span>
<span class="pl-v">Name</span>: <span class="pl-s1">b</span>, <span class="pl-s1">dtype</span>: <span class="pl-s1">int64</span></pre></div>
<p dir="auto">Feel free to close if the behavior s intended. Maybe this this a "bug" or an suggested API change. I dunno.</p>
<p dir="auto">Perhaps related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="92902147" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/10503" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/10503/hovercard" href="https://github.com/pandas-dev/pandas/issues/10503">#10503</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="58176167" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/9519" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/9519/hovercard" href="https://github.com/pandas-dev/pandas/issues/9519">#9519</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="54570660" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/9269" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/9269/hovercard" href="https://github.com/pandas-dev/pandas/issues/9269">#9269</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="116811012" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/11594" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/11594/hovercard" href="https://github.com/pandas-dev/pandas/issues/11594">#11594</a> ?</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="INSTALLED VERSIONS
------------------
commit: None
python: 3.4.3.final.0
python-bits: 64
OS: Darwin
OS-release: 15.0.0
machine: x86_64
processor: i386
byteorder: little
LC_ALL: en_US.UTF-8
LANG: en_US.UTF-8
pandas: 0.17.0
[...]"><pre class="notranslate"><code class="notranslate">INSTALLED VERSIONS
------------------
commit: None
python: 3.4.3.final.0
python-bits: 64
OS: Darwin
OS-release: 15.0.0
machine: x86_64
processor: i386
byteorder: little
LC_ALL: en_US.UTF-8
LANG: en_US.UTF-8
pandas: 0.17.0
[...]
</code></pre></div> | 1 |
<p dir="auto">Typical widget non-existence testing pattern that works:</p>
<div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="expect(find.text('Daily budget'), findsNothing);"><pre class="notranslate"><span class="pl-en">expect</span>(find.<span class="pl-en">text</span>(<span class="pl-s">'Daily budget'</span>), findsNothing);</pre></div>
<p dir="auto">Trying to use this with WidgetPredicate does not work:</p>
<div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="expect(find.byWidgetPredicate((Widget widget) =>
widget is Input && widget.value.text == '588.0'), findsNothing);"><pre class="notranslate"><span class="pl-en">expect</span>(find.<span class="pl-en">byWidgetPredicate</span>((<span class="pl-c1">Widget</span> widget) <span class="pl-k">=></span>
widget <span class="pl-k">is</span> <span class="pl-c1">Input</span> <span class="pl-k">&&</span> widget.value.text <span class="pl-k">==</span> <span class="pl-s">'588.0'</span>), findsNothing);</pre></div>
<p dir="auto">throws the following:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="βββ‘ EXCEPTION CAUGHT BY FLUTTER TEST FRAMEWORK βββββββββββββββββββββββββββββββββββββββββββββββββββββ
The following NoSuchMethodError was thrown running a test:
NoSuchMethodError: The getter 'text' was called on null.
Receiver: null
Tried calling: text
When the exception was thrown, this was the stack:
#0 Object._noSuchMethod (dart:core-patch/object_patch.dart:44)
#1 Object.noSuchMethod (dart:core-patch/object_patch.dart:47)
#2 main.<anonymous closure>.<anonymous closure>.<<anonymous closure>_async_body>.<anonymous closure> (///build/work/c00df5e9a1c2de2bff80763fc9ce5ac6/google3/runfiles/google3/crm/greentea/mobile/app/test/ui/opportunity/offering_detail_test.dart:154:66)
#3 _WidgetPredicateFinder.matches (package:flutter_test/src/finders.dart:424:21)
#4 WhereIterator.moveNext (dart:_internal/iterable.dart:443)
#5 CachingIterable._fillNext (package:flutter/src/foundation/basic_types.dart:215:27)
#6 CachingIterable._precacheEntireList (package:flutter/src/foundation/basic_types.dart:211:12)
#7 CachingIterable.toList (package:flutter/src/foundation/basic_types.dart:206:5)
#8 Finder.toString (package:flutter_test/src/finders.dart:246:46)
#9 prettyPrint._prettyPrint (package:matcher/src/pretty_print.dart:86:26)
#10 prettyPrint (package:matcher/src/pretty_print.dart:108:22)
#11 StringDescription.addDescriptionOf (package:matcher/src/description.dart:44:11)
#12 _defaultFailFormatter (package:test/src/frontend/expect.dart:95:33)
#13 expect (package:test/src/frontend/expect.dart:83:17)
#14 expect (package:flutter_test/src/widget_tester.dart:126:3)
#15 main.<anonymous closure>.<anonymous closure>.<<anonymous closure>_async_body> "><pre class="notranslate"><code class="notranslate">βββ‘ EXCEPTION CAUGHT BY FLUTTER TEST FRAMEWORK βββββββββββββββββββββββββββββββββββββββββββββββββββββ
The following NoSuchMethodError was thrown running a test:
NoSuchMethodError: The getter 'text' was called on null.
Receiver: null
Tried calling: text
When the exception was thrown, this was the stack:
#0 Object._noSuchMethod (dart:core-patch/object_patch.dart:44)
#1 Object.noSuchMethod (dart:core-patch/object_patch.dart:47)
#2 main.<anonymous closure>.<anonymous closure>.<<anonymous closure>_async_body>.<anonymous closure> (///build/work/c00df5e9a1c2de2bff80763fc9ce5ac6/google3/runfiles/google3/crm/greentea/mobile/app/test/ui/opportunity/offering_detail_test.dart:154:66)
#3 _WidgetPredicateFinder.matches (package:flutter_test/src/finders.dart:424:21)
#4 WhereIterator.moveNext (dart:_internal/iterable.dart:443)
#5 CachingIterable._fillNext (package:flutter/src/foundation/basic_types.dart:215:27)
#6 CachingIterable._precacheEntireList (package:flutter/src/foundation/basic_types.dart:211:12)
#7 CachingIterable.toList (package:flutter/src/foundation/basic_types.dart:206:5)
#8 Finder.toString (package:flutter_test/src/finders.dart:246:46)
#9 prettyPrint._prettyPrint (package:matcher/src/pretty_print.dart:86:26)
#10 prettyPrint (package:matcher/src/pretty_print.dart:108:22)
#11 StringDescription.addDescriptionOf (package:matcher/src/description.dart:44:11)
#12 _defaultFailFormatter (package:test/src/frontend/expect.dart:95:33)
#13 expect (package:test/src/frontend/expect.dart:83:17)
#14 expect (package:flutter_test/src/widget_tester.dart:126:3)
#15 main.<anonymous closure>.<anonymous closure>.<<anonymous closure>_async_body>
</code></pre></div> | <h2 dir="auto">Steps to Reproduce</h2>
<h2 dir="auto">Logs</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Downloading https://services.gradle.org/distributions/gradle-4.10.2-all.zip
...................................................................
...................................................................
.................
Exception in thread "main" javax.net.ssl.SSLException: Connection
has been shutdown: javax.net.ssl.SSLException:
java.net.SocketException: Connection reset
at
sun.security.ssl.SSLSocketImpl.checkEOF(SSLSocketImpl.java:1551)
at
sun.security.ssl.AppInputStream.available(AppInputStream.java:60)
at
java.io.BufferedInputStream.available(BufferedInputStream.java:410
)
at sun.net.www.MeteredStream.available(MeteredStream.java:170)
at sun.net.www.http.KeepAliveStream.close(KeepAliveStream.java:85)
at java.io.FilterInputStream.close(FilterInputStream.java:181)
at
sun.net.www.protocol.http.HttpURLConnection$HttpInputStream.close(
HttpURLConnection.java:3448)
at org.gradle.wrapper.Download.downloadInternal(Download.java:77)
at org.gradle.wrapper.Download.download(Download.java:44)
at org.gradle.wrapper.Install$1.call(Install.java:61)
at org.gradle.wrapper.Install$1.call(Install.java:48)
at
org.gradle.wrapper.ExclusiveFileAccessManager.access(ExclusiveFile
AccessManager.java:65)
at org.gradle.wrapper.Install.createDist(Install.java:48)
at
org.gradle.wrapper.WrapperExecutor.execute(WrapperExecutor.java:12
8)
at
org.gradle.wrapper.GradleWrapperMain.main(GradleWrapperMain.java:6
1)
Caused by: javax.net.ssl.SSLException: java.net.SocketException:
Connection reset
at sun.security.ssl.Alerts.getSSLException(Alerts.java:208)
at sun.security.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1959)
at sun.security.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1916)
at
sun.security.ssl.SSLSocketImpl.handleException(SSLSocketImpl.java:
1880)
at
sun.security.ssl.SSLSocketImpl.handleException(SSLSocketImpl.java:
1825)
at sun.security.ssl.AppInputStream.read(AppInputStream.java:116)
at java.io.BufferedInputStream.read1(BufferedInputStream.java:284)
at java.io.BufferedInputStream.read(BufferedInputStream.java:345)
at sun.net.www.MeteredStream.read(MeteredStream.java:134)
at java.io.FilterInputStream.read(FilterInputStream.java:133)
at
sun.net.www.protocol.http.HttpURLConnection$HttpInputStream.read(H
ttpURLConnection.java:3375)
at
sun.net.www.protocol.http.HttpURLConnection$HttpInputStream.read(H
ttpURLConnection.java:3368)
at org.gradle.wrapper.Download.downloadInternal(Download.java:62)
... 7 more
Caused by: java.net.SocketException: Connection reset
at java.net.SocketInputStream.read(SocketInputStream.java:210)
at java.net.SocketInputStream.read(SocketInputStream.java:141)
at sun.security.ssl.InputRecord.readFully(InputRecord.java:465)
at sun.security.ssl.InputRecord.readV3Record(InputRecord.java:593)
at sun.security.ssl.InputRecord.read(InputRecord.java:532)
at
sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:983)
at
sun.security.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:9
40)
at sun.security.ssl.AppInputStream.read(AppInputStream.java:105)
... 14 more
[ +14 ms] "flutter run" took 59,106ms.
Oops; flutter has exited unexpectedly.
Sending crash report to Google."><pre class="notranslate"><code class="notranslate">Downloading https://services.gradle.org/distributions/gradle-4.10.2-all.zip
...................................................................
...................................................................
.................
Exception in thread "main" javax.net.ssl.SSLException: Connection
has been shutdown: javax.net.ssl.SSLException:
java.net.SocketException: Connection reset
at
sun.security.ssl.SSLSocketImpl.checkEOF(SSLSocketImpl.java:1551)
at
sun.security.ssl.AppInputStream.available(AppInputStream.java:60)
at
java.io.BufferedInputStream.available(BufferedInputStream.java:410
)
at sun.net.www.MeteredStream.available(MeteredStream.java:170)
at sun.net.www.http.KeepAliveStream.close(KeepAliveStream.java:85)
at java.io.FilterInputStream.close(FilterInputStream.java:181)
at
sun.net.www.protocol.http.HttpURLConnection$HttpInputStream.close(
HttpURLConnection.java:3448)
at org.gradle.wrapper.Download.downloadInternal(Download.java:77)
at org.gradle.wrapper.Download.download(Download.java:44)
at org.gradle.wrapper.Install$1.call(Install.java:61)
at org.gradle.wrapper.Install$1.call(Install.java:48)
at
org.gradle.wrapper.ExclusiveFileAccessManager.access(ExclusiveFile
AccessManager.java:65)
at org.gradle.wrapper.Install.createDist(Install.java:48)
at
org.gradle.wrapper.WrapperExecutor.execute(WrapperExecutor.java:12
8)
at
org.gradle.wrapper.GradleWrapperMain.main(GradleWrapperMain.java:6
1)
Caused by: javax.net.ssl.SSLException: java.net.SocketException:
Connection reset
at sun.security.ssl.Alerts.getSSLException(Alerts.java:208)
at sun.security.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1959)
at sun.security.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1916)
at
sun.security.ssl.SSLSocketImpl.handleException(SSLSocketImpl.java:
1880)
at
sun.security.ssl.SSLSocketImpl.handleException(SSLSocketImpl.java:
1825)
at sun.security.ssl.AppInputStream.read(AppInputStream.java:116)
at java.io.BufferedInputStream.read1(BufferedInputStream.java:284)
at java.io.BufferedInputStream.read(BufferedInputStream.java:345)
at sun.net.www.MeteredStream.read(MeteredStream.java:134)
at java.io.FilterInputStream.read(FilterInputStream.java:133)
at
sun.net.www.protocol.http.HttpURLConnection$HttpInputStream.read(H
ttpURLConnection.java:3375)
at
sun.net.www.protocol.http.HttpURLConnection$HttpInputStream.read(H
ttpURLConnection.java:3368)
at org.gradle.wrapper.Download.downloadInternal(Download.java:62)
... 7 more
Caused by: java.net.SocketException: Connection reset
at java.net.SocketInputStream.read(SocketInputStream.java:210)
at java.net.SocketInputStream.read(SocketInputStream.java:141)
at sun.security.ssl.InputRecord.readFully(InputRecord.java:465)
at sun.security.ssl.InputRecord.readV3Record(InputRecord.java:593)
at sun.security.ssl.InputRecord.read(InputRecord.java:532)
at
sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:983)
at
sun.security.ssl.SSLSocketImpl.readDataRecord(SSLSocketImpl.java:9
40)
at sun.security.ssl.AppInputStream.read(AppInputStream.java:105)
... 14 more
[ +14 ms] "flutter run" took 59,106ms.
Oops; flutter has exited unexpectedly.
Sending crash report to Google.
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[β] Flutter (Channel stable, v1.0.0, on Mac OS X 10.14.1 18B75, locale en-GB)
β’ Flutter version 1.0.0 at /Users/nishit/Developement/flutter
β’ Framework revision 5391447fae (2 weeks ago), 2018-11-29 19:41:26 -0800
β’ Engine revision 7375a0f414
β’ Dart version 2.1.0 (build 2.1.0-dev.9.4 f9ebf21297)
[β] Android toolchain - develop for Android devices (Android SDK 28.0.3)
β’ Android SDK at /Users/nishit/Library/Android/sdk
β’ Android NDK location not configured (optional; useful for native profiling
support)
β’ Platform android-28, build-tools 28.0.3
β’ ANDROID_HOME = /Users/nishit/Library/Android/sdk
β’ Java binary at: /Applications/Android
Studio.app/Contents/jre/jdk/Contents/Home/bin/java
β’ Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06)
β’ All Android licenses accepted.
[β] iOS toolchain - develop for iOS devices (Xcode 10.1)
β’ Xcode at /Applications/Xcode.app/Contents/Developer
β’ Xcode 10.1, Build version 10B61
β’ ios-deploy 1.9.4
β’ CocoaPods version 1.5.3
[β] Android Studio (version 3.2)
β’ Android Studio at /Applications/Android Studio.app/Contents
β’ Flutter plugin version 31.1.1
β’ Dart plugin version 181.5656
β’ Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06)
[β] VS Code (version 1.29.1)
β’ VS Code at /Applications/Visual Studio Code.app/Contents
β’ Flutter extension version 2.21.1
[!] Connected device
! No devices available
! Doctor found issues in 1 category."><pre class="notranslate"><code class="notranslate">[β] Flutter (Channel stable, v1.0.0, on Mac OS X 10.14.1 18B75, locale en-GB)
β’ Flutter version 1.0.0 at /Users/nishit/Developement/flutter
β’ Framework revision 5391447fae (2 weeks ago), 2018-11-29 19:41:26 -0800
β’ Engine revision 7375a0f414
β’ Dart version 2.1.0 (build 2.1.0-dev.9.4 f9ebf21297)
[β] Android toolchain - develop for Android devices (Android SDK 28.0.3)
β’ Android SDK at /Users/nishit/Library/Android/sdk
β’ Android NDK location not configured (optional; useful for native profiling
support)
β’ Platform android-28, build-tools 28.0.3
β’ ANDROID_HOME = /Users/nishit/Library/Android/sdk
β’ Java binary at: /Applications/Android
Studio.app/Contents/jre/jdk/Contents/Home/bin/java
β’ Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06)
β’ All Android licenses accepted.
[β] iOS toolchain - develop for iOS devices (Xcode 10.1)
β’ Xcode at /Applications/Xcode.app/Contents/Developer
β’ Xcode 10.1, Build version 10B61
β’ ios-deploy 1.9.4
β’ CocoaPods version 1.5.3
[β] Android Studio (version 3.2)
β’ Android Studio at /Applications/Android Studio.app/Contents
β’ Flutter plugin version 31.1.1
β’ Dart plugin version 181.5656
β’ Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06)
[β] VS Code (version 1.29.1)
β’ VS Code at /Applications/Visual Studio Code.app/Contents
β’ Flutter extension version 2.21.1
[!] Connected device
! No devices available
! Doctor found issues in 1 category.
</code></pre></div>
<p dir="auto"><a href="https://github.com/flutter/flutter/files/2676878/flutter_01.log">flutter_01.log</a></p> | 0 |
<p dir="auto">Hi,<br>
I'm having trouble to write character ">" using keys "Alt-Gr" + ".". I think it might be a bug.<br>
(Using Czech keyboard if it has any affect on this)</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"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=bonhamcm" rel="nofollow">Chris Bonham</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-7833?redirect=false" rel="nofollow">SPR-7833</a></strong> and commented</p>
<p dir="auto">Sometimes it is necessary to strictly update the cache without retrieving the value first, for example when pre-loading a cache. I've created a patch that adds a boolean updateOnly flag to the <code class="notranslate">@Cacheable</code> annotation that is false by default. If set to true, the underlying cache is not consulted, but rather the return value is placed directly in the cache.</p>
<hr>
<p dir="auto"><strong>Affects:</strong> 3.1 M1</p>
<p dir="auto"><strong>Attachments:</strong></p>
<ul dir="auto">
<li><a href="https://jira.spring.io/secure/attachment/17472/updateOnly.patch" rel="nofollow">updateOnly.patch</a> (<em>4.83 kB</em>)</li>
</ul>
<p dir="auto">3 votes, 2 watchers</p> | <p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=medined" rel="nofollow">David Medinets</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-1956?redirect=false" rel="nofollow">SPR-1956</a></strong> and commented</p>
<p dir="auto">Given a bean definition like this:</p>
<p dir="auto"><bean id="com.foo.BarRepository" class="com.foo.BarRepositoryJDO"><br>
<constructor-arg><ref bean="javax.jdo.PersistenceManagerFactory" /></constructor-arg><br>
</bean></p>
<p dir="auto">If the beanFactory.getBean(Bar.class) signature were supported (ie, added to the BeanFactory interface), it would be possible to do:</p>
<p dir="auto">BarRepository barRepository = (BarRepository)beanFactory.getBean(BarRepository.class);</p>
<p dir="auto">This syntax is better than getBean("barRepository") because the Java compiler verifies the class name is spelled correctly. While advanced IDEs (ie, Eclipse) support does handle class name verification, not all people will be using such an IDE.</p>
<p dir="auto">It may or may not be a good idea to require the Class to actually be an interface to ensure that 'best practices' are followed.</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="398093503" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/10200" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/10200/hovercard" href="https://github.com/spring-projects/spring-framework/issues/10200">#10200</a> Support BeanFactory#getBean(Class requiredType) (<em><strong>"duplicates"</strong></em>)</li>
</ul>
<p dir="auto">1 votes, 1 watchers</p> | 0 |
<p dir="auto">Hi,<br>
I test version 3.0 RC1. I build my website with this version but I have a problem :).<br>
The link of the navbar are disable with firefox.</p>
<p dir="auto">Best regards,<br>
lefandordinateur.</p> | <p dir="auto">You cannot access on any left-side menu link with Firefox.</p>
<p dir="auto">Tested with Firefox 22.0 on Mac</p> | 1 |
<p dir="auto">After doing</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="script/grunt install --installdir=/usr/local"><pre class="notranslate"><code class="notranslate">script/grunt install --installdir=/usr/local
</code></pre></div>
<p dir="auto">there are no icons for the atom launcher.</p>
<p dir="auto">The .desktop file <strong>/usr/local/share/applications/atom.desktop</strong> references the icon at <strong>/usr/local/share/atom/resources/app/resources/atom.png</strong> but the folder <strong>app/resources</strong> does not exist.</p> | <p dir="auto">When installing from source by following <a href="https://github.com/atom/atom/blob/master/docs/build-instructions/linux.md">this guide</a> the following <code class="notranslate">.desktop</code> entry is created in <code class="notranslate">/usr/local/share/applications/atom.desktop</code>:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[Desktop Entry]
Name=Atom
Comment=A hackable text editor for the 21st Century.
GenericName=Text Editor
Exec=/usr/local/share/atom/atom %U
Icon=/usr/local/share/atom/resources/app/resources/atom.png
Type=Application
StartupNotify=true
Categories=GNOME;GTK;Utility;TextEditor;Development;
MimeType=text/plain;"><pre class="notranslate"><code class="notranslate">[Desktop Entry]
Name=Atom
Comment=A hackable text editor for the 21st Century.
GenericName=Text Editor
Exec=/usr/local/share/atom/atom %U
Icon=/usr/local/share/atom/resources/app/resources/atom.png
Type=Application
StartupNotify=true
Categories=GNOME;GTK;Utility;TextEditor;Development;
MimeType=text/plain;
</code></pre></div>
<p dir="auto">However, <code class="notranslate">/usr/local/share/atom/resources/app/resources/atom.png</code> does not exist.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ ls /usr/local/share/atom/resources/app/
apm atom.sh"><pre class="notranslate"><code class="notranslate">$ ls /usr/local/share/atom/resources/app/
apm atom.sh
</code></pre></div>
<p dir="auto">I solved it by simply copying the atom icon in <code class="notranslate">atom/resources/atom.png</code> over to the expected path.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="cd atom
sudo cp --parents resources/atom.png /usr/local/share/atom/resources/app/"><pre class="notranslate"><code class="notranslate">cd atom
sudo cp --parents resources/atom.png /usr/local/share/atom/resources/app/
</code></pre></div>
<p dir="auto">I didn't find this bug last week when installing release 0.192.0. Maybe this was introduced on 0.193.0 because of the <code class="notranslate">asar</code> archive file.</p> | 1 |
<h3 dir="auto">First Check</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I added a very descriptive title to this issue.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I used the GitHub search to find a similar issue and didn't find it.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I searched the FastAPI documentation, with the integrated search.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already searched in Google "How to X in FastAPI" and didn't find any information.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already read and followed all the tutorial in the docs and didn't find an answer.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already checked if it is not related to FastAPI but to <a href="https://github.com/samuelcolvin/pydantic">Pydantic</a>.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already checked if it is not related to FastAPI but to <a href="https://github.com/swagger-api/swagger-ui">Swagger UI</a>.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already checked if it is not related to FastAPI but to <a href="https://github.com/Redocly/redoc">ReDoc</a>.</li>
</ul>
<h3 dir="auto">Commit to Help</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I commit to help with one of those options <g-emoji class="g-emoji" alias="point_up_2" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f446.png">π</g-emoji></li>
</ul>
<h3 dir="auto">Example Code</h3>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from fastapi import FastAPI
from pydantic import BaseModel
app = FastAPI()
class MyBaseModel(BaseModel):
def __hash__(self): # make hashable BaseModel subclass
return hash((type(self),) + tuple(self.__dict__.values()))
class NestedItems(MyBaseModel):
name: str
class Items(MyBaseModel):
items: set[NestedItems]
@app.post("/offers/")
async def create_items(items: Items):
return items
"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">fastapi</span> <span class="pl-k">import</span> <span class="pl-v">FastAPI</span>
<span class="pl-k">from</span> <span class="pl-s1">pydantic</span> <span class="pl-k">import</span> <span class="pl-v">BaseModel</span>
<span class="pl-s1">app</span> <span class="pl-c1">=</span> <span class="pl-v">FastAPI</span>()
<span class="pl-k">class</span> <span class="pl-v">MyBaseModel</span>(<span class="pl-v">BaseModel</span>):
<span class="pl-k">def</span> <span class="pl-en">__hash__</span>(<span class="pl-s1">self</span>): <span class="pl-c"># make hashable BaseModel subclass</span>
<span class="pl-k">return</span> <span class="pl-en">hash</span>((<span class="pl-en">type</span>(<span class="pl-s1">self</span>),) <span class="pl-c1">+</span> <span class="pl-en">tuple</span>(<span class="pl-s1">self</span>.<span class="pl-s1">__dict__</span>.<span class="pl-en">values</span>()))
<span class="pl-k">class</span> <span class="pl-v">NestedItems</span>(<span class="pl-v">MyBaseModel</span>):
<span class="pl-s1">name</span>: <span class="pl-s1">str</span>
<span class="pl-k">class</span> <span class="pl-v">Items</span>(<span class="pl-v">MyBaseModel</span>):
<span class="pl-s1">items</span>: <span class="pl-s1">set</span>[<span class="pl-v">NestedItems</span>]
<span class="pl-en">@<span class="pl-s1">app</span>.<span class="pl-en">post</span>(<span class="pl-s">"/offers/"</span>)</span>
<span class="pl-k">async</span> <span class="pl-k">def</span> <span class="pl-en">create_items</span>(<span class="pl-s1">items</span>: <span class="pl-v">Items</span>):
<span class="pl-k">return</span> <span class="pl-s1">items</span></pre></div>
<p dir="auto">This can be tested with the following command:</p>
<div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="uvicorn mre:app --reload &
curl -X 'POST' \
'http://127.0.0.1:8000/offers/' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"items": [
{
"name": "string"
}
]
}'"><pre class="notranslate">uvicorn mre:app --reload <span class="pl-k">&</span>
curl -X <span class="pl-s"><span class="pl-pds">'</span>POST<span class="pl-pds">'</span></span> \
<span class="pl-s"><span class="pl-pds">'</span>http://127.0.0.1:8000/offers/<span class="pl-pds">'</span></span> \
-H <span class="pl-s"><span class="pl-pds">'</span>accept: application/json<span class="pl-pds">'</span></span> \
-H <span class="pl-s"><span class="pl-pds">'</span>Content-Type: application/json<span class="pl-pds">'</span></span> \
-d <span class="pl-s"><span class="pl-pds">'</span>{</span>
<span class="pl-s"> "items": [</span>
<span class="pl-s"> {</span>
<span class="pl-s"> "name": "string"</span>
<span class="pl-s"> }</span>
<span class="pl-s"> ]</span>
<span class="pl-s">}<span class="pl-pds">'</span></span></pre></div>
<h3 dir="auto">Description</h3>
<ul dir="auto">
<li>The following command triggers the error <code class="notranslate">TypeError: unhashable type: 'dict'</code>.</li>
<li>It works if I replace <code class="notranslate">NestedItems</code> by a simple <code class="notranslate">str</code>.</li>
<li>It works if I replace <code class="notranslate">set</code> by a simple <code class="notranslate">list</code>.</li>
</ul>
<h3 dir="auto">Operating System</h3>
<p dir="auto">Linux</p>
<h3 dir="auto">Operating System Details</h3>
<p dir="auto">Ubuntu 22.04</p>
<h3 dir="auto">FastAPI Version</h3>
<p dir="auto">0.86.0</p>
<h3 dir="auto">Python Version</h3>
<p dir="auto">3.11.0</p>
<h3 dir="auto">Additional Context</h3>
<p dir="auto"><em>No response</em></p> | <h3 dir="auto">First Check</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I added a very descriptive title to this issue.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I used the GitHub search to find a similar issue and didn't find it.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I searched the FastAPI documentation, with the integrated search.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already searched in Google "How to X in FastAPI" and didn't find any information.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already read and followed all the tutorial in the docs and didn't find an answer.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already checked if it is not related to FastAPI but to <a href="https://github.com/samuelcolvin/pydantic">Pydantic</a>.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already checked if it is not related to FastAPI but to <a href="https://github.com/swagger-api/swagger-ui">Swagger UI</a>.</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already checked if it is not related to FastAPI but to <a href="https://github.com/Redocly/redoc">ReDoc</a>.</li>
</ul>
<h3 dir="auto">Commit to Help</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I commit to help with one of those options <g-emoji class="g-emoji" alias="point_up_2" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f446.png">π</g-emoji></li>
</ul>
<h3 dir="auto">Example Code</h3>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from fastapi import Depends, FastAPI
app = FastAPI()
def dependency() -> int:
return 99
@app.get("/")
def read_root(my_int: int = Depends(dependency)):
return {"an_int": my_int}"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">fastapi</span> <span class="pl-k">import</span> <span class="pl-v">Depends</span>, <span class="pl-v">FastAPI</span>
<span class="pl-s1">app</span> <span class="pl-c1">=</span> <span class="pl-v">FastAPI</span>()
<span class="pl-k">def</span> <span class="pl-en">dependency</span>() <span class="pl-c1">-></span> <span class="pl-s1">int</span>:
<span class="pl-k">return</span> <span class="pl-c1">99</span>
<span class="pl-en">@<span class="pl-s1">app</span>.<span class="pl-en">get</span>(<span class="pl-s">"/"</span>)</span>
<span class="pl-k">def</span> <span class="pl-en">read_root</span>(<span class="pl-s1">my_int</span>: <span class="pl-s1">int</span> <span class="pl-c1">=</span> <span class="pl-v">Depends</span>(<span class="pl-s1">dependency</span>)):
<span class="pl-k">return</span> {<span class="pl-s">"an_int"</span>: <span class="pl-s1">my_int</span>}</pre></div>
<h3 dir="auto">Description</h3>
<p dir="auto">Is there any reason that Depends does not use generics to automatically type hint the injected dependency?</p>
<p dir="auto">Currently, the Depends function's return is typed as Any:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="def Depends( # noqa: N802
dependency: Optional[Callable[..., Any]] = None, *, use_cache: bool = True
) -> Any:
return params.Depends(dependency=dependency, use_cache=use_cache)"><pre class="notranslate"><span class="pl-k">def</span> <span class="pl-v">Depends</span>( <span class="pl-c"># noqa: N802</span>
<span class="pl-s1">dependency</span>: <span class="pl-v">Optional</span>[<span class="pl-v">Callable</span>[..., <span class="pl-v">Any</span>]] <span class="pl-c1">=</span> <span class="pl-c1">None</span>, <span class="pl-c1">*</span>, <span class="pl-s1">use_cache</span>: <span class="pl-s1">bool</span> <span class="pl-c1">=</span> <span class="pl-c1">True</span>
) <span class="pl-c1">-></span> <span class="pl-v">Any</span>:
<span class="pl-k">return</span> <span class="pl-s1">params</span>.<span class="pl-v">Depends</span>(<span class="pl-s1">dependency</span><span class="pl-c1">=</span><span class="pl-s1">dependency</span>, <span class="pl-s1">use_cache</span><span class="pl-c1">=</span><span class="pl-s1">use_cache</span>)</pre></div>
<p dir="auto">This leads to a lot of duplicate code writing the type hints when defining an endpoint, for example:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="@router.post("/", response_model=FileRead)
async def upload_file(
*,
file: UploadFile,
session: Session = Depends(get_session),
user: OIDCUser = Depends(get_user),
file_manager: AsnycBaseFileManager = Depends(get_file_manager),
) -> File:
...
@router.get("/content/{file_id}")
async def get_file_content(
*,
file_id: int,
session: Session = Depends(get_session),
file_manager: AsyncBaseFileManager = Depends(get_file_manager),
) -> StreamingResponse:
..."><pre class="notranslate"><span class="pl-en">@<span class="pl-s1">router</span>.<span class="pl-en">post</span>(<span class="pl-s">"/"</span>, <span class="pl-s1">response_model</span><span class="pl-c1">=</span><span class="pl-v">FileRead</span>)</span>
<span class="pl-k">async</span> <span class="pl-k">def</span> <span class="pl-en">upload_file</span>(
<span class="pl-c1">*</span>,
<span class="pl-s1">file</span>: <span class="pl-v">UploadFile</span>,
<span class="pl-s1">session</span>: <span class="pl-v">Session</span> <span class="pl-c1">=</span> <span class="pl-v">Depends</span>(<span class="pl-s1">get_session</span>),
<span class="pl-s1">user</span>: <span class="pl-v">OIDCUser</span> <span class="pl-c1">=</span> <span class="pl-v">Depends</span>(<span class="pl-s1">get_user</span>),
<span class="pl-s1">file_manager</span>: <span class="pl-v">AsnycBaseFileManager</span> <span class="pl-c1">=</span> <span class="pl-v">Depends</span>(<span class="pl-s1">get_file_manager</span>),
) <span class="pl-c1">-></span> <span class="pl-v">File</span>:
...
<span class="pl-en">@<span class="pl-s1">router</span>.<span class="pl-en">get</span>(<span class="pl-s">"/content/{file_id}"</span>)</span>
<span class="pl-k">async</span> <span class="pl-k">def</span> <span class="pl-en">get_file_content</span>(
<span class="pl-c1">*</span>,
<span class="pl-s1">file_id</span>: <span class="pl-s1">int</span>,
<span class="pl-s1">session</span>: <span class="pl-v">Session</span> <span class="pl-c1">=</span> <span class="pl-v">Depends</span>(<span class="pl-s1">get_session</span>),
<span class="pl-s1">file_manager</span>: <span class="pl-v">AsyncBaseFileManager</span> <span class="pl-c1">=</span> <span class="pl-v">Depends</span>(<span class="pl-s1">get_file_manager</span>),
) <span class="pl-c1">-></span> <span class="pl-v">StreamingResponse</span>:
...</pre></div>
<p dir="auto">There is also room for human error if you write the wrong type hint, with no static type checking tools being able to prevent this.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/44192816/164703476-0ffc0298-01b1-4be7-8f46-28d289178b2c.png"><img src="https://user-images.githubusercontent.com/44192816/164703476-0ffc0298-01b1-4be7-8f46-28d289178b2c.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">It is possible to use Generics to properly type hint the Depends function:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="T = TypeVar("T")
def Depends( # noqa: N802
dependency: Optional[Callable[..., T]] = None, *, use_cache: bool = True
) -> T:
return params.Depends(dependency=dependency, use_cache=use_cache)"><pre class="notranslate"><span class="pl-v">T</span> <span class="pl-c1">=</span> <span class="pl-v">TypeVar</span>(<span class="pl-s">"T"</span>)
<span class="pl-k">def</span> <span class="pl-v">Depends</span>( <span class="pl-c"># noqa: N802</span>
<span class="pl-s1">dependency</span>: <span class="pl-v">Optional</span>[<span class="pl-v">Callable</span>[..., <span class="pl-v">T</span>]] <span class="pl-c1">=</span> <span class="pl-c1">None</span>, <span class="pl-c1">*</span>, <span class="pl-s1">use_cache</span>: <span class="pl-s1">bool</span> <span class="pl-c1">=</span> <span class="pl-c1">True</span>
) <span class="pl-c1">-></span> <span class="pl-v">T</span>:
<span class="pl-k">return</span> <span class="pl-s1">params</span>.<span class="pl-v">Depends</span>(<span class="pl-s1">dependency</span><span class="pl-c1">=</span><span class="pl-s1">dependency</span>, <span class="pl-s1">use_cache</span><span class="pl-c1">=</span><span class="pl-s1">use_cache</span>)</pre></div>
<p dir="auto">This leads to automatically having the correct type hints:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/44192816/164704235-43fe1ef5-4d2e-4745-beac-653a8cb40b0f.png"><img src="https://user-images.githubusercontent.com/44192816/164704235-43fe1ef5-4d2e-4745-beac-653a8cb40b0f.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">Is there a reason Depends explicitly returns Any, instead of an unbounded TypeVar? If not I am happy to PR this and PR documentation if necessary.</p>
<h3 dir="auto">Wanted Solution</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="T = TypeVar("T")
def Depends( # noqa: N802
dependency: Optional[Callable[..., T]] = None, *, use_cache: bool = True
) -> T:
return params.Depends(dependency=dependency, use_cache=use_cache)"><pre class="notranslate"><code class="notranslate">T = TypeVar("T")
def Depends( # noqa: N802
dependency: Optional[Callable[..., T]] = None, *, use_cache: bool = True
) -> T:
return params.Depends(dependency=dependency, use_cache=use_cache)
</code></pre></div>
<h3 dir="auto">Wanted Code</h3>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from fastapi import Depends, FastAPI
app = FastAPI()
def dependency() -> int:
return 99
@app.get("/")
def read_root(my_int = Depends(dependency)):
return {"an_int": my_int}"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">fastapi</span> <span class="pl-k">import</span> <span class="pl-v">Depends</span>, <span class="pl-v">FastAPI</span>
<span class="pl-s1">app</span> <span class="pl-c1">=</span> <span class="pl-v">FastAPI</span>()
<span class="pl-k">def</span> <span class="pl-en">dependency</span>() <span class="pl-c1">-></span> <span class="pl-s1">int</span>:
<span class="pl-k">return</span> <span class="pl-c1">99</span>
<span class="pl-en">@<span class="pl-s1">app</span>.<span class="pl-en">get</span>(<span class="pl-s">"/"</span>)</span>
<span class="pl-k">def</span> <span class="pl-en">read_root</span>(<span class="pl-s1">my_int</span> <span class="pl-c1">=</span> <span class="pl-v">Depends</span>(<span class="pl-s1">dependency</span>)):
<span class="pl-k">return</span> {<span class="pl-s">"an_int"</span>: <span class="pl-s1">my_int</span>}</pre></div>
<h3 dir="auto">Alternatives</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Operating System</h3>
<p dir="auto">Windows</p>
<h3 dir="auto">Operating System Details</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">FastAPI Version</h3>
<p dir="auto">0.75.2</p>
<h3 dir="auto">Python Version</h3>
<p dir="auto">3.9.12</p>
<h3 dir="auto">Additional Context</h3>
<p dir="auto"><em>No response</em></p> | 0 |
<p dir="auto"><a href="https://github.com/npm/cli/files/6138471/npmBug.zip">npmBug.zip</a></p>
<h3 dir="auto">Current Behavior:</h3>
<p dir="auto">When <code class="notranslate">npm i --production</code> is called, all project files referenced in devDependencies are deleted</p>
<h3 dir="auto">Expected Behavior:</h3>
<p dir="auto">npm doesn't delete our project files</p>
<h3 dir="auto">Steps To Reproduce:</h3>
<ol dir="auto">
<li>Run <code class="notranslate">npm i --production</code> in the <code class="notranslate">main</code> directory of the attached zip.</li>
<li>The <code class="notranslate">dependencies</code> folder will be deleted as a result of step 1</li>
</ol>
<h3 dir="auto">Environment:</h3>
<ul dir="auto">
<li>OS: MacOS Catalina 10.15.7</li>
<li>Node: 14.7.0</li>
<li>npm: 7.6.3</li>
</ul> | <h3 dir="auto">Current Behavior:</h3>
<p dir="auto">We have a local development dependency defined like this:</p>
<div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" "devDependencies": {
"our-local-dependency": "../../lib/our-local-dependency"
}"><pre class="notranslate"> <span class="pl-ent">"devDependencies"</span>: {
<span class="pl-ent">"our-local-dependency"</span>: <span class="pl-s"><span class="pl-pds">"</span>../../lib/our-local-dependency<span class="pl-pds">"</span></span>
}</pre></div>
<p dir="auto">When running <code class="notranslate">npm prune --production</code>, npm does not only delete the softlink but also the directory it is pointing to.</p>
<h3 dir="auto">Expected Behavior:</h3>
<p dir="auto">My assumption was that only the softlink would be deleted, but not the actual dependency itself</p>
<h3 dir="auto">Steps To Reproduce:</h3>
<ol dir="auto">
<li>Create a project with a local development dependency</li>
<li>run <code class="notranslate">npm install</code></li>
<li>run <code class="notranslate">npm prune --production</code></li>
</ol>
<h3 dir="auto">Environment:</h3>
<ul dir="auto">
<li>OS: Debian bullseye/sid</li>
<li>Node: v12.16.3 (nvm)</li>
<li>npm: 7.6.3 (I was able to reproduce this issue with 6.x.x as well)</li>
</ul> | 1 |
<p dir="auto">loader.load( this.properties.geometrySrc , this.properties.materialSrc)</p>
<p dir="auto">The only warning i got is</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="THREE.MeshPhongMaterial: 'diffuse' is not a property of this material."><pre class="notranslate"><code class="notranslate">THREE.MeshPhongMaterial: 'diffuse' is not a property of this material.
</code></pre></div>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/462417/10127654/2672ba00-65d8-11e5-8638-f549f87a6207.png"><img src="https://cloud.githubusercontent.com/assets/462417/10127654/2672ba00-65d8-11e5-8638-f549f87a6207.png" alt="screen shot 2015-09-28 at 11 56 39 am" style="max-width: 100%;"></a></p>
<p dir="auto">This is the mtl file that we load</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="newmtl material_0
Ka 1.000000 0.000000 0.000000
Kd 1.000000 1.000000 1.000000
Ks 0.000000 0.000000 0.000000
Tr 1.000000
illum 0
Ns 0.000000
map_Kd model_texture.jpg"><pre class="notranslate"><code class="notranslate">newmtl material_0
Ka 1.000000 0.000000 0.000000
Kd 1.000000 1.000000 1.000000
Ks 0.000000 0.000000 0.000000
Tr 1.000000
illum 0
Ns 0.000000
map_Kd model_texture.jpg
</code></pre></div> | <h5 dir="auto">Description of the problem</h5>
<p dir="auto">three.min.js r88 stopped rendering the canvas for some of my work with the update from macOS 10.13.1 and Safari 11.0.1 to macOS 10.13.2 and Safari 11.0.2 on iMac 14.2. RayCaster, or at least its methods setFromCamera and intersectsObjects, still works. Everything worked with macOS 10.13.1 and Safari 11.0.1. It still works with macOS 10.13.2 and Mozilla Firefox 57.0.1. My partly corresponding raw WebGL work still works with macOS 10.13.2 and Safari 11.0.2. I also re-tested my work with macOS 10.13.1 and Safari 11.0.1 on MacBook Pro 15"/2012 with NVIDIA GeForce GT 650M, and all works there.</p>
<p dir="auto">three.js has always thrown the warning below but still worked OK, so I don't know if it can be related. No other errors or warnings reported.<br>
[Warning] THREE.WebGLShader: gl.getShaderInfoLog() (3) (three.min.js, line 77)<br>
"fragment"<br>
"WARNING: 0:1: extension 'GL_ARB_gpu_shader5' is not supported<br>
"</p>
<ul dir="auto">
<li>a 1001 line dump</li>
</ul>
<p dir="auto">I checked some of the examples on the three.js website, and some render the canvas, others not:<br>
OK: <a href="https://threejs.org/examples/#webgl_animation_cloth" rel="nofollow">https://threejs.org/examples/#webgl_animation_cloth</a><br>
No: <a href="https://threejs.org/examples/#webgl_animation_keyframes_json" rel="nofollow">https://threejs.org/examples/#webgl_animation_keyframes_json</a><br>
No: <a href="https://threejs.org/examples/#webgl_animation_scene" rel="nofollow">https://threejs.org/examples/#webgl_animation_scene</a><br>
No: <a href="https://threejs.org/examples/#webgl_animation_skinning_blending" rel="nofollow">https://threejs.org/examples/#webgl_animation_skinning_blending</a><br>
No: <a href="https://threejs.org/examples/#webgl_animation_skinning_morph" rel="nofollow">https://threejs.org/examples/#webgl_animation_skinning_morph</a><br>
OK: <a href="https://threejs.org/examples/#webgl_camera" rel="nofollow">https://threejs.org/examples/#webgl_camera</a><br>
OK: <a href="https://threejs.org/examples/#webgl_camera_array" rel="nofollow">https://threejs.org/examples/#webgl_camera_array</a></p>
<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"> Dev</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> r88</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> ...</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"> 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"> Internet Explorer</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Safari</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"> Windows</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> 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">iMac 14.2 (Intel Core i7, 3,5 GHz, 16 GB, Boot ROM IM142.0123.B00)<br>
GPU: NVIDIA GeForce GTX 780M, ROM 3782</p> | 0 |
<h2 dir="auto"><g-emoji class="g-emoji" alias="bug" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f41b.png">π</g-emoji> Bug</h2>
<p dir="auto">Pillow just released 7.0.0. This breaks torchvision.transforms as the import fails:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last):
File "examples/mnist.py", line 5, in <module>
from torchvision.transforms import (
File "/home/felix/.local/share/virtualenvs/repro-Cd9xy9KO/lib/python3.6/site-packages/torchvision/__init__.py", line 4, in <module>
from torchvision import datasets
File "/home/felix/.local/share/virtualenvs/repro-Cd9xy9KO/lib/python3.6/site-packages/torchvision/datasets/__init__.py", line 9, in <module>
from .fakedata import FakeData
File "/home/felix/.local/share/virtualenvs/repro-Cd9xy9KO/lib/python3.6/site-packages/torchvision/datasets/fakedata.py", line 3, in <module>
from .. import transforms
File "/home/felix/.local/share/virtualenvs/repro-Cd9xy9KO/lib/python3.6/site-packages/torchvision/transforms/__init__.py", line 1, in <module>
from .transforms import *
File "/home/felix/.local/share/virtualenvs/repro-Cd9xy9KO/lib/python3.6/site-packages/torchvision/transforms/transforms.py", line 17, in <module>
from . import functional as F
File "/home/felix/.local/share/virtualenvs/repro-Cd9xy9KO/lib/python3.6/site-packages/torchvision/transforms/functional.py", line 5, in <module>
from PIL import Image, ImageOps, ImageEnhance, PILLOW_VERSION
ImportError: cannot import name 'PILLOW_VERSION'
"><pre class="notranslate"><code class="notranslate">Traceback (most recent call last):
File "examples/mnist.py", line 5, in <module>
from torchvision.transforms import (
File "/home/felix/.local/share/virtualenvs/repro-Cd9xy9KO/lib/python3.6/site-packages/torchvision/__init__.py", line 4, in <module>
from torchvision import datasets
File "/home/felix/.local/share/virtualenvs/repro-Cd9xy9KO/lib/python3.6/site-packages/torchvision/datasets/__init__.py", line 9, in <module>
from .fakedata import FakeData
File "/home/felix/.local/share/virtualenvs/repro-Cd9xy9KO/lib/python3.6/site-packages/torchvision/datasets/fakedata.py", line 3, in <module>
from .. import transforms
File "/home/felix/.local/share/virtualenvs/repro-Cd9xy9KO/lib/python3.6/site-packages/torchvision/transforms/__init__.py", line 1, in <module>
from .transforms import *
File "/home/felix/.local/share/virtualenvs/repro-Cd9xy9KO/lib/python3.6/site-packages/torchvision/transforms/transforms.py", line 17, in <module>
from . import functional as F
File "/home/felix/.local/share/virtualenvs/repro-Cd9xy9KO/lib/python3.6/site-packages/torchvision/transforms/functional.py", line 5, in <module>
from PIL import Image, ImageOps, ImageEnhance, PILLOW_VERSION
ImportError: cannot import name 'PILLOW_VERSION'
</code></pre></div>
<p dir="auto"><a href="https://github.com/python-pillow/Pillow/releases">https://github.com/python-pillow/Pillow/releases</a></p>
<h2 dir="auto">To Reproduce</h2>
<p dir="auto">run<br>
<code class="notranslate">from torchvision.transforms import Compose</code></p>
<h2 dir="auto">Environment</h2>
<p dir="auto">torch==1.3.1<br>
torchvision==0.4.2<br>
torchvision==7.0.0</p>
<h2 dir="auto">Fix</h2>
<p dir="auto">I pinned pillow to version 6.2.2. After this the import works again</p> | <p dir="auto">Hi, it looks like Pillow released version 7.0.0 so I can no longer import torchvision without getting this error: <code class="notranslate">ImportError: cannot import name 'PILLOW_VERSION' from 'PIL'</code></p>
<p dir="auto">Pinning to Pillow 6.2.1 fixes the issue.</p>
<p dir="auto">I see that you fixed this for a future torchvision release (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="509141756" data-permission-text="Title is private" data-url="https://github.com/pytorch/vision/issues/1501" data-hovercard-type="pull_request" data-hovercard-url="/pytorch/vision/pull/1501/hovercard" href="https://github.com/pytorch/vision/pull/1501">#1501</a>). Do you know when this will be released? If it will be awhile, could the version of Pillow be pinned to be less than 7.0.0 in the meantime?</p>
<p dir="auto">Thanks.</p>
<p dir="auto">Versions:<br>
torch: 1.3.1<br>
torchvision: 0.4.2<br>
Pillow: 7.0.0</p> | 1 |
<p dir="auto">Just using the existing configuration framework, but with a file format like matplotlib uses... See how they do it here: <a href="http://matplotlib.org/users/customizing.html" rel="nofollow">http://matplotlib.org/users/customizing.html</a>.</p>
<p dir="auto">Plus, we can document all the config options in a single file.</p>
<p dir="auto">related <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="9104798" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/2452" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/2452/hovercard" href="https://github.com/pandas-dev/pandas/issues/2452">#2452</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="12003435" data-permission-text="Title is private" data-url="https://github.com/pandas-dev/pandas/issues/3046" data-hovercard-type="issue" data-hovercard-url="/pandas-dev/pandas/issues/3046/hovercard" href="https://github.com/pandas-dev/pandas/issues/3046">#3046</a></p> | <p dir="auto">Tested on 0.13.0, 0.13.1 and 0.14.0rc1:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from StringIO import StringIO
import pandas as pd
# this is correct
print(pd.DataFrame([[0, 1, 2], [3, 4, 5]], columns=["a", "b", "a"]))
# and this is fine as well
# (although, changing the column names to a,b,a.1)
print(pd.read_csv(StringIO("a,b,a\n0,1,2\n3,4,5")))
# but this is not correct
print(pd.read_csv(StringIO("0,1,2\n3,4,5"), names=["a", "b", "a"]))"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-v">StringIO</span> <span class="pl-k">import</span> <span class="pl-v">StringIO</span>
<span class="pl-k">import</span> <span class="pl-s1">pandas</span> <span class="pl-k">as</span> <span class="pl-s1">pd</span>
<span class="pl-c"># this is correct</span>
<span class="pl-en">print</span>(<span class="pl-s1">pd</span>.<span class="pl-v">DataFrame</span>([[<span class="pl-c1">0</span>, <span class="pl-c1">1</span>, <span class="pl-c1">2</span>], [<span class="pl-c1">3</span>, <span class="pl-c1">4</span>, <span class="pl-c1">5</span>]], <span class="pl-s1">columns</span><span class="pl-c1">=</span>[<span class="pl-s">"a"</span>, <span class="pl-s">"b"</span>, <span class="pl-s">"a"</span>]))
<span class="pl-c"># and this is fine as well</span>
<span class="pl-c"># (although, changing the column names to a,b,a.1)</span>
<span class="pl-en">print</span>(<span class="pl-s1">pd</span>.<span class="pl-en">read_csv</span>(<span class="pl-v">StringIO</span>(<span class="pl-s">"a,b,a<span class="pl-cce">\n</span>0,1,2<span class="pl-cce">\n</span>3,4,5"</span>)))
<span class="pl-c"># but this is not correct</span>
<span class="pl-en">print</span>(<span class="pl-s1">pd</span>.<span class="pl-en">read_csv</span>(<span class="pl-v">StringIO</span>(<span class="pl-s">"0,1,2<span class="pl-cce">\n</span>3,4,5"</span>), <span class="pl-s1">names</span><span class="pl-c1">=</span>[<span class="pl-s">"a"</span>, <span class="pl-s">"b"</span>, <span class="pl-s">"a"</span>]))</pre></div>
<p dir="auto">The last one returns:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Out[5]:
a b a
0 2 1 2
1 5 4 5"><pre class="notranslate"><code class="notranslate">Out[5]:
a b a
0 2 1 2
1 5 4 5
</code></pre></div>
<p dir="auto">I would expect all 3 methods to return the same DataFrame. I noticed this when I wanted to read csv file that had a separate file with a header (and a duplicated column in it). BTW is there a better way to do it than to read the header file first and pass the output into 'names' parameter of read_csv?</p> | 0 |
<p dir="auto"><strong>Do you want to request a <em>feature</em> or report a <em>bug</em>?</strong><br>
Report a bug</p>
<p dir="auto"><strong>What is the current behavior?</strong><br>
When using a number input that has a defaultValue, you cannot enter a decimal value. When attempting to type a decimal, the cursor is moved to the beginning of the input. This behavior is <em>not</em> observed when there is no defaultValue given.</p>
<p dir="auto"><strong>If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem via <a href="https://jsfiddle.net" rel="nofollow">https://jsfiddle.net</a> or similar (template: <a href="https://jsfiddle.net/reactjs/69z2wepo/" rel="nofollow">https://jsfiddle.net/reactjs/69z2wepo/</a>).</strong><br>
<a href="https://jsfiddle.net/zc0x3egz/" rel="nofollow">https://jsfiddle.net/zc0x3egz/</a></p>
<p dir="auto"><strong>What is the expected behavior?</strong><br>
The input should allow you to type a decimal.</p>
<p dir="auto"><strong>Which versions of React, and which browser / OS are affected by this issue? Did this work in previous versions of React?</strong><br>
This is happening with React 15.3.2. It does <em>not</em> happen in 0.14.x</p> | <p dir="auto">This appears to have been introduced in a new Chrome version, but I can't find any reference to where.</p>
<p dir="auto">Affected/Tested Browsers (OS X):</p>
<ul dir="auto">
<li>Chrome 51.0.2704.106 (64-bit)</li>
<li>Opera 39.0.2256.15</li>
</ul>
<p dir="auto">Unaffected Browsers:</p>
<ul dir="auto">
<li>Safari 9.1</li>
<li>Firefox 49</li>
</ul>
<p dir="auto">Backspacing in an input element with <code class="notranslate">value</code> or <code class="notranslate">defaultValue</code> set causes some very odd behavior. Once a decimal point is gone, it can't easily be re-added.</p>
<p dir="auto">Example:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1197375/16786390/1d722fd4-485a-11e6-8969-780d4e4e9752.gif"><img src="https://cloud.githubusercontent.com/assets/1197375/16786390/1d722fd4-485a-11e6-8969-780d4e4e9752.gif" alt="react-input-bug" data-animated-image="" style="max-width: 100%;"></a></p>
<p dir="auto">In this example, I simply backspaced twice. On the second backspace, when I expect <code class="notranslate">3.</code> to be showing, the input instead reads <code class="notranslate">3</code> and the cursor has moved to the beginning. The next two jumps are my attempts to add another decimal point.</p>
<p dir="auto">Fiddle: <a href="https://jsfiddle.net/kmqz6kw8/" rel="nofollow">https://jsfiddle.net/kmqz6kw8/</a></p>
<p dir="auto">Tested with React 15.2.</p>
<p dir="auto">Notes: This only occurs when <code class="notranslate">value</code> or <code class="notranslate">defaultValue</code> is set. If neither is set, the input behaves properly. We are currently working around this issue by (unfortunately) setting the input value on <code class="notranslate">componentDidMount</code> via a ref.</p> | 1 |
<p dir="auto">update etcd to 3.0.6, err still exists:</p>
<p dir="auto">Checking for swagger spec that need updating... !!! Error in /home/zte/share/k8s-clone2/src/k8s.io/kubernetes/hack/lib/etcd.sh:35<br>
'version=$(etcd --version | head -n 1 | cut -d " " -f 3)' exited with status 141<br>
Call stack:<br>
1: /home/zte/share/k8s-clone2/src/k8s.io/kubernetes/hack/lib/etcd.sh:35 kube::etcd::start(...)<br>
2: /home/zte/share/k8s-clone2/src/k8s.io/kubernetes/hack/update-swagger-spec.sh:59 main(...)<br>
Exiting with status 1<br>
!!! Error in hack/verify-swagger-spec.sh:38<br>
'"${KUBE_ROOT}/hack/update-swagger-spec.sh"' exited with status 1<br>
Call stack:<br>
1: hack/verify-swagger-spec.sh:38 main(...)<br>
Exiting with status 1<br>
ERROR!<br>
Swagger spec needs to be updated.<br>
To regenerate the spec, run:<br>
hack/update-swagger-spec.sh</p>
<p dir="auto">Aborting commit</p> | 1 |
|
<p dir="auto">Hi, I built jax from source but when importing jax, I get this error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/usr/local/lib/python3.8/dist-packages/jaxlib/cusolver.py in <module>
24 from jaxlib import cublas_kernels
25 for _name, _value in cublas_kernels.registrations().items():
---> 26 xla_client.register_custom_call_target(_name, _value, platform="CUDA")
27 except ImportError:
28 pass
/usr/local/lib/python3.8/dist-packages/jaxlib/xla_client.py in register_custom_call_target(name, fn, platform)
432 platform: the target platform.
433 """
--> 434 _xla.register_custom_call_target(name, fn, xla_platform_names[platform])
435
436
KeyError: 'CUDA'"><pre class="notranslate"><code class="notranslate">/usr/local/lib/python3.8/dist-packages/jaxlib/cusolver.py in <module>
24 from jaxlib import cublas_kernels
25 for _name, _value in cublas_kernels.registrations().items():
---> 26 xla_client.register_custom_call_target(_name, _value, platform="CUDA")
27 except ImportError:
28 pass
/usr/local/lib/python3.8/dist-packages/jaxlib/xla_client.py in register_custom_call_target(name, fn, platform)
432 platform: the target platform.
433 """
--> 434 _xla.register_custom_call_target(name, fn, xla_platform_names[platform])
435
436
KeyError: 'CUDA'
</code></pre></div>
<p dir="auto">After looking at the source code, it seems that line 26 and 34 in <code class="notranslate">jaxlib/cusolver.py</code> should be:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" xla_client.register_custom_call_target(_name, _value, platform="gpu")"><pre class="notranslate"> <span class="pl-s1">xla_client</span>.<span class="pl-en">register_custom_call_target</span>(<span class="pl-s1">_name</span>, <span class="pl-s1">_value</span>, <span class="pl-s1">platform</span><span class="pl-c1">=</span><span class="pl-s">"gpu"</span>)</pre></div>
<p dir="auto">to match the xla_platform_names dict in xla_client. When fixed another error is raised:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" File "/usr/local/lib/python3.8/dist-packages/jaxlib/cuda_prng.py", line 27, in <module>
xla_client.register_custom_call_target(_name, _value, platform="CUDA")
File "/usr/local/lib/python3.8/dist-packages/jaxlib/xla_client.py", line 434, in register_custom_call_target
_xla.register_custom_call_target(name, fn, xla_platform_names[platform])
KeyError: 'CUDA'"><pre class="notranslate"><code class="notranslate"> File "/usr/local/lib/python3.8/dist-packages/jaxlib/cuda_prng.py", line 27, in <module>
xla_client.register_custom_call_target(_name, _value, platform="CUDA")
File "/usr/local/lib/python3.8/dist-packages/jaxlib/xla_client.py", line 434, in register_custom_call_target
_xla.register_custom_call_target(name, fn, xla_platform_names[platform])
KeyError: 'CUDA'
</code></pre></div>
<p dir="auto">line 434 in <code class="notranslate">jaxlib/xla_client.py</code> should be:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="xla_client.register_custom_call_target(_name, _value, platform="gpu")"><pre class="notranslate"><span class="pl-s1">xla_client</span>.<span class="pl-en">register_custom_call_target</span>(<span class="pl-s1">_name</span>, <span class="pl-s1">_value</span>, <span class="pl-s1">platform</span><span class="pl-c1">=</span><span class="pl-s">"gpu"</span>)</pre></div>
<p dir="auto">Let me know if I'm right or if I missed something.</p> | <p dir="auto">Is there any way to create a <code class="notranslate">jax.numpy.array</code> on a specific device, instead of creating it on the default device then moving it via <code class="notranslate">device_put</code>? Also, is there any way to change the default device programmatically? Thanks in advance.</p> | 0 |
<p dir="auto">Minor, but still:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="type nn = number;
class A {
[s: nn]: number; // an error here, but it shouldn't be an error
}"><pre class="notranslate"><span class="pl-k">type</span> <span class="pl-smi">nn</span> <span class="pl-c1">=</span> <span class="pl-smi">number</span><span class="pl-kos">;</span>
<span class="pl-k">class</span> <span class="pl-smi">A</span> <span class="pl-kos">{</span>
<span class="pl-kos">[</span><span class="pl-s1">s</span>: <span class="pl-smi">nn</span><span class="pl-kos">]</span>: <span class="pl-smi">number</span><span class="pl-kos">;</span> <span class="pl-c">// an error here, but it shouldn't be an error</span>
<span class="pl-kos">}</span></pre></div> | <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="type Guid = string;
var foo: { [deviceId: Guid]: DateTime } = {};"><pre class="notranslate"><code class="notranslate">type Guid = string;
var foo: { [deviceId: Guid]: DateTime } = {};
</code></pre></div>
<p dir="auto">Generates the error:</p>
<blockquote>
<p dir="auto">An index signature parameter type must be 'string' or 'number'.</p>
</blockquote>
<p dir="auto">It would be nice to be able to type indexes using string-aliases.</p> | 1 |
<p dir="auto">Hi !</p>
<p dir="auto">When the <code class="notranslate">asset</code> helper is used in a twig template to generate urls, it does not take into account the <code class="notranslate">router.request_context.base_url</code> parameter set in <code class="notranslate">config.yml</code> (or <code class="notranslate">config_*.yml</code>).</p>
<p dir="auto">I've created a <strong><a href="https://github.com/MrMitch/symfony-assets-base-url">sample project</a></strong> (based on <a href="https://github.com/symfony/symfony-standard">symfony/symfony-standard</a>) to illustrate this.</p>
<p dir="auto">The project defines a <a href="http://symfony.com/doc/current/cookbook/console/request_context.html" rel="nofollow">default base-url</a> for all requests in <a href="https://github.com/MrMitch/symfony-assets-base-url/blob/assets-base-url/app/config/config.yml#L10">config.yml</a>.<br>
Inside the project, i added a <a href="https://github.com/MrMitch/symfony-assets-base-url/blob/assets-base-url/src/AppBundle/Command/GenerateAssetsListCommand.php">demonstration command</a> <code class="notranslate">mitch:generate-assets-list</code> that ouputs 3 lists of urls.</p>
<ol dir="auto">
<li>a list generated with <code class="notranslate">asset</code></li>
<li>a list generated using <code class="notranslate">url</code></li>
<li>a list generated using <code class="notranslate">path</code></li>
</ol>
<p dir="auto">The urls of list 2 & 3 all have the base-url part inside, the urls in list 1 do not.</p>
<p dir="auto"><a href="https://github.com/MrMitch/symfony-assets-base-url/blob/assets-base-url/src/AppBundle/Resources/views/template.twig">The template</a> looks like :</p>
<div class="highlight highlight-text-html-twig notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="## assets urls
- {{ asset('bundles/app/img/logo.png') }}
- {{ asset('bundles/framework/images/logo_symfony.png') }}
## controller urls
- {{ url('homepage') }}
- {{ url('dummy_route') }}
## controller paths
- {{ path('homepage') }}
- {{ path('dummy_route') }}"><pre class="notranslate">## assets urls
- {{ asset(<span class="pl-s"><span class="pl-pds">'</span>bundles/app/img/logo.png<span class="pl-pds">'</span></span>) }}
- {{ asset(<span class="pl-s"><span class="pl-pds">'</span>bundles/framework/images/logo_symfony.png<span class="pl-pds">'</span></span>) }}
## controller urls
- {{ url(<span class="pl-s"><span class="pl-pds">'</span>homepage<span class="pl-pds">'</span></span>) }}
- {{ url(<span class="pl-s"><span class="pl-pds">'</span>dummy_route<span class="pl-pds">'</span></span>) }}
## controller paths
- {{ path(<span class="pl-s"><span class="pl-pds">'</span>homepage<span class="pl-pds">'</span></span>) }}
- {{ path(<span class="pl-s"><span class="pl-pds">'</span>dummy_route<span class="pl-pds">'</span></span>) }}</pre></div>
<p dir="auto">The ouput generated by <code class="notranslate">php bin/console mitch:generate-assets-list</code> looks like :</p>
<div class="highlight highlight-text-md notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="## assets urls
- /bundles/app/img/logo.png
- /bundles/framework/images/logo_symfony.png
## controller urls
- http://localhost/subfolder/
- http://localhost/subfolder/dummy
## controller paths
- /subfolder/
- /subfolder/dummy"><pre class="notranslate"><span class="pl-mh">## <span class="pl-en">assets urls</span></span>
<span class="pl-v">-</span> /bundles/app/img/logo.png
<span class="pl-v">-</span> /bundles/framework/images/logo_symfony.png
<span class="pl-mh">## <span class="pl-en">controller urls</span></span>
<span class="pl-v">-</span> <span class="pl-corl">http://localhost/subfolder/</span>
<span class="pl-v">-</span> <span class="pl-corl">http://localhost/subfolder/dummy</span>
<span class="pl-mh">## <span class="pl-en">controller paths</span></span>
<span class="pl-v">-</span> /subfolder/
<span class="pl-v">-</span> /subfolder/dummy</pre></div>
<p dir="auto">Thank you for your time,<br>
Mitch.</p> | <p dir="auto"><strong>Symfony version(s) affected</strong>: 4.1.1</p>
<p dir="auto"><strong>Description</strong><br>
When running in environment <code class="notranslate">prod</code> with display errors off, I'm seeing in my <code class="notranslate">/var/log/nginx/error.log</code> lots of <code class="notranslate">out of memory exception</code>. I'm having to resort to running in dev environment to see that the error (in this instance) is because a directory isn't writeable.</p>
<p dir="auto">Why is an out of memory exception being reported in the logs, instead of something more sensible?</p>
<p dir="auto"><strong>How to reproduce</strong><br>
Switch to prod mode, and try to write to a non-writeable directory, and you should see the out of memory exception error in the server log.</p> | 0 |
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/android.kindergartens.com-2/base.apk"],nativeLibraryDirectories=[/data/app/android.aa.com-2/lib/arm, /system/fake-libs, /data/app/android.aa.com-2/base.apk!/lib/armeabi-v7a, /system/lib, /vendor/lib]]] couldn't find "libflutter.so""><pre class="notranslate"><code class="notranslate">java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/android.kindergartens.com-2/base.apk"],nativeLibraryDirectories=[/data/app/android.aa.com-2/lib/arm, /system/fake-libs, /data/app/android.aa.com-2/base.apk!/lib/armeabi-v7a, /system/lib, /vendor/lib]]] couldn't find "libflutter.so"
</code></pre></div>
<p dir="auto">When I use abiFilters "armeabi-v7a", I found a mistake.<br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/10591822/37636192-a2e747f0-2c3b-11e8-813e-167f0ff9ff4c.png"><img src="https://user-images.githubusercontent.com/10591822/37636192-a2e747f0-2c3b-11e8-813e-167f0ff9ff4c.png" alt="image" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/10591822/37636263-05ff19ee-2c3c-11e8-83a8-e37ab54e9f3b.png"><img src="https://user-images.githubusercontent.com/10591822/37636263-05ff19ee-2c3c-11e8-83a8-e37ab54e9f3b.png" alt="image" style="max-width: 100%;"></a><br>
<a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/10591822/37636268-104d5ffa-2c3c-11e8-90c2-6e96d9cb4238.png"><img src="https://user-images.githubusercontent.com/10591822/37636268-104d5ffa-2c3c-11e8-90c2-6e96d9cb4238.png" alt="image" style="max-width: 100%;"></a></p> | <p dir="auto">When I want to debug the application in MacOs environment, it throw such error:</p>
<p dir="auto">Multiple commands produce '/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework</p>
<ol dir="auto">
<li>Target 'Runner' has copy command from '/ios/Flutter/Flutter.framework' to '/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework'</li>
<li>That command depends on command in Target 'Runner': script phase β[CP] Embed Pods Frameworksβ<br>
warning: ignoring duplicated output file: '//build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework' (in target 'Runner')<br>
note: Using new build systemnote: Planning buildnote: Constructing build description</li>
</ol>
<p dir="auto">Mac 10.14 Beta<br>
Xcode 10 beta</p>
<p dir="auto">How to fix it? Thanks a lot</p> | 0 |
<p dir="auto"></p><div class="Box Box--condensed my-2">
<div class="Box-header f6">
<p class="mb-0 text-bold">
<a href="https://github.com/numpy/numpy/blob/4adc87dff15a247e417d50f10cc4def8e1c17a03/numpy/__init__.pyi#L1505-L1506">numpy/numpy/__init__.pyi</a>
</p>
<p class="mb-0 color-fg-muted">
Lines 1505 to 1506
in
<a data-pjax="true" class="commit-tease-sha" href="/numpy/numpy/commit/4adc87dff15a247e417d50f10cc4def8e1c17a03">4adc87d</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="L1505" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="1505"></td>
<td id="LC1505" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-en">@<span class="pl-s1">property</span></span> </td>
</tr>
<tr class="border-0">
<td id="L1506" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="1506"></td>
<td id="LC1506" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">def</span> <span class="pl-en">__array_finalize__</span>(<span class="pl-s1">self</span>) <span class="pl-c1">-></span> <span class="pl-c1">None</span>: ... </td>
</tr>
</tbody></table>
</div>
</div>
<p></p>
<p dir="auto">Currently, mypy does not allow users to define <code class="notranslate">__array_finalize__</code>, since the super class (ndarray) does not have an argument. So the following error is produced:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="src/vector/_backends/numpy_.py:899: error: Signature of "__array_finalize__" incompatible with supertype "ndarray" [override]
src/vector/_backends/numpy_.py:899: note: Superclass:
src/vector/_backends/numpy_.py:899: note: def __array_finalize__(self) -> None
src/vector/_backends/numpy_.py:899: note: Subclass:
src/vector/_backends/numpy_.py:899: note: def __array_finalize__(self, obj: Any) -> None"><pre class="notranslate"><code class="notranslate">src/vector/_backends/numpy_.py:899: error: Signature of "__array_finalize__" incompatible with supertype "ndarray" [override]
src/vector/_backends/numpy_.py:899: note: Superclass:
src/vector/_backends/numpy_.py:899: note: def __array_finalize__(self) -> None
src/vector/_backends/numpy_.py:899: note: Subclass:
src/vector/_backends/numpy_.py:899: note: def __array_finalize__(self, obj: Any) -> None
</code></pre></div>
<p dir="auto">This type stub should have a <code class="notranslate">obj: Any</code> argument.</p> | <p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/melissawm/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/melissawm">@melissawm</a> pointed out that <a href="https://numpy.org/devdocs/user/basics.broadcasting.html" rel="nofollow">Broadcasting</a> and <a href="https://numpy.org/devdocs/user/theory.broadcasting.html" rel="nofollow">Array Broadcasting in Numpy</a> contain a lot of duplicate content. <a href="https://numpy.org/devdocs/user/theory.broadcasting.html" rel="nofollow">Array Broadcasting in Numpy</a> is also an orphan doc(not in any TOC) and is referenced in only one other place (<code class="notranslate">Tutorial: Linear algebra on n-dimensional arrays</code>).</p>
<p dir="auto">I think we can merge the unique parts of the orphan doc into the main <code class="notranslate">Broadcasting</code> doc. The plan would be to:</p>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Add Vector quantization section and update internal links</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Add SVGs in <code class="notranslate">Broadcasting</code> for examples and Vector quantization section (ref: <a href="https://github.com/numpy/numpy/issues/18501" data-hovercard-type="issue" data-hovercard-url="/numpy/numpy/issues/18501/hovercard">Tracking Issue for Graphics</a>)</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Add corresponding captions/explanations and alt-text for each figure</li>
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Remove the corresponding images from the directory</li>
</ul>
<p dir="auto">Figures 1 and 5 from <a href="https://numpy.org/devdocs/user/theory.broadcasting.html" rel="nofollow">Array Broadcasting in Numpy</a> can be recycled and converted to SVGs, I think (please let me know what you think <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/MarsBarLee/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/MarsBarLee">@MarsBarLee</a>).<br>
Figures 2, 3, 4 seem to be wrong... So I think we can make new graphics for the corresponding examples.</p>
<p dir="auto"><a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/melissawm/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/melissawm">@melissawm</a> please let me know if you have any suggestions/corrections!</p> | 0 |
<p dir="auto">TL;DR: I propose we create a simple guard around doubly-including React, which can cause issues if different blocks work with different instances of <code class="notranslate">React</code>.</p>
<p dir="auto">I understand this invariant isn't going to matter to everyone, but I've at two points in so many weeks fixed a bug on a co-worker's project because they were accidentally including React twice in the browser: one from a Browserify bundle, and once from a standalone <code class="notranslate"><script></code>.</p> | <p dir="auto">People lose hours of work debugging a simple issue: two versions of React being loaded at the same time.</p>
<p dir="auto"><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="46378264" data-permission-text="Title is private" data-url="https://github.com/gaearon/react-hot-loader/issues/32" data-hovercard-type="issue" data-hovercard-url="/gaearon/react-hot-loader/issues/32/hovercard?comment_id=60043061&comment_type=issue_comment" href="https://github.com/gaearon/react-hot-loader/issues/32#issuecomment-60043061">gaearon/react-hot-loader#32 (comment)</a><br>
<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="39042379" data-permission-text="Title is private" data-url="https://github.com/KyleAMathews/coffee-react-quickstart/issues/10" data-hovercard-type="issue" data-hovercard-url="/KyleAMathews/coffee-react-quickstart/issues/10/hovercard?comment_id=50655116&comment_type=issue_comment" href="https://github.com/KyleAMathews/coffee-react-quickstart/issues/10#issuecomment-50655116">KyleAMathews/coffee-react-quickstart#10 (comment)</a><br>
<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="46525433" data-permission-text="Title is private" data-url="https://github.com/gaearon/react-document-title/issues/1" data-hovercard-type="issue" data-hovercard-url="/gaearon/react-document-title/issues/1/hovercard?comment_id=60241045&comment_type=issue_comment" href="https://github.com/gaearon/react-document-title/issues/1#issuecomment-60241045">gaearon/react-document-title#1 (comment)</a><br>
<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="38944738" data-permission-text="Title is private" data-url="https://github.com/clayallsopp/react.backbone/issues/26" data-hovercard-type="issue" data-hovercard-url="/clayallsopp/react.backbone/issues/26/hovercard" href="https://github.com/clayallsopp/react.backbone/issues/26">clayallsopp/react.backbone#26</a></p>
<p dir="auto">Because there is no warning right away when this happens, they usually discover the problem through invariant violations. Some of them are descriptive (e.g. <code class="notranslate">Uncaught Error: Invariant Violation: The handler for Route "hello" must be a valid React component</code>) and I think I even saw warning that said something like "check if two copies of React are loaded", but some are really cryptic: <code class="notranslate">Invariant Violation: addComponentAsRefTo(...): Only a ReactOwner can have refs...</code>.</p>
<p dir="auto">Is there a reason why we don't want to warn <em>right away</em> when two copies of React are loaded?</p> | 1 |
<p dir="auto">I have been using Ansible on 12 hosts with no issues at all. For some reason, when I tried to add the 13th host (lucky, lucky), the tool threw an error I hadn't seen before:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="FAILED => failed to resolve remote temporary directory from
$HOME/.ansible/tmp/ansible-1380135548.99-254800519176889: `mkdir -p
$HOME/.ansible/tmp/ansible-1380135548.99-254800519176889 && chmod a+rx
$HOME/.ansible/tmp/ansible-1380135548.99-254800519176889 && echo
$HOME/.ansible/tmp/ansible-1380135548.99-254800519176889` returned empty string"><pre class="notranslate"><code class="notranslate">FAILED => failed to resolve remote temporary directory from
$HOME/.ansible/tmp/ansible-1380135548.99-254800519176889: `mkdir -p
$HOME/.ansible/tmp/ansible-1380135548.99-254800519176889 && chmod a+rx
$HOME/.ansible/tmp/ansible-1380135548.99-254800519176889 && echo
$HOME/.ansible/tmp/ansible-1380135548.99-254800519176889` returned empty string
</code></pre></div>
<p dir="auto">Google failed me utterly, so I did some digging through the source. I found that the ansible/runner/connection_plugins/paramiko_ssh.py script simply wasn't returning any response from the this host. The public key was set up just like the other 12, and I was able to SSH in without a password, but Paramiko just wouldn't return any data.</p>
<p dir="auto">After much head scratching and discovering quite possibly the most usefully arcane Stackoverflow response I've ever seen (<a href="http://stackoverflow.com/a/18472049/484661" rel="nofollow">http://stackoverflow.com/a/18472049/484661</a>), I found that that the only way to get this particular host to return anything was by calling the get_pty() function on the Paramiko channel that exec_command opens:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="178 def exec_command(self, cmd, tmp_path, sudo_user, sudoable=False, executable='/bin/sh'):
179 ''' run a command on the remote host '''
180
181 bufsize = 4096
182 try:
183 chan = self.ssh.get_transport().open_session()
184 chan.get_pty()
185 except Exception, e:
186 msg = "Failed to open session"
187 if len(str(e)) > 0:
188 msg += ": %s" % str(e)
189 raise errors.AnsibleConnectionFailed(msg)"><pre class="notranslate"><code class="notranslate">178 def exec_command(self, cmd, tmp_path, sudo_user, sudoable=False, executable='/bin/sh'):
179 ''' run a command on the remote host '''
180
181 bufsize = 4096
182 try:
183 chan = self.ssh.get_transport().open_session()
184 chan.get_pty()
185 except Exception, e:
186 msg = "Failed to open session"
187 if len(str(e)) > 0:
188 msg += ": %s" % str(e)
189 raise errors.AnsibleConnectionFailed(msg)
</code></pre></div>
<p dir="auto">Adding this made Ansible work with this host, and it did not cause any issue with the previous 12. I realize this is more of a Paramiko issue than an Ansible one, but I figured this should be reported as an Ansible bug for now since you can work around it with the get_pty() function.</p> | <p dir="auto">From <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jimsmith/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jimsmith">@jimsmith</a> on 2016-07-09T16:51:59Z</p>
<h5 dir="auto">ISSUE TYPE</h5>
<ul dir="auto">
<li>Bug Report<br>
Originally logged <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="164312838" data-permission-text="Title is private" data-url="https://github.com/ansible/ansible/issues/16622" data-hovercard-type="issue" data-hovercard-url="/ansible/ansible/issues/16622/hovercard" href="https://github.com/ansible/ansible/issues/16622">#16622</a></li>
</ul>
<h5 dir="auto">COMPONENT NAME</h5>
<p dir="auto">rds</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.0.0"><pre class="notranslate"><code class="notranslate">ansible 2.1.0.0
</code></pre></div>
<h5 dir="auto">CONFIGURATION</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ set | grep ANSIBLE
ANSIBLE_CONFIG=/home/jim.smith/.ansible/ansible.cfg
ANSIBLE_FORCE_COLOR=true
ANSIBLE_HOSTS=/home/jim.smith/.ansible/aws/ec2.py
ANSIBLE_HOST_KEY_CHECKING=False
ANSIBLE_SSH_ARGS='-o ForwardAgent=yes -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null'
ANSIBLE_TRANSPORT=ssh
export ANSIBLE_HOSTS=~/.ansible/aws/ec2.py;
export ANSIBLE_HOST_KEY_CHECKING="False";
export ANSIBLE_TRANSPORT="ssh";
export ANSIBLE_SSH_ARGS="-o ForwardAgent=yes -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null";
export ANSIBLE_CONFIG=~/.ansible/ansible.cfg;
export ANSIBLE_FORCE_COLOR=true;
$ANSIBLE_HOSTS --refresh-cache > /dev/null;
export ANSIBLE_HOST_KEY_CHECKING="False""><pre class="notranslate"><code class="notranslate">$ set | grep ANSIBLE
ANSIBLE_CONFIG=/home/jim.smith/.ansible/ansible.cfg
ANSIBLE_FORCE_COLOR=true
ANSIBLE_HOSTS=/home/jim.smith/.ansible/aws/ec2.py
ANSIBLE_HOST_KEY_CHECKING=False
ANSIBLE_SSH_ARGS='-o ForwardAgent=yes -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null'
ANSIBLE_TRANSPORT=ssh
export ANSIBLE_HOSTS=~/.ansible/aws/ec2.py;
export ANSIBLE_HOST_KEY_CHECKING="False";
export ANSIBLE_TRANSPORT="ssh";
export ANSIBLE_SSH_ARGS="-o ForwardAgent=yes -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null";
export ANSIBLE_CONFIG=~/.ansible/ansible.cfg;
export ANSIBLE_FORCE_COLOR=true;
$ANSIBLE_HOSTS --refresh-cache > /dev/null;
export ANSIBLE_HOST_KEY_CHECKING="False"
</code></pre></div>
<h5 dir="auto">OS / ENVIRONMENT</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="CentOS release 6.7 (Final) 64bit"><pre class="notranslate"><code class="notranslate">CentOS release 6.7 (Final) 64bit
</code></pre></div>
<h5 dir="auto">SUMMARY</h5>
<p dir="auto">Modifying RDS multi_zone to no doesn't do anything.</p>
<h5 dir="auto">STEPS TO REPRODUCE</h5>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="- name: Change RDS Multi-AZ deployment
local_action:
module: rds
command: modify
region: "{{ aws_region }}"
instance_name: "{{ aws_db_instance_name }}"
multi_zone: "{{ aws_db_multi_zone }}"
apply_immediately: yes
wait: yes
wait_timeout: "{{ aws_db_wait_timeout }}"
register: modify_rds_multi_az
- debug: var=modify_rds_multi_az
- name: Wait for a minute for the API call to get actioned so the instance is available but modifying
pause: minutes=1
- name: Poll RDS change
local_action:
module : rds
command: facts
region: "{{ aws_region }}"
instance_name: "{{ aws_db_instance_name }}"
register: rds_facts_after
until : rds_facts_after.instance['status'] == 'available'
retries: 60
delay: 60
- debug: var=rds_facts_after
- debug: msg="vars {{ aws_db_instance_name }} {{ aws_db_multi_zone }} {{ aws_region}} {{ aws_db_wait_timeout }}"
- debug: var=rds_facts_after.instance['status']
"><pre class="notranslate"><code class="notranslate">- name: Change RDS Multi-AZ deployment
local_action:
module: rds
command: modify
region: "{{ aws_region }}"
instance_name: "{{ aws_db_instance_name }}"
multi_zone: "{{ aws_db_multi_zone }}"
apply_immediately: yes
wait: yes
wait_timeout: "{{ aws_db_wait_timeout }}"
register: modify_rds_multi_az
- debug: var=modify_rds_multi_az
- name: Wait for a minute for the API call to get actioned so the instance is available but modifying
pause: minutes=1
- name: Poll RDS change
local_action:
module : rds
command: facts
region: "{{ aws_region }}"
instance_name: "{{ aws_db_instance_name }}"
register: rds_facts_after
until : rds_facts_after.instance['status'] == 'available'
retries: 60
delay: 60
- debug: var=rds_facts_after
- debug: msg="vars {{ aws_db_instance_name }} {{ aws_db_multi_zone }} {{ aws_region}} {{ aws_db_wait_timeout }}"
- debug: var=rds_facts_after.instance['status']
</code></pre></div>
<h5 dir="auto">EXPECTED RESULTS</h5>
<p dir="auto">AWS Console showing the RDS database being modified for No multi-az</p>
<p dir="auto">Gathering rds facts for "multi_zone": false,</p>
<h5 dir="auto">ACTUAL RESULTS</h5>
<p dir="auto">AWS Console show's no modification, cloudtrail show's no API requests.<br>
rds facts module reports "multi_zone": true,</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="TASK [modify_multi_zone : Change RDS Multi-AZ deployment] **********************
task path: /home/jim.smith/modify_multi_zone/tasks/main.yml:8
<localhost> ESTABLISH LOCAL CONNECTION FOR USER: jim.smith
<localhost> EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo $HOME/.ansible/tmp/ansible-tmp-1467897722.6-238584385008593 `" && echo ansible-tmp-1467897722.6-238584385008593="` echo $HOME/.ansible/tmp/ansible-tmp-1467897722.6-238584385008593 `" ) && sleep 0'
<localhost> PUT /tmp/tmpRagNjF TO /home/jim.smith/.ansible/tmp/ansible-tmp-1467897722.6-238584385008593/rds
<localhost> EXEC /bin/sh -c 'LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8 /usr/bin/python /home/jim.smith/.ansible/tmp/ansible-tmp-1467897722.6-238584385008593/rds; rm -rf "/home/jim.smith/.ansible/tmp/ansible-tmp-1467897722.6-238584385008593/" > /dev/null 2>&1 && sleep 0'
changed: [localhost -> localhost] => {"changed": true, "instance": {"availability_zone": "eu-west-1a", "backup_retention": 30, "create_time": 1461930783.596, "endpoint": "REMOVED.eu-west-1.rds.amazonaws.com", "id": "REMOVED-prod-db1", "instance_type": "db.t2.small", "iops": null, "maintenance_window": "mon:00:00-mon:01:15", "multi_zone": true, "port": 3306, "replication_source": null, "status": "available", "username": "root", "vpc_security_groups": "sg-REMOVED"}, "invocation": {"module_args": {"apply_immediately": true, "aws_access_key": null, "aws_secret_key": null, "backup_retention": null, "backup_window": null, "character_set_name": null, "command": "modify", "db_engine": null, "db_name": null, "ec2_url": null, "engine_version": null, "force_failover": false, "instance_name": "REMOVED-prod-db1", "instance_type": null, "iops": null, "license_model": null, "maint_window": null, "multi_zone": false, "new_instance_name": null, "option_group": null, "parameter_group": null, "password": null, "port": null, "profile": null, "publicly_accessible": null, "region": "eu-west-1", "security_groups": null, "security_token": null, "size": null, "snapshot": null, "source_instance": null, "subnet": null, "tags": null, "upgrade": false, "username": null, "validate_certs": true, "vpc_security_groups": null, "wait": true, "wait_timeout": 2400, "zone": null}, "module_name": "rds"}}
"><pre class="notranslate"><code class="notranslate">TASK [modify_multi_zone : Change RDS Multi-AZ deployment] **********************
task path: /home/jim.smith/modify_multi_zone/tasks/main.yml:8
<localhost> ESTABLISH LOCAL CONNECTION FOR USER: jim.smith
<localhost> EXEC /bin/sh -c '( umask 77 && mkdir -p "` echo $HOME/.ansible/tmp/ansible-tmp-1467897722.6-238584385008593 `" && echo ansible-tmp-1467897722.6-238584385008593="` echo $HOME/.ansible/tmp/ansible-tmp-1467897722.6-238584385008593 `" ) && sleep 0'
<localhost> PUT /tmp/tmpRagNjF TO /home/jim.smith/.ansible/tmp/ansible-tmp-1467897722.6-238584385008593/rds
<localhost> EXEC /bin/sh -c 'LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8 /usr/bin/python /home/jim.smith/.ansible/tmp/ansible-tmp-1467897722.6-238584385008593/rds; rm -rf "/home/jim.smith/.ansible/tmp/ansible-tmp-1467897722.6-238584385008593/" > /dev/null 2>&1 && sleep 0'
changed: [localhost -> localhost] => {"changed": true, "instance": {"availability_zone": "eu-west-1a", "backup_retention": 30, "create_time": 1461930783.596, "endpoint": "REMOVED.eu-west-1.rds.amazonaws.com", "id": "REMOVED-prod-db1", "instance_type": "db.t2.small", "iops": null, "maintenance_window": "mon:00:00-mon:01:15", "multi_zone": true, "port": 3306, "replication_source": null, "status": "available", "username": "root", "vpc_security_groups": "sg-REMOVED"}, "invocation": {"module_args": {"apply_immediately": true, "aws_access_key": null, "aws_secret_key": null, "backup_retention": null, "backup_window": null, "character_set_name": null, "command": "modify", "db_engine": null, "db_name": null, "ec2_url": null, "engine_version": null, "force_failover": false, "instance_name": "REMOVED-prod-db1", "instance_type": null, "iops": null, "license_model": null, "maint_window": null, "multi_zone": false, "new_instance_name": null, "option_group": null, "parameter_group": null, "password": null, "port": null, "profile": null, "publicly_accessible": null, "region": "eu-west-1", "security_groups": null, "security_token": null, "size": null, "snapshot": null, "source_instance": null, "subnet": null, "tags": null, "upgrade": false, "username": null, "validate_certs": true, "vpc_security_groups": null, "wait": true, "wait_timeout": 2400, "zone": null}, "module_name": "rds"}}
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="TASK [modify_multi_zone : debug] ***********************************************
task path: /home/jim.smith/modify_multi_zone/tasks/main.yml:34
ok: [localhost] => {
"rds_facts_after": {
"changed": false,
"instance": {
"availability_zone": "eu-west-1a",
"backup_retention": 30,
"create_time": 1461930783.596,
"endpoint": "RMOVED.eu-west-1.rds.amazonaws.com",
"id": "REMOVED-prod-db1",
"instance_type": "db.t2.small",
"iops": null,
"maintenance_window": "mon:00:00-mon:01:15",
"multi_zone": true,
"port": 3306,
"replication_source": null,
"status": "available",
"username": "root",
"vpc_security_groups": "sg-REMOVED"
}
}
}"><pre class="notranslate"><code class="notranslate">TASK [modify_multi_zone : debug] ***********************************************
task path: /home/jim.smith/modify_multi_zone/tasks/main.yml:34
ok: [localhost] => {
"rds_facts_after": {
"changed": false,
"instance": {
"availability_zone": "eu-west-1a",
"backup_retention": 30,
"create_time": 1461930783.596,
"endpoint": "RMOVED.eu-west-1.rds.amazonaws.com",
"id": "REMOVED-prod-db1",
"instance_type": "db.t2.small",
"iops": null,
"maintenance_window": "mon:00:00-mon:01:15",
"multi_zone": true,
"port": 3306,
"replication_source": null,
"status": "available",
"username": "root",
"vpc_security_groups": "sg-REMOVED"
}
}
}
</code></pre></div>
<p dir="auto">I should have mentioned that using the following (right after the playbook completes) AWS CLI command works and I can see RDS being modified and RDS Events showing the request being actioned.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="aws rds modify-db-instance --db-instance-identifier REMOVED-prod-db1 \
--no-multi-az \
--apply-immediately"><pre class="notranslate"><code class="notranslate">aws rds modify-db-instance --db-instance-identifier REMOVED-prod-db1 \
--no-multi-az \
--apply-immediately
</code></pre></div>
<p dir="auto">I now had to write a shell wrapper to workaround the rds module not correctly which duplicates the effort and logic needed.</p>
<p dir="auto">Copied from original issue: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="164675264" data-permission-text="Title is private" data-url="https://github.com/ansible/ansible-modules-core/issues/4145" data-hovercard-type="issue" data-hovercard-url="/ansible/ansible-modules-core/issues/4145/hovercard" href="https://github.com/ansible/ansible-modules-core/issues/4145">ansible/ansible-modules-core#4145</a></p> | 0 |
<p dir="auto">When using allow_redirect=True, user can set a callback on each 'response' (via the hook parameter) but not on 'request'.<br>
This is a problem when using the redirect capability because user loose the ability to interact with the request before it is being sent.<br>
This would allow a user to do things such as: Log all incoming requests (and all redirect) in real time / modify the header between redirected calls / modify argument or payload between calls / or change http method between redirects / ...</p>
<p dir="auto">Locally I can fix this by changing:</p>
<ul dir="auto">
<li>hook.py:
<ul dir="auto">
<li>Adding a 'request' to the HOOK list at line 14:<br>
HOOKS = ['response', 'request'])</li>
</ul>
</li>
<li>Session.py
<ul dir="auto">
<li>move line 637 to 633:<br>
hook = request.hooks</li>
<li>add a callback line 634:<br>
dispatch_hook('request', hooks, request, **kwargs)</li>
</ul>
</li>
</ul>
<p dir="auto">But I don't want to have a frankenversion of "requests.py" on my system. And I'm not familiar enough to have a good "proposed change" from GitHub (without potentially causing unintended side effects).</p>
<h2 dir="auto">Expected Result</h2>
<p dir="auto">The 'response' hook should be triggered just before making the adapter.send (initially and more importantly for all subsequent redirects).<br>
The default_hook (hook.py) should have an entry for 'request' along with 'response'</p>
<h2 dir="auto">Actual Result</h2>
<p dir="auto">When redirect happen, mulitple 'response' callback are triggered but no 'request' callback.</p>
<p dir="auto">What happened instead.</p>
<h2 dir="auto">Reproduction Steps</h2>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import requests
LOG = logging.getLogger(__name__)
# ( in real scenario, there would be something more interesting than logging here - but good enough for repro steps).
def _log_request(self, prepared_request):
LOG.info("HTTP Request")
LOG.info("-> %s %s" % (prepared_request.method.upper(), prepared_request.url))
if prepared_request.body:
LOG.info("-> (Payload) %s" % prepared_request.body)
for key,value in prepared_request.headers.items():
LOG.info("-> %s: %s" % (key,value))
def _log_response(self, resp):
LOG.info("HTTP Response for '%s'" % resp.url)
LOG.info("<- Status Code = %s" % resp.status_code)
for (key,value) in resp.headers.items():
LOG.info("<- %s: %s" % (key,value) )
session = requests.Session()
session.get(url, headers=_headers, hooks={"response":_log_response, "request":_log_request}, allow_redirects=True)"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">requests</span>
<span class="pl-v">LOG</span> <span class="pl-c1">=</span> <span class="pl-s1">logging</span>.<span class="pl-en">getLogger</span>(<span class="pl-s1">__name__</span>)
<span class="pl-c"># ( in real scenario, there would be something more interesting than logging here - but good enough for repro steps).</span>
<span class="pl-k">def</span> <span class="pl-en">_log_request</span>(<span class="pl-s1">self</span>, <span class="pl-s1">prepared_request</span>):
<span class="pl-v">LOG</span>.<span class="pl-en">info</span>(<span class="pl-s">"HTTP Request"</span>)
<span class="pl-v">LOG</span>.<span class="pl-en">info</span>(<span class="pl-s">"-> %s %s"</span> <span class="pl-c1">%</span> (<span class="pl-s1">prepared_request</span>.<span class="pl-s1">method</span>.<span class="pl-en">upper</span>(), <span class="pl-s1">prepared_request</span>.<span class="pl-s1">url</span>))
<span class="pl-k">if</span> <span class="pl-s1">prepared_request</span>.<span class="pl-s1">body</span>:
<span class="pl-v">LOG</span>.<span class="pl-en">info</span>(<span class="pl-s">"-> (Payload) %s"</span> <span class="pl-c1">%</span> <span class="pl-s1">prepared_request</span>.<span class="pl-s1">body</span>)
<span class="pl-k">for</span> <span class="pl-s1">key</span>,<span class="pl-s1">value</span> <span class="pl-c1">in</span> <span class="pl-s1">prepared_request</span>.<span class="pl-s1">headers</span>.<span class="pl-en">items</span>():
<span class="pl-v">LOG</span>.<span class="pl-en">info</span>(<span class="pl-s">"-> %s: %s"</span> <span class="pl-c1">%</span> (<span class="pl-s1">key</span>,<span class="pl-s1">value</span>))
<span class="pl-k">def</span> <span class="pl-en">_log_response</span>(<span class="pl-s1">self</span>, <span class="pl-s1">resp</span>):
<span class="pl-v">LOG</span>.<span class="pl-en">info</span>(<span class="pl-s">"HTTP Response for '%s'"</span> <span class="pl-c1">%</span> <span class="pl-s1">resp</span>.<span class="pl-s1">url</span>)
<span class="pl-v">LOG</span>.<span class="pl-en">info</span>(<span class="pl-s">"<- Status Code = %s"</span> <span class="pl-c1">%</span> <span class="pl-s1">resp</span>.<span class="pl-s1">status_code</span>)
<span class="pl-k">for</span> (<span class="pl-s1">key</span>,<span class="pl-s1">value</span>) <span class="pl-c1">in</span> <span class="pl-s1">resp</span>.<span class="pl-s1">headers</span>.<span class="pl-en">items</span>():
<span class="pl-v">LOG</span>.<span class="pl-en">info</span>(<span class="pl-s">"<- %s: %s"</span> <span class="pl-c1">%</span> (<span class="pl-s1">key</span>,<span class="pl-s1">value</span>) )
<span class="pl-s1">session</span> <span class="pl-c1">=</span> <span class="pl-s1">requests</span>.<span class="pl-v">Session</span>()
<span class="pl-s1">session</span>.<span class="pl-en">get</span>(<span class="pl-s1">url</span>, <span class="pl-s1">headers</span><span class="pl-c1">=</span><span class="pl-s1">_headers</span>, <span class="pl-s1">hooks</span><span class="pl-c1">=</span>{<span class="pl-s">"response"</span>:<span class="pl-s1">_log_response</span>, <span class="pl-s">"request"</span>:<span class="pl-s1">_log_request</span>}, <span class="pl-s1">allow_redirects</span><span class="pl-c1">=</span><span class="pl-c1">True</span>)</pre></div>
<h2 dir="auto">System Information</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ python -m requests.help"><pre class="notranslate"><code class="notranslate">$ python -m requests.help
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
"chardet": {
"version": "3.0.4"
},
"cryptography": {
"version": ""
},
"idna": {
"version": "2.7"
},
"implementation": {
"name": "CPython",
"version": "3.6.5"
},
"platform": {
"release": "17.7.0",
"system": "Darwin"
},
"pyOpenSSL": {
"openssl_version": "",
"version": null
},
"requests": {
"version": "2.19.1"
},
"system_ssl": {
"version": "100020ef"
},
"urllib3": {
"version": "1.23"
},
"using_pyopenssl": false
}
"><pre class="notranslate"><code class="notranslate">{
"chardet": {
"version": "3.0.4"
},
"cryptography": {
"version": ""
},
"idna": {
"version": "2.7"
},
"implementation": {
"name": "CPython",
"version": "3.6.5"
},
"platform": {
"release": "17.7.0",
"system": "Darwin"
},
"pyOpenSSL": {
"openssl_version": "",
"version": null
},
"requests": {
"version": "2.19.1"
},
"system_ssl": {
"version": "100020ef"
},
"urllib3": {
"version": "1.23"
},
"using_pyopenssl": false
}
</code></pre></div>
<p dir="auto">This command is only available on Requests v2.16.4 and greater. Otherwise,<br>
please provide some basic information about your system (Python version,<br>
operating system, &c).</p> | <p dir="auto">There was a scenario where I need to intercept the request and was searching for if there is some way can that be done, then I found the event hook but only <code class="notranslate">response</code> event hook is supported.<br>
I hope adding <code class="notranslate">request</code> hook can be useful, if yes I would like to implement that.</p>
<p dir="auto">Any pointers or suggestion appreciated.</p>
<p dir="auto">Thanks</p> | 1 |
<h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => 3.4.2, 3.4.5 and 4.1.0</li>
<li>Operating System / Platform => Windows and Linux x64</li>
<li>Compiler => gcc and python bindings</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">There is a large difference in calculations after the first batch normalization layer when I use a convolutional model with the opencv dnn module. The model is made with Keras/Tensorflow 1.14. The graph is frozen and then saved in binary .pb format.</p>
<h5 dir="auto">Steps to reproduce</h5>
<p dir="auto">Here is the model up to the batch norm layer in text format<br>
<a href="https://www.dropbox.com/s/tujdf3uvd7heyn1/test_batchnorm.pbtxt?dl=0" rel="nofollow">https://www.dropbox.com/s/tujdf3uvd7heyn1/test_batchnorm.pbtxt?dl=0</a><br>
Here is the model up to the batch norm layer in binary format<br>
<a href="https://www.dropbox.com/s/eyndn1xh42x3qr3/test_batchnorm.pb?dl=0" rel="nofollow">https://www.dropbox.com/s/eyndn1xh42x3qr3/test_batchnorm.pb?dl=0</a></p>
<p dir="auto">Here is a test image ( grayscale, should be rescaled in range 0..1, before passing as input)<br>
<a href="https://www.dropbox.com/s/gtghtp06k8jk5vy/00001.png?dl=0" rel="nofollow">https://www.dropbox.com/s/gtghtp06k8jk5vy/00001.png?dl=0</a><br>
And the outputs generated with the python binding<br>
Here is the output of the batch norm in Tensorflow<br>
<a href="https://www.dropbox.com/sh/xwkdjwbsoarxqna/AADrZ9BmWK5UUGRBN9t1I6moa?dl=0" rel="nofollow">https://www.dropbox.com/sh/xwkdjwbsoarxqna/AADrZ9BmWK5UUGRBN9t1I6moa?dl=0</a><br>
Here is the output of the batch norm in OpenCV<br>
<a href="https://www.dropbox.com/sh/520m2w74045tlqc/AAAUl3CAzE0r498go7BsMxRea?dl=0" rel="nofollow">https://www.dropbox.com/sh/520m2w74045tlqc/AAAUl3CAzE0r498go7BsMxRea?dl=0</a></p> | <h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => 3.2.0</li>
<li>Operating System / Platform => Ubuntu 18.04</li>
<li>Compiler => c++</li>
</ul>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">When I create a binary image with few pixels and call <code class="notranslate">findContours</code>, it seems to me that some points are skipped. Code example:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="#include <opencv2/opencv.hpp>
int main()
{
uchar img_data[] = {255, 255, 255, 0, 0, 0, 255, 0, 255, 0, 255, 0, 255, 0, 0};
cv::Mat img(cv::Size(5, 3), CV_8UC1, img_data);
cv::imshow("img", img);
cv::waitKey();
std::vector<std::vector<cv::Point>> contours;
std::vector<cv::Vec4i> hierarchy;
cv::findContours(img, contours, hierarchy, cv::RETR_TREE,
cv::CHAIN_APPROX_NONE);
for (std::vector<cv::Point> contour : contours)
{
for (cv::Point p : contour)
{
std::cout << p << std::endl;
}
}
}"><pre class="notranslate"><code class="notranslate">#include <opencv2/opencv.hpp>
int main()
{
uchar img_data[] = {255, 255, 255, 0, 0, 0, 255, 0, 255, 0, 255, 0, 255, 0, 0};
cv::Mat img(cv::Size(5, 3), CV_8UC1, img_data);
cv::imshow("img", img);
cv::waitKey();
std::vector<std::vector<cv::Point>> contours;
std::vector<cv::Vec4i> hierarchy;
cv::findContours(img, contours, hierarchy, cv::RETR_TREE,
cv::CHAIN_APPROX_NONE);
for (std::vector<cv::Point> contour : contours)
{
for (cv::Point p : contour)
{
std::cout << p << std::endl;
}
}
}
</code></pre></div>
<p dir="auto">I expect the points [0,0], [0,1], [1,1], [1,2], [0,2], [0,3], [1,2], [1,2], [2,2], [2,3], [3,3], [3,2], [4,2], [4,1] and [3,0] to show up. Instead the output is:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[0, 0]
[1, 1]
[0, 2]
[1, 1]
[2, 2]
[3, 1]
[2, 0]
[1, 0]
[1, 1]
[2, 0]
[3, 1]
[2, 2]"><pre class="notranslate"><code class="notranslate">[0, 0]
[1, 1]
[0, 2]
[1, 1]
[2, 2]
[3, 1]
[2, 0]
[1, 0]
[1, 1]
[2, 0]
[3, 1]
[2, 2]
</code></pre></div>
<p dir="auto">The problem gets clearer if the image is scaled by a positive value. Then, most of the structures are recognizable, but in the corners there are diagonals instead of harsh 90 degree angles. The diagonal neighboring pixels seems to be replaced with a diagonal line. So it seems to me that 8-connectivity is used as default. For my case, I'd like to use 4-connectivity. Is there any way to do this? Thanks-</p>
<h5 dir="auto">Steps to reproduce</h5>
<p dir="auto">Use above code.</p> | 0 |
<h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => latest pull from git ... 3.1.0-1483-g73a8fa8</li>
<li>Operating System / Platform => Ubuntu Linux 16.04, Kernel 4.7.5</li>
<li>Compiler => ?</li>
</ul>
<h5 dir="auto">In which part do you get the Issue</h5>
<p dir="auto">the cmake bit works (I think, no errors but ... I don't know enough about it)</p>
<p dir="auto">make</p>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">Similar error to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="152966521" data-permission-text="Title is private" data-url="https://github.com/opencv/opencv/issues/6500" data-hovercard-type="issue" data-hovercard-url="/opencv/opencv/issues/6500/hovercard" href="https://github.com/opencv/opencv/issues/6500">#6500</a> . I don't think it's a duplicate because it's using CUDA 8 and not 7.5<br>
Also I tried all the fixes mentioned in that one, but still have the same problem :(</p>
<p dir="auto">[ 2%] Building NVCC (Device) object modules/core/CMakeFiles/cuda_compile.dir/src/cuda/cuda_compile_generated_gpu_mat.cu.o<br>
In file included from /home/brian/opencv/opencv/modules/core/include/opencv2/core.hpp:3195:0,<br>
from /home/brian/opencv/opencv/modules/core/include/opencv2/core/cuda.hpp:51,<br>
from /home/brian/opencv/opencv/modules/core/src/cuda/gpu_mat.cu:51:<br>
/home/brian/anaconda2/include/opencv2/core/operations.hpp:72:0: warning: "CV_XADD" redefined<br>
#define CV_XADD <strong>sync_fetch_and_add<br>
...<br>
then a whole heap of<br>
/home/brian/anaconda2/include/opencv2/core/mat.hpp(__xxx</strong>): error: identifier <strong>xxx</strong> is undefined<br>
...<br>
Error limit reached.<br>
100 errors detected in the compilation of "/tmp/tmpxft_00003ea1_00000000-11_gpu_mat.compute_37.cpp1.ii".<br>
Compilation terminated.<br>
CMake Error at cuda_compile_generated_gpu_mat.cu.o.cmake:266 (message):<br>
Error generating file<br>
/home/brian/opencv/opencv/build/modules/core/CMakeFiles/cuda_compile.dir/src/cuda/./cuda_compile_generated_gpu_mat.cu.o</p>
<p dir="auto">modules/core/CMakeFiles/opencv_core.dir/build.make:402: recipe for target 'modules/core/CMakeFiles/cuda_compile.dir/src/cuda/cuda_compile_generated_gpu_mat.cu.o' failed<br>
make[2]: *** [modules/core/CMakeFiles/cuda_compile.dir/src/cuda/cuda_compile_generated_gpu_mat.cu.o] Error 1<br>
CMakeFiles/Makefile2:2086: recipe for target 'modules/core/CMakeFiles/opencv_core.dir/all' failed<br>
make[1]: *** [modules/core/CMakeFiles/opencv_core.dir/all] Error 2<br>
Makefile:160: recipe for target 'all' failed<br>
make: *** [all] Error 2</p>
<h5 dir="auto">Steps to reproduce</h5>
<p dir="auto">as per: <a href="https://blog.kickview.com/building-a-digits-dev-machine-on-ubuntu-16-04/" rel="nofollow">https://blog.kickview.com/building-a-digits-dev-machine-on-ubuntu-16-04/</a><br>
but without the python env</p>
<p dir="auto">git clone <a href="https://github.com/opencv/opencv.git">https://github.com/opencv/opencv.git</a><br>
git clone <a href="https://github.com/opencv/opencv_contrib.git">https://github.com/opencv/opencv_contrib.git</a><br>
cd opencv && mkdir build && cd build<br>
--install dependencies</p>
<p dir="auto">cmake<br>
-D CMAKE_BUILD_TYPE=RELEASE<br>
-D CMAKE_INSTALL_PREFIX=/usr/local<br>
-D WITH_CUDA=ON<br>
-D CUDA_ARCH_BIN="5.2"<br>
-D CUDA_ARCH_PTX="5.2"<br>
-D CUDA_GENERATION=Kepler<br>
-D ENABLE_FAST_MATH=1<br>
-D CUDA_FAST_MATH=1<br>
-D WITH_CUBLAS=1<br>
-D INSTALL_PYTHON_EXAMPLES=ON<br>
-D OPENCV_EXTRA_MODULES_PATH=../../opencv_contrib/modules<br>
-D BUILD_EXAMPLES=ON ..</p>
<p dir="auto">also added in the <code class="notranslate">-D_FORCE_INLINES</code> in <code class="notranslate">opencv/cmake/OpencvDetectCuda.cmake</code></p> | <h5 dir="auto">System information (version)</h5>
<ul dir="auto">
<li>OpenCV => recent 3.4 branch</li>
<li>Operating System / Platform => Win10 64bit</li>
<li>Compiler => Visual Studio 2015</li>
<li>CUDA => 10.0</li>
<li>GPU => GTX 1060</li>
</ul>
<p dir="auto">related <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="254396313" data-permission-text="Title is private" data-url="https://github.com/opencv/opencv/issues/9529" data-hovercard-type="issue" data-hovercard-url="/opencv/opencv/issues/9529/hovercard" href="https://github.com/opencv/opencv/issues/9529">#9529</a><br>
relaetd <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="124635309" data-permission-text="Title is private" data-url="https://github.com/opencv/opencv/issues/5915" data-hovercard-type="issue" data-hovercard-url="/opencv/opencv/issues/5915/hovercard" href="https://github.com/opencv/opencv/issues/5915">#5915</a></p>
<h5 dir="auto">Detailed description</h5>
<p dir="auto">I confirmed some sporadic test failures in "PyrLKOpticalFlow.Mat"<br>
I looked in the kernel, and realized there is a race condition. Synchronization was inside the <code class="notranslate">#if</code> so in some condition, race happens.<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/opencv/opencv/blob/0101fa789cde6c03bc58288a56e1d6ce7175cd48/modules/video/src/opencl/pyrlk.cl#L198-L210">opencv/modules/video/src/opencl/pyrlk.cl</a>
</p>
<p class="mb-0 color-fg-muted">
Lines 198 to 210
in
<a data-pjax="true" class="commit-tease-sha" href="/opencv/opencv/commit/0101fa789cde6c03bc58288a56e1d6ce7175cd48">0101fa7</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="L198" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="198"></td>
<td id="LC198" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">if</span> (<span class="pl-s1">tid</span> <span class="pl-c1"><</span> <span class="pl-c1">32</span>) </td>
</tr>
<tr class="border-0">
<td id="L199" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="199"></td>
<td id="LC199" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> { </td>
</tr>
<tr class="border-0">
<td id="L200" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="200"></td>
<td id="LC200" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-s1">smem1</span>[<span class="pl-s1">tid</span>] <span class="pl-c1">+=</span> <span class="pl-s1">smem1</span>[<span class="pl-s1">tid</span> <span class="pl-c1">+</span> <span class="pl-c1">32</span>]; </td>
</tr>
<tr class="border-0">
<td id="L201" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="201"></td>
<td id="LC201" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">#if</span> <span class="pl-c1">WAVE_SIZE</span> <span class="pl-c1"><</span> <span class="pl-c1">32</span> </td>
</tr>
<tr class="border-0">
<td id="L202" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="202"></td>
<td id="LC202" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> } </td>
</tr>
<tr class="border-0">
<td id="L203" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="203"></td>
<td id="LC203" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-en">barrier</span>(<span class="pl-c1">CLK_LOCAL_MEM_FENCE</span>); </td>
</tr>
<tr class="border-0">
<td id="L204" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="204"></td>
<td id="LC204" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">if</span> (<span class="pl-s1">tid</span> <span class="pl-c1"><</span> <span class="pl-c1">16</span>) </td>
</tr>
<tr class="border-0">
<td id="L205" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="205"></td>
<td id="LC205" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> { </td>
</tr>
<tr class="border-0">
<td id="L206" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="206"></td>
<td id="LC206" 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="L207" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="207"></td>
<td id="LC207" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> smem1[tid] += smem1[tid + 16]; </td>
</tr>
<tr class="border-0">
<td id="L208" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="208"></td>
<td id="LC208" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">#if</span> <span class="pl-c1">WAVE_SIZE</span> <span class="pl-c1"><</span><span class="pl-c1">16</span> </td>
</tr>
<tr class="border-0">
<td id="L209" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="209"></td>
<td id="LC209" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> } </td>
</tr>
<tr class="border-0">
<td id="L210" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="210"></td>
<td id="LC210" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-en">barrier</span>(<span class="pl-c1">CLK_LOCAL_MEM_FENCE</span>); </td>
</tr>
</tbody></table>
</div>
</div>
<p></p>
<p dir="auto">Now, I faced similar situation in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="318348315" data-permission-text="Title is private" data-url="https://github.com/opencv/opencv/issues/11409" data-hovercard-type="pull_request" data-hovercard-url="/opencv/opencv/pull/11409/hovercard" href="https://github.com/opencv/opencv/pull/11409">#11409</a><br>
I'm not sure where this <code class="notranslate">WAVE_SIZE</code> came from, but I removed it and modified the reduction part in more simple way.</p>
<p dir="auto">And during the investigation, I think there is also something wrong during the upload.<br>
Let me send my patch later.</p>
<h5 dir="auto">Steps to reproduce</h5>
<p dir="auto">Run <code class="notranslate">opencv_test_video</code> on above configuration</p> | 0 |
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[X] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[X] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
</code></pre></div>
<p dir="auto"><strong>Current behavior</strong><br>
If a component uses ViewEncapsulation.None then those styles are never removed from the DOM after the user navigates to a different route. For example if component Foo styles the <code class="notranslate"><p></code> tag with a red background, and then the user navigates to a different route, all <code class="notranslate"><p></code> tags on the next page will have a red background.</p>
<p dir="auto"><strong>Expected behavior</strong><br>
Styles should not outlive the component that defines them. A <code class="notranslate"><p></code> tag should look the same, no matter what the routing history is.</p>
<p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong></p>
<ol dir="auto">
<li>Create 2 routes "Foo" and "Bar".</li>
<li>Configure the main component for Foo so that it uses ViewEncapsulation.None.</li>
<li>Create a <code class="notranslate"><p></code> elements in both the Foo and Bar components.</li>
<li>In the component for Foo, create a style <code class="notranslate">p { background-color: #F00; }</code>.</li>
<li>In the main application component create some routerLinks to allow navigation between the Foo and Bar routes.</li>
<li>Run the application</li>
<li>Click on the link for "Foo". Note the red background on the <code class="notranslate"><p></code> element. This is expected.</li>
<li>Click on the link for "Bar". Note that the <code class="notranslate"><p></code> element is red. This is NOT expected.</li>
<li>Refresh the page.</li>
<li>Click on the link for "Bar". Note that this time the <code class="notranslate"><p></code> element is not red.</li>
<li>Navigate to "Foo" then go back to "Bar". The <code class="notranslate"><p></code> element is now red again. This is NOT expected.</li>
</ol>
<p dir="auto"><strong>Plnker</strong></p>
<ol dir="auto">
<li><a href="http://plnkr.co/edit/nG8gSD4Xc492ceIGlAeC?p=preview" rel="nofollow">Plnker</a></li>
<li>In the plunker, click on the "Foo" link first.</li>
<li>Then click on the "Bar" link. Note the red <code class="notranslate"><p></code> tag. This is NOT expected.</li>
<li>Refresh the page, click on the "Foo" link. Note the red <code class="notranslate"><p></code> tag. This is expected.</li>
<li>Click on the "Bar" link. Then click on "Foo" again. Note the red <code class="notranslate"><p></code> tag. This is NOT expected.</li>
</ol>
<p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong><br>
For every page/component that is rendered into the <code class="notranslate"><router-outlet></code>, I will configure it so that it uses ViewEncapsulation.None. This allows me define semi-global styles for individual pages. So for example if I want all <code class="notranslate"><input></code> tags to have 200px width only on page Foo, I can just set the style in the FooComponent stylesheet.</p>
<p dir="auto">I shouldn't have to worry that styles on page Foo can bleed over into page Bar. Worse is that this effect is entirely dependent on the exact order that the user navigates around the application. For any non-trivially sized application, this represents an unreasonable testing burden. For the moment I have decided that it's best that I don't use the angular router when navigating between "feature pages" and fallback to conventional <code class="notranslate"><a></code> links.</p>
<p dir="auto"><strong>Please tell us about your environment:</strong><br>
Windows 10. Angular CLI and Notepad++, npm</p>
<ul dir="auto">
<li>
<p dir="auto"><strong>Angular version:</strong> 2.0.X<br>
Angular 4.1.1. This may impact older versions, but I wouldn't have seen it until today because I normally don't navigate between feature pages in my application without performing a full page load. I just happened to forget to do it this one time.</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, Firefox, Edge. Haven't tested others.</p>
</li>
<li>
<p dir="auto"><strong>Language:</strong> [all | TypeScript X.X | ES6/7 | ES5]<br>
TypeScript</p>
</li>
<li>
<p dir="auto"><strong>Node (for AoT issues):</strong> <code class="notranslate">node --version</code> =</p>
</li>
</ul> | <p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ X ] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[ X ] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
</code></pre></div>
<p dir="auto"><strong>Current behavior</strong></p>
<p dir="auto">Given a component with <code class="notranslate">encapsulation</code> set to <code class="notranslate">none</code>, if no instances exist on the page (such as <code class="notranslate">*ngIf="false"</code>), its styles are not applied to the page. Once it does exist (that <code class="notranslate">*ngIf</code> becomes true), its styles are applied to the whole page. All of this is as expected.</p>
<p dir="auto">However, if this <code class="notranslate">*ngIf</code> is set back to false, these styles continue to be applied to the page.</p>
<p dir="auto"><strong>Expected behavior</strong></p>
<p dir="auto">If at least one instance of this component exists on a page, its styles should be applied to the page. If no instances of this component exist on a page, its styles should not be applied to the page (or should be removed if previously applied).</p>
<p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong></p>
<p dir="auto"><a href="http://plnkr.co/edit/WEOWO8vl3UyoqlutoB35?p=preview" rel="nofollow">http://plnkr.co/edit/WEOWO8vl3UyoqlutoB35?p=preview</a></p>
<p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong></p>
<p dir="auto">This could be used for a component to override surrounding styles (which it shouldn't be doing if it doesn't exist on the page) or for easy conditional restyling of a page (maybe running an experiment?).</p>
<p dir="auto"><strong>Please tell us about your environment:</strong></p>
<p dir="auto">Linux. I just wrote this in Plunker.</p>
<ul dir="auto">
<li>
<p dir="auto"><strong>Angular version:</strong> 2.4.5</p>
</li>
<li>
<p dir="auto"><strong>Browser:</strong> I am using Chrome Version 55.0.2883.105 (64-bit), but I suspect this applies to all browsers.</p>
</li>
<li>
<p dir="auto"><strong>Language:</strong> TypeScript 2.0.2</p>
</li>
</ul> | 1 |
<p dir="auto">Taking example 2 from the original issue (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="109143324" data-permission-text="Title is private" data-url="https://github.com/microsoft/TypeScript/issues/5039" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript/issues/5039/hovercard" href="https://github.com/microsoft/TypeScript/issues/5039">#5039</a>):</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="projectRoot
βββ folder1
β βββ file1.ts
β βββ file2.ts
βββ generated
β βββ folder1
β βββ folder2
β βββ file3.ts (Contains: import 'folder1/file2';)
βββ tsconfig.json (with "baseUrl": ".")"><pre class="notranslate"><code class="notranslate">projectRoot
βββ folder1
β βββ file1.ts
β βββ file2.ts
βββ generated
β βββ folder1
β βββ folder2
β βββ file3.ts (Contains: import 'folder1/file2';)
βββ tsconfig.json (with "baseUrl": ".")
</code></pre></div>
<p dir="auto">When doing...</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import 'folder1/file2';"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s">'folder1/file2'</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">...in <code class="notranslate">file3.ts</code> it current compiles to the same thing as above. Would it be possible if we could add a compiler option or some way that would convert this to the relative path? So it would transpile it to:</p>
<div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import './../../folder1/file2';"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s">'./../../folder1/file2'</span><span class="pl-kos">;</span></pre></div>
<p dir="auto">That way the paths don't have to be managed in two places. I couldn't find this discussed anywhere and didn't want to clutter the original issue so I'm opening this here.</p> | <p dir="auto">In TypeScript 1.9.0-dev.20160426 I tried:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import * as Promise from 'bluebird';
async function test() {
await Promise.delay(1000);
}
test();"><pre class="notranslate"><code class="notranslate">import * as Promise from 'bluebird';
async function test() {
await Promise.delay(1000);
}
test();
</code></pre></div>
<p dir="auto">The compiler reports:</p>
<p dir="auto"><code class="notranslate">error TS2529: Duplicate identifier 'Promise'. Compiler reserves name 'Promise' in top level scope of a module containing async functions.</code></p>
<p dir="auto">Especially since this is purely for Node.js, I'd like to use Bluebird promises for their debuggability and import them as <code class="notranslate">Promise</code> instead of some other name.</p>
<p dir="auto">Could I provide my own <code class="notranslate">__awaiter</code> or could the default one use the imported <code class="notranslate">Promise</code>?</p> | 0 |
<h3 dir="auto">Apache Airflow version</h3>
<p dir="auto">2.3.0</p>
<h3 dir="auto">What happened</h3>
<p dir="auto">Here i provide steps to reproduce this.</p>
<p dir="auto">Goal of this: to describe how to reproduce the "Failed to Adopt pod" error condition.</p>
<p dir="auto">The DAG->step Described Below should be of type KubernetesPodOperator</p>
<p dir="auto">NOTE: under normal operation,<br>
(where the MAIN_AIRFLOW_POD is never recycled by k8s, we will never see this edge-case)<br>
(it is only when the workerPod is still running, but the MAIN_AIRFLOW_POD is suddenly restarted/stopped)<br>
(that we would see orphan->workerPods)</p>
<p dir="auto">1] Implement a contrived-DAG, with a single step -> which is long-running (e.g. 6 minutes)<br>
2] Deploy your <a class="issue-link js-issue-link notranslate" rel="noopener noreferrer nofollow" href="https://issues.apache.org/jira/browse/AIRFLOW-2">airflow-2</a>.1.4 / airfow-2.3.0 together with the contrived-DAG<br>
3] Run your contrived-DAG.<br>
4] in the middle of running the single-step, check via "kubectl" that your Kubernetes->workerPod has been created / running<br>
5] while workerPod still running, do "kubectl delete pod <OF_MAIN_AIRFLOW_POD>". This will mean that the workerPod becomes an orphan.<br>
6] the workerPod still continues to run through to completion. after which the K8S->status of the pod will be Completed, however the pod doesn't shut down itself.<br>
7] "kubectl" start up a new <MAIN_AIRFLOW_POD> so the web-ui is running again.<br>
8] MAIN_AIRFLOW_POD->webUi - Run your contrived-DAG again<br>
9] while the contrived-DAG is starting/tryingToStart etc, you will see in the logs printed out "Failed to adopt pod" -> with 422 error code.</p>
<p dir="auto">The step-9 with the error message, you will find two appearances of this error msg in the <a class="issue-link js-issue-link notranslate" rel="noopener noreferrer nofollow" href="https://issues.apache.org/jira/browse/AIRFLOW-2">airflow-2</a>.1.4, <a class="issue-link js-issue-link notranslate" rel="noopener noreferrer nofollow" href="https://issues.apache.org/jira/browse/AIRFLOW-2">airflow-2</a>.3.0 source-code.<br>
The step-7 may also - general logging from the MAIN_APP - may also output the "Failed to adopt pod" error message also.</p>
<h3 dir="auto">What you think should happen instead</h3>
<p dir="auto">On previous versions of airflow e.g. 1.10.x, the orphan-workerPods would be adopted by the 2nd run-time of the airflowMainApp and either used to continue the same DAG and/or cleared away when complete.</p>
<p dir="auto">This is not happening with the newer airflow 2.1.4 / 2.3.0 (presumably because the code changed), and upon the 2nd run-time of the airflowMainApp - it would seem to try to adopt-workerPod but fails at that point ("Failed to adopt pod" in the logs and hence it cannot clear away orphan pods).</p>
<p dir="auto">Given this is an edge-case only, (i.e. we would not expect k8s to be recycling the main airflowApp/pod anyway), it doesn't seem totally urgent bug. However, the only reason for me raising this issue with yourselves is that given any k8s->namespace, in particular in PROD, over time (e.g. 1 month?) the namespace will slowly be being filled up with orphanPods and somebody would need to manually log-in to delete old pods.</p>
<h3 dir="auto">How to reproduce</h3>
<p dir="auto">Here i provide steps to reproduce this.</p>
<p dir="auto">Goal of this: to describe how to reproduce the "Failed to Adopt pod" error condition.</p>
<p dir="auto">The DAG->step Described Below should be of type KubernetesPodOperator</p>
<p dir="auto">NOTE: under normal operation,<br>
(where the MAIN_AIRFLOW_POD is never recycled by k8s, we will never see this edge-case)<br>
(it is only when the workerPod is still running, but the MAIN_AIRFLOW_POD is suddenly restarted/stopped)<br>
(that we would see orphan->workerPods)</p>
<p dir="auto">1] Implement a contrived-DAG, with a single step -> which is long-running (e.g. 6 minutes)<br>
2] Deploy your <a class="issue-link js-issue-link notranslate" rel="noopener noreferrer nofollow" href="https://issues.apache.org/jira/browse/AIRFLOW-2">airflow-2</a>.1.4 / airfow-2.3.0 together with the contrived-DAG<br>
3] Run your contrived-DAG.<br>
4] in the middle of running the single-step, check via "kubectl" that your Kubernetes->workerPod has been created / running<br>
5] while workerPod still running, do "kubectl delete pod <OF_MAIN_AIRFLOW_POD>". This will mean that the workerPod becomes an orphan.<br>
6] the workerPod still continues to run through to completion. after which the K8S->status of the pod will be Completed, however the pod doesn't shut down itself.<br>
7] "kubectl" start up a new <MAIN_AIRFLOW_POD> so the web-ui is running again.<br>
8] MAIN_AIRFLOW_POD->webUi - Run your contrived-DAG again<br>
9] while the contrived-DAG is starting/tryingToStart etc, you will see in the logs printed out "Failed to adopt pod" -> with 422 error code.</p>
<p dir="auto">The step-9 with the error message, you will find two appearances of this error msg in the <a class="issue-link js-issue-link notranslate" rel="noopener noreferrer nofollow" href="https://issues.apache.org/jira/browse/AIRFLOW-2">airflow-2</a>.1.4, <a class="issue-link js-issue-link notranslate" rel="noopener noreferrer nofollow" href="https://issues.apache.org/jira/browse/AIRFLOW-2">airflow-2</a>.3.0 source-code.<br>
The step-7 may also - general logging from the MAIN_APP - may also output the "Failed to adopt pod" error message also.</p>
<h3 dir="auto">Operating System</h3>
<p dir="auto">kubernetes</p>
<h3 dir="auto">Versions of Apache Airflow Providers</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Deployment</h3>
<p dir="auto">Other 3rd-party Helm chart</p>
<h3 dir="auto">Deployment details</h3>
<p dir="auto">nothing special.</p>
<p dir="auto">it (CI/CD pipeline) builds the app. using requirements.txt to pull-in all the required python dependencies (including there is a dependency for the <a class="issue-link js-issue-link notranslate" rel="noopener noreferrer nofollow" href="https://issues.apache.org/jira/browse/AIRFLOW-2">airflow-2</a>.1.4 / 2.3.0)</p>
<p dir="auto">it (CI/CD pipeline) packages the app as an ECR image & then deploy directly to k8s namespace.</p>
<h3 dir="auto">Anything else</h3>
<p dir="auto">this is 100% reproducible each & every time.<br>
i have tested this multiple times.</p>
<p dir="auto">also - i tested this on the old <a class="issue-link js-issue-link notranslate" rel="noopener noreferrer nofollow" href="https://issues.apache.org/jira/browse/AIRFLOW-1">airflow-1</a>.10.x a couple of times to verify that the bug did not exist previously</p>
<h3 dir="auto">Are you willing to submit PR?</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Yes I am willing to submit a PR!</li>
</ul>
<h3 dir="auto">Code of Conduct</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow this project's <a href="https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a></li>
</ul> | <p dir="auto"><strong>Description</strong></p>
<p dir="auto">Add dependencies with "on-build" feature of Docker build.</p>
<p dir="auto"><strong>Use case / motivation</strong></p>
<p dir="auto">Some dependencies can be added easily using on-build feature of Docker build.</p> | 0 |
<p dir="auto">The current exception is mess and lots of duplicated usage.<br>
It is necessary to refine and clear them.</p> | <blockquote>
<h2 dir="auto">Question</h2>
<p dir="auto">οΌdefault-data-source-nameοΌtable join οΌbroadcast-tableοΌ error</p>
<h2 dir="auto">Content</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<sharding:standard-strategy id="databaseStrategy" sharding-column="buss_num" precise-algorithm-ref="dbShardingRule" />
<sharding:data-source id="shadingDataSource">
<sharding:props>
<prop key="sql.show">true</prop>
</sharding:props>
<sharding:sharding-rule data-source-names="ds0,ds1" default-data-source-name="ds0">
<sharding:table-rules>
<sharding:table-rule logic-table="user" actual-data-nodes="ds$->{0..1}.user"
database-strategy-ref="databaseStrategy" />
<sharding:table-rule logic-table="classes" actual-data-nodes="ds$->{0..1}.classes"
database-strategy-ref="databaseStrategy" />
<sharding:table-rule logic-table="mark" actual-data-nodes="ds$->{0..1}.mark"
database-strategy-ref="databaseStrategy" />
</sharding:table-rules>
<sharding:binding-table-rules>
<sharding:binding-table-rule logic-tables="user,classes,mark" />
</sharding:binding-table-rules>
<sharding:broadcast-table-rules >
<sharding:broadcast-table-rule table="school_config"/>
</sharding:broadcast-table-rules>
</sharding:sharding-rule>
</sharding:data-source>
exception:
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException:
### Error updating database. Cause: org.apache.shardingsphere.core.exception.ShardingException: Cannot find table rule and default data source with logic tables: '[inter_user , school_config]'
### The error may involve com.inter_user .deleteImportData-Inline
### The error occurred while setting parameters
### SQL: delete from inter_user where date = ? and school IN (SELECT SLAVE_ID FROM school_config WHERE PARENT_ID = ?)
### Cause: org.apache.shardingsphere.core.exception.ShardingException: Cannot find table rule and default data source with logic tables: '[inter_user , school_config ]'
versionοΌ
org.apache.shardingsphere
sharding-jdbc-core
4.0.0-RC2
how to configureοΌcan you tell me the question?thank you!"><pre class="notranslate"><code class="notranslate"><sharding:standard-strategy id="databaseStrategy" sharding-column="buss_num" precise-algorithm-ref="dbShardingRule" />
<sharding:data-source id="shadingDataSource">
<sharding:props>
<prop key="sql.show">true</prop>
</sharding:props>
<sharding:sharding-rule data-source-names="ds0,ds1" default-data-source-name="ds0">
<sharding:table-rules>
<sharding:table-rule logic-table="user" actual-data-nodes="ds$->{0..1}.user"
database-strategy-ref="databaseStrategy" />
<sharding:table-rule logic-table="classes" actual-data-nodes="ds$->{0..1}.classes"
database-strategy-ref="databaseStrategy" />
<sharding:table-rule logic-table="mark" actual-data-nodes="ds$->{0..1}.mark"
database-strategy-ref="databaseStrategy" />
</sharding:table-rules>
<sharding:binding-table-rules>
<sharding:binding-table-rule logic-tables="user,classes,mark" />
</sharding:binding-table-rules>
<sharding:broadcast-table-rules >
<sharding:broadcast-table-rule table="school_config"/>
</sharding:broadcast-table-rules>
</sharding:sharding-rule>
</sharding:data-source>
exception:
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException:
### Error updating database. Cause: org.apache.shardingsphere.core.exception.ShardingException: Cannot find table rule and default data source with logic tables: '[inter_user , school_config]'
### The error may involve com.inter_user .deleteImportData-Inline
### The error occurred while setting parameters
### SQL: delete from inter_user where date = ? and school IN (SELECT SLAVE_ID FROM school_config WHERE PARENT_ID = ?)
### Cause: org.apache.shardingsphere.core.exception.ShardingException: Cannot find table rule and default data source with logic tables: '[inter_user , school_config ]'
versionοΌ
org.apache.shardingsphere
sharding-jdbc-core
4.0.0-RC2
how to configureοΌcan you tell me the question?thank you!
</code></pre></div>
</blockquote> | 0 |
<h3 dir="auto">System information</h3>
<ul dir="auto">
<li>I am using the stock DNNClassifier in contrib/learn. The warning is present in every instance where DNNClassifier is called.</li>
<li>Present in OSX (Mac OS 10.12.5) and Linux (Ubuntu 16.04)</li>
<li><strong>TensorFlow installed from (source or binary)</strong>: Present both on binary and when compiled from source</li>
<li><strong>TensorFlow version (use command below)</strong>: v1.2.0 (release) and v1.2.0-1371-g97af82d53 1.2.0</li>
<li><strong>Bazel version (if compiling from source)</strong>: 0.5.1</li>
<li><strong>CUDA/cuDNN version</strong>: N/A</li>
<li><strong>GPU model and memory</strong>: N/A</li>
<li><strong>Exact command to reproduce</strong>: Call the DNN classifier as indicated in <a href="https://www.tensorflow.org/api_docs/python/tf/contrib/learn/DNNClassifier" rel="nofollow">https://www.tensorflow.org/api_docs/python/tf/contrib/learn/DNNClassifier</a></li>
</ul>
<h3 dir="auto">Describe the problem</h3>
<p dir="auto">A warning for a deprecated feature is cluttering the logs when using the DNNClassifier. It is due to the use of the deprecated feature scalar_summary while logging. While this has been deprecated in 2016-11-30, it is still used in tensorflow/contrib/learn/python/learn/estimators/head.py:642<br>
This bug report request for updating the the current tf.summary.scalar, as indicated. The usability of the product is much improved as a consequence.</p>
<h3 dir="auto">Logs</h3>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="WARNING:tensorflow:From /opt/local/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/tensorflow/contrib/learn/python/learn/estimators/head.py:642: scalar_summary (from tensorflow.python.ops.logging_ops) is deprecated and will be removed after 2016-11-30.
Instructions for updating:
Please switch to tf.summary.scalar. Note that tf.summary.scalar uses the node name instead of the tag. This means that TensorFlow will automatically de-duplicate summary names based on the scope they are created in. Also, passing a tensor or list of tags to a scalar summary op is no longer supported.
"><pre class="notranslate"><code class="notranslate">WARNING:tensorflow:From /opt/local/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/tensorflow/contrib/learn/python/learn/estimators/head.py:642: scalar_summary (from tensorflow.python.ops.logging_ops) is deprecated and will be removed after 2016-11-30.
Instructions for updating:
Please switch to tf.summary.scalar. Note that tf.summary.scalar uses the node name instead of the tag. This means that TensorFlow will automatically de-duplicate summary names based on the scope they are created in. Also, passing a tensor or list of tags to a scalar summary op is no longer supported.
</code></pre></div>
<h3 dir="auto">Source code</h3>
<p dir="auto">tensorflow/contrib/learn/python/learn/estimators/head.py:642</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" # Uses the deprecated API to set the tag explicitly.
# Without it, training and eval losses will show up in different graphs.
logging_ops.scalar_summary(
_summary_key(head_name, mkey.LOSS), weighted_average_loss)"><pre class="notranslate"><code class="notranslate"> # Uses the deprecated API to set the tag explicitly.
# Without it, training and eval losses will show up in different graphs.
logging_ops.scalar_summary(
_summary_key(head_name, mkey.LOSS), weighted_average_loss)
</code></pre></div> | <p dir="auto">In the Updates section of the new TensorFlow website, two news have the same text:</p>
<p dir="auto"><a href="https://www.tensorflow.org/" rel="nofollow"><img src="https://cloud.githubusercontent.com/assets/1140359/21177890/64615340-c1ed-11e6-82bc-c440ebc9dfd2.png" alt="image" style="max-width: 100%;"></a></p> | 0 |
<p dir="auto">Hi, I am observing that <code class="notranslate">deno bundle</code> does not bundle imports that have the <code class="notranslate">@deno-types</code> annotation. This may be related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="621722537" data-permission-text="Title is private" data-url="https://github.com/denoland/deno/issues/5665" data-hovercard-type="issue" data-hovercard-url="/denoland/deno/issues/5665/hovercard" href="https://github.com/denoland/deno/issues/5665">#5665</a>.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="// @deno-types="https://unpkg.com/rollup@2.16.0/dist/rollup.d.ts"
import { rollup } from 'https://unpkg.com/rollup@2.16.0/dist/es/rollup.browser.js'
console.log(rollup)"><pre class="notranslate"><code class="notranslate">// @deno-types="https://unpkg.com/rollup@2.16.0/dist/rollup.d.ts"
import { rollup } from 'https://unpkg.com/rollup@2.16.0/dist/es/rollup.browser.js'
console.log(rollup)
</code></pre></div>
<p dir="auto"><code class="notranslate">deno bundle test.js > out.js && deno run out.js</code></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="error: Uncaught TypeError: Cannot read property 'rollup' of undefined
console.log(rollup_browser_js_1.rollup);"><pre class="notranslate"><code class="notranslate">error: Uncaught TypeError: Cannot read property 'rollup' of undefined
console.log(rollup_browser_js_1.rollup);
</code></pre></div>
<p dir="auto">If I omit the <code class="notranslate">@deno-types</code> annotation, the <code class="notranslate">out.js</code> file is significantly larger and it works fine.</p> | <h2 dir="auto">Steps to reproduce</h2>
<p dir="auto">Run <code class="notranslate">deno bundle https://deno.land/x/once/index.js</code></p>
<h2 dir="auto">Expected behavior</h2>
<p dir="auto">It prints a bundled JavaScript code</p>
<h2 dir="auto">Actual behavior</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="error TS5012: Cannot read file 'https://deno.land/x/once/index.js': Error: assert.
βΊ
error TS6053: File 'https://deno.land/x/once/index.js' not found.
βΊ
Found 2 errors."><pre class="notranslate"><code class="notranslate">error TS5012: Cannot read file 'https://deno.land/x/once/index.js': Error: assert.
βΊ
error TS6053: File 'https://deno.land/x/once/index.js' not found.
βΊ
Found 2 errors.
</code></pre></div>
<hr>
<p dir="auto">I didn't try to bundle remote URL at first, instead, I tried bundling a local file (<code class="notranslate">deps.ts</code>) that import remote JS file. No compile errors occur, but a runtime error (cannot read property of <code class="notranslate">undefined</code>) was thrown when attempting to run it in the browser and in Node.js.</p> | 1 |
<p dir="auto">0 info it worked if it ends with ok<br>
1 verbose cli [<br>
1 verbose cli 'C:\Program Files\nodejs\node.exe',<br>
1 verbose cli 'C:\Program Files\nodejs\node_modules\npm\bin\npm-cli.js',<br>
1 verbose cli 'install',<br>
1 verbose cli '--loglevel',<br>
1 verbose cli 'error'<br>
1 verbose cli ]<br>
2 info using npm@6.14.11<br>
3 info using node@v14.16.0<br>
4 verbose npm-session 3351f21af8ce3871<br>
5 silly install runPreinstallTopLevelLifecycles<br>
6 silly preinstall vue-todo@0.1.0<br>
7 info lifecycle vue-todo@0.1.0~preinstall: vue-todo@0.1.0<br>
8 silly install loadCurrentTree<br>
9 silly install readLocalPackageData<br>
10 timing stage:loadCurrentTree Completed in 8ms<br>
11 silly install loadIdealTree<br>
12 silly install cloneCurrentTreeToIdealTree<br>
13 timing stage:loadIdealTree:cloneCurrentTree Completed in 0ms<br>
14 silly install loadShrinkwrap<br>
15 timing stage:loadIdealTree:loadShrinkwrap Completed in 1ms<br>
16 silly install loadAllDepsIntoIdealTree<br>
17 http fetch GET 200 <a href="https://registry.npmjs.org/@vue%2fcli-plugin-babel" rel="nofollow">https://registry.npmjs.org/@vue%2fcli-plugin-babel</a> 1076ms<br>
18 http fetch GET 200 <a href="https://registry.npmjs.org/@vue/cli-plugin-babel/-/cli-plugin-babel-4.5.11.tgz" rel="nofollow">https://registry.npmjs.org/@vue/cli-plugin-babel/-/cli-plugin-babel-4.5.11.tgz</a> 273ms<br>
19 silly pacote range manifest for @vue/cli-plugin-babel@~4.5.0 fetched in 1364ms<br>
20 http fetch GET 200 <a href="https://registry.npmjs.org/@vue%2fcli-service" rel="nofollow">https://registry.npmjs.org/@vue%2fcli-service</a> 1507ms<br>
21 http fetch GET 200 <a href="https://registry.npmjs.org/@vue%2fbabel-preset-app" rel="nofollow">https://registry.npmjs.org/@vue%2fbabel-preset-app</a> 387ms<br>
22 http fetch GET 200 <a href="https://registry.npmjs.org/@vue/cli-service/-/cli-service-4.5.11.tgz" rel="nofollow">https://registry.npmjs.org/@vue/cli-service/-/cli-service-4.5.11.tgz</a> 236ms<br>
23 silly pacote range manifest for @vue/cli-service@~4.5.0 fetched in 1757ms<br>
24 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fcore" rel="nofollow">https://registry.npmjs.org/@babel%2fcore</a> 608ms (from cache)<br>
25 http fetch GET 200 <a href="https://registry.npmjs.org/thread-loader" rel="nofollow">https://registry.npmjs.org/thread-loader</a> 606ms<br>
26 http fetch GET 200 <a href="https://registry.npmjs.org/cache-loader" rel="nofollow">https://registry.npmjs.org/cache-loader</a> 609ms<br>
27 silly pacote range manifest for @babel/core@^7.11.0 fetched in 615ms<br>
28 http fetch GET 304 <a href="https://registry.npmjs.org/@vue%2fcli-shared-utils" rel="nofollow">https://registry.npmjs.org/@vue%2fcli-shared-utils</a> 623ms (from cache)<br>
29 silly pacote range manifest for @vue/cli-shared-utils@^4.5.11 fetched in 625ms<br>
30 http fetch GET 200 <a href="https://registry.npmjs.org/@vue/babel-preset-app/-/babel-preset-app-4.5.11.tgz" rel="nofollow">https://registry.npmjs.org/@vue/babel-preset-app/-/babel-preset-app-4.5.11.tgz</a> 420ms<br>
31 http fetch GET 200 <a href="https://registry.npmjs.org/@intervolga%2foptimize-cssnano-plugin" rel="nofollow">https://registry.npmjs.org/@intervolga%2foptimize-cssnano-plugin</a> 405ms<br>
32 http fetch GET 200 <a href="https://registry.npmjs.org/babel-loader" rel="nofollow">https://registry.npmjs.org/babel-loader</a> 821ms<br>
33 silly pacote range manifest for @vue/babel-preset-app@^4.5.11 fetched in 825ms<br>
34 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fminimist" rel="nofollow">https://registry.npmjs.org/@types%2fminimist</a> 223ms<br>
35 http fetch GET 200 <a href="https://registry.npmjs.org/cache-loader/-/cache-loader-4.1.0.tgz" rel="nofollow">https://registry.npmjs.org/cache-loader/-/cache-loader-4.1.0.tgz</a> 222ms<br>
36 http fetch GET 200 <a href="https://registry.npmjs.org/thread-loader/-/thread-loader-2.1.3.tgz" rel="nofollow">https://registry.npmjs.org/thread-loader/-/thread-loader-2.1.3.tgz</a> 227ms<br>
37 silly pacote range manifest for cache-loader@^4.1.0 fetched in 841ms<br>
38 silly pacote range manifest for thread-loader@^2.1.3 fetched in 842ms<br>
39 http fetch GET 200 <a href="https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.2.tgz" rel="nofollow">https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.2.tgz</a> 220ms<br>
40 silly pacote range manifest for babel-loader@^8.1.0 fetched in 1056ms<br>
41 http fetch GET 200 <a href="https://registry.npmjs.org/@types/minimist/-/minimist-1.2.1.tgz" rel="nofollow">https://registry.npmjs.org/@types/minimist/-/minimist-1.2.1.tgz</a> 219ms<br>
42 http fetch GET 200 <a href="https://registry.npmjs.org/@soda%2ffriendly-errors-webpack-plugin" rel="nofollow">https://registry.npmjs.org/@soda%2ffriendly-errors-webpack-plugin</a> 660ms<br>
43 silly pacote range manifest for @types/minimist@^1.2.0 fetched in 458ms<br>
44 http fetch GET 200 <a href="https://registry.npmjs.org/@intervolga/optimize-cssnano-plugin/-/optimize-cssnano-plugin-1.0.6.tgz" rel="nofollow">https://registry.npmjs.org/@intervolga/optimize-cssnano-plugin/-/optimize-cssnano-plugin-1.0.6.tgz</a> 259ms<br>
45 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fwebpack-dev-server" rel="nofollow">https://registry.npmjs.org/@types%2fwebpack-dev-server</a> 249ms<br>
46 http fetch GET 200 <a href="https://registry.npmjs.org/@soda%2fget-current-script" rel="nofollow">https://registry.npmjs.org/@soda%2fget-current-script</a> 667ms<br>
47 silly pacote range manifest for @intervolga/optimize-cssnano-plugin@^1.0.5 fetched in 673ms<br>
48 http fetch GET 200 <a href="https://registry.npmjs.org/webpack" rel="nofollow">https://registry.npmjs.org/webpack</a> 48751ms<br>
49 http fetch GET 200 <a href="https://registry.npmjs.org/webpack/-/webpack-4.46.0.tgz" rel="nofollow">https://registry.npmjs.org/webpack/-/webpack-4.46.0.tgz</a> 1071ms<br>
50 silly pacote range manifest for webpack@^4.0.0 fetched in 49848ms<br>
51 http fetch GET 200 <a href="https://registry.npmjs.org/@vue%2fweb-component-wrapper" rel="nofollow">https://registry.npmjs.org/@vue%2fweb-component-wrapper</a> 311ms<br>
52 http fetch GET 200 <a href="https://registry.npmjs.org/@vue/web-component-wrapper/-/web-component-wrapper-1.3.0.tgz" rel="nofollow">https://registry.npmjs.org/@vue/web-component-wrapper/-/web-component-wrapper-1.3.0.tgz</a> 197ms<br>
53 silly pacote range manifest for @vue/web-component-wrapper@^1.2.0 fetched in 513ms<br>
54 http fetch GET 200 <a href="https://registry.npmjs.org/acorn" rel="nofollow">https://registry.npmjs.org/acorn</a> 373ms<br>
55 http fetch GET 200 <a href="https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz" rel="nofollow">https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz</a> 712ms<br>
56 silly pacote range manifest for acorn@^7.4.0 fetched in 1092ms<br>
57 http fetch GET 200 <a href="https://registry.npmjs.org/acorn-walk" rel="nofollow">https://registry.npmjs.org/acorn-walk</a> 163ms<br>
58 http fetch GET 200 <a href="https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz" rel="nofollow">https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz</a> 229ms<br>
59 silly pacote range manifest for acorn-walk@^7.1.1 fetched in 397ms<br>
60 http fetch GET 200 <a href="https://registry.npmjs.org/address" rel="nofollow">https://registry.npmjs.org/address</a> 206ms<br>
61 http fetch GET 200 <a href="https://registry.npmjs.org/address/-/address-1.1.2.tgz" rel="nofollow">https://registry.npmjs.org/address/-/address-1.1.2.tgz</a> 205ms<br>
62 silly pacote range manifest for address@^1.1.2 fetched in 418ms<br>
63 http fetch GET 200 <a href="https://registry.npmjs.org/autoprefixer" rel="nofollow">https://registry.npmjs.org/autoprefixer</a> 452ms<br>
64 http fetch GET 200 <a href="https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.6.tgz" rel="nofollow">https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.6.tgz</a> 243ms<br>
65 silly pacote range manifest for autoprefixer@^9.8.6 fetched in 702ms<br>
66 http fetch GET 304 <a href="https://registry.npmjs.org/browserslist" rel="nofollow">https://registry.npmjs.org/browserslist</a> 185ms (from cache)<br>
67 silly pacote range manifest for browserslist@^4.12.0 fetched in 188ms<br>
68 http fetch GET 200 <a href="https://registry.npmjs.org/case-sensitive-paths-webpack-plugin" rel="nofollow">https://registry.npmjs.org/case-sensitive-paths-webpack-plugin</a> 223ms<br>
69 http fetch GET 200 <a href="https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz" rel="nofollow">https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz</a> 210ms<br>
70 silly pacote range manifest for case-sensitive-paths-webpack-plugin@^2.3.0 fetched in 442ms<br>
71 http fetch GET 200 <a href="https://registry.npmjs.org/cli-highlight" rel="nofollow">https://registry.npmjs.org/cli-highlight</a> 221ms<br>
72 http fetch GET 200 <a href="https://registry.npmjs.org/cli-highlight/-/cli-highlight-2.1.10.tgz" rel="nofollow">https://registry.npmjs.org/cli-highlight/-/cli-highlight-2.1.10.tgz</a> 217ms<br>
73 silly pacote range manifest for cli-highlight@^2.1.4 fetched in 443ms<br>
74 http fetch GET 200 <a href="https://registry.npmjs.org/clipboardy" rel="nofollow">https://registry.npmjs.org/clipboardy</a> 216ms<br>
75 http fetch GET 200 <a href="https://registry.npmjs.org/clipboardy/-/clipboardy-2.3.0.tgz" rel="nofollow">https://registry.npmjs.org/clipboardy/-/clipboardy-2.3.0.tgz</a> 737ms<br>
76 silly pacote range manifest for clipboardy@^2.3.0 fetched in 959ms<br>
77 http fetch GET 304 <a href="https://registry.npmjs.org/cliui" rel="nofollow">https://registry.npmjs.org/cliui</a> 141ms (from cache)<br>
78 silly pacote range manifest for cliui@^6.0.0 fetched in 143ms<br>
79 http fetch GET 200 <a href="https://registry.npmjs.org/copy-webpack-plugin" rel="nofollow">https://registry.npmjs.org/copy-webpack-plugin</a> 249ms<br>
80 http fetch GET 200 <a href="https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-5.1.2.tgz" rel="nofollow">https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-5.1.2.tgz</a> 193ms<br>
81 silly pacote range manifest for copy-webpack-plugin@^5.1.1 fetched in 448ms<br>
82 http fetch GET 200 <a href="https://registry.npmjs.org/css-loader" rel="nofollow">https://registry.npmjs.org/css-loader</a> 440ms<br>
83 http fetch GET 200 <a href="https://registry.npmjs.org/css-loader/-/css-loader-3.6.0.tgz" rel="nofollow">https://registry.npmjs.org/css-loader/-/css-loader-3.6.0.tgz</a> 211ms<br>
84 silly pacote range manifest for css-loader@^3.5.3 fetched in 660ms<br>
85 http fetch GET 200 <a href="https://registry.npmjs.org/cssnano" rel="nofollow">https://registry.npmjs.org/cssnano</a> 439ms<br>
86 http fetch GET 200 <a href="https://registry.npmjs.org/cssnano/-/cssnano-4.1.10.tgz" rel="nofollow">https://registry.npmjs.org/cssnano/-/cssnano-4.1.10.tgz</a> 215ms<br>
87 silly pacote range manifest for cssnano@^4.1.10 fetched in 661ms<br>
88 http fetch GET 304 <a href="https://registry.npmjs.org/debug" rel="nofollow">https://registry.npmjs.org/debug</a> 226ms (from cache)<br>
89 silly pacote range manifest for debug@^4.1.1 fetched in 231ms<br>
90 http fetch GET 200 <a href="https://registry.npmjs.org/default-gateway" rel="nofollow">https://registry.npmjs.org/default-gateway</a> 225ms<br>
91 http fetch GET 200 <a href="https://registry.npmjs.org/default-gateway/-/default-gateway-5.0.5.tgz" rel="nofollow">https://registry.npmjs.org/default-gateway/-/default-gateway-5.0.5.tgz</a> 200ms<br>
92 silly pacote range manifest for default-gateway@^5.0.5 fetched in 432ms<br>
93 http fetch GET 304 <a href="https://registry.npmjs.org/dotenv" rel="nofollow">https://registry.npmjs.org/dotenv</a> 215ms (from cache)<br>
94 silly pacote range manifest for dotenv@^8.2.0 fetched in 217ms<br>
95 http fetch GET 200 <a href="https://registry.npmjs.org/dotenv-expand" rel="nofollow">https://registry.npmjs.org/dotenv-expand</a> 215ms<br>
96 http fetch GET 200 <a href="https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz" rel="nofollow">https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz</a> 437ms<br>
97 silly pacote range manifest for dotenv-expand@^5.1.0 fetched in 657ms<br>
98 http fetch GET 200 <a href="https://registry.npmjs.org/file-loader" rel="nofollow">https://registry.npmjs.org/file-loader</a> 732ms<br>
99 http fetch GET 200 <a href="https://registry.npmjs.org/file-loader/-/file-loader-4.3.0.tgz" rel="nofollow">https://registry.npmjs.org/file-loader/-/file-loader-4.3.0.tgz</a> 158ms<br>
100 silly pacote range manifest for file-loader@^4.2.0 fetched in 899ms<br>
101 http fetch GET 304 <a href="https://registry.npmjs.org/fs-extra" rel="nofollow">https://registry.npmjs.org/fs-extra</a> 201ms (from cache)<br>
102 silly pacote range manifest for fs-extra@^7.0.1 fetched in 203ms<br>
103 http fetch GET 304 <a href="https://registry.npmjs.org/globby" rel="nofollow">https://registry.npmjs.org/globby</a> 224ms (from cache)<br>
104 silly pacote range manifest for globby@^9.2.0 fetched in 227ms<br>
105 http fetch GET 304 <a href="https://registry.npmjs.org/hash-sum" rel="nofollow">https://registry.npmjs.org/hash-sum</a> 212ms (from cache)<br>
106 silly pacote range manifest for hash-sum@^2.0.0 fetched in 213ms<br>
107 http fetch GET 200 <a href="https://registry.npmjs.org/html-webpack-plugin" rel="nofollow">https://registry.npmjs.org/html-webpack-plugin</a> 446ms<br>
108 http fetch GET 200 <a href="https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-3.2.0.tgz" rel="nofollow">https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-3.2.0.tgz</a> 228ms<br>
109 silly pacote range manifest for html-webpack-plugin@^3.2.0 fetched in 683ms<br>
110 warn deprecated html-webpack-plugin@3.2.0: 3.x is no longer supported<br>
111 http fetch GET 200 <a href="https://registry.npmjs.org/launch-editor-middleware" rel="nofollow">https://registry.npmjs.org/launch-editor-middleware</a> 196ms<br>
112 http fetch GET 200 <a href="https://registry.npmjs.org/launch-editor-middleware/-/launch-editor-middleware-2.2.1.tgz" rel="nofollow">https://registry.npmjs.org/launch-editor-middleware/-/launch-editor-middleware-2.2.1.tgz</a> 226ms<br>
113 silly pacote range manifest for launch-editor-middleware@^2.2.1 fetched in 429ms<br>
114 http fetch GET 200 <a href="https://registry.npmjs.org/lodash.defaultsdeep" rel="nofollow">https://registry.npmjs.org/lodash.defaultsdeep</a> 209ms<br>
115 http fetch GET 200 <a href="https://registry.npmjs.org/lodash.defaultsdeep/-/lodash.defaultsdeep-4.6.1.tgz" rel="nofollow">https://registry.npmjs.org/lodash.defaultsdeep/-/lodash.defaultsdeep-4.6.1.tgz</a> 219ms<br>
116 silly pacote range manifest for lodash.defaultsdeep@^4.6.1 fetched in 433ms<br>
117 http fetch GET 200 <a href="https://registry.npmjs.org/lodash.mapvalues" rel="nofollow">https://registry.npmjs.org/lodash.mapvalues</a> 224ms<br>
118 http fetch GET 200 <a href="https://registry.npmjs.org/lodash.mapvalues/-/lodash.mapvalues-4.6.0.tgz" rel="nofollow">https://registry.npmjs.org/lodash.mapvalues/-/lodash.mapvalues-4.6.0.tgz</a> 221ms<br>
119 silly pacote range manifest for lodash.mapvalues@^4.6.0 fetched in 452ms<br>
120 http fetch GET 200 <a href="https://registry.npmjs.org/lodash.transform" rel="nofollow">https://registry.npmjs.org/lodash.transform</a> 206ms<br>
121 http fetch GET 200 <a href="https://registry.npmjs.org/lodash.transform/-/lodash.transform-4.6.0.tgz" rel="nofollow">https://registry.npmjs.org/lodash.transform/-/lodash.transform-4.6.0.tgz</a> 232ms<br>
122 silly pacote range manifest for lodash.transform@^4.6.0 fetched in 446ms<br>
123 http fetch GET 200 <a href="https://registry.npmjs.org/mini-css-extract-plugin" rel="nofollow">https://registry.npmjs.org/mini-css-extract-plugin</a> 258ms<br>
124 http fetch GET 200 <a href="https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.9.0.tgz" rel="nofollow">https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.9.0.tgz</a> 169ms<br>
125 silly pacote range manifest for mini-css-extract-plugin@^0.9.0 fetched in 432ms<br>
126 http fetch GET 304 <a href="https://registry.npmjs.org/minimist" rel="nofollow">https://registry.npmjs.org/minimist</a> 220ms (from cache)<br>
127 silly pacote range manifest for minimist@^1.2.5 fetched in 222ms<br>
128 http fetch GET 200 <a href="https://registry.npmjs.org/pnp-webpack-plugin" rel="nofollow">https://registry.npmjs.org/pnp-webpack-plugin</a> 219ms<br>
129 http fetch GET 200 <a href="https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz" rel="nofollow">https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz</a> 224ms<br>
130 silly pacote range manifest for pnp-webpack-plugin@^1.6.4 fetched in 455ms<br>
131 http fetch GET 304 <a href="https://registry.npmjs.org/portfinder" rel="nofollow">https://registry.npmjs.org/portfinder</a> 198ms (from cache)<br>
132 silly pacote range manifest for portfinder@^1.0.26 fetched in 201ms<br>
133 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-loader" rel="nofollow">https://registry.npmjs.org/postcss-loader</a> 234ms<br>
134 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz</a> 201ms<br>
135 silly pacote range manifest for postcss-loader@^3.0.0 fetched in 448ms<br>
136 http fetch GET 200 <a href="https://registry.npmjs.org/ssri" rel="nofollow">https://registry.npmjs.org/ssri</a> 220ms<br>
137 http fetch GET 200 <a href="https://registry.npmjs.org/ssri/-/ssri-7.1.0.tgz" rel="nofollow">https://registry.npmjs.org/ssri/-/ssri-7.1.0.tgz</a> 209ms<br>
138 silly pacote range manifest for ssri@^7.1.0 fetched in 436ms<br>
139 http fetch GET 200 <a href="https://registry.npmjs.org/terser-webpack-plugin" rel="nofollow">https://registry.npmjs.org/terser-webpack-plugin</a> 449ms<br>
140 http fetch GET 200 <a href="https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-2.3.8.tgz" rel="nofollow">https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-2.3.8.tgz</a> 213ms<br>
141 silly pacote range manifest for terser-webpack-plugin@^2.3.6 fetched in 690ms<br>
142 http fetch GET 200 <a href="https://registry.npmjs.org/url-loader" rel="nofollow">https://registry.npmjs.org/url-loader</a> 193ms<br>
143 http fetch GET 200 <a href="https://registry.npmjs.org/url-loader/-/url-loader-2.3.0.tgz" rel="nofollow">https://registry.npmjs.org/url-loader/-/url-loader-2.3.0.tgz</a> 217ms<br>
144 silly pacote range manifest for url-loader@^2.2.0 fetched in 418ms<br>
145 http fetch GET 200 <a href="https://registry.npmjs.org/vue-loader" rel="nofollow">https://registry.npmjs.org/vue-loader</a> 889ms<br>
146 http fetch GET 200 <a href="https://registry.npmjs.org/vue-loader/-/vue-loader-15.9.6.tgz" rel="nofollow">https://registry.npmjs.org/vue-loader/-/vue-loader-15.9.6.tgz</a> 206ms<br>
147 silly pacote range manifest for vue-loader@^15.9.2 fetched in 1106ms<br>
148 http fetch GET 200 <a href="https://registry.npmjs.org/vue-style-loader" rel="nofollow">https://registry.npmjs.org/vue-style-loader</a> 219ms<br>
149 http fetch GET 200 <a href="https://registry.npmjs.org/vue-style-loader/-/vue-style-loader-4.1.2.tgz" rel="nofollow">https://registry.npmjs.org/vue-style-loader/-/vue-style-loader-4.1.2.tgz</a> 219ms<br>
150 silly pacote range manifest for vue-style-loader@^4.1.2 fetched in 445ms<br>
151 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-bundle-analyzer" rel="nofollow">https://registry.npmjs.org/webpack-bundle-analyzer</a> 448ms<br>
152 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.9.0.tgz" rel="nofollow">https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-3.9.0.tgz</a> 717ms<br>
153 silly pacote range manifest for webpack-bundle-analyzer@^3.8.0 fetched in 1176ms<br>
154 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-chain" rel="nofollow">https://registry.npmjs.org/webpack-chain</a> 359ms<br>
155 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-chain/-/webpack-chain-6.5.1.tgz" rel="nofollow">https://registry.npmjs.org/webpack-chain/-/webpack-chain-6.5.1.tgz</a> 225ms<br>
156 silly pacote range manifest for webpack-chain@^6.4.0 fetched in 589ms<br>
157 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-dev-server" rel="nofollow">https://registry.npmjs.org/webpack-dev-server</a> 490ms<br>
158 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.2.tgz" rel="nofollow">https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.2.tgz</a> 470ms<br>
159 silly pacote range manifest for webpack-dev-server@^3.11.0 fetched in 980ms<br>
160 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-merge" rel="nofollow">https://registry.npmjs.org/webpack-merge</a> 338ms<br>
161 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-merge/-/webpack-merge-4.2.2.tgz" rel="nofollow">https://registry.npmjs.org/webpack-merge/-/webpack-merge-4.2.2.tgz</a> 222ms<br>
162 silly pacote range manifest for webpack-merge@^4.2.2 fetched in 568ms<br>
163 http fetch GET 200 <a href="https://registry.npmjs.org/vue-loader/-/vue-loader-16.1.2.tgz" rel="nofollow">https://registry.npmjs.org/vue-loader/-/vue-loader-16.1.2.tgz</a> 220ms<br>
164 silly pacote alias manifest for vue-loader-v16@null fetched in 235ms<br>
165 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fcode-frame" rel="nofollow">https://registry.npmjs.org/@babel%2fcode-frame</a> 201ms (from cache)<br>
166 silly pacote range manifest for @babel/code-frame@^7.12.13 fetched in 203ms<br>
167 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fgenerator" rel="nofollow">https://registry.npmjs.org/@babel%2fgenerator</a> 500ms (from cache)<br>
168 silly pacote range manifest for @babel/generator@^7.13.0 fetched in 501ms<br>
169 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fhelper-compilation-targets" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-compilation-targets</a> 150ms (from cache)<br>
170 silly pacote range manifest for @babel/helper-compilation-targets@^7.13.0 fetched in 151ms<br>
171 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fhelper-module-transforms" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-module-transforms</a> 229ms (from cache)<br>
172 silly pacote range manifest for @babel/helper-module-transforms@^7.13.0 fetched in 231ms<br>
173 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fhelpers" rel="nofollow">https://registry.npmjs.org/@babel%2fhelpers</a> 228ms (from cache)<br>
174 silly pacote range manifest for @babel/helpers@^7.13.0 fetched in 232ms<br>
175 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fparser" rel="nofollow">https://registry.npmjs.org/@babel%2fparser</a> 202ms (from cache)<br>
176 silly pacote range manifest for @babel/parser@^7.13.0 fetched in 204ms<br>
177 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2ftemplate" rel="nofollow">https://registry.npmjs.org/@babel%2ftemplate</a> 233ms (from cache)<br>
178 silly pacote range manifest for @babel/template@^7.12.13 fetched in 237ms<br>
179 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2ftraverse" rel="nofollow">https://registry.npmjs.org/@babel%2ftraverse</a> 207ms (from cache)<br>
180 silly pacote range manifest for @babel/traverse@^7.13.0 fetched in 210ms<br>
181 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2ftypes" rel="nofollow">https://registry.npmjs.org/@babel%2ftypes</a> 219ms (from cache)<br>
182 silly pacote range manifest for @babel/types@^7.13.0 fetched in 222ms<br>
183 http fetch GET 304 <a href="https://registry.npmjs.org/convert-source-map" rel="nofollow">https://registry.npmjs.org/convert-source-map</a> 211ms (from cache)<br>
184 silly pacote range manifest for convert-source-map@^1.7.0 fetched in 213ms<br>
185 silly pacote range manifest for debug@^4.1.0 fetched in 1ms<br>
186 http fetch GET 304 <a href="https://registry.npmjs.org/gensync" rel="nofollow">https://registry.npmjs.org/gensync</a> 219ms (from cache)<br>
187 silly pacote range manifest for gensync@^1.0.0-beta.2 fetched in 220ms<br>
188 http fetch GET 304 <a href="https://registry.npmjs.org/json5" rel="nofollow">https://registry.npmjs.org/json5</a> 222ms (from cache)<br>
189 silly pacote range manifest for json5@^2.1.2 fetched in 225ms<br>
190 http fetch GET 304 <a href="https://registry.npmjs.org/lodash" rel="nofollow">https://registry.npmjs.org/lodash</a> 289ms (from cache)<br>
191 silly pacote range manifest for lodash@^4.17.19 fetched in 292ms<br>
192 http fetch GET 304 <a href="https://registry.npmjs.org/semver" rel="nofollow">https://registry.npmjs.org/semver</a> 144ms (from cache)<br>
193 silly pacote version manifest for semver@7.0.0 fetched in 148ms<br>
194 http fetch GET 304 <a href="https://registry.npmjs.org/source-map" rel="nofollow">https://registry.npmjs.org/source-map</a> 228ms (from cache)<br>
195 silly pacote range manifest for source-map@^0.5.0 fetched in 233ms<br>
196 http fetch GET 304 <a href="https://registry.npmjs.org/@hapi%2fjoi" rel="nofollow">https://registry.npmjs.org/@hapi%2fjoi</a> 201ms (from cache)<br>
197 silly pacote range manifest for @hapi/joi@^15.0.1 fetched in 203ms<br>
198 warn deprecated @hapi/joi@15.1.1: Switch to 'npm install joi'<br>
199 http fetch GET 304 <a href="https://registry.npmjs.org/chalk" rel="nofollow">https://registry.npmjs.org/chalk</a> 223ms (from cache)<br>
200 silly pacote range manifest for chalk@^2.4.2 fetched in 224ms<br>
201 http fetch GET 304 <a href="https://registry.npmjs.org/execa" rel="nofollow">https://registry.npmjs.org/execa</a> 216ms (from cache)<br>
202 silly pacote range manifest for execa@^1.0.0 fetched in 218ms<br>
203 http fetch GET 304 <a href="https://registry.npmjs.org/launch-editor" rel="nofollow">https://registry.npmjs.org/launch-editor</a> 219ms (from cache)<br>
204 silly pacote range manifest for launch-editor@^2.2.1 fetched in 220ms<br>
205 http fetch GET 304 <a href="https://registry.npmjs.org/lru-cache" rel="nofollow">https://registry.npmjs.org/lru-cache</a> 220ms (from cache)<br>
206 silly pacote range manifest for lru-cache@^5.1.1 fetched in 222ms<br>
207 http fetch GET 304 <a href="https://registry.npmjs.org/node-ipc" rel="nofollow">https://registry.npmjs.org/node-ipc</a> 226ms (from cache)<br>
208 silly pacote range manifest for node-ipc@^9.1.1 fetched in 229ms<br>
209 http fetch GET 304 <a href="https://registry.npmjs.org/open" rel="nofollow">https://registry.npmjs.org/open</a> 219ms (from cache)<br>
210 silly pacote range manifest for open@^6.3.0 fetched in 223ms<br>
211 http fetch GET 304 <a href="https://registry.npmjs.org/ora" rel="nofollow">https://registry.npmjs.org/ora</a> 215ms (from cache)<br>
212 silly pacote range manifest for ora@^3.4.0 fetched in 216ms<br>
213 http fetch GET 304 <a href="https://registry.npmjs.org/read-pkg" rel="nofollow">https://registry.npmjs.org/read-pkg</a> 225ms (from cache)<br>
214 silly pacote range manifest for read-pkg@^5.1.1 fetched in 229ms<br>
215 http fetch GET 304 <a href="https://registry.npmjs.org/request" rel="nofollow">https://registry.npmjs.org/request</a> 219ms (from cache)<br>
216 silly pacote range manifest for request@^2.88.2 fetched in 227ms<br>
217 warn deprecated request@2.88.2: request has been deprecated, see <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="427331880" data-permission-text="Title is private" data-url="https://github.com/request/request/issues/3142" data-hovercard-type="issue" data-hovercard-url="/request/request/issues/3142/hovercard" href="https://github.com/request/request/issues/3142">request/request#3142</a><br>
218 silly pacote range manifest for semver@^6.1.0 fetched in 8ms<br>
219 http fetch GET 304 <a href="https://registry.npmjs.org/strip-ansi" rel="nofollow">https://registry.npmjs.org/strip-ansi</a> 187ms (from cache)<br>
220 silly pacote range manifest for strip-ansi@^6.0.0 fetched in 189ms<br>
221 silly pacote range manifest for @babel/helper-compilation-targets@^7.9.6 fetched in 0ms<br>
222 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fhelper-module-imports" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-module-imports</a> 220ms (from cache)<br>
223 silly pacote range manifest for @babel/helper-module-imports@^7.8.3 fetched in 223ms<br>
224 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-class-properties" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-class-properties</a> 236ms (from cache)<br>
225 silly pacote range manifest for @babel/plugin-proposal-class-properties@^7.8.3 fetched in 241ms<br>
226 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-decorators" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-decorators</a> 238ms<br>
227 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.13.5.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.13.5.tgz</a> 180ms<br>
228 silly pacote range manifest for @babel/plugin-proposal-decorators@^7.8.3 fetched in 426ms<br>
229 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-dynamic-import" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-dynamic-import</a> 214ms (from cache)<br>
230 silly pacote range manifest for @babel/plugin-syntax-dynamic-import@^7.8.3 fetched in 215ms<br>
231 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-jsx" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-jsx</a> 226ms<br>
232 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.13.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.13.tgz</a> 215ms<br>
233 silly pacote range manifest for @babel/plugin-syntax-jsx@^7.8.3 fetched in 445ms<br>
234 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-runtime" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-runtime</a> 302ms<br>
235 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.13.7.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.13.7.tgz</a> 163ms<br>
236 silly pacote range manifest for @babel/plugin-transform-runtime@^7.11.0 fetched in 480ms<br>
237 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fpreset-env" rel="nofollow">https://registry.npmjs.org/@babel%2fpreset-env</a> 182ms (from cache)<br>
238 silly pacote range manifest for @babel/preset-env@^7.11.0 fetched in 185ms<br>
239 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fruntime" rel="nofollow">https://registry.npmjs.org/@babel%2fruntime</a> 224ms (from cache)<br>
240 silly pacote range manifest for @babel/runtime@^7.11.0 fetched in 226ms<br>
241 http fetch GET 200 <a href="https://registry.npmjs.org/@vue%2fbabel-plugin-jsx" rel="nofollow">https://registry.npmjs.org/@vue%2fbabel-plugin-jsx</a> 313ms<br>
242 http fetch GET 200 <a href="https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.0.3.tgz" rel="nofollow">https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.0.3.tgz</a> 1226ms<br>
243 silly pacote range manifest for @vue/babel-plugin-jsx@^1.0.0-0 fetched in 1544ms<br>
244 http fetch GET 200 <a href="https://registry.npmjs.org/@vue%2fbabel-preset-jsx" rel="nofollow">https://registry.npmjs.org/@vue%2fbabel-preset-jsx</a> 438ms<br>
245 http fetch GET 200 <a href="https://registry.npmjs.org/@vue/babel-preset-jsx/-/babel-preset-jsx-1.2.4.tgz" rel="nofollow">https://registry.npmjs.org/@vue/babel-preset-jsx/-/babel-preset-jsx-1.2.4.tgz</a> 213ms<br>
246 silly pacote range manifest for @vue/babel-preset-jsx@^1.1.2 fetched in 658ms<br>
247 http fetch GET 304 <a href="https://registry.npmjs.org/babel-plugin-dynamic-import-node" rel="nofollow">https://registry.npmjs.org/babel-plugin-dynamic-import-node</a> 218ms (from cache)<br>
248 silly pacote range manifest for babel-plugin-dynamic-import-node@^2.3.3 fetched in 219ms<br>
249 http fetch GET 304 <a href="https://registry.npmjs.org/core-js" rel="nofollow">https://registry.npmjs.org/core-js</a> 226ms (from cache)<br>
250 silly pacote range manifest for core-js@^3.6.5 fetched in 229ms<br>
251 http fetch GET 304 <a href="https://registry.npmjs.org/core-js-compat" rel="nofollow">https://registry.npmjs.org/core-js-compat</a> 224ms (from cache)<br>
252 silly pacote range manifest for core-js-compat@^3.6.5 fetched in 229ms<br>
253 http fetch GET 200 <a href="https://registry.npmjs.org/buffer-json" rel="nofollow">https://registry.npmjs.org/buffer-json</a> 201ms<br>
254 http fetch GET 200 <a href="https://registry.npmjs.org/buffer-json/-/buffer-json-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/buffer-json/-/buffer-json-2.0.0.tgz</a> 220ms<br>
255 silly pacote range manifest for buffer-json@^2.0.0 fetched in 424ms<br>
256 http fetch GET 304 <a href="https://registry.npmjs.org/find-cache-dir" rel="nofollow">https://registry.npmjs.org/find-cache-dir</a> 233ms (from cache)<br>
257 http fetch GET 200 <a href="https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz" rel="nofollow">https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz</a> 214ms<br>
258 silly pacote range manifest for find-cache-dir@^3.0.0 fetched in 464ms<br>
259 http fetch GET 304 <a href="https://registry.npmjs.org/loader-utils" rel="nofollow">https://registry.npmjs.org/loader-utils</a> 197ms (from cache)<br>
260 silly pacote range manifest for loader-utils@^1.2.3 fetched in 199ms<br>
261 http fetch GET 304 <a href="https://registry.npmjs.org/mkdirp" rel="nofollow">https://registry.npmjs.org/mkdirp</a> 225ms (from cache)<br>
262 silly pacote range manifest for mkdirp@^0.5.1 fetched in 227ms<br>
263 http fetch GET 304 <a href="https://registry.npmjs.org/neo-async" rel="nofollow">https://registry.npmjs.org/neo-async</a> 214ms (from cache)<br>
264 silly pacote range manifest for neo-async@^2.6.1 fetched in 216ms<br>
265 http fetch GET 200 <a href="https://registry.npmjs.org/schema-utils" rel="nofollow">https://registry.npmjs.org/schema-utils</a> 227ms<br>
266 http fetch GET 200 <a href="https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz" rel="nofollow">https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz</a> 218ms<br>
267 silly pacote range manifest for schema-utils@^2.0.0 fetched in 453ms<br>
268 silly pacote range manifest for neo-async@^2.6.0 fetched in 1ms<br>
269 http fetch GET 200 <a href="https://registry.npmjs.org/loader-runner" rel="nofollow">https://registry.npmjs.org/loader-runner</a> 215ms<br>
270 http fetch GET 200 <a href="https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz" rel="nofollow">https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz</a> 208ms<br>
271 silly pacote range manifest for loader-runner@^2.3.1 fetched in 434ms<br>
272 silly pacote range manifest for loader-utils@^1.1.0 fetched in 2ms<br>
273 silly pacote range manifest for find-cache-dir@^3.3.1 fetched in 1ms<br>
274 silly pacote range manifest for loader-utils@^1.4.0 fetched in 1ms<br>
275 http fetch GET 304 <a href="https://registry.npmjs.org/make-dir" rel="nofollow">https://registry.npmjs.org/make-dir</a> 221ms (from cache)<br>
276 http fetch GET 200 <a href="https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz" rel="nofollow">https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz</a> 210ms<br>
277 silly pacote range manifest for make-dir@^3.1.0 fetched in 440ms<br>
278 silly pacote range manifest for schema-utils@^2.6.5 fetched in 1ms<br>
279 silly pacote range manifest for cssnano@^4.0.0 fetched in 1ms<br>
280 http fetch GET 200 <a href="https://registry.npmjs.org/cssnano-preset-default" rel="nofollow">https://registry.npmjs.org/cssnano-preset-default</a> 225ms<br>
281 http fetch GET 200 <a href="https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz" rel="nofollow">https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz</a> 203ms<br>
282 silly pacote range manifest for cssnano-preset-default@^4.0.0 fetched in 433ms<br>
283 http fetch GET 304 <a href="https://registry.npmjs.org/postcss" rel="nofollow">https://registry.npmjs.org/postcss</a> 238ms (from cache)<br>
284 http fetch GET 200 <a href="https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz" rel="nofollow">https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz</a> 425ms<br>
285 silly pacote range manifest for postcss@^7.0.0 fetched in 680ms<br>
286 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fast" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fast</a> 294ms<br>
287 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz</a> 348ms<br>
288 silly pacote version manifest for @webassemblyjs/ast@1.9.0 fetched in 649ms<br>
289 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fhelper-module-context" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fhelper-module-context</a> 239ms<br>
290 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz</a> 199ms<br>
291 silly pacote version manifest for @webassemblyjs/helper-module-context@1.9.0 fetched in 442ms<br>
292 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fwasm-edit" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fwasm-edit</a> 435ms<br>
293 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz</a> 225ms<br>
294 silly pacote version manifest for @webassemblyjs/wasm-edit@1.9.0 fetched in 669ms<br>
295 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fwasm-parser" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fwasm-parser</a> 437ms<br>
296 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz</a> 215ms<br>
297 silly pacote version manifest for @webassemblyjs/wasm-parser@1.9.0 fetched in 656ms<br>
298 http fetch GET 200 <a href="https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz" rel="nofollow">https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz</a> 660ms<br>
299 silly pacote range manifest for acorn@^6.4.1 fetched in 665ms<br>
300 http fetch GET 304 <a href="https://registry.npmjs.org/ajv" rel="nofollow">https://registry.npmjs.org/ajv</a> 230ms (from cache)<br>
301 silly pacote range manifest for ajv@^6.10.2 fetched in 238ms<br>
302 http fetch GET 200 <a href="https://registry.npmjs.org/ajv-keywords" rel="nofollow">https://registry.npmjs.org/ajv-keywords</a> 202ms<br>
303 http fetch GET 200 <a href="https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz" rel="nofollow">https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz</a> 222ms<br>
304 silly pacote range manifest for ajv-keywords@^3.4.1 fetched in 428ms<br>
305 http fetch GET 200 <a href="https://registry.npmjs.org/chrome-trace-event" rel="nofollow">https://registry.npmjs.org/chrome-trace-event</a> 209ms<br>
306 http fetch GET 200 <a href="https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz" rel="nofollow">https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz</a> 225ms<br>
307 silly pacote range manifest for chrome-trace-event@^1.0.2 fetched in 439ms<br>
308 http fetch GET 200 <a href="https://registry.npmjs.org/enhanced-resolve" rel="nofollow">https://registry.npmjs.org/enhanced-resolve</a> 264ms<br>
309 http fetch GET 200 <a href="https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz" rel="nofollow">https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz</a> 173ms<br>
310 silly pacote range manifest for enhanced-resolve@^4.5.0 fetched in 442ms<br>
311 http fetch GET 200 <a href="https://registry.npmjs.org/eslint-scope" rel="nofollow">https://registry.npmjs.org/eslint-scope</a> 218ms<br>
312 http fetch GET 200 <a href="https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz" rel="nofollow">https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz</a> 227ms<br>
313 silly pacote range manifest for eslint-scope@^4.0.3 fetched in 449ms<br>
314 http fetch GET 304 <a href="https://registry.npmjs.org/json-parse-better-errors" rel="nofollow">https://registry.npmjs.org/json-parse-better-errors</a> 870ms (from cache)<br>
315 silly pacote range manifest for json-parse-better-errors@^1.0.2 fetched in 871ms<br>
316 silly pacote range manifest for loader-runner@^2.4.0 fetched in 2ms<br>
317 http fetch GET 200 <a href="https://registry.npmjs.org/memory-fs" rel="nofollow">https://registry.npmjs.org/memory-fs</a> 214ms<br>
318 http fetch GET 200 <a href="https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz" rel="nofollow">https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz</a> 230ms<br>
319 silly pacote range manifest for memory-fs@^0.4.1 fetched in 458ms<br>
320 http fetch GET 304 <a href="https://registry.npmjs.org/micromatch" rel="nofollow">https://registry.npmjs.org/micromatch</a> 213ms (from cache)<br>
321 silly pacote range manifest for micromatch@^3.1.10 fetched in 219ms<br>
322 silly pacote range manifest for mkdirp@^0.5.3 fetched in 8ms<br>
323 http fetch GET 200 <a href="https://registry.npmjs.org/node-libs-browser" rel="nofollow">https://registry.npmjs.org/node-libs-browser</a> 196ms<br>
324 http fetch GET 200 <a href="https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz" rel="nofollow">https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz</a> 217ms<br>
325 silly pacote range manifest for node-libs-browser@^2.2.1 fetched in 422ms<br>
326 http fetch GET 200 <a href="https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz</a> 211ms<br>
327 silly pacote range manifest for schema-utils@^1.0.0 fetched in 216ms<br>
328 http fetch GET 200 <a href="https://registry.npmjs.org/tapable" rel="nofollow">https://registry.npmjs.org/tapable</a> 224ms<br>
329 http fetch GET 200 <a href="https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz" rel="nofollow">https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz</a> 219ms<br>
330 silly pacote range manifest for tapable@^1.1.3 fetched in 452ms<br>
331 http fetch GET 200 <a href="https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz" rel="nofollow">https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz</a> 221ms<br>
332 silly pacote range manifest for terser-webpack-plugin@^1.4.3 fetched in 225ms<br>
333 http fetch GET 200 <a href="https://registry.npmjs.org/watchpack" rel="nofollow">https://registry.npmjs.org/watchpack</a> 283ms<br>
334 http fetch GET 200 <a href="https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz" rel="nofollow">https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz</a> 140ms<br>
335 silly pacote range manifest for watchpack@^1.7.4 fetched in 429ms<br>
336 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-sources" rel="nofollow">https://registry.npmjs.org/webpack-sources</a> 224ms<br>
337 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz" rel="nofollow">https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz</a> 213ms<br>
338 silly pacote range manifest for webpack-sources@^1.4.1 fetched in 444ms<br>
339 http fetch GET 304 <a href="https://registry.npmjs.org/caniuse-lite" rel="nofollow">https://registry.npmjs.org/caniuse-lite</a> 219ms (from cache)<br>
340 silly pacote range manifest for caniuse-lite@^1.0.30001109 fetched in 225ms<br>
341 http fetch GET 304 <a href="https://registry.npmjs.org/colorette" rel="nofollow">https://registry.npmjs.org/colorette</a> 211ms (from cache)<br>
342 silly pacote range manifest for colorette@^1.2.1 fetched in 212ms<br>
343 http fetch GET 200 <a href="https://registry.npmjs.org/normalize-range" rel="nofollow">https://registry.npmjs.org/normalize-range</a> 216ms<br>
344 http fetch GET 200 <a href="https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz" rel="nofollow">https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz</a> 226ms<br>
345 silly pacote range manifest for normalize-range@^0.1.2 fetched in 448ms<br>
346 http fetch GET 200 <a href="https://registry.npmjs.org/num2fraction" rel="nofollow">https://registry.npmjs.org/num2fraction</a> 212ms<br>
347 http fetch GET 200 <a href="https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz" rel="nofollow">https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz</a> 224ms<br>
348 silly pacote range manifest for num2fraction@^1.2.2 fetched in 441ms<br>
349 silly pacote range manifest for postcss@^7.0.32 fetched in 2ms<br>
350 http fetch GET 304 <a href="https://registry.npmjs.org/postcss-value-parser" rel="nofollow">https://registry.npmjs.org/postcss-value-parser</a> 213ms (from cache)<br>
351 silly pacote range manifest for postcss-value-parser@^4.1.0 fetched in 215ms<br>
352 silly pacote range manifest for caniuse-lite@^1.0.30001181 fetched in 1ms<br>
353 http fetch GET 304 <a href="https://registry.npmjs.org/electron-to-chromium" rel="nofollow">https://registry.npmjs.org/electron-to-chromium</a> 240ms (from cache)<br>
354 silly pacote range manifest for electron-to-chromium@^1.3.649 fetched in 248ms<br>
355 http fetch GET 304 <a href="https://registry.npmjs.org/escalade" rel="nofollow">https://registry.npmjs.org/escalade</a> 200ms (from cache)<br>
356 silly pacote range manifest for escalade@^3.1.1 fetched in 203ms<br>
357 http fetch GET 304 <a href="https://registry.npmjs.org/node-releases" rel="nofollow">https://registry.npmjs.org/node-releases</a> 217ms (from cache)<br>
358 silly pacote range manifest for node-releases@^1.1.70 fetched in 221ms<br>
359 silly pacote range manifest for chalk@^4.0.0 fetched in 3ms<br>
360 http fetch GET 200 <a href="https://registry.npmjs.org/highlight.js" rel="nofollow">https://registry.npmjs.org/highlight.js</a> 306ms<br>
361 http fetch GET 200 <a href="https://registry.npmjs.org/highlight.js/-/highlight.js-10.6.0.tgz" rel="nofollow">https://registry.npmjs.org/highlight.js/-/highlight.js-10.6.0.tgz</a> 1031ms<br>
362 silly pacote range manifest for highlight.js@^10.0.0 fetched in 1350ms<br>
363 http fetch GET 200 <a href="https://registry.npmjs.org/mz" rel="nofollow">https://registry.npmjs.org/mz</a> 182ms<br>
364 http fetch GET 200 <a href="https://registry.npmjs.org/mz/-/mz-2.7.0.tgz" rel="nofollow">https://registry.npmjs.org/mz/-/mz-2.7.0.tgz</a> 216ms<br>
365 silly pacote range manifest for mz@^2.4.0 fetched in 402ms<br>
366 http fetch GET 200 <a href="https://registry.npmjs.org/parse5" rel="nofollow">https://registry.npmjs.org/parse5</a> 222ms<br>
367 http fetch GET 200 <a href="https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz" rel="nofollow">https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz</a> 227ms<br>
368 silly pacote range manifest for parse5@^5.1.1 fetched in 454ms<br>
369 http fetch GET 200 <a href="https://registry.npmjs.org/parse5-htmlparser2-tree-adapter" rel="nofollow">https://registry.npmjs.org/parse5-htmlparser2-tree-adapter</a> 206ms<br>
370 http fetch GET 200 <a href="https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz" rel="nofollow">https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz</a> 224ms<br>
371 silly pacote range manifest for parse5-htmlparser2-tree-adapter@^6.0.0 fetched in 435ms<br>
372 http fetch GET 304 <a href="https://registry.npmjs.org/yargs" rel="nofollow">https://registry.npmjs.org/yargs</a> 219ms (from cache)<br>
373 http fetch GET 200 <a href="https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz" rel="nofollow">https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz</a> 226ms<br>
374 silly pacote range manifest for yargs@^16.0.0 fetched in 451ms<br>
375 http fetch GET 200 <a href="https://registry.npmjs.org/arch" rel="nofollow">https://registry.npmjs.org/arch</a> 213ms<br>
376 http fetch GET 200 <a href="https://registry.npmjs.org/arch/-/arch-2.2.0.tgz" rel="nofollow">https://registry.npmjs.org/arch/-/arch-2.2.0.tgz</a> 218ms<br>
377 silly pacote range manifest for arch@^2.1.1 fetched in 446ms<br>
378 http fetch GET 304 <a href="https://registry.npmjs.org/is-wsl" rel="nofollow">https://registry.npmjs.org/is-wsl</a> 197ms (from cache)<br>
379 silly pacote range manifest for is-wsl@^2.1.1 fetched in 198ms<br>
380 http fetch GET 304 <a href="https://registry.npmjs.org/string-width" rel="nofollow">https://registry.npmjs.org/string-width</a> 228ms (from cache)<br>
381 silly pacote range manifest for string-width@^4.2.0 fetched in 229ms<br>
382 http fetch GET 304 <a href="https://registry.npmjs.org/wrap-ansi" rel="nofollow">https://registry.npmjs.org/wrap-ansi</a> 230ms (from cache)<br>
383 silly pacote range manifest for wrap-ansi@^6.2.0 fetched in 234ms<br>
384 http fetch GET 200 <a href="https://registry.npmjs.org/cacache" rel="nofollow">https://registry.npmjs.org/cacache</a> 232ms<br>
385 http fetch GET 200 <a href="https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz" rel="nofollow">https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz</a> 190ms<br>
386 silly pacote range manifest for cacache@^12.0.3 fetched in 428ms<br>
387 silly pacote range manifest for find-cache-dir@^2.1.0 fetched in 3ms<br>
388 http fetch GET 304 <a href="https://registry.npmjs.org/glob-parent" rel="nofollow">https://registry.npmjs.org/glob-parent</a> 225ms (from cache)<br>
389 silly pacote range manifest for glob-parent@^3.1.0 fetched in 233ms<br>
390 http fetch GET 200 <a href="https://registry.npmjs.org/globby/-/globby-7.1.1.tgz" rel="nofollow">https://registry.npmjs.org/globby/-/globby-7.1.1.tgz</a> 206ms<br>
391 silly pacote range manifest for globby@^7.1.1 fetched in 225ms<br>
392 http fetch GET 304 <a href="https://registry.npmjs.org/is-glob" rel="nofollow">https://registry.npmjs.org/is-glob</a> 199ms (from cache)<br>
393 silly pacote range manifest for is-glob@^4.0.1 fetched in 203ms<br>
394 http fetch GET 304 <a href="https://registry.npmjs.org/minimatch" rel="nofollow">https://registry.npmjs.org/minimatch</a> 221ms (from cache)<br>
395 silly pacote range manifest for minimatch@^3.0.4 fetched in 223ms<br>
396 http fetch GET 304 <a href="https://registry.npmjs.org/normalize-path" rel="nofollow">https://registry.npmjs.org/normalize-path</a> 217ms (from cache)<br>
397 silly pacote range manifest for normalize-path@^3.0.0 fetched in 218ms<br>
398 http fetch GET 304 <a href="https://registry.npmjs.org/p-limit" rel="nofollow">https://registry.npmjs.org/p-limit</a> 213ms (from cache)<br>
399 silly pacote range manifest for p-limit@^2.2.1 fetched in 214ms<br>
400 http fetch GET 200 <a href="https://registry.npmjs.org/serialize-javascript" rel="nofollow">https://registry.npmjs.org/serialize-javascript</a> 222ms<br>
401 http fetch GET 200 <a href="https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz" rel="nofollow">https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz</a> 217ms<br>
402 silly pacote range manifest for serialize-javascript@^4.0.0 fetched in 444ms<br>
403 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-log" rel="nofollow">https://registry.npmjs.org/webpack-log</a> 228ms<br>
404 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz</a> 212ms<br>
405 silly pacote range manifest for webpack-log@^2.0.0 fetched in 445ms<br>
406 http fetch GET 200 <a href="https://registry.npmjs.org/@soda/friendly-errors-webpack-plugin/-/friendly-errors-webpack-plugin-1.8.0.tgz" rel="nofollow">https://registry.npmjs.org/@soda/friendly-errors-webpack-plugin/-/friendly-errors-webpack-plugin-1.8.0.tgz</a> 103138ms attempt <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="338763849" data-permission-text="Title is private" data-url="https://github.com/npm/cli/issues/3" data-hovercard-type="pull_request" data-hovercard-url="/npm/cli/pull/3/hovercard" href="https://github.com/npm/cli/pull/3">#3</a><br>
407 http fetch GET 200 <a href="https://registry.npmjs.org/@vue%2fpreload-webpack-plugin" rel="nofollow">https://registry.npmjs.org/@vue%2fpreload-webpack-plugin</a> 103127ms attempt <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="338763849" data-permission-text="Title is private" data-url="https://github.com/npm/cli/issues/3" data-hovercard-type="pull_request" data-hovercard-url="/npm/cli/pull/3/hovercard" href="https://github.com/npm/cli/pull/3">#3</a><br>
408 http fetch GET 200 <a href="https://registry.npmjs.org/@soda/get-current-script/-/get-current-script-1.0.2.tgz" rel="nofollow">https://registry.npmjs.org/@soda/get-current-script/-/get-current-script-1.0.2.tgz</a> 103132ms attempt <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="338763849" data-permission-text="Title is private" data-url="https://github.com/npm/cli/issues/3" data-hovercard-type="pull_request" data-hovercard-url="/npm/cli/pull/3/hovercard" href="https://github.com/npm/cli/pull/3">#3</a><br>
409 http fetch GET 304 <a href="https://registry.npmjs.org/camelcase" rel="nofollow">https://registry.npmjs.org/camelcase</a> 236ms (from cache)<br>
410 silly pacote range manifest for camelcase@^5.3.1 fetched in 237ms<br>
411 silly pacote range manifest for @soda/friendly-errors-webpack-plugin@^1.7.1 fetched in 103808ms<br>
412 silly pacote range manifest for @soda/get-current-script@^1.0.0 fetched in 103810ms<br>
413 http fetch GET 200 <a href="https://registry.npmjs.org/@vue%2fcli-plugin-vuex" rel="nofollow">https://registry.npmjs.org/@vue%2fcli-plugin-vuex</a> 103364ms attempt <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="338763849" data-permission-text="Title is private" data-url="https://github.com/npm/cli/issues/3" data-hovercard-type="pull_request" data-hovercard-url="/npm/cli/pull/3/hovercard" href="https://github.com/npm/cli/pull/3">#3</a><br>
414 http fetch GET 200 <a href="https://registry.npmjs.org/@vue/preload-webpack-plugin/-/preload-webpack-plugin-1.1.2.tgz" rel="nofollow">https://registry.npmjs.org/@vue/preload-webpack-plugin/-/preload-webpack-plugin-1.1.2.tgz</a> 215ms<br>
415 http fetch GET 304 <a href="https://registry.npmjs.org/icss-utils" rel="nofollow">https://registry.npmjs.org/icss-utils</a> 214ms (from cache)<br>
416 http fetch GET 304 <a href="https://registry.npmjs.org/postcss-modules-extract-imports" rel="nofollow">https://registry.npmjs.org/postcss-modules-extract-imports</a> 211ms (from cache)<br>
417 http fetch GET 304 <a href="https://registry.npmjs.org/cssesc" rel="nofollow">https://registry.npmjs.org/cssesc</a> 216ms (from cache)<br>
418 silly pacote range manifest for cssesc@^3.0.0 fetched in 220ms<br>
419 silly pacote range manifest for @vue/preload-webpack-plugin@^1.1.0 fetched in 103354ms<br>
420 http fetch GET 200 <a href="https://registry.npmjs.org/@vue%2fcomponent-compiler-utils" rel="nofollow">https://registry.npmjs.org/@vue%2fcomponent-compiler-utils</a> 103583ms attempt <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="338763849" data-permission-text="Title is private" data-url="https://github.com/npm/cli/issues/3" data-hovercard-type="pull_request" data-hovercard-url="/npm/cli/pull/3/hovercard" href="https://github.com/npm/cli/pull/3">#3</a><br>
421 http fetch GET 200 <a href="https://registry.npmjs.org/@vue/cli-plugin-vuex/-/cli-plugin-vuex-4.5.11.tgz" rel="nofollow">https://registry.npmjs.org/@vue/cli-plugin-vuex/-/cli-plugin-vuex-4.5.11.tgz</a> 232ms<br>
422 http fetch GET 200 <a href="https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz" rel="nofollow">https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz</a> 227ms<br>
423 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz</a> 227ms<br>
424 http fetch GET 304 <a href="https://registry.npmjs.org/postcss-modules-scope" rel="nofollow">https://registry.npmjs.org/postcss-modules-scope</a> 228ms (from cache)<br>
425 http fetch GET 304 <a href="https://registry.npmjs.org/postcss-modules-local-by-default" rel="nofollow">https://registry.npmjs.org/postcss-modules-local-by-default</a> 229ms (from cache)<br>
426 silly pacote range manifest for @vue/cli-plugin-vuex@^4.5.11 fetched in 103608ms<br>
427 silly pacote range manifest for icss-utils@^4.1.1 fetched in 451ms<br>
428 silly pacote range manifest for postcss-modules-extract-imports@^2.0.0 fetched in 450ms<br>
429 silly pacote range manifest for schema-utils@^2.7.0 fetched in 2ms<br>
430 silly pacote range manifest for semver@^6.3.0 fetched in 3ms<br>
431 silly pacote range manifest for cssnano-preset-default@^4.0.7 fetched in 2ms<br>
432 http fetch GET 200 <a href="https://registry.npmjs.org/@vue/component-compiler-utils/-/component-compiler-utils-3.2.0.tgz" rel="nofollow">https://registry.npmjs.org/@vue/component-compiler-utils/-/component-compiler-utils-3.2.0.tgz</a> 205ms<br>
433 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz" rel="nofollow">https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz</a> 200ms<br>
434 http fetch GET 200 <a href="https://registry.npmjs.org/is-resolvable" rel="nofollow">https://registry.npmjs.org/is-resolvable</a> 193ms<br>
435 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz" rel="nofollow">https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz</a> 203ms<br>
436 http fetch GET 304 <a href="https://registry.npmjs.org/postcss-modules-values" rel="nofollow">https://registry.npmjs.org/postcss-modules-values</a> 204ms (from cache)<br>
437 http fetch GET 304 <a href="https://registry.npmjs.org/cosmiconfig" rel="nofollow">https://registry.npmjs.org/cosmiconfig</a> 201ms (from cache)<br>
438 silly pacote range manifest for cosmiconfig@^5.0.0 fetched in 204ms<br>
439 silly pacote range manifest for postcss-modules-local-by-default@^3.0.2 fetched in 441ms<br>
440 silly pacote range manifest for @vue/component-compiler-utils@^3.1.2 fetched in 103802ms<br>
441 silly pacote range manifest for execa@^3.3.0 fetched in 3ms<br>
442 silly pacote range manifest for schema-utils@^2.5.0 fetched in 4ms<br>
443 silly pacote range manifest for postcss-modules-scope@^2.2.0 fetched in 444ms<br>
444 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz</a> 230ms<br>
445 http fetch GET 200 <a href="https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz</a> 233ms<br>
446 http fetch GET 304 <a href="https://registry.npmjs.org/ms" rel="nofollow">https://registry.npmjs.org/ms</a> 231ms (from cache)<br>
447 http fetch GET 304 <a href="https://registry.npmjs.org/universalify" rel="nofollow">https://registry.npmjs.org/universalify</a> 225ms (from cache)<br>
448 http fetch GET 304 <a href="https://registry.npmjs.org/graceful-fs" rel="nofollow">https://registry.npmjs.org/graceful-fs</a> 228ms (from cache)<br>
449 http fetch GET 304 <a href="https://registry.npmjs.org/jsonfile" rel="nofollow">https://registry.npmjs.org/jsonfile</a> 228ms (from cache)<br>
450 silly pacote version manifest for ms@2.1.2 fetched in 234ms<br>
451 silly pacote range manifest for universalify@^0.1.0 fetched in 228ms<br>
452 silly pacote range manifest for graceful-fs@^4.1.2 fetched in 231ms<br>
453 silly pacote range manifest for jsonfile@^4.0.0 fetched in 231ms<br>
454 silly pacote range manifest for postcss-modules-values@^3.0.0 fetched in 445ms<br>
455 silly pacote range manifest for is-resolvable@^1.0.0 fetched in 439ms<br>
456 http fetch GET 304 <a href="https://registry.npmjs.org/array-union" rel="nofollow">https://registry.npmjs.org/array-union</a> 195ms (from cache)<br>
457 http fetch GET 304 <a href="https://registry.npmjs.org/glob" rel="nofollow">https://registry.npmjs.org/glob</a> 190ms (from cache)<br>
458 http fetch GET 304 <a href="https://registry.npmjs.org/dir-glob" rel="nofollow">https://registry.npmjs.org/dir-glob</a> 196ms (from cache)<br>
459 http fetch GET 304 <a href="https://registry.npmjs.org/@types%2fglob" rel="nofollow">https://registry.npmjs.org/@types%2fglob</a> 197ms (from cache)<br>
460 http fetch GET 304 <a href="https://registry.npmjs.org/ignore" rel="nofollow">https://registry.npmjs.org/ignore</a> 192ms (from cache)<br>
461 http fetch GET 304 <a href="https://registry.npmjs.org/fast-glob" rel="nofollow">https://registry.npmjs.org/fast-glob</a> 197ms (from cache)<br>
462 silly pacote range manifest for array-union@^1.0.2 fetched in 200ms<br>
463 silly pacote range manifest for glob@^7.1.3 fetched in 194ms<br>
464 silly pacote range manifest for dir-glob@^2.2.2 fetched in 199ms<br>
465 silly pacote range manifest for @types/glob@^7.1.1 fetched in 203ms<br>
466 silly pacote range manifest for ignore@^4.0.3 fetched in 198ms<br>
467 silly pacote range manifest for fast-glob@^2.2.6 fetched in 203ms<br>
468 silly pacote range manifest for lodash@^4.17.3 fetched in 6ms<br>
469 silly pacote range manifest for tapable@^1.0.0 fetched in 1ms<br>
470 http fetch GET 200 <a href="https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz" rel="nofollow">https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz</a> 208ms<br>
471 http fetch GET 304 <a href="https://registry.npmjs.org/pify" rel="nofollow">https://registry.npmjs.org/pify</a> 215ms (from cache)<br>
472 silly pacote range manifest for pify@^4.0.1 fetched in 216ms<br>
473 silly pacote range manifest for loader-utils@^0.2.16 fetched in 217ms<br>
474 http fetch GET 304 <a href="https://registry.npmjs.org/slash" rel="nofollow">https://registry.npmjs.org/slash</a> 220ms (from cache)<br>
475 http fetch GET 200 <a href="https://registry.npmjs.org/toposort" rel="nofollow">https://registry.npmjs.org/toposort</a> 211ms<br>
476 silly pacote range manifest for slash@^2.0.0 fetched in 222ms<br>
477 silly pacote range manifest for webpack-sources@^1.1.0 fetched in 2ms<br>
478 http fetch GET 200 <a href="https://registry.npmjs.org/pretty-error" rel="nofollow">https://registry.npmjs.org/pretty-error</a> 219ms<br>
479 http fetch GET 200 <a href="https://registry.npmjs.org/html-minifier" rel="nofollow">https://registry.npmjs.org/html-minifier</a> 303ms<br>
480 http fetch GET 200 <a href="https://registry.npmjs.org/ts-pnp" rel="nofollow">https://registry.npmjs.org/ts-pnp</a> 235ms<br>
481 http fetch GET 200 <a href="https://registry.npmjs.org/toposort/-/toposort-1.0.7.tgz" rel="nofollow">https://registry.npmjs.org/toposort/-/toposort-1.0.7.tgz</a> 237ms<br>
482 http fetch GET 200 <a href="https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz" rel="nofollow">https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz</a> 236ms<br>
483 http fetch GET 304 <a href="https://registry.npmjs.org/util.promisify" rel="nofollow">https://registry.npmjs.org/util.promisify</a> 250ms (from cache)<br>
484 http fetch GET 304 <a href="https://registry.npmjs.org/normalize-url" rel="nofollow">https://registry.npmjs.org/normalize-url</a> 247ms (from cache)<br>
485 http fetch GET 200 <a href="https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.21.tgz" rel="nofollow">https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.21.tgz</a> 163ms<br>
486 silly pacote range manifest for toposort@^1.0.0 fetched in 459ms<br>
487 silly pacote range manifest for pretty-error@^2.0.2 fetched in 466ms<br>
488 silly pacote range manifest for debug@^3.1.1 fetched in 1ms<br>
489 silly pacote range manifest for mkdirp@^0.5.5 fetched in 1ms<br>
490 silly pacote range manifest for html-minifier@^3.2.3 fetched in 475ms<br>
491 http fetch GET 200 <a href="https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz" rel="nofollow">https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz</a> 190ms<br>
492 http fetch GET 200 <a href="https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz" rel="nofollow">https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz</a> 197ms<br>
493 http fetch GET 200 <a href="https://registry.npmjs.org/figgy-pudding" rel="nofollow">https://registry.npmjs.org/figgy-pudding</a> 184ms<br>
494 http fetch GET 200 <a href="https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz</a> 194ms<br>
495 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-load-config" rel="nofollow">https://registry.npmjs.org/postcss-load-config</a> 187ms<br>
496 http fetch GET 304 <a href="https://registry.npmjs.org/async" rel="nofollow">https://registry.npmjs.org/async</a> 195ms (from cache)<br>
497 silly pacote range manifest for async@^2.6.2 fetched in 197ms<br>
498 silly pacote range manifest for ts-pnp@^1.1.6 fetched in 445ms<br>
499 silly pacote version manifest for util.promisify@1.0.0 fetched in 455ms<br>
500 silly pacote version manifest for normalize-url@1.9.1 fetched in 451ms<br>
501 silly pacote range manifest for p-limit@^2.3.0 fetched in 2ms<br>
502 silly pacote range manifest for schema-utils@^2.6.6 fetched in 2ms<br>
503 silly pacote range manifest for source-map@^0.6.1 fetched in 1ms<br>
504 http fetch GET 200 <a href="https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz" rel="nofollow">https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz</a> 232ms<br>
505 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.2.tgz" rel="nofollow">https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.2.tgz</a> 232ms<br>
506 silly pacote range manifest for postcss-load-config@^2.0.0 fetched in 425ms<br>
507 silly pacote range manifest for figgy-pudding@^3.5.1 fetched in 424ms<br>
508 http fetch GET 200 <a href="https://registry.npmjs.org/cacache/-/cacache-13.0.1.tgz" rel="nofollow">https://registry.npmjs.org/cacache/-/cacache-13.0.1.tgz</a> 228ms<br>
509 silly pacote range manifest for webpack-sources@^1.4.3 fetched in 3ms<br>
510 silly pacote range manifest for @vue/component-compiler-utils@^3.1.0 fetched in 2ms<br>
511 silly pacote range manifest for cacache@^13.0.1 fetched in 237ms<br>
512 http fetch GET 200 <a href="https://registry.npmjs.org/minipass" rel="nofollow">https://registry.npmjs.org/minipass</a> 429ms<br>
513 http fetch GET 200 <a href="https://registry.npmjs.org/jest-worker" rel="nofollow">https://registry.npmjs.org/jest-worker</a> 427ms<br>
514 http fetch GET 200 <a href="https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz" rel="nofollow">https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz</a> 203ms<br>
515 http fetch GET 200 <a href="https://registry.npmjs.org/vue-hot-reload-api" rel="nofollow">https://registry.npmjs.org/vue-hot-reload-api</a> 200ms<br>
516 http fetch GET 304 <a href="https://registry.npmjs.org/mime" rel="nofollow">https://registry.npmjs.org/mime</a> 211ms (from cache)<br>
517 silly pacote range manifest for hash-sum@^1.0.2 fetched in 210ms<br>
518 silly pacote range manifest for vue-style-loader@^4.1.0 fetched in 1ms<br>
519 silly pacote range manifest for loader-utils@^1.0.2 fetched in 1ms<br>
520 silly pacote range manifest for acorn@^7.1.1 fetched in 2ms<br>
521 http fetch GET 200 <a href="https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz" rel="nofollow">https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz</a> 225ms<br>
522 http fetch GET 200 <a href="https://registry.npmjs.org/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz" rel="nofollow">https://registry.npmjs.org/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz</a> 218ms<br>
523 http fetch GET 200 <a href="https://registry.npmjs.org/jest-worker/-/jest-worker-25.5.0.tgz" rel="nofollow">https://registry.npmjs.org/jest-worker/-/jest-worker-25.5.0.tgz</a> 227ms<br>
524 http fetch GET 200 <a href="https://registry.npmjs.org/terser" rel="nofollow">https://registry.npmjs.org/terser</a> 654ms<br>
525 silly pacote range manifest for minipass@^3.1.1 fetched in 668ms<br>
526 silly pacote range manifest for vue-hot-reload-api@^2.3.0 fetched in 430ms<br>
527 silly pacote range manifest for chalk@^2.4.1 fetched in 1ms<br>
528 silly pacote range manifest for jest-worker@^25.4.0 fetched in 671ms<br>
529 http fetch GET 200 <a href="https://registry.npmjs.org/mime/-/mime-2.5.2.tgz" rel="nofollow">https://registry.npmjs.org/mime/-/mime-2.5.2.tgz</a> 230ms<br>
530 http fetch GET 200 <a href="https://registry.npmjs.org/bfj" rel="nofollow">https://registry.npmjs.org/bfj</a> 226ms<br>
531 silly pacote range manifest for mime@^2.4.4 fetched in 447ms<br>
532 http fetch GET 304 <a href="https://registry.npmjs.org/commander" rel="nofollow">https://registry.npmjs.org/commander</a> 209ms (from cache)<br>
533 http fetch GET 304 <a href="https://registry.npmjs.org/ejs" rel="nofollow">https://registry.npmjs.org/ejs</a> 213ms (from cache)<br>
534 silly pacote range manifest for commander@^2.18.0 fetched in 217ms<br>
535 silly pacote range manifest for ejs@^2.6.1 fetched in 218ms<br>
536 http fetch GET 304 <a href="https://registry.npmjs.org/express" rel="nofollow">https://registry.npmjs.org/express</a> 217ms (from cache)<br>
537 silly pacote range manifest for express@^4.16.3 fetched in 227ms<br>
538 http fetch GET 200 <a href="https://registry.npmjs.org/bfj/-/bfj-6.1.2.tgz" rel="nofollow">https://registry.npmjs.org/bfj/-/bfj-6.1.2.tgz</a> 231ms<br>
539 http fetch GET 200 <a href="https://registry.npmjs.org/filesize" rel="nofollow">https://registry.npmjs.org/filesize</a> 228ms<br>
540 silly pacote range manifest for bfj@^6.1.1 fetched in 463ms<br>
541 http fetch GET 200 <a href="https://registry.npmjs.org/opener" rel="nofollow">https://registry.npmjs.org/opener</a> 213ms<br>
542 http fetch GET 200 <a href="https://registry.npmjs.org/gzip-size" rel="nofollow">https://registry.npmjs.org/gzip-size</a> 216ms<br>
543 http fetch GET 200 <a href="https://registry.npmjs.org/@types/webpack-dev-server/-/webpack-dev-server-3.11.1.tgz" rel="nofollow">https://registry.npmjs.org/@types/webpack-dev-server/-/webpack-dev-server-3.11.1.tgz</a> 106001ms attempt <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="338763849" data-permission-text="Title is private" data-url="https://github.com/npm/cli/issues/3" data-hovercard-type="pull_request" data-hovercard-url="/npm/cli/pull/3/hovercard" href="https://github.com/npm/cli/pull/3">#3</a><br>
544 http fetch GET 304 <a href="https://registry.npmjs.org/ws" rel="nofollow">https://registry.npmjs.org/ws</a> 207ms (from cache)<br>
545 silly pacote range manifest for ws@^6.0.0 fetched in 209ms<br>
546 http fetch GET 200 <a href="https://registry.npmjs.org/filesize/-/filesize-3.6.1.tgz" rel="nofollow">https://registry.npmjs.org/filesize/-/filesize-3.6.1.tgz</a> 204ms<br>
547 silly pacote range manifest for @types/webpack-dev-server@^3.11.0 fetched in 106264ms<br>
548 http fetch GET 304 <a href="https://registry.npmjs.org/deepmerge" rel="nofollow">https://registry.npmjs.org/deepmerge</a> 206ms (from cache)<br>
549 silly pacote range manifest for filesize@^3.6.1 fetched in 517ms<br>
550 http fetch GET 200 <a href="https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz" rel="nofollow">https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz</a> 249ms<br>
551 http fetch GET 200 <a href="https://registry.npmjs.org/ansi-html" rel="nofollow">https://registry.npmjs.org/ansi-html</a> 240ms<br>
552 http fetch GET 200 <a href="https://registry.npmjs.org/deepmerge/-/deepmerge-1.5.2.tgz" rel="nofollow">https://registry.npmjs.org/deepmerge/-/deepmerge-1.5.2.tgz</a> 235ms<br>
553 http fetch GET 200 <a href="https://registry.npmjs.org/opener/-/opener-1.5.2.tgz" rel="nofollow">https://registry.npmjs.org/opener/-/opener-1.5.2.tgz</a> 253ms<br>
554 http fetch GET 200 <a href="https://registry.npmjs.org/bonjour" rel="nofollow">https://registry.npmjs.org/bonjour</a> 161ms<br>
555 http fetch GET 200 <a href="https://registry.npmjs.org/terser/-/terser-4.8.0.tgz" rel="nofollow">https://registry.npmjs.org/terser/-/terser-4.8.0.tgz</a> 691ms<br>
556 http fetch GET 304 <a href="https://registry.npmjs.org/javascript-stringify" rel="nofollow">https://registry.npmjs.org/javascript-stringify</a> 253ms (from cache)<br>
557 silly pacote range manifest for deepmerge@^1.5.2 fetched in 452ms<br>
558 silly pacote range manifest for opener@^1.5.1 fetched in 478ms<br>
559 silly pacote range manifest for gzip-size@^5.0.0 fetched in 480ms<br>
560 silly pacote range manifest for terser@^4.6.12 fetched in 1358ms<br>
561 http fetch GET 200 <a href="https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz" rel="nofollow">https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz</a> 5511ms<br>
562 http fetch GET 200 <a href="https://registry.npmjs.org/del" rel="nofollow">https://registry.npmjs.org/del</a> 5504ms<br>
563 http fetch GET 304 <a href="https://registry.npmjs.org/chokidar" rel="nofollow">https://registry.npmjs.org/chokidar</a> 5512ms (from cache)<br>
564 http fetch GET 200 <a href="https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz" rel="nofollow">https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz</a> 5520ms<br>
565 http fetch GET 200 <a href="https://registry.npmjs.org/connect-history-api-fallback" rel="nofollow">https://registry.npmjs.org/connect-history-api-fallback</a> 5514ms<br>
566 http fetch GET 200 <a href="https://registry.npmjs.org/compression" rel="nofollow">https://registry.npmjs.org/compression</a> 5515ms<br>
567 silly pacote version manifest for ansi-html@0.0.7 fetched in 5767ms<br>
568 silly pacote range manifest for chokidar@^2.1.8 fetched in 5519ms<br>
569 warn deprecated chokidar@2.1.8: Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies.<br>
570 http fetch GET 200 <a href="https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.0.1.tgz" rel="nofollow">https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.0.1.tgz</a> 5520ms<br>
571 silly pacote range manifest for express@^4.17.1 fetched in 6ms<br>
572 silly pacote range manifest for bonjour@^3.5.0 fetched in 5694ms<br>
573 silly pacote range manifest for javascript-stringify@^2.0.1 fetched in 5784ms<br>
574 http fetch GET 200 <a href="https://registry.npmjs.org/compression/-/compression-1.7.4.tgz" rel="nofollow">https://registry.npmjs.org/compression/-/compression-1.7.4.tgz</a> 193ms<br>
575 http fetch GET 200 <a href="https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz" rel="nofollow">https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz</a> 195ms<br>
576 http fetch GET 200 <a href="https://registry.npmjs.org/del/-/del-4.1.1.tgz" rel="nofollow">https://registry.npmjs.org/del/-/del-4.1.1.tgz</a> 205ms<br>
577 http fetch GET 200 <a href="https://registry.npmjs.org/import-local" rel="nofollow">https://registry.npmjs.org/import-local</a> 189ms<br>
578 silly pacote range manifest for compression@^1.7.4 fetched in 5719ms<br>
579 silly pacote range manifest for connect-history-api-fallback@^1.6.0 fetched in 5721ms<br>
580 silly pacote range manifest for del@^4.1.1 fetched in 5721ms<br>
581 http fetch GET 200 <a href="https://registry.npmjs.org/html-entities" rel="nofollow">https://registry.npmjs.org/html-entities</a> 209ms<br>
582 http fetch GET 200 <a href="https://registry.npmjs.org/internal-ip" rel="nofollow">https://registry.npmjs.org/internal-ip</a> 214ms<br>
583 http fetch GET 200 <a href="https://registry.npmjs.org/http-proxy-middleware" rel="nofollow">https://registry.npmjs.org/http-proxy-middleware</a> 231ms<br>
584 http fetch GET 200 <a href="https://registry.npmjs.org/is-absolute-url" rel="nofollow">https://registry.npmjs.org/is-absolute-url</a> 196ms<br>
585 http fetch GET 200 <a href="https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz</a> 202ms<br>
586 http fetch GET 200 <a href="https://registry.npmjs.org/ip" rel="nofollow">https://registry.npmjs.org/ip</a> 199ms<br>
587 http fetch GET 200 <a href="https://registry.npmjs.org/killable" rel="nofollow">https://registry.npmjs.org/killable</a> 200ms<br>
588 http fetch GET 200 <a href="https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz" rel="nofollow">https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz</a> 180ms<br>
589 http fetch GET 200 <a href="https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz" rel="nofollow">https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz</a> 168ms<br>
590 http fetch GET 200 <a href="https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz" rel="nofollow">https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz</a> 195ms<br>
591 silly pacote range manifest for import-local@^2.0.0 fetched in 400ms<br>
592 silly pacote range manifest for internal-ip@^4.3.0 fetched in 401ms<br>
593 silly pacote version manifest for http-proxy-middleware@0.19.1 fetched in 407ms<br>
594 silly pacote range manifest for html-entities@^1.3.1 fetched in 412ms<br>
595 http fetch GET 200 <a href="https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz" rel="nofollow">https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz</a> 228ms<br>
596 http fetch GET 200 <a href="https://registry.npmjs.org/p-retry" rel="nofollow">https://registry.npmjs.org/p-retry</a> 218ms<br>
597 http fetch GET 200 <a href="https://registry.npmjs.org/selfsigned" rel="nofollow">https://registry.npmjs.org/selfsigned</a> 217ms<br>
598 http fetch GET 200 <a href="https://registry.npmjs.org/killable/-/killable-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/killable/-/killable-1.0.1.tgz</a> 225ms<br>
599 http fetch GET 200 <a href="https://registry.npmjs.org/opn" rel="nofollow">https://registry.npmjs.org/opn</a> 221ms<br>
600 http fetch GET 200 <a href="https://registry.npmjs.org/ip/-/ip-1.1.5.tgz" rel="nofollow">https://registry.npmjs.org/ip/-/ip-1.1.5.tgz</a> 231ms<br>
601 http fetch GET 304 <a href="https://registry.npmjs.org/loglevel" rel="nofollow">https://registry.npmjs.org/loglevel</a> 230ms (from cache)<br>
602 silly pacote range manifest for loglevel@^1.6.8 fetched in 231ms<br>
603 silly pacote range manifest for killable@^1.0.1 fetched in 437ms<br>
604 silly pacote range manifest for is-absolute-url@^3.0.3 fetched in 438ms<br>
605 silly pacote range manifest for ip@^1.1.5 fetched in 440ms<br>
606 http fetch GET 200 <a href="https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz" rel="nofollow">https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz</a> 228ms<br>
607 http fetch GET 200 <a href="https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.8.tgz" rel="nofollow">https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.8.tgz</a> 228ms<br>
608 http fetch GET 200 <a href="https://registry.npmjs.org/opn/-/opn-5.5.0.tgz" rel="nofollow">https://registry.npmjs.org/opn/-/opn-5.5.0.tgz</a> 228ms<br>
609 http fetch GET 200 <a href="https://registry.npmjs.org/serve-index" rel="nofollow">https://registry.npmjs.org/serve-index</a> 226ms<br>
610 http fetch GET 200 <a href="https://registry.npmjs.org/sockjs-client" rel="nofollow">https://registry.npmjs.org/sockjs-client</a> 224ms<br>
611 http fetch GET 200 <a href="https://registry.npmjs.org/sockjs" rel="nofollow">https://registry.npmjs.org/sockjs</a> 226ms<br>
612 http fetch GET 200 <a href="https://registry.npmjs.org/spdy" rel="nofollow">https://registry.npmjs.org/spdy</a> 231ms<br>
613 silly pacote range manifest for p-retry@^3.0.1 fetched in 462ms<br>
614 silly pacote range manifest for opn@^5.5.0 fetched in 464ms<br>
615 silly pacote range manifest for strip-ansi@^3.0.1 fetched in 2ms<br>
616 silly pacote range manifest for selfsigned@^1.10.8 fetched in 463ms<br>
617 http fetch GET 200 <a href="https://registry.npmjs.org/url" rel="nofollow">https://registry.npmjs.org/url</a> 203ms<br>
618 http fetch GET 200 <a href="https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz" rel="nofollow">https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz</a> 213ms<br>
619 http fetch GET 200 <a href="https://registry.npmjs.org/sockjs/-/sockjs-0.3.21.tgz" rel="nofollow">https://registry.npmjs.org/sockjs/-/sockjs-0.3.21.tgz</a> 218ms<br>
620 silly pacote range manifest for serve-index@^1.9.1 fetched in 450ms<br>
621 http fetch GET 200 <a href="https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz" rel="nofollow">https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz</a> 215ms<br>
622 silly pacote range manifest for ws@^6.2.1 fetched in 2ms<br>
623 http fetch GET 304 <a href="https://registry.npmjs.org/supports-color" rel="nofollow">https://registry.npmjs.org/supports-color</a> 219ms (from cache)<br>
624 silly pacote range manifest for sockjs@^0.3.21 fetched in 456ms<br>
625 silly pacote range manifest for lodash@^4.17.15 fetched in 2ms<br>
626 silly pacote range manifest for spdy@^4.0.2 fetched in 457ms<br>
627 silly pacote range manifest for chalk@^4.1.0 fetched in 2ms<br>
628 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-dev-middleware" rel="nofollow">https://registry.npmjs.org/webpack-dev-middleware</a> 431ms<br>
629 http fetch GET 200 <a href="https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz" rel="nofollow">https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz</a> 215ms<br>
630 silly pacote range manifest for supports-color@^6.1.0 fetched in 439ms<br>
631 http fetch GET 200 <a href="https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz" rel="nofollow">https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz</a> 225ms<br>
632 silly pacote range manifest for yargs@^13.3.2 fetched in 229ms<br>
633 http fetch GET 200 <a href="https://registry.npmjs.org/url/-/url-0.11.0.tgz" rel="nofollow">https://registry.npmjs.org/url/-/url-0.11.0.tgz</a> 247ms<br>
634 silly pacote range manifest for url@^0.11.0 fetched in 459ms<br>
635 http fetch GET 200 <a href="https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz</a> 239ms<br>
636 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fhighlight" rel="nofollow">https://registry.npmjs.org/@babel%2fhighlight</a> 240ms (from cache)<br>
637 silly pacote range manifest for @babel/highlight@^7.12.13 fetched in 240ms<br>
638 silly pacote range manifest for browserslist@^4.14.5 fetched in 0ms<br>
639 silly pacote range manifest for @babel/helper-module-imports@^7.12.13 fetched in 1ms<br>
640 silly pacote range manifest for loader-utils@^2.0.0 fetched in 253ms<br>
641 http fetch GET 200 <a href="https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz" rel="nofollow">https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz</a> 204ms<br>
642 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fhelper-replace-supers" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-replace-supers</a> 174ms (from cache)<br>
643 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fhelper-validator-option" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-validator-option</a> 183ms (from cache)<br>
644 http fetch GET 304 <a href="https://registry.npmjs.org/jsesc" rel="nofollow">https://registry.npmjs.org/jsesc</a> 203ms (from cache)<br>
645 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fcompat-data" rel="nofollow">https://registry.npmjs.org/@babel%2fcompat-data</a> 199ms (from cache)<br>
646 silly pacote range manifest for @babel/helper-replace-supers@^7.13.0 fetched in 177ms<br>
647 silly pacote range manifest for @babel/helper-validator-option@^7.12.17 fetched in 185ms<br>
648 silly pacote range manifest for jsesc@^2.5.1 fetched in 206ms<br>
649 silly pacote range manifest for @babel/compat-data@^7.13.0 fetched in 202ms<br>
650 silly pacote range manifest for webpack-dev-middleware@^3.7.2 fetched in 645ms<br>
651 silly pacote range manifest for @babel/parser@^7.12.13 fetched in 2ms<br>
652 silly pacote range manifest for @babel/types@^7.12.13 fetched in 3ms<br>
653 http fetch GET 200 <a href="https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.5.0.tgz" rel="nofollow">https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.5.0.tgz</a> 864ms<br>
654 http fetch GET 304 <a href="https://registry.npmjs.org/to-fast-properties" rel="nofollow">https://registry.npmjs.org/to-fast-properties</a> 210ms (from cache)<br>
655 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fhelper-split-export-declaration" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-split-export-declaration</a> 216ms (from cache)<br>
656 http fetch GET 304 <a href="https://registry.npmjs.org/globals" rel="nofollow">https://registry.npmjs.org/globals</a> 212ms (from cache)<br>
657 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fhelper-validator-identifier" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-validator-identifier</a> 216ms (from cache)<br>
658 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fhelper-simple-access" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-simple-access</a> 385ms (from cache)<br>
659 silly pacote range manifest for globals@^11.1.0 fetched in 215ms<br>
660 silly pacote range manifest for @babel/helper-validator-identifier@^7.12.11 fetched in 218ms<br>
661 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fhelper-function-name" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-function-name</a> 217ms (from cache)<br>
662 silly pacote range manifest for @babel/helper-split-export-declaration@^7.12.13 fetched in 221ms<br>
663 silly pacote range manifest for to-fast-properties@^2.0.0 fetched in 215ms<br>
664 silly pacote range manifest for @babel/helper-simple-access@^7.12.13 fetched in 389ms<br>
665 silly pacote range manifest for @babel/helper-function-name@^7.12.13 fetched in 221ms<br>
666 silly pacote range manifest for sockjs-client@^1.5.0 fetched in 1106ms<br>
667 http fetch GET 304 <a href="https://registry.npmjs.org/@hapi%2faddress" rel="nofollow">https://registry.npmjs.org/@hapi%2faddress</a> 231ms (from cache)<br>
668 http fetch GET 304 <a href="https://registry.npmjs.org/safe-buffer" rel="nofollow">https://registry.npmjs.org/safe-buffer</a> 232ms (from cache)<br>
669 http fetch GET 304 <a href="https://registry.npmjs.org/ansi-styles" rel="nofollow">https://registry.npmjs.org/ansi-styles</a> 227ms (from cache)<br>
670 http fetch GET 304 <a href="https://registry.npmjs.org/@hapi%2fhoek" rel="nofollow">https://registry.npmjs.org/@hapi%2fhoek</a> 232ms (from cache)<br>
671 http fetch GET 304 <a href="https://registry.npmjs.org/@hapi%2fbourne" rel="nofollow">https://registry.npmjs.org/@hapi%2fbourne</a> 233ms (from cache)<br>
672 http fetch GET 304 <a href="https://registry.npmjs.org/@hapi%2ftopo" rel="nofollow">https://registry.npmjs.org/@hapi%2ftopo</a> 235ms (from cache)<br>
673 http fetch GET 304 <a href="https://registry.npmjs.org/escape-string-regexp" rel="nofollow">https://registry.npmjs.org/escape-string-regexp</a> 230ms (from cache)<br>
674 silly pacote range manifest for safe-buffer@~5.1.1 fetched in 239ms<br>
675 silly pacote range manifest for @hapi/<a href="mailto:address@2.x.x">address@2.x.x</a> fetched in 239ms<br>
676 warn deprecated @hapi/address@2.1.4: Moved to 'npm install @sideway/address'<br>
677 silly pacote range manifest for ansi-styles@^3.2.1 fetched in 240ms<br>
678 silly pacote range manifest for @hapi/<a href="mailto:hoek@8.x.x">hoek@8.x.x</a> fetched in 242ms<br>
679 warn deprecated @hapi/hoek@8.5.1: This version has been deprecated and is no longer supported or maintained<br>
680 silly pacote range manifest for @hapi/<a href="mailto:bourne@1.x.x">bourne@1.x.x</a> fetched in 245ms<br>
681 warn deprecated @hapi/bourne@1.3.2: This version has been deprecated and is no longer supported or maintained<br>
682 silly pacote range manifest for escape-string-regexp@^1.0.5 fetched in 239ms<br>
683 silly pacote range manifest for @hapi/<a href="mailto:topo@3.x.x">topo@3.x.x</a> fetched in 245ms<br>
684 warn deprecated @hapi/topo@3.1.6: This version has been deprecated and is no longer supported or maintained<br>
685 silly pacote range manifest for supports-color@^5.3.0 fetched in 7ms<br>
686 http fetch GET 304 <a href="https://registry.npmjs.org/npm-run-path" rel="nofollow">https://registry.npmjs.org/npm-run-path</a> 185ms (from cache)<br>
687 http fetch GET 304 <a href="https://registry.npmjs.org/cross-spawn" rel="nofollow">https://registry.npmjs.org/cross-spawn</a> 190ms (from cache)<br>
688 http fetch GET 304 <a href="https://registry.npmjs.org/p-finally" rel="nofollow">https://registry.npmjs.org/p-finally</a> 185ms (from cache)<br>
689 http fetch GET 304 <a href="https://registry.npmjs.org/get-stream" rel="nofollow">https://registry.npmjs.org/get-stream</a> 189ms (from cache)<br>
690 http fetch GET 304 <a href="https://registry.npmjs.org/is-stream" rel="nofollow">https://registry.npmjs.org/is-stream</a> 189ms (from cache)<br>
691 silly pacote range manifest for npm-run-path@^2.0.0 fetched in 188ms<br>
692 http fetch GET 304 <a href="https://registry.npmjs.org/signal-exit" rel="nofollow">https://registry.npmjs.org/signal-exit</a> 187ms (from cache)<br>
693 silly pacote range manifest for cross-spawn@^6.0.0 fetched in 193ms<br>
694 http fetch GET 304 <a href="https://registry.npmjs.org/strip-eof" rel="nofollow">https://registry.npmjs.org/strip-eof</a> 186ms (from cache)<br>
695 silly pacote range manifest for p-finally@^1.0.0 fetched in 189ms<br>
696 silly pacote range manifest for get-stream@^4.0.0 fetched in 193ms<br>
697 silly pacote range manifest for is-stream@^1.1.0 fetched in 194ms<br>
698 silly pacote range manifest for chalk@^2.3.0 fetched in 4ms<br>
699 silly pacote range manifest for signal-exit@^3.0.0 fetched in 192ms<br>
700 silly pacote range manifest for strip-eof@^1.0.0 fetched in 191ms<br>
701 silly pacote range manifest for is-wsl@^1.1.0 fetched in 4ms<br>
702 http fetch GET 304 <a href="https://registry.npmjs.org/js-queue" rel="nofollow">https://registry.npmjs.org/js-queue</a> 212ms (from cache)<br>
703 http fetch GET 304 <a href="https://registry.npmjs.org/shell-quote" rel="nofollow">https://registry.npmjs.org/shell-quote</a> 215ms (from cache)<br>
704 http fetch GET 304 <a href="https://registry.npmjs.org/cli-cursor" rel="nofollow">https://registry.npmjs.org/cli-cursor</a> 211ms (from cache)<br>
705 http fetch GET 304 <a href="https://registry.npmjs.org/js-message" rel="nofollow">https://registry.npmjs.org/js-message</a> 214ms (from cache)<br>
706 http fetch GET 304 <a href="https://registry.npmjs.org/event-pubsub" rel="nofollow">https://registry.npmjs.org/event-pubsub</a> 215ms (from cache)<br>
707 http fetch GET 304 <a href="https://registry.npmjs.org/yallist" rel="nofollow">https://registry.npmjs.org/yallist</a> 217ms (from cache)<br>
708 silly pacote range manifest for cli-cursor@^2.1.0 fetched in 213ms<br>
709 http fetch GET 304 <a href="https://registry.npmjs.org/cli-spinners" rel="nofollow">https://registry.npmjs.org/cli-spinners</a> 210ms (from cache)<br>
710 silly pacote version manifest for js-queue@2.0.2 fetched in 215ms<br>
711 silly pacote range manifest for shell-quote@^1.6.1 fetched in 218ms<br>
712 silly pacote version manifest for js-message@1.0.7 fetched in 216ms<br>
713 silly pacote version manifest for event-pubsub@4.3.0 fetched in 219ms<br>
714 silly pacote range manifest for yallist@^3.0.2 fetched in 222ms<br>
715 silly pacote range manifest for cli-spinners@^2.0.0 fetched in 215ms<br>
716 silly pacote range manifest for strip-ansi@^5.2.0 fetched in 4ms<br>
717 http fetch GET 304 <a href="https://registry.npmjs.org/parse-json" rel="nofollow">https://registry.npmjs.org/parse-json</a> 215ms (from cache)<br>
718 http fetch GET 304 <a href="https://registry.npmjs.org/wcwidth" rel="nofollow">https://registry.npmjs.org/wcwidth</a> 218ms (from cache)<br>
719 http fetch GET 304 <a href="https://registry.npmjs.org/type-fest" rel="nofollow">https://registry.npmjs.org/type-fest</a> 215ms (from cache)<br>
720 http fetch GET 304 <a href="https://registry.npmjs.org/normalize-package-data" rel="nofollow">https://registry.npmjs.org/normalize-package-data</a> 218ms (from cache)<br>
721 http fetch GET 304 <a href="https://registry.npmjs.org/log-symbols" rel="nofollow">https://registry.npmjs.org/log-symbols</a> 221ms (from cache)<br>
722 http fetch GET 304 <a href="https://registry.npmjs.org/@types%2fnormalize-package-data" rel="nofollow">https://registry.npmjs.org/@types%2fnormalize-package-data</a> 220ms (from cache)<br>
723 http fetch GET 304 <a href="https://registry.npmjs.org/aws-sign2" rel="nofollow">https://registry.npmjs.org/aws-sign2</a> 217ms (from cache)<br>
724 silly pacote range manifest for parse-json@^5.0.0 fetched in 218ms<br>
725 silly pacote range manifest for wcwidth@^1.0.1 fetched in 222ms<br>
726 silly pacote range manifest for type-fest@^0.6.0 fetched in 219ms<br>
727 silly pacote range manifest for normalize-package-data@^2.5.0 fetched in 222ms<br>
728 silly pacote range manifest for @types/normalize-package-data@^2.4.0 fetched in 224ms<br>
729 silly pacote range manifest for log-symbols@^2.2.0 fetched in 225ms<br>
730 silly pacote range manifest for aws-sign2@~0.7.0 fetched in 222ms<br>
731 http fetch GET 304 <a href="https://registry.npmjs.org/caseless" rel="nofollow">https://registry.npmjs.org/caseless</a> 211ms (from cache)<br>
732 http fetch GET 304 <a href="https://registry.npmjs.org/aws4" rel="nofollow">https://registry.npmjs.org/aws4</a> 212ms (from cache)<br>
733 http fetch GET 304 <a href="https://registry.npmjs.org/forever-agent" rel="nofollow">https://registry.npmjs.org/forever-agent</a> 210ms (from cache)<br>
734 http fetch GET 304 <a href="https://registry.npmjs.org/extend" rel="nofollow">https://registry.npmjs.org/extend</a> 211ms (from cache)<br>
735 http fetch GET 304 <a href="https://registry.npmjs.org/combined-stream" rel="nofollow">https://registry.npmjs.org/combined-stream</a> 212ms (from cache)<br>
736 http fetch GET 304 <a href="https://registry.npmjs.org/har-validator" rel="nofollow">https://registry.npmjs.org/har-validator</a> 210ms (from cache)<br>
737 http fetch GET 304 <a href="https://registry.npmjs.org/form-data" rel="nofollow">https://registry.npmjs.org/form-data</a> 212ms (from cache)<br>
738 silly pacote range manifest for caseless@~0.12.0 fetched in 217ms<br>
739 silly pacote range manifest for aws4@^1.8.0 fetched in 218ms<br>
740 silly pacote range manifest for forever-agent@~0.6.1 fetched in 215ms<br>
741 silly pacote range manifest for extend@~3.0.2 fetched in 217ms<br>
742 silly pacote range manifest for har-validator@~5.1.3 fetched in 215ms<br>
743 warn deprecated har-validator@5.1.5: this library is no longer supported<br>
744 silly pacote range manifest for combined-stream@~1.0.6 fetched in 217ms<br>
745 silly pacote range manifest for form-data@~2.3.2 fetched in 218ms<br>
746 http fetch GET 304 <a href="https://registry.npmjs.org/json-stringify-safe" rel="nofollow">https://registry.npmjs.org/json-stringify-safe</a> 220ms (from cache)<br>
747 http fetch GET 304 <a href="https://registry.npmjs.org/is-typedarray" rel="nofollow">https://registry.npmjs.org/is-typedarray</a> 221ms (from cache)<br>
748 http fetch GET 304 <a href="https://registry.npmjs.org/mime-types" rel="nofollow">https://registry.npmjs.org/mime-types</a> 221ms (from cache)<br>
749 http fetch GET 304 <a href="https://registry.npmjs.org/isstream" rel="nofollow">https://registry.npmjs.org/isstream</a> 223ms (from cache)<br>
750 http fetch GET 304 <a href="https://registry.npmjs.org/oauth-sign" rel="nofollow">https://registry.npmjs.org/oauth-sign</a> 221ms (from cache)<br>
751 http fetch GET 304 <a href="https://registry.npmjs.org/performance-now" rel="nofollow">https://registry.npmjs.org/performance-now</a> 220ms (from cache)<br>
752 http fetch GET 304 <a href="https://registry.npmjs.org/http-signature" rel="nofollow">https://registry.npmjs.org/http-signature</a> 225ms (from cache)<br>
753 silly pacote range manifest for json-stringify-safe@~5.0.1 fetched in 223ms<br>
754 silly pacote range manifest for is-typedarray@~1.0.0 fetched in 225ms<br>
755 silly pacote range manifest for mime-types@~2.1.19 fetched in 225ms<br>
756 silly pacote range manifest for isstream@~0.1.2 fetched in 226ms<br>
757 silly pacote range manifest for oauth-sign@~0.9.0 fetched in 225ms<br>
758 silly pacote range manifest for performance-now@^2.1.0 fetched in 224ms<br>
759 silly pacote range manifest for http-signature@~1.2.0 fetched in 229ms<br>
760 silly pacote range manifest for safe-buffer@^5.1.2 fetched in 4ms<br>
761 http fetch GET 304 <a href="https://registry.npmjs.org/tunnel-agent" rel="nofollow">https://registry.npmjs.org/tunnel-agent</a> 219ms (from cache)<br>
762 http fetch GET 304 <a href="https://registry.npmjs.org/ansi-regex" rel="nofollow">https://registry.npmjs.org/ansi-regex</a> 217ms (from cache)<br>
763 http fetch GET 304 <a href="https://registry.npmjs.org/qs" rel="nofollow">https://registry.npmjs.org/qs</a> 220ms (from cache)<br>
764 http fetch GET 304 <a href="https://registry.npmjs.org/tough-cookie" rel="nofollow">https://registry.npmjs.org/tough-cookie</a> 221ms (from cache)<br>
765 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fhelper-plugin-utils" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-plugin-utils</a> 217ms (from cache)<br>
766 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fhelper-create-class-features-plugin" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-create-class-features-plugin</a> 219ms (from cache)<br>
767 http fetch GET 304 <a href="https://registry.npmjs.org/uuid" rel="nofollow">https://registry.npmjs.org/uuid</a> 221ms (from cache)<br>
768 silly pacote range manifest for tunnel-agent@^0.6.0 fetched in 223ms<br>
769 silly pacote range manifest for ansi-regex@^5.0.0 fetched in 224ms<br>
770 silly pacote range manifest for qs@~6.5.2 fetched in 227ms<br>
771 silly pacote range manifest for tough-cookie@~2.5.0 fetched in 227ms<br>
772 silly pacote range manifest for @babel/helper-plugin-utils@^7.13.0 fetched in 224ms<br>
773 silly pacote range manifest for @babel/helper-create-class-features-plugin@^7.13.0 fetched in 225ms<br>
774 silly pacote range manifest for uuid@^3.3.2 fetched in 228ms<br>
775 silly pacote range manifest for @babel/helper-plugin-utils@^7.8.0 fetched in 3ms<br>
776 silly pacote range manifest for @babel/helper-plugin-utils@^7.12.13 fetched in 4ms<br>
777 silly pacote range manifest for @babel/compat-data@^7.13.5 fetched in 2ms<br>
778 silly pacote range manifest for @babel/plugin-proposal-class-properties@^7.13.0 fetched in 2ms<br>
779 http fetch GET 200 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-decorators" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-decorators</a> 222ms<br>
780 http fetch GET 304 <a href="https://registry.npmjs.org/babel-plugin-polyfill-regenerator" rel="nofollow">https://registry.npmjs.org/babel-plugin-polyfill-regenerator</a> 222ms (from cache)<br>
781 http fetch GET 304 <a href="https://registry.npmjs.org/babel-plugin-polyfill-corejs2" rel="nofollow">https://registry.npmjs.org/babel-plugin-polyfill-corejs2</a> 224ms (from cache)<br>
782 http fetch GET 304 <a href="https://registry.npmjs.org/babel-plugin-polyfill-corejs3" rel="nofollow">https://registry.npmjs.org/babel-plugin-polyfill-corejs3</a> 224ms (from cache)<br>
783 silly pacote range manifest for babel-plugin-polyfill-regenerator@^0.1.2 fetched in 224ms<br>
784 silly pacote range manifest for babel-plugin-polyfill-corejs2@^0.1.4 fetched in 226ms<br>
785 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-dynamic-import" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-dynamic-import</a> 220ms (from cache)<br>
786 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-async-generator-functions" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-async-generator-functions</a> 225ms (from cache)<br>
787 silly pacote range manifest for babel-plugin-polyfill-corejs3@^0.1.3 fetched in 227ms<br>
788 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-export-namespace-from" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-export-namespace-from</a> 222ms (from cache)<br>
789 silly pacote range manifest for @babel/plugin-proposal-dynamic-import@^7.12.17 fetched in 224ms<br>
790 silly pacote range manifest for @babel/plugin-proposal-async-generator-functions@^7.13.5 fetched in 229ms<br>
791 silly pacote range manifest for @babel/plugin-proposal-export-namespace-from@^7.12.13 fetched in 227ms<br>
792 http fetch GET 200 <a href="https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.12.13.tgz" rel="nofollow">https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.12.13.tgz</a> 209ms<br>
793 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-json-strings" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-json-strings</a> 209ms (from cache)<br>
794 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-nullish-coalescing-operator" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-nullish-coalescing-operator</a> 207ms (from cache)<br>
795 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-numeric-separator" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-numeric-separator</a> 206ms (from cache)<br>
796 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-logical-assignment-operators" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-logical-assignment-operators</a> 210ms (from cache)<br>
797 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-optional-catch-binding" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-optional-catch-binding</a> 204ms (from cache)<br>
798 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-object-rest-spread" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-object-rest-spread</a> 206ms (from cache)<br>
799 silly pacote range manifest for @babel/plugin-proposal-json-strings@^7.12.13 fetched in 213ms<br>
800 silly pacote range manifest for @babel/plugin-proposal-nullish-coalescing-operator@^7.13.0 fetched in 211ms<br>
801 silly pacote range manifest for @babel/plugin-proposal-numeric-separator@^7.12.13 fetched in 210ms<br>
802 silly pacote range manifest for @babel/plugin-proposal-logical-assignment-operators@^7.12.13 fetched in 215ms<br>
803 silly pacote range manifest for @babel/plugin-proposal-optional-catch-binding@^7.12.13 fetched in 209ms<br>
804 silly pacote range manifest for @babel/plugin-syntax-decorators@^7.12.13 fetched in 445ms<br>
805 silly pacote range manifest for @babel/plugin-proposal-object-rest-spread@^7.13.0 fetched in 211ms<br>
806 silly pacote range manifest for @babel/plugin-syntax-dynamic-import@^7.8.0 fetched in 3ms<br>
807 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-private-methods" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-private-methods</a> 206ms (from cache)<br>
808 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-export-namespace-from" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-export-namespace-from</a> 204ms (from cache)<br>
809 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-optional-chaining" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-optional-chaining</a> 207ms (from cache)<br>
810 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-json-strings" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-json-strings</a> 201ms (from cache)<br>
811 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-class-properties" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-class-properties</a> 207ms (from cache)<br>
812 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-proposal-unicode-property-regex" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-proposal-unicode-property-regex</a> 209ms (from cache)<br>
813 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-async-generators" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-async-generators</a> 208ms (from cache)<br>
814 silly pacote range manifest for @babel/plugin-proposal-private-methods@^7.13.0 fetched in 210ms<br>
815 silly pacote range manifest for @babel/plugin-syntax-export-namespace-from@^7.8.3 fetched in 207ms<br>
816 silly pacote range manifest for @babel/plugin-proposal-optional-chaining@^7.13.0 fetched in 212ms<br>
817 silly pacote range manifest for @babel/plugin-syntax-json-strings@^7.8.0 fetched in 206ms<br>
818 silly pacote range manifest for @babel/plugin-syntax-class-properties@^7.12.13 fetched in 212ms<br>
819 silly pacote range manifest for @babel/plugin-proposal-unicode-property-regex@^7.12.13 fetched in 214ms<br>
820 silly pacote range manifest for @babel/plugin-syntax-async-generators@^7.8.0 fetched in 215ms<br>
821 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-numeric-separator" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-numeric-separator</a> 218ms (from cache)<br>
822 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-logical-assignment-operators" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-logical-assignment-operators</a> 219ms (from cache)<br>
823 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-nullish-coalescing-operator" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-nullish-coalescing-operator</a> 219ms (from cache)<br>
824 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-object-rest-spread" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-object-rest-spread</a> 217ms (from cache)<br>
825 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-optional-chaining" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-optional-chaining</a> 216ms (from cache)<br>
826 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-optional-catch-binding" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-optional-catch-binding</a> 217ms (from cache)<br>
827 silly pacote range manifest for @babel/plugin-syntax-object-rest-spread@^7.8.0 fetched in 219ms<br>
828 silly pacote range manifest for @babel/plugin-syntax-numeric-separator@^7.10.4 fetched in 222ms<br>
829 silly pacote range manifest for @babel/plugin-syntax-logical-assignment-operators@^7.10.4 fetched in 222ms<br>
830 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-syntax-top-level-await" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-syntax-top-level-await</a> 217ms (from cache)<br>
831 silly pacote range manifest for @babel/plugin-syntax-nullish-coalescing-operator@^7.8.0 fetched in 224ms<br>
832 silly pacote range manifest for @babel/plugin-syntax-optional-chaining@^7.8.0 fetched in 220ms<br>
833 silly pacote range manifest for @babel/plugin-syntax-optional-catch-binding@^7.8.0 fetched in 222ms<br>
834 silly pacote range manifest for @babel/plugin-syntax-top-level-await@^7.12.13 fetched in 225ms<br>
835 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-arrow-functions" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-arrow-functions</a> 212ms (from cache)<br>
836 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-block-scoped-functions" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-block-scoped-functions</a> 213ms (from cache)<br>
837 silly pacote range manifest for @babel/plugin-transform-arrow-functions@^7.13.0 fetched in 216ms<br>
838 silly pacote range manifest for @babel/plugin-transform-block-scoped-functions@^7.12.13 fetched in 216ms<br>
839 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-classes" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-classes</a> 219ms (from cache)<br>
840 silly pacote range manifest for @babel/plugin-transform-classes@^7.13.0 fetched in 221ms<br>
841 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-async-to-generator" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-async-to-generator</a> 226ms (from cache)<br>
842 silly pacote range manifest for @babel/plugin-transform-async-to-generator@^7.13.0 fetched in 227ms<br>
843 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-block-scoping" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-block-scoping</a> 229ms (from cache)<br>
844 silly pacote range manifest for @babel/plugin-transform-block-scoping@^7.12.13 fetched in 231ms<br>
845 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-computed-properties" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-computed-properties</a> 234ms (from cache)<br>
846 silly pacote range manifest for @babel/plugin-transform-computed-properties@^7.13.0 fetched in 235ms<br>
847 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-destructuring" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-destructuring</a> 229ms (from cache)<br>
848 silly pacote range manifest for @babel/plugin-transform-destructuring@^7.13.0 fetched in 231ms<br>
849 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-for-of" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-for-of</a> 210ms (from cache)<br>
850 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-exponentiation-operator" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-exponentiation-operator</a> 214ms (from cache)<br>
851 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-literals" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-literals</a> 200ms (from cache)<br>
852 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-duplicate-keys" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-duplicate-keys</a> 221ms (from cache)<br>
853 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-dotall-regex" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-dotall-regex</a> 224ms (from cache)<br>
854 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-member-expression-literals" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-member-expression-literals</a> 196ms (from cache)<br>
855 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-function-name" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-function-name</a> 209ms (from cache)<br>
856 silly pacote range manifest for @babel/plugin-transform-for-of@^7.13.0 fetched in 214ms<br>
857 silly pacote range manifest for @babel/plugin-transform-exponentiation-operator@^7.12.13 fetched in 219ms<br>
858 silly pacote range manifest for @babel/plugin-transform-duplicate-keys@^7.12.13 fetched in 226ms<br>
859 silly pacote range manifest for @babel/plugin-transform-literals@^7.12.13 fetched in 204ms<br>
860 silly pacote range manifest for @babel/plugin-transform-dotall-regex@^7.12.13 fetched in 229ms<br>
861 silly pacote range manifest for @babel/plugin-transform-member-expression-literals@^7.12.13 fetched in 200ms<br>
862 silly pacote range manifest for @babel/plugin-transform-function-name@^7.12.13 fetched in 213ms<br>
863 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-named-capturing-groups-regex" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-named-capturing-groups-regex</a> 215ms (from cache)<br>
864 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-modules-amd" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-modules-amd</a> 218ms (from cache)<br>
865 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-modules-umd" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-modules-umd</a> 217ms (from cache)<br>
866 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-modules-systemjs" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-modules-systemjs</a> 217ms (from cache)<br>
867 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-modules-commonjs" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-modules-commonjs</a> 219ms (from cache)<br>
868 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-object-super" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-object-super</a> 217ms (from cache)<br>
869 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-new-target" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-new-target</a> 219ms (from cache)<br>
870 silly pacote range manifest for @babel/plugin-transform-named-capturing-groups-regex@^7.12.13 fetched in 219ms<br>
871 silly pacote range manifest for @babel/plugin-transform-modules-amd@^7.13.0 fetched in 223ms<br>
872 silly pacote range manifest for @babel/plugin-transform-modules-umd@^7.13.0 fetched in 221ms<br>
873 silly pacote range manifest for @babel/plugin-transform-modules-systemjs@^7.12.13 fetched in 221ms<br>
874 silly pacote range manifest for @babel/plugin-transform-modules-commonjs@^7.13.0 fetched in 223ms<br>
875 silly pacote range manifest for @babel/plugin-transform-object-super@^7.12.13 fetched in 222ms<br>
876 silly pacote range manifest for @babel/plugin-transform-new-target@^7.12.13 fetched in 225ms<br>
877 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-parameters" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-parameters</a> 219ms (from cache)<br>
878 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-shorthand-properties" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-shorthand-properties</a> 218ms (from cache)<br>
879 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-spread" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-spread</a> 218ms (from cache)<br>
880 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-regenerator" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-regenerator</a> 220ms (from cache)<br>
881 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-reserved-words" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-reserved-words</a> 220ms (from cache)<br>
882 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-property-literals" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-property-literals</a> 222ms (from cache)<br>
883 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-sticky-regex" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-sticky-regex</a> 218ms (from cache)<br>
884 silly pacote range manifest for @babel/plugin-transform-parameters@^7.13.0 fetched in 225ms<br>
885 silly pacote range manifest for @babel/plugin-transform-spread@^7.13.0 fetched in 223ms<br>
886 silly pacote range manifest for @babel/plugin-transform-shorthand-properties@^7.12.13 fetched in 224ms<br>
887 silly pacote range manifest for @babel/plugin-transform-regenerator@^7.12.13 fetched in 225ms<br>
888 silly pacote range manifest for @babel/plugin-transform-reserved-words@^7.12.13 fetched in 227ms<br>
889 silly pacote range manifest for @babel/plugin-transform-property-literals@^7.12.13 fetched in 227ms<br>
890 silly pacote range manifest for @babel/plugin-transform-sticky-regex@^7.12.13 fetched in 224ms<br>
891 silly pacote range manifest for core-js-compat@^3.9.0 fetched in 4ms<br>
892 silly pacote range manifest for @babel/helper-module-imports@^7.0.0 fetched in 2ms<br>
893 silly pacote range manifest for @babel/plugin-syntax-jsx@^7.0.0 fetched in 1ms<br>
894 silly pacote range manifest for @babel/template@^7.0.0 fetched in 0ms<br>
895 silly pacote range manifest for @babel/traverse@^7.0.0 fetched in 1ms<br>
896 silly pacote range manifest for @babel/types@^7.0.0 fetched in 2ms<br>
897 http fetch GET 200 <a href="https://registry.npmjs.org/@vue%2fbabel-helper-vue-transform-on" rel="nofollow">https://registry.npmjs.org/@vue%2fbabel-helper-vue-transform-on</a> 192ms<br>
898 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-unicode-escapes" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-unicode-escapes</a> 208ms (from cache)<br>
899 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-typeof-symbol" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-typeof-symbol</a> 209ms (from cache)<br>
900 http fetch GET 304 <a href="https://registry.npmjs.org/regenerator-runtime" rel="nofollow">https://registry.npmjs.org/regenerator-runtime</a> 207ms (from cache)<br>
901 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fpreset-modules" rel="nofollow">https://registry.npmjs.org/@babel%2fpreset-modules</a> 209ms (from cache)<br>
902 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-template-literals" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-template-literals</a> 212ms (from cache)<br>
903 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fplugin-transform-unicode-regex" rel="nofollow">https://registry.npmjs.org/@babel%2fplugin-transform-unicode-regex</a> 210ms (from cache)<br>
904 silly pacote range manifest for @babel/plugin-transform-unicode-escapes@^7.12.13 fetched in 211ms<br>
905 silly pacote range manifest for @babel/plugin-transform-typeof-symbol@^7.12.13 fetched in 213ms<br>
906 silly pacote range manifest for regenerator-runtime@^0.13.4 fetched in 210ms<br>
907 silly pacote range manifest for @babel/preset-modules@^0.1.3 fetched in 212ms<br>
908 silly pacote range manifest for @babel/plugin-transform-unicode-regex@^7.12.13 fetched in 214ms<br>
909 silly pacote range manifest for @babel/plugin-transform-template-literals@^7.13.0 fetched in 216ms<br>
910 http fetch GET 200 <a href="https://registry.npmjs.org/@vue%2fbabel-helper-vue-jsx-merge-props" rel="nofollow">https://registry.npmjs.org/@vue%2fbabel-helper-vue-jsx-merge-props</a> 214ms<br>
911 http fetch GET 200 <a href="https://registry.npmjs.org/svg-tags" rel="nofollow">https://registry.npmjs.org/svg-tags</a> 216ms<br>
912 http fetch GET 200 <a href="https://registry.npmjs.org/html-tags" rel="nofollow">https://registry.npmjs.org/html-tags</a> 217ms<br>
913 http fetch GET 200 <a href="https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz" rel="nofollow">https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz</a> 216ms<br>
914 http fetch GET 200 <a href="https://registry.npmjs.org/@vue%2fbabel-plugin-transform-vue-jsx" rel="nofollow">https://registry.npmjs.org/@vue%2fbabel-plugin-transform-vue-jsx</a> 216ms<br>
915 http fetch GET 200 <a href="https://registry.npmjs.org/@vue%2fbabel-sugar-composition-api-inject-h" rel="nofollow">https://registry.npmjs.org/@vue%2fbabel-sugar-composition-api-inject-h</a> 218ms<br>
916 silly pacote range manifest for camelcase@^6.0.0 fetched in 225ms<br>
917 http fetch GET 200 <a href="https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz</a> 224ms<br>
918 http fetch GET 200 <a href="https://registry.npmjs.org/html-tags/-/html-tags-3.1.0.tgz" rel="nofollow">https://registry.npmjs.org/html-tags/-/html-tags-3.1.0.tgz</a> 224ms<br>
919 http fetch GET 200 <a href="https://registry.npmjs.org/@vue/babel-sugar-composition-api-inject-h/-/babel-sugar-composition-api-inject-h-1.2.1.tgz" rel="nofollow">https://registry.npmjs.org/@vue/babel-sugar-composition-api-inject-h/-/babel-sugar-composition-api-inject-h-1.2.1.tgz</a> 222ms<br>
920 http fetch GET 200 <a href="https://registry.npmjs.org/@vue%2fbabel-sugar-composition-api-render-instance" rel="nofollow">https://registry.npmjs.org/@vue%2fbabel-sugar-composition-api-render-instance</a> 220ms<br>
921 http fetch GET 200 <a href="https://registry.npmjs.org/@vue/babel-plugin-transform-vue-jsx/-/babel-plugin-transform-vue-jsx-1.2.1.tgz" rel="nofollow">https://registry.npmjs.org/@vue/babel-plugin-transform-vue-jsx/-/babel-plugin-transform-vue-jsx-1.2.1.tgz</a> 225ms<br>
922 http fetch GET 200 <a href="https://registry.npmjs.org/@vue/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-1.2.1.tgz" rel="nofollow">https://registry.npmjs.org/@vue/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-1.2.1.tgz</a> 230ms<br>
923 silly pacote range manifest for svg-tags@^1.0.0 fetched in 449ms<br>
924 silly pacote range manifest for html-tags@^3.1.0 fetched in 450ms<br>
925 silly pacote range manifest for @vue/babel-plugin-transform-vue-jsx@^1.2.1 fetched in 448ms<br>
926 silly pacote range manifest for @vue/babel-sugar-composition-api-inject-h@^1.2.1 fetched in 448ms<br>
927 silly pacote range manifest for @vue/babel-helper-vue-jsx-merge-props@^1.2.1 fetched in 452ms<br>
928 http fetch GET 200 <a href="https://registry.npmjs.org/@vue/babel-sugar-composition-api-render-instance/-/babel-sugar-composition-api-render-instance-1.2.4.tgz" rel="nofollow">https://registry.npmjs.org/@vue/babel-sugar-composition-api-render-instance/-/babel-sugar-composition-api-render-instance-1.2.4.tgz</a> 210ms<br>
929 http fetch GET 200 <a href="https://registry.npmjs.org/@vue%2fbabel-sugar-functional-vue" rel="nofollow">https://registry.npmjs.org/@vue%2fbabel-sugar-functional-vue</a> 207ms<br>
930 http fetch GET 304 <a href="https://registry.npmjs.org/object.assign" rel="nofollow">https://registry.npmjs.org/object.assign</a> 209ms (from cache)<br>
931 silly pacote range manifest for object.assign@^4.1.0 fetched in 210ms<br>
932 silly pacote range manifest for browserslist@^4.16.3 fetched in 2ms<br>
933 http fetch GET 200 <a href="https://registry.npmjs.org/@vue%2fbabel-sugar-v-on" rel="nofollow">https://registry.npmjs.org/@vue%2fbabel-sugar-v-on</a> 215ms<br>
934 silly pacote range manifest for @vue/babel-sugar-composition-api-render-instance@^1.2.4 fetched in 442ms<br>
935 http fetch GET 200 <a href="https://registry.npmjs.org/@vue%2fbabel-sugar-inject-h" rel="nofollow">https://registry.npmjs.org/@vue%2fbabel-sugar-inject-h</a> 217ms<br>
936 http fetch GET 200 <a href="https://registry.npmjs.org/@vue%2fbabel-sugar-v-model" rel="nofollow">https://registry.npmjs.org/@vue%2fbabel-sugar-v-model</a> 218ms<br>
937 silly pacote range manifest for make-dir@^3.0.2 fetched in 4ms<br>
938 http fetch GET 200 <a href="https://registry.npmjs.org/@vue/babel-sugar-inject-h/-/babel-sugar-inject-h-1.2.2.tgz" rel="nofollow">https://registry.npmjs.org/@vue/babel-sugar-inject-h/-/babel-sugar-inject-h-1.2.2.tgz</a> 229ms<br>
939 http fetch GET 200 <a href="https://registry.npmjs.org/@vue/babel-sugar-functional-vue/-/babel-sugar-functional-vue-1.2.2.tgz" rel="nofollow">https://registry.npmjs.org/@vue/babel-sugar-functional-vue/-/babel-sugar-functional-vue-1.2.2.tgz</a> 238ms<br>
940 http fetch GET 200 <a href="https://registry.npmjs.org/@vue/babel-sugar-v-model/-/babel-sugar-v-model-1.2.3.tgz" rel="nofollow">https://registry.npmjs.org/@vue/babel-sugar-v-model/-/babel-sugar-v-model-1.2.3.tgz</a> 228ms<br>
941 http fetch GET 200 <a href="https://registry.npmjs.org/@vue/babel-sugar-v-on/-/babel-sugar-v-on-1.2.3.tgz" rel="nofollow">https://registry.npmjs.org/@vue/babel-sugar-v-on/-/babel-sugar-v-on-1.2.3.tgz</a> 231ms<br>
942 http fetch GET 304 <a href="https://registry.npmjs.org/commondir" rel="nofollow">https://registry.npmjs.org/commondir</a> 235ms (from cache)<br>
943 http fetch GET 304 <a href="https://registry.npmjs.org/pkg-dir" rel="nofollow">https://registry.npmjs.org/pkg-dir</a> 231ms (from cache)<br>
944 silly pacote range manifest for commondir@^1.0.1 fetched in 237ms<br>
945 silly pacote range manifest for @vue/babel-sugar-inject-h@^1.2.2 fetched in 455ms<br>
946 silly pacote range manifest for @vue/babel-sugar-v-model@^1.2.3 fetched in 454ms<br>
947 silly pacote range manifest for @vue/babel-sugar-functional-vue@^1.2.2 fetched in 458ms<br>
948 silly pacote range manifest for @vue/babel-sugar-v-on@^1.2.3 fetched in 456ms<br>
949 silly pacote range manifest for json5@^1.0.1 fetched in 4ms<br>
950 silly pacote range manifest for ajv@^6.12.4 fetched in 2ms<br>
951 silly pacote range manifest for ajv-keywords@^3.5.2 fetched in 3ms<br>
952 silly pacote range manifest for semver@^6.0.0 fetched in 3ms<br>
953 http fetch GET 200 <a href="https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz" rel="nofollow">https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz</a> 193ms<br>
954 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fjson-schema" rel="nofollow">https://registry.npmjs.org/@types%2fjson-schema</a> 189ms<br>
955 http fetch GET 304 <a href="https://registry.npmjs.org/big.js" rel="nofollow">https://registry.npmjs.org/big.js</a> 203ms (from cache)<br>
956 http fetch GET 304 <a href="https://registry.npmjs.org/emojis-list" rel="nofollow">https://registry.npmjs.org/emojis-list</a> 203ms (from cache)<br>
957 silly pacote range manifest for big.js@^5.2.2 fetched in 206ms<br>
958 silly pacote range manifest for pkg-dir@^4.1.0 fetched in 440ms<br>
959 silly pacote range manifest for emojis-list@^3.0.0 fetched in 206ms<br>
960 http fetch GET 200 <a href="https://registry.npmjs.org/cssnano-util-raw-cache" rel="nofollow">https://registry.npmjs.org/cssnano-util-raw-cache</a> 201ms<br>
961 http fetch GET 200 <a href="https://registry.npmjs.org/css-declaration-sorter" rel="nofollow">https://registry.npmjs.org/css-declaration-sorter</a> 203ms<br>
962 http fetch GET 200 <a href="https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.0.2.tgz" rel="nofollow">https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.0.2.tgz</a> 1144ms<br>
963 silly pacote range manifest for @vue/babel-helper-vue-transform-on@^1.0.2 fetched in 1340ms<br>
964 http fetch GET 200 <a href="https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz" rel="nofollow">https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz</a> 226ms<br>
965 http fetch GET 200 <a href="https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz" rel="nofollow">https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz</a> 211ms<br>
966 silly pacote range manifest for @types/json-schema@^7.0.5 fetched in 423ms<br>
967 silly pacote range manifest for cssnano-util-raw-cache@^4.0.1 fetched in 420ms<br>
968 http fetch GET 200 <a href="https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz" rel="nofollow">https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz</a> 221ms<br>
969 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-discard-comments" rel="nofollow">https://registry.npmjs.org/postcss-discard-comments</a> 197ms<br>
970 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-calc" rel="nofollow">https://registry.npmjs.org/postcss-calc</a> 229ms<br>
971 silly pacote range manifest for css-declaration-sorter@^4.0.1 fetched in 435ms<br>
972 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-convert-values" rel="nofollow">https://registry.npmjs.org/postcss-convert-values</a> 234ms<br>
973 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-colormin" rel="nofollow">https://registry.npmjs.org/postcss-colormin</a> 239ms<br>
974 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz" rel="nofollow">https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz</a> 189ms<br>
975 silly pacote range manifest for postcss-colormin@^4.0.3 fetched in 434ms<br>
976 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz" rel="nofollow">https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz</a> 211ms<br>
977 silly pacote range manifest for postcss-discard-comments@^4.0.2 fetched in 411ms<br>
978 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-discard-duplicates" rel="nofollow">https://registry.npmjs.org/postcss-discard-duplicates</a> 225ms<br>
979 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz</a> 209ms<br>
980 silly pacote range manifest for postcss-convert-values@^4.0.1 fetched in 450ms<br>
981 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-discard-empty" rel="nofollow">https://registry.npmjs.org/postcss-discard-empty</a> 231ms<br>
982 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz" rel="nofollow">https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz</a> 227ms<br>
983 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-discard-overridden" rel="nofollow">https://registry.npmjs.org/postcss-discard-overridden</a> 222ms<br>
984 silly pacote range manifest for postcss-calc@^7.0.1 fetched in 461ms<br>
985 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-merge-rules" rel="nofollow">https://registry.npmjs.org/postcss-merge-rules</a> 230ms<br>
986 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz" rel="nofollow">https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz</a> 228ms<br>
987 silly pacote range manifest for postcss-discard-duplicates@^4.0.2 fetched in 466ms<br>
988 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz</a> 240ms<br>
989 silly pacote range manifest for postcss-discard-empty@^4.0.1 fetched in 476ms<br>
990 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz</a> 278ms<br>
991 silly pacote range manifest for postcss-discard-overridden@^4.0.1 fetched in 504ms<br>
992 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-minify-font-values" rel="nofollow">https://registry.npmjs.org/postcss-minify-font-values</a> 420ms<br>
993 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-merge-longhand" rel="nofollow">https://registry.npmjs.org/postcss-merge-longhand</a> 437ms<br>
994 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-minify-gradients" rel="nofollow">https://registry.npmjs.org/postcss-minify-gradients</a> 418ms<br>
995 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz" rel="nofollow">https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz</a> 203ms<br>
996 silly pacote range manifest for postcss-merge-rules@^4.0.3 fetched in 443ms<br>
997 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-minify-params" rel="nofollow">https://registry.npmjs.org/postcss-minify-params</a> 198ms<br>
998 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-minify-selectors" rel="nofollow">https://registry.npmjs.org/postcss-minify-selectors</a> 199ms<br>
999 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-charset" rel="nofollow">https://registry.npmjs.org/postcss-normalize-charset</a> 189ms<br>
1000 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz" rel="nofollow">https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz</a> 224ms<br>
1001 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz" rel="nofollow">https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz</a> 200ms<br>
1002 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz" rel="nofollow">https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz</a> 215ms<br>
1003 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz" rel="nofollow">https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz</a> 229ms<br>
1004 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz" rel="nofollow">https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz</a> 225ms<br>
1005 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-display-values" rel="nofollow">https://registry.npmjs.org/postcss-normalize-display-values</a> 222ms<br>
1006 silly pacote range manifest for postcss-minify-font-values@^4.0.2 fetched in 656ms<br>
1007 silly pacote range manifest for postcss-minify-selectors@^4.0.2 fetched in 410ms<br>
1008 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz</a> 176ms<br>
1009 silly pacote range manifest for postcss-merge-longhand@^4.0.11 fetched in 679ms<br>
1010 silly pacote range manifest for postcss-minify-params@^4.0.2 fetched in 426ms<br>
1011 silly pacote range manifest for postcss-minify-gradients@^4.0.2 fetched in 656ms<br>
1012 silly pacote range manifest for postcss-normalize-charset@^4.0.1 fetched in 377ms<br>
1013 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz" rel="nofollow">https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz</a> 207ms<br>
1014 silly pacote range manifest for postcss-normalize-display-values@^4.0.2 fetched in 435ms<br>
1015 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-string" rel="nofollow">https://registry.npmjs.org/postcss-normalize-string</a> 211ms<br>
1016 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-positions" rel="nofollow">https://registry.npmjs.org/postcss-normalize-positions</a> 221ms<br>
1017 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-timing-functions" rel="nofollow">https://registry.npmjs.org/postcss-normalize-timing-functions</a> 220ms<br>
1018 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-repeat-style" rel="nofollow">https://registry.npmjs.org/postcss-normalize-repeat-style</a> 250ms<br>
1019 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-url" rel="nofollow">https://registry.npmjs.org/postcss-normalize-url</a> 252ms<br>
1020 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-unicode" rel="nofollow">https://registry.npmjs.org/postcss-normalize-unicode</a> 254ms<br>
1021 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz" rel="nofollow">https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz</a> 206ms<br>
1022 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz" rel="nofollow">https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz</a> 197ms<br>
1023 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-whitespace" rel="nofollow">https://registry.npmjs.org/postcss-normalize-whitespace</a> 220ms<br>
1024 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz" rel="nofollow">https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz</a> 181ms<br>
1025 silly pacote range manifest for postcss-normalize-string@^4.0.2 fetched in 427ms<br>
1026 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz" rel="nofollow">https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz</a> 212ms<br>
1027 silly pacote range manifest for postcss-normalize-timing-functions@^4.0.2 fetched in 427ms<br>
1028 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz</a> 172ms<br>
1029 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz</a> 173ms<br>
1030 silly pacote range manifest for postcss-normalize-repeat-style@^4.0.2 fetched in 441ms<br>
1031 silly pacote range manifest for postcss-normalize-positions@^4.0.2 fetched in 442ms<br>
1032 silly pacote range manifest for postcss-normalize-unicode@^4.0.1 fetched in 433ms<br>
1033 silly pacote range manifest for postcss-normalize-url@^4.0.1 fetched in 434ms<br>
1034 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-ordered-values" rel="nofollow">https://registry.npmjs.org/postcss-ordered-values</a> 231ms<br>
1035 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz" rel="nofollow">https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz</a> 232ms<br>
1036 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-reduce-initial" rel="nofollow">https://registry.npmjs.org/postcss-reduce-initial</a> 236ms<br>
1037 silly pacote range manifest for postcss-normalize-whitespace@^4.0.2 fetched in 463ms<br>
1038 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-reduce-transforms" rel="nofollow">https://registry.npmjs.org/postcss-reduce-transforms</a> 290ms<br>
1039 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-unique-selectors" rel="nofollow">https://registry.npmjs.org/postcss-unique-selectors</a> 298ms<br>
1040 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-svgo" rel="nofollow">https://registry.npmjs.org/postcss-svgo</a> 434ms<br>
1041 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz" rel="nofollow">https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz</a> 248ms<br>
1042 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fhelper-wasm-bytecode" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fhelper-wasm-bytecode</a> 471ms<br>
1043 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz" rel="nofollow">https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz</a> 244ms<br>
1044 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz</a> 179ms<br>
1045 silly pacote range manifest for postcss-ordered-values@^4.1.2 fetched in 489ms<br>
1046 silly pacote range manifest for postcss-reduce-initial@^4.0.3 fetched in 489ms<br>
1047 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz" rel="nofollow">https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz</a> 192ms<br>
1048 silly pacote range manifest for postcss-unique-selectors@^4.0.1 fetched in 482ms<br>
1049 silly pacote range manifest for postcss-reduce-transforms@^4.0.2 fetched in 487ms<br>
1050 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fwast-parser" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fwast-parser</a> 255ms<br>
1051 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.2.tgz" rel="nofollow">https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.2.tgz</a> 219ms<br>
1052 silly pacote range manifest for postcss-svgo@^4.0.2 fetched in 669ms<br>
1053 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz</a> 211ms<br>
1054 silly pacote version manifest for @webassemblyjs/helper-wasm-bytecode@1.9.0 fetched in 688ms<br>
1055 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz</a> 225ms<br>
1056 silly pacote version manifest for @webassemblyjs/wast-parser@1.9.0 fetched in 484ms<br>
1057 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fhelper-buffer" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fhelper-buffer</a> 252ms<br>
1058 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fhelper-wasm-section" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fhelper-wasm-section</a> 409ms<br>
1059 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fwasm-opt" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fwasm-opt</a> 422ms<br>
1060 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fwasm-gen" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fwasm-gen</a> 609ms<br>
1061 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz</a> 363ms<br>
1062 silly pacote version manifest for @webassemblyjs/helper-buffer@1.9.0 fetched in 619ms<br>
1063 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fhelper-api-error" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fhelper-api-error</a> 413ms<br>
1064 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fieee754" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fieee754</a> 392ms<br>
1065 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fwast-printer" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fwast-printer</a> 454ms<br>
1066 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz</a> 215ms<br>
1067 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz</a> 234ms<br>
1068 silly pacote version manifest for @webassemblyjs/wasm-opt@1.9.0 fetched in 643ms<br>
1069 silly pacote version manifest for @webassemblyjs/helper-wasm-section@1.9.0 fetched in 648ms<br>
1070 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz</a> 230ms<br>
1071 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz</a> 225ms<br>
1072 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz</a> 242ms<br>
1073 http fetch GET 304 <a href="https://registry.npmjs.org/fast-deep-equal" rel="nofollow">https://registry.npmjs.org/fast-deep-equal</a> 211ms (from cache)<br>
1074 silly pacote range manifest for fast-deep-equal@^3.1.1 fetched in 214ms<br>
1075 silly pacote version manifest for @webassemblyjs/wasm-gen@1.9.0 fetched in 861ms<br>
1076 silly pacote version manifest for @webassemblyjs/helper-api-error@1.9.0 fetched in 657ms<br>
1077 silly pacote version manifest for @webassemblyjs/ieee754@1.9.0 fetched in 629ms<br>
1078 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fleb128" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fleb128</a> 263ms<br>
1079 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz</a> 241ms<br>
1080 silly pacote version manifest for @webassemblyjs/wast-printer@1.9.0 fetched in 699ms<br>
1081 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2futf8" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2futf8</a> 248ms<br>
1082 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz</a> 174ms<br>
1083 http fetch GET 200 <a href="https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz" rel="nofollow">https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz</a> 169ms<br>
1084 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz</a> 161ms<br>
1085 http fetch GET 304 <a href="https://registry.npmjs.org/fast-json-stable-stringify" rel="nofollow">https://registry.npmjs.org/fast-json-stable-stringify</a> 197ms (from cache)<br>
1086 http fetch GET 304 <a href="https://registry.npmjs.org/tslib" rel="nofollow">https://registry.npmjs.org/tslib</a> 195ms (from cache)<br>
1087 silly pacote range manifest for fast-json-stable-stringify@^2.0.0 fetched in 199ms<br>
1088 http fetch GET 304 <a href="https://registry.npmjs.org/json-schema-traverse" rel="nofollow">https://registry.npmjs.org/json-schema-traverse</a> 198ms (from cache)<br>
1089 http fetch GET 304 <a href="https://registry.npmjs.org/uri-js" rel="nofollow">https://registry.npmjs.org/uri-js</a> 197ms (from cache)<br>
1090 silly pacote range manifest for tslib@^1.9.0 fetched in 198ms<br>
1091 silly pacote range manifest for json-schema-traverse@^0.4.1 fetched in 201ms<br>
1092 silly pacote range manifest for uri-js@^4.2.2 fetched in 200ms<br>
1093 silly pacote range manifest for memory-fs@^0.5.0 fetched in 180ms<br>
1094 silly pacote version manifest for @webassemblyjs/leb128@1.9.0 fetched in 449ms<br>
1095 silly pacote version manifest for @webassemblyjs/utf8@1.9.0 fetched in 421ms<br>
1096 http fetch GET 200 <a href="https://registry.npmjs.org/errno" rel="nofollow">https://registry.npmjs.org/errno</a> 211ms<br>
1097 http fetch GET 200 <a href="https://registry.npmjs.org/esrecurse" rel="nofollow">https://registry.npmjs.org/esrecurse</a> 216ms<br>
1098 http fetch GET 200 <a href="https://registry.npmjs.org/estraverse" rel="nofollow">https://registry.npmjs.org/estraverse</a> 217ms<br>
1099 http fetch GET 304 <a href="https://registry.npmjs.org/readable-stream" rel="nofollow">https://registry.npmjs.org/readable-stream</a> 217ms (from cache)<br>
1100 http fetch GET 304 <a href="https://registry.npmjs.org/braces" rel="nofollow">https://registry.npmjs.org/braces</a> 216ms (from cache)<br>
1101 silly pacote range manifest for readable-stream@^2.0.1 fetched in 221ms<br>
1102 silly pacote range manifest for braces@^2.3.1 fetched in 220ms<br>
1103 http fetch GET 304 <a href="https://registry.npmjs.org/arr-diff" rel="nofollow">https://registry.npmjs.org/arr-diff</a> 223ms (from cache)<br>
1104 http fetch GET 304 <a href="https://registry.npmjs.org/array-unique" rel="nofollow">https://registry.npmjs.org/array-unique</a> 223ms (from cache)<br>
1105 silly pacote range manifest for arr-diff@^4.0.0 fetched in 225ms<br>
1106 silly pacote range manifest for array-unique@^0.3.2 fetched in 225ms<br>
1107 http fetch GET 200 <a href="https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz" rel="nofollow">https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz</a> 222ms<br>
1108 http fetch GET 200 <a href="https://registry.npmjs.org/errno/-/errno-0.1.8.tgz" rel="nofollow">https://registry.npmjs.org/errno/-/errno-0.1.8.tgz</a> 224ms<br>
1109 http fetch GET 200 <a href="https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz" rel="nofollow">https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz</a> 217ms<br>
1110 http fetch GET 304 <a href="https://registry.npmjs.org/fragment-cache" rel="nofollow">https://registry.npmjs.org/fragment-cache</a> 212ms (from cache)<br>
1111 http fetch GET 304 <a href="https://registry.npmjs.org/extglob" rel="nofollow">https://registry.npmjs.org/extglob</a> 213ms (from cache)<br>
1112 http fetch GET 304 <a href="https://registry.npmjs.org/extend-shallow" rel="nofollow">https://registry.npmjs.org/extend-shallow</a> 218ms (from cache)<br>
1113 http fetch GET 304 <a href="https://registry.npmjs.org/define-property" rel="nofollow">https://registry.npmjs.org/define-property</a> 220ms (from cache)<br>
1114 silly pacote range manifest for fragment-cache@^0.2.1 fetched in 215ms<br>
1115 silly pacote range manifest for extglob@^2.0.4 fetched in 216ms<br>
1116 silly pacote range manifest for extend-shallow@^3.0.2 fetched in 220ms<br>
1117 silly pacote range manifest for define-property@^2.0.2 fetched in 223ms<br>
1118 silly pacote range manifest for esrecurse@^4.1.0 fetched in 452ms<br>
1119 silly pacote range manifest for estraverse@^4.1.1 fetched in 451ms<br>
1120 silly pacote range manifest for errno@^0.1.3 fetched in 449ms<br>
1121 http fetch GET 200 <a href="https://registry.npmjs.org/assert" rel="nofollow">https://registry.npmjs.org/assert</a> 221ms<br>
1122 http fetch GET 304 <a href="https://registry.npmjs.org/kind-of" rel="nofollow">https://registry.npmjs.org/kind-of</a> 232ms (from cache)<br>
1123 http fetch GET 304 <a href="https://registry.npmjs.org/nanomatch" rel="nofollow">https://registry.npmjs.org/nanomatch</a> 232ms (from cache)<br>
1124 http fetch GET 304 <a href="https://registry.npmjs.org/object.pick" rel="nofollow">https://registry.npmjs.org/object.pick</a> 232ms (from cache)<br>
1125 http fetch GET 304 <a href="https://registry.npmjs.org/snapdragon" rel="nofollow">https://registry.npmjs.org/snapdragon</a> 228ms (from cache)<br>
1126 http fetch GET 304 <a href="https://registry.npmjs.org/regex-not" rel="nofollow">https://registry.npmjs.org/regex-not</a> 232ms (from cache)<br>
1127 http fetch GET 304 <a href="https://registry.npmjs.org/to-regex" rel="nofollow">https://registry.npmjs.org/to-regex</a> 228ms (from cache)<br>
1128 silly pacote range manifest for kind-of@^6.0.2 fetched in 236ms<br>
1129 silly pacote range manifest for nanomatch@^1.2.9 fetched in 237ms<br>
1130 silly pacote range manifest for object.pick@^1.3.0 fetched in 240ms<br>
1131 silly pacote range manifest for snapdragon@^0.8.1 fetched in 236ms<br>
1132 silly pacote range manifest for regex-not@^1.0.0 fetched in 241ms<br>
1133 silly pacote range manifest for to-regex@^3.0.2 fetched in 237ms<br>
1134 http fetch GET 200 <a href="https://registry.npmjs.org/assert/-/assert-1.5.0.tgz" rel="nofollow">https://registry.npmjs.org/assert/-/assert-1.5.0.tgz</a> 204ms<br>
1135 http fetch GET 200 <a href="https://registry.npmjs.org/browserify-zlib" rel="nofollow">https://registry.npmjs.org/browserify-zlib</a> 199ms<br>
1136 http fetch GET 200 <a href="https://registry.npmjs.org/constants-browserify" rel="nofollow">https://registry.npmjs.org/constants-browserify</a> 194ms<br>
1137 http fetch GET 200 <a href="https://registry.npmjs.org/console-browserify" rel="nofollow">https://registry.npmjs.org/console-browserify</a> 195ms<br>
1138 http fetch GET 200 <a href="https://registry.npmjs.org/crypto-browserify" rel="nofollow">https://registry.npmjs.org/crypto-browserify</a> 195ms<br>
1139 http fetch GET 304 <a href="https://registry.npmjs.org/buffer" rel="nofollow">https://registry.npmjs.org/buffer</a> 203ms (from cache)<br>
1140 silly pacote range manifest for assert@^1.1.1 fetched in 437ms<br>
1141 http fetch GET 200 <a href="https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz</a> 216ms<br>
1142 http fetch GET 200 <a href="https://registry.npmjs.org/domain-browser" rel="nofollow">https://registry.npmjs.org/domain-browser</a> 410ms<br>
1143 silly pacote range manifest for constants-browserify@^1.0.0 fetched in 419ms<br>
1144 http fetch GET 200 <a href="https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz" rel="nofollow">https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz</a> 227ms<br>
1145 http fetch GET 200 <a href="https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz" rel="nofollow">https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz</a> 229ms<br>
1146 http fetch GET 200 <a href="https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz" rel="nofollow">https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz</a> 228ms<br>
1147 http fetch GET 200 <a href="https://registry.npmjs.org/events" rel="nofollow">https://registry.npmjs.org/events</a> 226ms<br>
1148 silly pacote range manifest for console-browserify@^1.1.0 fetched in 429ms<br>
1149 silly pacote range manifest for browserify-zlib@^0.2.0 fetched in 436ms<br>
1150 silly pacote range manifest for crypto-browserify@^3.11.0 fetched in 432ms<br>
1151 http fetch GET 200 <a href="https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz" rel="nofollow">https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz</a> 235ms<br>
1152 silly pacote range manifest for buffer@^4.3.0 fetched in 442ms<br>
1153 http fetch GET 200 <a href="https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz" rel="nofollow">https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz</a> 215ms<br>
1154 http fetch GET 200 <a href="https://registry.npmjs.org/events/-/events-3.2.0.tgz" rel="nofollow">https://registry.npmjs.org/events/-/events-3.2.0.tgz</a> 203ms<br>
1155 http fetch GET 200 <a href="https://registry.npmjs.org/process" rel="nofollow">https://registry.npmjs.org/process</a> 199ms<br>
1156 http fetch GET 200 <a href="https://registry.npmjs.org/https-browserify" rel="nofollow">https://registry.npmjs.org/https-browserify</a> 215ms<br>
1157 http fetch GET 200 <a href="https://registry.npmjs.org/os-browserify" rel="nofollow">https://registry.npmjs.org/os-browserify</a> 206ms<br>
1158 http fetch GET 200 <a href="https://registry.npmjs.org/path-browserify" rel="nofollow">https://registry.npmjs.org/path-browserify</a> 204ms<br>
1159 silly pacote range manifest for domain-browser@^1.1.1 fetched in 636ms<br>
1160 http fetch GET 304 <a href="https://registry.npmjs.org/punycode" rel="nofollow">https://registry.npmjs.org/punycode</a> 202ms (from cache)<br>
1161 silly pacote range manifest for events@^3.0.0 fetched in 441ms<br>
1162 silly pacote range manifest for readable-stream@^2.3.3 fetched in 1ms<br>
1163 http fetch GET 200 <a href="https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz</a> 221ms<br>
1164 http fetch GET 200 <a href="https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz" rel="nofollow">https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz</a> 221ms<br>
1165 http fetch GET 200 <a href="https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz" rel="nofollow">https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz</a> 222ms<br>
1166 http fetch GET 200 <a href="https://registry.npmjs.org/process/-/process-0.11.10.tgz" rel="nofollow">https://registry.npmjs.org/process/-/process-0.11.10.tgz</a> 223ms<br>
1167 http fetch GET 200 <a href="https://registry.npmjs.org/querystring-es3" rel="nofollow">https://registry.npmjs.org/querystring-es3</a> 221ms<br>
1168 http fetch GET 200 <a href="https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz" rel="nofollow">https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz</a> 218ms<br>
1169 http fetch GET 200 <a href="https://registry.npmjs.org/stream-browserify" rel="nofollow">https://registry.npmjs.org/stream-browserify</a> 217ms<br>
1170 silly pacote range manifest for https-browserify@^1.0.0 fetched in 446ms<br>
1171 silly pacote version manifest for path-browserify@0.0.1 fetched in 436ms<br>
1172 silly pacote range manifest for os-browserify@^0.3.0 fetched in 438ms<br>
1173 silly pacote range manifest for process@^0.11.10 fetched in 432ms<br>
1174 silly pacote range manifest for punycode@^1.2.4 fetched in 429ms<br>
1175 http fetch GET 200 <a href="https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz" rel="nofollow">https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz</a> 217ms<br>
1176 http fetch GET 200 <a href="https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz" rel="nofollow">https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz</a> 221ms<br>
1177 http fetch GET 200 <a href="https://registry.npmjs.org/tty-browserify" rel="nofollow">https://registry.npmjs.org/tty-browserify</a> 215ms<br>
1178 http fetch GET 200 <a href="https://registry.npmjs.org/timers-browserify" rel="nofollow">https://registry.npmjs.org/timers-browserify</a> 217ms<br>
1179 http fetch GET 200 <a href="https://registry.npmjs.org/util" rel="nofollow">https://registry.npmjs.org/util</a> 215ms<br>
1180 http fetch GET 200 <a href="https://registry.npmjs.org/stream-http" rel="nofollow">https://registry.npmjs.org/stream-http</a> 219ms<br>
1181 http fetch GET 304 <a href="https://registry.npmjs.org/string_decoder" rel="nofollow">https://registry.npmjs.org/string_decoder</a> 224ms (from cache)<br>
1182 silly pacote range manifest for stream-browserify@^2.0.1 fetched in 447ms<br>
1183 silly pacote range manifest for querystring-es3@^0.2.0 fetched in 453ms<br>
1184 silly pacote range manifest for ajv@^6.1.0 fetched in 3ms<br>
1185 http fetch GET 200 <a href="https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz" rel="nofollow">https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz</a> 204ms<br>
1186 silly pacote version manifest for tty-browserify@0.0.0 fetched in 422ms<br>
1187 silly pacote range manifest for ajv-keywords@^3.1.0 fetched in 1ms<br>
1188 silly pacote range manifest for cacache@^12.0.2 fetched in 1ms<br>
1189 silly pacote range manifest for terser@^4.1.2 fetched in 1ms<br>
1190 silly pacote range manifest for webpack-sources@^1.4.0 fetched in 1ms<br>
1191 http fetch GET 200 <a href="https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz" rel="nofollow">https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz</a> 216ms<br>
1192 http fetch GET 200 <a href="https://registry.npmjs.org/ajv-errors" rel="nofollow">https://registry.npmjs.org/ajv-errors</a> 208ms<br>
1193 http fetch GET 200 <a href="https://registry.npmjs.org/util/-/util-0.11.1.tgz" rel="nofollow">https://registry.npmjs.org/util/-/util-0.11.1.tgz</a> 216ms<br>
1194 http fetch GET 200 <a href="https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz" rel="nofollow">https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz</a> 213ms<br>
1195 http fetch GET 200 <a href="https://registry.npmjs.org/vm-browserify" rel="nofollow">https://registry.npmjs.org/vm-browserify</a> 212ms<br>
1196 silly pacote range manifest for timers-browserify@^2.0.4 fetched in 447ms<br>
1197 silly pacote range manifest for util@^0.11.0 fetched in 445ms<br>
1198 silly pacote range manifest for string_decoder@^1.0.0 fetched in 450ms<br>
1199 http fetch GET 200 <a href="https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz" rel="nofollow">https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz</a> 231ms<br>
1200 silly pacote range manifest for neo-async@^2.5.0 fetched in 5ms<br>
1201 silly pacote range manifest for stream-http@^2.7.2 fetched in 459ms<br>
1202 silly pacote range manifest for source-map@~0.6.1 fetched in 5ms<br>
1203 silly pacote range manifest for ansi-styles@^4.1.0 fetched in 1ms<br>
1204 silly pacote range manifest for supports-color@^7.1.0 fetched in 1ms<br>
1205 http fetch GET 200 <a href="https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz</a> 210ms<br>
1206 http fetch GET 200 <a href="https://registry.npmjs.org/worker-farm" rel="nofollow">https://registry.npmjs.org/worker-farm</a> 225ms<br>
1207 http fetch GET 200 <a href="https://registry.npmjs.org/watchpack-chokidar2" rel="nofollow">https://registry.npmjs.org/watchpack-chokidar2</a> 202ms<br>
1208 http fetch GET 200 <a href="https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz" rel="nofollow">https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz</a> 212ms<br>
1209 http fetch GET 200 <a href="https://registry.npmjs.org/source-list-map" rel="nofollow">https://registry.npmjs.org/source-list-map</a> 204ms<br>
1210 http fetch GET 200 <a href="https://registry.npmjs.org/any-promise" rel="nofollow">https://registry.npmjs.org/any-promise</a> 193ms<br>
1211 http fetch GET 200 <a href="https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz" rel="nofollow">https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz</a> 210ms<br>
1212 silly pacote range manifest for ajv-errors@^1.0.0 fetched in 431ms<br>
1213 silly pacote range manifest for vm-browserify@^1.0.1 fetched in 435ms<br>
1214 silly pacote range manifest for chokidar@^3.4.1 fetched in 218ms<br>
1215 http fetch GET 200 <a href="https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz" rel="nofollow">https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz</a> 224ms<br>
1216 http fetch GET 200 <a href="https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz" rel="nofollow">https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz</a> 223ms<br>
1217 http fetch GET 200 <a href="https://registry.npmjs.org/thenify-all" rel="nofollow">https://registry.npmjs.org/thenify-all</a> 218ms<br>
1218 http fetch GET 200 <a href="https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz" rel="nofollow">https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz</a> 219ms<br>
1219 http fetch GET 200 <a href="https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz" rel="nofollow">https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz</a> 215ms<br>
1220 http fetch GET 304 <a href="https://registry.npmjs.org/object-assign" rel="nofollow">https://registry.npmjs.org/object-assign</a> 223ms (from cache)<br>
1221 silly pacote range manifest for object-assign@^4.0.1 fetched in 224ms<br>
1222 silly pacote range manifest for watchpack-chokidar2@^2.0.1 fetched in 436ms<br>
1223 silly pacote range manifest for source-list-map@^2.0.0 fetched in 434ms<br>
1224 silly pacote range manifest for any-promise@^1.0.0 fetched in 422ms<br>
1225 silly pacote range manifest for parse5@^6.0.1 fetched in 226ms<br>
1226 http fetch GET 200 <a href="https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz" rel="nofollow">https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz</a> 241ms<br>
1227 silly pacote range manifest for worker-farm@^1.7.0 fetched in 471ms<br>
1228 http fetch GET 200 <a href="https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz" rel="nofollow">https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz</a> 210ms<br>
1229 http fetch GET 200 <a href="https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz" rel="nofollow">https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz</a> 215ms<br>
1230 http fetch GET 304 <a href="https://registry.npmjs.org/require-directory" rel="nofollow">https://registry.npmjs.org/require-directory</a> 211ms (from cache)<br>
1231 http fetch GET 304 <a href="https://registry.npmjs.org/get-caller-file" rel="nofollow">https://registry.npmjs.org/get-caller-file</a> 212ms (from cache)<br>
1232 http fetch GET 304 <a href="https://registry.npmjs.org/is-docker" rel="nofollow">https://registry.npmjs.org/is-docker</a> 202ms (from cache)<br>
1233 http fetch GET 304 <a href="https://registry.npmjs.org/y18n" rel="nofollow">https://registry.npmjs.org/y18n</a> 212ms (from cache)<br>
1234 silly pacote range manifest for require-directory@^2.1.1 fetched in 214ms<br>
1235 http fetch GET 304 <a href="https://registry.npmjs.org/yargs-parser" rel="nofollow">https://registry.npmjs.org/yargs-parser</a> 209ms (from cache)<br>
1236 silly pacote range manifest for get-caller-file@^2.0.5 fetched in 216ms<br>
1237 silly pacote range manifest for is-docker@^2.0.0 fetched in 207ms<br>
1238 silly pacote range manifest for cliui@^7.0.2 fetched in 220ms<br>
1239 silly pacote range manifest for thenify-all@^1.0.0 fetched in 445ms<br>
1240 silly pacote range manifest for string-width@^4.1.0 fetched in 6ms<br>
1241 silly pacote range manifest for ansi-styles@^4.0.0 fetched in 6ms<br>
1242 silly pacote range manifest for glob@^7.1.4 fetched in 3ms<br>
1243 silly pacote range manifest for graceful-fs@^4.1.15 fetched in 0ms<br>
1244 http fetch GET 200 <a href="https://registry.npmjs.org/y18n/-/y18n-5.0.5.tgz" rel="nofollow">https://registry.npmjs.org/y18n/-/y18n-5.0.5.tgz</a> 208ms<br>
1245 http fetch GET 200 <a href="https://registry.npmjs.org/infer-owner" rel="nofollow">https://registry.npmjs.org/infer-owner</a> 202ms<br>
1246 http fetch GET 304 <a href="https://registry.npmjs.org/emoji-regex" rel="nofollow">https://registry.npmjs.org/emoji-regex</a> 221ms (from cache)<br>
1247 silly pacote range manifest for y18n@^5.0.5 fetched in 435ms<br>
1248 silly pacote range manifest for emoji-regex@^8.0.0 fetched in 222ms<br>
1249 http fetch GET 200 <a href="https://registry.npmjs.org/chownr" rel="nofollow">https://registry.npmjs.org/chownr</a> 214ms<br>
1250 http fetch GET 200 <a href="https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.6.tgz" rel="nofollow">https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.6.tgz</a> 222ms<br>
1251 http fetch GET 304 <a href="https://registry.npmjs.org/is-fullwidth-code-point" rel="nofollow">https://registry.npmjs.org/is-fullwidth-code-point</a> 224ms (from cache)<br>
1252 http fetch GET 304 <a href="https://registry.npmjs.org/bluebird" rel="nofollow">https://registry.npmjs.org/bluebird</a> 222ms (from cache)<br>
1253 silly pacote range manifest for is-fullwidth-code-point@^3.0.0 fetched in 226ms<br>
1254 silly pacote range manifest for bluebird@^3.5.5 fetched in 225ms<br>
1255 silly pacote range manifest for yargs-parser@^20.2.2 fetched in 439ms<br>
1256 http fetch GET 200 <a href="https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz" rel="nofollow">https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz</a> 217ms<br>
1257 http fetch GET 200 <a href="https://registry.npmjs.org/mississippi" rel="nofollow">https://registry.npmjs.org/mississippi</a> 211ms<br>
1258 http fetch GET 200 <a href="https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz" rel="nofollow">https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz</a> 202ms<br>
1259 http fetch GET 200 <a href="https://registry.npmjs.org/move-concurrently" rel="nofollow">https://registry.npmjs.org/move-concurrently</a> 212ms<br>
1260 http fetch GET 200 <a href="https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz" rel="nofollow">https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz</a> 210ms<br>
1261 http fetch GET 200 <a href="https://registry.npmjs.org/promise-inflight" rel="nofollow">https://registry.npmjs.org/promise-inflight</a> 206ms<br>
1262 http fetch GET 304 <a href="https://registry.npmjs.org/rimraf" rel="nofollow">https://registry.npmjs.org/rimraf</a> 208ms (from cache)<br>
1263 silly pacote range manifest for chownr@^1.1.1 fetched in 431ms<br>
1264 silly pacote range manifest for ssri@^6.0.1 fetched in 211ms<br>
1265 silly pacote range manifest for infer-owner@^1.0.3 fetched in 429ms<br>
1266 silly pacote range manifest for y18n@^4.0.0 fetched in 1ms<br>
1267 silly pacote range manifest for make-dir@^2.0.0 fetched in 2ms<br>
1268 silly pacote range manifest for pkg-dir@^3.0.0 fetched in 1ms<br>
1269 silly pacote range manifest for is-glob@^3.1.0 fetched in 1ms<br>
1270 silly pacote range manifest for array-union@^1.0.1 fetched in 1ms<br>
1271 silly pacote range manifest for dir-glob@^2.0.0 fetched in 1ms<br>
1272 silly pacote range manifest for glob@^7.1.2 fetched in 0ms<br>
1273 http fetch GET 200 <a href="https://registry.npmjs.org/unique-filename" rel="nofollow">https://registry.npmjs.org/unique-filename</a> 217ms<br>
1274 http fetch GET 200 <a href="https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz</a> 224ms<br>
1275 http fetch GET 200 <a href="https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz</a> 225ms<br>
1276 http fetch GET 200 <a href="https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz" rel="nofollow">https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz</a> 215ms<br>
1277 http fetch GET 200 <a href="https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz" rel="nofollow">https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz</a> 223ms<br>
1278 http fetch GET 200 <a href="https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz</a> 229ms<br>
1279 http fetch GET 304 <a href="https://registry.npmjs.org/path-dirname" rel="nofollow">https://registry.npmjs.org/path-dirname</a> 224ms (from cache)<br>
1280 silly pacote range manifest for path-dirname@^1.0.0 fetched in 225ms<br>
1281 silly pacote range manifest for pify@^3.0.0 fetched in 2ms<br>
1282 silly pacote range manifest for move-concurrently@^1.0.1 fetched in 448ms<br>
1283 silly pacote range manifest for mississippi@^3.0.0 fetched in 449ms<br>
1284 silly pacote range manifest for rimraf@^2.6.3 fetched in 442ms<br>
1285 silly pacote range manifest for promise-inflight@^1.0.1 fetched in 443ms<br>
1286 silly pacote range manifest for ignore@^3.3.5 fetched in 227ms<br>
1287 http fetch GET 200 <a href="https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz" rel="nofollow">https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz</a> 235ms<br>
1288 http fetch GET 200 <a href="https://registry.npmjs.org/randombytes" rel="nofollow">https://registry.npmjs.org/randombytes</a> 225ms<br>
1289 http fetch GET 200 <a href="https://registry.npmjs.org/ansi-colors" rel="nofollow">https://registry.npmjs.org/ansi-colors</a> 224ms<br>
1290 http fetch GET 200 <a href="https://registry.npmjs.org/slash/-/slash-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/slash/-/slash-1.0.0.tgz</a> 225ms<br>
1291 http fetch GET 304 <a href="https://registry.npmjs.org/is-extglob" rel="nofollow">https://registry.npmjs.org/is-extglob</a> 233ms (from cache)<br>
1292 http fetch GET 304 <a href="https://registry.npmjs.org/brace-expansion" rel="nofollow">https://registry.npmjs.org/brace-expansion</a> 233ms (from cache)<br>
1293 http fetch GET 304 <a href="https://registry.npmjs.org/p-try" rel="nofollow">https://registry.npmjs.org/p-try</a> 233ms (from cache)<br>
1294 silly pacote range manifest for is-extglob@^2.1.1 fetched in 235ms<br>
1295 silly pacote range manifest for brace-expansion@^1.1.7 fetched in 235ms<br>
1296 silly pacote range manifest for p-try@^2.0.0 fetched in 235ms<br>
1297 silly pacote range manifest for unique-filename@^1.1.1 fetched in 466ms<br>
1298 silly pacote range manifest for slash@^1.0.0 fetched in 238ms<br>
1299 silly pacote range manifest for string-width@^2.0.0 fetched in 3ms<br>
1300 silly pacote range manifest for strip-ansi@^5 fetched in 2ms<br>
1301 silly pacote range manifest for postcss@^7.0.14 fetched in 2ms<br>
1302 silly pacote range manifest for postcss@^7.0.5 fetched in 3ms<br>
1303 silly pacote range manifest for parse-json@^4.0.0 fetched in 2ms<br>
1304 http fetch GET 200 <a href="https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz</a> 195ms<br>
1305 http fetch GET 200 <a href="https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz" rel="nofollow">https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz</a> 196ms<br>
1306 http fetch GET 200 <a href="https://registry.npmjs.org/error-stack-parser" rel="nofollow">https://registry.npmjs.org/error-stack-parser</a> 192ms<br>
1307 http fetch GET 304 <a href="https://registry.npmjs.org/import-fresh" rel="nofollow">https://registry.npmjs.org/import-fresh</a> 193ms (from cache)<br>
1308 http fetch GET 304 <a href="https://registry.npmjs.org/is-directory" rel="nofollow">https://registry.npmjs.org/is-directory</a> 193ms (from cache)<br>
1309 http fetch GET 304 <a href="https://registry.npmjs.org/postcss-selector-parser" rel="nofollow">https://registry.npmjs.org/postcss-selector-parser</a> 190ms (from cache)<br>
1310 silly pacote range manifest for import-fresh@^2.0.0 fetched in 195ms<br>
1311 silly pacote range manifest for randombytes@^2.1.0 fetched in 433ms<br>
1312 silly pacote range manifest for is-directory@^0.3.1 fetched in 197ms<br>
1313 silly pacote range manifest for postcss-selector-parser@^6.0.2 fetched in 193ms<br>
1314 silly pacote range manifest for ansi-colors@^3.0.0 fetched in 433ms<br>
1315 http fetch GET 304 <a href="https://registry.npmjs.org/js-yaml" rel="nofollow">https://registry.npmjs.org/js-yaml</a> 199ms (from cache)<br>
1316 silly pacote range manifest for lru-cache@^4.1.2 fetched in 5ms<br>
1317 silly pacote range manifest for postcss-selector-parser@^6.0.2 fetched in 8ms<br>
1318 silly pacote range manifest for js-yaml@^3.13.1 fetched in 205ms<br>
1319 silly pacote range manifest for cross-spawn@^7.0.0 fetched in 3ms<br>
1320 silly pacote range manifest for get-stream@^5.0.0 fetched in 2ms<br>
1321 silly pacote range manifest for is-stream@^2.0.0 fetched in 1ms<br>
1322 http fetch GET 200 <a href="https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.0.6.tgz" rel="nofollow">https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.0.6.tgz</a> 220ms<br>
1323 http fetch GET 200 <a href="https://registry.npmjs.org/vue-template-es2015-compiler" rel="nofollow">https://registry.npmjs.org/vue-template-es2015-compiler</a> 214ms<br>
1324 http fetch GET 304 <a href="https://registry.npmjs.org/human-signals" rel="nofollow">https://registry.npmjs.org/human-signals</a> 207ms (from cache)<br>
1325 http fetch GET 304 <a href="https://registry.npmjs.org/consolidate" rel="nofollow">https://registry.npmjs.org/consolidate</a> 220ms (from cache)<br>
1326 http fetch GET 304 <a href="https://registry.npmjs.org/merge-source-map" rel="nofollow">https://registry.npmjs.org/merge-source-map</a> 219ms (from cache)<br>
1327 silly pacote range manifest for human-signals@^1.1.1 fetched in 209ms<br>
1328 silly pacote range manifest for merge-source-map@^1.1.0 fetched in 221ms<br>
1329 silly pacote range manifest for error-stack-parser@^2.0.2 fetched in 423ms<br>
1330 silly pacote range manifest for npm-run-path@^4.0.0 fetched in 2ms<br>
1331 silly pacote range manifest for p-finally@^2.0.0 fetched in 1ms<br>
1332 silly pacote range manifest for signal-exit@^3.0.2 fetched in 2ms<br>
1333 silly pacote range manifest for postcss@^7.0.6 fetched in 1ms<br>
1334 silly pacote range manifest for postcss-selector-parser@^6.0.0 fetched in 0ms<br>
1335 silly pacote range manifest for graceful-fs@^4.1.6 fetched in 0ms<br>
1336 silly pacote range manifest for icss-utils@^4.0.0 fetched in 1ms<br>
1337 http fetch GET 304 <a href="https://registry.npmjs.org/merge-stream" rel="nofollow">https://registry.npmjs.org/merge-stream</a> 221ms (from cache)<br>
1338 silly pacote range manifest for merge-stream@^2.0.0 fetched in 222ms<br>
1339 http fetch GET 200 <a href="https://registry.npmjs.org/prettier" rel="nofollow">https://registry.npmjs.org/prettier</a> 245ms<br>
1340 http fetch GET 304 <a href="https://registry.npmjs.org/array-uniq" rel="nofollow">https://registry.npmjs.org/array-uniq</a> 208ms (from cache)<br>
1341 http fetch GET 200 <a href="https://registry.npmjs.org/consolidate/-/consolidate-0.15.1.tgz" rel="nofollow">https://registry.npmjs.org/consolidate/-/consolidate-0.15.1.tgz</a> 217ms<br>
1342 silly pacote range manifest for array-uniq@^1.0.1 fetched in 211ms<br>
1343 silly pacote range manifest for consolidate@^0.15.1 fetched in 446ms<br>
1344 http fetch GET 304 <a href="https://registry.npmjs.org/strip-final-newline" rel="nofollow">https://registry.npmjs.org/strip-final-newline</a> 224ms (from cache)<br>
1345 http fetch GET 304 <a href="https://registry.npmjs.org/onetime" rel="nofollow">https://registry.npmjs.org/onetime</a> 226ms (from cache)<br>
1346 silly pacote range manifest for strip-final-newline@^2.0.0 fetched in 225ms<br>
1347 silly pacote range manifest for onetime@^5.1.0 fetched in 227ms<br>
1348 http fetch GET 304 <a href="https://registry.npmjs.org/fs.realpath" rel="nofollow">https://registry.npmjs.org/fs.realpath</a> 221ms (from cache)<br>
1349 silly pacote range manifest for fs.realpath@^1.0.0 fetched in 221ms<br>
1350 http fetch GET 200 <a href="https://registry.npmjs.org/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz" rel="nofollow">https://registry.npmjs.org/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz</a> 241ms<br>
1351 silly pacote range manifest for vue-template-es2015-compiler@^1.9.0 fetched in 460ms<br>
1352 http fetch GET 304 <a href="https://registry.npmjs.org/inherits" rel="nofollow">https://registry.npmjs.org/inherits</a> 219ms (from cache)<br>
1353 http fetch GET 304 <a href="https://registry.npmjs.org/inflight" rel="nofollow">https://registry.npmjs.org/inflight</a> 224ms (from cache)<br>
1354 silly pacote range manifest for inherits@2 fetched in 220ms<br>
1355 silly pacote range manifest for inflight@^1.0.4 fetched in 226ms<br>
1356 http fetch GET 304 <a href="https://registry.npmjs.org/path-is-absolute" rel="nofollow">https://registry.npmjs.org/path-is-absolute</a> 221ms (from cache)<br>
1357 http fetch GET 304 <a href="https://registry.npmjs.org/@types%2fminimatch" rel="nofollow">https://registry.npmjs.org/@types%2fminimatch</a> 209ms (from cache)<br>
1358 http fetch GET 304 <a href="https://registry.npmjs.org/path-type" rel="nofollow">https://registry.npmjs.org/path-type</a> 214ms (from cache)<br>
1359 http fetch GET 304 <a href="https://registry.npmjs.org/once" rel="nofollow">https://registry.npmjs.org/once</a> 222ms (from cache)<br>
1360 silly pacote range manifest for path-is-absolute@^1.0.0 fetched in 223ms<br>
1361 silly pacote range manifest for @types/minimatch@* fetched in 210ms<br>
1362 silly pacote range manifest for path-type@^3.0.0 fetched in 216ms<br>
1363 silly pacote range manifest for once@^1.3.0 fetched in 224ms<br>
1364 silly pacote range manifest for is-glob@^4.0.0 fetched in 2ms<br>
1365 http fetch GET 304 <a href="https://registry.npmjs.org/@mrmlnc%2freaddir-enhanced" rel="nofollow">https://registry.npmjs.org/@mrmlnc%2freaddir-enhanced</a> 228ms (from cache)<br>
1366 silly pacote range manifest for @mrmlnc/readdir-enhanced@^2.2.1 fetched in 231ms<br>
1367 http fetch GET 304 <a href="https://registry.npmjs.org/merge2" rel="nofollow">https://registry.npmjs.org/merge2</a> 227ms (from cache)<br>
1368 http fetch GET 200 <a href="https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz" rel="nofollow">https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz</a> 226ms<br>
1369 http fetch GET 200 <a href="https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz</a> 226ms<br>
1370 silly pacote range manifest for merge2@^1.2.3 fetched in 232ms<br>
1371 http fetch GET 304 <a href="https://registry.npmjs.org/@nodelib%2ffs.stat" rel="nofollow">https://registry.npmjs.org/@nodelib%2ffs.stat</a> 235ms (from cache)<br>
1372 silly pacote range manifest for lodash@^4.17.20 fetched in 4ms<br>
1373 http fetch GET 304 <a href="https://registry.npmjs.org/@types%2fnode" rel="nofollow">https://registry.npmjs.org/@types%2fnode</a> 246ms (from cache)<br>
1374 silly pacote range manifest for @nodelib/fs.stat@^1.1.2 fetched in 255ms<br>
1375 silly pacote range manifest for @types/node@* fetched in 262ms<br>
1376 silly pacote range manifest for ms@^2.1.1 fetched in 2ms<br>
1377 silly pacote range manifest for emojis-list@^2.0.0 fetched in 257ms<br>
1378 silly pacote range manifest for big.js@^3.1.3 fetched in 258ms<br>
1379 http fetch GET 200 <a href="https://registry.npmjs.org/json5/-/json5-0.5.1.tgz" rel="nofollow">https://registry.npmjs.org/json5/-/json5-0.5.1.tgz</a> 232ms<br>
1380 silly pacote range manifest for json5@^0.5.0 fetched in 239ms<br>
1381 http fetch GET 304 <a href="https://registry.npmjs.org/camel-case" rel="nofollow">https://registry.npmjs.org/camel-case</a> 230ms (from cache)<br>
1382 http fetch GET 200 <a href="https://registry.npmjs.org/renderkid" rel="nofollow">https://registry.npmjs.org/renderkid</a> 388ms<br>
1383 http fetch GET 200 <a href="https://registry.npmjs.org/commander/-/commander-2.17.1.tgz" rel="nofollow">https://registry.npmjs.org/commander/-/commander-2.17.1.tgz</a> 400ms<br>
1384 http fetch GET 200 <a href="https://registry.npmjs.org/he" rel="nofollow">https://registry.npmjs.org/he</a> 402ms<br>
1385 silly pacote range manifest for <a href="mailto:commander@2.17.x">commander@2.17.x</a> fetched in 405ms<br>
1386 http fetch GET 200 <a href="https://registry.npmjs.org/clean-css" rel="nofollow">https://registry.npmjs.org/clean-css</a> 411ms<br>
1387 http fetch GET 200 <a href="https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz</a> 433ms<br>
1388 http fetch GET 304 <a href="https://registry.npmjs.org/param-case" rel="nofollow">https://registry.npmjs.org/param-case</a> 458ms (from cache)<br>
1389 silly pacote range manifest for <a href="mailto:camel-case@3.0.x">camel-case@3.0.x</a> fetched in 668ms<br>
1390 http fetch GET 200 <a href="https://registry.npmjs.org/renderkid/-/renderkid-2.0.5.tgz" rel="nofollow">https://registry.npmjs.org/renderkid/-/renderkid-2.0.5.tgz</a> 304ms<br>
1391 silly pacote range manifest for renderkid@^2.0.4 fetched in 697ms<br>
1392 silly pacote range manifest for lodash@^4.17.14 fetched in 1ms<br>
1393 http fetch GET 200 <a href="https://registry.npmjs.org/relateurl" rel="nofollow">https://registry.npmjs.org/relateurl</a> 287ms<br>
1394 http fetch GET 200 <a href="https://registry.npmjs.org/he/-/he-1.2.0.tgz" rel="nofollow">https://registry.npmjs.org/he/-/he-1.2.0.tgz</a> 440ms<br>
1395 silly pacote range manifest for <a href="mailto:he@1.2.x">he@1.2.x</a> fetched in 845ms<br>
1396 http fetch GET 200 <a href="https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz" rel="nofollow">https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz</a> 443ms<br>
1397 silly pacote range manifest for <a href="mailto:clean-css@4.2.x">clean-css@4.2.x</a> fetched in 858ms<br>
1398 http fetch GET 200 <a href="https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz" rel="nofollow">https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz</a> 215ms<br>
1399 silly pacote range manifest for <a href="mailto:param-case@2.1.x">param-case@2.1.x</a> fetched in 683ms<br>
1400 http fetch GET 304 <a href="https://registry.npmjs.org/define-properties" rel="nofollow">https://registry.npmjs.org/define-properties</a> 207ms (from cache)<br>
1401 silly pacote range manifest for define-properties@^1.1.2 fetched in 208ms<br>
1402 http fetch GET 200 <a href="https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz" rel="nofollow">https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz</a> 220ms<br>
1403 silly pacote range manifest for <a href="mailto:relateurl@0.2.x">relateurl@0.2.x</a> fetched in 510ms<br>
1404 http fetch GET 200 <a href="https://registry.npmjs.org/import-cwd" rel="nofollow">https://registry.npmjs.org/import-cwd</a> 189ms<br>
1405 http fetch GET 200 <a href="https://registry.npmjs.org/uglify-js" rel="nofollow">https://registry.npmjs.org/uglify-js</a> 439ms<br>
1406 http fetch GET 304 <a href="https://registry.npmjs.org/object.getownpropertydescriptors" rel="nofollow">https://registry.npmjs.org/object.getownpropertydescriptors</a> 265ms (from cache)<br>
1407 http fetch GET 304 <a href="https://registry.npmjs.org/prepend-http" rel="nofollow">https://registry.npmjs.org/prepend-http</a> 256ms (from cache)<br>
1408 http fetch GET 304 <a href="https://registry.npmjs.org/query-string" rel="nofollow">https://registry.npmjs.org/query-string</a> 224ms (from cache)<br>
1409 http fetch GET 304 <a href="https://registry.npmjs.org/sort-keys" rel="nofollow">https://registry.npmjs.org/sort-keys</a> 217ms (from cache)<br>
1410 silly pacote range manifest for object.getownpropertydescriptors@^2.0.3 fetched in 270ms<br>
1411 silly pacote range manifest for prepend-http@^1.0.0 fetched in 259ms<br>
1412 silly pacote range manifest for sort-keys@^1.0.0 fetched in 220ms<br>
1413 silly pacote range manifest for chownr@^1.1.2 fetched in 2ms<br>
1414 silly pacote range manifest for graceful-fs@^4.2.2 fetched in 1ms<br>
1415 silly pacote range manifest for infer-owner@^1.0.4 fetched in 1ms<br>
1416 silly pacote range manifest for minipass@^3.0.0 fetched in 1ms<br>
1417 http fetch GET 200 <a href="https://registry.npmjs.org/minipass-collect" rel="nofollow">https://registry.npmjs.org/minipass-collect</a> 157ms<br>
1418 http fetch GET 200 <a href="https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz" rel="nofollow">https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz</a> 161ms<br>
1419 http fetch GET 200 <a href="https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz</a> 169ms<br>
1420 http fetch GET 200 <a href="https://registry.npmjs.org/fs-minipass" rel="nofollow">https://registry.npmjs.org/fs-minipass</a> 165ms<br>
1421 silly pacote range manifest for query-string@^4.1.0 fetched in 394ms<br>
1422 http fetch GET 200 <a href="https://registry.npmjs.org/minipass-flush" rel="nofollow">https://registry.npmjs.org/minipass-flush</a> 165ms<br>
1423 silly pacote range manifest for import-cwd@^2.0.0 fetched in 369ms<br>
1424 http fetch GET 200 <a href="https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz" rel="nofollow">https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz</a> 442ms<br>
1425 http fetch GET 200 <a href="https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz</a> 437ms<br>
1426 http fetch GET 200 <a href="https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz" rel="nofollow">https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz</a> 437ms<br>
1427 silly pacote range manifest for minipass-collect@^1.0.2 fetched in 605ms<br>
1428 silly pacote range manifest for rimraf@^2.7.1 fetched in 1ms<br>
1429 silly pacote range manifest for ssri@^7.0.0 fetched in 0ms<br>
1430 silly pacote range manifest for fs-minipass@^2.0.0 fetched in 611ms<br>
1431 silly pacote range manifest for yallist@^4.0.0 fetched in 2ms<br>
1432 silly pacote range manifest for supports-color@^7.0.0 fetched in 1ms<br>
1433 silly pacote range manifest for minipass-flush@^1.0.5 fetched in 610ms<br>
1434 http fetch GET 200 <a href="https://registry.npmjs.org/minipass-pipeline" rel="nofollow">https://registry.npmjs.org/minipass-pipeline</a> 446ms<br>
1435 http fetch GET 304 <a href="https://registry.npmjs.org/p-map" rel="nofollow">https://registry.npmjs.org/p-map</a> 457ms (from cache)<br>
1436 http fetch GET 200 <a href="https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz" rel="nofollow">https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz</a> 833ms<br>
1437 http fetch GET 200 <a href="https://registry.npmjs.org/prettier/-/prettier-1.19.1.tgz" rel="nofollow">https://registry.npmjs.org/prettier/-/prettier-1.19.1.tgz</a> 2632ms<br>
1438 http fetch GET 200 <a href="https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz" rel="nofollow">https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz</a> 224ms<br>
1439 http fetch GET 200 <a href="https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz</a> 214ms<br>
1440 silly pacote range manifest for <a href="mailto:uglify-js@3.4.x">uglify-js@3.4.x</a> fetched in 1291ms<br>
1441 http fetch GET 304 <a href="https://registry.npmjs.org/body-parser" rel="nofollow">https://registry.npmjs.org/body-parser</a> 232ms (from cache)<br>
1442 http fetch GET 304 <a href="https://registry.npmjs.org/array-flatten" rel="nofollow">https://registry.npmjs.org/array-flatten</a> 235ms (from cache)<br>
1443 http fetch GET 304 <a href="https://registry.npmjs.org/accepts" rel="nofollow">https://registry.npmjs.org/accepts</a> 236ms (from cache)<br>
1444 silly pacote version manifest for array-flatten@1.1.1 fetched in 237ms<br>
1445 silly pacote range manifest for minipass-pipeline@^1.2.2 fetched in 681ms<br>
1446 silly pacote range manifest for prettier@^1.18.2 fetched in 2889ms<br>
1447 silly pacote range manifest for accepts@~1.3.7 fetched in 240ms<br>
1448 silly pacote range manifest for p-map@^3.0.0 fetched in 683ms<br>
1449 silly pacote version manifest for debug@2.6.9 fetched in 3ms<br>
1450 http fetch GET 200 <a href="https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz" rel="nofollow">https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz</a> 46ms (from cache)<br>
1451 silly pacote version manifest for body-parser@1.19.0 fetched in 284ms<br>
1452 http fetch GET 304 <a href="https://registry.npmjs.org/content-disposition" rel="nofollow">https://registry.npmjs.org/content-disposition</a> 199ms (from cache)<br>
1453 http fetch GET 304 <a href="https://registry.npmjs.org/content-type" rel="nofollow">https://registry.npmjs.org/content-type</a> 191ms (from cache)<br>
1454 http fetch GET 304 <a href="https://registry.npmjs.org/depd" rel="nofollow">https://registry.npmjs.org/depd</a> 188ms (from cache)<br>
1455 http fetch GET 304 <a href="https://registry.npmjs.org/escape-html" rel="nofollow">https://registry.npmjs.org/escape-html</a> 145ms (from cache)<br>
1456 http fetch GET 304 <a href="https://registry.npmjs.org/encodeurl" rel="nofollow">https://registry.npmjs.org/encodeurl</a> 186ms (from cache)<br>
1457 http fetch GET 304 <a href="https://registry.npmjs.org/cookie-signature" rel="nofollow">https://registry.npmjs.org/cookie-signature</a> 193ms (from cache)<br>
1458 silly pacote version manifest for content-disposition@0.5.3 fetched in 202ms<br>
1459 http fetch GET 304 <a href="https://registry.npmjs.org/cookie" rel="nofollow">https://registry.npmjs.org/cookie</a> 193ms (from cache)<br>
1460 silly pacote range manifest for content-type@~1.0.4 fetched in 193ms<br>
1461 silly pacote range manifest for depd@~1.1.2 fetched in 192ms<br>
1462 silly pacote range manifest for escape-html@~1.0.3 fetched in 148ms<br>
1463 silly pacote range manifest for encodeurl@~1.0.2 fetched in 189ms<br>
1464 silly pacote version manifest for cookie-signature@1.0.6 fetched in 196ms<br>
1465 silly pacote version manifest for cookie@0.4.0 fetched in 197ms<br>
1466 http fetch GET 304 <a href="https://registry.npmjs.org/methods" rel="nofollow">https://registry.npmjs.org/methods</a> 213ms (from cache)<br>
1467 http fetch GET 304 <a href="https://registry.npmjs.org/parseurl" rel="nofollow">https://registry.npmjs.org/parseurl</a> 213ms (from cache)<br>
1468 http fetch GET 304 <a href="https://registry.npmjs.org/merge-descriptors" rel="nofollow">https://registry.npmjs.org/merge-descriptors</a> 215ms (from cache)<br>
1469 http fetch GET 304 <a href="https://registry.npmjs.org/fresh" rel="nofollow">https://registry.npmjs.org/fresh</a> 215ms (from cache)<br>
1470 http fetch GET 304 <a href="https://registry.npmjs.org/finalhandler" rel="nofollow">https://registry.npmjs.org/finalhandler</a> 217ms (from cache)<br>
1471 http fetch GET 304 <a href="https://registry.npmjs.org/etag" rel="nofollow">https://registry.npmjs.org/etag</a> 217ms (from cache)<br>
1472 silly pacote range manifest for parseurl@~1.3.3 fetched in 215ms<br>
1473 silly pacote range manifest for methods@~1.1.2 fetched in 216ms<br>
1474 silly pacote version manifest for merge-descriptors@1.0.1 fetched in 218ms<br>
1475 silly pacote version manifest for fresh@0.5.2 fetched in 219ms<br>
1476 silly pacote range manifest for finalhandler@~1.1.2 fetched in 220ms<br>
1477 silly pacote range manifest for etag@~1.8.1 fetched in 222ms<br>
1478 http fetch GET 304 <a href="https://registry.npmjs.org/on-finished" rel="nofollow">https://registry.npmjs.org/on-finished</a> 219ms (from cache)<br>
1479 silly pacote version manifest for qs@6.7.0 fetched in 4ms<br>
1480 silly pacote version manifest for safe-buffer@5.1.2 fetched in 4ms<br>
1481 silly pacote range manifest for on-finished@~2.3.0 fetched in 223ms<br>
1482 http fetch GET 304 <a href="https://registry.npmjs.org/range-parser" rel="nofollow">https://registry.npmjs.org/range-parser</a> 219ms (from cache)<br>
1483 http fetch GET 304 <a href="https://registry.npmjs.org/statuses" rel="nofollow">https://registry.npmjs.org/statuses</a> 214ms (from cache)<br>
1484 http fetch GET 304 <a href="https://registry.npmjs.org/serve-static" rel="nofollow">https://registry.npmjs.org/serve-static</a> 217ms (from cache)<br>
1485 http fetch GET 304 <a href="https://registry.npmjs.org/setprototypeof" rel="nofollow">https://registry.npmjs.org/setprototypeof</a> 216ms (from cache)<br>
1486 http fetch GET 304 <a href="https://registry.npmjs.org/send" rel="nofollow">https://registry.npmjs.org/send</a> 219ms (from cache)<br>
1487 http fetch GET 304 <a href="https://registry.npmjs.org/path-to-regexp" rel="nofollow">https://registry.npmjs.org/path-to-regexp</a> 223ms (from cache)<br>
1488 http fetch GET 304 <a href="https://registry.npmjs.org/proxy-addr" rel="nofollow">https://registry.npmjs.org/proxy-addr</a> 223ms (from cache)<br>
1489 silly pacote range manifest for range-parser@~1.2.1 fetched in 222ms<br>
1490 silly pacote range manifest for statuses@~1.5.0 fetched in 219ms<br>
1491 silly pacote version manifest for serve-static@1.14.1 fetched in 221ms<br>
1492 silly pacote version manifest for setprototypeof@1.1.1 fetched in 220ms<br>
1493 silly pacote version manifest for send@0.17.1 fetched in 223ms<br>
1494 silly pacote version manifest for path-to-regexp@0.1.7 fetched in 229ms<br>
1495 silly pacote range manifest for proxy-addr@~2.0.5 fetched in 229ms<br>
1496 http fetch GET 200 <a href="https://registry.npmjs.org/tryer" rel="nofollow">https://registry.npmjs.org/tryer</a> 202ms<br>
1497 http fetch GET 304 <a href="https://registry.npmjs.org/vary" rel="nofollow">https://registry.npmjs.org/vary</a> 206ms (from cache)<br>
1498 silly pacote range manifest for vary@~1.1.2 fetched in 207ms<br>
1499 http fetch GET 200 <a href="https://registry.npmjs.org/hoopy" rel="nofollow">https://registry.npmjs.org/hoopy</a> 214ms<br>
1500 http fetch GET 200 <a href="https://registry.npmjs.org/check-types" rel="nofollow">https://registry.npmjs.org/check-types</a> 219ms<br>
1501 http fetch GET 304 <a href="https://registry.npmjs.org/utils-merge" rel="nofollow">https://registry.npmjs.org/utils-merge</a> 223ms (from cache)<br>
1502 http fetch GET 304 <a href="https://registry.npmjs.org/type-is" rel="nofollow">https://registry.npmjs.org/type-is</a> 225ms (from cache)<br>
1503 http fetch GET 304 <a href="https://registry.npmjs.org/async-limiter" rel="nofollow">https://registry.npmjs.org/async-limiter</a> 220ms (from cache)<br>
1504 silly pacote version manifest for utils-merge@1.0.1 fetched in 225ms<br>
1505 silly pacote range manifest for type-is@~1.6.18 fetched in 226ms<br>
1506 silly pacote range manifest for async-limiter@~1.0.0 fetched in 222ms<br>
1507 http fetch GET 200 <a href="https://registry.npmjs.org/check-types/-/check-types-8.0.3.tgz" rel="nofollow">https://registry.npmjs.org/check-types/-/check-types-8.0.3.tgz</a> 216ms<br>
1508 http fetch GET 200 <a href="https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz</a> 231ms<br>
1509 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fconnect-history-api-fallback" rel="nofollow">https://registry.npmjs.org/@types%2fconnect-history-api-fallback</a> 230ms<br>
1510 http fetch GET 200 <a href="https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz" rel="nofollow">https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz</a> 222ms<br>
1511 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fhttp-proxy-middleware" rel="nofollow">https://registry.npmjs.org/@types%2fhttp-proxy-middleware</a> 214ms<br>
1512 http fetch GET 304 <a href="https://registry.npmjs.org/@types%2fserve-static" rel="nofollow">https://registry.npmjs.org/@types%2fserve-static</a> 216ms (from cache)<br>
1513 http fetch GET 304 <a href="https://registry.npmjs.org/@types%2fexpress" rel="nofollow">https://registry.npmjs.org/@types%2fexpress</a> 218ms (from cache)<br>
1514 silly pacote range manifest for @types/serve-static@* fetched in 218ms<br>
1515 silly pacote range manifest for check-types@^8.0.3 fetched in 445ms<br>
1516 silly pacote range manifest for tryer@^1.0.1 fetched in 444ms<br>
1517 silly pacote range manifest for hoopy@^0.1.4 fetched in 446ms<br>
1518 silly pacote range manifest for commander@^2.20.0 fetched in 2ms<br>
1519 http fetch GET 200 <a href="https://registry.npmjs.org/@types/http-proxy-middleware/-/http-proxy-middleware-0.19.3.tgz" rel="nofollow">https://registry.npmjs.org/@types/http-proxy-middleware/-/http-proxy-middleware-0.19.3.tgz</a> 230ms<br>
1520 http fetch GET 200 <a href="https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.3.tgz" rel="nofollow">https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.3.tgz</a> 230ms<br>
1521 http fetch GET 200 <a href="https://registry.npmjs.org/@types/express/-/express-4.17.11.tgz" rel="nofollow">https://registry.npmjs.org/@types/express/-/express-4.17.11.tgz</a> 226ms<br>
1522 http fetch GET 200 <a href="https://registry.npmjs.org/duplexer" rel="nofollow">https://registry.npmjs.org/duplexer</a> 224ms<br>
1523 http fetch GET 304 <a href="https://registry.npmjs.org/source-map-support" rel="nofollow">https://registry.npmjs.org/source-map-support</a> 227ms (from cache)<br>
1524 http fetch GET 304 <a href="https://registry.npmjs.org/anymatch" rel="nofollow">https://registry.npmjs.org/anymatch</a> 226ms (from cache)<br>
1525 silly pacote range manifest for source-map-support@~0.5.12 fetched in 229ms<br>
1526 silly pacote range manifest for anymatch@^2.0.0 fetched in 228ms<br>
1527 silly pacote range manifest for @types/http-proxy-middleware@* fetched in 453ms<br>
1528 silly pacote range manifest for @types/connect-history-api-fallback@* fetched in 470ms<br>
1529 silly pacote range manifest for braces@^2.3.2 fetched in 3ms<br>
1530 silly pacote range manifest for @types/express@* fetched in 456ms<br>
1531 silly pacote range manifest for inherits@^2.0.3 fetched in 4ms<br>
1532 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fwebpack" rel="nofollow">https://registry.npmjs.org/@types%2fwebpack</a> 430ms<br>
1533 http fetch GET 200 <a href="https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz" rel="nofollow">https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz</a> 205ms<br>
1534 http fetch GET 304 <a href="https://registry.npmjs.org/async-each" rel="nofollow">https://registry.npmjs.org/async-each</a> 204ms (from cache)<br>
1535 http fetch GET 304 <a href="https://registry.npmjs.org/is-binary-path" rel="nofollow">https://registry.npmjs.org/is-binary-path</a> 203ms (from cache)<br>
1536 http fetch GET 304 <a href="https://registry.npmjs.org/readdirp" rel="nofollow">https://registry.npmjs.org/readdirp</a> 201ms (from cache)<br>
1537 http fetch GET 304 <a href="https://registry.npmjs.org/fsevents" rel="nofollow">https://registry.npmjs.org/fsevents</a> 201ms (from cache)<br>
1538 http fetch GET 304 <a href="https://registry.npmjs.org/upath" rel="nofollow">https://registry.npmjs.org/upath</a> 204ms (from cache)<br>
1539 silly pacote range manifest for async-each@^1.0.1 fetched in 212ms<br>
1540 silly pacote range manifest for is-binary-path@^1.0.0 fetched in 211ms<br>
1541 silly pacote range manifest for readdirp@^2.2.1 fetched in 211ms<br>
1542 silly pacote range manifest for duplexer@^0.1.1 fetched in 445ms<br>
1543 silly pacote range manifest for upath@^1.1.1 fetched in 214ms<br>
1544 silly pacote range manifest for fsevents@^1.2.7 fetched in 213ms<br>
1545 warn deprecated fsevents@1.2.13: fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.<br>
1546 http fetch GET 200 <a href="https://registry.npmjs.org/dns-equal" rel="nofollow">https://registry.npmjs.org/dns-equal</a> 206ms<br>
1547 http fetch GET 200 <a href="https://registry.npmjs.org/multicast-dns-service-types" rel="nofollow">https://registry.npmjs.org/multicast-dns-service-types</a> 204ms<br>
1548 http fetch GET 200 <a href="https://registry.npmjs.org/deep-equal" rel="nofollow">https://registry.npmjs.org/deep-equal</a> 211ms<br>
1549 http fetch GET 200 <a href="https://registry.npmjs.org/multicast-dns" rel="nofollow">https://registry.npmjs.org/multicast-dns</a> 208ms<br>
1550 http fetch GET 200 <a href="https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz" rel="nofollow">https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz</a> 207ms<br>
1551 http fetch GET 200 <a href="https://registry.npmjs.org/dns-txt" rel="nofollow">https://registry.npmjs.org/dns-txt</a> 212ms<br>
1552 http fetch GET 200 <a href="https://registry.npmjs.org/@types/webpack/-/webpack-4.41.26.tgz" rel="nofollow">https://registry.npmjs.org/@types/webpack/-/webpack-4.41.26.tgz</a> 230ms<br>
1553 silly pacote range manifest for array-flatten@^2.1.0 fetched in 220ms<br>
1554 silly pacote range manifest for accepts@~1.3.5 fetched in 1ms<br>
1555 silly pacote range manifest for @types/webpack@* fetched in 666ms<br>
1556 http fetch GET 200 <a href="https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz</a> 233ms<br>
1557 http fetch GET 200 <a href="https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz" rel="nofollow">https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz</a> 230ms<br>
1558 http fetch GET 200 <a href="https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz</a> 237ms<br>
1559 http fetch GET 200 <a href="https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz" rel="nofollow">https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz</a> 231ms<br>
1560 http fetch GET 200 <a href="https://registry.npmjs.org/compressible" rel="nofollow">https://registry.npmjs.org/compressible</a> 226ms<br>
1561 http fetch GET 200 <a href="https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz" rel="nofollow">https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz</a> 236ms<br>
1562 http fetch GET 304 <a href="https://registry.npmjs.org/bytes" rel="nofollow">https://registry.npmjs.org/bytes</a> 232ms (from cache)<br>
1563 silly pacote range manifest for multicast-dns-service-types@^1.1.0 fetched in 447ms<br>
1564 silly pacote range manifest for dns-txt@^2.0.2 fetched in 452ms<br>
1565 silly pacote range manifest for deep-equal@^1.0.1 fetched in 456ms<br>
1566 silly pacote range manifest for dns-equal@^1.0.0 fetched in 453ms<br>
1567 silly pacote range manifest for multicast-dns@^6.0.1 fetched in 449ms<br>
1568 silly pacote range manifest for p-map@^2.0.0 fetched in 2ms<br>
1569 http fetch GET 200 <a href="https://registry.npmjs.org/on-headers" rel="nofollow">https://registry.npmjs.org/on-headers</a> 196ms<br>
1570 http fetch GET 200 <a href="https://registry.npmjs.org/is-path-in-cwd" rel="nofollow">https://registry.npmjs.org/is-path-in-cwd</a> 194ms<br>
1571 http fetch GET 200 <a href="https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz" rel="nofollow">https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz</a> 202ms<br>
1572 http fetch GET 200 <a href="https://registry.npmjs.org/is-path-cwd" rel="nofollow">https://registry.npmjs.org/is-path-cwd</a> 194ms<br>
1573 http fetch GET 200 <a href="https://registry.npmjs.org/globby/-/globby-6.1.0.tgz" rel="nofollow">https://registry.npmjs.org/globby/-/globby-6.1.0.tgz</a> 194ms<br>
1574 http fetch GET 200 <a href="https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz</a> 201ms<br>
1575 http fetch GET 200 <a href="https://registry.npmjs.org/resolve-cwd" rel="nofollow">https://registry.npmjs.org/resolve-cwd</a> 197ms<br>
1576 silly pacote range manifest for compressible@~2.0.16 fetched in 438ms<br>
1577 silly pacote range manifest for globby@^6.1.0 fetched in 205ms<br>
1578 silly pacote version manifest for bytes@3.0.0 fetched in 440ms<br>
1579 http fetch GET 200 <a href="https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz" rel="nofollow">https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz</a> 211ms<br>
1580 http fetch GET 200 <a href="https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz" rel="nofollow">https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz</a> 212ms<br>
1581 http fetch GET 200 <a href="https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz</a> 210ms<br>
1582 http fetch GET 200 <a href="https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz" rel="nofollow">https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz</a> 206ms<br>
1583 http fetch GET 200 <a href="https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz</a> 213ms<br>
1584 silly pacote range manifest for is-path-cwd@^2.0.0 fetched in 417ms<br>
1585 http fetch GET 200 <a href="https://registry.npmjs.org/http-proxy" rel="nofollow">https://registry.npmjs.org/http-proxy</a> 213ms<br>
1586 silly pacote range manifest for on-headers@~1.0.2 fetched in 422ms<br>
1587 silly pacote range manifest for resolve-cwd@^2.0.0 fetched in 416ms<br>
1588 silly pacote range manifest for is-path-in-cwd@^2.0.0 fetched in 420ms<br>
1589 silly pacote range manifest for lodash@^4.17.11 fetched in 3ms<br>
1590 silly pacote range manifest for default-gateway@^4.2.0 fetched in 219ms<br>
1591 silly pacote range manifest for ansi-regex@^2.0.0 fetched in 4ms<br>
1592 silly pacote range manifest for accepts@~1.3.4 fetched in 3ms<br>
1593 http fetch GET 304 <a href="https://registry.npmjs.org/ipaddr.js" rel="nofollow">https://registry.npmjs.org/ipaddr.js</a> 221ms (from cache)<br>
1594 silly pacote range manifest for mime-types@~2.1.17 fetched in 2ms<br>
1595 silly pacote range manifest for parseurl@~1.3.2 fetched in 1ms<br>
1596 http fetch GET 200 <a href="https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz" rel="nofollow">https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz</a> 3ms (from cache)<br>
1597 silly pacote range manifest for ipaddr.js@^1.9.0 fetched in 228ms<br>
1598 silly pacote range manifest for uuid@^3.4.0 fetched in 1ms<br>
1599 http fetch GET 304 <a href="https://registry.npmjs.org/retry" rel="nofollow">https://registry.npmjs.org/retry</a> 214ms (from cache)<br>
1600 http fetch GET 200 <a href="https://registry.npmjs.org/retry/-/retry-0.12.0.tgz" rel="nofollow">https://registry.npmjs.org/retry/-/retry-0.12.0.tgz</a> 3ms (from cache)<br>
1601 http fetch GET 200 <a href="https://registry.npmjs.org/batch" rel="nofollow">https://registry.npmjs.org/batch</a> 215ms<br>
1602 silly pacote range manifest for retry@^0.12.0 fetched in 225ms<br>
1603 http fetch GET 200 <a href="https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz" rel="nofollow">https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz</a> 227ms<br>
1604 http fetch GET 200 <a href="https://registry.npmjs.org/faye-websocket" rel="nofollow">https://registry.npmjs.org/faye-websocket</a> 222ms<br>
1605 http fetch GET 304 <a href="https://registry.npmjs.org/http-errors" rel="nofollow">https://registry.npmjs.org/http-errors</a> 226ms (from cache)<br>
1606 http fetch GET 200 <a href="https://registry.npmjs.org/websocket-driver" rel="nofollow">https://registry.npmjs.org/websocket-driver</a> 219ms<br>
1607 silly pacote range manifest for http-proxy@^1.17.0 fetched in 448ms<br>
1608 http fetch GET 200 <a href="https://registry.npmjs.org/node-forge" rel="nofollow">https://registry.npmjs.org/node-forge</a> 237ms<br>
1609 http fetch GET 200 <a href="https://registry.npmjs.org/batch/-/batch-0.6.1.tgz" rel="nofollow">https://registry.npmjs.org/batch/-/batch-0.6.1.tgz</a> 210ms<br>
1610 http fetch GET 200 <a href="https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz" rel="nofollow">https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz</a> 198ms<br>
1611 http fetch GET 200 <a href="https://registry.npmjs.org/handle-thing" rel="nofollow">https://registry.npmjs.org/handle-thing</a> 206ms<br>
1612 silly pacote version manifest for batch@0.6.1 fetched in 440ms<br>
1613 silly pacote range manifest for faye-websocket@^0.11.3 fetched in 435ms<br>
1614 http fetch GET 200 <a href="https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz" rel="nofollow">https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz</a> 214ms<br>
1615 http fetch GET 200 <a href="https://registry.npmjs.org/http-deceiver" rel="nofollow">https://registry.npmjs.org/http-deceiver</a> 214ms<br>
1616 http fetch GET 200 <a href="https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz" rel="nofollow">https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz</a> 216ms<br>
1617 silly pacote range manifest for http-errors@~1.6.2 fetched in 448ms<br>
1618 silly pacote range manifest for websocket-driver@^0.7.4 fetched in 441ms<br>
1619 http fetch GET 200 <a href="https://registry.npmjs.org/select-hose" rel="nofollow">https://registry.npmjs.org/select-hose</a> 208ms<br>
1620 http fetch GET 200 <a href="https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz" rel="nofollow">https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz</a> 225ms<br>
1621 http fetch GET 200 <a href="https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz" rel="nofollow">https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz</a> 212ms<br>
1622 silly pacote range manifest for handle-thing@^2.0.0 fetched in 436ms<br>
1623 http fetch GET 200 <a href="https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz" rel="nofollow">https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz</a> 206ms<br>
1624 http fetch GET 200 <a href="https://registry.npmjs.org/spdy-transport" rel="nofollow">https://registry.npmjs.org/spdy-transport</a> 223ms<br>
1625 silly pacote range manifest for http-deceiver@^1.2.7 fetched in 433ms<br>
1626 silly pacote range manifest for cliui@^5.0.0 fetched in 213ms<br>
1627 silly pacote range manifest for get-caller-file@^2.0.1 fetched in 3ms<br>
1628 http fetch GET 304 <a href="https://registry.npmjs.org/has-flag" rel="nofollow">https://registry.npmjs.org/has-flag</a> 220ms (from cache)<br>
1629 silly pacote range manifest for has-flag@^3.0.0 fetched in 221ms<br>
1630 silly pacote range manifest for string-width@^3.0.0 fetched in 0ms<br>
1631 http fetch GET 200 <a href="https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz</a> 251ms<br>
1632 http fetch GET 304 <a href="https://registry.npmjs.org/set-blocking" rel="nofollow">https://registry.npmjs.org/set-blocking</a> 233ms (from cache)<br>
1633 http fetch GET 304 <a href="https://registry.npmjs.org/require-main-filename" rel="nofollow">https://registry.npmjs.org/require-main-filename</a> 237ms (from cache)<br>
1634 http fetch GET 304 <a href="https://registry.npmjs.org/which-module" rel="nofollow">https://registry.npmjs.org/which-module</a> 232ms (from cache)<br>
1635 http fetch GET 304 <a href="https://registry.npmjs.org/find-up" rel="nofollow">https://registry.npmjs.org/find-up</a> 246ms (from cache)<br>
1636 silly pacote range manifest for set-blocking@^2.0.0 fetched in 236ms<br>
1637 silly pacote range manifest for require-main-filename@^2.0.0 fetched in 240ms<br>
1638 silly pacote range manifest for which-module@^2.0.0 fetched in 234ms<br>
1639 silly pacote range manifest for find-up@^3.0.0 fetched in 250ms<br>
1640 silly pacote range manifest for select-hose@^2.0.0 fetched in 468ms<br>
1641 silly pacote range manifest for chalk@^2.0.0 fetched in 2ms<br>
1642 http fetch GET 200 <a href="https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz</a> 246ms<br>
1643 silly pacote range manifest for spdy-transport@^3.0.0 fetched in 474ms<br>
1644 http fetch GET 200 <a href="https://registry.npmjs.org/querystring" rel="nofollow">https://registry.npmjs.org/querystring</a> 197ms<br>
1645 http fetch GET 200 <a href="https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz" rel="nofollow">https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz</a> 203ms<br>
1646 http fetch GET 304 <a href="https://registry.npmjs.org/js-tokens" rel="nofollow">https://registry.npmjs.org/js-tokens</a> 203ms (from cache)<br>
1647 silly pacote range manifest for js-tokens@^4.0.0 fetched in 204ms<br>
1648 http fetch GET 200 <a href="https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz" rel="nofollow">https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz</a> 205ms<br>
1649 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fhelper-optimise-call-expression" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-optimise-call-expression</a> 198ms (from cache)<br>
1650 http fetch GET 200 <a href="https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz" rel="nofollow">https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz</a> 877ms<br>
1651 silly pacote range manifest for range-parser@^1.2.1 fetched in 3ms<br>
1652 silly pacote range manifest for @babel/helper-optimise-call-expression@^7.12.13 fetched in 201ms<br>
1653 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fhelper-member-expression-to-functions" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-member-expression-to-functions</a> 206ms (from cache)<br>
1654 silly pacote range manifest for yargs-parser@^13.1.2 fetched in 213ms<br>
1655 silly pacote range manifest for debug@^3.2.6 fetched in 3ms<br>
1656 silly pacote range manifest for @babel/helper-member-expression-to-functions@^7.13.0 fetched in 209ms<br>
1657 silly pacote range manifest for inherits@^2.0.4 fetched in 1ms<br>
1658 silly pacote version manifest for punycode@1.3.2 fetched in 217ms<br>
1659 silly pacote range manifest for node-forge@^0.10.0 fetched in 1125ms<br>
1660 silly pacote range manifest for @hapi/hoek@^8.3.0 fetched in 1ms<br>
1661 http fetch GET 200 <a href="https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz" rel="nofollow">https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz</a> 208ms<br>
1662 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fhelper-get-function-arity" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-get-function-arity</a> 201ms (from cache)<br>
1663 http fetch GET 304 <a href="https://registry.npmjs.org/color-convert" rel="nofollow">https://registry.npmjs.org/color-convert</a> 194ms (from cache)<br>
1664 silly pacote range manifest for @babel/helper-get-function-arity@^7.12.13 fetched in 202ms<br>
1665 silly pacote range manifest for color-convert@^1.9.0 fetched in 195ms<br>
1666 silly pacote version manifest for querystring@0.2.0 fetched in 414ms<br>
1667 silly pacote range manifest for semver@^5.5.0 fetched in 2ms<br>
1668 http fetch GET 200 <a href="https://registry.npmjs.org/json3" rel="nofollow">https://registry.npmjs.org/json3</a> 224ms<br>
1669 http fetch GET 200 <a href="https://registry.npmjs.org/eventsource" rel="nofollow">https://registry.npmjs.org/eventsource</a> 227ms<br>
1670 http fetch GET 304 <a href="https://registry.npmjs.org/path-key" rel="nofollow">https://registry.npmjs.org/path-key</a> 223ms (from cache)<br>
1671 silly pacote range manifest for path-key@^2.0.0 fetched in 225ms<br>
1672 http fetch GET 200 <a href="https://registry.npmjs.org/url-parse" rel="nofollow">https://registry.npmjs.org/url-parse</a> 233ms<br>
1673 http fetch GET 304 <a href="https://registry.npmjs.org/path-key" rel="nofollow">https://registry.npmjs.org/path-key</a> 217ms (from cache)<br>
1674 http fetch GET 200 <a href="https://registry.npmjs.org/json3/-/json3-3.3.3.tgz" rel="nofollow">https://registry.npmjs.org/json3/-/json3-3.3.3.tgz</a> 190ms<br>
1675 silly pacote range manifest for path-key@^2.0.1 fetched in 219ms<br>
1676 http fetch GET 304 <a href="https://registry.npmjs.org/shebang-command" rel="nofollow">https://registry.npmjs.org/shebang-command</a> 216ms (from cache)<br>
1677 http fetch GET 304 <a href="https://registry.npmjs.org/nice-try" rel="nofollow">https://registry.npmjs.org/nice-try</a> 223ms (from cache)<br>
1678 silly pacote range manifest for shebang-command@^1.2.0 fetched in 221ms<br>
1679 http fetch GET 304 <a href="https://registry.npmjs.org/which" rel="nofollow">https://registry.npmjs.org/which</a> 193ms (from cache)<br>
1680 silly pacote range manifest for nice-try@^1.0.4 fetched in 227ms<br>
1681 silly pacote range manifest for which@^1.2.9 fetched in 196ms<br>
1682 silly pacote range manifest for json3@^3.3.3 fetched in 427ms<br>
1683 silly pacote range manifest for ansi-regex@^4.1.0 fetched in 2ms<br>
1684 silly pacote range manifest for @babel/code-frame@^7.0.0 fetched in 2ms<br>
1685 http fetch GET 200 <a href="https://registry.npmjs.org/url-parse/-/url-parse-1.5.1.tgz" rel="nofollow">https://registry.npmjs.org/url-parse/-/url-parse-1.5.1.tgz</a> 196ms<br>
1686 silly pacote range manifest for url-parse@^1.4.7 fetched in 433ms<br>
1687 http fetch GET 200 <a href="https://registry.npmjs.org/eventsource/-/eventsource-1.0.7.tgz" rel="nofollow">https://registry.npmjs.org/eventsource/-/eventsource-1.0.7.tgz</a> 271ms<br>
1688 silly pacote range manifest for eventsource@^1.0.7 fetched in 502ms<br>
1689 http fetch GET 304 <a href="https://registry.npmjs.org/pump" rel="nofollow">https://registry.npmjs.org/pump</a> 225ms (from cache)<br>
1690 http fetch GET 304 <a href="https://registry.npmjs.org/lines-and-columns" rel="nofollow">https://registry.npmjs.org/lines-and-columns</a> 210ms (from cache)<br>
1691 http fetch GET 304 <a href="https://registry.npmjs.org/error-ex" rel="nofollow">https://registry.npmjs.org/error-ex</a> 215ms (from cache)<br>
1692 http fetch GET 304 <a href="https://registry.npmjs.org/restore-cursor" rel="nofollow">https://registry.npmjs.org/restore-cursor</a> 221ms (from cache)<br>
1693 http fetch GET 304 <a href="https://registry.npmjs.org/defaults" rel="nofollow">https://registry.npmjs.org/defaults</a> 144ms (from cache)<br>
1694 http fetch GET 304 <a href="https://registry.npmjs.org/easy-stack" rel="nofollow">https://registry.npmjs.org/easy-stack</a> 221ms (from cache)<br>
1695 http fetch GET 304 <a href="https://registry.npmjs.org/json-parse-even-better-errors" rel="nofollow">https://registry.npmjs.org/json-parse-even-better-errors</a> 216ms (from cache)<br>
1696 silly pacote range manifest for lines-and-columns@^1.1.6 fetched in 212ms<br>
1697 silly pacote range manifest for pump@^3.0.0 fetched in 228ms<br>
1698 silly pacote range manifest for error-ex@^1.3.1 fetched in 217ms<br>
1699 silly pacote range manifest for restore-cursor@^2.0.0 fetched in 226ms<br>
1700 silly pacote range manifest for defaults@^1.0.3 fetched in 149ms<br>
1701 silly pacote range manifest for easy-stack@^1.0.1 fetched in 225ms<br>
1702 silly pacote range manifest for json-parse-even-better-errors@^2.3.0 fetched in 222ms<br>
1703 silly pacote range manifest for semver@2 || 3 || 4 || 5 fetched in 5ms<br>
1704 silly pacote range manifest for chalk@^2.0.1 fetched in 6ms<br>
1705 silly pacote range manifest for ajv@^6.12.3 fetched in 5ms<br>
1706 silly pacote range manifest for combined-stream@^1.0.6 fetched in 2ms<br>
1707 silly pacote range manifest for mime-types@^2.1.12 fetched in 2ms<br>
1708 http fetch GET 304 <a href="https://registry.npmjs.org/har-schema" rel="nofollow">https://registry.npmjs.org/har-schema</a> 225ms (from cache)<br>
1709 http fetch GET 304 <a href="https://registry.npmjs.org/mime-db" rel="nofollow">https://registry.npmjs.org/mime-db</a> 217ms (from cache)<br>
1710 http fetch GET 304 <a href="https://registry.npmjs.org/validate-npm-package-license" rel="nofollow">https://registry.npmjs.org/validate-npm-package-license</a> 228ms (from cache)<br>
1711 http fetch GET 304 <a href="https://registry.npmjs.org/asynckit" rel="nofollow">https://registry.npmjs.org/asynckit</a> 222ms (from cache)<br>
1712 http fetch GET 304 <a href="https://registry.npmjs.org/hosted-git-info" rel="nofollow">https://registry.npmjs.org/hosted-git-info</a> 232ms (from cache)<br>
1713 http fetch GET 304 <a href="https://registry.npmjs.org/resolve" rel="nofollow">https://registry.npmjs.org/resolve</a> 232ms (from cache)<br>
1714 http fetch GET 304 <a href="https://registry.npmjs.org/delayed-stream" rel="nofollow">https://registry.npmjs.org/delayed-stream</a> 226ms (from cache)<br>
1715 silly pacote version manifest for mime-db@1.46.0 fetched in 221ms<br>
1716 silly pacote range manifest for har-schema@^2.0.0 fetched in 229ms<br>
1717 silly pacote range manifest for validate-npm-package-license@^3.0.1 fetched in 231ms<br>
1718 silly pacote range manifest for asynckit@^0.4.0 fetched in 226ms<br>
1719 silly pacote range manifest for hosted-git-info@^2.1.4 fetched in 236ms<br>
1720 silly pacote range manifest for resolve@^1.10.0 fetched in 237ms<br>
1721 silly pacote range manifest for delayed-stream@~1.0.0 fetched in 232ms<br>
1722 silly pacote range manifest for safe-buffer@^5.0.1 fetched in 9ms<br>
1723 silly pacote range manifest for punycode@^2.1.1 fetched in 9ms<br>
1724 silly pacote range manifest for semver@^6.1.1 fetched in 6ms<br>
1725 silly pacote range manifest for core-js-compat@^3.8.1 fetched in 7ms<br>
1726 silly pacote range manifest for @babel/helper-plugin-utils@^7.8.3 fetched in 1ms<br>
1727 http fetch GET 304 <a href="https://registry.npmjs.org/jsprim" rel="nofollow">https://registry.npmjs.org/jsprim</a> 203ms (from cache)<br>
1728 http fetch GET 304 <a href="https://registry.npmjs.org/assert-plus" rel="nofollow">https://registry.npmjs.org/assert-plus</a> 204ms (from cache)<br>
1729 http fetch GET 304 <a href="https://registry.npmjs.org/sshpk" rel="nofollow">https://registry.npmjs.org/sshpk</a> 204ms (from cache)<br>
1730 http fetch GET 304 <a href="https://registry.npmjs.org/psl" rel="nofollow">https://registry.npmjs.org/psl</a> 202ms (from cache)<br>
1731 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fhelper-skip-transparent-expression-wrappers" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-skip-transparent-expression-wrappers</a> 182ms (from cache)<br>
1732 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fhelper-define-polyfill-provider" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-define-polyfill-provider</a> 200ms (from cache)<br>
1733 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fhelper-remap-async-to-generator" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-remap-async-to-generator</a> 185ms (from cache)<br>
1734 silly pacote range manifest for jsprim@^1.2.2 fetched in 207ms<br>
1735 silly pacote range manifest for assert-plus@^1.0.0 fetched in 208ms<br>
1736 silly pacote range manifest for sshpk@^1.7.0 fetched in 209ms<br>
1737 silly pacote range manifest for psl@^1.1.28 fetched in 207ms<br>
1738 silly pacote range manifest for @babel/helper-skip-transparent-expression-wrappers@^7.12.1 fetched in 186ms<br>
1739 silly pacote range manifest for @babel/helper-define-polyfill-provider@^0.1.4 fetched in 205ms<br>
1740 silly pacote range manifest for @babel/helper-remap-async-to-generator@^7.13.0 fetched in 189ms<br>
1741 silly pacote range manifest for @babel/helper-plugin-utils@^7.10.4 fetched in 4ms<br>
1742 silly pacote range manifest for @babel/helper-module-transforms@^7.12.13 fetched in 4ms<br>
1743 silly pacote range manifest for @babel/helper-replace-supers@^7.12.13 fetched in 4ms<br>
1744 silly pacote range manifest for @babel/helper-plugin-utils@^7.0.0 fetched in 2ms<br>
1745 silly pacote range manifest for @babel/plugin-proposal-unicode-property-regex@^7.4.4 fetched in 1ms<br>
1746 silly pacote range manifest for @babel/plugin-transform-dotall-regex@^7.4.4 fetched in 1ms<br>
1747 silly pacote range manifest for @babel/types@^7.4.4 fetched in 1ms<br>
1748 silly pacote range manifest for @babel/plugin-syntax-jsx@^7.2.0 fetched in 1ms<br>
1749 http fetch GET 200 <a href="https://registry.npmjs.org/html-tags/-/html-tags-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/html-tags/-/html-tags-2.0.0.tgz</a> 202ms<br>
1750 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fhelper-annotate-as-pure" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-annotate-as-pure</a> 219ms (from cache)<br>
1751 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fhelper-create-regexp-features-plugin" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-create-regexp-features-plugin</a> 222ms (from cache)<br>
1752 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fhelper-builder-binary-assignment-operator-visitor" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-builder-binary-assignment-operator-visitor</a> 218ms (from cache)<br>
1753 http fetch GET 304 <a href="https://registry.npmjs.org/esutils" rel="nofollow">https://registry.npmjs.org/esutils</a> 210ms (from cache)<br>
1754 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fhelper-hoist-variables" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-hoist-variables</a> 219ms (from cache)<br>
1755 http fetch GET 304 <a href="https://registry.npmjs.org/regenerator-transform" rel="nofollow">https://registry.npmjs.org/regenerator-transform</a> 217ms (from cache)<br>
1756 silly pacote range manifest for @babel/helper-annotate-as-pure@^7.12.13 fetched in 223ms<br>
1757 silly pacote range manifest for @babel/helper-create-regexp-features-plugin@^7.12.13 fetched in 225ms<br>
1758 silly pacote range manifest for @babel/helper-builder-binary-assignment-operator-visitor@^7.12.13 fetched in 222ms<br>
1759 silly pacote range manifest for esutils@^2.0.2 fetched in 213ms<br>
1760 silly pacote range manifest for @babel/helper-hoist-variables@^7.12.13 fetched in 223ms<br>
1761 silly pacote range manifest for regenerator-transform@^0.14.2 fetched in 221ms<br>
1762 silly pacote range manifest for html-tags@^2.0.0 fetched in 213ms<br>
1763 silly pacote range manifest for @babel/plugin-syntax-jsx@^7.2.0 fetched in 5ms<br>
1764 silly pacote range manifest for define-properties@^1.1.3 fetched in 4ms<br>
1765 silly pacote range manifest for camelcase@^5.0.0 fetched in 4ms<br>
1766 silly pacote range manifest for minimist@^1.2.0 fetched in 4ms<br>
1767 silly pacote range manifest for find-up@^4.0.0 fetched in 5ms<br>
1768 silly pacote range manifest for postcss@^7.0.1 fetched in 2ms<br>
1769 silly pacote range manifest for browserslist@^4.0.0 fetched in 1ms<br>
1770 http fetch GET 200 <a href="https://registry.npmjs.org/lodash.kebabcase" rel="nofollow">https://registry.npmjs.org/lodash.kebabcase</a> 207ms<br>
1771 http fetch GET 200 <a href="https://registry.npmjs.org/timsort" rel="nofollow">https://registry.npmjs.org/timsort</a> 199ms<br>
1772 http fetch GET 200 <a href="https://registry.npmjs.org/color" rel="nofollow">https://registry.npmjs.org/color</a> 200ms<br>
1773 http fetch GET 304 <a href="https://registry.npmjs.org/call-bind" rel="nofollow">https://registry.npmjs.org/call-bind</a> 213ms (from cache)<br>
1774 http fetch GET 304 <a href="https://registry.npmjs.org/has" rel="nofollow">https://registry.npmjs.org/has</a> 204ms (from cache)<br>
1775 http fetch GET 304 <a href="https://registry.npmjs.org/has-symbols" rel="nofollow">https://registry.npmjs.org/has-symbols</a> 213ms (from cache)<br>
1776 http fetch GET 304 <a href="https://registry.npmjs.org/object-keys" rel="nofollow">https://registry.npmjs.org/object-keys</a> 212ms (from cache)<br>
1777 silly pacote range manifest for call-bind@^1.0.0 fetched in 215ms<br>
1778 silly pacote range manifest for has@^1.0.0 fetched in 206ms<br>
1779 silly pacote range manifest for has-symbols@^1.0.1 fetched in 216ms<br>
1780 silly pacote range manifest for object-keys@^1.1.1 fetched in 216ms<br>
1781 silly pacote range manifest for postcss@^7.0.27 fetched in 3ms<br>
1782 silly pacote range manifest for postcss-value-parser@^4.0.2 fetched in 2ms<br>
1783 http fetch GET 200 <a href="https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz" rel="nofollow">https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz</a> 227ms<br>
1784 http fetch GET 200 <a href="https://registry.npmjs.org/color/-/color-3.1.3.tgz" rel="nofollow">https://registry.npmjs.org/color/-/color-3.1.3.tgz</a> 224ms<br>
1785 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz" rel="nofollow">https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz</a> 219ms<br>
1786 http fetch GET 200 <a href="https://registry.npmjs.org/caniuse-api" rel="nofollow">https://registry.npmjs.org/caniuse-api</a> 218ms<br>
1787 http fetch GET 200 <a href="https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz" rel="nofollow">https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz</a> 228ms<br>
1788 http fetch GET 200 <a href="https://registry.npmjs.org/cssnano-util-same-parent" rel="nofollow">https://registry.npmjs.org/cssnano-util-same-parent</a> 218ms<br>
1789 http fetch GET 200 <a href="https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz" rel="nofollow">https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz</a> 220ms<br>
1790 silly pacote range manifest for lodash.kebabcase@^4.1.1 fetched in 443ms<br>
1791 silly pacote range manifest for color@^3.0.0 fetched in 433ms<br>
1792 silly pacote range manifest for postcss-value-parser@^3.0.0 fetched in 228ms<br>
1793 silly pacote range manifest for timsort@^0.3.0 fetched in 436ms<br>
1794 silly pacote range manifest for postcss-selector-parser@^3.0.0 fetched in 226ms<br>
1795 http fetch GET 200 <a href="https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz</a> 214ms<br>
1796 http fetch GET 200 <a href="https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz" rel="nofollow">https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz</a> 215ms<br>
1797 http fetch GET 200 <a href="https://registry.npmjs.org/vendors" rel="nofollow">https://registry.npmjs.org/vendors</a> 212ms<br>
1798 http fetch GET 200 <a href="https://registry.npmjs.org/alphanum-sort" rel="nofollow">https://registry.npmjs.org/alphanum-sort</a> 212ms<br>
1799 http fetch GET 200 <a href="https://registry.npmjs.org/css-color-names" rel="nofollow">https://registry.npmjs.org/css-color-names</a> 212ms<br>
1800 http fetch GET 200 <a href="https://registry.npmjs.org/cssnano-util-get-arguments" rel="nofollow">https://registry.npmjs.org/cssnano-util-get-arguments</a> 209ms<br>
1801 silly pacote range manifest for caniuse-api@^3.0.0 fetched in 443ms<br>
1802 silly pacote range manifest for cssnano-util-same-parent@^4.0.0 fetched in 443ms<br>
1803 http fetch GET 200 <a href="https://registry.npmjs.org/stylehacks" rel="nofollow">https://registry.npmjs.org/stylehacks</a> 219ms<br>
1804 http fetch GET 200 <a href="https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz" rel="nofollow">https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz</a> 218ms<br>
1805 http fetch GET 200 <a href="https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz" rel="nofollow">https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz</a> 218ms<br>
1806 http fetch GET 200 <a href="https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz" rel="nofollow">https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz</a> 218ms<br>
1807 http fetch GET 200 <a href="https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz" rel="nofollow">https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz</a> 219ms<br>
1808 http fetch GET 200 <a href="https://registry.npmjs.org/is-color-stop" rel="nofollow">https://registry.npmjs.org/is-color-stop</a> 215ms<br>
1809 http fetch GET 200 <a href="https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz" rel="nofollow">https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz</a> 214ms<br>
1810 http fetch GET 200 <a href="https://registry.npmjs.org/uniqs" rel="nofollow">https://registry.npmjs.org/uniqs</a> 218ms<br>
1811 silly pacote range manifest for alphanum-sort@^1.0.0 fetched in 440ms<br>
1812 silly pacote range manifest for vendors@^1.0.0 fetched in 441ms<br>
1813 silly pacote version manifest for css-color-names@0.0.4 fetched in 442ms<br>
1814 silly pacote range manifest for cssnano-util-get-arguments@^4.0.0 fetched in 439ms<br>
1815 silly pacote range manifest for stylehacks@^4.0.0 fetched in 441ms<br>
1816 silly pacote range manifest for normalize-url@^3.0.0 fetched in 2ms<br>
1817 http fetch GET 200 <a href="https://registry.npmjs.org/cssnano-util-get-match" rel="nofollow">https://registry.npmjs.org/cssnano-util-get-match</a> 203ms<br>
1818 http fetch GET 200 <a href="https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz</a> 208ms<br>
1819 http fetch GET 200 <a href="https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz</a> 205ms<br>
1820 http fetch GET 200 <a href="https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz</a> 211ms<br>
1821 silly pacote range manifest for uniqs@^2.0.0 fetched in 431ms<br>
1822 silly pacote range manifest for is-absolute-url@^2.0.0 fetched in 210ms<br>
1823 silly pacote range manifest for is-color-stop@^1.0.0 fetched in 431ms<br>
1824 http fetch GET 200 <a href="https://registry.npmjs.org/is-svg" rel="nofollow">https://registry.npmjs.org/is-svg</a> 213ms<br>
1825 http fetch GET 200 <a href="https://registry.npmjs.org/svgo" rel="nofollow">https://registry.npmjs.org/svgo</a> 229ms<br>
1826 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2ffloating-point-hex-parser" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2ffloating-point-hex-parser</a> 232ms<br>
1827 http fetch GET 200 <a href="https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz" rel="nofollow">https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz</a> 227ms<br>
1828 http fetch GET 200 <a href="https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz</a> 217ms<br>
1829 silly pacote range manifest for cssnano-util-get-match@^4.0.0 fetched in 435ms<br>
1830 silly pacote range manifest for is-svg@^3.0.0 fetched in 434ms<br>
1831 silly pacote range manifest for punycode@^2.1.0 fetched in 1ms<br>
1832 http fetch GET 200 <a href="https://registry.npmjs.org/@xtuc%2flong" rel="nofollow">https://registry.npmjs.org/@xtuc%2flong</a> 245ms<br>
1833 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz</a> 218ms<br>
1834 silly pacote version manifest for @webassemblyjs/floating-point-hex-parser@1.9.0 fetched in 454ms<br>
1835 silly pacote range manifest for inherits@~2.0.3 fetched in 1ms<br>
1836 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fhelper-code-frame" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fhelper-code-frame</a> 443ms<br>
1837 http fetch GET 200 <a href="https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz" rel="nofollow">https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz</a> 420ms<br>
1838 silly pacote range manifest for svgo@^1.0.0 fetched in 654ms<br>
1839 http fetch GET 200 <a href="https://registry.npmjs.org/@xtuc%2fieee754" rel="nofollow">https://registry.npmjs.org/@xtuc%2fieee754</a> 231ms<br>
1840 http fetch GET 304 <a href="https://registry.npmjs.org/core-util-is" rel="nofollow">https://registry.npmjs.org/core-util-is</a> 233ms (from cache)<br>
1841 http fetch GET 304 <a href="https://registry.npmjs.org/isarray" rel="nofollow">https://registry.npmjs.org/isarray</a> 211ms (from cache)<br>
1842 silly pacote range manifest for isarray@~1.0.0 fetched in 212ms<br>
1843 silly pacote range manifest for string_decoder@~1.1.1 fetched in 1ms<br>
1844 http fetch GET 200 <a href="https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz" rel="nofollow">https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz</a> 217ms<br>
1845 silly pacote version manifest for @xtuc/long@4.2.2 fetched in 466ms<br>
1846 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs%2fhelper-fsm" rel="nofollow">https://registry.npmjs.org/@webassemblyjs%2fhelper-fsm</a> 574ms<br>
1847 http fetch GET 200 <a href="https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz" rel="nofollow">https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz</a> 143ms (from cache)<br>
1848 silly pacote range manifest for core-util-is@~1.0.0 fetched in 386ms<br>
1849 silly pacote range manifest for extend-shallow@^2.0.1 fetched in 4ms<br>
1850 http fetch GET 200 <a href="https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz" rel="nofollow">https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz</a> 199ms<br>
1851 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz</a> 213ms<br>
1852 http fetch GET 304 <a href="https://registry.npmjs.org/arr-flatten" rel="nofollow">https://registry.npmjs.org/arr-flatten</a> 193ms (from cache)<br>
1853 http fetch GET 304 <a href="https://registry.npmjs.org/util-deprecate" rel="nofollow">https://registry.npmjs.org/util-deprecate</a> 197ms (from cache)<br>
1854 http fetch GET 304 <a href="https://registry.npmjs.org/process-nextick-args" rel="nofollow">https://registry.npmjs.org/process-nextick-args</a> 213ms (from cache)<br>
1855 silly pacote range manifest for arr-flatten@^1.1.0 fetched in 194ms<br>
1856 silly pacote range manifest for util-deprecate@~1.0.1 fetched in 199ms<br>
1857 silly pacote range manifest for process-nextick-args@~2.0.0 fetched in 215ms<br>
1858 silly pacote range manifest for @xtuc/ieee754@^1.2.0 fetched in 439ms<br>
1859 silly pacote version manifest for @webassemblyjs/helper-code-frame@1.9.0 fetched in 665ms<br>
1860 silly pacote range manifest for to-regex@^3.0.1 fetched in 1ms<br>
1861 http fetch GET 200 <a href="https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz" rel="nofollow">https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz</a> 156ms<br>
1862 silly pacote version manifest for @webassemblyjs/helper-fsm@1.9.0 fetched in 737ms<br>
1863 silly pacote range manifest for define-property@^1.0.0 fetched in 1ms<br>
1864 http fetch GET 304 <a href="https://registry.npmjs.org/map-cache" rel="nofollow">https://registry.npmjs.org/map-cache</a> 218ms (from cache)<br>
1865 http fetch GET 304 <a href="https://registry.npmjs.org/isobject" rel="nofollow">https://registry.npmjs.org/isobject</a> 223ms (from cache)<br>
1866 http fetch GET 304 <a href="https://registry.npmjs.org/expand-brackets" rel="nofollow">https://registry.npmjs.org/expand-brackets</a> 147ms (from cache)<br>
1867 http fetch GET 304 <a href="https://registry.npmjs.org/repeat-element" rel="nofollow">https://registry.npmjs.org/repeat-element</a> 224ms (from cache)<br>
1868 http fetch GET 304 <a href="https://registry.npmjs.org/split-string" rel="nofollow">https://registry.npmjs.org/split-string</a> 221ms (from cache)<br>
1869 http fetch GET 304 <a href="https://registry.npmjs.org/snapdragon-node" rel="nofollow">https://registry.npmjs.org/snapdragon-node</a> 224ms (from cache)<br>
1870 http fetch GET 304 <a href="https://registry.npmjs.org/fill-range" rel="nofollow">https://registry.npmjs.org/fill-range</a> 268ms (from cache)<br>
1871 silly pacote range manifest for map-cache@^0.2.2 fetched in 221ms<br>
1872 silly pacote range manifest for isobject@^3.0.1 fetched in 228ms<br>
1873 silly pacote range manifest for expand-brackets@^2.1.4 fetched in 151ms<br>
1874 silly pacote range manifest for repeat-element@^1.1.2 fetched in 228ms<br>
1875 silly pacote range manifest for split-string@^3.0.2 fetched in 226ms<br>
1876 silly pacote range manifest for snapdragon-node@^2.0.1 fetched in 228ms<br>
1877 silly pacote range manifest for fill-range@^4.0.0 fetched in 274ms<br>
1878 http fetch GET 200 <a href="https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz" rel="nofollow">https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz</a> 213ms<br>
1879 http fetch GET 304 <a href="https://registry.npmjs.org/base" rel="nofollow">https://registry.npmjs.org/base</a> 216ms (from cache)<br>
1880 http fetch GET 304 <a href="https://registry.npmjs.org/assign-symbols" rel="nofollow">https://registry.npmjs.org/assign-symbols</a> 221ms (from cache)<br>
1881 http fetch GET 304 <a href="https://registry.npmjs.org/is-extendable" rel="nofollow">https://registry.npmjs.org/is-extendable</a> 221ms (from cache)<br>
1882 http fetch GET 304 <a href="https://registry.npmjs.org/is-descriptor" rel="nofollow">https://registry.npmjs.org/is-descriptor</a> 220ms (from cache)<br>
1883 http fetch GET 304 <a href="https://registry.npmjs.org/is-windows" rel="nofollow">https://registry.npmjs.org/is-windows</a> 219ms (from cache)<br>
1884 silly pacote range manifest for base@^0.11.1 fetched in 219ms<br>
1885 silly pacote range manifest for assign-symbols@^1.0.0 fetched in 224ms<br>
1886 silly pacote range manifest for is-extendable@^1.0.1 fetched in 223ms<br>
1887 silly pacote range manifest for is-descriptor@^1.0.2 fetched in 223ms<br>
1888 silly pacote range manifest for is-windows@^1.0.2 fetched in 222ms<br>
1889 silly pacote range manifest for debug@^2.2.0 fetched in 3ms<br>
1890 silly pacote range manifest for define-property@^0.2.5 fetched in 3ms<br>
1891 silly pacote range manifest for estraverse@^5.2.0 fetched in 225ms<br>
1892 silly pacote range manifest for source-map@^0.5.6 fetched in 3ms<br>
1893 silly pacote range manifest for regex-not@^1.0.2 fetched in 2ms<br>
1894 silly pacote range manifest for object-assign@^4.1.1 fetched in 2ms<br>
1895 http fetch GET 200 <a href="https://registry.npmjs.org/prr" rel="nofollow">https://registry.npmjs.org/prr</a> 229ms<br>
1896 http fetch GET 304 <a href="https://registry.npmjs.org/source-map-resolve" rel="nofollow">https://registry.npmjs.org/source-map-resolve</a> 211ms (from cache)<br>
1897 http fetch GET 304 <a href="https://registry.npmjs.org/use" rel="nofollow">https://registry.npmjs.org/use</a> 212ms (from cache)<br>
1898 silly pacote range manifest for source-map-resolve@^0.5.0 fetched in 213ms<br>
1899 silly pacote range manifest for use@^3.1.0 fetched in 214ms<br>
1900 http fetch GET 200 <a href="https://registry.npmjs.org/util/-/util-0.10.3.tgz" rel="nofollow">https://registry.npmjs.org/util/-/util-0.10.3.tgz</a> 209ms<br>
1901 http fetch GET 200 <a href="https://registry.npmjs.org/prr/-/prr-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/prr/-/prr-1.0.1.tgz</a> 208ms<br>
1902 http fetch GET 200 <a href="https://registry.npmjs.org/pako" rel="nofollow">https://registry.npmjs.org/pako</a> 211ms<br>
1903 http fetch GET 304 <a href="https://registry.npmjs.org/safe-regex" rel="nofollow">https://registry.npmjs.org/safe-regex</a> 219ms (from cache)<br>
1904 silly pacote range manifest for safe-regex@^1.1.0 fetched in 220ms<br>
1905 silly pacote version manifest for util@0.10.3 fetched in 218ms<br>
1906 silly pacote range manifest for prr@~1.0.1 fetched in 445ms<br>
1907 http fetch GET 200 <a href="https://registry.npmjs.org/create-hash" rel="nofollow">https://registry.npmjs.org/create-hash</a> 231ms<br>
1908 http fetch GET 200 <a href="https://registry.npmjs.org/browserify-sign" rel="nofollow">https://registry.npmjs.org/browserify-sign</a> 237ms<br>
1909 http fetch GET 200 <a href="https://registry.npmjs.org/browserify-cipher" rel="nofollow">https://registry.npmjs.org/browserify-cipher</a> 240ms<br>
1910 http fetch GET 200 <a href="https://registry.npmjs.org/create-ecdh" rel="nofollow">https://registry.npmjs.org/create-ecdh</a> 233ms<br>
1911 http fetch GET 200 <a href="https://registry.npmjs.org/create-hmac" rel="nofollow">https://registry.npmjs.org/create-hmac</a> 233ms<br>
1912 http fetch GET 200 <a href="https://registry.npmjs.org/diffie-hellman" rel="nofollow">https://registry.npmjs.org/diffie-hellman</a> 233ms<br>
1913 http fetch GET 200 <a href="https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz" rel="nofollow">https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz</a> 235ms<br>
1914 http fetch GET 200 <a href="https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz" rel="nofollow">https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz</a> 235ms<br>
1915 http fetch GET 200 <a href="https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz</a> 234ms<br>
1916 http fetch GET 200 <a href="https://registry.npmjs.org/pako/-/pako-1.0.11.tgz" rel="nofollow">https://registry.npmjs.org/pako/-/pako-1.0.11.tgz</a> 472ms<br>
1917 http fetch GET 200 <a href="https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz" rel="nofollow">https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz</a> 232ms<br>
1918 http fetch GET 200 <a href="https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz" rel="nofollow">https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz</a> 234ms<br>
1919 http fetch GET 200 <a href="https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz" rel="nofollow">https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz</a> 235ms<br>
1920 silly pacote range manifest for browserify-cipher@^1.0.0 fetched in 481ms<br>
1921 silly pacote range manifest for create-hash@^1.1.0 fetched in 475ms<br>
1922 silly pacote range manifest for browserify-sign@^4.0.0 fetched in 482ms<br>
1923 silly pacote range manifest for pako@~1.0.5 fetched in 693ms<br>
1924 silly pacote range manifest for diffie-hellman@^5.0.0 fetched in 476ms<br>
1925 silly pacote range manifest for inherits@^2.0.1 fetched in 6ms<br>
1926 silly pacote range manifest for create-ecdh@^4.0.0 fetched in 480ms<br>
1927 silly pacote range manifest for create-hmac@^1.1.0 fetched in 479ms<br>
1928 silly pacote range manifest for randombytes@^2.0.0 fetched in 4ms<br>
1929 silly pacote range manifest for isarray@^1.0.0 fetched in 1ms<br>
1930 silly pacote range manifest for inherits@~2.0.1 fetched in 3ms<br>
1931 silly pacote range manifest for readable-stream@^2.0.2 fetched in 3ms<br>
1932 silly pacote version manifest for inherits@2.0.3 fetched in 1ms<br>
1933 silly pacote range manifest for safe-buffer@~5.2.0 fetched in 1ms<br>
1934 http fetch GET 200 <a href="https://registry.npmjs.org/public-encrypt" rel="nofollow">https://registry.npmjs.org/public-encrypt</a> 183ms<br>
1935 http fetch GET 200 <a href="https://registry.npmjs.org/setimmediate" rel="nofollow">https://registry.npmjs.org/setimmediate</a> 174ms<br>
1936 http fetch GET 200 <a href="https://registry.npmjs.org/randomfill" rel="nofollow">https://registry.npmjs.org/randomfill</a> 181ms<br>
1937 http fetch GET 200 <a href="https://registry.npmjs.org/builtin-status-codes" rel="nofollow">https://registry.npmjs.org/builtin-status-codes</a> 171ms<br>
1938 http fetch GET 200 <a href="https://registry.npmjs.org/pbkdf2" rel="nofollow">https://registry.npmjs.org/pbkdf2</a> 187ms<br>
1939 http fetch GET 304 <a href="https://registry.npmjs.org/base64-js" rel="nofollow">https://registry.npmjs.org/base64-js</a> 188ms (from cache)<br>
1940 http fetch GET 304 <a href="https://registry.npmjs.org/ieee754" rel="nofollow">https://registry.npmjs.org/ieee754</a> 188ms (from cache)<br>
1941 silly pacote range manifest for base64-js@^1.0.2 fetched in 189ms<br>
1942 silly pacote range manifest for ieee754@^1.1.4 fetched in 190ms<br>
1943 silly pacote range manifest for readable-stream@^2.3.6 fetched in 1ms<br>
1944 http fetch GET 200 <a href="https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz" rel="nofollow">https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz</a> 1174ms<br>
1945 http fetch GET 200 <a href="https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz" rel="nofollow">https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz</a> 1172ms<br>
1946 http fetch GET 200 <a href="https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz" rel="nofollow">https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz</a> 1174ms<br>
1947 http fetch GET 200 <a href="https://registry.npmjs.org/to-arraybuffer" rel="nofollow">https://registry.npmjs.org/to-arraybuffer</a> 1166ms<br>
1948 http fetch GET 200 <a href="https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.1.tgz" rel="nofollow">https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.1.tgz</a> 1171ms<br>
1949 http fetch GET 200 <a href="https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz" rel="nofollow">https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz</a> 1174ms<br>
1950 http fetch GET 304 <a href="https://registry.npmjs.org/xtend" rel="nofollow">https://registry.npmjs.org/xtend</a> 1172ms (from cache)<br>
1951 silly pacote range manifest for xtend@^4.0.0 fetched in 1174ms<br>
1952 silly pacote range manifest for public-encrypt@^4.0.0 fetched in 1368ms<br>
1953 silly pacote range manifest for setimmediate@^1.0.4 fetched in 1360ms<br>
1954 silly pacote range manifest for randomfill@^1.0.3 fetched in 1366ms<br>
1955 silly pacote range manifest for builtin-status-codes@^3.0.0 fetched in 1357ms<br>
1956 silly pacote range manifest for has-flag@^4.0.0 fetched in 3ms<br>
1957 silly pacote range manifest for pbkdf2@^3.0.3 fetched in 1371ms<br>
1958 silly pacote range manifest for color-convert@^2.0.1 fetched in 3ms<br>
1959 silly pacote range manifest for braces@~3.0.2 fetched in 3ms<br>
1960 silly pacote range manifest for glob-parent@~5.1.0 fetched in 4ms<br>
1961 silly pacote range manifest for is-glob@~4.0.1 fetched in 3ms<br>
1962 silly pacote range manifest for normalize-path@~3.0.0 fetched in 4ms<br>
1963 silly pacote range manifest for errno@~0.1.7 fetched in 2ms<br>
1964 silly pacote range manifest for wrap-ansi@^7.0.0 fetched in 2ms<br>
1965 silly pacote range manifest for semver@^5.6.0 fetched in 1ms<br>
1966 silly pacote range manifest for is-extglob@^2.1.0 fetched in 0ms<br>
1967 http fetch GET 200 <a href="https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz</a> 140ms<br>
1968 http fetch GET 200 <a href="https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz" rel="nofollow">https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz</a> 134ms<br>
1969 http fetch GET 200 <a href="https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz</a> 135ms<br>
1970 silly pacote range manifest for to-arraybuffer@^1.0.0 fetched in 1316ms<br>
1971 silly pacote range manifest for anymatch@~3.1.1 fetched in 142ms<br>
1972 silly pacote range manifest for is-binary-path@~2.1.0 fetched in 145ms<br>
1973 silly pacote range manifest for rimraf@^2.5.4 fetched in 1ms<br>
1974 http fetch GET 200 <a href="https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz" rel="nofollow">https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz</a> 144ms<br>
1975 silly pacote range manifest for readdirp@~3.5.0 fetched in 147ms<br>
1976 http fetch GET 200 <a href="https://registry.npmjs.org/thenify" rel="nofollow">https://registry.npmjs.org/thenify</a> 151ms<br>
1977 http fetch GET 200 <a href="https://registry.npmjs.org/copy-concurrently" rel="nofollow">https://registry.npmjs.org/copy-concurrently</a> 153ms<br>
1978 http fetch GET 200 <a href="https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz" rel="nofollow">https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz</a> 166ms<br>
1979 silly pacote range manifest for fsevents@~2.3.1 fetched in 169ms<br>
1980 http fetch GET 200 <a href="https://registry.npmjs.org/run-queue" rel="nofollow">https://registry.npmjs.org/run-queue</a> 204ms<br>
1981 http fetch GET 200 <a href="https://registry.npmjs.org/aproba" rel="nofollow">https://registry.npmjs.org/aproba</a> 216ms<br>
1982 http fetch GET 200 <a href="https://registry.npmjs.org/fs-write-stream-atomic" rel="nofollow">https://registry.npmjs.org/fs-write-stream-atomic</a> 217ms<br>
1983 http fetch GET 200 <a href="https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz" rel="nofollow">https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz</a> 202ms<br>
1984 http fetch GET 200 <a href="https://registry.npmjs.org/concat-stream" rel="nofollow">https://registry.npmjs.org/concat-stream</a> 212ms<br>
1985 http fetch GET 200 <a href="https://registry.npmjs.org/duplexify" rel="nofollow">https://registry.npmjs.org/duplexify</a> 191ms<br>
1986 http fetch GET 200 <a href="https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz" rel="nofollow">https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz</a> 203ms<br>
1987 silly pacote range manifest for thenify@>= 3.1.0 < 4 fetched in 361ms<br>
1988 silly pacote range manifest for copy-concurrently@^1.0.0 fetched in 361ms<br>
1989 http fetch GET 200 <a href="https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz" rel="nofollow">https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz</a> 235ms<br>
1990 http fetch GET 200 <a href="https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz" rel="nofollow">https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz</a> 241ms<br>
1991 http fetch GET 200 <a href="https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz" rel="nofollow">https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz</a> 236ms<br>
1992 http fetch GET 200 <a href="https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz" rel="nofollow">https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz</a> 231ms<br>
1993 http fetch GET 200 <a href="https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz" rel="nofollow">https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz</a> 229ms<br>
1994 http fetch GET 200 <a href="https://registry.npmjs.org/flush-write-stream" rel="nofollow">https://registry.npmjs.org/flush-write-stream</a> 225ms<br>
1995 http fetch GET 304 <a href="https://registry.npmjs.org/end-of-stream" rel="nofollow">https://registry.npmjs.org/end-of-stream</a> 231ms (from cache)<br>
1996 silly pacote range manifest for end-of-stream@^1.1.0 fetched in 232ms<br>
1997 silly pacote range manifest for fs-write-stream-atomic@^1.0.8 fetched in 460ms<br>
1998 silly pacote range manifest for aproba@^1.1.1 fetched in 462ms<br>
1999 silly pacote range manifest for concat-stream@^1.5.0 fetched in 452ms<br>
2000 silly pacote range manifest for run-queue@^1.0.3 fetched in 456ms<br>
2001 silly pacote range manifest for duplexify@^3.4.2 fetched in 429ms<br>
2002 http fetch GET 200 <a href="https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz" rel="nofollow">https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz</a> 204ms<br>
2003 http fetch GET 200 <a href="https://registry.npmjs.org/parallel-transform" rel="nofollow">https://registry.npmjs.org/parallel-transform</a> 199ms<br>
2004 http fetch GET 200 <a href="https://registry.npmjs.org/pumpify" rel="nofollow">https://registry.npmjs.org/pumpify</a> 199ms<br>
2005 http fetch GET 200 <a href="https://registry.npmjs.org/stream-each" rel="nofollow">https://registry.npmjs.org/stream-each</a> 198ms<br>
2006 http fetch GET 304 <a href="https://registry.npmjs.org/balanced-match" rel="nofollow">https://registry.npmjs.org/balanced-match</a> 202ms (from cache)<br>
2007 http fetch GET 304 <a href="https://registry.npmjs.org/from2" rel="nofollow">https://registry.npmjs.org/from2</a> 205ms (from cache)<br>
2008 http fetch GET 304 <a href="https://registry.npmjs.org/through2" rel="nofollow">https://registry.npmjs.org/through2</a> 203ms (from cache)<br>
2009 silly pacote range manifest for balanced-match@^1.0.0 fetched in 203ms<br>
2010 silly pacote range manifest for from2@^2.1.0 fetched in 207ms<br>
2011 silly pacote range manifest for through2@^2.0.0 fetched in 205ms<br>
2012 silly pacote range manifest for flush-write-stream@^1.0.0 fetched in 439ms<br>
2013 silly pacote range manifest for is-fullwidth-code-point@^2.0.0 fetched in 2ms<br>
2014 silly pacote range manifest for strip-ansi@^4.0.0 fetched in 1ms<br>
2015 silly pacote range manifest for json-parse-better-errors@^1.0.1 fetched in 1ms<br>
2016 http fetch GET 200 <a href="https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz" rel="nofollow">https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz</a> 233ms<br>
2017 http fetch GET 200 <a href="https://registry.npmjs.org/unique-slug" rel="nofollow">https://registry.npmjs.org/unique-slug</a> 228ms<br>
2018 http fetch GET 200 <a href="https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz" rel="nofollow">https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz</a> 234ms<br>
2019 http fetch GET 200 <a href="https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz" rel="nofollow">https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz</a> 233ms<br>
2020 http fetch GET 304 <a href="https://registry.npmjs.org/caller-path" rel="nofollow">https://registry.npmjs.org/caller-path</a> 229ms (from cache)<br>
2021 http fetch GET 304 <a href="https://registry.npmjs.org/concat-map" rel="nofollow">https://registry.npmjs.org/concat-map</a> 233ms (from cache)<br>
2022 http fetch GET 304 <a href="https://registry.npmjs.org/resolve-from" rel="nofollow">https://registry.npmjs.org/resolve-from</a> 229ms (from cache)<br>
2023 silly pacote range manifest for caller-path@^2.0.0 fetched in 231ms<br>
2024 silly pacote version manifest for concat-map@0.0.1 fetched in 235ms<br>
2025 silly pacote range manifest for resolve-from@^3.0.0 fetched in 231ms<br>
2026 silly pacote range manifest for safe-buffer@^5.1.0 fetched in 2ms<br>
2027 silly pacote range manifest for stream-each@^1.1.0 fetched in 440ms<br>
2028 silly pacote range manifest for pumpify@^1.3.3 fetched in 441ms<br>
2029 silly pacote range manifest for parallel-transform@^1.1.0 fetched in 443ms<br>
2030 silly pacote range manifest for util-deprecate@^1.0.2 fetched in 3ms<br>
2031 silly pacote range manifest for yallist@^2.1.2 fetched in 3ms<br>
2032 silly pacote range manifest for path-key@^3.1.0 fetched in 2ms<br>
2033 silly pacote range manifest for shebang-command@^2.0.0 fetched in 1ms<br>
2034 silly pacote range manifest for which@^2.0.1 fetched in 0ms<br>
2035 http fetch GET 200 <a href="https://registry.npmjs.org/stackframe" rel="nofollow">https://registry.npmjs.org/stackframe</a> 187ms<br>
2036 http fetch GET 200 <a href="https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz" rel="nofollow">https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz</a> 203ms<br>
2037 http fetch GET 304 <a href="https://registry.npmjs.org/pseudomap" rel="nofollow">https://registry.npmjs.org/pseudomap</a> 199ms (from cache)<br>
2038 http fetch GET 304 <a href="https://registry.npmjs.org/uniq" rel="nofollow">https://registry.npmjs.org/uniq</a> 202ms (from cache)<br>
2039 http fetch GET 304 <a href="https://registry.npmjs.org/indexes-of" rel="nofollow">https://registry.npmjs.org/indexes-of</a> 202ms (from cache)<br>
2040 http fetch GET 304 <a href="https://registry.npmjs.org/esprima" rel="nofollow">https://registry.npmjs.org/esprima</a> 198ms (from cache)<br>
2041 http fetch GET 304 <a href="https://registry.npmjs.org/argparse" rel="nofollow">https://registry.npmjs.org/argparse</a> 202ms (from cache)<br>
2042 silly pacote range manifest for pseudomap@^1.0.2 fetched in 202ms<br>
2043 silly pacote range manifest for indexes-of@^1.0.1 fetched in 204ms<br>
2044 silly pacote range manifest for uniq@^1.0.1 fetched in 205ms<br>
2045 silly pacote range manifest for esprima@^4.0.0 fetched in 201ms<br>
2046 silly pacote range manifest for argparse@^1.0.7 fetched in 204ms<br>
2047 silly pacote range manifest for unique-slug@^2.0.0 fetched in 441ms<br>
2048 silly pacote range manifest for bluebird@^3.1.1 fetched in 2ms<br>
2049 silly pacote range manifest for path-key@^3.0.0 fetched in 3ms<br>
2050 http fetch GET 200 <a href="https://registry.npmjs.org/stackframe/-/stackframe-1.2.0.tgz" rel="nofollow">https://registry.npmjs.org/stackframe/-/stackframe-1.2.0.tgz</a> 220ms<br>
2051 http fetch GET 304 <a href="https://registry.npmjs.org/no-case" rel="nofollow">https://registry.npmjs.org/no-case</a> 213ms (from cache)<br>
2052 http fetch GET 304 <a href="https://registry.npmjs.org/call-me-maybe" rel="nofollow">https://registry.npmjs.org/call-me-maybe</a> 215ms (from cache)<br>
2053 http fetch GET 304 <a href="https://registry.npmjs.org/wrappy" rel="nofollow">https://registry.npmjs.org/wrappy</a> 216ms (from cache)<br>
2054 http fetch GET 304 <a href="https://registry.npmjs.org/glob-to-regexp" rel="nofollow">https://registry.npmjs.org/glob-to-regexp</a> 215ms (from cache)<br>
2055 http fetch GET 304 <a href="https://registry.npmjs.org/mimic-fn" rel="nofollow">https://registry.npmjs.org/mimic-fn</a> 219ms (from cache)<br>
2056 silly pacote range manifest for call-me-maybe@^1.0.1 fetched in 218ms<br>
2057 http fetch GET 304 <a href="https://registry.npmjs.org/upper-case" rel="nofollow">https://registry.npmjs.org/upper-case</a> 216ms (from cache)<br>
2058 silly pacote range manifest for wrappy@1 fetched in 219ms<br>
2059 silly pacote range manifest for glob-to-regexp@^0.3.0 fetched in 218ms<br>
2060 silly pacote range manifest for stackframe@^1.1.1 fetched in 419ms<br>
2061 silly pacote range manifest for mimic-fn@^2.1.0 fetched in 223ms<br>
2062 silly pacote range manifest for strip-ansi@^3.0.0 fetched in 1ms<br>
2063 silly pacote range manifest for source-map@~0.6.0 fetched in 1ms<br>
2064 silly pacote range manifest for object-keys@^1.0.12 fetched in 1ms<br>
2065 silly pacote range manifest for call-bind@^1.0.2 fetched in 1ms<br>
2066 http fetch GET 200 <a href="https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz" rel="nofollow">https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz</a> 215ms<br>
2067 http fetch GET 200 <a href="https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz" rel="nofollow">https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz</a> 212ms<br>
2068 http fetch GET 200 <a href="https://registry.npmjs.org/css-select" rel="nofollow">https://registry.npmjs.org/css-select</a> 214ms<br>
2069 http fetch GET 200 <a href="https://registry.npmjs.org/dom-converter" rel="nofollow">https://registry.npmjs.org/dom-converter</a> 215ms<br>
2070 http fetch GET 304 <a href="https://registry.npmjs.org/es-abstract" rel="nofollow">https://registry.npmjs.org/es-abstract</a> 214ms (from cache)<br>
2071 http fetch GET 304 <a href="https://registry.npmjs.org/is-plain-obj" rel="nofollow">https://registry.npmjs.org/is-plain-obj</a> 215ms (from cache)<br>
2072 silly pacote range manifest for es-abstract@^1.18.0-next.2 fetched in 216ms<br>
2073 silly pacote range manifest for is-plain-obj@^1.0.0 fetched in 217ms<br>
2074 silly pacote range manifest for object-assign@^4.1.0 fetched in 2ms<br>
2075 silly pacote range manifest for no-case@^2.2.0 fetched in 442ms<br>
2076 silly pacote range manifest for upper-case@^1.1.1 fetched in 442ms<br>
2077 silly pacote range manifest for mime-types@~2.1.24 fetched in 1ms<br>
2078 http fetch GET 200 <a href="https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz</a> 223ms<br>
2079 http fetch GET 200 <a href="https://registry.npmjs.org/import-from" rel="nofollow">https://registry.npmjs.org/import-from</a> 217ms<br>
2080 http fetch GET 200 <a href="https://registry.npmjs.org/commander/-/commander-2.19.0.tgz" rel="nofollow">https://registry.npmjs.org/commander/-/commander-2.19.0.tgz</a> 216ms<br>
2081 http fetch GET 200 <a href="https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz" rel="nofollow">https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz</a> 225ms<br>
2082 http fetch GET 304 <a href="https://registry.npmjs.org/strict-uri-encode" rel="nofollow">https://registry.npmjs.org/strict-uri-encode</a> 223ms (from cache)<br>
2083 silly pacote range manifest for strict-uri-encode@^1.0.0 fetched in 224ms<br>
2084 http fetch GET 304 <a href="https://registry.npmjs.org/negotiator" rel="nofollow">https://registry.npmjs.org/negotiator</a> 219ms (from cache)<br>
2085 silly pacote range manifest for css-select@^2.0.2 fetched in 447ms<br>
2086 silly pacote version manifest for negotiator@0.6.2 fetched in 222ms<br>
2087 silly pacote range manifest for commander@~2.19.0 fetched in 224ms<br>
2088 silly pacote version manifest for ms@2.0.0 fetched in 2ms<br>
2089 silly pacote version manifest for bytes@3.1.0 fetched in 1ms<br>
2090 silly pacote version manifest for http-errors@1.7.2 fetched in 2ms<br>
2091 silly pacote range manifest for dom-converter@^0.2 fetched in 451ms<br>
2092 silly pacote range manifest for type-is@~1.6.17 fetched in 2ms<br>
2093 http fetch GET 200 <a href="https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz</a> 213ms<br>
2094 http fetch GET 304 <a href="https://registry.npmjs.org/unpipe" rel="nofollow">https://registry.npmjs.org/unpipe</a> 208ms (from cache)<br>
2095 http fetch GET 304 <a href="https://registry.npmjs.org/raw-body" rel="nofollow">https://registry.npmjs.org/raw-body</a> 209ms (from cache)<br>
2096 http fetch GET 304 <a href="https://registry.npmjs.org/iconv-lite" rel="nofollow">https://registry.npmjs.org/iconv-lite</a> 211ms (from cache)<br>
2097 http fetch GET 304 <a href="https://registry.npmjs.org/aggregate-error" rel="nofollow">https://registry.npmjs.org/aggregate-error</a> 215ms (from cache)<br>
2098 http fetch GET 304 <a href="https://registry.npmjs.org/ee-first" rel="nofollow">https://registry.npmjs.org/ee-first</a> 207ms (from cache)<br>
2099 silly pacote version manifest for raw-body@2.4.0 fetched in 212ms<br>
2100 silly pacote version manifest for iconv-lite@0.4.24 fetched in 214ms<br>
2101 silly pacote range manifest for aggregate-error@^3.0.0 fetched in 217ms<br>
2102 silly pacote version manifest for ee-first@1.1.1 fetched in 210ms<br>
2103 silly pacote range manifest for import-from@^2.1.0 fetched in 441ms<br>
2104 silly pacote range manifest for http-errors@~1.7.2 fetched in 2ms<br>
2105 silly pacote version manifest for mime@1.6.0 fetched in 3ms<br>
2106 silly pacote version manifest for ms@2.1.1 fetched in 3ms<br>
2107 http fetch GET 200 <a href="https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz</a> 7ms (from cache)<br>
2108 silly pacote version manifest for ipaddr.js@1.9.1 fetched in 5ms<br>
2109 silly pacote range manifest for unpipe@~1.0.0 fetched in 223ms<br>
2110 silly pacote range manifest for source-map@^0.6.0 fetched in 1ms<br>
2111 silly pacote range manifest for micromatch@^3.1.4 fetched in 1ms<br>
2112 silly pacote range manifest for normalize-path@^2.1.1 fetched in 0ms<br>
2113 http fetch GET 304 <a href="https://registry.npmjs.org/forwarded" rel="nofollow">https://registry.npmjs.org/forwarded</a> 212ms (from cache)<br>
2114 http fetch GET 304 <a href="https://registry.npmjs.org/destroy" rel="nofollow">https://registry.npmjs.org/destroy</a> 214ms (from cache)<br>
2115 http fetch GET 304 <a href="https://registry.npmjs.org/buffer-from" rel="nofollow">https://registry.npmjs.org/buffer-from</a> 207ms (from cache)<br>
2116 http fetch GET 304 <a href="https://registry.npmjs.org/media-typer" rel="nofollow">https://registry.npmjs.org/media-typer</a> 210ms (from cache)<br>
2117 http fetch GET 304 <a href="https://registry.npmjs.org/@types%2fconnect" rel="nofollow">https://registry.npmjs.org/@types%2fconnect</a> 200ms (from cache)<br>
2118 http fetch GET 304 <a href="https://registry.npmjs.org/@types%2fmime" rel="nofollow">https://registry.npmjs.org/@types%2fmime</a> 209ms (from cache)<br>
2119 silly pacote range manifest for forwarded@~0.1.2 fetched in 214ms<br>
2120 silly pacote range manifest for destroy@~1.0.4 fetched in 217ms<br>
2121 silly pacote range manifest for buffer-from@^1.0.0 fetched in 209ms<br>
2122 silly pacote version manifest for media-typer@0.3.0 fetched in 212ms<br>
2123 silly pacote range manifest for @types/connect@* fetched in 202ms<br>
2124 silly pacote range manifest for @types/mime@^1 fetched in 214ms<br>
2125 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fhttp-proxy" rel="nofollow">https://registry.npmjs.org/@types%2fhttp-proxy</a> 222ms<br>
2126 http fetch GET 304 <a href="https://registry.npmjs.org/@types%2fexpress-serve-static-core" rel="nofollow">https://registry.npmjs.org/@types%2fexpress-serve-static-core</a> 225ms (from cache)<br>
2127 http fetch GET 304 <a href="https://registry.npmjs.org/@types%2fbody-parser" rel="nofollow">https://registry.npmjs.org/@types%2fbody-parser</a> 225ms (from cache)<br>
2128 http fetch GET 304 <a href="https://registry.npmjs.org/@types%2fexpress-serve-static-core" rel="nofollow">https://registry.npmjs.org/@types%2fexpress-serve-static-core</a> 226ms (from cache)<br>
2129 http fetch GET 304 <a href="https://registry.npmjs.org/binary-extensions" rel="nofollow">https://registry.npmjs.org/binary-extensions</a> 227ms (from cache)<br>
2130 http fetch GET 304 <a href="https://registry.npmjs.org/@types%2fqs" rel="nofollow">https://registry.npmjs.org/@types%2fqs</a> 228ms (from cache)<br>
2131 silly pacote range manifest for binary-extensions@^1.0.0 fetched in 228ms<br>
2132 silly pacote range manifest for @types/qs@* fetched in 229ms<br>
2133 silly pacote range manifest for graceful-fs@^4.1.11 fetched in 1ms<br>
2134 http fetch GET 200 <a href="https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.18.tgz" rel="nofollow">https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.18.tgz</a> 48ms (from cache)<br>
2135 http fetch GET 200 <a href="https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.18.tgz" rel="nofollow">https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.18.tgz</a> 47ms (from cache)<br>
2136 silly pacote range manifest for @types/express-serve-static-core@* fetched in 279ms<br>
2137 silly pacote range manifest for @types/express-serve-static-core@^4.17.18 fetched in 278ms<br>
2138 http fetch GET 200 <a href="https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.0.tgz" rel="nofollow">https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.0.tgz</a> 65ms (from cache)<br>
2139 silly pacote range manifest for @types/body-parser@* fetched in 296ms<br>
2140 http fetch GET 200 <a href="https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.5.tgz" rel="nofollow">https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.5.tgz</a> 218ms<br>
2141 silly pacote range manifest for @types/http-proxy@* fetched in 453ms<br>
2142 http fetch GET 200 <a href="https://registry.npmjs.org/bindings" rel="nofollow">https://registry.npmjs.org/bindings</a> 258ms<br>
2143 http fetch GET 200 <a href="https://registry.npmjs.org/nan" rel="nofollow">https://registry.npmjs.org/nan</a> 258ms<br>
2144 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fuglify-js" rel="nofollow">https://registry.npmjs.org/@types%2fuglify-js</a> 194ms<br>
2145 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fanymatch" rel="nofollow">https://registry.npmjs.org/@types%2fanymatch</a> 211ms<br>
2146 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2ftapable" rel="nofollow">https://registry.npmjs.org/@types%2ftapable</a> 215ms<br>
2147 http fetch GET 200 <a href="https://registry.npmjs.org/htmlparser2" rel="nofollow">https://registry.npmjs.org/htmlparser2</a> 1376ms<br>
2148 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fwebpack-sources" rel="nofollow">https://registry.npmjs.org/@types%2fwebpack-sources</a> 214ms<br>
2149 http fetch GET 200 <a href="https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz" rel="nofollow">https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz</a> 178ms<br>
2150 http fetch GET 200 <a href="https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.12.0.tgz" rel="nofollow">https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.12.0.tgz</a> 178ms<br>
2151 http fetch GET 200 <a href="https://registry.npmjs.org/@types/anymatch/-/anymatch-1.3.1.tgz" rel="nofollow">https://registry.npmjs.org/@types/anymatch/-/anymatch-1.3.1.tgz</a> 177ms<br>
2152 http fetch GET 200 <a href="https://registry.npmjs.org/@types/tapable/-/tapable-1.0.6.tgz" rel="nofollow">https://registry.npmjs.org/@types/tapable/-/tapable-1.0.6.tgz</a> 176ms<br>
2153 http fetch GET 200 <a href="https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz" rel="nofollow">https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz</a> 174ms<br>
2154 silly pacote range manifest for bindings@^1.5.0 fetched in 443ms<br>
2155 silly pacote range manifest for @types/uglify-js@* fetched in 380ms<br>
2156 silly pacote range manifest for @types/anymatch@* fetched in 397ms<br>
2157 silly pacote range manifest for htmlparser2@^3.10.1 fetched in 1557ms<br>
2158 silly pacote range manifest for @types/tapable@* fetched in 398ms<br>
2159 http fetch GET 200 <a href="https://registry.npmjs.org/nan/-/nan-2.14.2.tgz" rel="nofollow">https://registry.npmjs.org/nan/-/nan-2.14.2.tgz</a> 245ms<br>
2160 silly pacote range manifest for nan@^2.12.1 fetched in 510ms<br>
2161 http fetch GET 200 <a href="https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-2.1.0.tgz</a> 210ms<br>
2162 http fetch GET 200 <a href="https://registry.npmjs.org/buffer-indexof" rel="nofollow">https://registry.npmjs.org/buffer-indexof</a> 205ms<br>
2163 http fetch GET 304 <a href="https://registry.npmjs.org/is-date-object" rel="nofollow">https://registry.npmjs.org/is-date-object</a> 207ms (from cache)<br>
2164 silly pacote range manifest for is-date-object@^1.0.1 fetched in 208ms<br>
2165 http fetch GET 200 <a href="https://registry.npmjs.org/is-arguments" rel="nofollow">https://registry.npmjs.org/is-arguments</a> 210ms<br>
2166 http fetch GET 200 <a href="https://registry.npmjs.org/object-is" rel="nofollow">https://registry.npmjs.org/object-is</a> 209ms<br>
2167 http fetch GET 200 <a href="https://registry.npmjs.org/regexp.prototype.flags" rel="nofollow">https://registry.npmjs.org/regexp.prototype.flags</a> 146ms<br>
2168 silly pacote range manifest for @types/webpack-sources@* fetched in 436ms<br>
2169 http fetch GET 304 <a href="https://registry.npmjs.org/is-regex" rel="nofollow">https://registry.npmjs.org/is-regex</a> 213ms (from cache)<br>
2170 silly pacote range manifest for is-regex@^1.0.4 fetched in 214ms<br>
2171 http fetch GET 200 <a href="https://registry.npmjs.org/mime-db/-/mime-db-1.46.0.tgz" rel="nofollow">https://registry.npmjs.org/mime-db/-/mime-db-1.46.0.tgz</a> 20ms (from cache)<br>
2172 silly pacote range manifest for mime-db@>= 1.43.0 < 2 fetched in 24ms<br>
2173 silly pacote range manifest for glob@^7.0.3 fetched in 1ms<br>
2174 silly pacote range manifest for pify@^2.0.0 fetched in 1ms<br>
2175 http fetch GET 200 <a href="https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz" rel="nofollow">https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz</a> 216ms<br>
2176 silly pacote range manifest for buffer-indexof@^1.0.0 fetched in 431ms<br>
2177 http fetch GET 200 <a href="https://registry.npmjs.org/thunky" rel="nofollow">https://registry.npmjs.org/thunky</a> 217ms<br>
2178 http fetch GET 200 <a href="https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz" rel="nofollow">https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz</a> 217ms<br>
2179 http fetch GET 200 <a href="https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz</a> 221ms<br>
2180 http fetch GET 200 <a href="https://registry.npmjs.org/dns-packet" rel="nofollow">https://registry.npmjs.org/dns-packet</a> 224ms<br>
2181 http fetch GET 200 <a href="https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz" rel="nofollow">https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz</a> 221ms<br>
2182 http fetch GET 304 <a href="https://registry.npmjs.org/pinkie-promise" rel="nofollow">https://registry.npmjs.org/pinkie-promise</a> 194ms (from cache)<br>
2183 silly pacote range manifest for object-is@^1.0.1 fetched in 435ms<br>
2184 silly pacote range manifest for pinkie-promise@^2.0.0 fetched in 196ms<br>
2185 silly pacote range manifest for is-arguments@^1.0.4 fetched in 440ms<br>
2186 silly pacote range manifest for regexp.prototype.flags@^1.2.0 fetched in 376ms<br>
2187 http fetch GET 200 <a href="https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz</a> 215ms<br>
2188 http fetch GET 200 <a href="https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz" rel="nofollow">https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz</a> 213ms<br>
2189 http fetch GET 200 <a href="https://registry.npmjs.org/ip-regex" rel="nofollow">https://registry.npmjs.org/ip-regex</a> 211ms<br>
2190 http fetch GET 200 <a href="https://registry.npmjs.org/requires-port" rel="nofollow">https://registry.npmjs.org/requires-port</a> 210ms<br>
2191 http fetch GET 304 <a href="https://registry.npmjs.org/is-path-inside" rel="nofollow">https://registry.npmjs.org/is-path-inside</a> 223ms (from cache)<br>
2192 silly pacote range manifest for thunky@^1.0.2 fetched in 442ms<br>
2193 http fetch GET 200 <a href="https://registry.npmjs.org/follow-redirects" rel="nofollow">https://registry.npmjs.org/follow-redirects</a> 214ms<br>
2194 silly pacote range manifest for dns-packet@^1.3.1 fetched in 446ms<br>
2195 silly pacote range manifest for websocket-driver@>=0.5.1 fetched in 3ms<br>
2196 http fetch GET 304 <a href="https://registry.npmjs.org/eventemitter3" rel="nofollow">https://registry.npmjs.org/eventemitter3</a> 220ms (from cache)<br>
2197 silly pacote range manifest for statuses@>= 1.4.0 < 2 fetched in 1ms<br>
2198 http fetch GET 200 <a href="https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz</a> 222ms<br>
2199 http fetch GET 200 <a href="https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz</a> 217ms<br>
2200 http fetch GET 200 <a href="https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz</a> 221ms<br>
2201 http fetch GET 200 <a href="https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.2.tgz" rel="nofollow">https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.2.tgz</a> 219ms<br>
2202 http fetch GET 200 <a href="https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz</a> 227ms<br>
2203 http fetch GET 200 <a href="https://registry.npmjs.org/http-parser-js" rel="nofollow">https://registry.npmjs.org/http-parser-js</a> 218ms<br>
2204 http fetch GET 200 <a href="https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz" rel="nofollow">https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz</a> 218ms<br>
2205 silly pacote range manifest for follow-redirects@^1.0.0 fetched in 445ms<br>
2206 silly pacote range manifest for is-path-inside@^2.1.0 fetched in 459ms<br>
2207 silly pacote range manifest for requires-port@^1.0.0 fetched in 449ms<br>
2208 silly pacote version manifest for setprototypeof@1.1.0 fetched in 234ms<br>
2209 silly pacote range manifest for ip-regex@^2.1.0 fetched in 454ms<br>
2210 silly pacote range manifest for eventemitter3@^4.0.0 fetched in 457ms<br>
2211 silly pacote range manifest for safe-buffer@>=5.1.0 fetched in 9ms<br>
2212 silly pacote range manifest for string-width@^3.1.0 fetched in 7ms<br>
2213 silly pacote range manifest for emoji-regex@^7.0.1 fetched in 3ms<br>
2214 silly pacote range manifest for strip-ansi@^5.1.0 fetched in 3ms<br>
2215 http fetch GET 200 <a href="https://registry.npmjs.org/hpack.js" rel="nofollow">https://registry.npmjs.org/hpack.js</a> 196ms<br>
2216 http fetch GET 200 <a href="https://registry.npmjs.org/websocket-extensions" rel="nofollow">https://registry.npmjs.org/websocket-extensions</a> 206ms<br>
2217 http fetch GET 200 <a href="https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.3.tgz" rel="nofollow">https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.3.tgz</a> 215ms<br>
2218 http fetch GET 200 <a href="https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz" rel="nofollow">https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz</a> 200ms<br>
2219 http fetch GET 200 <a href="https://registry.npmjs.org/obuf" rel="nofollow">https://registry.npmjs.org/obuf</a> 197ms<br>
2220 http fetch GET 304 <a href="https://registry.npmjs.org/locate-path" rel="nofollow">https://registry.npmjs.org/locate-path</a> 203ms (from cache)<br>
2221 http fetch GET 304 <a href="https://registry.npmjs.org/detect-node" rel="nofollow">https://registry.npmjs.org/detect-node</a> 202ms (from cache)<br>
2222 silly pacote range manifest for locate-path@^3.0.0 fetched in 205ms<br>
2223 silly pacote range manifest for detect-node@^2.0.4 fetched in 205ms<br>
2224 silly pacote range manifest for wrap-ansi@^5.1.0 fetched in 213ms<br>
2225 silly pacote range manifest for http-parser-js@>=0.5.1 fetched in 443ms<br>
2226 http fetch GET 200 <a href="https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz" rel="nofollow">https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz</a> 225ms<br>
2227 http fetch GET 200 <a href="https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz" rel="nofollow">https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz</a> 226ms<br>
2228 http fetch GET 200 <a href="https://registry.npmjs.org/wbuf" rel="nofollow">https://registry.npmjs.org/wbuf</a> 221ms<br>
2229 http fetch GET 200 <a href="https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz" rel="nofollow">https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz</a> 222ms<br>
2230 http fetch GET 200 <a href="https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz" rel="nofollow">https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz</a> 226ms<br>
2231 http fetch GET 304 <a href="https://registry.npmjs.org/color-name" rel="nofollow">https://registry.npmjs.org/color-name</a> 223ms (from cache)<br>
2232 http fetch GET 304 <a href="https://registry.npmjs.org/decamelize" rel="nofollow">https://registry.npmjs.org/decamelize</a> 224ms (from cache)<br>
2233 silly pacote version manifest for color-name@1.1.3 fetched in 224ms<br>
2234 silly pacote range manifest for decamelize@^1.2.0 fetched in 225ms<br>
2235 silly pacote range manifest for websocket-extensions@>=0.1.1 fetched in 442ms<br>
2236 silly pacote range manifest for hpack.js@^2.1.6 fetched in 433ms<br>
2237 silly pacote range manifest for readable-stream@^3.0.6 fetched in 231ms<br>
2238 silly pacote range manifest for obuf@^1.1.2 fetched in 434ms<br>
2239 silly pacote range manifest for once@^1.3.1 fetched in 1ms<br>
2240 silly pacote range manifest for onetime@^2.0.0 fetched in 1ms<br>
2241 http fetch GET 200 <a href="https://registry.npmjs.org/original" rel="nofollow">https://registry.npmjs.org/original</a> 203ms<br>
2242 http fetch GET 200 <a href="https://registry.npmjs.org/querystringify" rel="nofollow">https://registry.npmjs.org/querystringify</a> 204ms<br>
2243 http fetch GET 200 <a href="https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz" rel="nofollow">https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz</a> 211ms<br>
2244 http fetch GET 304 <a href="https://registry.npmjs.org/clone" rel="nofollow">https://registry.npmjs.org/clone</a> 208ms (from cache)<br>
2245 http fetch GET 304 <a href="https://registry.npmjs.org/isexe" rel="nofollow">https://registry.npmjs.org/isexe</a> 215ms (from cache)<br>
2246 http fetch GET 304 <a href="https://registry.npmjs.org/is-arrayish" rel="nofollow">https://registry.npmjs.org/is-arrayish</a> 210ms (from cache)<br>
2247 http fetch GET 304 <a href="https://registry.npmjs.org/shebang-regex" rel="nofollow">https://registry.npmjs.org/shebang-regex</a> 216ms (from cache)<br>
2248 silly pacote range manifest for clone@^1.0.2 fetched in 210ms<br>
2249 silly pacote range manifest for isexe@^2.0.0 fetched in 217ms<br>
2250 silly pacote range manifest for is-arrayish@^0.2.1 fetched in 212ms<br>
2251 silly pacote range manifest for shebang-regex@^1.0.0 fetched in 218ms<br>
2252 silly pacote range manifest for wbuf@^1.7.3 fetched in 445ms<br>
2253 http fetch GET 200 <a href="https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz</a> 31ms (from cache)<br>
2254 silly pacote version manifest for assert-plus@1.0.0 fetched in 35ms<br>
2255 http fetch GET 200 <a href="https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz" rel="nofollow">https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz</a> 219ms<br>
2256 http fetch GET 304 <a href="https://registry.npmjs.org/path-parse" rel="nofollow">https://registry.npmjs.org/path-parse</a> 213ms (from cache)<br>
2257 http fetch GET 304 <a href="https://registry.npmjs.org/spdx-expression-parse" rel="nofollow">https://registry.npmjs.org/spdx-expression-parse</a> 215ms (from cache)<br>
2258 http fetch GET 304 <a href="https://registry.npmjs.org/spdx-correct" rel="nofollow">https://registry.npmjs.org/spdx-correct</a> 215ms (from cache)<br>
2259 http fetch GET 304 <a href="https://registry.npmjs.org/is-core-module" rel="nofollow">https://registry.npmjs.org/is-core-module</a> 215ms (from cache)<br>
2260 silly pacote range manifest for path-parse@^1.0.6 fetched in 215ms<br>
2261 http fetch GET 304 <a href="https://registry.npmjs.org/extsprintf" rel="nofollow">https://registry.npmjs.org/extsprintf</a> 180ms (from cache)<br>
2262 silly pacote range manifest for spdx-expression-parse@^3.0.0 fetched in 217ms<br>
2263 silly pacote range manifest for spdx-correct@^3.0.0 fetched in 219ms<br>
2264 silly pacote range manifest for is-core-module@^2.2.0 fetched in 218ms<br>
2265 silly pacote range manifest for querystringify@^2.1.1 fetched in 434ms<br>
2266 silly pacote version manifest for extsprintf@1.3.0 fetched in 184ms<br>
2267 http fetch GET 200 <a href="https://registry.npmjs.org/original/-/original-1.0.2.tgz" rel="nofollow">https://registry.npmjs.org/original/-/original-1.0.2.tgz</a> 321ms<br>
2268 silly pacote range manifest for original@^1.0.0 fetched in 534ms<br>
2269 http fetch GET 304 <a href="https://registry.npmjs.org/json-schema" rel="nofollow">https://registry.npmjs.org/json-schema</a> 209ms (from cache)<br>
2270 http fetch GET 304 <a href="https://registry.npmjs.org/verror" rel="nofollow">https://registry.npmjs.org/verror</a> 208ms (from cache)<br>
2271 http fetch GET 304 <a href="https://registry.npmjs.org/asn1" rel="nofollow">https://registry.npmjs.org/asn1</a> 207ms (from cache)<br>
2272 silly pacote version manifest for json-schema@0.2.3 fetched in 210ms<br>
2273 silly pacote version manifest for verror@1.10.0 fetched in 210ms<br>
2274 silly pacote range manifest for asn1@~0.2.3 fetched in 210ms<br>
2275 http fetch GET 304 <a href="https://registry.npmjs.org/getpass" rel="nofollow">https://registry.npmjs.org/getpass</a> 214ms (from cache)<br>
2276 silly pacote range manifest for getpass@^0.1.1 fetched in 215ms<br>
2277 silly pacote range manifest for @babel/types@^7.12.1 fetched in 1ms<br>
2278 http fetch GET 304 <a href="https://registry.npmjs.org/dashdash" rel="nofollow">https://registry.npmjs.org/dashdash</a> 222ms (from cache)<br>
2279 silly pacote range manifest for dashdash@^1.12.0 fetched in 225ms<br>
2280 silly pacote range manifest for resolve@^1.14.2 fetched in 1ms<br>
2281 http fetch GET 304 <a href="https://registry.npmjs.org/safer-buffer" rel="nofollow">https://registry.npmjs.org/safer-buffer</a> 224ms (from cache)<br>
2282 silly pacote range manifest for semver@^6.1.2 fetched in 1ms<br>
2283 http fetch GET 304 <a href="https://registry.npmjs.org/jsbn" rel="nofollow">https://registry.npmjs.org/jsbn</a> 126ms (from cache)<br>
2284 silly pacote range manifest for safer-buffer@^2.0.2 fetched in 226ms<br>
2285 silly pacote range manifest for jsbn@~0.1.0 fetched in 127ms<br>
2286 http fetch GET 304 <a href="https://registry.npmjs.org/ecc-jsbn" rel="nofollow">https://registry.npmjs.org/ecc-jsbn</a> 231ms (from cache)<br>
2287 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fhelper-explode-assignable-expression" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-explode-assignable-expression</a> 210ms (from cache)<br>
2288 http fetch GET 304 <a href="https://registry.npmjs.org/tweetnacl" rel="nofollow">https://registry.npmjs.org/tweetnacl</a> 233ms (from cache)<br>
2289 http fetch GET 304 <a href="https://registry.npmjs.org/lodash.debounce" rel="nofollow">https://registry.npmjs.org/lodash.debounce</a> 223ms (from cache)<br>
2290 http fetch GET 304 <a href="https://registry.npmjs.org/bcrypt-pbkdf" rel="nofollow">https://registry.npmjs.org/bcrypt-pbkdf</a> 231ms (from cache)<br>
2291 http fetch GET 304 <a href="https://registry.npmjs.org/@babel%2fhelper-wrap-function" rel="nofollow">https://registry.npmjs.org/@babel%2fhelper-wrap-function</a> 213ms (from cache)<br>
2292 http fetch GET 304 <a href="https://registry.npmjs.org/regexpu-core" rel="nofollow">https://registry.npmjs.org/regexpu-core</a> 213ms (from cache)<br>
2293 silly pacote range manifest for ecc-jsbn@~0.1.1 fetched in 234ms<br>
2294 silly pacote range manifest for @babel/helper-explode-assignable-expression@^7.12.13 fetched in 214ms<br>
2295 silly pacote range manifest for tweetnacl@~0.14.0 fetched in 236ms<br>
2296 silly pacote range manifest for bcrypt-pbkdf@^1.0.0 fetched in 234ms<br>
2297 silly pacote range manifest for lodash.debounce@^4.0.8 fetched in 226ms<br>
2298 silly pacote range manifest for @babel/helper-wrap-function@^7.13.0 fetched in 217ms<br>
2299 silly pacote range manifest for regexpu-core@^4.7.1 fetched in 217ms<br>
2300 silly pacote range manifest for @babel/runtime@^7.8.4 fetched in 5ms<br>
2301 silly pacote range manifest for locate-path@^5.0.0 fetched in 4ms<br>
2302 silly pacote range manifest for color-convert@^1.9.1 fetched in 6ms<br>
2303 silly pacote range manifest for caniuse-lite@^1.0.0 fetched in 2ms<br>
2304 http fetch GET 200 <a href="https://registry.npmjs.org/lodash.uniq" rel="nofollow">https://registry.npmjs.org/lodash.uniq</a> 200ms<br>
2305 http fetch GET 200 <a href="https://registry.npmjs.org/color-string" rel="nofollow">https://registry.npmjs.org/color-string</a> 209ms<br>
2306 http fetch GET 200 <a href="https://registry.npmjs.org/lodash.memoize" rel="nofollow">https://registry.npmjs.org/lodash.memoize</a> 205ms<br>
2307 http fetch GET 304 <a href="https://registry.npmjs.org/path-exists" rel="nofollow">https://registry.npmjs.org/path-exists</a> 215ms (from cache)<br>
2308 http fetch GET 304 <a href="https://registry.npmjs.org/function-bind" rel="nofollow">https://registry.npmjs.org/function-bind</a> 215ms (from cache)<br>
2309 http fetch GET 304 <a href="https://registry.npmjs.org/dot-prop" rel="nofollow">https://registry.npmjs.org/dot-prop</a> 212ms (from cache)<br>
2310 silly pacote range manifest for function-bind@^1.1.1 fetched in 217ms<br>
2311 silly pacote range manifest for path-exists@^4.0.0 fetched in 217ms<br>
2312 http fetch GET 304 <a href="https://registry.npmjs.org/get-intrinsic" rel="nofollow">https://registry.npmjs.org/get-intrinsic</a> 217ms (from cache)<br>
2313 silly pacote range manifest for get-intrinsic@^1.0.2 fetched in 218ms<br>
2314 http fetch GET 200 <a href="https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz" rel="nofollow">https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz</a> 2ms (from cache)<br>
2315 silly pacote range manifest for css-color-names@^0.0.4 fetched in 7ms<br>
2316 http fetch GET 200 <a href="https://registry.npmjs.org/color-string/-/color-string-1.5.4.tgz" rel="nofollow">https://registry.npmjs.org/color-string/-/color-string-1.5.4.tgz</a> 231ms<br>
2317 http fetch GET 200 <a href="https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz" rel="nofollow">https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz</a> 229ms<br>
2318 http fetch GET 200 <a href="https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz" rel="nofollow">https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz</a> 231ms<br>
2319 http fetch GET 200 <a href="https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz" rel="nofollow">https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz</a> 236ms<br>
2320 http fetch GET 200 <a href="https://registry.npmjs.org/hex-color-regex" rel="nofollow">https://registry.npmjs.org/hex-color-regex</a> 230ms<br>
2321 http fetch GET 200 <a href="https://registry.npmjs.org/hsla-regex" rel="nofollow">https://registry.npmjs.org/hsla-regex</a> 225ms<br>
2322 silly pacote range manifest for color-string@^1.5.4 fetched in 448ms<br>
2323 silly pacote range manifest for dot-prop@^5.2.0 fetched in 449ms<br>
2324 silly pacote range manifest for lodash.memoize@^4.1.2 fetched in 446ms<br>
2325 silly pacote range manifest for lodash.uniq@^4.5.0 fetched in 446ms<br>
2326 http fetch GET 200 <a href="https://registry.npmjs.org/hsl-regex" rel="nofollow">https://registry.npmjs.org/hsl-regex</a> 236ms<br>
2327 http fetch GET 200 <a href="https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz</a> 202ms<br>
2328 http fetch GET 200 <a href="https://registry.npmjs.org/rgba-regex" rel="nofollow">https://registry.npmjs.org/rgba-regex</a> 197ms<br>
2329 http fetch GET 200 <a href="https://registry.npmjs.org/html-comment-regex" rel="nofollow">https://registry.npmjs.org/html-comment-regex</a> 198ms<br>
2330 http fetch GET 200 <a href="https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz</a> 202ms<br>
2331 http fetch GET 200 <a href="https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz</a> 195ms<br>
2332 http fetch GET 200 <a href="https://registry.npmjs.org/coa" rel="nofollow">https://registry.npmjs.org/coa</a> 199ms<br>
2333 http fetch GET 200 <a href="https://registry.npmjs.org/rgb-regex" rel="nofollow">https://registry.npmjs.org/rgb-regex</a> 205ms<br>
2334 silly pacote range manifest for hex-color-regex@^1.1.0 fetched in 440ms<br>
2335 silly pacote range manifest for css-select@^2.0.0 fetched in 2ms<br>
2336 silly pacote range manifest for hsla-regex@^1.0.0 fetched in 436ms<br>
2337 silly pacote range manifest for hsl-regex@^1.0.0 fetched in 441ms<br>
2338 http fetch GET 200 <a href="https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz" rel="nofollow">https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz</a> 234ms<br>
2339 http fetch GET 200 <a href="https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz</a> 229ms<br>
2340 http fetch GET 200 <a href="https://registry.npmjs.org/coa/-/coa-2.0.2.tgz" rel="nofollow">https://registry.npmjs.org/coa/-/coa-2.0.2.tgz</a> 232ms<br>
2341 http fetch GET 200 <a href="https://registry.npmjs.org/css-select-base-adapter" rel="nofollow">https://registry.npmjs.org/css-select-base-adapter</a> 228ms<br>
2342 http fetch GET 200 <a href="https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz</a> 237ms<br>
2343 silly pacote range manifest for rgb-regex@^1.0.1 fetched in 439ms<br>
2344 silly pacote range manifest for coa@^2.0.2 fetched in 437ms<br>
2345 silly pacote range manifest for html-comment-regex@^1.1.0 fetched in 438ms<br>
2346 silly pacote range manifest for rgba-regex@^1.0.0 fetched in 438ms<br>
2347 silly pacote range manifest for mkdirp@~0.5.1 fetched in 3ms<br>
2348 http fetch GET 200 <a href="https://registry.npmjs.org/css-tree" rel="nofollow">https://registry.npmjs.org/css-tree</a> 446ms<br>
2349 http fetch GET 200 <a href="https://registry.npmjs.org/object.values" rel="nofollow">https://registry.npmjs.org/object.values</a> 216ms<br>
2350 http fetch GET 200 <a href="https://registry.npmjs.org/stable" rel="nofollow">https://registry.npmjs.org/stable</a> 216ms<br>
2351 http fetch GET 200 <a href="https://registry.npmjs.org/unquote" rel="nofollow">https://registry.npmjs.org/unquote</a> 215ms<br>
2352 http fetch GET 200 <a href="https://registry.npmjs.org/csso" rel="nofollow">https://registry.npmjs.org/csso</a> 447ms<br>
2353 http fetch GET 200 <a href="https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz" rel="nofollow">https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz</a> 223ms<br>
2354 http fetch GET 304 <a href="https://registry.npmjs.org/sax" rel="nofollow">https://registry.npmjs.org/sax</a> 222ms (from cache)<br>
2355 silly pacote range manifest for sax@~1.2.4 fetched in 223ms<br>
2356 silly pacote range manifest for css-select-base-adapter@^0.1.1 fetched in 457ms<br>
2357 silly pacote range manifest for safe-buffer@~5.1.0 fetched in 1ms<br>
2358 http fetch GET 200 <a href="https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz</a> 3ms (from cache)<br>
2359 silly pacote range manifest for is-extendable@^0.1.0 fetched in 1ms<br>
2360 silly pacote range manifest for is-descriptor@^1.0.0 fetched in 1ms<br>
2361 silly pacote range manifest for debug@^2.3.3 fetched in 2ms<br>
2362 silly pacote range manifest for util.promisify@~1.0.0 fetched in 9ms<br>
2363 silly pacote range manifest for extend-shallow@^3.0.0 fetched in 1ms<br>
2364 silly pacote range manifest for isobject@^3.0.0 fetched in 1ms<br>
2365 http fetch GET 200 <a href="https://registry.npmjs.org/stable/-/stable-0.1.8.tgz" rel="nofollow">https://registry.npmjs.org/stable/-/stable-0.1.8.tgz</a> 202ms<br>
2366 http fetch GET 200 <a href="https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz" rel="nofollow">https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz</a> 203ms<br>
2367 silly pacote range manifest for stable@^0.1.8 fetched in 425ms<br>
2368 silly pacote range manifest for unquote@~1.1.1 fetched in 427ms<br>
2369 http fetch GET 304 <a href="https://registry.npmjs.org/posix-character-classes" rel="nofollow">https://registry.npmjs.org/posix-character-classes</a> 205ms (from cache)<br>
2370 http fetch GET 304 <a href="https://registry.npmjs.org/snapdragon-util" rel="nofollow">https://registry.npmjs.org/snapdragon-util</a> 202ms (from cache)<br>
2371 silly pacote range manifest for posix-character-classes@^0.1.0 fetched in 206ms<br>
2372 silly pacote range manifest for snapdragon-util@^3.0.1 fetched in 203ms<br>
2373 http fetch GET 200 <a href="https://registry.npmjs.org/object.values/-/object.values-1.1.3.tgz" rel="nofollow">https://registry.npmjs.org/object.values/-/object.values-1.1.3.tgz</a> 262ms<br>
2374 silly pacote range manifest for object.values@^1.1.0 fetched in 484ms<br>
2375 http fetch GET 200 <a href="https://registry.npmjs.org/csso/-/csso-4.2.0.tgz" rel="nofollow">https://registry.npmjs.org/csso/-/csso-4.2.0.tgz</a> 433ms<br>
2376 silly pacote range manifest for csso@^4.0.2 fetched in 888ms<br>
2377 http fetch GET 304 <a href="https://registry.npmjs.org/is-number" rel="nofollow">https://registry.npmjs.org/is-number</a> 240ms (from cache)<br>
2378 silly pacote range manifest for is-number@^3.0.0 fetched in 241ms<br>
2379 http fetch GET 304 <a href="https://registry.npmjs.org/to-regex-range" rel="nofollow">https://registry.npmjs.org/to-regex-range</a> 232ms (from cache)<br>
2380 http fetch GET 304 <a href="https://registry.npmjs.org/cache-base" rel="nofollow">https://registry.npmjs.org/cache-base</a> 233ms (from cache)<br>
2381 silly pacote range manifest for to-regex-range@^2.1.0 fetched in 235ms<br>
2382 silly pacote range manifest for cache-base@^1.0.1 fetched in 235ms<br>
2383 http fetch GET 304 <a href="https://registry.npmjs.org/repeat-string" rel="nofollow">https://registry.npmjs.org/repeat-string</a> 244ms (from cache)<br>
2384 silly pacote range manifest for repeat-string@^1.6.1 fetched in 246ms<br>
2385 http fetch GET 200 <a href="https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz" rel="nofollow">https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz</a> 476ms<br>
2386 http fetch GET 304 <a href="https://registry.npmjs.org/class-utils" rel="nofollow">https://registry.npmjs.org/class-utils</a> 209ms (from cache)<br>
2387 silly pacote range manifest for class-utils@^0.3.5 fetched in 210ms<br>
2388 silly pacote version manifest for css-tree@1.0.0-alpha.37 fetched in 928ms<br>
2389 silly pacote range manifest for is-descriptor@^0.1.0 fetched in 1ms<br>
2390 http fetch GET 304 <a href="https://registry.npmjs.org/is-accessor-descriptor" rel="nofollow">https://registry.npmjs.org/is-accessor-descriptor</a> 195ms (from cache)<br>
2391 http fetch GET 304 <a href="https://registry.npmjs.org/mixin-deep" rel="nofollow">https://registry.npmjs.org/mixin-deep</a> 203ms (from cache)<br>
2392 http fetch GET 304 <a href="https://registry.npmjs.org/pascalcase" rel="nofollow">https://registry.npmjs.org/pascalcase</a> 200ms (from cache)<br>
2393 http fetch GET 304 <a href="https://registry.npmjs.org/is-plain-object" rel="nofollow">https://registry.npmjs.org/is-plain-object</a> 199ms (from cache)<br>
2394 http fetch GET 304 <a href="https://registry.npmjs.org/atob" rel="nofollow">https://registry.npmjs.org/atob</a> 172ms (from cache)<br>
2395 http fetch GET 304 <a href="https://registry.npmjs.org/is-data-descriptor" rel="nofollow">https://registry.npmjs.org/is-data-descriptor</a> 178ms (from cache)<br>
2396 silly pacote range manifest for is-accessor-descriptor@^1.0.0 fetched in 197ms<br>
2397 http fetch GET 304 <a href="https://registry.npmjs.org/component-emitter" rel="nofollow">https://registry.npmjs.org/component-emitter</a> 214ms (from cache)<br>
2398 silly pacote range manifest for mixin-deep@^1.2.0 fetched in 206ms<br>
2399 silly pacote range manifest for pascalcase@^0.1.1 fetched in 202ms<br>
2400 silly pacote range manifest for is-plain-object@^2.0.4 fetched in 202ms<br>
2401 silly pacote range manifest for atob@^2.1.2 fetched in 176ms<br>
2402 silly pacote range manifest for is-data-descriptor@^1.0.0 fetched in 181ms<br>
2403 silly pacote range manifest for component-emitter@^1.2.1 fetched in 218ms<br>
2404 http fetch GET 304 <a href="https://registry.npmjs.org/decode-uri-component" rel="nofollow">https://registry.npmjs.org/decode-uri-component</a> 213ms (from cache)<br>
2405 http fetch GET 304 <a href="https://registry.npmjs.org/urix" rel="nofollow">https://registry.npmjs.org/urix</a> 213ms (from cache)<br>
2406 http fetch GET 304 <a href="https://registry.npmjs.org/resolve-url" rel="nofollow">https://registry.npmjs.org/resolve-url</a> 213ms (from cache)<br>
2407 http fetch GET 304 <a href="https://registry.npmjs.org/source-map-url" rel="nofollow">https://registry.npmjs.org/source-map-url</a> 214ms (from cache)<br>
2408 http fetch GET 304 <a href="https://registry.npmjs.org/ret" rel="nofollow">https://registry.npmjs.org/ret</a> 213ms (from cache)<br>
2409 silly pacote range manifest for decode-uri-component@^0.2.0 fetched in 218ms<br>
2410 silly pacote range manifest for urix@^0.1.0 fetched in 217ms<br>
2411 warn deprecated urix@0.1.0: Please see <a href="https://github.com/lydell/urix#deprecated">https://github.com/lydell/urix#deprecated</a><br>
2412 silly pacote range manifest for resolve-url@^0.2.1 fetched in 217ms<br>
2413 warn deprecated resolve-url@0.2.1: <a href="https://github.com/lydell/resolve-url#deprecated">https://github.com/lydell/resolve-url#deprecated</a><br>
2414 silly pacote range manifest for source-map-url@^0.4.0 fetched in 218ms<br>
2415 silly pacote range manifest for ret@~0.1.10 fetched in 217ms<br>
2416 http fetch GET 200 <a href="https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" rel="nofollow">https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz</a> 219ms<br>
2417 silly pacote version manifest for inherits@2.0.1 fetched in 223ms<br>
2418 http fetch GET 200 <a href="https://registry.npmjs.org/cipher-base" rel="nofollow">https://registry.npmjs.org/cipher-base</a> 207ms<br>
2419 http fetch GET 200 <a href="https://registry.npmjs.org/md5.js" rel="nofollow">https://registry.npmjs.org/md5.js</a> 208ms<br>
2420 http fetch GET 200 <a href="https://registry.npmjs.org/browserify-des" rel="nofollow">https://registry.npmjs.org/browserify-des</a> 211ms<br>
2421 http fetch GET 200 <a href="https://registry.npmjs.org/evp_bytestokey" rel="nofollow">https://registry.npmjs.org/evp_bytestokey</a> 212ms<br>
2422 http fetch GET 200 <a href="https://registry.npmjs.org/ripemd160" rel="nofollow">https://registry.npmjs.org/ripemd160</a> 432ms<br>
2423 http fetch GET 200 <a href="https://registry.npmjs.org/browserify-aes" rel="nofollow">https://registry.npmjs.org/browserify-aes</a> 437ms<br>
2424 http fetch GET 200 <a href="https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz" rel="nofollow">https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz</a> 227ms<br>
2425 http fetch GET 200 <a href="https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz" rel="nofollow">https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz</a> 227ms<br>
2426 http fetch GET 200 <a href="https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz" rel="nofollow">https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz</a> 229ms<br>
2427 http fetch GET 200 <a href="https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz" rel="nofollow">https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz</a> 228ms<br>
2428 http fetch GET 304 <a href="https://registry.npmjs.org/sha.js" rel="nofollow">https://registry.npmjs.org/sha.js</a> 434ms (from cache)<br>
2429 silly pacote range manifest for sha.js@^2.4.0 fetched in 436ms<br>
2430 silly pacote range manifest for cipher-base@^1.0.1 fetched in 443ms<br>
2431 silly pacote range manifest for md5.js@^1.3.4 fetched in 442ms<br>
2432 silly pacote range manifest for browserify-des@^1.0.0 fetched in 447ms<br>
2433 silly pacote range manifest for create-hash@^1.2.0 fetched in 1ms<br>
2434 silly pacote range manifest for create-hmac@^1.1.7 fetched in 1ms<br>
2435 silly pacote range manifest for evp_bytestokey@^1.0.0 fetched in 448ms<br>
2436 silly pacote range manifest for readable-stream@^3.6.0 fetched in 3ms<br>
2437 silly pacote range manifest for safe-buffer@^5.2.0 fetched in 1ms<br>
2438 http fetch GET 200 <a href="https://registry.npmjs.org/parse-asn1" rel="nofollow">https://registry.npmjs.org/parse-asn1</a> 210ms<br>
2439 http fetch GET 200 <a href="https://registry.npmjs.org/browserify-rsa" rel="nofollow">https://registry.npmjs.org/browserify-rsa</a> 216ms<br>
2440 http fetch GET 200 <a href="https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz" rel="nofollow">https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz</a> 224ms<br>
2441 http fetch GET 200 <a href="https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz" rel="nofollow">https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz</a> 224ms<br>
2442 silly pacote range manifest for browserify-aes@^1.0.4 fetched in 668ms<br>
2443 silly pacote range manifest for ripemd160@^2.0.1 fetched in 664ms<br>
2444 silly pacote range manifest for cipher-base@^1.0.3 fetched in 1ms<br>
2445 silly pacote range manifest for ripemd160@^2.0.0 fetched in 0ms<br>
2446 silly pacote range manifest for sha.js@^2.4.8 fetched in 1ms<br>
2447 http fetch GET 200 <a href="https://registry.npmjs.org/bn.js" rel="nofollow">https://registry.npmjs.org/bn.js</a> 223ms<br>
2448 http fetch GET 200 <a href="https://registry.npmjs.org/bn.js" rel="nofollow">https://registry.npmjs.org/bn.js</a> 239ms<br>
2449 http fetch GET 200 <a href="https://registry.npmjs.org/elliptic" rel="nofollow">https://registry.npmjs.org/elliptic</a> 236ms<br>
2450 http fetch GET 200 <a href="https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz" rel="nofollow">https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz</a> 216ms<br>
2451 http fetch GET 200 <a href="https://registry.npmjs.org/miller-rabin" rel="nofollow">https://registry.npmjs.org/miller-rabin</a> 209ms<br>
2452 http fetch GET 200 <a href="https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz" rel="nofollow">https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz</a> 213ms<br>
2453 silly pacote range manifest for parse-asn1@^5.1.5 fetched in 433ms<br>
2454 silly pacote range manifest for browserify-rsa@^4.0.1 fetched in 437ms<br>
2455 http fetch GET 200 <a href="https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz" rel="nofollow">https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz</a> 213ms<br>
2456 http fetch GET 200 <a href="https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz" rel="nofollow">https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz</a> 208ms<br>
2457 silly pacote range manifest for randombytes@^2.0.1 fetched in 4ms<br>
2458 silly pacote range manifest for parse-asn1@^5.0.0 fetched in 4ms<br>
2459 silly pacote range manifest for randombytes@^2.0.5 fetched in 1ms<br>
2460 silly pacote range manifest for create-hash@^1.1.2 fetched in 2ms<br>
2461 silly pacote range manifest for create-hmac@^1.1.4 fetched in 3ms<br>
2462 silly pacote range manifest for color-name@~1.1.4 fetched in 2ms<br>
2463 silly pacote range manifest for fill-range@^7.0.1 fetched in 2ms<br>
2464 silly pacote range manifest for browserify-rsa@^4.0.0 fetched in 224ms<br>
2465 silly pacote range manifest for bn.js@^4.1.0 fetched in 442ms<br>
2466 http fetch GET 200 <a href="https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz" rel="nofollow">https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz</a> 211ms<br>
2467 http fetch GET 200 <a href="https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz" rel="nofollow">https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz</a> 213ms<br>
2468 silly pacote range manifest for bn.js@^5.1.1 fetched in 457ms<br>
2469 silly pacote range manifest for run-queue@^1.0.0 fetched in 1ms<br>
2470 silly pacote range manifest for elliptic@^6.5.3 fetched in 455ms<br>
2471 silly pacote range manifest for once@^1.4.0 fetched in 1ms<br>
2472 silly pacote range manifest for readable-stream@1 || 2 fetched in 2ms<br>
2473 silly pacote range manifest for readable-stream@^2.2.2 fetched in 1ms<br>
2474 http fetch GET 200 <a href="https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz" rel="nofollow">https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz</a> 226ms<br>
2475 http fetch GET 200 <a href="https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz" rel="nofollow">https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz</a> 211ms<br>
2476 http fetch GET 200 <a href="https://registry.npmjs.org/iferr" rel="nofollow">https://registry.npmjs.org/iferr</a> 210ms<br>
2477 http fetch GET 200 <a href="https://registry.npmjs.org/typedarray" rel="nofollow">https://registry.npmjs.org/typedarray</a> 199ms<br>
2478 http fetch GET 304 <a href="https://registry.npmjs.org/picomatch" rel="nofollow">https://registry.npmjs.org/picomatch</a> 217ms (from cache)<br>
2479 http fetch GET 304 <a href="https://registry.npmjs.org/imurmurhash" rel="nofollow">https://registry.npmjs.org/imurmurhash</a> 207ms (from cache)<br>
2480 http fetch GET 304 <a href="https://registry.npmjs.org/picomatch" rel="nofollow">https://registry.npmjs.org/picomatch</a> 215ms (from cache)<br>
2481 silly pacote range manifest for imurmurhash@^0.1.4 fetched in 208ms<br>
2482 silly pacote range manifest for picomatch@^2.0.4 fetched in 220ms<br>
2483 silly pacote range manifest for picomatch@^2.2.1 fetched in 219ms<br>
2484 silly pacote range manifest for miller-rabin@^4.0.0 fetched in 446ms<br>
2485 silly pacote range manifest for end-of-stream@^1.0.0 fetched in 5ms<br>
2486 silly pacote range manifest for readable-stream@^2.0.0 fetched in 2ms<br>
2487 silly pacote range manifest for readable-stream@~2.3.6 fetched in 2ms<br>
2488 silly pacote range manifest for binary-extensions@^2.0.0 fetched in 224ms<br>
2489 silly pacote range manifest for xtend@~4.0.1 fetched in 2ms<br>
2490 silly pacote range manifest for ansi-regex@^3.0.0 fetched in 2ms<br>
2491 silly pacote range manifest for duplexify@^3.6.0 fetched in 2ms<br>
2492 silly pacote range manifest for readable-stream@^2.1.5 fetched in 1ms<br>
2493 silly pacote range manifest for shebang-regex@^3.0.0 fetched in 1ms<br>
2494 http fetch GET 200 <a href="https://registry.npmjs.org/stream-shift" rel="nofollow">https://registry.npmjs.org/stream-shift</a> 221ms<br>
2495 http fetch GET 200 <a href="https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz" rel="nofollow">https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz</a> 229ms<br>
2496 http fetch GET 200 <a href="https://registry.npmjs.org/pump/-/pump-2.0.1.tgz" rel="nofollow">https://registry.npmjs.org/pump/-/pump-2.0.1.tgz</a> 218ms<br>
2497 http fetch GET 200 <a href="https://registry.npmjs.org/cyclist" rel="nofollow">https://registry.npmjs.org/cyclist</a> 219ms<br>
2498 http fetch GET 200 <a href="https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz" rel="nofollow">https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz</a> 231ms<br>
2499 http fetch GET 304 <a href="https://registry.npmjs.org/caller-callsite" rel="nofollow">https://registry.npmjs.org/caller-callsite</a> 224ms (from cache)<br>
2500 http fetch GET 304 <a href="https://registry.npmjs.org/sprintf-js" rel="nofollow">https://registry.npmjs.org/sprintf-js</a> 219ms (from cache)<br>
2501 silly pacote range manifest for caller-callsite@^2.0.0 fetched in 225ms<br>
2502 silly pacote range manifest for sprintf-js@~1.0.2 fetched in 221ms<br>
2503 silly pacote range manifest for pump@^2.0.0 fetched in 226ms<br>
2504 silly pacote range manifest for has@^1.0.3 fetched in 1ms<br>
2505 silly pacote range manifest for iferr@^0.1.5 fetched in 448ms<br>
2506 silly pacote range manifest for typedarray@^0.0.6 fetched in 438ms<br>
2507 silly pacote range manifest for is-regex@^1.1.1 fetched in 2ms<br>
2508 silly pacote range manifest for object.assign@^4.1.2 fetched in 1ms<br>
2509 http fetch GET 200 <a href="https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz</a> 204ms<br>
2510 http fetch GET 200 <a href="https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz</a> 202ms<br>
2511 http fetch GET 304 <a href="https://registry.npmjs.org/is-negative-zero" rel="nofollow">https://registry.npmjs.org/is-negative-zero</a> 201ms (from cache)<br>
2512 http fetch GET 304 <a href="https://registry.npmjs.org/string.prototype.trimend" rel="nofollow">https://registry.npmjs.org/string.prototype.trimend</a> 198ms (from cache)<br>
2513 http fetch GET 304 <a href="https://registry.npmjs.org/is-callable" rel="nofollow">https://registry.npmjs.org/is-callable</a> 203ms (from cache)<br>
2514 http fetch GET 304 <a href="https://registry.npmjs.org/es-to-primitive" rel="nofollow">https://registry.npmjs.org/es-to-primitive</a> 205ms (from cache)<br>
2515 http fetch GET 304 <a href="https://registry.npmjs.org/object-inspect" rel="nofollow">https://registry.npmjs.org/object-inspect</a> 203ms (from cache)<br>
2516 silly pacote range manifest for is-negative-zero@^2.0.1 fetched in 203ms<br>
2517 silly pacote range manifest for string.prototype.trimend@^1.0.3 fetched in 201ms<br>
2518 silly pacote range manifest for is-callable@^1.2.2 fetched in 205ms<br>
2519 silly pacote range manifest for es-to-primitive@^1.2.1 fetched in 208ms<br>
2520 silly pacote range manifest for object-inspect@^1.9.0 fetched in 206ms<br>
2521 silly pacote range manifest for stream-shift@^1.0.0 fetched in 437ms<br>
2522 silly pacote range manifest for cyclist@^1.0.1 fetched in 435ms<br>
2523 silly pacote range manifest for statuses@>= 1.5.0 < 2 fetched in 2ms<br>
2524 http fetch GET 200 <a href="https://registry.npmjs.org/boolbase" rel="nofollow">https://registry.npmjs.org/boolbase</a> 214ms<br>
2525 http fetch GET 200 <a href="https://registry.npmjs.org/css-what" rel="nofollow">https://registry.npmjs.org/css-what</a> 215ms<br>
2526 http fetch GET 200 <a href="https://registry.npmjs.org/nth-check" rel="nofollow">https://registry.npmjs.org/nth-check</a> 217ms<br>
2527 http fetch GET 304 <a href="https://registry.npmjs.org/toidentifier" rel="nofollow">https://registry.npmjs.org/toidentifier</a> 215ms (from cache)<br>
2528 http fetch GET 200 <a href="https://registry.npmjs.org/domutils" rel="nofollow">https://registry.npmjs.org/domutils</a> 220ms<br>
2529 silly pacote version manifest for toidentifier@1.0.0 fetched in 217ms<br>
2530 http fetch GET 304 <a href="https://registry.npmjs.org/lower-case" rel="nofollow">https://registry.npmjs.org/lower-case</a> 224ms (from cache)<br>
2531 http fetch GET 304 <a href="https://registry.npmjs.org/string.prototype.trimstart" rel="nofollow">https://registry.npmjs.org/string.prototype.trimstart</a> 227ms (from cache)<br>
2532 silly pacote range manifest for string.prototype.trimstart@^1.0.3 fetched in 228ms<br>
2533 silly pacote version manifest for unpipe@1.0.0 fetched in 0ms<br>
2534 silly pacote range manifest for safer-buffer@>= 2.1.2 < 3 fetched in 1ms<br>
2535 http fetch GET 200 <a href="https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz" rel="nofollow">https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz</a> 217ms<br>
2536 http fetch GET 200 <a href="https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz" rel="nofollow">https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz</a> 221ms<br>
2537 http fetch GET 200 <a href="https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz</a> 223ms<br>
2538 http fetch GET 200 <a href="https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz" rel="nofollow">https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz</a> 215ms<br>
2539 http fetch GET 200 <a href="https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz" rel="nofollow">https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz</a> 220ms<br>
2540 http fetch GET 200 <a href="https://registry.npmjs.org/utila" rel="nofollow">https://registry.npmjs.org/utila</a> 218ms<br>
2541 http fetch GET 304 <a href="https://registry.npmjs.org/clean-stack" rel="nofollow">https://registry.npmjs.org/clean-stack</a> 216ms (from cache)<br>
2542 silly pacote range manifest for clean-stack@^2.0.0 fetched in 217ms<br>
2543 silly pacote range manifest for lower-case@^1.1.1 fetched in 446ms<br>
2544 silly pacote range manifest for domutils@^1.7.0 fetched in 444ms<br>
2545 silly pacote range manifest for css-what@^3.2.1 fetched in 445ms<br>
2546 silly pacote range manifest for boolbase@^1.0.0 fetched in 446ms<br>
2547 silly pacote range manifest for nth-check@^1.0.2 fetched in 446ms<br>
2548 http fetch GET 200 <a href="https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" rel="nofollow">https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz</a> 3ms (from cache)<br>
2549 silly pacote version manifest for inherits@2.0.4 fetched in 7ms<br>
2550 http fetch GET 200 <a href="https://registry.npmjs.org/utila/-/utila-0.4.0.tgz" rel="nofollow">https://registry.npmjs.org/utila/-/utila-0.4.0.tgz</a> 230ms<br>
2551 http fetch GET 200 <a href="https://registry.npmjs.org/file-uri-to-path" rel="nofollow">https://registry.npmjs.org/file-uri-to-path</a> 225ms<br>
2552 http fetch GET 200 <a href="https://registry.npmjs.org/domelementtype" rel="nofollow">https://registry.npmjs.org/domelementtype</a> 222ms<br>
2553 http fetch GET 304 <a href="https://registry.npmjs.org/@types%2frange-parser" rel="nofollow">https://registry.npmjs.org/@types%2frange-parser</a> 250ms (from cache)<br>
2554 http fetch GET 304 <a href="https://registry.npmjs.org/indent-string" rel="nofollow">https://registry.npmjs.org/indent-string</a> 252ms (from cache)<br>
2555 http fetch GET 304 <a href="https://registry.npmjs.org/remove-trailing-separator" rel="nofollow">https://registry.npmjs.org/remove-trailing-separator</a> 251ms (from cache)<br>
2556 silly pacote range manifest for @types/range-parser@* fetched in 251ms<br>
2557 silly pacote range manifest for indent-string@^4.0.0 fetched in 254ms<br>
2558 silly pacote range manifest for remove-trailing-separator@^1.0.1 fetched in 253ms<br>
2559 silly pacote range manifest for utila@~0.4 fetched in 477ms<br>
2560 silly pacote range manifest for domutils@^1.5.1 fetched in 2ms<br>
2561 silly pacote range manifest for readable-stream@^3.1.1 fetched in 2ms<br>
2562 http fetch GET 200 <a href="https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz" rel="nofollow">https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz</a> 176ms<br>
2563 http fetch GET 200 <a href="https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz</a> 200ms<br>
2564 http fetch GET 304 <a href="https://registry.npmjs.org/entities" rel="nofollow">https://registry.npmjs.org/entities</a> 177ms (from cache)<br>
2565 http fetch GET 304 <a href="https://registry.npmjs.org/pinkie" rel="nofollow">https://registry.npmjs.org/pinkie</a> 177ms (from cache)<br>
2566 silly pacote range manifest for domelementtype@^1.3.1 fetched in 426ms<br>
2567 silly pacote range manifest for pinkie@^2.0.0 fetched in 179ms<br>
2568 silly pacote range manifest for ip@^1.1.0 fetched in 2ms<br>
2569 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fsource-list-map" rel="nofollow">https://registry.npmjs.org/@types%2fsource-list-map</a> 182ms<br>
2570 http fetch GET 200 <a href="https://registry.npmjs.org/domhandler" rel="nofollow">https://registry.npmjs.org/domhandler</a> 185ms<br>
2571 silly pacote version manifest for file-uri-to-path@1.0.0 fetched in 437ms<br>
2572 silly pacote range manifest for path-exists@^3.0.0 fetched in 4ms<br>
2573 silly pacote range manifest for ansi-styles@^3.2.0 fetched in 0ms<br>
2574 silly pacote range manifest for strip-ansi@^5.0.0 fetched in 1ms<br>
2575 silly pacote range manifest for obuf@^1.0.0 fetched in 1ms<br>
2576 silly pacote range manifest for wbuf@^1.1.0 fetched in 1ms<br>
2577 silly pacote range manifest for string_decoder@^1.1.1 fetched in 1ms<br>
2578 silly pacote range manifest for util-deprecate@^1.0.1 fetched in 0ms<br>
2579 silly pacote range manifest for mimic-fn@^1.0.0 fetched in 0ms<br>
2580 http fetch GET 200 <a href="https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz" rel="nofollow">https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz</a> 211ms<br>
2581 silly pacote range manifest for source-map@^0.7.3 fetched in 216ms<br>
2582 http fetch GET 200 <a href="https://registry.npmjs.org/entities/-/entities-1.1.2.tgz" rel="nofollow">https://registry.npmjs.org/entities/-/entities-1.1.2.tgz</a> 239ms<br>
2583 http fetch GET 200 <a href="https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz" rel="nofollow">https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz</a> 230ms<br>
2584 http fetch GET 200 <a href="https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz" rel="nofollow">https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz</a> 231ms<br>
2585 http fetch GET 304 <a href="https://registry.npmjs.org/path-is-inside" rel="nofollow">https://registry.npmjs.org/path-is-inside</a> 239ms (from cache)<br>
2586 http fetch GET 304 <a href="https://registry.npmjs.org/p-locate" rel="nofollow">https://registry.npmjs.org/p-locate</a> 239ms (from cache)<br>
2587 http fetch GET 304 <a href="https://registry.npmjs.org/spdx-exceptions" rel="nofollow">https://registry.npmjs.org/spdx-exceptions</a> 204ms (from cache)<br>
2588 http fetch GET 304 <a href="https://registry.npmjs.org/minimalistic-assert" rel="nofollow">https://registry.npmjs.org/minimalistic-assert</a> 227ms (from cache)<br>
2589 silly pacote range manifest for path-is-inside@^1.0.2 fetched in 241ms<br>
2590 silly pacote range manifest for p-locate@^3.0.0 fetched in 241ms<br>
2591 silly pacote range manifest for spdx-exceptions@^2.1.0 fetched in 206ms<br>
2592 silly pacote range manifest for minimalistic-assert@^1.0.0 fetched in 230ms<br>
2593 silly pacote range manifest for entities@^1.1.1 fetched in 426ms<br>
2594 silly pacote range manifest for @types/source-list-map@* fetched in 424ms<br>
2595 silly pacote range manifest for url-parse@^1.4.3 fetched in 4ms<br>
2596 silly pacote range manifest for domhandler@^2.3.0 fetched in 429ms<br>
2597 silly pacote version manifest for core-util-is@1.0.2 fetched in 4ms<br>
2598 silly pacote range manifest for safer-buffer@~2.1.0 fetched in 4ms<br>
2599 silly pacote range manifest for safer-buffer@^2.1.0 fetched in 4ms<br>
2600 silly pacote range manifest for tweetnacl@^0.14.3 fetched in 3ms<br>
2601 http fetch GET 200 <a href="https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.0.tgz" rel="nofollow">https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.0.tgz</a> 194ms<br>
2602 http fetch GET 304 <a href="https://registry.npmjs.org/spdx-license-ids" rel="nofollow">https://registry.npmjs.org/spdx-license-ids</a> 200ms (from cache)<br>
2603 http fetch GET 304 <a href="https://registry.npmjs.org/regjsparser" rel="nofollow">https://registry.npmjs.org/regjsparser</a> 194ms (from cache)<br>
2604 http fetch GET 304 <a href="https://registry.npmjs.org/regenerate-unicode-properties" rel="nofollow">https://registry.npmjs.org/regenerate-unicode-properties</a> 195ms (from cache)<br>
2605 http fetch GET 304 <a href="https://registry.npmjs.org/regenerate" rel="nofollow">https://registry.npmjs.org/regenerate</a> 197ms (from cache)<br>
2606 http fetch GET 304 <a href="https://registry.npmjs.org/regjsgen" rel="nofollow">https://registry.npmjs.org/regjsgen</a> 195ms (from cache)<br>
2607 http fetch GET 304 <a href="https://registry.npmjs.org/unicode-match-property-ecmascript" rel="nofollow">https://registry.npmjs.org/unicode-match-property-ecmascript</a> 194ms (from cache)<br>
2608 silly pacote range manifest for spdx-license-ids@^3.0.0 fetched in 203ms<br>
2609 silly pacote range manifest for extsprintf@^1.2.0 fetched in 202ms<br>
2610 silly pacote range manifest for regjsparser@^0.6.4 fetched in 197ms<br>
2611 silly pacote range manifest for regenerate-unicode-properties@^8.2.0 fetched in 198ms<br>
2612 silly pacote range manifest for regenerate@^1.4.0 fetched in 200ms<br>
2613 silly pacote range manifest for regjsgen@^0.5.1 fetched in 198ms<br>
2614 silly pacote range manifest for unicode-match-property-ecmascript@^1.0.4 fetched in 197ms<br>
2615 silly pacote range manifest for p-locate@^4.1.0 fetched in 4ms<br>
2616 silly pacote range manifest for color-name@^1.0.0 fetched in 4ms<br>
2617 silly pacote range manifest for es-abstract@^1.17.2 fetched in 2ms<br>
2618 silly pacote range manifest for object.getownpropertydescriptors@^2.1.0 fetched in 1ms<br>
2619 silly pacote range manifest for kind-of@^3.2.0 fetched in 2ms<br>
2620 silly pacote range manifest for kind-of@^3.0.2 fetched in 1ms<br>
2621 http fetch GET 200 <a href="https://registry.npmjs.org/@types%2fq" rel="nofollow">https://registry.npmjs.org/@types%2fq</a> 209ms<br>
2622 http fetch GET 304 <a href="https://registry.npmjs.org/unicode-match-property-value-ecmascript" rel="nofollow">https://registry.npmjs.org/unicode-match-property-value-ecmascript</a> 214ms (from cache)<br>
2623 silly pacote range manifest for unicode-match-property-value-ecmascript@^1.2.0 fetched in 216ms<br>
2624 http fetch GET 304 <a href="https://registry.npmjs.org/is-obj" rel="nofollow">https://registry.npmjs.org/is-obj</a> 214ms (from cache)<br>
2625 http fetch GET 304 <a href="https://registry.npmjs.org/collection-visit" rel="nofollow">https://registry.npmjs.org/collection-visit</a> 210ms (from cache)<br>
2626 silly pacote range manifest for collection-visit@^1.0.0 fetched in 212ms<br>
2627 http fetch GET 200 <a href="https://registry.npmjs.org/q" rel="nofollow">https://registry.npmjs.org/q</a> 225ms<br>
2628 http fetch GET 200 <a href="https://registry.npmjs.org/simple-swizzle" rel="nofollow">https://registry.npmjs.org/simple-swizzle</a> 320ms<br>
2629 http fetch GET 200 <a href="https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz" rel="nofollow">https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz</a> 238ms<br>
2630 http fetch GET 200 <a href="https://registry.npmjs.org/@types/q/-/q-1.5.4.tgz" rel="nofollow">https://registry.npmjs.org/@types/q/-/q-1.5.4.tgz</a> 243ms<br>
2631 http fetch GET 200 <a href="https://registry.npmjs.org/q/-/q-1.5.1.tgz" rel="nofollow">https://registry.npmjs.org/q/-/q-1.5.1.tgz</a> 231ms<br>
2632 http fetch GET 200 <a href="https://registry.npmjs.org/css-tree/-/css-tree-1.1.2.tgz" rel="nofollow">https://registry.npmjs.org/css-tree/-/css-tree-1.1.2.tgz</a> 452ms<br>
2633 http fetch GET 304 <a href="https://registry.npmjs.org/get-value" rel="nofollow">https://registry.npmjs.org/get-value</a> 249ms (from cache)<br>
2634 http fetch GET 304 <a href="https://registry.npmjs.org/has-value" rel="nofollow">https://registry.npmjs.org/has-value</a> 245ms (from cache)<br>
2635 silly pacote range manifest for get-value@^2.0.6 fetched in 253ms<br>
2636 silly pacote range manifest for is-obj@^2.0.0 fetched in 466ms<br>
2637 silly pacote range manifest for has-value@^1.0.0 fetched in 250ms<br>
2638 silly pacote range manifest for @types/q@^1.5.1 fetched in 471ms<br>
2639 silly pacote range manifest for q@^1.1.2 fetched in 480ms<br>
2640 silly pacote range manifest for css-tree@^1.1.2 fetched in 476ms<br>
2641 http fetch GET 200 <a href="https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz" rel="nofollow">https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz</a> 163ms<br>
2642 silly pacote range manifest for simple-swizzle@^0.2.2 fetched in 491ms<br>
2643 http fetch GET 200 <a href="https://registry.npmjs.org/mdn-data" rel="nofollow">https://registry.npmjs.org/mdn-data</a> 167ms<br>
2644 http fetch GET 304 <a href="https://registry.npmjs.org/set-value" rel="nofollow">https://registry.npmjs.org/set-value</a> 194ms (from cache)<br>
2645 http fetch GET 304 <a href="https://registry.npmjs.org/arr-union" rel="nofollow">https://registry.npmjs.org/arr-union</a> 180ms (from cache)<br>
2646 http fetch GET 304 <a href="https://registry.npmjs.org/to-object-path" rel="nofollow">https://registry.npmjs.org/to-object-path</a> 195ms (from cache)<br>
2647 http fetch GET 304 <a href="https://registry.npmjs.org/unset-value" rel="nofollow">https://registry.npmjs.org/unset-value</a> 191ms (from cache)<br>
2648 http fetch GET 304 <a href="https://registry.npmjs.org/static-extend" rel="nofollow">https://registry.npmjs.org/static-extend</a> 181ms (from cache)<br>
2649 silly pacote range manifest for arr-union@^3.1.0 fetched in 181ms<br>
2650 silly pacote range manifest for set-value@^2.0.0 fetched in 196ms<br>
2651 http fetch GET 304 <a href="https://registry.npmjs.org/union-value" rel="nofollow">https://registry.npmjs.org/union-value</a> 194ms (from cache)<br>
2652 silly pacote range manifest for to-object-path@^0.3.0 fetched in 197ms<br>
2653 silly pacote range manifest for unset-value@^1.0.0 fetched in 193ms<br>
2654 silly pacote range manifest for is-accessor-descriptor@^0.1.6 fetched in 2ms<br>
2655 silly pacote range manifest for static-extend@^0.1.1 fetched in 184ms<br>
2656 silly pacote range manifest for is-data-descriptor@^0.1.4 fetched in 3ms<br>
2657 silly pacote range manifest for union-value@^1.0.0 fetched in 197ms<br>
2658 silly pacote range manifest for kind-of@^5.0.0 fetched in 3ms<br>
2659 silly pacote range manifest for kind-of@^6.0.0 fetched in 5ms<br>
2660 silly pacote range manifest for safe-buffer@^5.1.1 fetched in 4ms<br>
2661 silly pacote range manifest for cipher-base@^1.0.0 fetched in 2ms<br>
2662 silly pacote range manifest for evp_bytestokey@^1.0.3 fetched in 1ms<br>
2663 silly pacote range manifest for browserify-aes@^1.0.0 fetched in 1ms<br>
2664 silly pacote range manifest for bn.js@^5.0.0 fetched in 1ms<br>
2665 silly pacote range manifest for to-regex-range@^5.0.1 fetched in 0ms<br>
2666 silly pacote range manifest for bn.js@^4.11.9 fetched in 1ms<br>
2667 http fetch GET 200 <a href="https://registry.npmjs.org/hash-base" rel="nofollow">https://registry.npmjs.org/hash-base</a> 206ms<br>
2668 http fetch GET 200 <a href="https://registry.npmjs.org/brorand" rel="nofollow">https://registry.npmjs.org/brorand</a> 204ms<br>
2669 http fetch GET 200 <a href="https://registry.npmjs.org/des.js" rel="nofollow">https://registry.npmjs.org/des.js</a> 214ms<br>
2670 http fetch GET 304 <a href="https://registry.npmjs.org/for-in" rel="nofollow">https://registry.npmjs.org/for-in</a> 216ms (from cache)<br>
2671 http fetch GET 200 <a href="https://registry.npmjs.org/buffer-xor" rel="nofollow">https://registry.npmjs.org/buffer-xor</a> 214ms<br>
2672 silly pacote range manifest for for-in@^1.0.2 fetched in 218ms<br>
2673 http fetch GET 200 <a href="https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz" rel="nofollow">https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz</a> 226ms<br>
2674 silly pacote version manifest for mdn-data@2.0.4 fetched in 399ms<br>
2675 http fetch GET 200 <a href="https://registry.npmjs.org/asn1.js" rel="nofollow">https://registry.npmjs.org/asn1.js</a> 233ms<br>
2676 http fetch GET 200 <a href="https://registry.npmjs.org/hmac-drbg" rel="nofollow">https://registry.npmjs.org/hmac-drbg</a> 211ms<br>
2677 http fetch GET 200 <a href="https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz" rel="nofollow">https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz</a> 229ms<br>
2678 http fetch GET 200 <a href="https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz" rel="nofollow">https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz</a> 217ms<br>
2679 http fetch GET 200 <a href="https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz</a> 222ms<br>
2680 http fetch GET 304 <a href="https://registry.npmjs.org/hash.js" rel="nofollow">https://registry.npmjs.org/hash.js</a> 221ms (from cache)<br>
2681 http fetch GET 200 <a href="https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz" rel="nofollow">https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz</a> 199ms<br>
2682 http fetch GET 200 <a href="https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz</a> 225ms<br>
2683 silly pacote range manifest for hash.js@^1.0.0 fetched in 223ms<br>
2684 silly pacote range manifest for minimalistic-assert@^1.0.1 fetched in 1ms<br>
2685 silly pacote range manifest for hash-base@^3.0.0 fetched in 443ms<br>
2686 silly pacote range manifest for bn.js@^4.0.0 fetched in 1ms<br>
2687 silly pacote range manifest for buffer-xor@^1.0.3 fetched in 443ms<br>
2688 silly pacote range manifest for des.js@^1.0.0 fetched in 447ms<br>
2689 silly pacote range manifest for asn1.js@^5.2.0 fetched in 442ms<br>
2690 http fetch GET 200 <a href="https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz" rel="nofollow">https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz</a> 4ms (from cache)<br>
2691 silly pacote range manifest for brorand@^1.1.0 fetched in 441ms<br>
2692 silly pacote range manifest for is-callable@^1.1.4 fetched in 3ms<br>
2693 silly pacote range manifest for domelementtype@1 fetched in 1ms<br>
2694 silly pacote range manifest for boolbase@~1.0.0 fetched in 1ms<br>
2695 silly pacote range manifest for p-limit@^2.0.0 fetched in 0ms<br>
2696 silly pacote range manifest for jsesc@~0.5.0 fetched in 1ms<br>
2697 silly pacote range manifest for brorand@^1.0.1 fetched in 11ms<br>
2698 http fetch GET 200 <a href="https://registry.npmjs.org/dom-serializer" rel="nofollow">https://registry.npmjs.org/dom-serializer</a> 203ms<br>
2699 http fetch GET 200 <a href="https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz</a> 220ms<br>
2700 http fetch GET 200 <a href="https://registry.npmjs.org/minimalistic-crypto-utils" rel="nofollow">https://registry.npmjs.org/minimalistic-crypto-utils</a> 212ms<br>
2701 http fetch GET 304 <a href="https://registry.npmjs.org/callsites" rel="nofollow">https://registry.npmjs.org/callsites</a> 213ms (from cache)<br>
2702 http fetch GET 304 <a href="https://registry.npmjs.org/is-symbol" rel="nofollow">https://registry.npmjs.org/is-symbol</a> 211ms (from cache)<br>
2703 http fetch GET 304 <a href="https://registry.npmjs.org/unicode-property-aliases-ecmascript" rel="nofollow">https://registry.npmjs.org/unicode-property-aliases-ecmascript</a> 205ms (from cache)<br>
2704 http fetch GET 304 <a href="https://registry.npmjs.org/unicode-canonical-property-names-ecmascript" rel="nofollow">https://registry.npmjs.org/unicode-canonical-property-names-ecmascript</a> 206ms (from cache)<br>
2705 silly pacote range manifest for callsites@^2.0.0 fetched in 216ms<br>
2706 silly pacote range manifest for is-symbol@^1.0.2 fetched in 213ms<br>
2707 silly pacote range manifest for unicode-property-aliases-ecmascript@^1.0.4 fetched in 206ms<br>
2708 silly pacote range manifest for unicode-canonical-property-names-ecmascript@^1.0.4 fetched in 208ms<br>
2709 silly pacote range manifest for p-limit@^2.2.0 fetched in 1ms<br>
2710 silly pacote range manifest for object-inspect@^1.8.0 fetched in 2ms<br>
2711 silly pacote range manifest for object.assign@^4.1.1 fetched in 2ms<br>
2712 silly pacote range manifest for hmac-drbg@^1.0.1 fetched in 441ms<br>
2713 silly pacote range manifest for string.prototype.trimend@^1.0.1 fetched in 2ms<br>
2714 silly pacote range manifest for string.prototype.trimstart@^1.0.1 fetched in 3ms<br>
2715 http fetch GET 200 <a href="https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz" rel="nofollow">https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz</a> 216ms<br>
2716 http fetch GET 200 <a href="https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz" rel="nofollow">https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz</a> 218ms<br>
2717 http fetch GET 304 <a href="https://registry.npmjs.org/is-buffer" rel="nofollow">https://registry.npmjs.org/is-buffer</a> 211ms (from cache)<br>
2718 silly pacote range manifest for is-buffer@^1.1.5 fetched in 214ms<br>
2719 http fetch GET 304 <a href="https://registry.npmjs.org/object-visit" rel="nofollow">https://registry.npmjs.org/object-visit</a> 214ms (from cache)<br>
2720 http fetch GET 304 <a href="https://registry.npmjs.org/map-visit" rel="nofollow">https://registry.npmjs.org/map-visit</a> 216ms (from cache)<br>
2721 silly pacote range manifest for object-visit@^1.0.0 fetched in 216ms<br>
2722 silly pacote range manifest for map-visit@^1.0.0 fetched in 218ms<br>
2723 http fetch GET 304 <a href="https://registry.npmjs.org/has-values" rel="nofollow">https://registry.npmjs.org/has-values</a> 218ms (from cache)<br>
2724 silly pacote range manifest for minimalistic-crypto-utils@^1.0.1 fetched in 441ms<br>
2725 silly pacote range manifest for is-extendable@^0.1.1 fetched in 3ms<br>
2726 silly pacote range manifest for dom-serializer@0 fetched in 433ms<br>
2727 silly pacote range manifest for is-plain-object@^2.0.3 fetched in 3ms<br>
2728 silly pacote range manifest for has-values@^1.0.0 fetched in 220ms<br>
2729 silly pacote range manifest for split-string@^3.0.1 fetched in 3ms<br>
2730 silly pacote range manifest for has-value@^0.3.1 fetched in 2ms<br>
2731 silly pacote range manifest for set-value@^2.0.1 fetched in 2ms<br>
2732 http fetch GET 200 <a href="https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz" rel="nofollow">https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz</a> 220ms<br>
2733 silly pacote range manifest for is-number@^7.0.0 fetched in 4ms<br>
2734 silly pacote range manifest for hash.js@^1.0.3 fetched in 4ms<br>
2735 silly pacote range manifest for entities@^2.0.0 fetched in 3ms<br>
2736 silly pacote range manifest for kind-of@^4.0.0 fetched in 1ms<br>
2737 silly pacote range manifest for get-value@^2.0.3 fetched in 2ms<br>
2738 silly pacote range manifest for has-values@^0.1.4 fetched in 1ms<br>
2739 silly pacote range manifest for isobject@^2.0.0 fetched in 1ms<br>
2740 silly pacote version manifest for mdn-data@2.0.14 fetched in 229ms<br>
2741 http fetch GET 200 <a href="https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" rel="nofollow">https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz</a> 2ms (from cache)<br>
2742 silly pacote version manifest for isarray@1.0.0 fetched in 5ms<br>
2743 http fetch GET 200 <a href="https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz" rel="nofollow">https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz</a> 216ms<br>
2744 http fetch GET 200 <a href="https://registry.npmjs.org/domelementtype/-/domelementtype-2.1.0.tgz" rel="nofollow">https://registry.npmjs.org/domelementtype/-/domelementtype-2.1.0.tgz</a> 207ms<br>
2745 http fetch GET 304 <a href="https://registry.npmjs.org/object-copy" rel="nofollow">https://registry.npmjs.org/object-copy</a> 213ms (from cache)<br>
2746 silly pacote range manifest for object-copy@^0.1.0 fetched in 214ms<br>
2747 silly pacote range manifest for kind-of@^3.0.3 fetched in 0ms<br>
2748 silly pacote range manifest for is-arrayish@^0.3.1 fetched in 223ms<br>
2749 silly pacote range manifest for domelementtype@^2.0.1 fetched in 214ms<br>
2750 http fetch GET 304 <a href="https://registry.npmjs.org/copy-descriptor" rel="nofollow">https://registry.npmjs.org/copy-descriptor</a> 220ms (from cache)<br>
2751 silly pacote range manifest for copy-descriptor@^0.1.0 fetched in 223ms<br>
2752 timing npm Completed in 152000ms<br>
2753 error cb() never called!<br>
2754 error This is an error with npm itself. Please report this error at:<br>
2755 error <a href="https://npm.community" rel="nofollow">https://npm.community</a></p> | <h3 dir="auto">Current Behavior:</h3>
<p dir="auto">Attempting to install a git dependency with an invalid commit-ish gives a very confusing error that doesn't explain the cause of the problem.</p>
<p dir="auto">npm@7 should give an error that indicates it can't find a commit with that hash.</p>
<p dir="auto">npm@6 does give a useful error for this same scenario.</p>
<h3 dir="auto">Steps To Reproduce:</h3>
<p dir="auto"><strong>package.json</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="{
"dependencies": {
"bad-commitish": "git@github.com:npm/json-parse-even-better-errors.git#bad-commitish"
}
}
"><pre class="notranslate"><code class="notranslate">{
"dependencies": {
"bad-commitish": "git@github.com:npm/json-parse-even-better-errors.git#bad-commitish"
}
}
</code></pre></div>
<p dir="auto"><strong>npm 7</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ npm --version
7.0.0-beta.10
$ npm install
npm ERR! code 128
npm ERR! command failed
npm ERR! command git clone --mirror -q ssh://git@github.com/npm/json-parse-even-better-errors.git /home/coridyn/.npm/_cacache/tmp/git-clone-65ca3462/.git
npm ERR! fatal: destination path '/home/coridyn/.npm/_cacache/tmp/git-clone-65ca3462/.git' already exists and is not an empty directory.
npm ERR! A complete log of this run can be found in:
npm ERR! /home/coridyn/.npm/_logs/2020-09-09T08_07_35_128Z-debug.log"><pre class="notranslate"><code class="notranslate">$ npm --version
7.0.0-beta.10
$ npm install
npm ERR! code 128
npm ERR! command failed
npm ERR! command git clone --mirror -q ssh://git@github.com/npm/json-parse-even-better-errors.git /home/coridyn/.npm/_cacache/tmp/git-clone-65ca3462/.git
npm ERR! fatal: destination path '/home/coridyn/.npm/_cacache/tmp/git-clone-65ca3462/.git' already exists and is not an empty directory.
npm ERR! A complete log of this run can be found in:
npm ERR! /home/coridyn/.npm/_logs/2020-09-09T08_07_35_128Z-debug.log
</code></pre></div>
<hr>
<p dir="auto"><strong>npm 6</strong></p>
<p dir="auto">npm 6 shows a better message for the same scenario</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ npm --version
6.14.8
$ npm install
npm ERR! code 1
npm ERR! Command failed: git checkout bad-commitish
npm ERR! error: pathspec 'bad-commitish' did not match any file(s) known to git.
npm ERR!
npm ERR! A complete log of this run can be found in:
npm ERR! /home/coridyn/.npm/_logs/2020-09-09T08_06_45_815Z-debug.log"><pre class="notranslate"><code class="notranslate">$ npm --version
6.14.8
$ npm install
npm ERR! code 1
npm ERR! Command failed: git checkout bad-commitish
npm ERR! error: pathspec 'bad-commitish' did not match any file(s) known to git.
npm ERR!
npm ERR! A complete log of this run can be found in:
npm ERR! /home/coridyn/.npm/_logs/2020-09-09T08_06_45_815Z-debug.log
</code></pre></div>
<h3 dir="auto">Environment:</h3>
<p dir="auto">This occurs in both Windows and Linux npm 7.0.0-beta.10.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ node --version
v12.16.2
$ npm --version
7.0.0-beta.10"><pre class="notranslate"><code class="notranslate">$ node --version
v12.16.2
$ npm --version
7.0.0-beta.10
</code></pre></div> | 0 |
<p dir="auto">by <strong>hyperbolic.tom</strong>:</p>
<pre class="notranslate">See here:
<a href="http://golang.org/ref/spec#Method_values" rel="nofollow">http://golang.org/ref/spec#Method_values</a>
"As with method calls, a reference to a non-interface method with a pointer
receiver using an addressable value will automatically take the address of that value:
t.Mv is equivalent to (&t).Mv."
I'm pretty sure that should say t.Mp is equivalent to (&t).Mp.</pre> | <p dir="auto">by <strong>michael.tautschnig</strong>:</p>
<pre class="notranslate">Hi,
While building your package using our research compiler infrastructure we noticed that
there are two definitions of "p9main" available while bootstrapping addr2line
(and likely also all other subsequently compiled tools).
This is caused by fmt/test.c being included in lib9.a (src/cmd/dist/build.c picks all of
fmt/*).
Best,
Michael</pre> | 0 |
<p dir="auto">Consider this .gitignore:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/lib/*
!/lib/foo/"><pre class="notranslate"><code class="notranslate">/lib/*
!/lib/foo/
</code></pre></div>
<p dir="auto">Here, we are instructing git to ignore everything under /lib, except for things under /lib/foo. However, tree-view does not parse this correctly, and instead matches everything under /lib, regardless of whether it's under /lib/foo or not. Thus, if I have "Hide VCS Ignored Files" unchecked, everything under /lib and lib/foo will be ghosted out. If I have "Hide CVS Ignored Files" check, everything under /lib and /lib/foo will be hidden. It appears that it's using the first rule that matches, and not the most-specific rule that matches.</p> | <p dir="auto">Let's say I add the following rules to my <code class="notranslate">.gitignore</code> to ignore everything in the root except the <code class="notranslate">wp-content</code> directory:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/*
!.gitignore
!wp-content/"><pre class="notranslate"><code class="notranslate">/*
!.gitignore
!wp-content/
</code></pre></div>
<p dir="auto">So far this works correctly (only <code class="notranslate">.gitignore</code> and <code class="notranslate">wp-content/</code> are shown in the tree view). Now I add the following rules to ignore everything in the <code class="notranslate">wp-content</code> directory, except the <code class="notranslate">plugins</code> and <code class="notranslate">themes</code> directories</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="wp-content/*
!wp-content/plugins/
!wp-content/themes/"><pre class="notranslate"><code class="notranslate">wp-content/*
!wp-content/plugins/
!wp-content/themes/
</code></pre></div>
<p dir="auto">Before Atom 0.116.0, the plugins and themes directories were shown correctly in the tree view, but now the <code class="notranslate">wp-content</code> directory disappears completely. My machine's git (v2.0.0) parses the .gitignore correctly and sees changes in <code class="notranslate">plugins</code> and <code class="notranslate">themes</code>.</p>
<p dir="auto">I see that 0.116.0 moved to libgit2 0.21.0. If this is what's causing this behavior I'll open an issue with them.</p> | 1 |
<p dir="auto">There are three impls in int-template.rs and uint-template.rs that apply to all numeric types. Until recently, if you tried to do this:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import int::num;
import i8::num;"><pre class="notranslate"><code class="notranslate">import int::num;
import i8::num;
</code></pre></div>
<p dir="auto">you'd receive "error: duplicate definition of type num". <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/rust-lang/rust/commit/d14d4155dead7a18b2d5b8dcac1dd7311a26900a/hovercard" href="https://github.com/rust-lang/rust/commit/d14d4155dead7a18b2d5b8dcac1dd7311a26900a"><tt>d14d415</tt></a> fixed this for the particular case of the <code class="notranslate">num</code> impl, but trying to duplicate the process for the <code class="notranslate">eq</code> and <code class="notranslate">ord</code> impls gives weird errors in libstd/sort.rs that I'm hoping the resolve rewrite will, er, resolve. It won't be possible to automatically export the <code class="notranslate">eq</code> and <code class="notranslate">ord</code> impls on numeric types until this is fixed.</p> | <p dir="auto">I attempted to compile this code:</p>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="pub fn set_game_state<T: GameState>(&mut self, state: ~T) {
self.state = state;
}"><pre class="notranslate"><span class="pl-k">pub</span> <span class="pl-k">fn</span> <span class="pl-en">set_game_state</span><span class="pl-kos"><</span><span class="pl-smi">T</span><span class="pl-kos">:</span> <span class="pl-smi">GameState</span><span class="pl-kos">></span><span class="pl-kos">(</span><span class="pl-c1">&</span><span class="pl-k">mut</span> <span class="pl-smi">self</span><span class="pl-kos">,</span> <span class="pl-s1">state</span><span class="pl-kos">:</span> ~<span class="pl-smi">T</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">self</span><span class="pl-kos">.</span><span class="pl-c1">state</span> = state<span class="pl-kos">;</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">It gave me the error:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="src/game_window.rs:37:18: 37:23 error: mismatched types: expected `~game_state::GameState:Send` but found `~T` (expected trait game_state::GameState but found ~-ptr)
src/game_window.rs:37 self.state = state;"><pre class="notranslate"><code class="notranslate">src/game_window.rs:37:18: 37:23 error: mismatched types: expected `~game_state::GameState:Send` but found `~T` (expected trait game_state::GameState but found ~-ptr)
src/game_window.rs:37 self.state = state;
</code></pre></div>
<p dir="auto">The following code did compile:</p>
<div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="pub fn set_game_state(&mut self, state: ~GameState) {
self.state = state;
}"><pre class="notranslate"><span class="pl-k">pub</span> <span class="pl-k">fn</span> <span class="pl-en">set_game_state</span><span class="pl-kos">(</span><span class="pl-c1">&</span><span class="pl-k">mut</span> <span class="pl-smi">self</span><span class="pl-kos">,</span> <span class="pl-s1">state</span><span class="pl-kos">:</span> ~<span class="pl-smi">GameState</span><span class="pl-kos">)</span> <span class="pl-kos">{</span>
<span class="pl-smi">self</span><span class="pl-kos">.</span><span class="pl-c1">state</span> = state<span class="pl-kos">;</span>
<span class="pl-kos">}</span></pre></div>
<p dir="auto">I was made aware on the IRC Chat that both of these snippets of code should have worked.</p>
<p dir="auto">Rust Version: master (0.10-pre)<br>
OS: Mac OSX 10.9<br>
Architecture: x86_64</p> | 0 |
<h3 dir="auto">Version</h3>
<p dir="auto">2.6.10</p>
<h3 dir="auto">Reproduction link</h3>
<p dir="auto"><a href="https://codesandbox.io/s/vue-template-bs7uj" rel="nofollow">https://codesandbox.io/s/vue-template-bs7uj</a></p>
<h3 dir="auto">Steps to reproduce</h3>
<p dir="auto">Create a render function that uses dynamic imports (like <code class="notranslate">sliceZone.vue</code> in the sandbox)<br>
then use it anywhere in your app (tested in a Nuxt project and a Vue Codesandbox).<br>
You should notice an infinite loop that crashes your app.</p>
<h3 dir="auto">What is expected?</h3>
<p dir="auto">Dynamic import should work without the parent component to be re-rendered</p>
<h3 dir="auto">What is actually happening?</h3>
<p dir="auto">Component calling a dynamic import should not re-render indefinitely</p>
<hr>
<p dir="auto">The problem probably comes from my lack of understanding of Vuejs / dynamic imports.<br>
Any working example would be greatly appreciated!</p> | <h3 dir="auto">Version</h3>
<p dir="auto">2.6.10</p>
<h3 dir="auto">Reproduction link</h3>
<p dir="auto"><a href="https://jsfiddle.net/gupvmj5x/" rel="nofollow">https://jsfiddle.net/gupvmj5x/</a></p>
<h3 dir="auto">Steps to reproduce</h3>
<p dir="auto">Create <code class="notranslate"><div id="app">{{ info }}</div></code> in the HTML, Create a new Vue instance by attaching the div. Add info as a data entry with a value, say 'Hello'. Run the app. To see the problem in action, pause the debugger at line 5873 in the Vue source file which is <code class="notranslate">nodeOps.removeChild(parent, el);</code>. In the Elements tab, there will be two divs with the same id.</p>
<h3 dir="auto">What is expected?</h3>
<p dir="auto">The first div with the curly braces is replaced with the new div containing the info data.</p>
<h3 dir="auto">What is actually happening?</h3>
<p dir="auto">The new div with the data is appended to the parent of the first div with the curly braces. Later the first div is removed which happens at line 5873.</p>
<hr>
<p dir="auto">There should a new function in <code class="notranslate">nodeOps</code> called <code class="notranslate">replaceChild</code> and should be used to perform the action which is expected. <code class="notranslate">replaceChild</code> is not present in IE8 but since Vue does not target IE8 we don't care.</p> | 0 |
<h3 dir="auto">Apache Airflow version</h3>
<p dir="auto">Other Airflow 2 version</p>
<h3 dir="auto">What happened</h3>
<p dir="auto">We noticed that tasks using the dynamic task mapping api crashes the scheduler with the error</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="psycopg2.errors.UniqueViolation: duplicate key value violates unique constraint "task_instance_pkey"
80
DETAIL: Key (dag_id, task_id, run_id, map_index)=(ingestion-scheduler, check_for_success_flag, manual__2022-10-03T15:56:03.241451+00:00, 0) already exists."><pre class="notranslate"><code class="notranslate">psycopg2.errors.UniqueViolation: duplicate key value violates unique constraint "task_instance_pkey"
80
DETAIL: Key (dag_id, task_id, run_id, map_index)=(ingestion-scheduler, check_for_success_flag, manual__2022-10-03T15:56:03.241451+00:00, 0) already exists.
</code></pre></div>
<p dir="auto">We have 2 schedulers so my guess is that both try to schedule the dynamically mapped task</p>
<h3 dir="auto">What you think should happen instead</h3>
<p dir="auto">it should be not crash the scheduler</p>
<h3 dir="auto">How to reproduce</h3>
<p dir="auto">run a large dynamically mapped task in multi-scheduler environment</p>
<h3 dir="auto">Operating System</h3>
<p dir="auto">linux</p>
<h3 dir="auto">Versions of Apache Airflow Providers</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Deployment</h3>
<p dir="auto">Other Docker-based deployment</p>
<h3 dir="auto">Deployment details</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Anything else</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Are you willing to submit PR?</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Yes I am willing to submit a PR!</li>
</ul>
<h3 dir="auto">Code of Conduct</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow this project's <a href="https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a></li>
</ul> | <h3 dir="auto">Apache Airflow version</h3>
<p dir="auto">2.2.4 (latest released)</p>
<h3 dir="auto">What happened</h3>
<p dir="auto">Documentation for <a href="https://airflow.apache.org/docs/apache-airflow-providers-cncf-kubernetes/stable/_api/airflow/providers/cncf/kubernetes/operators/kubernetes_pod/index.html#airflow.providers.cncf.kubernetes.operators.kubernetes_pod.KubernetesPodOperator" rel="nofollow"><code class="notranslate">airflow.providers.cncf.kubernetes.operators.kubernetes_pod</code></a> suggests that <a href="https://airflow.apache.org/docs/apache-airflow-providers-cncf-kubernetes/stable/_api/airflow/providers/cncf/kubernetes/operators/kubernetes_pod/index.html#airflow.providers.cncf.kubernetes.operators.kubernetes_pod.KubernetesPodOperator.template_fields" rel="nofollow"><code class="notranslate">template_fields</code></a> are a list of string values. This is accordance with Airflow's custom operator guides, to create a class attribute with a list of string values. However, when consulting the <a href="https://airflow.apache.org/docs/apache-airflow-providers-cncf-kubernetes/stable/_modules/airflow/providers/cncf/kubernetes/operators/kubernetes_pod.html#KubernetesPodOperator.template_fields" rel="nofollow">source code</a>, the values for <code class="notranslate">template_fields</code> are stored in a tuple:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="template_fields: Sequence[str] = (
'image',
'cmds',
'arguments',
'env_vars',
'labels',
'config_file',
'pod_template_file',
'namespace',
)"><pre class="notranslate"><code class="notranslate">template_fields: Sequence[str] = (
'image',
'cmds',
'arguments',
'env_vars',
'labels',
'config_file',
'pod_template_file',
'namespace',
)
</code></pre></div>
<p dir="auto">This is problematic from a documentation standpoint, since it is unclear how to extend behaviors with ambiguous typing. For example, I will encounter a runtime error when extending template fields as such:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from airflow.providers.cncf.kubernetes.operators.kubernetes_pod import KubernetesPodOperator
class CustomKubernetesPodOperator(KubernetesPodOperator):
# The following will fail
template_fields = KubernetesPodOperator.template_fields + ["name"]
def __init__(self):
super.__init__()"><pre class="notranslate"><code class="notranslate">from airflow.providers.cncf.kubernetes.operators.kubernetes_pod import KubernetesPodOperator
class CustomKubernetesPodOperator(KubernetesPodOperator):
# The following will fail
template_fields = KubernetesPodOperator.template_fields + ["name"]
def __init__(self):
super.__init__()
</code></pre></div>
<p dir="auto">My solution is to wrap the template_fields in a <code class="notranslate">list</code> constructor as such:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="template_fields = list(KubernetesPodOperator.template_fields) + ["name"]"><pre class="notranslate"><code class="notranslate">template_fields = list(KubernetesPodOperator.template_fields) + ["name"]
</code></pre></div>
<p dir="auto">But this is not an elegant solution. Plus, documentation was not helpful. A solution would be to either clarify the documentation (that this is stored as a tuple default), or convert to storing as a list. (As typical with other Airflow operators.)</p>
<h3 dir="auto">What you expected to happen</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">How to reproduce</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Operating System</h3>
<p dir="auto">NA</p>
<h3 dir="auto">Versions of Apache Airflow Providers</h3>
<p dir="auto"><em>No response</em></p>
<h3 dir="auto">Deployment</h3>
<p dir="auto">Other</p>
<h3 dir="auto">Deployment details</h3>
<p dir="auto">NA</p>
<h3 dir="auto">Anything else</h3>
<p dir="auto">NA</p>
<h3 dir="auto">Are you willing to submit PR?</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Yes I am willing to submit a PR!</li>
</ul>
<h3 dir="auto">Code of Conduct</h3>
<ul class="contains-task-list">
<li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow this project's <a href="https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a></li>
</ul> | 0 |
<p dir="auto">I am trying to solve a linear system as effeciently as possible, and one of the methods I have been trying is by reordering the matrix beforehand with reverse_cuthill_mckee.<br>
This works well for small matrices, but when I move to a large size this breaks. (60000x60000)</p>
<p dir="auto">The code to reproduce this is really simple:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="perm = scipy.sparse.csgraph.reverse_cuthill_mckee(H, symmetric_mode=True)
I,J = np.ix_(perm,perm)
H_reordered = H[I,J]"><pre class="notranslate"><code class="notranslate">perm = scipy.sparse.csgraph.reverse_cuthill_mckee(H, symmetric_mode=True)
I,J = np.ix_(perm,perm)
H_reordered = H[I,J]
</code></pre></div>
<p dir="auto">Where H is a symmetric 60000x60000 sparse csc matrix with some nonzero elements. In my case it has about 7 million nonzero elements</p>
<p dir="auto">When I run the above I get:</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last):
File "C:\Program Files\JetBrains\PyCharm Community Edition 2020.1\plugins\python-ce\helpers\pydev\pydevd.py", line 1438, in _exec
pydev_imports.execfile(file, globals, locals) # execute the script
File "C:\Program Files\JetBrains\PyCharm Community Edition 2020.1\plugins\python-ce\helpers\pydev\_pydev_imps\_pydev_execfile.py", line 18, in execfile
exec(compile(contents+"\n", file, 'exec'), glob, loc)
File "D:/Dropbox/ActiveLearning/Pytorch/Active-Learning/pcg.py", line 37, in <module>
H_ref = H[I,J]
File "D:\Dropbox\ActiveLearning\Pytorch\Active-Learning\venv\lib\site-packages\scipy\sparse\_index.py", line 75, in __getitem__
return self._get_arrayXarray(row, col)
File "D:\Dropbox\ActiveLearning\Pytorch\Active-Learning\venv\lib\site-packages\scipy\sparse\compressed.py", line 664, in _get_arrayXarray
csr_sample_values(M, N, self.indptr, self.indices, self.data,
ValueError: could not convert integer scalar"><pre class="notranslate"><code class="notranslate">Traceback (most recent call last):
File "C:\Program Files\JetBrains\PyCharm Community Edition 2020.1\plugins\python-ce\helpers\pydev\pydevd.py", line 1438, in _exec
pydev_imports.execfile(file, globals, locals) # execute the script
File "C:\Program Files\JetBrains\PyCharm Community Edition 2020.1\plugins\python-ce\helpers\pydev\_pydev_imps\_pydev_execfile.py", line 18, in execfile
exec(compile(contents+"\n", file, 'exec'), glob, loc)
File "D:/Dropbox/ActiveLearning/Pytorch/Active-Learning/pcg.py", line 37, in <module>
H_ref = H[I,J]
File "D:\Dropbox\ActiveLearning\Pytorch\Active-Learning\venv\lib\site-packages\scipy\sparse\_index.py", line 75, in __getitem__
return self._get_arrayXarray(row, col)
File "D:\Dropbox\ActiveLearning\Pytorch\Active-Learning\venv\lib\site-packages\scipy\sparse\compressed.py", line 664, in _get_arrayXarray
csr_sample_values(M, N, self.indptr, self.indices, self.data,
ValueError: could not convert integer scalar
</code></pre></div>
<p dir="auto">And the reason as far as I can see is that the reordering involves making a 60000x60000 ndarray, which has about 3.6*10^9 elements and hence is too big int32.</p>
<p dir="auto">Does anyone know of a workaround for this problem? or a fix?</p> | <p dir="auto">A typical way to perform outer indexing can be unnecessarily and surprisingly super slow. It is illustrated in the in/out below.</p>
<p dir="auto">I think the issue could be fixed by adding another fast path for input as in my <code class="notranslate">In [8]</code> to <code class="notranslate">scipy._index.IndexMixin</code>, in a similar manner to how it's done when using the method of <code class="notranslate">In [10]</code>.</p>
<h4 dir="auto">Reproducing code example:</h4>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="In [1]: import scipy.sparse as ss, numpy as np
In [2]: matrix = ss.random(2000, 50000, format="csr")
In [3]: idx0 = np.arange(1000)[:, None]
In [4]: idx1 = np.arange(1000, 2000)
In [5]: imod = np.arange(25)[None, :]
In [6]: idx1 = (idx1[:, None] + 1000 * imod).T.reshape(-1, 1)
In [8]: # The 'easy' way to index: also really slow
...: %timeit out0 = matrix[idx0, idx1.T]
743 ms οΏ½ 48 ms per loop (mean οΏ½ std. dev. of 7 runs, 1 loop each)
In [9]: # Equivalent submatrix, but not so easy to write: Much faster
...: %timeit out1 = matrix[idx0.ravel(), :][:, idx1.ravel()]
3.57 ms οΏ½ 89.6 οΏ½s per loop (mean οΏ½ std. dev. of 7 runs, 100 loops each)
In [10]: # There is an existing fast path when the second index is 1D
...: %timeit out2 = matrix[idx0, idx1.ravel()]
3.47 ms οΏ½ 113 οΏ½s per loop (mean οΏ½ std. dev. of 7 runs, 100 loops each)"><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">1</span>]: <span class="pl-s1">import</span> <span class="pl-s1">scipy</span>.<span class="pl-s1">sparse</span> <span class="pl-k">as</span> <span class="pl-s1">ss</span>, <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-v">In</span> [<span class="pl-c1">2</span>]: <span class="pl-s1">matrix</span> <span class="pl-c1">=</span> <span class="pl-s1">ss</span>.<span class="pl-en">random</span>(<span class="pl-c1">2000</span>, <span class="pl-c1">50000</span>, <span class="pl-s1">format</span><span class="pl-c1">=</span><span class="pl-s">"csr"</span>)
<span class="pl-v">In</span> [<span class="pl-c1">3</span>]: <span class="pl-s1">idx0</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">arange</span>(<span class="pl-c1">1000</span>)[:, <span class="pl-c1">None</span>]
<span class="pl-v">In</span> [<span class="pl-c1">4</span>]: <span class="pl-s1">idx1</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">arange</span>(<span class="pl-c1">1000</span>, <span class="pl-c1">2000</span>)
<span class="pl-v">In</span> [<span class="pl-c1">5</span>]: <span class="pl-s1">imod</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">arange</span>(<span class="pl-c1">25</span>)[<span class="pl-c1">None</span>, :]
<span class="pl-v">In</span> [<span class="pl-c1">6</span>]: <span class="pl-s1">idx1</span> <span class="pl-c1">=</span> (<span class="pl-s1">idx1</span>[:, <span class="pl-c1">None</span>] <span class="pl-c1">+</span> <span class="pl-c1">1000</span> <span class="pl-c1">*</span> <span class="pl-s1">imod</span>).<span class="pl-v">T</span>.<span class="pl-en">reshape</span>(<span class="pl-c1">-</span><span class="pl-c1">1</span>, <span class="pl-c1">1</span>)
<span class="pl-v">In</span> [<span class="pl-c1">8</span>]: <span class="pl-c"># The 'easy' way to index: also really slow </span>
...: <span class="pl-c1">%</span><span class="pl-s1">timeit</span> <span class="pl-s1">out0</span> <span class="pl-c1">=</span> <span class="pl-s1">matrix</span>[<span class="pl-s1">idx0</span>, <span class="pl-s1">idx1</span>.<span class="pl-v">T</span>]
<span class="pl-c1">743</span> <span class="pl-s1">ms</span> οΏ½ <span class="pl-c1">48</span> <span class="pl-s1">ms</span> <span class="pl-s1">per</span> <span class="pl-en">loop</span> (<span class="pl-s1">mean</span> οΏ½ <span class="pl-s1">std</span>. <span class="pl-s1">dev</span>. <span class="pl-s1">of</span> <span class="pl-c1">7</span> <span class="pl-s1">runs</span>, <span class="pl-c1">1</span> <span class="pl-s1">loop</span> <span class="pl-s1">each</span>)
<span class="pl-v">In</span> [<span class="pl-c1">9</span>]: <span class="pl-c"># Equivalent submatrix, but not so easy to write: Much faster </span>
...: <span class="pl-c1">%</span><span class="pl-s1">timeit</span> <span class="pl-s1">out1</span> <span class="pl-c1">=</span> <span class="pl-s1">matrix</span>[<span class="pl-s1">idx0</span>.<span class="pl-en">ravel</span>(), :][:, <span class="pl-s1">idx1</span>.<span class="pl-en">ravel</span>()]
<span class="pl-c1">3.57</span> <span class="pl-s1">ms</span> οΏ½ <span class="pl-c1">89.6</span> οΏ½<span class="pl-s1">s</span> <span class="pl-s1">per</span> <span class="pl-en">loop</span> (<span class="pl-s1">mean</span> οΏ½ <span class="pl-s1">std</span>. <span class="pl-s1">dev</span>. <span class="pl-s1">of</span> <span class="pl-c1">7</span> <span class="pl-s1">runs</span>, <span class="pl-c1">100</span> <span class="pl-s1">loops</span> <span class="pl-s1">each</span>)
<span class="pl-v">In</span> [<span class="pl-c1">10</span>]: <span class="pl-c"># There is an existing fast path when the second index is 1D </span>
...: <span class="pl-c1">%</span><span class="pl-s1">timeit</span> <span class="pl-s1">out2</span> <span class="pl-c1">=</span> <span class="pl-s1">matrix</span>[<span class="pl-s1">idx0</span>, <span class="pl-s1">idx1</span>.<span class="pl-en">ravel</span>()]
<span class="pl-c1">3.47</span> <span class="pl-s1">ms</span> οΏ½ <span class="pl-c1">113</span> οΏ½<span class="pl-s1">s</span> <span class="pl-s1">per</span> <span class="pl-en">loop</span> (<span class="pl-s1">mean</span> οΏ½ <span class="pl-s1">std</span>. <span class="pl-s1">dev</span>. <span class="pl-s1">of</span> <span class="pl-c1">7</span> <span class="pl-s1">runs</span>, <span class="pl-c1">100</span> <span class="pl-s1">loops</span> <span class="pl-s1">each</span>)</pre></div>
<h4 dir="auto">Scipy/Numpy/Python version information:</h4>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="In [40]: import sys, scipy, numpy; print(scipy.__version__, numpy.__version__, sys.version_info)
1.3.0 1.16.4 sys.version_info(major=3, minor=7, micro=3, releaselevel='final', serial=0)"><pre class="notranslate"><span class="pl-v">In</span> [<span class="pl-c1">40</span>]: <span class="pl-s1">import</span> <span class="pl-s1">sys</span>, <span class="pl-s1">scipy</span>, <span class="pl-s1">numpy</span>; <span class="pl-en">print</span>(<span class="pl-s1">scipy</span>.<span class="pl-s1">__version__</span>, <span class="pl-s1">numpy</span>.<span class="pl-s1">__version__</span>, <span class="pl-s1">sys</span>.<span class="pl-s1">version_info</span>)
<span class="pl-c1">1.3</span>.<span class="pl-c1">0</span> <span class="pl-c1">1.16</span>.<span class="pl-c1">4</span> <span class="pl-s1">sys</span>.<span class="pl-en">version_info</span>(<span class="pl-s1">major</span><span class="pl-c1">=</span><span class="pl-c1">3</span>, <span class="pl-s1">minor</span><span class="pl-c1">=</span><span class="pl-c1">7</span>, <span class="pl-s1">micro</span><span class="pl-c1">=</span><span class="pl-c1">3</span>, <span class="pl-s1">releaselevel</span><span class="pl-c1">=</span><span class="pl-s">'final'</span>, <span class="pl-s1">serial</span><span class="pl-c1">=</span><span class="pl-c1">0</span>)</pre></div> | 1 |
<h3 dir="auto">Bug report</h3>
<p dir="auto"><strong>Bug summary</strong><br>
From matplorlib 2.0 to 2.1 this problem appeared: Floating point image RGB values must be in the 0..1 range, instead of producing an image with noise on it.</p>
<p dir="auto"><strong>Code for reproduction</strong><br>
Can use any image to try to reproduce this problem:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import imageio
import numpy as np
from matplotlib.pyplot import imshow
%matplotlib inline
image_file="image.jpg"
content_image = imageio.imread(image_file)
#imshow(content_image)
noise_ratio = 0.6
image_height, image_width, color_channels = content_image.shape
noise_image = np.random.uniform(-20, 20, (1, image_height, image_width, color_channels)).astype('float32')
input_image = noise_image * noise_ratio + content_image * (1 - noise_ratio)
imshow(input_image[0])"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">imageio</span>
<span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-k">from</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">pyplot</span> <span class="pl-k">import</span> <span class="pl-s1">imshow</span>
<span class="pl-c1">%</span><span class="pl-s1">matplotlib</span> <span class="pl-s1">inline</span>
<span class="pl-s1">image_file</span><span class="pl-c1">=</span><span class="pl-s">"image.jpg"</span>
<span class="pl-s1">content_image</span> <span class="pl-c1">=</span> <span class="pl-s1">imageio</span>.<span class="pl-en">imread</span>(<span class="pl-s1">image_file</span>)
<span class="pl-c">#imshow(content_image)</span>
<span class="pl-s1">noise_ratio</span> <span class="pl-c1">=</span> <span class="pl-c1">0.6</span>
<span class="pl-s1">image_height</span>, <span class="pl-s1">image_width</span>, <span class="pl-s1">color_channels</span> <span class="pl-c1">=</span> <span class="pl-s1">content_image</span>.<span class="pl-s1">shape</span>
<span class="pl-s1">noise_image</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-s1">random</span>.<span class="pl-en">uniform</span>(<span class="pl-c1">-</span><span class="pl-c1">20</span>, <span class="pl-c1">20</span>, (<span class="pl-c1">1</span>, <span class="pl-s1">image_height</span>, <span class="pl-s1">image_width</span>, <span class="pl-s1">color_channels</span>)).<span class="pl-en">astype</span>(<span class="pl-s">'float32'</span>)
<span class="pl-s1">input_image</span> <span class="pl-c1">=</span> <span class="pl-s1">noise_image</span> <span class="pl-c1">*</span> <span class="pl-s1">noise_ratio</span> <span class="pl-c1">+</span> <span class="pl-s1">content_image</span> <span class="pl-c1">*</span> (<span class="pl-c1">1</span> <span class="pl-c1">-</span> <span class="pl-s1">noise_ratio</span>)
<span class="pl-en">imshow</span>(<span class="pl-s1">input_image</span>[<span class="pl-c1">0</span>])</pre></div>
<p dir="auto"><strong>Actual outcome</strong></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<matplotlib.image.AxesImage at 0x7fad8700b748>
Error in callback <function install_repl_displayhook.<locals>.post_execute at 0x7fad44bbb510> (for post_execute):
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
~/.local/lib/python3.5/site-packages/matplotlib/pyplot.py in post_execute()
147 def post_execute():
148 if matplotlib.is_interactive():
--> 149 draw_all()
150
151 # IPython >= 2
~/.local/lib/python3.5/site-packages/matplotlib/_pylab_helpers.py in draw_all(cls, force)
134 for f_mgr in cls.get_all_fig_managers():
135 if force or f_mgr.canvas.figure.stale:
--> 136 f_mgr.canvas.draw_idle()
137
138 atexit.register(Gcf.destroy_all)
~/.local/lib/python3.5/site-packages/matplotlib/backend_bases.py in draw_idle(self, *args, **kwargs)
2053 if not self._is_idle_drawing:
2054 with self._idle_draw_cntx():
-> 2055 self.draw(*args, **kwargs)
2056
2057 def draw_cursor(self, event):
~/.local/lib/python3.5/site-packages/matplotlib/backends/backend_agg.py in draw(self)
429 # if toolbar:
430 # toolbar.set_cursor(cursors.WAIT)
--> 431 self.figure.draw(self.renderer)
432 finally:
433 # if toolbar:
~/.local/lib/python3.5/site-packages/matplotlib/artist.py in draw_wrapper(artist, renderer, *args, **kwargs)
53 renderer.start_filter()
54
---> 55 return draw(artist, renderer, *args, **kwargs)
56 finally:
57 if artist.get_agg_filter() is not None:
~/.local/lib/python3.5/site-packages/matplotlib/figure.py in draw(self, renderer)
1473
1474 mimage._draw_list_compositing_images(
-> 1475 renderer, self, artists, self.suppressComposite)
1476
1477 renderer.close_group('figure')
~/.local/lib/python3.5/site-packages/matplotlib/image.py in _draw_list_compositing_images(renderer, parent, artists, suppress_composite)
136 if not_composite or not has_images:
137 for a in artists:
--> 138 a.draw(renderer)
139 else:
140 # Composite any adjacent images together
~/.local/lib/python3.5/site-packages/matplotlib/artist.py in draw_wrapper(artist, renderer, *args, **kwargs)
53 renderer.start_filter()
54
---> 55 return draw(artist, renderer, *args, **kwargs)
56 finally:
57 if artist.get_agg_filter() is not None:
~/.local/lib/python3.5/site-packages/matplotlib/axes/_base.py in draw(self, renderer, inframe)
2579 renderer.stop_rasterizing()
2580
-> 2581 mimage._draw_list_compositing_images(renderer, self, artists)
2582
2583 renderer.close_group('axes')
~/.local/lib/python3.5/site-packages/matplotlib/image.py in _draw_list_compositing_images(renderer, parent, artists, suppress_composite)
136 if not_composite or not has_images:
137 for a in artists:
--> 138 a.draw(renderer)
139 else:
140 # Composite any adjacent images together
~/.local/lib/python3.5/site-packages/matplotlib/artist.py in draw_wrapper(artist, renderer, *args, **kwargs)
53 renderer.start_filter()
54
---> 55 return draw(artist, renderer, *args, **kwargs)
56 finally:
57 if artist.get_agg_filter() is not None:
~/.local/lib/python3.5/site-packages/matplotlib/image.py in draw(self, renderer, *args, **kwargs)
566 else:
567 im, l, b, trans = self.make_image(
--> 568 renderer, renderer.get_image_magnification())
569 if im is not None:
570 renderer.draw_image(gc, l, b, im)
~/.local/lib/python3.5/site-packages/matplotlib/image.py in make_image(self, renderer, magnification, unsampled)
793 return self._make_image(
794 self._A, bbox, transformed_bbox, self.axes.bbox, magnification,
--> 795 unsampled=unsampled)
796
797 def _check_unsampled_image(self, renderer):
~/.local/lib/python3.5/site-packages/matplotlib/image.py in _make_image(self, A, in_bbox, out_bbox, clip_bbox, magnification, unsampled, round_to_pixel_border)
484 # (of int or float)
485 # or an RGBA array of re-sampled input
--> 486 output = self.to_rgba(output, bytes=True, norm=False)
487 # output is now a correctly sized RGBA array of uint8
488
~/.local/lib/python3.5/site-packages/matplotlib/cm.py in to_rgba(self, x, alpha, bytes, norm)
254 if xx.dtype.kind == 'f':
255 if norm and xx.max() > 1 or xx.min() < 0:
--> 256 raise ValueError("Floating point image RGB values "
257 "must be in the 0..1 range.")
258 if bytes:
ValueError: Floating point image RGB values must be in the 0..1 range.
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
/usr/local/lib/python3.5/dist-packages/IPython/core/formatters.py in __call__(self, obj)
339 pass
340 else:
--> 341 return printer(obj)
342 # Finally look for special method names
343 method = get_real_method(obj, self.print_method)
/usr/local/lib/python3.5/dist-packages/IPython/core/pylabtools.py in <lambda>(fig)
236
237 if 'png' in formats:
--> 238 png_formatter.for_type(Figure, lambda fig: print_figure(fig, 'png', **kwargs))
239 if 'retina' in formats or 'png2x' in formats:
240 png_formatter.for_type(Figure, lambda fig: retina_figure(fig, **kwargs))
/usr/local/lib/python3.5/dist-packages/IPython/core/pylabtools.py in print_figure(fig, fmt, bbox_inches, **kwargs)
120
121 bytes_io = BytesIO()
--> 122 fig.canvas.print_figure(bytes_io, **kw)
123 data = bytes_io.getvalue()
124 if fmt == 'svg':
~/.local/lib/python3.5/site-packages/matplotlib/backend_bases.py in print_figure(self, filename, dpi, facecolor, edgecolor, orientation, format, **kwargs)
2210 orientation=orientation,
2211 dryrun=True,
-> 2212 **kwargs)
2213 renderer = self.figure._cachedRenderer
2214 bbox_inches = self.figure.get_tightbbox(renderer)
~/.local/lib/python3.5/site-packages/matplotlib/backends/backend_agg.py in print_png(self, filename_or_obj, *args, **kwargs)
506
507 def print_png(self, filename_or_obj, *args, **kwargs):
--> 508 FigureCanvasAgg.draw(self)
509 renderer = self.get_renderer()
510 original_dpi = renderer.dpi
~/.local/lib/python3.5/site-packages/matplotlib/backends/backend_agg.py in draw(self)
429 # if toolbar:
430 # toolbar.set_cursor(cursors.WAIT)
--> 431 self.figure.draw(self.renderer)
432 finally:
433 # if toolbar:
~/.local/lib/python3.5/site-packages/matplotlib/artist.py in draw_wrapper(artist, renderer, *args, **kwargs)
53 renderer.start_filter()
54
---> 55 return draw(artist, renderer, *args, **kwargs)
56 finally:
57 if artist.get_agg_filter() is not None:
~/.local/lib/python3.5/site-packages/matplotlib/figure.py in draw(self, renderer)
1473
1474 mimage._draw_list_compositing_images(
-> 1475 renderer, self, artists, self.suppressComposite)
1476
1477 renderer.close_group('figure')
~/.local/lib/python3.5/site-packages/matplotlib/image.py in _draw_list_compositing_images(renderer, parent, artists, suppress_composite)
136 if not_composite or not has_images:
137 for a in artists:
--> 138 a.draw(renderer)
139 else:
140 # Composite any adjacent images together
~/.local/lib/python3.5/site-packages/matplotlib/artist.py in draw_wrapper(artist, renderer, *args, **kwargs)
53 renderer.start_filter()
54
---> 55 return draw(artist, renderer, *args, **kwargs)
56 finally:
57 if artist.get_agg_filter() is not None:
~/.local/lib/python3.5/site-packages/matplotlib/axes/_base.py in draw(self, renderer, inframe)
2579 renderer.stop_rasterizing()
2580
-> 2581 mimage._draw_list_compositing_images(renderer, self, artists)
2582
2583 renderer.close_group('axes')
~/.local/lib/python3.5/site-packages/matplotlib/image.py in _draw_list_compositing_images(renderer, parent, artists, suppress_composite)
136 if not_composite or not has_images:
137 for a in artists:
--> 138 a.draw(renderer)
139 else:
140 # Composite any adjacent images together
~/.local/lib/python3.5/site-packages/matplotlib/artist.py in draw_wrapper(artist, renderer, *args, **kwargs)
53 renderer.start_filter()
54
---> 55 return draw(artist, renderer, *args, **kwargs)
56 finally:
57 if artist.get_agg_filter() is not None:
~/.local/lib/python3.5/site-packages/matplotlib/image.py in draw(self, renderer, *args, **kwargs)
566 else:
567 im, l, b, trans = self.make_image(
--> 568 renderer, renderer.get_image_magnification())
569 if im is not None:
570 renderer.draw_image(gc, l, b, im)
~/.local/lib/python3.5/site-packages/matplotlib/image.py in make_image(self, renderer, magnification, unsampled)
793 return self._make_image(
794 self._A, bbox, transformed_bbox, self.axes.bbox, magnification,
--> 795 unsampled=unsampled)
796
797 def _check_unsampled_image(self, renderer):
~/.local/lib/python3.5/site-packages/matplotlib/image.py in _make_image(self, A, in_bbox, out_bbox, clip_bbox, magnification, unsampled, round_to_pixel_border)
484 # (of int or float)
485 # or an RGBA array of re-sampled input
--> 486 output = self.to_rgba(output, bytes=True, norm=False)
487 # output is now a correctly sized RGBA array of uint8
488
~/.local/lib/python3.5/site-packages/matplotlib/cm.py in to_rgba(self, x, alpha, bytes, norm)
254 if xx.dtype.kind == 'f':
255 if norm and xx.max() > 1 or xx.min() < 0:
--> 256 raise ValueError("Floating point image RGB values "
257 "must be in the 0..1 range.")
258 if bytes:
ValueError: Floating point image RGB values must be in the 0..1 range.
<Figure size 432x288 with 1 Axes>"><pre class="notranslate"><code class="notranslate"><matplotlib.image.AxesImage at 0x7fad8700b748>
Error in callback <function install_repl_displayhook.<locals>.post_execute at 0x7fad44bbb510> (for post_execute):
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
~/.local/lib/python3.5/site-packages/matplotlib/pyplot.py in post_execute()
147 def post_execute():
148 if matplotlib.is_interactive():
--> 149 draw_all()
150
151 # IPython >= 2
~/.local/lib/python3.5/site-packages/matplotlib/_pylab_helpers.py in draw_all(cls, force)
134 for f_mgr in cls.get_all_fig_managers():
135 if force or f_mgr.canvas.figure.stale:
--> 136 f_mgr.canvas.draw_idle()
137
138 atexit.register(Gcf.destroy_all)
~/.local/lib/python3.5/site-packages/matplotlib/backend_bases.py in draw_idle(self, *args, **kwargs)
2053 if not self._is_idle_drawing:
2054 with self._idle_draw_cntx():
-> 2055 self.draw(*args, **kwargs)
2056
2057 def draw_cursor(self, event):
~/.local/lib/python3.5/site-packages/matplotlib/backends/backend_agg.py in draw(self)
429 # if toolbar:
430 # toolbar.set_cursor(cursors.WAIT)
--> 431 self.figure.draw(self.renderer)
432 finally:
433 # if toolbar:
~/.local/lib/python3.5/site-packages/matplotlib/artist.py in draw_wrapper(artist, renderer, *args, **kwargs)
53 renderer.start_filter()
54
---> 55 return draw(artist, renderer, *args, **kwargs)
56 finally:
57 if artist.get_agg_filter() is not None:
~/.local/lib/python3.5/site-packages/matplotlib/figure.py in draw(self, renderer)
1473
1474 mimage._draw_list_compositing_images(
-> 1475 renderer, self, artists, self.suppressComposite)
1476
1477 renderer.close_group('figure')
~/.local/lib/python3.5/site-packages/matplotlib/image.py in _draw_list_compositing_images(renderer, parent, artists, suppress_composite)
136 if not_composite or not has_images:
137 for a in artists:
--> 138 a.draw(renderer)
139 else:
140 # Composite any adjacent images together
~/.local/lib/python3.5/site-packages/matplotlib/artist.py in draw_wrapper(artist, renderer, *args, **kwargs)
53 renderer.start_filter()
54
---> 55 return draw(artist, renderer, *args, **kwargs)
56 finally:
57 if artist.get_agg_filter() is not None:
~/.local/lib/python3.5/site-packages/matplotlib/axes/_base.py in draw(self, renderer, inframe)
2579 renderer.stop_rasterizing()
2580
-> 2581 mimage._draw_list_compositing_images(renderer, self, artists)
2582
2583 renderer.close_group('axes')
~/.local/lib/python3.5/site-packages/matplotlib/image.py in _draw_list_compositing_images(renderer, parent, artists, suppress_composite)
136 if not_composite or not has_images:
137 for a in artists:
--> 138 a.draw(renderer)
139 else:
140 # Composite any adjacent images together
~/.local/lib/python3.5/site-packages/matplotlib/artist.py in draw_wrapper(artist, renderer, *args, **kwargs)
53 renderer.start_filter()
54
---> 55 return draw(artist, renderer, *args, **kwargs)
56 finally:
57 if artist.get_agg_filter() is not None:
~/.local/lib/python3.5/site-packages/matplotlib/image.py in draw(self, renderer, *args, **kwargs)
566 else:
567 im, l, b, trans = self.make_image(
--> 568 renderer, renderer.get_image_magnification())
569 if im is not None:
570 renderer.draw_image(gc, l, b, im)
~/.local/lib/python3.5/site-packages/matplotlib/image.py in make_image(self, renderer, magnification, unsampled)
793 return self._make_image(
794 self._A, bbox, transformed_bbox, self.axes.bbox, magnification,
--> 795 unsampled=unsampled)
796
797 def _check_unsampled_image(self, renderer):
~/.local/lib/python3.5/site-packages/matplotlib/image.py in _make_image(self, A, in_bbox, out_bbox, clip_bbox, magnification, unsampled, round_to_pixel_border)
484 # (of int or float)
485 # or an RGBA array of re-sampled input
--> 486 output = self.to_rgba(output, bytes=True, norm=False)
487 # output is now a correctly sized RGBA array of uint8
488
~/.local/lib/python3.5/site-packages/matplotlib/cm.py in to_rgba(self, x, alpha, bytes, norm)
254 if xx.dtype.kind == 'f':
255 if norm and xx.max() > 1 or xx.min() < 0:
--> 256 raise ValueError("Floating point image RGB values "
257 "must be in the 0..1 range.")
258 if bytes:
ValueError: Floating point image RGB values must be in the 0..1 range.
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
/usr/local/lib/python3.5/dist-packages/IPython/core/formatters.py in __call__(self, obj)
339 pass
340 else:
--> 341 return printer(obj)
342 # Finally look for special method names
343 method = get_real_method(obj, self.print_method)
/usr/local/lib/python3.5/dist-packages/IPython/core/pylabtools.py in <lambda>(fig)
236
237 if 'png' in formats:
--> 238 png_formatter.for_type(Figure, lambda fig: print_figure(fig, 'png', **kwargs))
239 if 'retina' in formats or 'png2x' in formats:
240 png_formatter.for_type(Figure, lambda fig: retina_figure(fig, **kwargs))
/usr/local/lib/python3.5/dist-packages/IPython/core/pylabtools.py in print_figure(fig, fmt, bbox_inches, **kwargs)
120
121 bytes_io = BytesIO()
--> 122 fig.canvas.print_figure(bytes_io, **kw)
123 data = bytes_io.getvalue()
124 if fmt == 'svg':
~/.local/lib/python3.5/site-packages/matplotlib/backend_bases.py in print_figure(self, filename, dpi, facecolor, edgecolor, orientation, format, **kwargs)
2210 orientation=orientation,
2211 dryrun=True,
-> 2212 **kwargs)
2213 renderer = self.figure._cachedRenderer
2214 bbox_inches = self.figure.get_tightbbox(renderer)
~/.local/lib/python3.5/site-packages/matplotlib/backends/backend_agg.py in print_png(self, filename_or_obj, *args, **kwargs)
506
507 def print_png(self, filename_or_obj, *args, **kwargs):
--> 508 FigureCanvasAgg.draw(self)
509 renderer = self.get_renderer()
510 original_dpi = renderer.dpi
~/.local/lib/python3.5/site-packages/matplotlib/backends/backend_agg.py in draw(self)
429 # if toolbar:
430 # toolbar.set_cursor(cursors.WAIT)
--> 431 self.figure.draw(self.renderer)
432 finally:
433 # if toolbar:
~/.local/lib/python3.5/site-packages/matplotlib/artist.py in draw_wrapper(artist, renderer, *args, **kwargs)
53 renderer.start_filter()
54
---> 55 return draw(artist, renderer, *args, **kwargs)
56 finally:
57 if artist.get_agg_filter() is not None:
~/.local/lib/python3.5/site-packages/matplotlib/figure.py in draw(self, renderer)
1473
1474 mimage._draw_list_compositing_images(
-> 1475 renderer, self, artists, self.suppressComposite)
1476
1477 renderer.close_group('figure')
~/.local/lib/python3.5/site-packages/matplotlib/image.py in _draw_list_compositing_images(renderer, parent, artists, suppress_composite)
136 if not_composite or not has_images:
137 for a in artists:
--> 138 a.draw(renderer)
139 else:
140 # Composite any adjacent images together
~/.local/lib/python3.5/site-packages/matplotlib/artist.py in draw_wrapper(artist, renderer, *args, **kwargs)
53 renderer.start_filter()
54
---> 55 return draw(artist, renderer, *args, **kwargs)
56 finally:
57 if artist.get_agg_filter() is not None:
~/.local/lib/python3.5/site-packages/matplotlib/axes/_base.py in draw(self, renderer, inframe)
2579 renderer.stop_rasterizing()
2580
-> 2581 mimage._draw_list_compositing_images(renderer, self, artists)
2582
2583 renderer.close_group('axes')
~/.local/lib/python3.5/site-packages/matplotlib/image.py in _draw_list_compositing_images(renderer, parent, artists, suppress_composite)
136 if not_composite or not has_images:
137 for a in artists:
--> 138 a.draw(renderer)
139 else:
140 # Composite any adjacent images together
~/.local/lib/python3.5/site-packages/matplotlib/artist.py in draw_wrapper(artist, renderer, *args, **kwargs)
53 renderer.start_filter()
54
---> 55 return draw(artist, renderer, *args, **kwargs)
56 finally:
57 if artist.get_agg_filter() is not None:
~/.local/lib/python3.5/site-packages/matplotlib/image.py in draw(self, renderer, *args, **kwargs)
566 else:
567 im, l, b, trans = self.make_image(
--> 568 renderer, renderer.get_image_magnification())
569 if im is not None:
570 renderer.draw_image(gc, l, b, im)
~/.local/lib/python3.5/site-packages/matplotlib/image.py in make_image(self, renderer, magnification, unsampled)
793 return self._make_image(
794 self._A, bbox, transformed_bbox, self.axes.bbox, magnification,
--> 795 unsampled=unsampled)
796
797 def _check_unsampled_image(self, renderer):
~/.local/lib/python3.5/site-packages/matplotlib/image.py in _make_image(self, A, in_bbox, out_bbox, clip_bbox, magnification, unsampled, round_to_pixel_border)
484 # (of int or float)
485 # or an RGBA array of re-sampled input
--> 486 output = self.to_rgba(output, bytes=True, norm=False)
487 # output is now a correctly sized RGBA array of uint8
488
~/.local/lib/python3.5/site-packages/matplotlib/cm.py in to_rgba(self, x, alpha, bytes, norm)
254 if xx.dtype.kind == 'f':
255 if norm and xx.max() > 1 or xx.min() < 0:
--> 256 raise ValueError("Floating point image RGB values "
257 "must be in the 0..1 range.")
258 if bytes:
ValueError: Floating point image RGB values must be in the 0..1 range.
<Figure size 432x288 with 1 Axes>
</code></pre></div>
<p dir="auto"><strong>Expected outcome</strong></p>
<p dir="auto">In matplotlib==2.0.2 and previous this code generates a image with some noise applied to it.</p>
<p dir="auto">In matplotlib=2.1.x the error above appear.</p>
<p dir="auto"><strong>Matplotlib version</strong></p>
<ul dir="auto">
<li>Operating system: ubuntu 16.04</li>
<li>Matplotlib version: 2.1.X</li>
<li>Matplotlib backend (print(matplotlib.get_backend())): module://ipykernel.pylab.backend_inline</li>
<li>Python version: 3.5.2</li>
<li>Jupyter version (if applicable): Jupyterlab==0.30.6</li>
<li>Other libraries:
<blockquote>
<p dir="auto">numpy==1.14.0<br>
imageio==2.2.0</p>
</blockquote>
</li>
</ul>
<p dir="auto">The libraries are installed in pure python via pip install. I also build from the source to test if a recent unreleased version had this problem solved this but also got the same output.</p> | <p dir="auto">I am using IPython Notebook to view matplotlib graphs. I have noticed many times that the markers are drawn slightly off-center. Here is an example:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/738893/43926583-a25148f4-9bdf-11e8-96ce-0b57e0deb61f.png"><img src="https://user-images.githubusercontent.com/738893/43926583-a25148f4-9bdf-11e8-96ce-0b57e0deb61f.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">Closeup:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/738893/43926636-cd55433e-9bdf-11e8-857d-fbb0b8300839.png"><img src="https://user-images.githubusercontent.com/738893/43926636-cd55433e-9bdf-11e8-857d-fbb0b8300839.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto">Code to reproduce:</p>
<div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="%matplotlib inline
import numpy as np
import matplotlib.pyplot as plt
t = np.linspace(-1,1,40)
plt.plot(t,t**3 - 0.75*t,'.-',linewidth=0.3)
plt.grid(True)"><pre class="notranslate"><span class="pl-c1">%</span><span class="pl-s1">matplotlib</span> <span class="pl-s1">inline</span>
<span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">pyplot</span> <span class="pl-k">as</span> <span class="pl-s1">plt</span>
<span class="pl-s1">t</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">linspace</span>(<span class="pl-c1">-</span><span class="pl-c1">1</span>,<span class="pl-c1">1</span>,<span class="pl-c1">40</span>)
<span class="pl-s1">plt</span>.<span class="pl-en">plot</span>(<span class="pl-s1">t</span>,<span class="pl-s1">t</span><span class="pl-c1">**</span><span class="pl-c1">3</span> <span class="pl-c1">-</span> <span class="pl-c1">0.75</span><span class="pl-c1">*</span><span class="pl-s1">t</span>,<span class="pl-s">'.-'</span>,<span class="pl-s1">linewidth</span><span class="pl-c1">=</span><span class="pl-c1">0.3</span>)
<span class="pl-s1">plt</span>.<span class="pl-en">grid</span>(<span class="pl-c1">True</span>)</pre></div>
<p dir="auto"><strong>Matplotlib version</strong></p>
<ul dir="auto">
<li>Operating system: Windows 10</li>
<li>Matplotlib version: 2.2.2'</li>
<li>Matplotlib backend (<code class="notranslate">print(matplotlib.get_backend())</code>): module://ipykernel.pylab.backend_inline</li>
<li>Python version: 2.7.15 from Anaconda Python</li>
<li>Jupyter version (if applicable): 5.5.0</li>
<li>Other libraries: n/a</li>
</ul> | 0 |
<p dir="auto"><em>Original ticket <a href="http://projects.scipy.org/scipy/ticket/810" rel="nofollow">http://projects.scipy.org/scipy/ticket/810</a> on 2008-12-02 by trac user damian.eads, assigned to trac user damian.eads.</em></p>
<p dir="auto">The new scipy.spatial package combines my distance computation with Anne Archibald's kd-tree module. Some minor reworking is needed to make the kd-tree code use the distance module's distance functions. This reduces the duplication of functionality in SciPy and improves maintainability.</p> | <h3 dir="auto">Describe your issue.</h3>
<p dir="auto"><code class="notranslate">scipy.interpolate.RegularGridInterpolator.__call__()</code> raises an exception when one or more arrays of grid coordinates used to construct the interpolator are non-C-contiguous.</p>
<p dir="auto">This appears to be new behavior in v1.10.0. In previous versions, there was no such restriction that these arrays must be C-contiguous -- the interpolator would produce valid results instead of raising an exception.</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.interpolate import RegularGridInterpolator
import numpy as np
def f(x, y, z):
return 2 * x**3 + 3 * y**2 - z
x = np.linspace(1, 4, 11)
y = np.linspace(4, 7, 22)
z = np.linspace(7, 9, 33)
xg, yg ,zg = np.meshgrid(x, y[::2], z[::3], indexing='ij', sparse=True)
data = f(xg, yg, zg)
# Take a strided slice of `y` and `z` so that these input arrays are not
# C-contiguous.
interp = RegularGridInterpolator((x, y[::2], z[::3]), data)
pts = np.array([[2.1, 6.2, 8.3],
[3.3, 5.2, 7.1]])
interp(pts)"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">scipy</span>.<span class="pl-s1">interpolate</span> <span class="pl-k">import</span> <span class="pl-v">RegularGridInterpolator</span>
<span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span>
<span class="pl-k">def</span> <span class="pl-en">f</span>(<span class="pl-s1">x</span>, <span class="pl-s1">y</span>, <span class="pl-s1">z</span>):
<span class="pl-k">return</span> <span class="pl-c1">2</span> <span class="pl-c1">*</span> <span class="pl-s1">x</span><span class="pl-c1">**</span><span class="pl-c1">3</span> <span class="pl-c1">+</span> <span class="pl-c1">3</span> <span class="pl-c1">*</span> <span class="pl-s1">y</span><span class="pl-c1">**</span><span class="pl-c1">2</span> <span class="pl-c1">-</span> <span class="pl-s1">z</span>
<span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">linspace</span>(<span class="pl-c1">1</span>, <span class="pl-c1">4</span>, <span class="pl-c1">11</span>)
<span class="pl-s1">y</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">linspace</span>(<span class="pl-c1">4</span>, <span class="pl-c1">7</span>, <span class="pl-c1">22</span>)
<span class="pl-s1">z</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">linspace</span>(<span class="pl-c1">7</span>, <span class="pl-c1">9</span>, <span class="pl-c1">33</span>)
<span class="pl-s1">xg</span>, <span class="pl-s1">yg</span> ,<span class="pl-s1">zg</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">meshgrid</span>(<span class="pl-s1">x</span>, <span class="pl-s1">y</span>[::<span class="pl-c1">2</span>], <span class="pl-s1">z</span>[::<span class="pl-c1">3</span>], <span class="pl-s1">indexing</span><span class="pl-c1">=</span><span class="pl-s">'ij'</span>, <span class="pl-s1">sparse</span><span class="pl-c1">=</span><span class="pl-c1">True</span>)
<span class="pl-s1">data</span> <span class="pl-c1">=</span> <span class="pl-en">f</span>(<span class="pl-s1">xg</span>, <span class="pl-s1">yg</span>, <span class="pl-s1">zg</span>)
<span class="pl-c"># Take a strided slice of `y` and `z` so that these input arrays are not</span>
<span class="pl-c"># C-contiguous.</span>
<span class="pl-s1">interp</span> <span class="pl-c1">=</span> <span class="pl-v">RegularGridInterpolator</span>((<span class="pl-s1">x</span>, <span class="pl-s1">y</span>[::<span class="pl-c1">2</span>], <span class="pl-s1">z</span>[::<span class="pl-c1">3</span>]), <span class="pl-s1">data</span>)
<span class="pl-s1">pts</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">array</span>([[<span class="pl-c1">2.1</span>, <span class="pl-c1">6.2</span>, <span class="pl-c1">8.3</span>],
[<span class="pl-c1">3.3</span>, <span class="pl-c1">5.2</span>, <span class="pl-c1">7.1</span>]])
<span class="pl-en">interp</span>(<span class="pl-s1">pts</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="Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/scratch/gunter/miniconda3/envs/tmp/lib/python3.9/site-packages/scipy/interpolate/_rgi.py", line 331, in __call__
indices, norm_distances = self._find_indices(xi.T)
File "/scratch/gunter/miniconda3/envs/tmp/lib/python3.9/site-packages/scipy/interpolate/_rgi.py", line 499, in _find_indices
return find_indices(self.grid, xi)
File "_rgi_cython.pyx", line 95, in scipy.interpolate._rgi_cython.find_indices
File "stringsource", line 660, in View.MemoryView.memoryview_cwrapper
File "stringsource", line 350, in View.MemoryView.memoryview.__cinit__
ValueError: ndarray is not C-contiguous"><pre class="notranslate">Traceback (most recent call last):
File <span class="pl-s"><span class="pl-pds">"</span><stdin><span class="pl-pds">"</span></span>, line 1, <span class="pl-k">in</span> <span class="pl-k"><</span>module<span class="pl-k">></span>
File <span class="pl-s"><span class="pl-pds">"</span>/scratch/gunter/miniconda3/envs/tmp/lib/python3.9/site-packages/scipy/interpolate/_rgi.py<span class="pl-pds">"</span></span>, line 331, <span class="pl-k">in</span> __call__
indices, norm_distances = self._find_indices(xi.T)
File <span class="pl-s"><span class="pl-pds">"</span>/scratch/gunter/miniconda3/envs/tmp/lib/python3.9/site-packages/scipy/interpolate/_rgi.py<span class="pl-pds">"</span></span>, line 499, <span class="pl-k">in</span> _find_indices
<span class="pl-k">return</span> find_indices(self.grid, xi)
File <span class="pl-s"><span class="pl-pds">"</span>_rgi_cython.pyx<span class="pl-pds">"</span></span>, line 95, <span class="pl-k">in</span> scipy.interpolate._rgi_cython.find_indices
File <span class="pl-s"><span class="pl-pds">"</span>stringsource<span class="pl-pds">"</span></span>, line 660, <span class="pl-k">in</span> View.MemoryView.memoryview_cwrapper
File <span class="pl-s"><span class="pl-pds">"</span>stringsource<span class="pl-pds">"</span></span>, line 350, <span class="pl-k">in</span> View.MemoryView.memoryview.__cinit__
ValueError: ndarray is not C-contiguous</pre></div>
<h3 dir="auto">SciPy/NumPy/Python version information</h3>
<p dir="auto">1.10.0 1.24.1 sys.version_info(major=3, minor=9, micro=15, releaselevel='final', serial=0)</p> | 0 |
<p dir="auto">Sometimes I got this message:</p>
<blockquote>
<p dir="auto">The following assertion was thrown during a scheduler callback:<br>
Child with id 73 is invisible and should not be added to the tree.<br>
'package:flutter/src/semantics/semantics.dart': Failed assertion: line 671 pos 16:<br>
'!child.isInvisible'</p>
</blockquote>
<p dir="auto">How can I debug this error? Is there any way to dump all widgets from the tree?</p>
<p dir="auto">[β] Flutter (on Mac OS X 10.13.2 17C88, locale en-HK, channel master)<br>
β’ Flutter at /Users/odd/wa/flutter/flutter<br>
β’ Framework revision <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/flutter/flutter/commit/235b64ed2fb6150ecf08bde5f08dcd450c5a96b4/hovercard" href="https://github.com/flutter/flutter/commit/235b64ed2fb6150ecf08bde5f08dcd450c5a96b4"><tt>235b64e</tt></a> (2 weeks ago), 2017-12-14 20:38:39 -0800<br>
β’ Engine revision <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/flutter/flutter/commit/e0d19e2897b6c4c8c48f05d23a2b90bd32ab5d49/hovercard" href="https://github.com/flutter/flutter/commit/e0d19e2897b6c4c8c48f05d23a2b90bd32ab5d49"><tt>e0d19e2</tt></a><br>
β’ Tools Dart version 1.25.0-dev.11.0<br>
β’ Engine Dart version 2.0.0-edge.cf1de7d46cd88e204380e8f96a993439be56b24c</p>
<p dir="auto">[β] Android toolchain - develop for Android devices (Android SDK 26.0.3)<br>
β’ Android SDK at /Users/odd/Library/Android/sdk<br>
β’ Android NDK location not configured (optional; useful for native profiling support)<br>
β’ Platform android-26, build-tools 26.0.3<br>
β’ Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java<br>
β’ Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b08)</p>
<p dir="auto">[β] iOS toolchain - develop for iOS devices (Xcode 9.2)<br>
β’ Xcode at /Applications/Xcode.app/Contents/Developer<br>
β’ Xcode 9.2, Build version 9C40b<br>
β’ ios-deploy 1.9.2<br>
β’ CocoaPods version 1.3.1</p>
<p dir="auto">[β] Android Studio (version 3.0)<br>
β’ Android Studio at /Applications/Android Studio.app/Contents<br>
β’ Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b08)</p>
<p dir="auto">[β] IntelliJ IDEA Community Edition (version 2017.3)<br>
β’ Flutter plugin version 20.0.3<br>
β’ Dart plugin version 173.3727.108</p>
<p dir="auto">[β] Connected devices<br>
β’ iPhone X β’ A786CB0E-0BD0-4698-919A-7440CFEDDD17 β’ ios β’ iOS 11.2 (simulator)</p> | <h2 dir="auto">Exception</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="βββ‘ EXCEPTION CAUGHT BY SCHEDULER LIBRARY ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
The following assertion was thrown during a scheduler callback:
Child with id 36 is invisible and should not be added to tree.
'package:flutter/src/semantics/semantics.dart': Failed assertion: line 370 pos 16:
'!child.isInvisible'
Either the assertion indicates an error in the framework itself, or we should provide substantially
more information in this error message to help you determine and fix the underlying cause.
In either case, please report this assertion by filing a bug on GitHub:
https://github.com/flutter/flutter/issues/new
When the exception was thrown, this was the stack:
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ"><pre class="notranslate"><code class="notranslate">βββ‘ EXCEPTION CAUGHT BY SCHEDULER LIBRARY ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
The following assertion was thrown during a scheduler callback:
Child with id 36 is invisible and should not be added to tree.
'package:flutter/src/semantics/semantics.dart': Failed assertion: line 370 pos 16:
'!child.isInvisible'
Either the assertion indicates an error in the framework itself, or we should provide substantially
more information in this error message to help you determine and fix the underlying cause.
In either case, please report this assertion by filing a bug on GitHub:
https://github.com/flutter/flutter/issues/new
When the exception was thrown, this was the stack:
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
</code></pre></div>
<h2 dir="auto">flutter analyze</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Analyzing /Users/hao/Documents/flutter_proj/shop...
No issues found!
Ran in 5.8s"><pre class="notranslate"><code class="notranslate">Analyzing /Users/hao/Documents/flutter_proj/shop...
No issues found!
Ran in 5.8s
</code></pre></div>
<h2 dir="auto">Flutter Doctor</h2>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[β] Flutter (on Mac OS X 10.13.1 17B1003, locale zh-Hans-CN, channel alpha)
β’ Flutter at /Users/hao/Documents/flutter
β’ Framework revision d957c8f040 (3 days ago), 2017-11-30 13:29:59 -0800
β’ Engine revision 77d8acb9be
β’ Tools Dart version 1.25.0-dev.11.0
β’ Engine Dart version 2.0.0-dev.9.0
[β] Android toolchain - develop for Android devices (Android SDK 25.0.3)
β’ Android SDK at /Users/hao/Library/Android/sdk
β’ Unable to locate Android NDK.
β’ Unable to locate compiler in Android NDK.
β’ Platform android-25, build-tools 25.0.3
β’ Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
β’ Java version OpenJDK Runtime Environment (build 1.8.0_112-release-b06)
[β] iOS toolchain - develop for iOS devices (Xcode 9.1)
β’ Xcode at /Applications/Xcode.app/Contents/Developer
β’ Xcode 9.1, Build version 9B55
β’ ios-deploy 1.9.2
β’ CocoaPods version 1.3.1
[β] Android Studio (version 2.3)
β’ Android Studio at /Applications/Android Studio.app/Contents
β’ Java version OpenJDK Runtime Environment (build 1.8.0_112-release-b06)
[β] Connected devices
β’ iPhone 6s β’ AB7E1A1A-2F6B-469E-BA9F-BFAFA8C9A288 β’ ios β’ iOS 11.1 (simulator)
"><pre class="notranslate"><code class="notranslate">[β] Flutter (on Mac OS X 10.13.1 17B1003, locale zh-Hans-CN, channel alpha)
β’ Flutter at /Users/hao/Documents/flutter
β’ Framework revision d957c8f040 (3 days ago), 2017-11-30 13:29:59 -0800
β’ Engine revision 77d8acb9be
β’ Tools Dart version 1.25.0-dev.11.0
β’ Engine Dart version 2.0.0-dev.9.0
[β] Android toolchain - develop for Android devices (Android SDK 25.0.3)
β’ Android SDK at /Users/hao/Library/Android/sdk
β’ Unable to locate Android NDK.
β’ Unable to locate compiler in Android NDK.
β’ Platform android-25, build-tools 25.0.3
β’ Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
β’ Java version OpenJDK Runtime Environment (build 1.8.0_112-release-b06)
[β] iOS toolchain - develop for iOS devices (Xcode 9.1)
β’ Xcode at /Applications/Xcode.app/Contents/Developer
β’ Xcode 9.1, Build version 9B55
β’ ios-deploy 1.9.2
β’ CocoaPods version 1.3.1
[β] Android Studio (version 2.3)
β’ Android Studio at /Applications/Android Studio.app/Contents
β’ Java version OpenJDK Runtime Environment (build 1.8.0_112-release-b06)
[β] Connected devices
β’ iPhone 6s β’ AB7E1A1A-2F6B-469E-BA9F-BFAFA8C9A288 β’ ios β’ iOS 11.1 (simulator)
</code></pre></div>
<h3 dir="auto">What does this exception mean?</h3> | 1 |
<p dir="auto">I'm using <code class="notranslate">unittest</code> to create tests for my spiders. Internally, I use <code class="notranslate">CrawlerRunner</code> to invoke callbacks.</p>
<p dir="auto">But every time I launch tests, I get several deprecation warnings.</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/usr/local/lib/python3.6/site-packages/scrapy/utils/conf.py:97: DeprecationWarning: The SafeConfigParser class has been renamed to ConfigParser in Python 3.2. This alias will be removed in future versions. Use ConfigParser directly instead.
cfg = SafeConfigParser()"><pre class="notranslate"><code class="notranslate">/usr/local/lib/python3.6/site-packages/scrapy/utils/conf.py:97: DeprecationWarning: The SafeConfigParser class has been renamed to ConfigParser in Python 3.2. This alias will be removed in future versions. Use ConfigParser directly instead.
cfg = SafeConfigParser()
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/usr/local/lib/python3.6/site-packages/scrapy/core/downloader/webclient.py:4: DeprecationWarning: twisted.web.client.HTTPClientFactory was deprecated in Twisted 16.7.0: please use https://pypi.org/project/treq/ or twisted.web.client.Agent instead
from twisted.web.client import HTTPClientFactory"><pre class="notranslate"><code class="notranslate">/usr/local/lib/python3.6/site-packages/scrapy/core/downloader/webclient.py:4: DeprecationWarning: twisted.web.client.HTTPClientFactory was deprecated in Twisted 16.7.0: please use https://pypi.org/project/treq/ or twisted.web.client.Agent instead
from twisted.web.client import HTTPClientFactory
</code></pre></div>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/usr/local/lib/python3.6/site-packages/scrapy/core/downloader/contextfactory.py:51: DeprecationWarning: Passing method to twisted.internet.ssl.CertificateOptions was deprecated in Twisted 17.1.0. Please use a combination of insecurelyLowerMinimumTo, raiseMinimumTo, and lowerMaximumSecurityTo instead, as Twisted will correctly configure the method.
acceptableCiphers=DEFAULT_CIPHERS)"><pre class="notranslate"><code class="notranslate">/usr/local/lib/python3.6/site-packages/scrapy/core/downloader/contextfactory.py:51: DeprecationWarning: Passing method to twisted.internet.ssl.CertificateOptions was deprecated in Twisted 17.1.0. Please use a combination of insecurelyLowerMinimumTo, raiseMinimumTo, and lowerMaximumSecurityTo instead, as Twisted will correctly configure the method.
acceptableCiphers=DEFAULT_CIPHERS)
</code></pre></div>
<p dir="auto">However, I don't see any of these warning when using any of the <code class="notranslate">scrapy</code> commands.</p> | <p dir="auto">May you do a little modification to avoid these two warnings?</p>
<blockquote>
<p dir="auto">[py.warnings] WARNING: /.../scrapy/core/downloader/webclient.py:4: DeprecationWarning: twisted.web.client.HTTPClientFactory was deprecated in Twisted 16.7.0: please use <a href="https://pypi.org/project/treq/" rel="nofollow">https://pypi.org/project/treq/</a> or twisted.web.client.Agent instead<br>
from twisted.web.client import HTTPClientFactory</p>
</blockquote>
<blockquote>
<p dir="auto">[py.warnings] WARNING: /.../scrapy/core/downloader/contextfactory.py:51: DeprecationWarning: Passing method to twisted.internet.ssl.CertificateOptions was deprecated in Twisted 17.1.0. Please use a combination of insecurelyLowerMinimumTo, raiseMinimumTo, and lowerMaximumSecurityTo instead, as Twisted will correctly configure the method.<br>
acceptableCiphers=DEFAULT_CIPHERS)</p>
</blockquote> | 1 |
<p dir="auto">the responsive utilities class .vislble-* always use display: block that mess with something display: inline-block.</p>
<p dir="auto">for example<br>
i use glyphicon <span></span> to display eye open only on large desktop monitor.<br>
the visible-* change display: to block instead of inline-block.</p>
<p dir="auto">please use visibility: instead that it doesn't mess with display: style.</p> | <p dir="auto">Using a couple Facebook-like links in my navbar</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/6cabc9d4f1d85da3d4e6316ee1fc4edec9dfed5d6e86d680c75b4889652df390/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f3332303439342f313030343939302f31356631383634382d306161652d313165332d393634382d6637306633646361646436382e504e47"><img src="https://camo.githubusercontent.com/6cabc9d4f1d85da3d4e6316ee1fc4edec9dfed5d6e86d680c75b4889652df390/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f3332303439342f313030343939302f31356631383634382d306161652d313165332d393634382d6637306633646361646436382e504e47" alt="grab 2013-08-21 a 6 05 52 pm" data-canonical-src="https://f.cloud.github.com/assets/320494/1004990/15f18648-0aae-11e3-9648-f70f3dcadd68.PNG" style="max-width: 100%;"></a></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="<ul class="navbar-right nav navbar-nav">
<li>
<a href="#">
<span class="glyphicon glyphicon-shopping-cart">&nbsp;</span>
<span class="visible-xs visible-sm">Shopping Cart</span>
<span class="badge">3</span>
</a>
</li>
<li>
<a href="messages.html">
<span class="glyphicon glyphicon-envelope">&nbsp;</span>
<span class="visible-xs visible-sm">Messages</span>
<span class="badge">10</span>
</a>
</li>
</ul>"><pre class="notranslate"><code class="notranslate"><ul class="navbar-right nav navbar-nav">
<li>
<a href="#">
<span class="glyphicon glyphicon-shopping-cart">&nbsp;</span>
<span class="visible-xs visible-sm">Shopping Cart</span>
<span class="badge">3</span>
</a>
</li>
<li>
<a href="messages.html">
<span class="glyphicon glyphicon-envelope">&nbsp;</span>
<span class="visible-xs visible-sm">Messages</span>
<span class="badge">10</span>
</a>
</li>
</ul>
</code></pre></div>
<p dir="auto">In the responsive menu they appear as such:</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/2f58cd3768e37e719343b3adb8e72a54713d547dc4253883bc627637d4d6cb70/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f3332303439342f313030343939352f34346232323235382d306161652d313165332d393961342d3731303131373965633261612e504e47"><img src="https://camo.githubusercontent.com/2f58cd3768e37e719343b3adb8e72a54713d547dc4253883bc627637d4d6cb70/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f3332303439342f313030343939352f34346232323235382d306161652d313165332d393961342d3731303131373965633261612e504e47" alt="grab 2013-08-21 a 6 06 01 pm" data-canonical-src="https://f.cloud.github.com/assets/320494/1004995/44b22258-0aae-11e3-99a4-7101179ec2aa.PNG" style="max-width: 100%;"></a></p> | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.