码迷,mamicode.com
首页 >  
搜索关键字:direct path write temp    ( 55479个结果
fastapi 挂载静态文件夹
from fastapi.staticfiles import StaticFiles app.mount(path='/coronavirus/',app=StaticFiles(directory=' ./coronavirus/static', name='static')) ...
分类:Windows程序   时间:2021-06-02 15:01:20    阅读次数:0
repo sync --help
repo sync --helpUsage: repo sync [<project>...] Options: -h, --help show this help message and exit显示此帮助消息并退出 -f, --force-broken continue sync even if ...
分类:其他好文   时间:2021-06-02 14:35:51    阅读次数:0
Oracle datapump相关sql语句汇总
--create directory create directory dump_dir as '/splex/dump'; grant read,write on directory dump_dir to public; --export full database schema expdp u ...
分类:数据库   时间:2021-06-02 14:24:07    阅读次数:0
FreeRTOS Heap Memory Management (4) - heap4源码分析
FreeRTOS Heap Memory Management (4) - heap4源码分析 /* FreeRTOS Kernel V10.4.1 */ ? heap4的实现与heap2非常相似,不同之处在于heap4需要合并相邻的 free block。请参考 FreeRTOS Heap Mem ...
分类:其他好文   时间:2021-06-02 14:23:01    阅读次数:0
SpringBoot整合kafka的简单应用
引入依赖 <!-- https://mvnrepository.com/artifact/org.springframework.kafka/spring-kafka --> <dependency> <groupId>org.springframework.kafka</groupId> <art ...
分类:编程语言   时间:2021-06-02 14:22:43    阅读次数:0
dockerfile部署java环境
FROM centos:8MAINTAINER xiaocaidaoRUN mkdir /usr/local/javaADD jdk-11.0.10_linux-x64_bin.tar.gz /usr/local/javaENV JAVA_HOME /usr/local/java/jdk-11.0. ...
分类:编程语言   时间:2021-06-02 14:15:02    阅读次数:0
四、zookeeper的Acl权限控制
一、概述 zookeeper 类似文件系统,client 可以创建节点、更新节点、删除节点,那么如何做到节点的权限的控制呢?zookeeper的access control list 访问控制列表可以做到这一点。 # 语法 # 采用特定的授权策略给特定的对象授予特定的权限 setAcl path a ...
分类:其他好文   时间:2021-06-02 14:07:32    阅读次数:0
IO流随笔
IO流 在java程序中,数据的输入、输出操作以“流”的方式进行 数据源:data source 提供原始数据的原始媒介。常见的:数据库、文件、其他程序、内存、网络连接、IO设备。 流的分类: 流的方向: 输入流:数据源到程序(InputStream、Reader读进来) 输出流:程序到目的地(Ou ...
分类:其他好文   时间:2021-06-02 13:45:35    阅读次数:0
排序 - 冒泡排序(C语言)
时间复杂度:O(N2) 空间复杂度:O(1) 稳定性:稳定 // 冒泡排序 void bubble_sort(int list[], int listSize) { int i, j, flag; int temp; for (i = listSize - 1; i >= 1; --i) { fla ...
分类:编程语言   时间:2021-06-02 13:42:30    阅读次数:0
MyBatis-Plus
MyBatis_Plus 代码生成器 开启Mapper接口扫描 @Configuration @EnableTransactionManagement @MapperScan("com.hu.mylearn.mapper") public class MyBatisPlusConfig { // 旧 ...
分类:其他好文   时间:2021-06-02 13:39:52    阅读次数:0
55479条   上一页 1 ... 20 21 22 23 24 ... 5548 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!