首页 > 2018年10月29日 > 全部分享
Centos6.10安装tomcat
1. 下载tomcat 2. 解压到相应的路径下 3. 启动tomcat 4. 访问(http://192.168.105.15:8080/) 5. 把到80端口的服务请求都转到8080端口上(终端运行下面的命令) 保存 6. 重启tomcat 7. 访问(http://192.168.105.15 ...
分类:其他   时间:2018-10-29 13:40:09    收藏:0  评论:0  赞:0  阅读:256
报错:PermissionError: [WinError 5] Access is denied: 'C:\\Program Files\\Anaconda3\\Lib\\site-packages\\pywebhdfs'
Outline 在本(Windows系统)地往 “PAI”(hdfs)上上传数据时,需要安装pywebhdfs包,然后就报错了: 报错信息: 解决 此种报错多为权限问题 方法一: run as administrator 在开始菜单中输入 cmd,右键-点击 run as administrator ...
分类:数据库技术   时间:2018-10-29 13:39:37    收藏:0  评论:0  赞:0  阅读:894
Linux 释放cache化缓存
Linux 释放cache化缓存 free -g查看空余内存以及已使用内存 原文 https://blog.csdn.net/tomspcc/article/details/78131468 机械硬盘的读写速率大多在 70M/s 左右,如果把经常读写的文件放在内存中,这会大幅提高文件的读写速率,提高 ...
分类:系统服务   时间:2018-10-29 13:39:08    收藏:0  评论:0  赞:0  阅读:185
巧用边框设置一些效果
我们在做css的时候为了提高网站的效率减少服务器请求,我们可以通过css来实现一些简单的图片特效,比如说三角形,这篇文章讲解的是通过边框实现不同的效果。 首先看一下不同边框样式的效果: 代码部分: 1 <style type="text/css"> 2 .style-border b { 3 bor ...
分类:其他   时间:2018-10-29 13:38:16    收藏:0  评论:0  赞:0  阅读:207
spring分布式事务学习笔记(2)
此文已由作者夏昀授权网易云社区发布。 欢迎访问网易云社区,了解更多网易技术产品运营经验。 Model类如下:package com.xy.model qa数据源的mybatis mapper接口 package com.xy.dao dev数据源的mybatis mapper接口 package c ...
分类:编程语言   时间:2018-10-29 13:37:29    收藏:0  评论:0  赞:0  阅读:124
[ZOJ1482]Partitions
[ZOJ1482]Partitions 题目大意: 给定一个$n\times n(n\le3000)$的$\texttt 0/\texttt1$矩阵,求去掉所有的$1$以后,矩阵被分成几个四连通块。 空间限制1M。 思路: 由于空间限制为1M,因此我们需要一个空间$\mathcal O(n)$的做法 ...
分类:其他   时间:2018-10-29 13:37:11    收藏:0  评论:0  赞:0  阅读:162
MFC 中MessageBox 显示在所有窗口的最上面
int MessageBox( HWND hWnd, // handle of owner window LPCTSTR lpText, // address of text in message box LPCTSTR lpCaption, // address of title of messa ...
分类:编程语言   时间:2018-10-29 13:36:55    收藏:0  评论:0  赞:0  阅读:218
spring分布式事务学习笔记(2)
此文已由作者夏昀授权网易云社区发布。 欢迎访问网易云社区,了解更多网易技术产品运营经验。 Model类如下:package com.xy.model qa数据源的mybatis mapper接口 package com.xy.dao dev数据源的mybatis mapper接口 package c ...
分类:编程语言   时间:2018-10-29 13:36:07    收藏:0  评论:0  赞:0  阅读:171
Fusion Procurement to Pay (3 Ways) Process with First_Party Tax Registration Configure
[1]Security [2] Geograph [Location] [4] PO Account Accrual Account Material Account – Org Expense Account – Org Invoice Price Variance Account - Organ ...
分类:其他   时间:2018-10-29 13:35:14    收藏:0  评论:0  赞:0  阅读:200
ArchLinux 添加国内镜像源
原文链接:ArchLinux_添加国内镜像源 ...
分类:系统服务   时间:2018-10-29 13:34:56    收藏:0  评论:0  赞:0  阅读:269
字符串join
h*e*l*l*phe*she*name #每个可以迭代的对象一个一个用指定的字符连接起来 ...
分类:其他   时间:2018-10-29 13:34:36    收藏:0  评论:0  赞:0  阅读:139
893. Groups of Special-Equivalent Strings
You are given an array A of strings. Two strings S and T are special equivalent if after any number of moves, S == T. A move consists of choosing two ...
分类:其他   时间:2018-10-29 13:34:21    收藏:0  评论:0  赞:0  阅读:216
大家眼中一个真正的程序员和硬件工程师是怎么样的
why are you working so hard? because what I like is so expensive! where i want to so is far away!who i love is perfert! 程序员的自我修养 黄聪:一位软件工程师的7年总结 一般软件工 ...
分类:其他   时间:2018-10-29 13:34:06    收藏:0  评论:0  赞:0  阅读:251
620. Not Boring Movies
X city opened a new cinema, many people would like to go to this cinema. The cinema also gives out a poster indicating the movies’ ratings and descrip ...
分类:其他   时间:2018-10-29 13:33:49    收藏:0  评论:0  赞:0  阅读:159
用数组显示裴波那契数列
1 #include 2 enum {num=30}; 3 int main() 4 { 5 long fib[num]; 6 int i; 7 fib[0]=fib[1]=1; 8 for(i=2;i<num;i++) 9 { 10 fib[i]=fib[i-1]+fib[i-2]; 11 } 1... ...
分类:编程语言   时间:2018-10-29 13:15:37    收藏:0  评论:0  赞:0  阅读:315
jQuery CDN
jQuery CDN PS:jQuery 2.0 以上版本不再支持IE 6/7/8 REF: "https://www.sojson.com/jquery/down.html" 经多次测试,建议使用百度的CDN引用地址,官网的地址有可能造成部分地区打开略有延迟 Version Baidu Examp ...
分类:Web开发   时间:2018-10-29 13:15:01    收藏:0  评论:0  赞:0  阅读:170
mvc购物车项目(2)
为了避免数据冗余,我们可以把共同的信息,抽出建立一个单独的表,把不是共有的信息,建立一张单独表。 订单表分为两个表 create table orders( id number primary key,--订单的编号 userId number primary key references user ...
分类:Web开发   时间:2018-10-29 13:14:44    收藏:0  评论:0  赞:0  阅读:203
输出10000内所有素数
不用函数方法: 利用函数方法: ...
分类:其他   时间:2018-10-29 13:14:25    收藏:0  评论:0  赞:0  阅读:191
【zookeeper】Apache curator的使用及zk分布式锁实现
上篇,本篇主要讲Apache开源的curator的使用,有了curator,利用Java对zookeeper的操作变得极度便捷. 其实在学之前我也有个疑虑,我为啥要学curator,撇开涨薪这些外在的东西,就单技术层面来讲,学curator能帮我做些什么?这就不得不从zookeeper说起,上篇我已 ...
分类:Web开发   时间:2018-10-29 13:14:10    收藏:0  评论:0  赞:0  阅读:219
结对项目——四则运算 “软件”之升级版
结对项目——四则运算 “软件”之升级版 这个作业的要求来自于:https://edu.cnblogs.com/campus/gzcc/GZCC-16SE2/homework/2232 我的github远程仓库的地址为:https://github.com/201606120068/068-Git 结 ...
分类:其他   时间:2018-10-29 13:13:52    收藏:0  评论:0  赞:0  阅读:144
948条   上一页 1 ... 33 34 35 36 37 ... 48 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!