码迷,mamicode.com
首页 >  
搜索关键字:test2 unit11    ( 841个结果
docker网络
docker网络 Docker 允许通过外部访问容器或容器互联的方式来提供网络服务。 端口映射允许外部访问容器 --link 容器互联 容器桥接网络 1.通过--link容器通信,给test2添加一个hosts解析记录 docker run -d --name test2 --link test1 ...
分类:其他好文   时间:2019-11-28 13:44:30    阅读次数:55
CompletableService
public class CompletableServiceTest { public static void main(String[] args) throws ExecutionException, InterruptedException { // test1(); // test2(); ...
分类:其他好文   时间:2019-11-27 01:12:45    阅读次数:102
mongodb的增删改查
增加:db.collection_name.insert删除:db.collection_name.remove更新:db.collection_name.update查询:db.collection_name.find().pretty()操作实例:1.创建数据库usetest22.显示当前所有数据库showdbs3.刚创建的test2不会显示出来,需要往里面插入一些数据db.test2.ins
分类:数据库   时间:2019-11-26 09:28:58    阅读次数:86
CompletableFuture
public class CompletableFutureTest { public static void main(String[] args) throws Exception { // test2(); // test1(); // test3(); test4(); } //采用了cal ...
分类:其他好文   时间:2019-11-25 16:48:34    阅读次数:46
webpack 图片文件处理loader
目录结构: 引用图片: body { /*background: red;*/ /*background: url("../img/test2.jpg"); 小图片*/ background: url("../img/test.jpg"); /*大图片*/ } 安装url-loader和file-l ...
分类:Web程序   时间:2019-11-25 15:23:58    阅读次数:71
Python基础之读取ini文件
首先,有一份Ini文件 Allconfiguration1.ini [ITEMS] item1=1 item2=2 item3=3 item4=4 [ITEM1] test1=aaa [ITEM2] test2=bbb [ITEM3] test3=ccc [ITEM4] test4=ddd 然后读取 ...
分类:编程语言   时间:2019-11-18 18:10:32    阅读次数:85
案例一:打印超市的购物小票
一、题目:用IDEA打印出下列购物小票的信息,并贴出运行结果 二、代码: 1 package com.sz.zelin; 2 3 //这是注释,此处不执行!!! 这是程序的入口处!!! 4 5 public class Test2 { 6 public static void main(String ...
分类:其他好文   时间:2019-11-12 12:50:32    阅读次数:104
java从字节码角度解析案例(转)
本文来自于参考博客 1. 下面是一到Java笔试题: 1 public class Test2 2 { 3 public void add(Byte b) 4 { 5 b = b++; 6 } 7 public void test() 8 { 9 Byte a = 127; 10 Byte b = ...
分类:编程语言   时间:2019-11-12 11:21:01    阅读次数:107
Swift 5.X——函数
1.函数的定义 import UIKit /** 函数名:test1 参数类型:无 返回值类型:无 */ func test1(){ //函数体 } /** 函数名:test2 参数类型:无 返回值类型:Int */ func test2() -> Int{ //函数体 return 0 } /** ...
分类:编程语言   时间:2019-11-09 23:42:47    阅读次数:137
java 多文件打包压缩
public static void main(String[] args) { File[] srcFiles = { new File("E:\\testZip\\testZip.zip"), new File("E:\\testZip\\test2.json"), new File("E:\\... ...
分类:编程语言   时间:2019-11-05 18:48:14    阅读次数:96
841条   上一页 1 ... 9 10 11 12 13 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!