码迷,mamicode.com
首页 >  
搜索关键字:sel    ( 12804个结果
Elasticsearch 学习之子聚集过滤
1. 获取子聚合结果总数 { "size": 0, "aggs": { "msisdnAgg": { "terms": { "field": "msisdn" }, "aggs": { "tagAggs": { ... ...
分类:其他好文   时间:2019-02-24 23:10:57    阅读次数:363
EF ++属性会更新实体
var lastBaby = await _babyRepository.FirstOrDefaultAsync(); ++lastBaby.sort; -- sort原本为1 -- 最终会生成一条语句更新sort字段 exec sp_executesql N'SET NOCOUNT ON;UPDA ...
分类:其他好文   时间:2019-02-24 21:46:18    阅读次数:300
selenium 单选框/复选框定位
1.单选框radio定位: 直接定位即可 driver.find_element_by_id("*****") 2.复选框checkbox定位: 直接定位即可 driver.find_element_by_id("*****") 3.复选框全部勾选定位: (1)可以一个一个勾选定位 (2)可以定位一 ...
分类:其他好文   时间:2019-02-24 19:00:12    阅读次数:1427
PAT 甲级 A1039 (2019/02/22)
```C++ include include include include using namespace std; const int MAXN = 40010; const int MAXM = 26 26 26 10 + 1; vector selectCourses[MAXM]; //ve ...
分类:其他好文   时间:2019-02-24 11:06:36    阅读次数:164
python装饰器
作用:扩展原函数的功能,使用原函数名进行调用 原型-使用语法糖之前 import time def func(): print('大家好') time.sleep(0.1) def timmer(f): #装饰器函数 def inner(): start = time.time() f() end ...
分类:编程语言   时间:2019-02-24 10:20:25    阅读次数:185
1011 World Cup Betting (20 分)
1011 World Cup Betting (20 分) With the 2010 FIFA World Cup running, football fans the world over were becoming increasingly excited as the best player ...
分类:其他好文   时间:2019-02-24 00:18:50    阅读次数:168
mysql 不同条件count ,多条件count()
create table abc(A int,B int) Select A,count(B) as total from ABC group by A Select A,count(B) as total1 from ABC where B > 30 group by A Select A,cou ...
分类:数据库   时间:2019-02-23 23:05:26    阅读次数:836
《人月神话》读后感(三)
整体部分thewholeandtheparts 一读这一章,就让我感触颇深,特别是这句话"bell实验室监控系统项目的提出,'关键的工作是产品定义。许许多多的失败完全源于那些产品未精确定义的地方',细致的功能定义,详细的规格说明,规范话的功能描述说明以及这些方法的实施,大大减少了系统中必须查找的bu ...
分类:其他好文   时间:2019-02-23 21:52:39    阅读次数:222
DSAPI WIN7风格
在Winform项目中,有时需要将UI变成适应Vista/Windows7/8/10的风格,通过"选用"以下代码来使你的UI支持系统主题渲染. 注:该功能不支持XP。 新建工程,添加相关控件,复制粘贴以下代码即可 ...
分类:Windows程序   时间:2019-02-23 15:53:40    阅读次数:247
Python常用内建方法:__init__,__new__,__class__的理解
python中所有类都是继承自object, 而object提供了很多原始的内建属性和方法,所以用户自定义的类在Python中也会继承这些内建属性。可以使用dir()函数可以查看,虽然python提供了很多内建属性但实际开发中常用的不多。而很多系统提供的内建属性实际开发中用户都需要重写后才会使用。对 ...
分类:编程语言   时间:2019-02-23 01:34:15    阅读次数:197
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!