详细 the current operating system does not support this product click ok and then install the product on a computer running windows xp professional or w ...
分类:
其他好文 时间:
2020-12-11 12:10:02
阅读次数:
3
创建一条测试 数据 查询 (默认是 DB0) 创建:set name xiaoming 查询: get name 1、模糊搜索查询 (redis 默认有16个DB , 0-15 ) Redis 模糊搜索 1、keys * 匹配数据库中所有 key 2、keys h?llo 匹配 hello , ha ...
分类:
其他好文 时间:
2020-12-09 12:36:42
阅读次数:
15
obotium之doesnothaveasignaturematching问题今天发现个很low的问题,脚本都写好了,运行Robotium测试用例时报错如下:[2017-03-0109:58:54-baiduAppTest]Testrunfailed:PermissionDenial:startinginstrumentationComponentInfo{com.example.tieba.te
分类:
其他好文 时间:
2020-12-05 10:34:23
阅读次数:
4
题目:https://leetcode-cn.com/problems/ju-zhen-zhong-de-lu-jing-lcof/submissions/ 代码: class Solution { public boolean exist(char[][] board, String word) ...
分类:
其他好文 时间:
2020-12-03 12:21:11
阅读次数:
6
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements ...
分类:
其他好文 时间:
2020-12-03 12:09:41
阅读次数:
6
安装Djangopipinstalldjango==2.2.0#pipinstalldjangorestframework基础函数视图#!/usr/bin/env/python#--*--coding:utf-8--*--#Author:Vaedit#@Time:fromdjango.httpimportHttpResponsefromdjango.httpimportJsonResponse,H
分类:
其他好文 时间:
2020-11-27 11:21:56
阅读次数:
8
NameError: name 'figsize' is not defined. 解决办法: 使用jupyter notebook Try using %pylab if %pylab inline does not work. 使用python脚本 from pylab import * ...
分类:
其他好文 时间:
2020-11-27 11:12:57
阅读次数:
7
一、约束 1)主键 主键约束=非空约束+唯一约束 主键可以是一个列或者多个列 1)创表添加多个列作为主键 create table score1( sid int not null, cid int not null, PRIMARY key(sid,cid) ); 2)删除主键约束 alter t ...
分类:
数据库 时间:
2020-11-26 14:30:23
阅读次数:
8
##1.1 SAT SAT. Given a CNF formula Φ, does it have a satisfying truth assignment? 可满足性要求的是结果为TRUE! ###1.1.1 3-SAT SAT: where each clause contains exac ...
分类:
其他好文 时间:
2020-11-19 12:40:04
阅读次数:
9
预备知识1.K8S上Service类型ClusterIP通过集群的内部IP暴露服务,选择该值,服务只能够在集群内部可以访问,这也是默认的ServiceType。NodePort通过每个Node上的IP和静态端口(NodePort)暴露服务。NodePort服务会路由到ClusterIP服务,这个ClusterIP服务会自动创建。通过请求<NodeIP>:<NodePort>
分类:
其他好文 时间:
2020-11-12 14:08:57
阅读次数:
8