码迷,mamicode.com
首页 >  
搜索关键字:shared memory    ( 31942个结果
解决 SPARK_MASTER_OPTS is not allowed to specify max heap(Xmx) memory settings
SPARK_MASTER_OPTS is not allowed to specify max heap(Xmx) memory settings (was -Xms512m -Xmx1024m -Dcom.sun.management.jmxremote=true -Dcom.sun.manage ...
分类:其他好文   时间:2020-07-02 16:40:58    阅读次数:87
linux链接相关
程序函数库可分为3种类型:静态函数库(static libraries)、共享函数库(shared libraries)、动态加载函数库(dynamically loaded libraries): 静态函数库,是在程序执行前就加入到目标程序中去了; 共享函数库,则是在程序启动的时候加载到程序中,它 ...
分类:系统相关   时间:2020-07-02 16:10:56    阅读次数:85
向表格中插入图片
from docx import Document from docx.shared import Cm w=Document(r'F:\word练习\qq.docx') run=w.tables[0].cell(0,0).paragraphs[0].add_run() run.add_pictur ...
分类:其他好文   时间:2020-07-02 11:57:14    阅读次数:75
虚拟内存
虚拟内存是计算机系统内存管理的一种技术。它使得应用程序认为它拥有连续的可用的内存(一个连续完整的地址空间),而实际上,它通常是被分隔成多个物理内存碎片,还有部分暂时存储在外部磁盘存储器上,在需要时进行数据交换。目前,大多数操作系统都使用了虚拟内存,如Windows家族的“虚拟内存”;Linux的“交 ...
分类:其他好文   时间:2020-07-01 15:50:36    阅读次数:57
error while loading shared libraries: libhiredis.so.0.14: cannot open shared object file: No such file or directory
hiredis 的应用程序出错。 ./example-libevent: error while loading shared libraries: libhiredis.so.0.14: cannot open shared object file: No such file or directo ...
分类:其他好文   时间:2020-07-01 13:03:53    阅读次数:97
批量爬取网站上的文本和图片,并保存至word中
1 from pyquery import PyQuery as pq 2 import requests as rs 3 from docx import Document 4 from docx.shared import RGBColor 5 6 7 html = ''' 8 https:// ...
分类:Web程序   时间:2020-06-30 17:15:14    阅读次数:117
Redisson分布式锁
Redisson分布式 GitHub中文文档 概念:是一个在Redis的基础上实现的Java驻内存数据网格(In-Memory Data Grid)。它不仅提供了一系列的分布式的Java常用对象,还提供了许多分布式服务 引入依赖 <dependency> <groupId>org.redisson< ...
分类:其他好文   时间:2020-06-30 12:36:00    阅读次数:49
Core3.0使用Caching.Memory
前言 参考链接: 使用缓存:https://www.cnblogs.com/gygg/p/11275417.html 过期时间:https://www.cnblogs.com/maijin/p/7049355.html 使用过程 引用 Microsoft.Extensions.Caching.Mem ...
分类:其他好文   时间:2020-06-30 11:12:45    阅读次数:64
AcWing 920. 最优乘车 BFS DIJKSTRA SPFA 方法
地址 https://www.acwing.com/problem/content/description/922/ H城是一个旅游胜地,每年都有成千上万的人前来观光。 为方便游客, 巴士公司在各个旅游景点及宾馆,饭店等地都设置了巴士站并开通了一些单程巴士线路。 每条单程巴士线路从某个巴士站出发,依 ...
分类:Windows程序   时间:2020-06-29 21:28:02    阅读次数:75
Linux 内核参数Overcommit_memory(最近生产中Airflow和Greenplum有被这个参数坑到......)
###1. overcommit_memory是什么? overcommit_memory是一个内核对内存分配的一种策略。 具体可见/proc/sys/vm/overcommit_memory下的值 ###2. overcommit_memory有什么作用? overcommit_memory取值又 ...
分类:系统相关   时间:2020-06-29 15:03:16    阅读次数:89
31942条   上一页 1 ... 31 32 33 34 35 ... 3195 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!