码迷,mamicode.com
首页 >  
搜索关键字:file which whereis find stat locate    ( 98661个结果
初步理解c语言栈的运行机理、代码段分区
栈区: 栈(stack):是一种先进后出的内存结构,所有的局部变量,函数的形参都是由编译器自动放出栈中,当一个自动变量超出其作用域时,自动从栈中弹出。出入栈是由C语言编译器自动分配释放。 栈大小(stacksize):通常可以配置编译器或通过改写链接文件调整栈空间大小。 栈溢出:当栈空间已满,还继续 ...
分类:编程语言   时间:2021-06-02 17:16:08    阅读次数:0
Python批量修改文件名
""" 注意:不要多次运行代码(最好执行代码前先备份所有需要修改的文件夹) """ import os if __name__ == '__main__': path = '****' # 文件存放路径 # 文件夹中所有文件的文件名 file_names = os.listdir(path) # 外 ...
分类:编程语言   时间:2021-06-02 17:14:37    阅读次数:0
【实例解决办法】Android Studio:design editor is unavailabel until after a successful project sync. / Gradle sync failed: Failed to open zip file. 解决办法
【实例解决办法】Android Studio:design editor is unavailabel until after a successful project sync. / Gradle sync failed: Failed to open zip file. 解决办法 Android ...
分类:移动开发   时间:2021-06-02 17:11:31    阅读次数:0
Linux查看多核CPU利用率
1.top 使用权限:所有使用者 使用方式:top [-] [d delay] [q] [c] [S] [s] [i] [n] [b] 说明:即时显示process的动态 d :改变显示的更新速度,或是在交谈式指令列( interactive command)按s q :没有任何延迟的显示速度,如果 ...
分类:系统相关   时间:2021-06-02 17:09:44    阅读次数:0
el表达式
<%@ page import="java.util.ArrayList" %> <%@ page import="java.util.List" %><%-- User: 丁帅帅 Date: 21/05/30 Time: 10:00 To change this template use File ...
分类:其他好文   时间:2021-06-02 17:00:39    阅读次数:0
python源码安装
make install的时候,根据提示安装依赖包 yum -y intall zlib zlib-devel libffi-devel tk-devel 1. 下载与解压 wget https://www.python.org/ftp/python/3.9.4/Python-3.9.4.tar.x ...
分类:编程语言   时间:2021-06-02 16:48:54    阅读次数:0
linux下单机版redis下载编译安装
liunx下redis下载编译安装 介绍 redis官网地址 https://redis.io/ redis下载地址 http://download.redis.io/releases/redis-5.0.5.tar.gz 可以本地下载然后filezila上传上去,或者liunx里面wget下载 解 ...
分类:系统相关   时间:2021-06-02 16:42:09    阅读次数:0
Linux中的which whereis locate
which which会在PATH环境中搜寻可执行文件 whereis Linux会将系统里面所有的文件都搜集到一个数据库文件中,whereis从这个数据库文件里面寻找文件 locate locate的使用很简单,直接在命令后面输入文件名或者部分名称,就能得到结果。locate和whereis一样, ...
分类:系统相关   时间:2021-06-02 16:12:00    阅读次数:0
Sharding-JDBC自定义复合分片算法
一、背景 最近在看 Sharding-JDBC方面的内容,此处简单记录一下使用Sharding-JDBC中的复合分片键来实现分表的方法。 二、需求 假设我们有一张订单表customer_order,为了防止单表数据量太大,需要进行分表操作。 此处需要分为3个表 customer_order_0、cu ...
分类:数据库   时间:2021-06-02 15:43:14    阅读次数:0
/etc/init.d/functions: No such file or directory报错问题
docker-centos7运行systemctl status jenkins, 出现/etc/rc.d/init.d/jenkins: line 59: /etc/init.d/functions: No such file or directory错误, yum安装即可 yum install ...
分类:其他好文   时间:2021-06-02 15:14:11    阅读次数:0
98661条   上一页 1 ... 32 33 34 35 36 ... 9867 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!