码迷,mamicode.com
首页 >  
搜索关键字:rsyncerror: unknown module    ( 11207个结果
springboot&&vue前后端分离入门案例
springboot&&vue前后端分离入门案例 1、最近一直再学习springboot的相关内容,感觉暂时不想学了,就上网随便搜搜,看到大家都在讨论的前后端分离,出于好奇,今天也来玩玩。 2、玩前后端分离,有一个前提条件,后端的也就是springboot,就不再说了,前端的需要有对应的node环境 ...
分类:编程语言   时间:2020-05-08 22:38:46    阅读次数:94
JacksonUtils
package com.intfish.resourceserver.util; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.core.Version; import com.fa ...
分类:其他好文   时间:2020-05-08 19:54:51    阅读次数:94
python-pytest学习(十三)-fixture之autouse=True
一、前言 平常写自动化会写一些前置fixture操作,用例需要用到直接传该函数的参数名称就行了。当用例很多的时候,每次都传这个参数,会比较麻烦。 fixture里面有个参数autouse,默认是Fasle没开启的,可以设置为True开启自动使用fixture功能,这样用例就不用每次都去传参了。 调用 ...
分类:编程语言   时间:2020-05-08 18:23:11    阅读次数:76
ansible安装
安装 yum install epel-release -y yum install ansible –y 显示信息 # ansible --version ansible 2.9.7 config file = /etc/ansible/ansible.cfg configured module ...
分类:其他好文   时间:2020-05-08 18:15:51    阅读次数:64
Linux内核、驱动调试总结
1.给驱动模块的打印加tag #define pr_fmt(fmt) "my_module: " fmt //在所有include头文件之前加 pr_info("xxxx"); 2.根据函数指针打印函数名 Symbols/Function Pointers: %pF versatile_init+0 ...
分类:系统相关   时间:2020-05-08 14:40:37    阅读次数:102
使用metricbeat监控system和nginx
下载并解压缩metricbeat metricbeat.yml配置文件设置: 查看metircbeat开启的模块: ,发现默认开启监控的是system模块 可以通过文件 查看监控的详细信息等 拓展: 开启模块: 关闭模块: 加载dashboards: 运行: 查看kibana面板: 监控nginx ...
分类:其他好文   时间:2020-05-08 13:18:58    阅读次数:69
nginx接口安全验证模块ngx_http_secure_link_module
location配置 ` location ~ ^/v1/(reward|exchange)/ { set $channel_name $cookie_channel_name; secure_link $arg_sign,$arg_et; secure_link_md5 "$uri $arg_ve ...
分类:Web程序   时间:2020-05-08 13:04:56    阅读次数:125
Vuex 核心属性(下)
Modules:可以定义新的模块 官方上说,当我们的应用变的非常复杂时,store对象就有可能变得相当臃肿 为了解决这个问题,Vuex允许我们将store分割成模块(Module), 在这里,每个模块都拥有自己的state、mutations、actions、getters等 写个例子吧: 首先我们 ...
分类:其他好文   时间:2020-05-08 12:59:41    阅读次数:70
关于module.exports和export default两种不同方式暴露的文件的引用
module.exports 或 exports,使用require方式引入 export default 或 export,使用import方式引入 ...
分类:其他好文   时间:2020-05-08 09:19:21    阅读次数:130
SyncTrayzor CPU占用高问题解决
SyncTrayzor程序处理业务逻辑时报错,但会一直处理,一直报错,同时一直输出日志文件,导致CPU占用高。 ...
分类:其他好文   时间:2020-05-07 22:57:34    阅读次数:108
11207条   上一页 1 ... 75 76 77 78 79 ... 1121 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!