码迷,mamicode.com
首页 >  
搜索关键字:native code    ( 114012个结果
安装pymysql报错 TypeError: 'encoding' is an invalid keyword argument for this function
安装pymysql报错: TypeError: 'encoding' is an invalid keyword argument for this function Command "python setup.py egg_info" failed with error code 1 in c:\ ...
分类:数据库   时间:2021-05-24 13:57:46    阅读次数:0
Tomcat热部署配置及内存配置
小猫的配置,方便项目测试,大家可以参考下 -noverify -javaagent:D:\tomcat_jrebel\jrebel.jar-Drebel.aspectj_plugin=true-Drebel.spring_plugin=true -Drebel.log4j-plugin=true-n ...
分类:其他好文   时间:2021-05-24 13:47:57    阅读次数:0
布尔类型
bool #布尔类型 True #真 False #假 l = [1,2,3,4] print( 1>2 ) #False print( 4 in l) #True print(1 not in l) #False print( len(l) > 3) #True 比如,想写个while的死循环,可 ...
分类:其他好文   时间:2021-05-24 13:31:59    阅读次数:0
MarkDown入门学习
MarkDown学习 标题 星号(*)+空格--一级标题 两个(**)星号+空格--二级标题 以此类推…… 标题 三级标题 四级标题 五级标题 六级标题(最多支持六级) 字体 Hello World!! Hello World!! Hello World!! Hello World!! 粗体:文字两 ...
分类:其他好文   时间:2021-05-24 13:24:00    阅读次数:0
leetcode 232 用栈实现队列
简介 使用队列实现队列哈哈. code class MyQueue { public: queue<int> q; public: /** Initialize your data structure here. */ MyQueue() { } /** Push element x to the ...
分类:其他好文   时间:2021-05-24 13:17:52    阅读次数:0
k8s学习记录,HPA(十一)
##水平自动扩容HPA【Horizontal Pod Autoscaler】将流量分配到更多的节点上去 通过监听Pod的内存或者CPU使用率,达到警告值时来进行自动扩容 ####HPA v1为稳定版自动水平伸缩,只支持CPU指标 ####v2为beta版本,分为v2beta1和v2beta2 ### ...
分类:其他好文   时间:2021-05-24 13:11:21    阅读次数:0
leetcode 121 买卖股票的最佳时机
简介 使用感觉类似动态规划的思路进行计算 code class Solution { public: int maxProfit(vector<int>& prices) { int inf = 1e9; int minPrice = inf; int maxProfit = 0; for(auto ...
分类:其他好文   时间:2021-05-24 13:09:51    阅读次数:0
从Gitee克隆项目
1 >~desktop 2 >Desktop git clone https://gitee.com/guangzan/awescnb.git //进入项目,并用编辑器打开>Desktop cd awescnb/ >awescnb(master) code. //安装依赖>awescnb(maste ...
分类:其他好文   时间:2021-05-24 13:08:04    阅读次数:0
2019年软件设计师下午题最后一题第四空有没有会的
...
分类:其他好文   时间:2021-05-24 13:07:13    阅读次数:0
leetcode 415 字符串相加
简介 简单题, 按照正常人的思路即可 code C++代码写复杂了, 应该, 补0的话可以省去判断谁是长字符串谁是短字符串 class Solution { public: string addStrings(string num1, string num2) { reverse(num1.begi ...
分类:其他好文   时间:2021-05-24 12:50:46    阅读次数:0
114012条   上一页 1 ... 65 66 67 68 69 ... 11402 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!