构造一个触发器audit_log,在向employees_test表中插入一条数据的时候,触发插入相关的数据到audit中。 CREATE TABLE employees_test( ID INT PRIMARY KEY NOT NULL, NAME TEXT NOT NULL, AGE INT N ...
分类:
数据库 时间:
2020-11-11 16:00:43
阅读次数:
12
Reference: [Dockerfile Security Best Practices] Container security is a broad problem space and there are many low hanging fruits one can harvest to m ...
分类:
其他好文 时间:
2020-10-24 11:48:16
阅读次数:
37
package practice; import java.io.File; import java.io.IOException; public class CreateFile { public static void main(String[] args) { File f = new Fil ...
分类:
编程语言 时间:
2020-10-19 22:28:49
阅读次数:
25
本章代码:https://github.com/zhangxiann/PyTorch_Practice/blob/master/lesson8/resnet_inference.py 这篇文章首先会简单介绍一下 PyTorch 中提供的图像分类的网络,然后重点介绍 ResNet 的使用,以及 Res ...
分类:
Web程序 时间:
2020-09-17 18:30:10
阅读次数:
45
Practice link : https://vjudge.net/problem/HDU-6832 题意: n 个点,m 条边,第 i 条边的权值是 2^i ,问每个 1 到每个 0 的最短距离之和。 即 思路:首先看边的权值 是 2^i ,我们可以联想到 2^0+2^1+......+2^(n ...
分类:
其他好文 时间:
2020-08-20 19:26:06
阅读次数:
126
package com.xuyifan.struct; /** * @author xyf * @create 2020-08-11-11:08 */ /** for循环最先执行初始化步骤,可以声明一种类型,但是可以初始化一个或多个初始化变量 也可以是空语句 检测布尔表达式的值,如果为true,则循 ...
分类:
其他好文 时间:
2020-08-11 13:06:35
阅读次数:
82
题目链接: https://www.nowcoder.com/practice/9b59014cc1544aeeb4082f5f37ecfaea?tpId=122&&tqId=33725&rp=1&ru=/ta/exam-wangyi&qru=/ta/exam-wangyi/question-ran ...
分类:
其他好文 时间:
2020-07-28 14:06:23
阅读次数:
143
二分查找 #include<bits/stdc++.h> using namespace std; const int maxn = 2e5+5; long long a[maxn], b[maxn]; long long getKth(int k, int lo1, int hi1, int lo ...
分类:
其他好文 时间:
2020-07-23 23:22:49
阅读次数:
76
基数上限为给定的那个数(不懂),需要二分查找?'?'? #include<bits/stdc++.h> typedef long long ll; int n, tag, radix; char num[2][15]; #define val(c) ('0'<=(c)&&(c)<='9'?(c)-' ...
分类:
其他好文 时间:
2020-07-23 22:22:19
阅读次数:
70
1 from selenium import webdriver 2 import time 3 import xlwt 4 5 def get_test_result(): 6 ''' 7 获取测试报告网页中的结果数据 8 :return: 9 ''' 10 driver = webdriver. ...
分类:
Web程序 时间:
2020-07-20 13:33:13
阅读次数:
146