GlobalHost 外部通知 之前都是在集线器类中进行服务器对客户端的通知操作,但是在开发中往往会有需求监控某个系统 ,比如OA系统 上级领导在上面宣布下午两点要开会 那么就要通知到其他的人。这里在集线器中是不好实现的。还有各种各样的第三方通知需求,所以我们需要在集器线外部也可以进行通知 Glob... ...
分类:
Web程序 时间:
2017-01-24 21:04:55
阅读次数:
1732
ff /** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with t ...
分类:
其他好文 时间:
2017-01-17 19:56:34
阅读次数:
161
一开始还真没想到是一般图匹配这种模型(毕竟才会的带花树) 把每一个盒子拆成3个,每一个可以放置进它的小球分别向这三个点连边,然后这三个点在连成一个三元环,最终答案就是小球数目-匹配数。 由于是一般图,所以套一个带花树就可以了。 NOTICE:寻找增广路时,应该从球先找起,这样子才保证了每个球有地方放 ...
分类:
其他好文 时间:
2017-01-10 20:53:37
阅读次数:
232
#定义Nginx运行的用户和用户组userwwwwww;#nginx进程数,建议设置为等于CPU总核心数。worker_processes8;#全局错误日志定义类型,[debug|info|notice|warn|error|crit]error_log/var/log/nginx/error.loginfo;#进程文件pid/var/run/nginx.pid;#一个nginx进程打开的最多文件描述..
分类:
其他好文 时间:
2017-01-10 10:31:57
阅读次数:
255
项目结构图 footer.ftl header.ftl notice.ftl Footer.java Header.java Notice.java User.java DirectoryFilter.java FooterService.java HeaderService.java UserSe ...
分类:
其他好文 时间:
2017-01-06 21:26:34
阅读次数:
239
## 0. Notice - earlier version* 要使用WebView不造成内存泄漏,首先应该做的就是不能在xml中定义webview节点,而是在需要的时候动态生成。即:可以在使用WebView的地方放置一个LinearLayout类似ViewGroup的节点,然后在要使用WebVie... ...
分类:
Web程序 时间:
2017-01-06 01:26:13
阅读次数:
662
0. Notice - earlier version 要使用WebView不造成内存泄漏,首先应该做的就是不能在xml中定义webview节点,而是在需要的时候动态生成。即:可以在使用WebView的地方放置一个LinearLayout类似ViewGroup的节点,然后在要使用WebView的时候... ...
分类:
Web程序 时间:
2017-01-06 00:59:46
阅读次数:
289
Write a program to find the node at which the intersection of two singly linked lists begins. Notice If the two linked lists have no intersection at a ...
分类:
其他好文 时间:
2017-01-04 14:02:53
阅读次数:
217
1、在php.ini文件中改动error_reporting改为: error_reporting=E_ALL & ~E_NOTICE 2、如果你不能操作php.ini文件,你可以使用如下方法在你想禁止notice错误提示的页面中加入如下代码: /* Report all errors except ...
分类:
Web程序 时间:
2017-01-01 14:16:52
阅读次数:
195
Given an array of integers, find a contiguous subarray which has the largest sum. Notice The subarray should contain at least one number. Have you met ...
分类:
编程语言 时间:
2016-12-31 08:21:30
阅读次数:
182