android studio 升级到了3.0 取消了apt 报了这个错Could not find com.android.tools.build:aapt2:3.2.0-alpha14-4748712.Searched in the following locations: file:/D:/an ...
分类:
移动开发 时间:
2018-12-27 15:36:08
阅读次数:
239
上次虽然把环境搭好了,但是实际运行起来一堆错误,下面简述一下踩的坑。 1、hadoop fs -put上传文件失败 报错信息:(test文件夹是已经成功建好的) Linux报的错误是datanode节点不存在,但是去slave机器上jps发现datanode运行的好好的。然后去网上查找资料,有博客说 ...
分类:
其他好文 时间:
2018-12-27 15:28:15
阅读次数:
341
PyCharm的模板设置 在File—settings—File and Code Templates—Python script 脚本里添加: 保存,新建py文件,就可以实现自动化文件模板。 Predefined template variables The following predefine ...
分类:
其他好文 时间:
2018-12-22 16:40:03
阅读次数:
185
背景:1.前台:JQUERY 提交数据 2.后台:OWIN C# 处理接收数据 3.数据库: postgresql 问题描述: 后台接收到前台的数据,拼装一个 SQL 语句 我在后台C# 用 Npgsql 执行时总是报错:invalid input syntax for type json 奇怪的是 ...
分类:
数据库 时间:
2018-12-21 01:07:02
阅读次数:
245
Switch 我们在UI自动化测试时,总会出现新建一个tab页面、弹出一个浏览器级别的弹框或者是出现一个iframe标签,这时我们用WebDriver提供的Api接口就无法处理这些情况了。需要用到Selenium单独提供的模块switch_to模块 SwitchToWindows SwitchToF ...
https://weblog.west-wind.com/posts/2015/Apr/29/Adding-minimal-OWIN-Identity-Authentication-to-an-Existing-ASPNET-MVC-Application 将最小的OWIN身份验证添加到现有的ASP ...
Median is the middle value in an ordered integer list. If the size of the list is even, there is no middle value. So the median is the mean of the two ...
分类:
其他好文 时间:
2018-12-18 00:07:35
阅读次数:
199
SpringBoot学习-SpringMVC自动配置 前言 在SpringBoot官网对于SpringMVCde 自动配置介绍 1-原文介绍如下: Spring MVC Auto-configuration Spring Boot provides auto-configuration for Sp ...
分类:
编程语言 时间:
2018-12-15 19:47:20
阅读次数:
255
实现效果: 知识运用: API函数SetWindowLong和GetWindowLong 在调用API函数的时候要添加 System.Runtime.InteropService命令空间 [DllImport("user32", EntryPoint = "GetWindowLong")] //从指 ...