In Arthas Series 2, Ali lists all java processes on the machine in this way

catalogue Click like and watch again, form the habit of praise, search on wechat [coriander Chat Game] and pay attention to me.     1. How to check code based on Performance 2. How to implement your own java process list 3. Step by step implementation code 4. Summary: Click like and watch again, form the habit of praise, ...

Added by cdorob on Thu, 10 Feb 2022 08:19:57 +0200

Article 12 Add an override declaration for a function intended to override

Add an override declaration for a function intended to override class Base{ public: virtual void doWork(); //Virtual function in base class }; class Derived : public Base{ public: virtual void doWork(); //Rewritten Base::dowork }; std::unique_ptr<Base> upb = std::make_unique<Derived>(); //Create a base class pointer to ...

Added by chinni_77 on Thu, 10 Feb 2022 08:17:16 +0200

Design mode [13] - how to get the template mode?

The beginning is still the same kind of picture. Please look downZhang Wuji learned Taijiquan, forgot all the moves and knocked down the "two old men in the dark", the so-called "no moves in the heart". If you can learn all kinds of patterns at will, it can be said that you can forget all kinds of patterns at will.What is th ...

Added by almightyegg on Thu, 10 Feb 2022 08:06:11 +0200

Microservices have everything from code to k8s deployment series (IV. user center)

We will use a series to explain the complete practice of microservices from requirements to online, from code to k8s deployment, from logging to monitoring. The whole project uses the micro services developed by go zero, which basically includes go zero and some middleware developed by relevant go zero authors. The technology stack used is bas ...

Added by 1042 on Thu, 10 Feb 2022 07:56:47 +0200

[Flask] create ORM mapping and parameter interpretation

Create a class. A class corresponds to a table in a database, and the data attributes of the class correspond to the field names in the table. This class is called mapping class. 1, Proactively create mappings Classes mapped using the Declarative system are defined according to the base class. In other words, each mapped class needs to inhe ...

Added by jbalanski on Thu, 10 Feb 2022 07:48:36 +0200

Openssh offline upgrade to the latest version [openssh 8.0 and 8.6 show] method - detailed description

explain Virtual machine network description All upgraded machines have no external network, which is consistent with the internal network of the production environment, so there is no need to worry about operating their virtual machines according to this document, and there will be problems if there is no external network operation.Environ ...

Added by wizkid on Thu, 10 Feb 2022 07:47:35 +0200

C + + implements the related algorithms of data structure and algorithm -- stack and queue

Implementation of stack and queue related algorithms In the process of learning data structure and algorithm, in order to better understand the implementation of the algorithm, this paper implements the algorithms of stack and queue in the course. This article only provides algorithm code reference. For detailed explanation of relevant algorit ...

Added by czambran on Thu, 10 Feb 2022 07:41:56 +0200

mybatis04 -- developing with annotations

1 review - Interface oriented programming Root cause: decoupling, expandable, improved reuse. In layered development, the upper layer does not care about the specific implementation. Everyone abides by common standards, making the development easier and more standardized. The cooperative relationship between various objects has become the key ...

Added by deezin on Thu, 10 Feb 2022 07:31:52 +0200

Machine learning - Data Preprocessing

Data pre filling has its own characteristics, and redundant and invalid data need to be pre selected according to different data formats. Data preprocessing is roughly divided into three steps: data preparation, data conversion and data output. Data processing is not only the basic link of system engineering, but also an effective means to impr ...

Added by niesom on Thu, 10 Feb 2022 07:14:40 +0200

Jetson nano deploys yolov5 using tensorrt

Project prospect Recently, many projects have been deployed on NVIDIA platform with low hardware cost. The computing power of NVIDIA platform hardware from small to large is Jetson nano, Jetson TK1, Jetson TX and Jetson Xavier, plus 1000 to 10000. I just started all the small series, and NVIDIA has a good quantitative tool, tensorrt Xiaobian QQ ...

Added by music_man on Thu, 10 Feb 2022 07:07:18 +0200