1. 定义和摘要 Marshalling & Unmarshalling 常被翻译为列集和散集。 文字有点生硬。功能有点类似序列化和反序列化。有如下定义方式: 列集:将堆栈中的参数串行化送入一个平面(flat)存储器的过程。 散集:从flat读取参数数据,并且重建这个堆栈的过程。 wiki中这样解释列集: In computer science, marshalling or marshaling is the process of transforming ...

    阅读全文
  2. 创建Weblogic Domain有三种方式,本文采用配置向导Configuration Wizard. 以下简称DCW。   示例环境:Weblogic 12.1.2 DCW 8-1:指定目录   DCW 8-2: 选择模板. 默认选择一个最基本的Domain,其不安装一些sample Applications.   DCW 8-3:创建管理员帐户,默认用户名为weblogic.   ...

    阅读全文
  3. Introducing Web Services Oracle Web Service可以分为两类: Weblogic(Java EE) Web Service (see "Securing and Administering WebLogic Web Services") Oracle Infrastucture Web Service —SOA, ADF, and WebCenter services (see &qu ...

    阅读全文
  4.    在公司内网访问网站时,浏览器有时会遇到403 CoachingSessionExceeded的告警,这是一些访问资源不能正确显示或者显示错误。而在外网访问同一网站确实正常。研究发现这与公司的安装的Mcfee网关有关,公司内网对相关访问资源设置了限制。     ...

    阅读全文
  5. 48550

    Chrome Developer Tool官方介绍: https://developer.chrome.com/devtools/index ...

    阅读全文
  6. 找出下面的javascript中值不为false的表达式: false NaN 0 -0 Boolean(5>6) null undefined "" 5/"test" 5*"Ten" 5+"-5" 5-"5" -15 +0 ...

    阅读全文
  7. 找出下面的javascript中值不为false的表达式: false NaN 0 -0 Boolean(5>6) null undefined "" 5/"test" 5*"Ten" 5+"-5" 5-"5" -15 +0 ...

    阅读全文
  8. call_user_func_array — 调用用户定义的函数,参数使用数组传递。Call a callback with an array of parameters call_user_func — 调用用户定义的函数,传递一个参数,且参数为非引用。Call the callback given by the first parameter create_function — 创建一个匿名函数。 Create ...

    阅读全文
  9. MySQL修改prompt时可以使用到的特殊符号:  Option Description \c A counter that increments for each statement you issue \D The full current date \d The default database \h ...

    阅读全文
  10. 一个简单的测试看 function F(){}; f = new F(); for (prop in f) alert(prop); 结果并没有alert什么属性,控制台上可以看到下面的对象。 F __proto__: F constructor: function F(){} arguments: null caller: null length: 0 name: "F" prototype: ...

    阅读全文
  11. 88140

    如何看懂HTTP消息包实体?消息包既可以包含在HTTP REQUEST中,又可以包含在HTTP REPSONSE中。这里从RFC2616的第七章做了简单摘要: 实体包含两部分 Entity Header + [Entity body] Entity Header的格式如下: entity-header = Allow | Content-Encoding ...

    阅读全文
  12. 92130

    如何定义一个HTTP响应呢?在RFC2616的第六章定义了HTTP Response的格式。请参考官网。 HTTP响应的定义格式: Response = Status-Line *(( general-header | response-header | entity-header ...

    阅读全文
  13. 91160

    参考RFC2616: http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.40  本文只是学习摘要,列出所有header字段,并用颜色进行分类(按应用场景)  Accept  Accept-Charset  Accept-Encoding  Accept-Language  Accept-Ranges  Age ...

    阅读全文
  14. 48810

    One word of caution 如何翻译? Have fun in Hawaii, but one word of caution I believe ......, but am a bit less certain. It's a little awkward, so I'll go straight to the point. 有点尴尬,所以我还是直奔主题。 survive and thrive 生存与兴旺 ...

    阅读全文
  15. 62750

    Setup instructions Note: Although the demo implementations contained in this repository include source files from remote servers, it is recommended to download all dependencies and upload them to your own server. This excludes script files hoste ...

    阅读全文
  16. 最基本最简单的设置 如果想搭建自己的UI,可以仅仅使用basic plugin版本和最小的设置。下面是官网上提供首页index.html,只有最少的需求和最简单done回调处理程序。(参考官网提供的 API 和选项 Options 看如何使用不同的选项和回调函数): <!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> ...

    阅读全文
  17. Features Multiple file upload(多文件上传): Allows to select multiple files at once and upload them simultaneously. Drag & Drop support(支持D&D操作): Allows to upload files by dragging them from your desktop or filemanager and dropping them ...

    阅读全文
  18.  本文参考 https://www.cnblogs.com/ios9/p/8018227.html#_label0_0 1 -----基本数据字典及其说明 2 select * from dba_tablespaces;---关于表空间的信息 3 select * from dba_ts_quotas ;---所有用户表空间的限额 4 select * from dba_free_space;--所有表空间中自由分区 5 select * fro ...

    阅读全文
  19. 49210

    <div class="uploading-files upload-dialog-col" id="uploadFileListContainer"> <dl id="_disk_id_14" class="infinite-listview" style="margin-top: 0px;"> <dd class="clearfix ...

    阅读全文
  20. jQuery.extend = jQuery.fn.extend = function() { var src, copyIsArray, copy, name, options, clone, target = arguments[0] || {}, i = 1, length = arguments.length, deep = false; // Handle a deep copy situation if ( typeof target == ...

    阅读全文