1 <?xml version="1.0" encoding="UTF-8"?> 2 <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
分类:
移动开发 时间:
2021-06-29 16:09:22
阅读次数:
0
二分 求一个序列的最长上升子序列个数。 本程序采用边读边处理 + 二分法。 ll f[maxn], ans = 1; //注意答案个数初始化为1 int main() { ll n = read(); for (int i = 1; i <= n; ++i) { int x = read(); if ...
分类:
其他好文 时间:
2021-06-29 15:59:12
阅读次数:
0
LCS 操作对象:两个长度不一定相等的字符串。 例题 string s, t; int f[maxn][maxn]; int main() { cin >> s >> t; int ls = s.length(), lt = t.length(); for (int i = 1; i <= ls; ...
分类:
其他好文 时间:
2021-06-29 15:57:12
阅读次数:
0
原文链接:https://debugtalk.com/post/head-first-locust-advanced-script/ 关联 在某些请求中,需要携带之前从Server端返回的参数,因此在构造请求时需要先从之前的Response中提取出所需的参数。 1 from lxml import ...
分类:
其他好文 时间:
2021-06-29 15:24:26
阅读次数:
0
Nuxt.js实现简单路由配置 本文将实现的路由页面关系: 实现的效果截图: 实现的代码: 首页代码 <!--首页index.vue--> <template> <div> <h1>我是首页-home</h1> <ul> <li><nuxt-link :to="{ name: 'index' }"> ...
分类:
Web程序 时间:
2021-06-29 15:16:23
阅读次数:
0
url: jdbc:mysql://${DB_SERVER:localhost}:3306/utai?useUnicode=true&characterEncoding=utf-8&serverTimezone=UTC&allowMultiQueries=true使用分号分割的批量sql,要添加配置 ...
分类:
数据库 时间:
2021-06-28 21:19:41
阅读次数:
0
前言 这是一篇拖更很久的博客,不知不觉InitQ在nuget下载量已经过15K了,奈何胸无点墨也不晓得怎么写(懒),随便在github上挂了个md,现在好好唠唠如何在redis里使用队列 队列缓存分布式 异步调优堆配置 (来自某位不知名码友) 诞生背景 redis在项目中使用的越来越频繁,通常我们是 ...
分类:
Web程序 时间:
2021-06-28 21:10:57
阅读次数:
0
Warning: World-writable config file '/etc/mysql/my.cnf' is ignoredERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mys ...
分类:
数据库 时间:
2021-06-28 20:57:43
阅读次数:
0
最近在gpu上做实验比较频繁,故记录下常用命令,以便复制粘贴 1. 后台运行py文件,并保存日志 nohup python -u prepro_feats_gpu.py> frats.out 2>&1 & frats.out 为保存的日志文件名 2.查看日志文件 tail -f frats.out ...
分类:
系统相关 时间:
2021-06-28 20:45:56
阅读次数:
0
官方说明 具体原因 继续用原来的配置的方法 配置文件里删掉最后一行的 Le_API='https://acme.zerossl.com/v2/DV90' (之前配置应该没有这一行),再执行 acme.sh --set-default-ca --server letsencrypt 使用新的配置的办法 ...
分类:
其他好文 时间:
2021-06-28 20:41:52
阅读次数:
0