码迷,mamicode.com
首页 >  
搜索关键字:any    ( 7409个结果
IfcProduct
The IfcProduct is an abstract representation of any object that relates to a geometric or spatial context. An IfcProduct occurs at a specific location ...
分类:其他好文   时间:2020-02-20 00:14:44    阅读次数:104
hydra-爆破工具的使用
0x01简介 hydra 是一个支持众多协议的爆破工具,在kali上集成,但也可以在windows上下载运行; github上的源码: https://github.com/vanhauser-thc/thc-hydra 支持的协议: adam6500、asterisk、cisco、cisco-en ...
分类:其他好文   时间:2020-02-19 23:51:53    阅读次数:134
[LeetCode] 934. Shortest Bridge 最短的桥梁
In a given 2D binary array , there are two islands. (An island is a 4 directionally connected group of s not connected to any other 1s.) Now, we may c ...
分类:其他好文   时间:2020-02-19 23:40:26    阅读次数:85
Golang Http请求
请求的结构 HTTP的交互以请求和响应的应答模式。go的请求我们早就见过了,handler函数的第二个参数http.Requests。其结构为: 从request结构可以看到,http请求的基本信息都囊括了。对于请求而言,主要关注一下请求的URL,Method,Header,Body这些结构。 UR ...
分类:Web程序   时间:2020-02-19 13:22:55    阅读次数:93
python 抓包与解包
我使用的环境为:Windows10、python3.6、scapy 2.4.0 一、基本知识 Sniff方法定义: sniff(filter="",iface="any", prn=function, count=N) filter的规则使用 Berkeley Packet Filter (BPF) ...
分类:编程语言   时间:2020-02-19 12:48:41    阅读次数:93
Nginx指定IP无须通过认证
需求: 指定IP直接访问,否则增加二次认证 server { listen 0.0.0.0:80; server_name location ~ / { satisfy any; allow 172.18.1.1/24; deny all; auth_basic "login"; auth_basi ...
分类:其他好文   时间:2020-02-18 20:28:09    阅读次数:76
SpringDataJPA
ORM思想 ORM 即 Object-Relational Mapping,对象关系映射。简单来说就是通过操作对应的实体类来操作表的思想。 实现了ORM思想的框架:hibernate 等 JPA概述 JPA的全称是Java Persistence API, 即Java 持久化API。JPA是一种基于 ...
分类:编程语言   时间:2020-02-18 20:14:59    阅读次数:76
62. Unique Paths
A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below). The robot can only move either down or right at any p ...
分类:其他好文   时间:2020-02-17 22:33:36    阅读次数:99
[Angular 9] Improved Dependency Injection with the new providedIn scopes 'any' and 'platform'
@Injectable({ providedIn: "root" | "any" | "platform" }) export class MyService {} More ProvidedIn: root Every service defined with 'root' will be pro ...
分类:其他好文   时间:2020-02-17 17:58:30    阅读次数:70
[Angular 9] Built-in template syntax $any
The $any() type cast function Sometimes a binding expression triggers a type error during AOT compilation and it is not possible or difficult to fully ...
分类:其他好文   时间:2020-02-17 17:56:29    阅读次数:86
7409条   上一页 1 ... 55 56 57 58 59 ... 741 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!