Solutions:
Edit-> Preference-> SQL Editor
Appropriately increase the FOLLOWING DBMS Connection Read Time out(in seconds) :
Resources:
http://bbs.csdn.net/topics/391881939?page=1
https://dev.mysql.com/doc/refman/5.7/en/error-lost-connection.html
Resources:
http://bbs.csdn.net/topics/391881939?page=1
https://dev.mysql.com/doc/refman/5.7/en/error-lost-connection.html




new
ExtractTextPlugin({
// filename: assetsPath(‘ CSS /[name].[Contenthash]. CSS ‘),// the original configuration
filename:
utils
.
assetsPath
(
‘[name]/styles.[contenthash].css’
),
//
The changes
// Setting the following option to `false` will not extract CSS from codesplit chunks.
// Their CSS will instead be inserted dynamically with style-loader when the codesplit chunk has been loaded by webpack.
// It’s currently set to `true` because we are seeing that sourcemaps are included in the codesplit bundle as well when it’s `false`,
// increasing file size: https://github.com/vuejs-templates/webpack/issues/1110
allChunks:
true,
}),
And then it’s ok

The reason for this is not clear from the Github forum. If you are interested in what appears to be a plugin patch, check it out
Said earlier, I am in the model test and not appear this error when training, as for the model training report this error, please refer to my another blog: runtimeerror: about errors CUDA out of memory. The Tried to the allocate 1.17 GB
actually very simple solution, originally I procedures specify the gpu is 3, run the test code is called the title out of memory error, the diagram below: 

I specified the gpus as 2 and 3, and then ran the code without error.
Unable to mount iPhone unhandled lock error
Ayes, 13 Nays, Accept
Here’s what worked for me (from immobiledevice.org):
Close the error when your device is plugged in. Then run the
idevicepair unpair && idevicepair pair
Pro test: I do not know why sometimes the implementation of no use, plug in the computer, restart the computer to go…
Then unplug your device and plug it back in.
Pro can do it
langxw@le:~$ idevicepair unpair & & idevicepair pair
The program ‘idevicepair’ is currently not installed. You can install it by typing:
sudo apt-get install libimobiledevice-utils
langxw@le:~$ sudo apt-get install libimobiledevice-utils
The general reason is that it’s not initialized, it’s running as a random number;
Or it returns a wild pointer, which is common in test cases with empty sets and requires a pointer to be returned. Most of the time, it will be like this without attention:
TreeNode* buildTree(vector<int>& preorder, vector<int>& inorder) {
TreeNode *result;
if(preorder.size() == 0 && inorder.size() == 0)
return result;
else
return sub_bT(0, preorder.size()-1, 0, inorder.size()-1, preorder, inorder);
}
At this time, we often think that a null pointer is returned, but in fact, it is not initialized. What is returned is a wild pointer, which does not know where to point to. However, when we Run Code, no error will be reported and the result is [], so we think that a null pointer is returned.
TreeNode* buildTree(vector<int>& preorder, vector<int>& inorder) {
TreeNode *result(NULL);
if(preorder.size() == 0 && inorder.size() == 0)
return result;
else
return sub_bT(0, preorder.size()-1, 0, inorder.size()-1, preorder, inorder);
}
2, Windows – & gt; preferneces–> JAVA–> compiler–> The window on the right “Compiler Compliance level” is set to more than 1.5

Attached is the Boot Repair website with detailed instructionsError using mex
cc1plus: error: unrecognized command line option “-std=c++11”
1, download the source code
is here. To be on the safe side, 4.8.5 is selected. If you need another version, just change the version number
$wget HTTP:// ftp://ftp.gnu.org/gnu/gcc/gcc-4.8.5/gcc-4.8.5.tar.gz
2. Download dependency package & pre-installed
compiling and installing GCC depends on the MPC, MPFR, GMP package. Fortunately, GCC source script can easily download the dependency package.
$tar ZXF gcc-4.8.5.tar. Gz
$CD GCC – 4.8.5
$ ./contrib/download_prerequisites
You can see in this script that the version Numbers of the dependent packages are MPC-0.8.1, MPFR-2.4.2, gMP-4.3.2, in that order.
3, $yum -y install glibc-devel. I686 –setopt=protected_multilib=false
4. Compile and install
$ cd .. // The main reason for doing this is to create the build folder outside of the source code
$mkdir GCC – build – 4.8.5
$mkdir /usr/local/gcc-4.8.5 // include file.
$mkdir/usr/local/GCC// placed bin +.lib file
$CD GCC – build – 4.8.5
$ ../gC-4.8.5 /configure –prefix=/usr/local/ gC-4.8.5 –exec-prefix=/usr/local/ GCC –enable-languages= C, C ++ // To save time, only C and C ++ are compiled here
$ make & & make install
in order to avoid multiple versions of GCC in the system after installation, the directory to compile and install is directly specified under /usr/local/4.8.5 and /usr/local/gcc. If no -prefix is specified, it will be installed under /usr/local by default.
to wait
make after a long wait, done
5, environment variable configuration
rename GCC /g++ and keep the old version
$mv /usr/bin/ GCC /usr/bin/ GCC -4.4.7
$mv /usr/bin/g++ /usr/bin/g++-4.4.7
$export PATH=/usr/local/ GCC /bin:$PATH # use the latest GCC /g++;
confirm version number
$ g++ –version
$ gcc –version
$ which g++
$ which gcc
error
1. Build folder to the wrong location stubs-32. H cannot be found, CentOS is 64 bit
compilation terminated.
make[5]: *** [_muldi3.o] Error 1
make[5]: Leaving directory ‘/home/wei/gcc-4.8.5/gcc-build-4.8.5/x86_64-unknown linux-gnu/32/libgcc’
…………………
solution: install a 32-bit glibb-devel that ignores multiple versions of a piece of software.
$ yum -y install glibc-devel.i686 –setopt=protected_multilib=false
is a new build folder in the source tree and needs to be used in a separate folder. The solution is to create a new folder outside of the source code, the resolved code has been updated to the above.
First, we highly recommend that GCC be built into a separate directory from the sources whichdoes not reside within the source tree. This is how we generally build GCC; Building where srcdir == objdir should still work, but doesn’t get extensive testing; building where objdir is a subdirectory of srcdir is unsupported.