码迷,mamicode.com
首页 >  
搜索关键字:wrapper    ( 1972个结果
虚拟环境搭建
虚拟环境的搭建 优点 windows 安装 配置 MacOS、Linux 安装 工作文件 配置 使用 ...
分类:其他好文   时间:2019-07-22 20:16:56    阅读次数:105
python之路--装饰器
import timedef wrapper(f): #装饰器函数 def inner(*args,**kwargs): start = time.time() ret = f(*args,**kwargs) #被装饰的函数 end = time.time() print(end-start) re ...
分类:编程语言   时间:2019-07-20 23:38:45    阅读次数:138
linux中传文件的三种方法、windows
windows和linux之间mac系统之间相互传文件的三种方法,说复制粘贴的同学也可以实现,怎么方便怎么来。
分类:Windows程序   时间:2019-07-19 18:58:09    阅读次数:164
PostGIS mysql_fdw操作日志(留观)
#####Linux终端操作命令记录,留做自己后面研究,绿色部分为成功部分 错误: 服务器"mysql_server" 不存在postgres=# create user mapping for postgres server mysql_server1 options(username 'foo1 ...
分类:数据库   时间:2019-07-18 18:08:32    阅读次数:168
[23种设计模式]---装饰者模式(1)
装饰者官方说: 装饰模式(Decorator Pattern),也称为包装模式(Wrapper Pattern)指的是在不必改变原类文件和使用继承的情况下,动态地扩展一个对象的功能。它是通过创建一个包装对象,也就是装饰来包裹真实的对象。 咱这么说: 比如说,我要设计一个咖啡厅订单管理项目, 订单肯定 ...
分类:其他好文   时间:2019-07-16 12:30:03    阅读次数:97
问题1-/usr/bin/python: No module named virtualenvwrapper
操作系统:Ubuntu 问题:创建虚拟环境时,出现:/usr/bin/python: No module named virtualenvwrapper 解决方法: 1.切换到用户家目录 2.打开隐藏文件 .bashrc vim .bashrc 3.在文件末尾添加 export WORKON_HOM ...
分类:移动开发   时间:2019-07-16 08:18:55    阅读次数:126
Feign 超时设置
问题描述 微服务之间使用 Feign 调用,偶发超时问题,配置如下: feign: client: config: default: connectTimeout: 10000 readTimeout: 10000 详细参考官方文档:https://cloud.spring.io/spring-cl ...
分类:其他好文   时间:2019-07-15 22:46:43    阅读次数:596
dubbo中使用动态代理
dubbo的动态代理也是只能代理接口 源码入口在JavassistProxyFactory中 先写个demo 接口 接口实现类 写一个InvocationHandler 测试类 控制台打印 源码分析 ClassHelper Proxy Proxy 主要是这个方法 得到编译的class文件 debug ...
分类:其他好文   时间:2019-07-14 20:08:52    阅读次数:132
移动端上拉加载下拉刷新
<template> <div class="wrapper" ref="wrapper"> <div class="content" > <div class="refresh" :class="{ativeRefresh:refresh}">刷新</div> <div class="ct-row ...
分类:移动开发   时间:2019-07-14 18:14:43    阅读次数:161
Linux-常用shell简介及shell基本操作
1.查询shell环境变量,切换shell种类 ? 表明目前使用的shell种类是bash。 要想改变shell种类,在终端输入想要运行的shell名称即可。在切换shell种类的过程中,可能会操作失败,这是因为ubuntu没有自带安装想要切换的shell种类。 ? 2.shell命令的基本格式 s ...
分类:系统相关   时间:2019-07-14 13:22:45    阅读次数:162
1972条   上一页 1 ... 40 41 42 43 44 ... 198 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!