码迷,mamicode.com
首页 >  
搜索关键字:always on    ( 2020个结果
docker部署jar文件
docker部署jar文件 1 #1. 在服务器中拉取jdk1.8的镜像 2 docker pull jdk8 3 #2. 创建目录 4 mkdir /docker 5 mkdir /docker/ys1p 6 mkdir /docker/ys1p/jar 7 mkdir /docker/ys1p/ ...
分类:编程语言   时间:2021-02-19 13:00:06    阅读次数:0
基于basys2的按键消抖
基于basys2的按键消抖模块,basys2的按键是高电平“1”表示按下. `module key_filter( clk,sys_rst_n,key_en,key_in); input clk; input sys_rst_n; input key_in; output key_en; //这两段 ...
分类:其他好文   时间:2021-02-18 13:26:52    阅读次数:0
Circular Sequence UVA - 1584
? Some DNA sequences exist in circular forms as in the following figure, which shows a circular sequence “CGAGTCAGCT”, that is, the last symbol “T” in ...
分类:其他好文   时间:2021-02-01 12:18:46    阅读次数:0
45. 跳跃游戏 II Jump Game II
Given an array of non-negative integers nums, you are initially positioned at the first index of the array. Each element in the array represents your ...
分类:其他好文   时间:2020-12-29 11:18:24    阅读次数:0
Docker安装Tomcat
一、拉取 docker pull tomcat 二、启动 需要启动一个tomcat,拷贝conf目录下的文件到宿主机docker run -d --name tomcat -v /home/docker/tomcat/conf:/usr/local/tomcat/conf -v /home/dock ...
分类:其他好文   时间:2020-12-25 11:40:36    阅读次数:0
Rabbitmq 容器安装
一、镜像拉取 docker pull rabbitmq:3.8.9-management-alpine 二、启动镜像 docker run -d --name rabbitmq --privileged=true --restart always -p 5672:5672 -p 15672:1567 ...
分类:其他好文   时间:2020-12-22 12:37:43    阅读次数:0
Docker-compose安装MinIO
新建文件docker-compose.yml vi docker-compose.yml 输入以下内容 version: '3.1' services: minio: image: minio/minio container_name: minio restart: always ports: - ...
分类:其他好文   时间:2020-12-16 12:31:38    阅读次数:2
MySQL的SQL语句 - 数据定义语句(14)- CREATE TABLE 语句 (1)
CREATETABLE语句1.CREATE[TEMPORARY]TABLE[IFNOTEXISTS]tbl_name2.(create_definition,...)3.[table_options]4.[partition_options]5.6.CREATE[TEMPORARY]TABLE[IFNOTEXISTS]tbl_name7.[(create_definition,...)]8.[ta
分类:数据库   时间:2020-12-10 11:02:48    阅读次数:4
Go-注释
注释 写给程序员看的,对代码的说明,包括功能、实现思路、参数说明 Go 单行-// Go 跨行-/* */ Go 中只要是对包外可导入需要写上注释 Demo // Write appends the contents of p to b's buffer. // Write always retur ...
分类:其他好文   时间:2020-12-10 10:57:08    阅读次数:3
不同场景,this 的指向问题汇总
定义:A property of an execution context (global, function or eval) that, in non–strict mode, is always a reference to an object and in strict mode can b ...
分类:其他好文   时间:2020-12-07 12:36:53    阅读次数:6
2020条   上一页 1 2 3 4 5 6 ... 202 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!