摘要:
2017年上海市宝山区中考数学一模试卷.pdf 2019学年第一学期青浦区九年级期终学业质量调研测试.pdf 2019学年第二学期闵行区九年级质量监控考试.pdf 2019学年长宁区第一学期初三数学教学质量检测试卷.pdf 2019学年静安区第一学期期末教学质量调研.pdf 2019年上海市宝山区中 阅读全文
摘要:
public class MyClass { private static Object resourceA = new Object(); private static Object resourceB = new Object(); public static void main(String 阅读全文
摘要:
http://soft.moontoys.com/diskgeniuspjb_722.zip?md5=dqPh7g74-g0f1MfeqvTBnQ&expires=1632650937 turicreate入门系列文章目录 1,turicreate入门 - jupyter & turicreate安 阅读全文
摘要:
turicreate入门系列文章目录 1,turicreate入门 - jupyter & turicreate安装 2,turicreate入门 - 一个简单的回归模型 3,turicreate入门 - 优化回归模型,使得预测更准确 0,上传准备好的数据文件 fang_data2.csv 1,导入 阅读全文
摘要:
classloader.resolve-order: parent-first python.client.executable: /usr/bin/python 阅读全文
摘要:
<build> <plugins> <!-- any other plugins --> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <phase>package</phase> < 阅读全文
摘要:
%USERPROFILE%\AppData\Local 阅读全文
摘要:
1, 基于centos镜像,创建container并进入 docker run -it --privileged=true --name webserver2 -p 8888:80 centos /sbin/init 2, 安装并启动nginxyum install nginxsystemctl s 阅读全文
摘要:
wget http://vault.centos.org/7.5.1804/os/x86_64/Packages/lvm2-python-libs-2.02.177-4.el7.x86_64.rpmwget http://vault.centos.org/7.5.1804/os/x86_64/Pac 阅读全文
摘要:
安装python3 https://www.cnblogs.com/kimyeee/p/7250560.html 安装flink https://blog.csdn.net/weixin_39561762/article/details/107248059 安装pyflink python3 -m 阅读全文
摘要:
BDAS, the Berkeley Data Analytics Stack, is an open source software stack that integrates software components being built by the AMPLab to make sense 阅读全文
摘要:
传统的数据库多个实例、分区等:通常都是事后增加的,安装和维护都复杂;同时,还会影响链接、复杂查询等等。 HBase 是一个分布式的、多版本、面向列的开源 KV 数据库。运行在 HDFS 的基础上,支持 PB 级别、百万列的数据存储。 https://zhuanlan.zhihu.com/p/5418 阅读全文
摘要:
#user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; ev 阅读全文
摘要:
mvn dependency:tree 查看引用的jar包中,有没有相应的类。一般原因就是,使用到的那个版本的jar没有那个类。因为多个版本的jar存在,期望的那个被覆盖了。 阅读全文
摘要:
1.首先上官网下载相应的工具包(idea、pycharm),这里以IDEA为例子 2.然后下载一个第三方的jar包,我用的是下边这个jar包 jar链接:https://pan.baidu.com/s/10-KNv-5RycYazENDAjcYOA 密码:k19s 3.正常安装后先不打开软件将这个j 阅读全文
摘要:
由于执行顺序如下,故追个查看以下文件,看看是不是 JAVA_HOME, PATH 等环境变量在后面的文件中被重写覆盖了。 1. /etc/profile2. /etc/environment3. ~/.bash_profile4. ~/.bashrc5. /etc/bashrc 阅读全文
摘要:
创建文件 /etc/docker/daemon.json,写入国内镜像URL地址 注意: 阿里镜像URL (形如 https://rq5uyt7.mirror.aliyuncs.com) 需要注册后获得。 阅读全文
摘要:
1) vi /etc/sysconfig/grub 2) GRUB_CMDLINE_LINUX 在rhgb前加 vga=0x0317 (317为分辨率编码) 3) grub2-mkconfig -o /boot/grub2/grub.cfg Done. 阅读全文
摘要:
解决方案: 更新eclipse中的maven插件 1.1 Help -> Install New Software -> Add 1.2 Location中输入 http://repo1.maven.org/maven2/.m2e/connectors/m2eclipse-mavenarchiver 阅读全文
摘要:
其中,很可能的原因:项目存在编译错误,根本没有编译成功,没有生成class文件;可查看problems标签页查看具体错误。 阅读全文
摘要:
用ab爽得不要不要的。。。。。 阅读全文
摘要:
<settings> <!-- 打印查询语句 --> <setting name="logImpl" value="STDOUT_LOGGING" /> </settings>LOG4J2,STDOUT_LOGGING,SLF4J,LOG4J,... 阅读全文
摘要:
cd kafka_2.11-0.11.0.1 bin/zookeeper-server-start.sh config/zookeeper.properties bin/kafka-server-start.sh config/server.properties bin/kafka-topics.s 阅读全文
摘要:
看到一篇关于最佳线程数相关的文章,内容比较经典,不敢私藏,分享一下! 最佳线程数: 性能压测的情况下,起初随着用户数的增加,QPS会上升,当到了一定的阀值之后,用户数量增加QPS并不会增加,或者增加不明显,同时请求的响应时间却大幅增加。这个阀值我们认为是最佳线程数。 为什么要找最佳线程数 1.过多的 阅读全文
摘要:
a. String s = "abc"; JVM会根据实际情况决定是否有必要创建新的对象 String s = new String("abc"); 一概在堆中创建新的对象 ==比较对象的地址,equals比较值 b. final关键字 为什么String类是final?因为不想它被继承,试想,如果 阅读全文
摘要:
web.xml applicationContext.xml spring-web-config.xml 阅读全文
摘要:
1. 创建服务器密钥,其密钥库为 d:/mykeys/server.ks,注意keypass和storepass保持一致,它们分别代表 密钥密码和密钥库密码,注意 CN=localhost 中,localhost表示要配置SSL的主机名,不能任意指定 D:/mykeys>keytool -genke 阅读全文
摘要:
thymeleaf,官网文档中,那个配置有误(估计是代码更新了但是文档没有更新)。应该是这样的- 阅读全文