1、安装依赖 yum -y install gcc zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel x ...
分类:
其他好文 时间:
2021-06-02 17:03:18
阅读次数:
0
1. chrony 服务器端配置 假设chrony服务器端192.168.1.1 $ cat /etc/chrony.conf # Use public servers from the pool.ntp.org project. server ntp1.aliyun.com iburst serv ...
分类:
其他好文 时间:
2021-06-02 16:47:45
阅读次数:
0
首先使用bert获取词向量bert-as-service 1.安装Bert-as-Service pip install bert-serving-server # server pip install bert-serving-client # client, independent of `be ...
分类:
其他好文 时间:
2021-06-02 16:44:56
阅读次数:
0
问题 今天用Git上传项目时,最后一步push时命令行报错 error: RPC failed; HTTP 413 curl 22 The requested URL returned error: 413 fatal: the remote end hung up unexpectedly fat ...
分类:
Web程序 时间:
2021-06-02 16:10:05
阅读次数:
0
docker-compose部署nacos单机版(简洁优化版) 预览# 初始化数据库# MySQL 文件: https://github.com/Gleans/SpringCloudPro/blob/master/docker/mysql-init/init.sql 放到可视化工具或者命令行执行以下 ...
分类:
其他好文 时间:
2021-06-02 16:07:42
阅读次数:
0
Eclipse 中Tomcat 启动报错Eclipse的提示窗口 Server Tomcat v8.0 Server at localhost failed to start .日志输出中报 Failed to destroy end point associated with ProtocolHa ...
分类:
其他好文 时间:
2021-06-02 15:51:09
阅读次数:
0
触发器 触发器(trigger)是SQL server 提供给程序员和数据分析员来保证数据完整性的一种方法,它是与表事件相关的特殊的存储过程,它的执行不是由程序调用,也不是手工启动,而是由事件来触发,比如当对一个表进行操作( insert,delete, update)时就会激活它执行。触发器经常用 ...
分类:
其他好文 时间:
2021-06-02 15:23:01
阅读次数:
0
###1.SVN是集中式版本控制工具,所以需要一台中央服务器,中央服务器可安装VisualSVN Server,创建有架构的仓库,并创建相应的用户或组别,为仓库配置号仓库后,客户端可安装TortoiseSVN,安装后在想上传的项目文件层检索出对应的主干,增加后再提交即可上传项目到SVN服务器。 在团 ...
分类:
其他好文 时间:
2021-06-02 15:14:51
阅读次数:
0
#多分支 if (条件表达式1) { 语句1 } else if (条件表达式2) { 语句2 } else { 语句3 } #三元表达式 条件表达式 ? 表达式1 : 表达式2 //真1假2 ##案例 var time = prompt('请输入一个1~59的数字') time = time > ...
分类:
Web程序 时间:
2021-06-02 15:06:09
阅读次数:
0
虚拟机栈 简介 虚拟机栈的出现背景 由于跨平台性的设计,Java的指令都是根据栈来设计的。不同平台CPU架构不同,所以不能设计为基于寄存器的【如果设计成基于寄存器的,耦合度高,性能会有所提升,因为可以对具体的CPU架构进行优化,但是跨平台性大大降低】。 优点是跨平台,指令集小,编译器容易实现,缺点是 ...
分类:
其他好文 时间:
2021-06-02 15:01:36
阅读次数:
0