码迷,mamicode.com
首页 >  
搜索关键字:cannotopen shared ob    ( 4084个结果
LTE - DL-SCH HARQ Modeling
Introduction The Downlink Shared Channel (DL-SCH) is described in TS36.212, Section 5.3.2. This example demonstrates how a transmitter retransmits a s ...
分类:其他好文   时间:2020-07-05 19:12:43    阅读次数:86
python如何调用C语言程序
首先我们需要将编写好的c程序文件编译为动态库文件(后缀名为.so) 使用下面的命令: gcc 原文件名.c -shared -o 新文件名.so 然后在python程序中导入模块:from ctypes import * 在python中引入c动态库,并定义一个变量用来接收动态库: a=cdll.L ...
分类:编程语言   时间:2020-07-05 10:47:11    阅读次数:98
LTE DL-SCH and PDSCH Processing Chain
Introduction In LTE the Downlink Shared Channel (DL-SCH) is a transport channel used for the transmission of user data, dedicated control and user-spe ...
分类:其他好文   时间:2020-07-05 00:30:22    阅读次数:93
PostgreSQL--信号量和shmall 和 shmmax相关设置
一、shared_buffers与shmmax,shmall,max_connections的关系 1.1、shared_buffers与max_connections的关系 shared_buffers 是查询缓存,设置比较大可以提高PostgreSQL的效率,一般建议设置为系统内存的3/4,但是 ...
分类:数据库   时间:2020-07-04 16:52:42    阅读次数:80
去NGA之VB
我们以crackme第三题为例: 双击打开后,会出现这个NAG。 我们放入die,查看信息: 发现是VB的程序。 载入OB: 这里是一个十分明显的vb程序的特点:一个push一个call,我们查看这个0x004067D4的地址: 然后我们往后数0x4C个数字(ctrl+G,输入004067D4+4C ...
分类:其他好文   时间:2020-07-04 15:10:25    阅读次数:81
es集群share平衡问题
今天把集群关闭后会造成shards移动到其他正常节点,但是重新启动shares并不会移动到恢复的节点。 在网上找了一会儿资料发现一个方法: 把副本数调整为0,会自动平衡shares,再增加number_of_replicas,会自动再建立副本数。(怀疑是重启过程出现副本数损坏了),此时shared又 ...
分类:其他好文   时间:2020-07-03 15:54:28    阅读次数:108
给word中的表格增加行或者列
from docx import Document from docx.shared import Cm w=Document(r' ') w.tables[0].add_row() #给表格增加一行 w.tables[0].add_column(Cm(5)) #给表哥增加一列 print(len( ...
分类:其他好文   时间:2020-07-03 12:18:01    阅读次数:91
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
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
4084条   上一页 1 ... 11 12 13 14 15 ... 409 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!