码迷,mamicode.com
首页 >  
搜索关键字:other    ( 5856个结果
ERROR: Pool overlaps with other one on this address space
出现问题 配置了两个不同的docker-compose.yml,使用了相同的网段,导致了在运行第二个yml文件时命令行报错目标网段已存在,报错如下: Creating network "v2_dev" with driver "bridge" ERROR: Pool overlaps with ot ...
分类:其他好文   时间:2020-06-18 19:58:35    阅读次数:131
python模块-collections
python抽象基类 collections.abc 1. tuple 特性: 不可变, 可迭代对象 拆包: user_tuple = ('name', 29,175) name,age,height = user_tuple name,*other = user_tuple ...
分类:编程语言   时间:2020-06-18 11:05:11    阅读次数:61
Python机器学习(十四)Logistic回归算法原理与代码实现
主要思想 根据现有数据对分类边界线建立回归公式,以此进行分类,其核心是通过最优化算法寻找最佳回归系数(权重系数),主要应用于二分类。 算法原理 二分类的特点是非此即彼,其数学特性符合单位阶跃函数,在某一点会发生突变。这也符合我们现实当中的一些应用场景(比如分数从0 到 60会很容易,越往上你所花的时 ...
分类:编程语言   时间:2020-06-17 19:55:29    阅读次数:55
Spring ApplicationContext下的refresh()方法
public class BeanTest{ @Test public void test(){ ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml"); ...
分类:移动开发   时间:2020-06-16 20:48:21    阅读次数:79
C#方法重载 -0024
C#支持方法的重载:方法名相同,但是方法的参数或参数类型不同。 class ResultDisplayer { public void DisplayResult(string result) { // implementation } public void DisplayResult(int r ...
分类:Windows程序   时间:2020-06-15 22:46:36    阅读次数:81
sonarQube安装及本机扫描C#项目
因项目需要,需要使用sonarQube对代码进行扫描并查看,因对sonarQube不熟悉,所以先在本机搭建测试环境。 参考了张老师的博客:http://www.cnblogs.com/danzhang/p/5205610.html 参考百度文库文章:http://wenku.baidu.com/vi ...
分类:Windows程序   时间:2020-06-15 17:32:17    阅读次数:69
1033 To Fill or Not to Fill
With highways available, driving a car from Hangzhou to any other city is easy. But since the tank capacity of a car is limited, we have to find gas s ...
分类:其他好文   时间:2020-06-14 01:10:06    阅读次数:71
样例本身的结构特征——提取和使用
Structural Information Often, the original problem formulation provides more insight into the structure of the problem. This can be exploited while ge ...
分类:其他好文   时间:2020-06-13 23:06:07    阅读次数:78
DP从入土到入门
做一大堆DP P5017 摆渡车 详见 P5017 摆渡车 - Luckyblock 算法一 设 \(f_i\) 在 \(i\) 时间发车,发车时等待的时间和的最小值。则显然有: \(f_i = \min_{j\le i-m}(f_j + \sum_{j < t_k \le i}^{n}{(i-t_ ...
分类:其他好文   时间:2020-06-13 19:34:16    阅读次数:98
IDEA配置JDK之六七八九!
注意: 配置前先检查电脑的java配置的JDK版本Windows+R ,输入进入控制窗口,输入java -version 如果不对先配置相应的jdk 一,点击右上角的File->Project Structure 二.file->Settings 三 File->Other Settngs->Set ...
分类:其他好文   时间:2020-06-12 22:59:15    阅读次数:100
5856条   上一页 1 ... 15 16 17 18 19 ... 586 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!