码迷,mamicode.com
首页 >  
搜索关键字:ted    ( 12016个结果
Golang Stream Api
package stream import ( "log" "reflect" "sort" ) type ( // a Stream is where one can drain data from Stream chan interface{} // buffer stream BufferSt ...
分类:Windows程序   时间:2021-04-13 12:15:56    阅读次数:0
Hardware assisted virtualization and data execution protection must be enabled in the BIOS. See https://docs.docker.com/docker-for-windows/troubleshoot/#virtualization
解决办法:先关闭 Hyper-V ,然后重新开启 Hyper-V 即可! 来自:https://zhuanlan.zhihu.com/p/51939654 ...
分类:移动开发   时间:2021-04-12 12:17:13    阅读次数:0
[Oracle工程师手记] 通过 lsof 命令查找oracle client 端和 server 端进程
通过 lsof 命令,可以找到 Oracle 的 client 端 和 server 端的进程。 例如,我从远端连接到 oracle 数据库: -bash-4.1$ sqlplus sys/oracle@my19c as sysdba SQL*Plus: Release 12.2.0.1.0 Pro ...
分类:数据库   时间:2021-04-10 13:37:55    阅读次数:0
877. Stone Game
Alex and Lee play a game with piles of stones. There are an even number of piles arranged in a row, and each pile has a positive integer number of sto ...
分类:其他好文   时间:2021-04-10 13:23:44    阅读次数:0
Java中的四种引用类型
简介 从JDK1.2版本开始,把对象的引用分为四种级别,从而使程序能更加灵活的控制对象的生命周期。这四种级别由高到低依次为:强引用、软引用、弱引用和虚引用,下面分别介绍下这四种引用。 强引用 强引用是最常用的引用类型,如下所示,new Object()会创建一个Object对象并存储在堆上,变量ob ...
分类:编程语言   时间:2021-04-09 13:32:44    阅读次数:0
实验2
text.1 x1, y1=1.2, 3.57 x2, y2=2.26, 8.7 print('{:-^40}'.format('输出1')) print('x1={}, y1 ={}'.format(x1, y1)) print('x2={}, y2 ={}'.format(x2,y2)) pri ...
分类:其他好文   时间:2021-04-09 13:25:16    阅读次数:0
微信小程序-导航栏制作
"tabBar": { "color": "#8a8a8a", "selectedColor": "#1AAD16", "backgroundColor": "#fff", "borderStyle": "white", "list": [ { "pagePath": "pages/index/in ...
分类:微信   时间:2021-04-08 13:41:30    阅读次数:0
K8S集群搭建
一、 环境和版本 1. 操作系统 干干静静的centos7系统,选取的是mini的iso最小化安装 # cat /etc/centos-release CentOS Linux release 7.3.1611 (Core) # cat /proc/version Linux version 3.1 ...
分类:其他好文   时间:2021-04-08 13:37:16    阅读次数:0
ansible 批量更新 nginx 配置,以及失败时的自动回滚样例
作者:weixin_34092455 https://blog.csdn.net/weixin_34092455/article/details/89733396 本文基于 ansible 2.3.0.0 编写 我们目前有 8 个大区共 24 台 nginx 服务器,每个区除了 upstream 地 ...
分类:其他好文   时间:2021-04-08 13:18:16    阅读次数:0
oracle如何导入dmp文件以及导出csv文件
###1、创建表空间 create tablespace TESTDATE表空间名 datafile 'E:\app\HP\oradata\orcl\TESTDATE.dbf(表空间DBF文件路径及名称)' size 500M (表空间大小) AUTOEXTEND ON NEXT 50M (每次自动 ...
分类:数据库   时间:2021-04-08 12:56:21    阅读次数:0
12016条   上一页 1 ... 11 12 13 14 15 ... 1202 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!