`
JasonRight
  • 浏览: 72516 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论
文章列表
  https a2enmod ssl a2ensite default-ssl   svnsync via write through a2enmod proxy a2enmod proxy_http a2enmod dav a2enmod dav_svn a2enmod authz_svn    
之前可以正常登录,突然出现IDP无法对SP的Request返回Response。   IDP的日志文件显示, [org.opensaml.common.binding.security.IssueInstantRule:WARN 102] Message was not yet valid: message time was 2013-12-10T11:58:53.000Z, latest valid is: 2013-12-10T11:48:00.214+08:00   检查SP系统时间,发现系统时间错误。   解决方法:将IDP和SP与同一个TimeServer进行同步。 ...
远程桌面连接远程机器的时候,字体会出现锯齿化。 可以设置远程桌面连接的连接速度或选择Font Smoothing  
jenkins 从 write-through slave checkout 失败,原因是两台机器的时间差的太多(超过1分钟)   org.tmatesoft.svn.core.SVNException: svn: E175002: REPORT of '/jsvn/!svn/vcc/default': 500 Internal Server Error (https://[ip address])    at org.tmatesoft.svn.core.internal.wc.SVNErrorManager.error(SVNErrorManager.java:64)    at o ...
在虚拟机网卡配置是host-only的模式下, 主机默认可以访问虚拟机。 虚拟机不能访问主机。   设置主机的网卡和virtual box的host only 网卡bridge, 即可从虚拟机访问主机。     http://blog.sina.com.cn/s/blog_5d9c20070100lq7i.html
在Windows7中, Jenkins以Service方式启动。   配置Job 运行 bat command   svn list https://domain_addres/svn   会出现错误   Error validating server certificate for 'https://domain_addres:443': - The certificate is not issued by a trusted authority. Use the fingerprint to validate the certificate manually! ...
在SWT的Table中显示CheckBox, 以前知道的方法是   如果是第一列则new Table(parent, SWT.CHECK)   如果是其它列则用图标来显示, 一个是选中,一个是未选中   现在知道的一种方式是用TableEditor,创建一个Control悬浮在Cell上     http://www.java2s.com/Tutorial/Java/0280__SWT/TableCellEditorComboTextandButton.htm
Test Specification   一个Test Suite通常作为一个单独的测试单元, 在第一个Tes Case中要详细描述如何创建测试前提条件, 这样可以让对系统不熟悉的人员也可以执行测试。例如,新建一个Entity, 需要从哪里打开Editor, 怎么赋值, 怎么保存。   在剩余的Test case中,就可以简单地一句话描述打开某个Editor新建新的Entity。
EclipseLink 默认不允许作为主键的int,long型值为0   http://wiki.eclipse.org/Using_EclipseLink_JPA_Extensions_(ELUG)#Allowing_Zero_Value_Primary_Keys
必须要让GridData占满垂直方向,List的滚动条才会显示出来。   new GridData(SWT.FILL, SWT.FILL, true, true)   滚动条没有显示 public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setLayout(new GridLayout()); org.eclipse.swt.widgets.List list = new org.eclipse ...
测试类与被测试类在不同的Plug-in, 但有相同的包名   org.myym.myplugin package org.myym.myplugin; public class MyClass { int myMethod() { return 1; } }   org.myym.myplugin.test package org.myym.myplugin; import static org.junit.Assert.*; import org.junit.Test; import org.myym.myplugin.MyClass; pub ...
svn ant task 的update 不支持ignore_externals. pysvn 则可以   import os import pysvn def notify(event_dict): action = event_dict["action"] path = event_dict["path"] if action != pysvn.wc_notify_action.update_update \ and action != pysvn.wc_notify_action.u ...
和TextCellEditor不同, CheckboxCellEditor不会创建Control.   /** * Note that this implementation simply fakes it and does does not create * any new controls. */   创建CheckboxCellEditor只需   new CheckboxCellEditor(null, SWT.CHECK)   CheckboxCellEditor通过LableProvider来显示值被改变。   //根据element的值返回不同的图 ...
Eclipse3.6   Checkstyle   http://eclipse-cs.sf.net/update/   SVN   http://subclipse.tigris.org/update_1.6.x   CodePro AnalytiX   http://dl.google.com/eclipse/inst/codepro/latest/3.6   MoreUnit   http://moreunit.sourceforge.net/   StartExplorer   http://startexplorer.sourceforge.ne ...
LinuxMint9(LXDE)添加一个定时关机的任务,   在 /etc/crontab中添加一行 sudo leafpad /etc/crontab   22 21 * * * root shutdown -h now   发现无效,google之后, 原因是因为少了换行符   22 21 * * * root shutdown -h now   LinuxMint10没有这个问题, 没有换行符一样可以。
Global site tag (gtag.js) - Google Analytics