码迷,mamicode.com
首页 >  
搜索关键字:xvfb xhost display soffice runoffice    ( 13920个结果
多进程
code import os from multiprocessing import Process def f(x): print('子进程id :',os.getpid(),'父进程id :',os.getppid()) return x*x if __name__ == '__main__': ...
分类:系统相关   时间:2020-12-31 12:06:57    阅读次数:0
获取线程的执行结果
code import threading from queue import Queue import time def timeit(f): def wrapper(*args, **kwargs): start_time = time.time() res = f(*args, **kwarg ...
分类:编程语言   时间:2020-12-31 11:57:23    阅读次数:0
pandas使用总结
当有中文列的时候,设置列对齐: pd.set_option('display.unicode.ambiguous_as_wide', True) pd.set_option('display.unicode.east_asian_width', True) Pandas按行遍历DataFrame的3 ...
分类:其他好文   时间:2020-12-31 11:44:48    阅读次数:0
华为 VRP系统管理
删除/永久删除文件 delete /unreserved 恢复删除的文件 undelete 彻底删除回收站中的文件 reset recycle-bin 显示当前配置文件 display current-configuration 显示保存的配置文件 display saved-configurati ...
分类:其他好文   时间:2020-12-28 11:28:47    阅读次数:0
Techme Inc热心公益事业 积极开展公益活动
从2015年起,Techme inc(公司编号:20151524696)便通过优质的产品和服务,帮助顾客实现营养与健康的目标。与此同时,Techme inc(公司编号:20151524696)多年来始终热衷于公益慈善事业,将大爱与温暖传递给了越来越多的人。 慈善与公益是Techme inc(公司编号 ...
分类:其他好文   时间:2020-12-25 12:57:17    阅读次数:0
Codeforces Round #104 (Div.2)补题报告
B - Lucky Mask Petya loves lucky numbers very much. Everybody knows that lucky numbers are positive integers whose decimal record contains only the lu ...
分类:其他好文   时间:2020-12-25 12:22:13    阅读次数:0
win10+centos7+hadoop 集群环境搭建
一. 前期准备 1. Vmware workstation pro 16 官网下载 : https://www.vmware.com/ 密钥:ZF3R0-FHED2-M80TY-8QYGC-NPKYF (若失效请自行百度) 2. xshell,xftp 官网下载(需要注册) 3. 国内镜像网站下载c ...
分类:Windows程序   时间:2020-12-25 12:00:06    阅读次数:0
HTTP压缩
一、问题描述 有一页面打开需要11s左右,通过谷歌DevTools工具可以看看到,服务器接口的响应是很快的(TTFB也就200ms),但是前端接收数据的时间有点长(Content Download达到了11s)。经过查看后发现接口返回的数据量达到了12M,数据量比较大。 二、解决方案 1、优化代码, ...
分类:Web程序   时间:2020-12-22 12:36:41    阅读次数:0
css-布局-砖墙布局
<body> <style> #container { width: 100%; max-width: 700px; margin: 2em auto; } .cols { -moz-column-count: 3; -moz-column-gap: 3%; -moz-column-width: 3 ...
分类:Web程序   时间:2020-12-21 12:13:04    阅读次数:0
移动端 弹性布局
一、弹性布局(flex布局) #1. Flex 布局是什么? Flex 是 Flexible Box的缩写,意为"弹性布局",用来为盒状模型提供最大的灵活性。 任何一个容器都可以指定为 Flex 布局。 .box{ display: flex; } 行内元素也可以使用 Flex 布局。 .box{ ...
分类:移动开发   时间:2020-12-19 11:46:11    阅读次数:2
13920条   上一页 1 ... 16 17 18 19 20 ... 1392 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!