com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds a ...
分类:
数据库 时间:
2020-02-04 11:05:13
阅读次数:
91
Python程序中的线程操作 锁 [TOC] 一、同步锁 1.1 多个线程抢占资源的情况 结果可能为: 99 1.1.1 对公共数据的操作 1.2 同步锁的引用 结果肯定为:0 1.3 互斥锁与join的区别 二、死锁与递归锁 进程也有死锁与递归锁,在进程那里忘记说了,放到这里一起说了。 所谓死锁: ...
分类:
编程语言 时间:
2020-02-04 11:04:56
阅读次数:
85
在.eslintrc.js中配置: // add your custom rules here rules: { // no space before function name "space-before-function-paren": 0 } ...
分类:
其他好文 时间:
2020-02-04 11:04:39
阅读次数:
433
Given a non-empty string s, you may delete at most one character. Judge whether you can make it a palindrome. Example 1: Input: "aba" Output: True Exa ...
分类:
其他好文 时间:
2020-02-04 11:04:16
阅读次数:
77
"题面" 题解 说实话, 其实我也不知道这题正解是啥 你看着数据范围不像爆搜题 但是爆搜他就是可以过, 我也不知道为啥 奇葩 Code ...
分类:
Web程序 时间:
2020-02-04 11:03:48
阅读次数:
104
Auditing Enhancements (DBMS_AUDIT_MGMT) in Oracle Database 11g Release 2 Oracle 11g Release 1 turned on auditng by default for the first time. Oracle ...
分类:
数据库 时间:
2020-02-04 11:03:32
阅读次数:
74
参考 1. https://colobu.com/2016/10/12/go file operations/ 2. https://www.devdungeon.com/content/working files go write_bytes ...
分类:
其他好文 时间:
2020-02-04 11:03:07
阅读次数:
66
题目链接 1 #include <bits/stdc++.h> 2 # define LL long long 3 using namespace std; 4 5 const int maxn=5000+10; 6 int n; 7 LL dis[maxn]; 8 int complete[max ...
分类:
其他好文 时间:
2020-02-04 11:02:51
阅读次数:
120
最近这段时间新型冠状病毒肆虐,上海确诊人数每天都在增加,人人提心吊胆,街上都没人了。为了响应国家号召,近期呆在家里撸码,着手将项目迁移到React中,项目比较朴素,是一张线索提交页面,包含表单、图片滚动等功能。 一、目录结构 项目基于Create React App构建而成,简单的做了下二次封装,s ...
分类:
其他好文 时间:
2020-02-04 11:02:21
阅读次数:
81
【MySql】日期时间 1、查询条件 2、常用函数 有 datetime 类型字段 publish_time 1、查询条件 库中存储 2004-02-04 格式 where DATE(publish_time) = '2004-02-04' 库中存储 08:08:08 格式 where DATE(p ...
分类:
数据库 时间:
2020-02-04 11:02:04
阅读次数:
88
其实,一开始我应聘的是Spark,Hadoop这样的,然后后面呢,发现只有Java的业务给我写了,再后面我发现,公司招不到前端,所以前端要由后端来写,刺激!!!数据驱动首先要明白一个概念,那就是DOM其实是数据的一种映射,在之前jQuery的时代,当数据发生改变时,我们需要手动改变DOM,而Vue的... ...
分类:
其他好文 时间:
2020-02-04 11:01:46
阅读次数:
90
在ASP.NET Core中要如何使用HttpContext呢,下面就来具体学习ASP.NET Core HttpContext。 注入HttpContextAccessor ASP.NET Core中提供了一个IHttpContextAccessor接口,HttpContextAccessor 默 ...
分类:
Web程序 时间:
2020-02-04 11:01:33
阅读次数:
98
android studio apply script build.gradle 卡死 buildscript { repositories { maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'} google() } ...
分类:
移动开发 时间:
2020-02-04 11:00:47
阅读次数:
83
近日在用Git下载工程时出现以下的错误: 即需要提供SSH凭据,以及在用Git Bash clone导入时报如下的错误: “remote: HTTP Basic: Access denied” 于是根据别人借鉴的方法得出以下的解决方式: “remote: HTTP Basic: Access den ...
分类:
其他好文 时间:
2020-02-04 11:00:12
阅读次数:
210
1、进入项目,找到 .idea/workspace.xml 文件 里面没有run Dashboard的组件,需要手动加上 <component name="RunDashboard"> <option name="configurationTypes"> <set> <option value="S ...
分类:
其他好文 时间:
2020-02-04 10:59:31
阅读次数:
300
Config file Nginx.conf 配置文件主要分为三部分: 全局块 Events 块 HTTPS 块 Global Block 指主要配置影响全局的参数,配置对Server的运行,包括运行的用户组,进程PID存放路径、日志存放路径以及配置文件的引入。 如下配置: user nobody; ...
分类:
其他好文 时间:
2020-02-04 10:58:55
阅读次数:
65
举例: $('div') React.createElement 结构: 简单工厂模式包含如下角色: Factory:工厂角色工厂角色负责实现创建所有实例的内部逻辑 Product:抽象产品角色抽象产品角色是所创建的所有对象的父类,负责描述所有实例所共有的公共接口 ConcreteProduct:具 ...
分类:
其他好文 时间:
2020-02-04 10:58:29
阅读次数:
93