码迷,mamicode.com
首页 >  
搜索关键字:disable    ( 2955个结果
jQuery选择器
选择器实例选取 * $("*") 所有元素 #id $("#lastname") id="lastname" 的元素 .class $(".intro") class="intro" 的所有元素 .class,.class $(".intro,.demo") class 为 "intro" 或 "d ...
分类:Web程序   时间:2020-02-16 01:20:31    阅读次数:136
centos 中,启用了 firewalld 防火墙,docker 内的容器无法访问外网
首先记录几个对 linux 系统服务操作的命令(以下都是对防火墙服务进行操作): # 启动服务systemctl start firewalld # 设置服务自启动systemctl enable firewalld # 取消服务自启动systemctl disable firewalld # 停止... ...
分类:其他好文   时间:2020-02-15 09:52:00    阅读次数:223
request模块封装
```python import requests import hashlib import time import os import json class requestsTools: def __init__(self, basePath): self._basePath = basePat... ...
分类:其他好文   时间:2020-02-14 19:04:07    阅读次数:78
gdb调试工具常用命令 && kdb
编译程序时需要加上-g,之后才能用gdb进行调试:gcc -g main.c -o main gdb中命令: 回车键:重复上一命令 (gdb)help:查看命令帮助,具体命令查询在gdb中输入help + 命令,简写h (gdb)run:重新开始运行文件(run-text:加载文本文件,run-bi ...
分类:数据库   时间:2020-02-14 16:54:35    阅读次数:186
srvctl commands in Oracle RAC 11g
srvctl commands in Oracle RAC 11g SRVCTL (Server Control utility) commands in Oracle 11g RAC srvctl command target [options] commands: enable|disable| ...
分类:数据库   时间:2020-02-14 10:32:57    阅读次数:68
MAC Sublime Text汉化版安装
1、安装包下载链接:https://pan.baidu.com/s/1mBbcA_6QlpoUf-8V0jOgqQ 密码:m2gf 2、终端输入sudo spctl --master-disable回车,输入密码(针对10.15.3之前版本) 3、终端sudo xattr -r -d com.app ...
分类:系统相关   时间:2020-02-13 09:35:41    阅读次数:219
如何设置禁止浏览器的缓存
一、打开谷歌浏览器,点击F12打开开发者工具 二、点击开发者工具的菜单,选中setting,进入开发这工具的设置界面,如下图 三、在里面找到network这一大类,然后勾选下面的Disable cache(while DevTools is open)即可 ...
分类:其他好文   时间:2020-02-13 09:22:14    阅读次数:64
Mac截屏是否保留边缘阴影
在终端执行如下代码。 去除阴影 defaults write com.apple.screencapture disable-shadow -bool true && killall SystemUIServer 保留阴影 defaults write com.apple.screencapture ...
分类:系统相关   时间:2020-02-12 18:35:19    阅读次数:62
format
通常我们会使用Windows自动的格式化 对应的命令为: 参考 "快速格式化" ...
分类:其他好文   时间:2020-02-11 14:33:47    阅读次数:72
linux 下 php执行 exec 无反应 返回值为空
ps:请先确保 php.ini 的disable_functions 配置没有拦截 exec ,有请删掉,保存,重启php 下面开始正文1、先找出是哪个用户在执行这个文件的 <?php$result = exec("whoami", $outcome, $status); var_dump($out ...
分类:Web程序   时间:2020-02-10 11:49:32    阅读次数:128
2955条   上一页 1 ... 33 34 35 36 37 ... 296 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!