#!/bin/bash#echo "vm.swappiness = 0">> /etc/sysctl.confswapoff -a && swapon -asysctl -psystemctl stop firewalld.servicesystemctl disable firewalld.ser ...
分类:
数据库 时间:
2021-06-08 23:43:55
阅读次数:
0
https://juejin.cn/post/6844903859865780231 官方原文 Note that the file property in RollingFileAppender (the parent of TimeBasedRollingPolicy) can be eithe ...
分类:
其他好文 时间:
2021-06-08 23:39:20
阅读次数:
0
UnitTest本来是用于做python的单元测试框架,现在作为主流的自动化测试框架在使用,除去UnitTest就是Pytest。 UnitTest的四大特性 1.前置和后置条件: Setup和teardown 2.用例管理: 所有以Test开头或者结尾的函数,都会默认识别为测试用例。 3.套件与管 ...
分类:
其他好文 时间:
2021-06-08 22:40:35
阅读次数:
0
import pymysql# username : adil# password : helloyyjclass DataBaseHandle(object): ''' 定义一个 MySQL 操作类''' def __init__(self, host, username, password, d ...
分类:
数据库 时间:
2021-06-07 20:23:52
阅读次数:
0
从Spring到SpringBoot浅谈 一、Spring能做什么 (一)、Spring的能力 (二)、spring的生态 https://spring.io/projects/spring-boot 覆盖了:web开发、数据访问、安全控制、分布式消息服务、移动开发、批处理等。 (三)、Spring ...
分类:
编程语言 时间:
2021-06-06 19:26:01
阅读次数:
0
数字 n 代表生成括号的对数,请你设计一个函数,用于能够生成所有可能的并且 有效的 括号组合。 ...
分类:
编程语言 时间:
2021-06-06 19:24:53
阅读次数:
0
2021年6月5日下午列车讨论: 1.类属性本身不需要实例化也可以调用。 2.实例化之后得到的就是实例属性,就是专属于各个实例自己的属性,就是初始化方法__init__里面那些self.xxx=xxx。 这里的self是一个占位符,直接指向实例对象,也就是说,如果是实例对象的方法或者属性,就一定要添 ...
分类:
其他好文 时间:
2021-06-06 19:22:32
阅读次数:
0
import requests import re from threading import Thread from bs4 import BeautifulSoup import openpyxl import json class MUSIC(Thread): def run(self): s ...
分类:
编程语言 时间:
2021-06-06 19:17:40
阅读次数:
0
一、int、string、list这些基本类型的大小比较都是基于如下方法实现:__lt__;__gt__;__le__;__ge__;__eq__;__nq__,同理,类要实现比较功能需要实现这些方法 二、使用装饰器functools.total_ordering可以简化上诉实现的方法 三、实例: ...
分类:
其他好文 时间:
2021-06-04 19:54:04
阅读次数:
0
import abc #定义一个说话的方式接口类,只能被继承 不能被实例化 class Speak(abc.ABC): #@abc.abstractmethod @abc.abstractmethod def to_speak(self): pass #定义学生说话的类 class Student( ...
分类:
编程语言 时间:
2021-06-04 18:50:52
阅读次数:
0