最新 最热

numpy.argmax

numpy.argmax(a, axis=None, out=None)[source]

2022-09-03
1

tf.compat.v1.pad

This operation pads a tensor according to the paddings you specify. paddings is an integer tensor with shape [n, 2], where n is the rank of tensor.

2022-09-03
1

numpy.meshgrid()

Return coordinate matrices from coordinate vectors.Make N-D coordinate arrays for vectorized evaluations of N-D scalar/vector fields over N-D grids, given one-d...

2022-09-03
0

唔,突然就年中大促了啊

5月26日晚8点,618第一波预售活动正式开始,虽然各家都在紧锣密鼓的准备这个年中大促,但说到底活动的玩法、套路营销手段都是市场部等业务方制定的,作为技术人,究竟在大促活动中承担一个什么样的角色?以及大促活动究竟能带来...

2022-09-01
1

Java Switch优化_用反射优化Switch太长的方法

这是一个普通的switchclass Employee { double payAmt(String level){ double salary = 0; switch (level) { case "Level1": ...

2022-08-30
0

XSS绕过WAF之on属性

日常测试的时候遇到的一个case,存在XSS漏洞,但是WAF把 onload,onerror,onstart等常用的on属性都过滤了。

2022-08-30
1

pytest 中fixture传递参数到case中

fixture结合yield可以完美的替代setup和teardown,并且使用例更加简洁。

2022-08-25
1

MySql数据库基本select查询语句练习题,初学者易懂。

select a.sid FROM (select * from sc where cid=”001″) as a, (select * from sc where cid = “002”)as b where a.sid = b.sid and a.score>b.score

2022-08-24
0

MySQL基础之流程控制结构

案例1:创建函数,实现传入成绩,如果成绩>90,返回A,如果成绩>80,返回B,如果成绩>60,返回C,否则返回D

2022-08-22
1

枚举工具类

现已并入hutool5.8.0,PR链接地址:https://gitee.com/dromara/hutool/pulls/583

2022-08-21
1