码迷,mamicode.com
首页 >  
搜索关键字:file system check    ( 106627个结果
树莓派4B-下载系统
官网下载镜像:https://www.raspberrypi.org/ 下载刷机工具 再往下翻 Manually install an operating system image 点击:See all download options 进入下载页面: 下载ubuntu server镜像,用工具刷入 ...
分类:其他好文   时间:2021-05-04 15:50:51    阅读次数:0
java8之Lambda
Lambda 表达式基础语法: java8中引入了一个新的操作符 "->" (lambda操作符) "->" 左侧Lambda表达式参数列表 "->" 右侧Lambda体,Lambda表达式所需执行的功能 语法格式一:无参,无返回值 () -> { } Runnable runnable = () ...
分类:编程语言   时间:2021-05-04 15:44:47    阅读次数:0
node.js createServer
const http=require('http') const fs=require('fs') const path=require('path') const server=http.createServer(function(req,res){ const {url}=req console ...
分类:Web程序   时间:2021-05-04 15:44:00    阅读次数:0
Python----OS 文件目录处理
import os # os.mkdir("n1") # 创建目录 # 创建文件 # with open('1.txt',mode='w') as file: # file.write('11111') # os.mknod("n1.txt") # 创建文件,windows上面不支持,linux中支 ...
分类:编程语言   时间:2021-05-04 15:43:42    阅读次数:0
linux c++(makefile)
makefile makefile|Makefile 目标:依赖 tab键 规则命令 版本一 app:main.c add.c gcc -o app -I./include main.c add.c 版本二 app: main.o add.o gcc -o app -I./include main. ...
分类:编程语言   时间:2021-05-04 15:41:38    阅读次数:0
AcWing 343. 排序
原题链接 考察:Floyd 思路: 传递闭包应用题.也可以用拓扑排序,这里先练下传递闭包.拓扑排序以后补 传递闭包模板: 1 for(int k=1;k<=n;k++) 2 for(int i=1;i<=n;i++) 3 for(int j=1;j<=n;j++) 4 if(g[i][k]&&g[k ...
分类:编程语言   时间:2021-05-04 15:40:20    阅读次数:0
[GKCTF2020]EZ三剑客-EzWeb (buu)
1、查看源码得到网卡配置信息 2、输入本地地址,发现重复运行了index.php 3、ip爆破 4、端口爆破 5、用file协议读取文件 这里过滤了file://,可以使用file:/,file: ///,file:_///绕过,读取源码,过滤了 6、redis未授权访问gopher协议利用 过滤了 ...
分类:Web程序   时间:2021-05-04 15:28:31    阅读次数:0
安装pip报错Traceback (most recent call last): File "get-pip.py", line 22318, in <module> main()
原文链接:(1条消息) 安装pip报错Traceback (most recent call last): File "get-pip.py", line 22318, in <module> main()_festone000的专栏-CSDN博客 首选说明,我全部注释了Ubuntu自带的源,全改成 ...
分类:其他好文   时间:2021-05-04 15:28:07    阅读次数:0
IDEA开启热部署功能
1、【file】==》【settings】==》【build,execution,deployment】==》【compiler】==》勾选【build project automatically】。 2、【ctrl+shift+a】==》【actions】==》【registry】==》勾选【co ...
分类:其他好文   时间:2021-05-04 15:26:55    阅读次数:0
Java中的异常
接下来我们来看看Java中的异常,想必大家多多少少都会听说过这样一个异常叫做空指针异常,我们来看代码演示: NullPointerException nullPointerException = new NullPointerException("空指针异常"); System.out.printl ...
分类:编程语言   时间:2021-05-04 15:26:38    阅读次数:0
106627条   上一页 1 ... 55 56 57 58 59 ... 10663 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!