码迷,mamicode.com
首页 >  
搜索关键字:please ensure that a    ( 3733个结果
Python3--条件判断与循环控制
1.条件判断与循环控制 语句关键字 if、 else、 elif 、 # 伊洛Yiluo # https://yiluotalk.com/ >>> password = 123456 >>> input_password = int(input('Please input password to l ...
分类:编程语言   时间:2020-08-24 15:11:18    阅读次数:55
linux-shell 判断当前用户是否是root用户
环境变量UID中保存的是用户ID。 root用户的UID是0。 #! /bin/bash if [ $UID -ne 0 ]; then echo Non root user. Please run as root. else echo Root user fi ...
分类:系统相关   时间:2020-08-20 18:54:51    阅读次数:89
[RoarCTF 2019]Easy Calc
0x00 php解析字符串特性解题 打开网页 看这里我们知道这是实现的一个网页计算器,所以不会存在SQL注入。 暂时能想到的没有其他方向了,所以我们去查找更多信息。 查看网站源代码,对代码进行观察 看到下面这一行 <!--I've set up WAF to ensure security.--> ...
分类:其他好文   时间:2020-08-17 17:00:43    阅读次数:69
Harbor安装及使用
安装环境:CPU:2C内存:8GIP:172.24.77.241(Server1)IP:172.24.77.243(Server2)服务器1安装dockeryuminstalldocker-ysystemctlstartdockersystemctlenabledocker服务器1安装dockeryuminstalldocker-ysystemctlstartdockersystemctlenab
分类:其他好文   时间:2020-08-11 09:29:26    阅读次数:110
springboot+druid报错log4j:WARN No appenders could be found for logger (druid.sql.Connection). log4j:WARN Please initialize the log4j system properly.
解决方案:新建文件log4j.properties log4j.rootLogger=DEBUG, stdout log4j.appender.stdout=org.apache.log4j.ConsoleAppender log4j.appender.stdout.layout=org.apach ...
分类:移动开发   时间:2020-07-28 14:33:05    阅读次数:149
celery
celery的使用 # 1 异步任务框架,执行异步任务,执行延迟任务,执行定时任务 # 2 Celery is a project with minimal funding, so we don’t support Microsoft Windows. Please don’t open any i ...
分类:其他好文   时间:2020-07-26 23:15:34    阅读次数:64
Ubuntu 20.04 Install Guest Additions for VirtualBox
Ubuntu 20.04 Install Guest Additions for VirtualBox时有报错: This system is currently not set up to build kernel modules.Please install the gcc make perl ...
分类:系统相关   时间:2020-07-26 23:00:43    阅读次数:94
/etc/login.defs 文件
/etc/login.defs 是设置用户帐号限制的文件。该文件里的配置对root用户无效。优先级低于/etc/shadow里面的配置。 使用vim打开文件 [root@localhost ~]# vim /etc/login.defs # # Please note that the parame ...
分类:其他好文   时间:2020-07-26 22:56:50    阅读次数:65
【MATLAB】 运行Simulink时出现报错
2020-07-26 1. 报错"需要更改文件夹" “The current directory 'd:\program files\matlab\r2016b\bin' is reserved for MATLAB files. Please change your current directo ...
分类:其他好文   时间:2020-07-26 22:53:01    阅读次数:92
MPI小例子
MPI示例 MPI时间函数测试 #include<stdio.h> #include<mpi.h> #include<stdlib.h> #include<time.h> #include<windows.h> int main(int argc, char** argv) { int err = ...
分类:其他好文   时间:2020-07-25 23:39:51    阅读次数:64
3733条   上一页 1 ... 9 10 11 12 13 ... 374 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!