码迷,mamicode.com
首页 >  
搜索关键字:arc    ( 7955个结果
Vue小案例--过滤器的基本操作
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< ...
分类:其他好文   时间:2020-06-13 14:35:54    阅读次数:102
AGC/ARC
AGC043 A 范围很小, 直接$O(n^4)dp$ B 题意 给定长$n$的序列$a$, 只含$1,2,3$. 有$f_{k,x}=|f_{k-1,x}-f_{k-1,x+1}|,f_{1,x}=a_x$. 求$f_{n,1}$ 先特判掉$n=1$的情况, 那么答案只能为$0,1,2$ 答案的奇 ...
分类:其他好文   时间:2020-06-13 12:53:12    阅读次数:62
Oracle启动报错:ORA-03113: end-of-file on communication channel
Oracle启动报错:ORA-03113: end-of-file on communication channel问题背景:客户启动测试环境数据库报错 1 SQL> startup 2 ORACLE instance started. 3 Total System Global Area 1068 ...
分类:数据库   时间:2020-06-13 10:58:24    阅读次数:54
[LeetCode]1084. 销售分析III(Mysql,having+聚合函数)
###题目 Table: Product + + + | Column Name | Type | + + + | product_id | int | | product_name | varchar | | unit_price | int | + + + product_id 是这个表的主键 ...
分类:数据库   时间:2020-06-13 00:24:06    阅读次数:75
MySQL备份和恢复[4]-xtrabackup备份工具
#xtrabackup工具介绍 ##Percona 公司 官网:www.percona.com percona-server InnoDB --> XtraDB ##Xtrabackup备份工具 percona提供的mysql数据库备份工具,惟一开源的能够对innodb和xtradb数据库进行热备的 ...
分类:数据库   时间:2020-06-12 16:20:12    阅读次数:86
第十五周学习
折半查找的实现代码: #include <stdio.h> #include <stdlib.h> #define keyType int typedef struct { keyType key;//查找表中每个数据元素的值 //如果需要,还可以添加其他属性 }ElemType; typedef ...
分类:其他好文   时间:2020-06-11 16:44:05    阅读次数:86
织梦DEDECMS cookies泄漏导致SQL漏洞修复
织梦DEDECMS cookies泄漏导致SQL漏洞修复方法,整理如下:打开文件member/inc/inc_archives_functions.php,搜索(大概在239行的样子) echo "<input type=\"hidden\" name=\"dede_fieldshash\" val ...
分类:数据库   时间:2020-06-11 13:21:45    阅读次数:74
elasticsearch对已存在的索引增加mapping字段
一.为mapping增加字段,但是新增的字段之前数据已经写进索引了,所以,要从新索引 post 127.0.0.1/index/_mapping { "properties":{ "name":{ "type":"keyword" } } } 二.重新索引数据 POST 127.0.0.1/inde ...
分类:移动开发   时间:2020-06-11 01:09:11    阅读次数:266
k8s部署elasticsearch集群
环境准备我们使用的k8s和ceph环境见:https://blog.51cto.com/leejia/2495558https://blog.51cto.com/leejia/2499684ECK简介ElasticCloudonKubernetes,这是一款基于KubernetesOperator模式的新型编排产品,用户可使用该产品在Kubernetes上配置、管理和运行Elasticsearch
分类:其他好文   时间:2020-06-11 00:36:37    阅读次数:54
[C]月份与数字之间的对应
//月份与数字之间的对应; //switch case语句 //指针数组 ...
分类:其他好文   时间:2020-06-10 22:45:45    阅读次数:90
7955条   上一页 1 ... 42 43 44 45 46 ... 796 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!