码迷,mamicode.com
首页 >  
搜索关键字:sleep 延迟注入    ( 4180个结果
Kuberbetes实践——镜像拉取策略、command args参数
command args参数 示例1: spec: containers: - name: liveness image: busybox command: ["sh", "-c"] args: - /bin/sh - -c - echo ok > /tmp/health; sleep 10; rm ...
分类:其他好文   时间:2020-05-24 16:27:40    阅读次数:66
线程——sleep()和wait()方法区别
Java中sleep和wait方法的区别: 由图可知:sleep和wait最大区别在于 a. 线程调用sleep方法,线程进入休眠状态,且会继续占有锁,不会释放 b.锁对象调用wait方法,线程进入到一个和该对象相关的等待池中,同时失去(释放)了对象的机锁。 这里以窗口售票为例: TicketDem ...
分类:编程语言   时间:2020-05-24 13:26:49    阅读次数:73
BDJ3rd
这次难度比上次高,只出了3个...该打 帮帮小红花 预期解是bash盲注,之前ichunqiu的一个比赛上遇到过,不过我一开始用的 echo wander grep e "BDJ{" /flag && sleep 2 [ = B ] && sleep 3 python import requests ...
分类:其他好文   时间:2020-05-24 09:33:23    阅读次数:70
python获取http状态码
获取http状态码,如果返回状态码不是200,则会每隔5秒重新获取一次,但是不超过3次#!/bin/envpython#-*-coding:UTF-8-*-#Author:刘小懒#example:pythonhttp_status.pyota_listimportrequestsimporttimeimportsysfromthreadingimportThreaddefhttp_status(a
分类:编程语言   时间:2020-05-24 09:15:14    阅读次数:64
Docker镜像
本文内容: 什么是Docker镜像 什么是rootfs 什么是容器的一致性 什么是Docker镜像 Docker镜像是一个只读的Docker容器模板,含有启动Docker容器所需要的文件系统结构及其内容,是启动一个容器的基础。可以这么理解,Docker镜像是Docker容器的静态视角,而Docker ...
分类:其他好文   时间:2020-05-24 00:45:49    阅读次数:57
Python数据结构
[TOC]## 1. list> * [官网](https://docs.python.org/3/library/stdtypes.html#lists)> * [菜鸟教程](http://www.runoob.com/python3/python3-list.html)```pyappend()... ...
分类:编程语言   时间:2020-05-24 00:43:29    阅读次数:72
线程的生命周期
先来看看线程的几个方法: package thread.basics; public class Test_Sleep_Yield_Join { public static void main(String[] args) { //sleep意思就是睡眠,当前线程暂停一段时间让其他线程去执行,时间到 ...
分类:编程语言   时间:2020-05-24 00:36:26    阅读次数:72
python_30期自动化【艺龙酒店】
from selenium import webdriverimport time #导入时间#打开谷歌浏览器driver = webdriver.Chrome()#打开艺龙网站driver.get("http://www.elong.com/")time.sleep(1)#选择热门城市“成都”Te ...
分类:编程语言   时间:2020-05-24 00:19:23    阅读次数:56
批量下载英雄联盟官网皮肤及打包
1.没啥说的 代码上步骤我都写清楚了,下载图片用的json,re,requests模块打包用的是tarfile模块 批量下载 import requests import time import re import json #英雄联盟官网资料库里面打开F12,然后点一张图片,通过js过滤后,找到c ...
分类:其他好文   时间:2020-05-23 09:17:09    阅读次数:126
shell脚本实现命令执行等待状态显示的三种方式
显示状态1-处于"/"旋转 #!/bin/sh sleep 10 & pid=$! # Process Id of the previous running command spin='-\|/' i=0 while kill -0 $pid 2>/dev/null do i=$(( (i+1) % ...
分类:系统相关   时间:2020-05-22 19:39:19    阅读次数:349
4180条   上一页 1 ... 25 26 27 28 29 ... 418 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!