一、坏块验证 [oracle@lucky ~]$ dbv file='/u01/eisoo.dbf'DBVERIFY: Release 11.2.0.1.0 - Production on Thu Oct 2 16:08:24 2014Copyright (c) 1982, 2009, Oracle ...
分类:
其他好文 时间:
2021-01-13 11:20:08
阅读次数:
0
题目描述 Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that eac ...
分类:
其他好文 时间:
2021-01-13 11:07:09
阅读次数:
0
Channel 是 NIO 的核心概念,它表示一个打开的连接,这个连接可以连接到 I/O 设备(例如:磁盘文件,Socket)或者一个支持 I/O 访问的应用程序。Java NIO 使用缓冲区和通道来进行数据传输。 Java 应用IO设备缓冲区通道 一个通道在创建的时候被打开,可以调用 isOpen ...
分类:
编程语言 时间:
2021-01-13 11:03:10
阅读次数:
0
下载 wget https://archive.apache.org/dist/rocketmq/4.5.1/rocketmq-all-4.5.1-bin-release.zip 安装 unzip rocketmq-all-4.5.1-bin-release.zip 启动 cd rocketmq-a ...
分类:
编程语言 时间:
2021-01-13 11:00:51
阅读次数:
0
参见: http://thesecretlivesofdata.com/raft/ 的 slide 介绍。 ...
分类:
编程语言 时间:
2021-01-13 10:52:44
阅读次数:
0
from threading import Thread from time import sleep a = 1 def foo(): global a a = 1000 def bar(): sleep(1) print("a = ",a) t1 = Thread(target = foo) t ...
分类:
编程语言 时间:
2021-01-13 10:50:50
阅读次数:
0
1.添加配置文件 proxy.conf.json { "/api": { "target": "http://localhost:1111", "secure": false, "changeOrigin": true, "logLevel": "debug" } } 在 angular.json ...
分类:
其他好文 时间:
2021-01-13 10:41:41
阅读次数:
0
laravel邮件发送 使用邮件发送类Mail 文本 静态方法 raw() 富文本 静态方法 send() 注:使用邮件发送必须有邮件账号,需要开启smtp协议,现在主流服务器都支持,smtp默认端口号25,默认是关闭的,需要自行打开 以QQ邮箱为例 qq邮箱登录网址:https://mail.qq ...
分类:
其他好文 时间:
2021-01-13 10:31:03
阅读次数:
0
对于点击 <a target='_blank'> 标签打开新 tab 页的场景,Puppeteer目前(2019-03,v1.13.0)没有现成的 API 支持。因此需要一些 walkaround 来解决。有几个方案。 提取 href,手动打开新 page 去访问 url = await page. ...
分类:
其他好文 时间:
2021-01-13 10:29:59
阅读次数:
0
SpringMVC 1. 简介 Spring MVC属于SpringFrameWork的后续产品,已经融合在Spring Web Flow里面。Spring 框架提供了构建 Web 应用程序的全功能 MVC 模块。使用 Spring 可插入的 MVC 架构,从而在使用Spring进行WEB开发时,可 ...
分类:
编程语言 时间:
2021-01-12 11:16:08
阅读次数:
0