(二)TCP/IP协议簇简介

  • Post author:
  • Post category:其他

参考: https://blog.csdn.net/wuzhiwei549/article/details/105965493 TCP/IP协议详解_王佳斌的博客-CSDN博客_tcp/ip协议 小林《图解网络》 什么是TCP/IP协议?_程序员小灰的博客-CSDN博客_tcp/ip协议 TCP/IP协议簇 对于同⼀台设备上的进程间通信,有很多种⽅式,⽐如有管道、消息队列、共享内存、信号等式,⽽对…

继续阅读 (二)TCP/IP协议簇简介

搞懂敏感性、特异性以及精确率和召回率的关系

  • Post author:
  • Post category:其他

文章目录 1.引言2.定义3.例子1.低精确率,高召回率,高特异性2.高精确率,高召回率,低特异性3.高精确率,低召回率,高特异性4.低精确率,低召回率,高特异性5.高精确率,低召回率,低特异性6.低精确率,高召回率,低特异性7.高精确率,高召回率,高特异性8.低精确率,低召回率,低特异性 4.小结 1.引言 在数据科学中,查看精确率和召回率来评估构建的模型是很常见的。而在医学领域,通常要观察特异…

继续阅读 搞懂敏感性、特异性以及精确率和召回率的关系

力扣704题 c++题解

  • Post author:
  • Post category:其他

①c++完整代码 采用find函数: #include<algorithm> #include<vector> #include<iostream> using namespace std; class Solution { public: int search(vector<int>& nums, int target) { vector&…

继续阅读 力扣704题 c++题解

IDEA项目打包几种方式

  • Post author:
  • Post category:其他

IDEA项目打包几种方式 第一种,最常见的使用maven 项目的pom文件中引入spring-boot-maven-plugin插件 <build> <finalName>文件名称</finalName> <plugins> <plugin> <groupId>org.springframework.boot</grou…

继续阅读 IDEA项目打包几种方式

DB2 数据表增加非空字段

  • Post author:
  • Post category:其他

DB2 数据库的表中增加一个非空字段居然会报错,因为以前使用过的 Oracle 和 MySQL 都是可以直接增加的。 有两种方法: 1、增加允许为空的字段,新增字段写入数据后再改为 not null 2、指定非空的同时,指定默认值:alter table test add id int not null default 0

继续阅读 DB2 数据表增加非空字段

blur和onblur的区别

  • Post author:
  • Post category:其他

onblur 是原生 js 的写法,可以直接写在元素的属性中或者在脚本中定义; ,或者 blur 才是jQuery 的方法,直接绑定对象; $( ‘#demo’ ).blur( function(){ } ) 版权声明:本文为yrxfight原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。原文链接:https://blog.csdn.net/yrxfight/a…

继续阅读 blur和onblur的区别

mongodb数据类型

  • Post author:
  • Post category:其他

1.mongodb数据类型 object id:文档自动生成的_id,唯一标识string:字符串,必须是utf-8boolean:布尔型,true/falseinterger:整数double:浮点数arrays:数组或列表object:字典类型null:空数据类型timestamp:时间戳date:日期 2.mongodb的Number NumberLong()和NumberLong("") …

继续阅读 mongodb数据类型

sql关键字和字段冲突时的解决方案

  • Post author:
  • Post category:其他

sql关键字和字段冲突时的解决方案 sql里面字段名和关键字冲突时,使用“”把关键字引起来,sql就可以执行。 eg: select a.by from a // × select a."by" from a //√ 去除双引号的方法:trim(replace(变量或者字符串,‘"’,‘’)。 版权声明:本文为wwr12138333原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文…

继续阅读 sql关键字和字段冲突时的解决方案

【Kubernetes】资源指标管道——部署Metrics Server

  • Post author:
  • Post category:其他

目录 1. Metrics API1.1 什么是Metrics API1.2 Metrics API 的作用1.3 Metrics API 的使用1.4 资源指标管道架构 2. Metrics Server2.1 什么是 Metrics Server2.2 Metrics Server 的作用2.3 Metrics Server 特点2.4 Metrics Server 使用场景 3. Metri…

继续阅读 【Kubernetes】资源指标管道——部署Metrics Server

fastjson有可能对spring-boot-starter-actuator造成影响

  • Post author:
  • Post category:其他

最近公司的项目迁移到k8s,为了配合k8s探针,项目统一使用spring-boot-starter-actuator。 主要用到两个探针接口: /actuator/health/readiness /actuator/health/liveness 如果项目中没有使用fastjson,这两个接口返回的内容没有问题,正确返回内容: {"status": "UP"} 如果使用了fastjson,并且使…

继续阅读 fastjson有可能对spring-boot-starter-actuator造成影响