`
文章列表
原文地址: https://blogs.oracle.com/poonam/entry/understanding_g1_gc_logs   有空再把它全部翻译出来。。。   The purpose of this post is to explain the meaning of GC logs generated with some tracing and diagnostic options for G1 GC. We will take a look at the output generated with PrintGCDetails which is a product f ...

CA Capabilities

    博客分类:
  • OCSP
C.1. GetCACaps HTTP Message Format "GET" CGI-PATH CGI-PROG "?operation=GetCACaps" "&message=" CA-IDENT This message requests capabilities from CA. The response is a list of text capabilities, as defined in Appendix C.2. Support for this mes ...
依稀还记得,try{}之后的代码块应尽量越少越好,难道代码被try{}catch(){}包围之后会降低运行效率吗? 测试一下: package exception; public class TestTry_Catch { public static boolean try_catch() { try { return true; } catch (Exception e) { return false; } } public static boolean no_try_catch() { retur ...

x509 RFC 5280

  Network Working Group D. Cooper Request for Comments: 5280 NIST Obsoletes: 3280, 4325, 4630 S. Santesson Category: Standards Track ...
Certificate attributes This section lists the filterable certificate attributes and indicates whether the CryptoAPI and Netscape signature engines return identical strings when returning certificate attributes with identical data. If you want to filter for specific filteridentity tag values wit ...

x509

Certificates In the X.509 system, a certification authority issues a certificate binding a public key to a particular distinguished name in the X.500 tradition, or to an alternative name such as an e-mail address or a DNS-entry.[citation needed] An organization's trusted root certificates can be d ...
  在讲这个问题之前,先来补充几个知识点,如果对此已经比较了解可以直接跳过     1. 大多数浏览器的组件构成如图     在最底层的三个组件分别是网络,UI后端和js解释器。作用如下:     (1)网络- 用来完成网络 ...
浮动(float),一个我们即爱又恨的属性。爱,因为通过浮动,我们能很方便地布局; 恨,浮动之后遗留下来太多的问题需要解决,特别是IE6-7(以下无特殊说明均指 windows 平台的 IE浏览器)。也许很多人都有这样的疑问,浮动从何而来?我们为何要清除浮动?清除浮动的原理是什么? 本文将一步一步地深入剖析其中的奥秘,让浮动使用起来更加得心应手。 一、清除浮动 还是 闭合浮动 (Enclosing float or Clearing float)? 很多人都已经习惯称之为清除浮动,以前我也一直这么叫着,但是确切地来说是不准确的。我们应该用严谨的态度来对待代码,也能更好地帮助我们理 ...
在使用div+css进行网页制作时,我们经常需要对某些元素进行一些必要的定位,使其能按照我们预想的效果呈现在页面合适的位置上,而float和position便是实现这一效果的两种方法。 一、浮动(float) float属性经常被运用于制作Horizontal Menu(横向菜单)和实现多列式网页布局。根据它提供的 left 和right 两个值,我们可以很容易的把特定的元素从文档流中抽出(也因此浮动元素不占用正常文档流的空间),靠左或者靠右对齐,而文字内容则围绕在浮动元素的周围。如果是一系列的浮动元素,则会根据所指定的浮动方式自动的排列成一行;如果页面宽度不够,则会自动换行。 二、定 ...
CSS的很多其他属性大多容易理解,比如字体,文本,背景等。有些CSS书籍也会对这些简单的属性进行大张旗鼓的介绍,而偏偏忽略了对一些难缠的属性讲解,有避重就轻的嫌疑。CSS中主要难以理解的属性包括盒型结构,以及定位。正如positioniseverything,本文将主要讲述关于position的理解,力求让您看完本文后对position有着最全面的认识。 position的四个属性值:     relative     absolute     fixed     static 下面分别讲述这四个属性。 <div id="parent">      ...
杭州新世纪信息技术有限公司怎么样,有清楚的吗 两个offer,杭州新世纪,网新恒天,不知道去那个了,网新恒天牛人很多,但是个人发展前景不好,浙大帮,杭州新世纪不知道怎么样,技术,未来如何
java语言没有类似于c/c++的连接,所有需要的类也是在运行期间动态加载到虚拟机中的,默认情况下我们使用的类加载器是系统默认的类加载器。在tomcat的lib下的jar包是通过tomcat对该web工程实例化的WebappClassLoader对象加载的,我现在有个疑问,以tomcat为例:当虚拟机运行tomcat的一个web工程时,在这个工程下虚拟机发现需要加载一个类,虚拟机是通过那个类加载器去加载这个类的? 是通过调用Thread.currentThread.getContextClassLoader()返回的类加载器来加载这个类吗,还是先找到当前需要加载有加载类操作的方法所在的类,然后找 ...
最近看java.NIO的api,nio包是为了处理数据传输的速度和cpu执行的速度而引入的,DatagramChannel, Pipe.SinkChannel, Pipe.SourceChannel, ServerSocketChannel, SocketChannel 都继承了类AbstractSelectableChannel,为什么没有一个File的Channel或者File的工具类继承这个类,在网络数据传输的情况下我们可以通过nio轮询来增大吞吐量,为什么不能在多个大文件复制时使用这样一个工具类来处理硬盘读取速度和cpu处理速度上的差别? jdk原先的设计中,InputStream的r ...
突然发现两者对javascript任务的调度方式是不一样的,chrome是基于队列,firefox好像是基于优先权算法的。 代码试下就知道了 <script language="javascript">       <!--      function main(){       for(var index=0;index<10;index++){       alert("main thread");       setTimeout(secondary,20);       }      }      function sec ...
Global site tag (gtag.js) - Google Analytics