码迷,mamicode.com
首页 >  
搜索关键字:input source    ( 50636个结果
c语言中fgetc函数:显示文件内容
1、显示a.txt文件的内容 #include <stdio.h> int main(void) { FILE *fp; int ch; char filename[FILENAME_MAX]; printf("Please input the filename: "); scanf("%s", f ...
分类:编程语言   时间:2021-06-11 18:30:11    阅读次数:0
实验六 结构体
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20] ...
分类:其他好文   时间:2021-06-11 18:23:03    阅读次数:0
实验六
实验任务一 // P280例8.15 // 对教材上的程序作了微调整,把输出学生信息单独编写成一个函数模块 // 打印不及格学生信息和所有学生信息程分别调用 #include<stdio.h> #include<stdlib.h> #include<string.h> #define N 10 // ...
分类:其他好文   时间:2021-06-11 18:17:22    阅读次数:0
构建免费ip池
import reimport requestsimport timeimport randomfrom selenium import webdriverfrom tools.headers import headersfor item in range(1, 100): time.sleep(r ...
分类:其他好文   时间:2021-06-11 17:47:01    阅读次数:0
从CopyOnWriteArrayList谈等效不可变对象在源码中的应用
1 从CopyOnWriteArrayList谈等效不可变对象在源码中的应用 CopyOnWriteArrayList的源码中应用了等效不可变对象。使得集合在遍历操作的时候,不用加锁也能保证线程安全。 1.1 CopyOnWriteArrayList Source Code public class ...
分类:其他好文   时间:2021-06-10 18:38:35    阅读次数:0
hive cli转hive beeline的几个例子
#COMMAND="hive -i settings/load-${SCHEMA_TYPE}.sql -f ddl-tpch/bin_${SCHEMA_TYPE}/${t}.sql \ # -d DB=${DATABASE} \ # -d SOURCE=tpch_text_${SCALE} -d B ...
分类:其他好文   时间:2021-06-10 18:25:11    阅读次数:0
postgresql-13.1源码包编译安装(必定成功)
前言: 这个版本是安装在centos 7.4 的服务器上面,已经清理了防火墙策略,但是没有修改内核文件数,安装的难点在于环境变量配置,非安装配置本身。 1、安装准备 登录官网下载需要的版本,现在用的是13.1, https://www.postgresql.org/ftp/source/v13.1/ ...
分类:数据库   时间:2021-06-10 18:07:57    阅读次数:0
springboot整合amazonS3,封装上传文件接口
1.在pom.xml中引入amazonS3的依赖。 <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk-s3</artifactId> <version>1.11.792</version> </depende ...
分类:编程语言   时间:2021-06-10 17:34:05    阅读次数:0
5 - CentOS system configuration before k8s installation
Prerequisites: Node OS IP k8s-master CentOS7 192.168.137.161 k8s-node1 CentOS7 192.168.137.162 Now we have 2 working CentOS virtual machine, which can ...
分类:其他好文   时间:2021-06-08 23:40:34    阅读次数:0
源码编译安装pg13
源码下载地址:https://www.postgresql.org/ftp/source/ [root@muze1 data]# wget https://ftp.postgresql.org/pub/source/v13.2/postgresql-13.2.tar.gz-- 创建用户groupad ...
分类:其他好文   时间:2021-06-08 23:32:32    阅读次数:0
50636条   上一页 1 ... 9 10 11 12 13 ... 5064 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!