一、压缩配置 #全局配置 http { gzip on; gzip_min_length 1k; gzip_buffers 4 16k; gzip_comp_level 2; gzip_types text/plain application/x-javascript text/css applic ...
分类:
其他好文 时间:
2020-04-08 12:12:18
阅读次数:
69
from serial import Serial from types import FunctionType,MethodType #与类和实例无绑定关系的function都属于函数(function); #与类和实例有绑定关系的function都属于方法(method)。 def open_s ...
分类:
其他好文 时间:
2020-04-08 11:50:12
阅读次数:
73
相关资料: https://www.it1352.com/624177.html 1 unit Unit2; 2 3 interface 4 5 uses 6 System.SysUtils, System.Types, System.UITypes, System.Classes, System. ...
分类:
移动开发 时间:
2020-04-08 09:42:13
阅读次数:
92
类型注解 作用:相当于强类型语言中的类型声明 语法:(变量/函数):type ...
分类:
其他好文 时间:
2020-04-06 22:15:54
阅读次数:
114
先看一个案例: package accelerate1.bean; public class Test1 { } package accelerate1.bean; public class Test2 { } package accelerate1.app; import accelerate1. ...
分类:
编程语言 时间:
2020-04-05 22:12:19
阅读次数:
73
MySQL支持的一种插入多行数据的INSERT语句写法是 对应的接口方法 xml文件配置方法: ...
分类:
其他好文 时间:
2020-04-05 11:46:40
阅读次数:
78
基于TypeScript编写的js解释器,100%支持ES5语法,支持浏览器、node.js、小程序运行环境
分类:
编程语言 时间:
2020-04-04 20:46:39
阅读次数:
92
姓名:祁翌炀 学号:201821121019 班级:计算1811 1. 编写程序 在服务器上用VIM编辑器编写一个程序:一个进程创建(fork)两个子进程。给出源代码: 1 #include <stdio.h> 2 #include <sys/types.h> 3 #include <unistd. ...
分类:
系统相关 时间:
2020-04-04 18:36:45
阅读次数:
99
姓名:巫艳珍 学号:201821121034 班级:计算1812 1. 编写程序 在服务器上用VIM编辑器编写一个程序:一个进程创建(fork)两个子进程。给出源代码: #include<sys/types.h> #include<stdio.h> #include<unistd.h> int ma ...
分类:
系统相关 时间:
2020-04-03 13:46:18
阅读次数:
74
先来明白 Array.prototype.slice 和 call的作用 Array.prototype.slice slice(begin, end) 方法返回一个新的数组对象,这一对象是一个由 begin 和 end 决定的原数组的浅拷贝(包括 begin,不包括end)。原始数组不会被改变。 ...
分类:
其他好文 时间:
2020-04-02 01:39:37
阅读次数:
71