参考答案 assume cs:codeseg codeseg segment separator: db '/', '/', ' ', ':', ':' date_index: db 9, 8, 7, 4, 2, 0 ; 这几个位置没啥规律,耽误我写循环 start: mov ax, cs mov ...
分类:
编程语言 时间:
2021-03-01 14:15:42
阅读次数:
0
Let's say we have a date picker compoent which display start date and end date. We want to make sure that start date is no later than end date, if it ...
分类:
其他好文 时间:
2021-03-01 14:05:34
阅读次数:
0
问题:已配置好桥接模式,虚拟机和本机能够相互ping通的情况下,Apache上发布的网站可以在虚拟机上访问,但无法在本机上访问。 1、为了能够远程访问服务器的网页,要确保Apache服务httpd运行中 查看http的服务状态:service http的 status 开启httpd服务:servi ...
分类:
Web程序 时间:
2021-03-01 13:51:11
阅读次数:
0
1.change master to 时,ip port user password binlog position写入到master.info进行记录 2. start slave 时,从库会启动IO线程和SQL线程 3.IO_T,读取master.info信息,获取主库信息连接主库 4. 主库会 ...
分类:
数据库 时间:
2021-03-01 13:26:00
阅读次数:
0
[root@zhaodong zhaodong]# iptables -I INPUT -s 192.168.10.0/24 -p tcp --dport 22 -j ACCEPT [root@zhaodong zhaodong]# iptables -A INPUT -p tcp --dport ...
分类:
系统相关 时间:
2021-03-01 13:25:10
阅读次数:
0
# 生成命令对应的yaml文件(资源清单)kubectl create deployment xxxxxxxxxxx --image=nginx --dry-run -o yamlkubectl create deployment xxxxxxxxxxx --image=nginx --dry-ru ...
分类:
其他好文 时间:
2021-03-01 13:16:39
阅读次数:
0
一、什么是Servlet 简单的说,浏览器发出请求到tocat服务器,服务器就会初始化一个servlet实例(servlet采取生命托管的方式实现单例,不存在时才会创建实例),servlet示例会启动一个线程来处理该请求,并进行响应该请求,动态生成web内容 二、什么是Tomcat服务器 Tomca ...
分类:
编程语言 时间:
2021-03-01 13:08:39
阅读次数:
0
/// <summary> /// 运行时间 /// </summary> [ProtoMember(46)]public long WorkTime; Stopwatch stopwatch = new Stopwatch(); // 记录运行时间stopwatch.Start();。。。// 运 ...
最近在看Springboot源码中,发现了一个有趣又有用的简单小工具,特此推荐下。 如下图,springboot中用StopWatch的start方法跟stop方法包含住了整个Springboot的启动过程。 StopWatch:秒表,跑表的意思,我们按字面意思大概就可以推测出它是用来计算时间,监控 ...
分类:
编程语言 时间:
2021-02-27 13:33:33
阅读次数:
0
protoc 编译工具 windows 平台下载对应平台的 protobuf,并配置环境变量 protobuf linux 环境先安装依赖 sudo apt-get install autoconf automake libtool curl make g++ unzip git clone htt ...
分类:
其他好文 时间:
2021-02-27 13:31:02
阅读次数:
0