本文分类:news发布日期:2024/11/22 17:08:18
相关文章
2023 ICPC 江西省赛K. Split
K. Split
time limit per test: 3 seconds
memory limit per test: 512 megabytes
You are given a positive integer n and a non-increasing sequence ai of length n , satisfying ∀i∈[1,n−1],.
Then, you are given a positive integer m, which represents the tot…
建站知识
2024/10/30 1:50:28
jmeter+ant+jenkins接口自动化测试框架
大致思路:Jmeter可以做接口测试,也能做压力测试,而且是开源软件;Ant是基于Java的构建工具,完成脚本执行并收集结果生成报告,可以跨平台,Jenkins是持续集成工具。将这三者结合起来可以搭建一套We…
建站知识
2024/11/3 23:18:20
docker配置国内镜像
docker服务配置文件加入中国的镜像配置
vim /etc/docker/daemon.json
{"registry-mirrors": ["https://dockerproxy.com","https://hub-mirror.c.163.com","https://mirror.baidubce.com","https://ccr.ccs.tencentyun.com"…
建站知识
2024/11/18 6:10:37
重头开始嵌入式第三十二天(TCP多客户端模型)
1.多路IO
1.select
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/types.h> /* See NOTES */
#include <sys/socket.h>
#include <netinet/in.h>
#include <netine…
建站知识
2024/11/22 4:49:49
SpringBoot2:RESTFUL风格接口开发及源码解读
一、RESTFUL简介
Rest风格支持(使用HTTP请求方式,动词来表示对资源的操作) 以前:/getUser 获取用户 /deleteUser 删除用户 /editUser 修改用户 /saveUser 保存用户 现在: /user GET-获取用户 DELETE-删除用户 PUT-修改…
建站知识
2024/11/10 5:26:30
文件包含PHP伪协议利用方法
前提条件
在使用php伪协议时,要先修改两个参数
allow_url_fopenOn
allow_url_includeOn
1.file协议
用于访问文件的协议
复现
使用file协议访问1.txt,内容是phpinfo
2.php://filter协议
用于访问php文件
复现,
使用php://filter协…
建站知识
2024/10/31 7:42:50