码迷,mamicode.com
首页 >  
搜索关键字:xbox one    ( 28051个结果
SSM前后端原理案例,复制直接可用
即Spring+SpringMVC+MyBatis 步骤 导包(引入依赖) 2.配置web.xml 文件 <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.su ...
分类:其他好文   时间:2020-07-23 23:11:39    阅读次数:74
【Vue】provide/inject实现组件通信
provide/inject是Vue.js2.2.0版本后新增的API: provide:Object | () => Object//一个对象或返回一个对象的函数。该对象包含可注入其子孙的属性。 inject:Array<string> | { [key: string]: string | Sy ...
分类:其他好文   时间:2020-07-23 23:05:12    阅读次数:68
Colab运行GitHub代码
前提:代理选“德国”,稳定一点 ~ 1. 将Colab与Good Drive关联起来 from google.colab import drive drive.mount('/content/drive') 2.定位到Drive的根目录,并查看根目录下的文件 import os os.chdir(" ...
分类:其他好文   时间:2020-07-23 22:49:20    阅读次数:97
RedisConnectionException: Unable to connect
问题:使用windos客户端RedisDestopManger可以连接,证明服务器连接正常,项目配置出现问题分析:原因在application.properties文件中最后多了一个空格总结:配置properties文件时要注意空格引起redis无法连接
分类:其他好文   时间:2020-07-23 22:47:46    阅读次数:65
pillow 压缩和放大图片
记住这个 resize()方法 from PIL import Image img=Image.open("test.png") x,y=img.size print(x,y) k=5 x=int(x*k) y=int(y*k) newimg=img.resize((x,y),Image.ANTIA ...
分类:其他好文   时间:2020-07-23 22:37:20    阅读次数:83
Flutter.. 两个点语法含义
在Flutter编程中,会经常用到".."的语法糖,如下 state.clone() ..splashImg = action.img ..famousSentence = action.famousSentence; 其实以上代码等同于 state.clone() state.splashImg ...
分类:其他好文   时间:2020-07-23 22:30:25    阅读次数:171
pytest 生成测试报告
pip安装 pip install pytest-html 编写脚本 import pytest class TestClass(object): def test_one(self): x = "this" assert 'h' in x def test_two(self): x = "hell ...
分类:其他好文   时间:2020-07-23 16:50:29    阅读次数:121
python每日一练之单元测试
官方文档地址:https://docs.python.org/zh-cn/3.7/library/unittest.html#class-and-module-fixtures 一、关于一些基本概念 Test fixture 官方文档把这个词翻译成“测试脚手架”,个人理解,是启动测试前的准备工作,根 ...
分类:编程语言   时间:2020-07-23 15:49:59    阅读次数:88
git常用命令记录
git reset --soft HEAD^ //用于撤销git commit的内容 git cherry-pick --abort //用于取消从其他分支clone的修改 git stash //缓存当前修改,用于暂时忽略当前修改,提交其他修改 git stash pop //还原stash的修改 ...
分类:其他好文   时间:2020-07-23 15:48:02    阅读次数:69
SpringCloud服务注册中心
SpringCloud服务注册中心 Spring Cloud 是一系列框架的有序集合,如服务注册发现、配置中心、消息总线、负载均衡、断路器等,都可以用 Spring Boot 的开发风格做到一键启动和部署。 下面我们介绍 Spring Cloud 组件之一:服务注册中心Eureka的搭建。 注册中心 ...
分类:编程语言   时间:2020-07-23 09:22:43    阅读次数:105
28051条   上一页 1 ... 69 70 71 72 73 ... 2806 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!