首页 > 2021年03月13日 > 全部分享
C++ 定义默认值void locals_index(int reg, int offset = 1);
看jvm源码的时候怎么也看不懂,来回看了几次了就是关于iload 6 指令的解析 def(Bytecodes::_lload , ubcp|____|____|____, vtos, ltos, lload , _ ); 看重载的def函数 const char _ = ' '; const int ...
分类:编程语言   时间:2021-03-13 11:51:33    收藏:0  评论:0  赞:0  阅读:19
spring整合mybatis时所遇到的问题
spring整合mybatis时所遇到的问题 在spring的配置文件ApplicationContext.xml中,需要将原先mybatis的配置文件MybatisConfig.xml迁移过来。 迁移之前的代码 MybatisConfig.xml <properties resource="db. ...
分类:编程语言   时间:2021-03-13 11:51:22    收藏:0  评论:0  赞:0  阅读:26
linq 测试 from bili
var animals = new[] { new { Name="Dog",Age=3,Type1="Home" }, new { Name="Cat",Age=1,Type1="Home" }, new { Name="Wolf",Age=2,Type1="Wild" }, new { Name ...
分类:其他   时间:2021-03-13 11:51:10    收藏:0  评论:0  赞:0  阅读:23
numpy框架中的libblas系统库导致CPU sys高
背景 pre_image-pre-handle-worker服务会下载oss里的图片,然后再去计算图片hash,本来这种情况应该属于CPU us很高,优化前CPU sys很高,开6个进程,服务器的负载非常高,直接干满,截图如下所示: 排查 研发联系运维查看,运维根据之前的经验判断通过perf分析查看 ...
分类:其他   时间:2021-03-13 11:50:58    收藏:0  评论:0  赞:0  阅读:49
CatBoost is a high-performance open source library for gradient boosting on decision trees
CatBoost - open-source gradient boosting library https://catboost.ai/ CatBoost is a high-performance open source library for gradient boosting on deci ...
分类:其他   时间:2021-03-13 11:50:49    收藏:0  评论:0  赞:0  阅读:20
IDEA中连接数据库测试出现设置时区问题
在my.ini配置文件并打开,在文件中找到下图位置并加上下面这一行,default-time-zone='+8:00' ...
分类:数据库技术   时间:2021-03-13 11:50:38    收藏:0  评论:0  赞:0  阅读:277
题解 [WC2019]I 君的商店
题解 [WC2019]I 君的商店 题目链接 有被这道题目人类智慧到,想了好久还是和正解没有挨边,最后还是迫不得已看了题解。 /kk 题目分析 以下记录我想这道题目的思考过程。 先看看可不可以找到一些特殊性质,可以发现可以通过 \(\mathcal O(2n)\) 的时间复杂度找到一个一定是 1 的 ...
分类:其他   时间:2021-03-13 11:50:29    收藏:0  评论:0  赞:0  阅读:14
MongoDB Server对于Sort排序能够支持的最大内存限制查看
mongod库层面:useadminswitchedtodbadmindb.runCommand({getParameter:1,"internalQueryExecMaxBlockingSortBytes":1}){"internalQueryExecMaxBlockingSortBytes":33554432,"ok":1}Mongo
分类:数据库技术   时间:2021-03-13 11:50:16    收藏:0  评论:0  赞:0  阅读:23
java的面向对象
面向对象 物以类聚,分类的思维模式,思考问题首先解决问题需要哪些分类,然后对这些分类进行单独思考,最后对各个分类下的过程进行思考。 对于描述复杂问题的事物,为了从宏观上把握,从整体上合理分析,我们需要使用面向对象来分析整个系统,但是,具体的微观操作,仍然需要使用面向过程的思路去处理。 以类的方式组织 ...
分类:编程语言   时间:2021-03-13 11:50:02    收藏:0  评论:0  赞:0  阅读:17
TypeScript中的基本类型(系列一)
/* 1.变量类型声明和初始化 */ let a: number; // a 的类型设置为了number,在以后的使用过程中a的值只能是数字 a = 10; a = 33; // a = 'hello'; // 此行代码会报错,因为变量a的类型是number,不能赋值字符串 let b: strin ...
分类:其他   时间:2021-03-13 11:49:49    收藏:0  评论:0  赞:0  阅读:22
开闭原则
开闭原则(Open Close Principle): Software entities (classes, modules, functions, etc.) should be open for extension, but closed for modification. 软件对象(类、模块 ...
分类:其他   时间:2021-03-13 11:49:38    收藏:0  评论:0  赞:0  阅读:17
android studio3.5.2百分比布局
我现在用的android studio3.5.2好像不支持百分比布局了,网上找了点资料,尝试写了一下百分比布局,趁还没忘把方法记下来 大概方法就是在app/build.gradle中的dependencies下添加 implementation 'androidx.percentlayout:per ...
分类:移动平台   时间:2021-03-13 11:49:24    收藏:0  评论:0  赞:0  阅读:60
地址经纬度解析
python\小脚本\地址经纬度解析.py # -*- coding: utf-8 -*- """ Created on Thu Nov 24 10:10:13 2016 @author: Acer """ # -*- coding: utf-8 -*- #import sys, urllib, u ...
分类:其他   时间:2021-03-13 11:49:10    收藏:0  评论:0  赞:0  阅读:17
VS code 快捷键
自定义方法: 文件 >首选项 >键盘快捷方式 批量缩进 Ctrl + [ //向左缩进 Ctrl + ] //向右缩进 转变大写/小写(自定义的) Ctrl + 7 //大写 Ctrl + 8 //小写 拆分编辑器 Ctrl + \ ...
分类:其他   时间:2021-03-13 09:09:11    收藏:0  评论:0  赞:0  阅读:24
六十四:权限提升-Linux定时任务&环境变量&数据库
Linux提权本地环境变量安全-Aliyun Linux提权本地定时任务安全-Aliyun Linux提权第三方服务数据库-Vulnhub Linux提权提升漏洞查找关注点-拓展总结 某文件是SUID权限,以root权限执行,会运行PS,ps来自于sh,以root权限执行sh,执行id为root权限 ...
分类:数据库技术   时间:2021-03-13 09:09:00    收藏:0  评论:0  赞:0  阅读:24
919. Complete Binary Tree Inserter
A complete binary tree is a binary tree in which every level, except possibly the last, is completely filled, and all nodes are as far left as possibl ...
分类:其他   时间:2021-03-13 09:08:48    收藏:0  评论:0  赞:0  阅读:25
安装python3
一、安装依赖环境 输入命令:yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-deve ...
分类:编程语言   时间:2021-03-13 09:08:35    收藏:0  评论:0  赞:0  阅读:13
C Ⅵ
循环控制 #include <stdio.h> ? int main() { int x; scanf("%d", &x); int i; int isPrime = 1; //x是素数 for ( i=2; i<x; i++ ) { if( x % i == 0 ) { isPrime = 0; ...
分类:其他   时间:2021-03-13 09:08:19    收藏:0  评论:0  赞:0  阅读:32
Centos7.3 卸载 Nginx(彻底卸载) 并重新安装 Nginx(RPM源yum安装)
卸载nginx 首先输入命令 ps -ef | grep nginx检查一下nginx服务是否在运行。如果在运行就停止运行,需要在nginx的安装目录下的sbin执行,如果配置了环境就不需要了: ./nginx -s stop 查找、删除Nginx相关文件 查看Nginx相关文件: whereis ...
分类:其他   时间:2021-03-13 09:08:04    收藏:0  评论:0  赞:0  阅读:25
vue3 ant-design-vue表单及a-input v-model绑定
antdesign2.0版,form 和 formmodel合并成form了,保留了formmodel的功能。 <a-form class="ant-advanced-search-form" :model="ruleForm" :rules="rules" /> a-input v-model绑定 ...
分类:其他   时间:2021-03-13 09:07:52    收藏:0  评论:0  赞:0  阅读:399
320条   上一页 1 ... 10 11 12 13 14 ... 16 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!