码迷,mamicode.com
首页 >  
搜索关键字:isa    ( 2690个结果
Failed to enable unit: Refusing to operate on linked unit file mysql.service
在设置mysql开机启动时,出现了“Failed to enable unit: Refusing to operate on linked unit file mysql.service”,那么需要检测以下mysql是否设置过了开机启动, 方法为: sudo systemctl is-enable ...
分类:数据库   时间:2020-04-08 09:49:03    阅读次数:230
centos7.5 防火墙
防火墙 查看防火墙状态 firewall-cmd --state systemctl status firewalld 停止firewall systemctl stop firewalld.service禁止firewall开机启动 systemctl disable firewalld.serv ...
分类:其他好文   时间:2020-04-07 18:48:48    阅读次数:123
手写Vue (1) 对象劫持
1.引入我们手写的Vue 拿到配置数据 import Vue from '../source/src/index'; let vm = new Vue({ el: '#app', data() { return { msg: 'hello', school: { name: 'zf', age: 1 ...
分类:其他好文   时间:2020-04-07 00:22:06    阅读次数:67
python学习之:文件操作二
import logginglogging.basicConfig(level=logging.INFO)'''def check_number_exist(password_str): has_number = False for c in password_str: if c.isnumber( ...
分类:编程语言   时间:2020-04-03 13:40:45    阅读次数:73
LR脚本信息函数-lr_get_vuser_ip
lr_get_vuser_ip 返回Vuser的IP地址。 char * lr_get_vuser_ip(); lr_get_vuser_ip函数返回Vuser的IP地址。 当执行IP欺骗时,每个Vuser可以使用不同的地址。 此功能允许您确定当前Vuser的IP地址。 如果使用web_set_so ...
分类:其他好文   时间:2020-04-03 12:05:22    阅读次数:86
android error: cannot use ‘throw’ with exceptions disabled
{ 编辑 Android.mk 文件,加入下面的代码: LOCAL_CPP_FEATURES += exceptions 或者: LOCAL_CPPFLAGS += -fexceptions } ...
分类:移动开发   时间:2020-04-03 00:15:29    阅读次数:89
如何让a==1&&a==2&a==3成立
/* * == 进行比较的时候,如果左右两边数据类型不一样,则先转换为相同的数据类型,然后在进行比较 * 1、{} == {} false 两个数据进行比较,比较的是堆内存的地址 * 2、null == undefined true | null undefined false * 3、NaN == ...
分类:其他好文   时间:2020-04-02 22:46:25    阅读次数:126
Class 与 Style 如何动态绑定?
Class 可以通过对象语法和数组语法进行动态绑定: 对象语法: <div v-bind:class="{ active: isActive, 'text-danger': hasError }"></div> data: { isActive: true, hasError: false } 数组 ...
分类:其他好文   时间:2020-04-02 15:54:42    阅读次数:89
typeof、offsetof、container_of
typeof 用于获取一个对象的类型,比如: unsigned int a = 1; // typeof (a) is unsigned int short b = 2; // typeof (b) is short offsetof #define offsetof(TYPE, MEMBER) ( ...
分类:其他好文   时间:2020-04-02 14:22:25    阅读次数:71
22-logging模块
一、日志级别 CRITICAL = 50 #FATAL = CRITICAL ERROR = 40 WARNING = 30 #WARN = WARNING INFO = 20 DEBUG = 10 NOTSET = 0 #不设置 二、默认级别为warning,默认打印到终端 import logg ...
分类:其他好文   时间:2020-04-02 01:06:28    阅读次数:73
2690条   上一页 1 ... 23 24 25 26 27 ... 269 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!