码迷,mamicode.com
首页 >  
搜索关键字:mount new    ( 78676个结果
[Tools] YAML
If you are new to YAML, here is a useful link to a blog on YAML. YAML tutorial Here is a free tool that was mentioned in the video that can convert YA ...
分类:其他好文   时间:2021-05-04 16:11:49    阅读次数:0
死锁的代码
代码如下: /** * 死锁 * */ public class DeadThread { private static Object obj1 = new Object(); private static Object obj2 = new Object(); public static void ...
分类:其他好文   时间:2021-05-04 15:54:07    阅读次数:0
修改官方cubestore 支持minio s3
支持s3是cubestore 一个很不错的特性,可以提高系统的扩展性 参考修改 主要是添加endpoint 以及配置使用path格式请求 s3.rs impl S3RemoteFs { pub fn new( dir: PathBuf, region: String, endpoint:String ...
分类:其他好文   时间:2021-05-04 15:33:00    阅读次数:0
14.oss上传封装
import axios from "axios"; import { getOssTicket } from "@/pages/mb/constants/API"; // 拿到ticket const getTicket = function (): any { return new Promis ...
分类:Web程序   时间:2021-05-04 15:31:21    阅读次数:0
qt(添加资源图片 && 对话框)
//添加资源图片 右键项目->添加文件->Qt->QtResourceFile->起名称->添加前缀->添加文件 ui->actionopen->setIcon(QIcon(":/images/icon/1.png")); //设置对话框 //点击新建按钮弹出对话框 connect(ui->acti ...
分类:其他好文   时间:2021-05-04 15:29:11    阅读次数:0
Java中的异常
接下来我们来看看Java中的异常,想必大家多多少少都会听说过这样一个异常叫做空指针异常,我们来看代码演示: NullPointerException nullPointerException = new NullPointerException("空指针异常"); System.out.printl ...
分类:编程语言   时间:2021-05-04 15:26:38    阅读次数:0
关于各种锁的理解
公平锁,非公平锁 公平锁:非常公平,不能插队,必须先来后到 //参数写为true,就表示公平锁(不写默认就是非公平锁) public ReentrantLock(boolean fair) { sync = fair ? new FairSync() : new NonfairSync(); } 非 ...
分类:其他好文   时间:2021-05-04 15:15:22    阅读次数:0
Spring-模拟InitializingBean
代码结构: package com.java.spring; /** * 自定义InitializingBean * 作用:做初始化操作 */ public interface IInitializingBean { void afterPropertiesSet() throws Exceptio ...
分类:编程语言   时间:2021-05-03 12:55:47    阅读次数:0
java字符缓冲流复制文件
import java.io.*; //复制文件 public class BufferStream1 { public static void main(String[] args) throws IOException { BufferedReader bufferedReader = new ...
分类:编程语言   时间:2021-05-03 12:34:10    阅读次数:0
java字节流复制文件
import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; //字节流复制文件 public class FileInputStream2 { public static v ...
分类:编程语言   时间:2021-05-03 12:33:00    阅读次数:0
78676条   上一页 1 ... 42 43 44 45 46 ... 7868 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!