码迷,mamicode.com
首页 >  
搜索关键字:security context    ( 17701个结果
使用logback-spring简单日志打印
logback简单实现对日志的保存和处理,且保存有效时间,7天, 配置文件 <?xml version="1.0" encoding="UTF-8"?> <configuration> <springProperty scope="context" name="loglevel" source="l ...
分类:编程语言   时间:2021-04-26 13:55:32    阅读次数:0
js 防抖节流
1 // 防抖 2 function debounce(func,delay){ 3 let timer = null 4 return function(){ 5 let context = this 6 let args = arguments 7 if(timer) clearTimeout( ...
分类:Web程序   时间:2021-04-24 11:51:25    阅读次数:0
C# 对接sftp(项目中用到)
在项目中用到的是获取文件列表和下载文件,这个是可以的,其他应该也没问题 在对接sftp时必须引用的三个dll文件,可以从newGet包管理里面下载 DiffieHellman Org.Mentalis.Security Tamir.SharpSSH 我们是做了一个exe用sqlserver的job进 ...
分类:Windows程序   时间:2021-04-21 12:55:27    阅读次数:0
20 行简单实现一个 unstated-next 🎅
前言 📝 👉 unstated-next 基于 React 心智模型(hook+context)而设计的状态管理。 👈 在 react hook 出现之前,有基于单一数据源,使用纯函数修改状态的 redux & react-redux 也有基于 Object.defineProperty 和 ...
分类:其他好文   时间:2021-04-21 12:37:21    阅读次数:0
?.nginx rewrite
####rewrite语法 | Syntax: | rewrite regex replacement [flag]; | | | | | Default: | — | | Context: | server, location, if | //所有请求转发到/pages/maintain.html ...
分类:其他好文   时间:2021-04-21 12:32:16    阅读次数:0
Mac下浏览器跨域配置方法
open -n /Applications/Google\ Chrome.app/ --args --disable-web-security --user-data-dir=/Users/hooliy/Documents/MyChromeDevUserData open -n /Applicati ...
分类:系统相关   时间:2021-04-21 11:49:55    阅读次数:0
haskell stack安装
1.下载stack 官网下载即可 2.setup 修改~/.stack/config.ymal文件 配置如下: setup-info-locations: - "http://mirrors.tuna.tsinghua.edu.cn/stackage/stack-setup.yaml" urls: ...
分类:其他好文   时间:2021-04-20 14:11:05    阅读次数:0
状态模式
public class StatePattern { public static void main(String[] args) { Context context=new Context(); for (int i = 0; i < 10; i++) { context.handle(); } ...
分类:其他好文   时间:2021-04-19 16:06:54    阅读次数:0
rancher + harbor + jenkins 自动化部署
1.简介 rancher 简化了 k8s操作的软件,通过rancher可以在不用关心k8s底层通过图形化界面直接部署微服务. harbor 类似于docker hub 的私有仓库,docker可以通过docker pull 拉取镜像. jenkins 自动化部署工具,可以自定义脚本和执行时机. ra ...
分类:其他好文   时间:2021-04-16 12:24:17    阅读次数:0
Xpath表达式text()和string()的用法和区别
获取结点下字符串 text() selects all text node children of the context node text()获取当前结点下的子文本结点.(不是获取后裔结点的文本结点) 注意,text()不是函数,是文本结点,文本结点从属于其父结点,所以./text()只能获取位 ...
分类:其他好文   时间:2021-04-15 12:43:34    阅读次数:0
17701条   上一页 1 ... 9 10 11 12 13 ... 1771 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!