This document is a subset of the Mojo documentation. Contents Overview Scoped, Typed Handles Message Pipes Data Pipes Shared Buffers Native Platform H ...
分类:
编程语言 时间:
2019-01-25 18:53:05
阅读次数:
176
#!/usr/bin/envpython2#-*-coding:utf-8-*-"""CreatedonSatSep1510:54:532018@author:myhaspl@email:myhaspl@myhaspl.com读取文件"""importtensorflowastfimportosg=tf.Graph()withg.as_default():#生成文件名队列fileName=os.g
分类:
其他好文 时间:
2019-01-17 23:41:28
阅读次数:
206
https://blog.csdn.net/Mr_Runner/article/details/83684088 问题:new出来的实例中含有@Autowired注入时,注入的Bean为null; 解决方法:不要用new的方式实例化,也采用注解的方式,在需要new的实例类上加@Component注解 ...
分类:
编程语言 时间:
2019-01-17 15:19:03
阅读次数:
277
unittest是python自带的单元测试框架,包含测试用例case,测试集suite,测试集加载loader,测试执行runner,测试结果result等。 简单使用:写一个用例类继承自unittest.TestCase。 1 setUP() : 用例前的准备操作。每条用例执行前调用。 2 te ...
分类:
其他好文 时间:
2019-01-16 22:57:21
阅读次数:
204
一、用例编写规则 1.unittest提供了test cases、test suites、test fixtures、test runner相关的类,让测试更加明确、方便、可控。使用unittest编写用例,必须遵守以下规则: (1)测试文件必须先import unittest (2)测试类必须继承 ...
分类:
其他好文 时间:
2019-01-15 17:14:23
阅读次数:
183
线程的其他方法: Threading.current_thread() #当前线程对象 GetName() 获取线程名 Ident 获取线程id Threading.Enumerate() #当前正在运行的线程对象的一个列表 Threading.active_count() #当前正在运行的线程数量 ...
分类:
编程语言 时间:
2019-01-14 23:12:29
阅读次数:
261
import gevent #第一次使用需要cmd窗口敲入 pip install Gevent from gevent import monkey:monkey.patch_all import time def f1(): print('第一次f1') time.sleep(2) print(' ...
分类:
其他好文 时间:
2019-01-14 21:34:16
阅读次数:
194
楼主今天第一次用python基于greenlet实现的第三方协程库gevent,由于gevent在切换IO操作(文件IO、网络IO)时是自动完成的,所以gevent需要通过修改Python自带的一些阻塞式系统调用的标准库,包括socket、ssl、threading和 select等模块,而变为协程 ...
分类:
编程语言 时间:
2019-01-14 18:58:39
阅读次数:
397
adb shell monkey -p com.xy.android.junit -s 500 -v 10000 adb shell monkey -p com.xy.android.junit -s 500 --ignore-crashes --ignore-timeouts --monitor- ...
分类:
其他好文 时间:
2019-01-11 20:39:27
阅读次数:
199
SpringBoot b2b2c 多用户商城系统 (十五)Springboot整合RabbitMQ Spring Cloud大型企业分布式微服务云构建的B2B2C电子商务平台源码请加企鹅求求: 一零叁八七七四六贰六 技术支持1038774626 ...
分类:
编程语言 时间:
2019-01-10 12:08:39
阅读次数:
201