51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#GA
即插即用,基于阿里云Ganos快速构建云上开源GIS方案
对于轻量级GIS应用,选择具备时空能力的云上数据库再搭配开源GIS软件,能够快速构建稳定、廉价、实用的GIS解决方案。Ganos是阿里云自研时空基础设施(PaaS层)的核心引擎,该引擎整合了云上异构计算并行加速、OSS大规模存储等基础设施能力,上层与RDSPostgresSQL数据库、POLARDBforPG/Orac...
代码星球
·
2021-02-23
即插
即用
基于
阿里
Ganos
GAC简述
GAC简介 GAC全称是GlobalAssemblyCache作用是可以存放一些有很多程序都要用到的公共Assembly,例如System.Data、System.Windows.Forms等等。这样,很多程序就可以从GAC里面取得Assembly,而不需要再把所有要用到的Assembly都拷贝到应用程序的执行目录下...
代码星球
·
2021-02-23
GAC
简述
mongodb的安装与使(三)之复杂操作 嵌套array查询,aggregate $unwind $match $project
mongodb多层嵌套查询官网案例:db.inventory.insertMany([{item:"journal",instock:[{warehouse:"A",qty:5},{warehouse:"C",qty:15}]},{item:"notebook",instock:[{warehouse:"C",qty:...
代码星球
·
2021-02-22
mongodb
安装
复杂
操作
嵌套
schannel: next InitializeSecurityContext failed: SEC_E_ILLEGAL_MESSAGE错误
curl:(35)schannel:nextInitializeSecurityContextfailed:SEC_E_ILLEGAL_MESSAGE(0x80090326)-ThiserrorusuallyoccurswhenafatalSSL/TLSalertisreceived(e.g.h...
代码星球
·
2021-02-22
schannel
next
InitializeSecurityContext
failed
SEC
socket.gaierror: [Errno 11001] getaddrinfo failed
...
代码星球
·
2021-02-22
socket.gaierror
Errno
11001
getaddrinfo
failed
Illegal mix of collations (utf8mb4_general_ci,IMPLICIT) and (utf8mb4_unicode_ci,IMPLICIT) for operation '<>'
1.问题今天又在mysql中遇到了,吐血。 SQL最后加上COLLATEutf8mb4_unicode_ciSELECTt2.cust_idascust_id_ex,t1.*from(SELECT*fromcredit_nigeria.applyWHEREupdateTime>"2019-11-10")...
代码星球
·
2021-02-22
utf8mb4
ci
IMPLICIT
Illegal
mix
Vue router报错:NavigationDuplicated {_name: "NavigationDuplicated", name: "NavigationDuplicated"}的解决方法
在main.js下添加:importRouterfrom'vue-router'Vue.use(Router)constoriginalPush=Router.prototype.pushRouter.prototype.push=functionpush(location){returnoriginalPush.ca...
代码星球
·
2021-02-22
name
quotNavigationDuplicated
quot
Vue
router
基于Material-Design的Gank-IO客户端
title:基于MaterialDesign的GankIO客户端date:2017-03-1312:58:03tags:-Android-MaterialDesign-RxJava-Retrofit-ButterKnife-MVPcategories:/版权声明:本文为博主原创文章,未经博主允许不得转载。微博:厉圣杰源...
代码星球
·
2021-02-21
基于
Material-Design
Gank-IO
客户端
微信小程序 wx.navigateTo()传参及多个参数方法
varworkModeAndPriceList=res.data.data.workModeAndPriceList;//varresult=JSON.stringify(workModeAndPriceList);//console.log(workModeAndPriceList);//console.log(re...
代码星球
·
2021-02-21
微信
程序
wx.navigateTo
传参
多个
信号之sigaction函数
sigaction函数的功能是检查或修改与指定信号相关联的处理动作(或同时执行这两种操作)。#include<signal.h>intsigaction(intsigno,conststructsigaction*restrictact,structsigaction*restrictoact);返回值:若...
代码星球
·
2021-02-21
信号
sigaction
函数
android使用DialogFragment出现java.lang.IllegalStateException: Can not perform this action after onSaveInstanceState的解决方法
调用dialog.show(getSupportFragmentManager(),"tag");时出现了java.lang.IllegalStateException:CannotperformthisactionafteronSaveInstanceState的错误。报错的原因:dialog.show()方法的内部...
代码星球
·
2021-02-20
android
使用
DialogFragment
出现
java.lang.IllegalStateException
Android DialogFragment 遇到 java.lang.IllegalStateException: Fragment already added: 的解决方法
使用AppCompatDialogFragment或者DialogFragment的过程中遇到java.lang.IllegalStateException:Fragmentalreadyadded:的解决方法:privateCountryChooseDialogmCountryChooseDialog;private...
代码星球
·
2021-02-20
Android
DialogFragment
遇到
java.lang.IllegalStateException
Fragment
spark-聚合算子aggregatebykey
spark-聚合算子aggregatebykeyAggregatethevaluesofeachkey,usinggivencombinefunctionsandaneutral"zerovalue".Thisfunctioncanreturnadifferentresulttype,U,thanthetypeofth...
代码星球
·
2021-02-20
spark-
聚合
算子
aggregatebykey
delegate委托事件(动态创建元素注册事件)
有这样一个小例子:<!--需求:给li里的a标签注册点击事件,并且点击“添加”按钮,新增li标签,新增的li里的a同样有注册事件--><inputtype="button"id="btn"value="添加"/><ulclass="box"><li><ahref="...
代码星球
·
2021-02-20
事件
delegate
委托
动态
创建
模型监控指标- 混淆矩阵、ROC曲线,AUC值,KS曲线以及KS值、PSI值,Lift图,Gain图,KT值,迁移矩阵
确定截断点后,评价学习器性能假设训练之初以及预测后,一个样本是正例还是反例是已经确定的,这个时候,样本应该有两个类别值,一个是真实的0/1,一个是预测的0/1 TP(实际为正预测为正),FP(实际为负但预测为正),TN(实际为负预测为负),FN(实际为正但预测为负)通过混淆矩阵我们可以给出各指标的...
代码星球
·
2021-02-20
矩阵
曲线
KS
模型
监控
首页
上一页
...
23
24
25
26
27
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他