码迷,mamicode.com
首页 >  
搜索关键字:shared library    ( 12117个结果
free命令详细介绍
##第一部分Mem行: total 内存总数: 15.7G used 已经使用的内存数: 15.6G free 空闲的内存数: 93M shared 当前已经废弃不用,总是0 buffers Buffer 缓存内存数: 298M cached Page 缓存内存数:14G 对操作系统来讲是Mem的参 ...
分类:其他好文   时间:2021-04-05 11:44:12    阅读次数:0
chrome 密码不同步
chrome 密码不同步 ubuntu 删掉 ~/.config/google-chrome/Default/‘Login Data' mac mac 下该文件的路径是 /Library/Application Support/Google/Chrome/Profile 1/Login Data w ...
分类:其他好文   时间:2021-04-02 13:35:07    阅读次数:0
oracle 关于设置shared pool及sga大小
本文参考了https://blog.csdn.net/xinzhan0/article/details/52461611?locationNum=2&fps=1 如何设置shared pool及sga的大小 前面讲了很多关于shared pool的知识对我们来讲最简单最直接的工作是sharedpoo ...
分类:数据库   时间:2021-04-01 13:24:11    阅读次数:0
[Node.js] Resolve path problem in all envs (require.resolve)
When dealing with `fs` library, the common problem you will meet is the path to file. Different envs may have different way to handle the path. The be ...
分类:Web程序   时间:2021-03-30 13:42:21    阅读次数:0
curl http3
Build quiche and BoringSSL: % git clone --recursive https://github.com/cloudflare/quiche % cd quiche % cargo build --release --features ffi,pkg-config ...
分类:Web程序   时间:2021-03-29 11:40:19    阅读次数:0
Nginx反向代理WSS的配置
前言 nginx : version 1.18 server 配置参数 这里只给 server 参数 server { listen 443 ssl; server_name test.com; # 这里填域名,可以是二级域名,可以是正则域名 ssl_certificate "/srv/nginx/ ...
分类:其他好文   时间:2021-03-17 14:03:08    阅读次数:0
MATLAB 函数.m文件打包DLL 步骤
1. 准备.m文件 2. 打开工具箱APP里面的Library Compiler 3. 点击红框内的‘+’号,选择.m文件 4. 选择C++ Shared Library 5. 点击setting,选择DLL文件的输出路径 6. 点击Package打包DLL 7. 完成 ...
分类:其他好文   时间:2021-03-15 10:37:04    阅读次数:0
MSF原则
一、MSF原则概述 1 、推动信息共享与沟通( Foster open communication ) 2 、为共同的远景工作( Work toward a shared vision ) 3 、充分授权和信任( Empower team members ) 4 、各司其职,对项目共同负责( Est ...
分类:其他好文   时间:2021-03-12 14:07:48    阅读次数:0
C++内存管理之unique_ptr
一个unique_ptr"拥有“他所指向的对象。与shared_ptr不同,某个时刻只能有一个unique_ptr指向一个给定的对象。当unique_ptr被销毁时,它所指向的对象也被销毁。uniptr_ptr表达的是一种独占的思想。 初始化 #include <iostream> #include ...
分类:编程语言   时间:2021-03-10 13:24:43    阅读次数:0
C++11 shared_ptr(智能指针)详解
要确保用 new 动态分配的内存空间在程序的各条执行路径都能被释放是一件麻烦的事情。C++ 11 模板库的 <memory> 头文件中定义的智能指针,即 shared _ptr 模板,就是用来部分解决这个问题的。只要将 new 运算符返回的指针 p 交给一个 shared_ptr 对象“托管”,就不 ...
分类:编程语言   时间:2021-03-10 13:24:26    阅读次数:0
12117条   上一页 1 ... 6 7 8 9 10 ... 1212 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!