出错信息 update Project p set p.returnCount=:returnCount,p.passTime =:passTime, p.returnTime=:returnTime where p.id=:id Not all named parameters have been ...
分类:
Web程序 时间:
2020-04-19 15:09:38
阅读次数:
90
5.3 Using this-> 5.3 this->的使用 For class templates with base classes that depend on template parameters, using a name x by itself is not always equiva ...
分类:
其他好文 时间:
2020-04-19 14:53:26
阅读次数:
50
Chapter 1: Nontype Template Parameters 第3章 非类型模板参数 For function and class templates, template parameters don’t have to be types. They can also be ordi ...
分类:
其他好文 时间:
2020-04-16 10:33:35
阅读次数:
88
pipeline { agent any parameters { choice( choices: 'feature\nmaster\npercent10', description: '选择要发布的分支,默认是feature', name: 'deploy_branch' ) choice( c ...
分类:
其他好文 时间:
2020-04-12 18:50:14
阅读次数:
147
1.背景 在做aes加密时,报错 Illegal key size or default parameters...有的jdk版本报错,有的不报错,原因在于: jdk 或jre\lib\security目录 下, 需要两个保密的jar文件 Oracle在其官方网站上提供了无政策限制权限文件(Unli ...
分类:
其他好文 时间:
2020-04-08 19:33:01
阅读次数:
74
Lambda 表达式,也可称为闭包。 Lambda 允许把函数作为一个方法的参数(函数作为参数传递进方法中)。 Lambda表达式的好处:1.可以使代码变的更加简洁紧凑。 lambda 表达式的语法格式如下: (paramenters) -> expression 或 (parameters)-> ...
分类:
其他好文 时间:
2020-04-06 15:54:43
阅读次数:
71
from math import log import operator """ 函数说明:计算给定数据集的经验熵(香农熵) Parameters: dataSet:数据集 Returns: shannonEnt:经验熵 Modify: 2018-03-12 """ def calcShannonE ...
分类:
其他好文 时间:
2020-04-03 12:24:45
阅读次数:
81
http.query New in version 2015.5.0 Query a resource, and decode the return data Passes through all the parameters described in the :py:func: : .. auto ...
分类:
Web程序 时间:
2020-03-28 21:38:06
阅读次数:
94
inspector.query Query the node for specific information. Parameters: scope : Specify scope of the query. System : Return system data. Software : Retur ...
分类:
其他好文 时间:
2020-03-28 21:35:10
阅读次数:
99
python的plot函数参数很多,其中主要有: plot([x], y, [fmt], data=None, **kwargs) plot([x], y, [fmt], [x2], y2, [fmt2], ..., **kwargs) Parameters x, y : array-like or ...
分类:
编程语言 时间:
2020-03-28 17:46:40
阅读次数:
1133