码迷,mamicode.com
首页 >  
搜索关键字:pst    ( 1466个结果
Spock单元测试框架实战指南七 - 动态Mock
这篇讲解Spock自带的mock功能如何和power mock组合使用,发挥更强大的作用 动态Mock静态方法 (Spock Where + Power Mock) 在上一篇的例子中使用power mock让静态方法返回一个指定的值,那能不能每次返回不同的值呢? 我们先看下什么场景需要这样做: /* ...
分类:其他好文   时间:2020-12-08 12:36:48    阅读次数:7
9. 第五章 文本处理三剑客之SED
第五部分 sed 1、删除centos 7系统/etc/grub2.cfg文件中所有以空白开头的行行首的空白字符 [root@centos8 ~]# sed -r 's@^[[:space:]]+(.*)@\1@' 2、删除/etc/fstab文件中所有以#开头,后边至少跟一个空白字符的行的行首的# ...
分类:其他好文   时间:2020-12-04 11:40:16    阅读次数:10
【leetcode】401. 二进制手表
void recursion(int* t, int minute, int hour, int n, int cur, int start, char** arr, int* pst){ if (minute >= 60 || hour >= 12) return; if (cur == n){ ...
分类:其他好文   时间:2020-12-04 10:57:49    阅读次数:8
phpstom 配置xdebug
xdebug 原理 : php 服务器为 client , phpstom 为调试服务器 获取php对应的xdebug 版本: https://xdebug.org/wizard php.ini 配置: zend_extension=xdebug.so xdebug.remote_enable=1 ...
分类:Web程序   时间:2020-11-27 11:05:40    阅读次数:12
Springboot配置异常错误页
1、在Web项目开发过程中,错误信息提示页是一个重要的组成部分。为了不让用户直接看见异常信息的页面,此时,就需要有一个错误信息提示页。错误页面一般都属于静态页面,这里在src/main/resources/static目录下创建error-404.html。 首先,在pom.xml里面新增几个配置, ...
分类:编程语言   时间:2020-11-20 11:26:41    阅读次数:4
taro3.x: 输入手机,验证码弹框popup
tsx: import React, { useState } from 'react' import Taro from '@tarojs/taro' import { View, Text, Input } from '@tarojs/components' import './index.sc ...
分类:移动开发   时间:2020-11-12 14:22:14    阅读次数:17
【leetcode】魔术排列
bool recursion(int* target, int srcSize, int* src, int num, int pst){ int cnt=0,i; int oodpst=0,evenpst=srcSize/2; int arr[5001]={0}; if (srcSize<=num ...
分类:其他好文   时间:2020-11-07 16:40:47    阅读次数:16
桄椿 linux系统查看当前正在运行的服务
--查看当前服务器所有服务 service --status-all -- 查看当前所有正在运行的服务 service --status-all | grep running --查看指定服务运行状态如 httpd service --status-all | grep httpd 或 servic ...
分类:系统相关   时间:2020-11-01 10:20:18    阅读次数:23
分享一个python调试程序BUG的技巧,有谁又会不出BUG呢
在写程序的过程中,经常会遇到各种bug,而python的报错功能其实非常有限,我们仅仅依靠看报错提示,很难找到哪里出了错误!今天就分享一个调试python程序的小技巧: 用input中断程序 用print输出可疑的变量 一:什么情况下可疑调试 学过Matlab的同学应该很容易理解我的意思,Matla ...
分类:编程语言   时间:2020-10-31 01:48:57    阅读次数:20
HTML+css图片轮播
<div class="pst"> <div class="pin"> <div style="background-image:url(https://mat1.gtimg.com/pingjs/ext2020/qqindex2018/dist/img/qq_logo_2x.png)"><p>11 ...
分类:Web程序   时间:2020-10-10 17:13:29    阅读次数:34
1466条   上一页 1 2 3 4 5 ... 147 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!