码迷,mamicode.com
首页 >  
搜索关键字:default write disk    ( 35536个结果
docker容器启动rabbitmq并开启web控制台
docker run -d -p 5672:5672 -p 15672:15672 --name rabbitmq -e RABBITMQ_DEFAULT_USER=admin -e RABBITMQ_DEFAULT_PASS=admin rabbitmq:3.8.16 docker exec -i ...
分类:Web程序   时间:2021-06-03 18:11:02    阅读次数:0
VUE 组件内全局变量
<template> <div> </div> </template> <script> var self = this; export default { }; </script> // scoped 样式只在本组件使用 <style scoped> /** * 导入css样式组件 * @impo ...
分类:其他好文   时间:2021-06-02 20:55:34    阅读次数:0
Python库
excel xlsxwriter XlsxWriter is a Python module that can be used to write text, numbers, formulas and hyperlinks to multiple worksheets in an Excel 200 ...
分类:编程语言   时间:2021-06-02 20:53:25    阅读次数:0
Laravel链接Mysql8注意事项
修改 my.cnf,使用原生密码 修改 /etc/mysql/my.cnf (我是 Ubuntu 16.04),添加下面一行: default-authentication-plugin= mysql_native_password然后重置密码: ALTER USER 'user'@'localho ...
分类:数据库   时间:2021-06-02 20:21:28    阅读次数:0
C++ 新标准生成随机数
在c++新标准之前通常使用c的函数rand来生成随机数。 现在可以使用下面这种方式: #include <random> #include <ctime> //生成0到9之前的随机整数 static std::default_random_engine e(time(0));//time(0)返回特 ...
分类:编程语言   时间:2021-06-02 20:13:41    阅读次数:0
计应191西 曲明明 第三组
using system;using system.collections.generic;using system.linq;using system.text;using system.threading.tasks;namespace consoleapplication3{ class pr ...
分类:其他好文   时间:2021-06-02 19:26:59    阅读次数:0
09 spark连接mysql数据库
1. 安装启动检查Mysql服务。##netstat -tunlp (3306) cd /usr/local/hive/lib ls mysql* cp mysql-connector-java-5.1.40-bin.jar /usr/local/spark/jars/ cd /usr/local/ ...
分类:数据库   时间:2021-06-02 19:00:44    阅读次数:0
Linux扩展根分区的方法
本操作有风险,建议操作前先备份 最近在用的阿贝云支持扩展根分区,有一块额外的储存空间。 准备 df -h 发现空间没有发生变化: fdisk -l 发现磁盘容量已经扩展: 对扩展的磁盘进行分区: 命令依次为: Fdisk /dev/sdb 对/dev/sdb进行分区 n 新建分区 1 分区号为1 两 ...
分类:系统相关   时间:2021-06-02 18:19:36    阅读次数:0
Unity 任意区域截图
IEnumerator getScreenTexture(RectTransform rectT) { yield return new WaitForEndOfFrame(); Texture2D screenShot = new Texture2D((int)rectT.rect.width, ...
分类:编程语言   时间:2021-06-02 17:50:21    阅读次数:0
aws - Default VPC and default subnets
Default VPC components When we create a default VPC, we do the following to set it up for you: Create a VPC with a size /16 IPv4 CIDR block (172.31.0. ...
分类:Web程序   时间:2021-06-02 15:47:16    阅读次数:0
35536条   上一页 1 ... 11 12 13 14 15 ... 3554 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!