码迷,mamicode.com
首页 >  
搜索关键字:basic compress    ( 5468个结果
软件包管理
tar *.Z 使用compress压缩的文件 *.zip 使用zip压缩的文件 *.gz 使用gzip压缩 *.bz2 使用bzip2压缩 *.xz 使用xz压缩 *.tar 使用tar工具打包,没有压缩 *.tar.gz 使用tar工具打包,经过gzip压缩 *.tar.bz2 使用tar工具打 ...
分类:其他好文   时间:2020-05-20 12:05:56    阅读次数:50
Bitwise Operators
C and C++ allow various types of operators. By now, you should be familiar with the basic binary operators +, -, *, / and the boolean operators <, >, ...
分类:其他好文   时间:2020-05-19 12:14:52    阅读次数:62
File IO (Basic Knowledge)
2 (1) 3 #include<stdio.h> 4 FILE * myFile = NULL; 5 myFile = fopen(“input_file.dat” , “r”); 6 /* r-> open for reading w-> writing a-> appending */ 7 I ...
分类:其他好文   时间:2020-05-19 09:16:40    阅读次数:56
logrotate自动切割某一服务模板
切割的前提是服务的脚本放在/var/log下面,而且以.log结尾 bash FW=nginx A=daily B=weekly C=yearly /var/log/$FW/ .log { $A missingok rotate 52 compress delaycompress notifempt ...
分类:其他好文   时间:2020-05-16 10:30:38    阅读次数:54
Some Basic Concepts
1.Scalability 多加一台机器可多做一件事,这个就叫scalability,亦可为两台机器做一件事的时间减少为一半,叫 scalability speed up。 2.Parallelism 并行,跟concurrency不一样,这张图能很好说明区别: 3.Fault tolerance ...
分类:其他好文   时间:2020-05-16 00:51:44    阅读次数:57
php压缩html代码减少页面响应时间
function compress_html($string) { $string = str_replace("\r\n", '', $string); //清除换行符 $string = str_replace("\n", '', $string); //清除换行符 $string = str_ ...
分类:Web程序   时间:2020-05-14 17:41:15    阅读次数:69
java不解压tar.gz读取包里面的某个文件内容
<dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <version>1.18</version> </dependency> package com.example ...
分类:编程语言   时间:2020-05-13 09:43:13    阅读次数:106
FreeMarker & Mybatis & Basic OGNL expressions
Basic OGNL expressions OGNL Apache Commons OGNL Language Guide https://commons.apache.org/proper/commons ognl/language guide.html mybatis:org.apache.i ...
分类:其他好文   时间:2020-05-12 20:20:21    阅读次数:66
kubernetes v1.18.2 二进制双栈 kubelet 部署
kubernetes v1.18.2 二进制部署双栈 kubelet 部署
分类:Web程序   时间:2020-05-09 00:24:23    阅读次数:79
Vue 动态表格+插入自定义表头
Vue 动态表格+插入自定义表头 <!-- 表格 --> <el-table :data="templateData" style="width: 100%;" stripe ref="templateTable" :empty-text="$t('basic.noData')" @filter-c ...
分类:其他好文   时间:2020-05-07 18:14:31    阅读次数:190
5468条   上一页 1 ... 24 25 26 27 28 ... 547 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!