path
stringlengths
5
312
repo_name
stringlengths
5
116
content
stringlengths
2
1.04M
tests/wpt/web-platform-tests/referrer-policy/origin/http-rp/cross-origin/http-https/iframe-tag/swap-origin-redirect/generic.http.html
danlrobertson/servo
<!DOCTYPE html> <!-- DO NOT EDIT! Generated by referrer-policy/generic/tools/generate.py using referrer-policy/generic/template/test.release.html.template. --> <html> <head> <title>Referrer-Policy: Referrer Policy is set to 'origin'</title> <meta name="description" content="Check that all subresources in all casses get only the origin portion of the referrer URL."> <!-- No meta: Referrer policy delivered via HTTP headers. --> <link rel="author" title="Kristijan Burnik" href="burnik@chromium.org"> <link rel="help" href="https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-origin"> <meta name="assert" content="The referrer URL is origin when a document served over http requires an https sub-resource via iframe-tag using the http-rp delivery method with swap-origin-redirect and when the target request is cross-origin."> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <!-- TODO(kristijanburnik): Minify and merge both: --> <script src="/referrer-policy/generic/common.js"></script> <script src="/referrer-policy/generic/referrer-policy-test-case.js?pipe=sub"></script> </head> <body> <script> ReferrerPolicyTestCase( { "referrer_policy": "origin", "delivery_method": "http-rp", "redirection": "swap-origin-redirect", "origin": "cross-origin", "source_protocol": "http", "target_protocol": "https", "subresource": "iframe-tag", "subresource_path": "/referrer-policy/generic/subresource/document.py", "referrer_url": "origin" }, document.querySelector("meta[name=assert]").content, new SanityChecker() ).start(); </script> <div id="log"></div> </body> </html>
third_party/blink/web_tests/external/wpt/encrypted-media/drm-mp4-playback-retrieve-destroy-persistent-license.https.html
scheib/chromium
<!doctype html> <html> <head> <meta charset=utf-8> <meta name="timeout" content="long"> <title>Encrypted Media Extensions: Successful Playback, persistent-license session with DRM, mp4, retrieve license, playback and destroy the license</title> <link rel="help" href="https://w3c.github.io/encrypted-media/"> <!-- Web Platform Test Harness scripts --> <script src=/resources/testharness.js></script> <script src=/resources/testharnessreport.js></script> <!-- Helper scripts for Encrypted Media Extensions tests --> <script src=/encrypted-media/util/utils.js></script> <script src=/encrypted-media/util/fetch.js></script> <script src=/encrypted-media/util/testmediasource.js></script> <script src=/encrypted-media/util/utf8.js></script> <!-- Content metadata --> <script src=/encrypted-media/content/content-metadata.js></script> <!-- Message handler for DRM keysystem --> <script src=/encrypted-media/util/drm-messagehandler.js></script> <!-- The script for this specific test --> <script src=/encrypted-media/scripts/playback-retrieve-persistent-license.js></script> </head> <body> <div id='log'></div> <div id='video'> <video id="videoelement" width="200px"></video> </div> <script> var keysystem = getSupportedKeySystem(), contentitem = content['mp4-basic'], handler = new MessageHandler( keysystem, contentitem, 'persistent-license' ), config = { content: contentitem, video: document.getElementById('videoelement'), keysystem: keysystem, messagehandler: handler.messagehandler, audioPath: contentitem.audio.path, videoPath: contentitem.video.path, audioType: contentitem.audio.type, videoType: contentitem.video.type, initDataType: contentitem.initDataType, windowscript: 'resources/drm-retrieve-destroy-persistent-license.html', testcase: 'playback, retrieve, playback and destroy' }; runTest(config); </script> </body> </html>
workspace/myproject/myproject/templates/example/assets/global/plugins/codemirror/mode/ttcn-cfg/index.html
liangazhou/django-rdp
<!doctype html> <title>CodeMirror: TTCN-CFG mode</title> <meta charset="utf-8" /> <link rel=stylesheet href="../../doc/docs.css"> <link rel="stylesheet" href="../../lib/codemirror.css"> <script src="../../lib/codemirror.js"></script> <script src="ttcn-cfg.js"></script> <style type="text/css"> .CodeMirror { border-top: 1px solid black; border-bottom: 1px solid black; } </style> <div id=nav> <a href="http://codemirror.net"> <h1>CodeMirror</h1> <img id=logo src="../../doc/logo.png"> </a> <ul> <li> <a href="../../index.html">Home</a> <li> <a href="../../doc/manual.html">Manual</a> <li> <a href="https://github.com/codemirror/codemirror">Code</a> </ul> <ul> <li> <a href="../index.html">Language modes</a> <li> <a class=active href="http://en.wikipedia.org/wiki/TTCN">TTCN-CFG</a> </ul> </div> <article> <h2>TTCN-CFG example</h2> <div> <textarea id="ttcn-cfg-code"> [MODULE_PARAMETERS] # This section shall contain the values of all parameters that are defined in your TTCN-3 modules. [LOGGING] # In this section you can specify the name of the log file and the classes of events # you want to log into the file or display on console (standard error). LogFile := "logs/%e.%h-%r.%s" FileMask := LOG_ALL | DEBUG | MATCHING ConsoleMask := ERROR | WARNING | TESTCASE | STATISTICS | PORTEVENT LogSourceInfo := Yes AppendFile := No TimeStampFormat := DateTime LogEventTypes := Yes SourceInfoFormat := Single LogEntityName := Yes [TESTPORT_PARAMETERS] # In this section you can specify parameters that are passed to Test Ports. [DEFINE] # In this section you can create macro definitions, # that can be used in other configuration file sections except [INCLUDE]. [INCLUDE] # To use configuration settings given in other configuration files, # the configuration files just need to be listed in this section, with their full or relative pathnames. [EXTERNAL_COMMANDS] # This section can define external commands (shell scripts) to be executed by the ETS # whenever a control part or test case is started or terminated. BeginTestCase := "" EndTestCase := "" BeginControlPart := "" EndControlPart := "" [EXECUTE] # In this section you can specify what parts of your test suite you want to execute. [GROUPS] # In this section you can specify groups of hosts. These groups can be used inside the # [COMPONENTS] section to restrict the creation of certain PTCs to a given set of hosts. [COMPONENTS] # This section consists of rules restricting the location of created PTCs. [MAIN_CONTROLLER] # The options herein control the behavior of MC. TCPPort := 0 KillTimer := 10.0 NumHCs := 0 LocalAddress := </textarea> </div> <script> var ttcnEditor = CodeMirror.fromTextArea(document.getElementById("ttcn-cfg-code"), { lineNumbers: true, matchBrackets: true, mode: "text/x-ttcn-cfg" }); ttcnEditor.setSize(600, 860); var mac = CodeMirror.keyMap.default == CodeMirror.keyMap.macDefault; CodeMirror.keyMap.default[(mac ? "Cmd" : "Ctrl") + "-Space"] = "autocomplete"; </script> <br/> <p> <strong>Language:</strong> Testing and Test Control Notation - Configuration files ( <a href="http://en.wikipedia.org/wiki/TTCN">TTCN-CFG</a>) </p> <p> <strong>MIME types defined:</strong> <code>text/x-ttcn-cfg</code>.</p> <br/> <p>The development of this mode has been sponsored by <a href="http://www.ericsson.com/">Ericsson </a>.</p> <p>Coded by Asmelash Tsegay Gebretsadkan </p> </article>
后台页面/WebRoot/css/fileinput.css
pange123/PB_Management
/*! * @copyright Copyright &copy; Kartik Visweswaran, Krajee.com, 2014 - 2015 * @package bootstrap-fileinput * @version 4.1.9 * * File input styling for Bootstrap 3.0 * Built for Yii Framework 2.0 * Author: Kartik Visweswaran * Year: 2015 * For more Yii related demos visit http://demos.krajee.com */ .file-input { overflow-x: auto; } .file-loading { top: 0; right: 0; width: 25px; height: 25px; font-size: 999px; text-align: right; color: #fff; background: transparent url('../img/loading.gif') top left no-repeat; border: none; } .btn-file { position: relative; overflow: hidden; } .btn-file input[type=file] { position: absolute; top: 0; right: 0; min-width: 100%; min-height: 100%; text-align: right; opacity: 0; filter: alpha(opacity=0); opacity: 0; background: none repeat scroll 0 0 transparent; cursor: inherit; display: block; } .file-caption .glyphicon { display: inline-block; min-width: 18px; margin-top: 2px; } .file-caption-name { display: inline-block; overflow: hidden; max-height: 20px; padding-right: 10px; word-break: break-all; } .file-caption-ellipsis { position: absolute; right: 10px; margin-top: -6px; font-size: 1.2em; display: none; font-weight: bold; cursor: default; } .kv-has-ellipsis .file-caption-ellipsis { display: inline; } .kv-has-ellipsis { padding-right: 17px; } .kv-search-container .kv-search-clear { position: absolute; padding: 10px; right: 0px; } .file-error-message { background-color: #f2dede; color: #a94442; text-align: center; border-radius: 5px; padding: 5px; } .file-error-message pre, .file-error-message ul { margin: 5px 0; text-align: left; } .file-caption-disabled { background-color: #EEEEEE; cursor: not-allowed; opacity: 1; } .file-input .btn[disabled], .file-input .btn .disabled { cursor: not-allowed; } .file-preview { border-radius: 5px; border: 1px solid #ddd; padding: 5px; width: 100%; margin-bottom: 5px; } .file-preview-frame { display: table; margin: 8px; height: 160px; border: 1px solid #ddd; box-shadow: 1px 1px 5px 0px #a2958a; padding: 6px; float: left; text-align: center; vertical-align: middle; } .file-preview-frame:hover { box-shadow: 3px 3px 5px 0px #333; } .file-preview-image { height: 160px; vertical-align: text-center; } .file-preview-text { width: 160px; color: #428bca; font-size: 11px; text-align: center; } .file-preview-other { padding-top: 48px; text-align: center; } .file-preview-other i { font-size: 2.4em; } .file-other-error { width: 100%; padding-top: 30px; text-align: right } .file-input-new .file-preview, .file-input-new .close, .file-input-new .glyphicon-file, .file-input-new .fileinput-remove-button, .file-input-new .fileinput-upload-button, .file-input-ajax-new .fileinput-remove-button, .file-input-ajax-new .fileinput-upload-button { display: none; } .loading { background: transparent url('../img/loading.gif') no-repeat scroll center center content-box !important; } .wrap-indicator { font-weight: bold; color: #245269; cursor: pointer; } .file-actions { text-align: left; } .file-footer-buttons { float: right; } .file-thumbnail-footer .file-caption-name { padding-top: 4px; font-size: 11px; color: #777; } .file-upload-indicator { padding-top: 2px; cursor: default; } .file-upload-indicator:hover { font-size: 1.2em; font-weight: bold; padding-top: 0; } .file-drop-zone { border: 1px dashed #aaa; border-radius: 4px; height: 100%; text-align: center; vertical-align: middle; margin: 12px 15px 12px 12px; padding: 5px; } .file-drop-zone-title { color: #aaa; font-size: 40px; padding: 85px 10px; } .highlighted { border: 2px dashed #999 !important; background-color: #f0f0f0; } .file-uploading { background-image: url('../img/loading-sm.gif'); background-position: center bottom 10px; background-repeat: no-repeat; opacity: 0.6; } .file-icon-large { font-size: 1.2em; }
cms/templates/widgets/_ui-dnd-indicator-before.html
ahmadiga/min_edx
<span class="draggable-drop-indicator draggable-drop-indicator-before"><i class="icon fa fa-caret-right"></i></span>
web/addons/pad/static/src/css/etherpad.css
diogocs1/comps
.oe_pad_switch_positioner { position: relative; } .oe_pad_switch { position: absolute; top: 5px; left: 383px; width: 28px; height: 28px; background-image: -webkit-linear-gradient(top, white, #f0f0f0); border: solid 1px #ccc; border-radius:3px; text-align: center; line-height: 28px; overflow: hidden; -webkit-box-sizing: border-box; color: #666666; cursor: pointer; font-size: 14px; } .oe_pad_switch:hover{ background-image: -webkit-linear-gradient(top, #f4f4f4, #e4e4e4); } .oe_pad_fullscreen .oe_pad_switch { top:4px; } .oe_pad_fullscreen { position: fixed; top: 0px; left: 0px; right: 0px; bottom: 0px; background-color: white; margin:0; padding:0; border:none; z-index: 1001; } .oe_pad .oe_pad_content.oe_editing{ border: solid 1px #c4c4c4; height:500px; -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.1); -moz-box-shadow: 0 5px 10px rgba(0,0,0,0.1); -ms-box-shadow: 0 5px 10px rgba(0,0,0,0.1); -o-box-shadow: 0 5px 10px rgba(0,0,0,0.1); box-shadow: 0 5px 10px rgba(0,0,0,0.1); } .oe_pad.oe_pad_fullscreen .oe_pad_content { height: 100%; border: none; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none; box-shadow: none; } .oe_pad .oe_unconfigured { text-align: center; opacity: 0.75; } .oe_pad_loading{ text-align: center; opacity: 0.75; font-style: italic; } .etherpad_readonly ul, .etherpad_readonly ol { margin: 0; margin-left: 1.5em; padding: 0; } .etherpad_readonly ul li{ list-style-type: disc; } .etherpad_readonly ol li{ list-style-type: decimal; } .etherpad_readonly .indent li{ list-style-type: none !important; } .etherpad_readonly{ font-family: arial, sans-serif; font-size: 15px; line-height: 19px; word-wrap: break-word; } .openerp .oe_form_nomargin .etherpad_readonly{ padding: 10px; } .etherpad_readonly ul.indent { list-style-type: none !important; } .etherpad_readonly ol li{ list-style-type: decimal !important; } .etherpad_readonly ol ol li{ list-style-type: lower-latin !important; } .etherpad_readonly ol ol ol li{ list-style-type: lower-roman !important; } .etherpad_readonly ol ol ol ol li{ list-style-type: decimal !important; } .etherpad_readonly ol ol ol ol ol li{ list-style-type: lower-latin !important; } .etherpad_readonly ol ol ol ol ol ol li{ list-style-type: lower-roman !important; } .etherpad_readonly ol ol ol ol ol ol ol li{ list-style-type: decimal !important; } .etherpad_readonly ol ol ol ol ol ol ol ol li{ list-style-type: lower-latin !important; } .etherpad_readonly ul li { list-style-type: disc !important; } .etherpad_readonly ul ul li { list-style-type: circle !important; } .etherpad_readonly ul ul ul li { list-style-type: square !important; } .etherpad_readonly ul ul ul ul li { list-style-type: disc !important; } .etherpad_readonly ul ul ul ul ul li { list-style-type: circle !important; } .etherpad_readonly ul ul ul ul ul ul li { list-style-type: square !important; } .etherpad_readonly ul ul ul ul ul ul ul li { list-style-type: disc !important; } .etherpad_readonly ul ul ul ul ul ul ul ul li { list-style-type: circle !important; } .etherpad_readonly ul ul ul ul ul ul ul ul ul li { list-style-type: square !important; }
www/node_modules/angular-material/modules/js/divider/divider-default-theme.min.css
LeonardoSousa/androipapp
/*! * Angular Material Design * https://github.com/angular/material * @license MIT * v1.1.0-master-2b98560 */md-divider.md-THEME_NAME-theme{border-top-color:'{{foreground-4}}'}.layout-gt-lg-row>md-divider.md-THEME_NAME-theme,.layout-gt-md-row>md-divider.md-THEME_NAME-theme,.layout-gt-sm-row>md-divider.md-THEME_NAME-theme,.layout-gt-xs-row>md-divider.md-THEME_NAME-theme,.layout-lg-row>md-divider.md-THEME_NAME-theme,.layout-md-row>md-divider.md-THEME_NAME-theme,.layout-row>md-divider.md-THEME_NAME-theme,.layout-sm-row>md-divider.md-THEME_NAME-theme,.layout-xl-row>md-divider.md-THEME_NAME-theme,.layout-xs-row>md-divider.md-THEME_NAME-theme{border-right-color:'{{foreground-4}}'}
vitess.io/_includes/comments.html
HubSpot/vitess
<hr /> <div id="disqus_thread"></div> <script type="text/javascript"> /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */ var disqus_shortname = '{{ site.disqus-shortname }}'; /* * * DON'T EDIT BELOW THIS LINE * * */ (function() { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); })(); </script> <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
your-cool-app/src/app/app.component.html
jwalsh/seattle-angular-hack-day
<h1> {{title}} </h1>
tests/template_tests/templates/inclusion_extends1.html
atul-bhouraskar/django
{% extends 'inclusion_base.html' %} {% block content %}one{% endblock %}
roles/greeter-theme/files/texsaw-greeter-theme/tooltipster.css
TexSAW/texsaw_config
/* Original available at http://iamceege.github.io/tooltipster/ */ /* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */ .tooltipster-default { border-radius: 5px; border: 2px solid #000; background: #4c4c4c; color: #fff; } /* Use this next selector to style things like font-size and line-height: */ .tooltipster-default .tooltipster-content { font-family: Arial, sans-serif; font-size: 18px; line-height: 25px; padding: 8px 10px; overflow: hidden; } /* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */ .tooltipster-default .tooltipster-arrow .tooltipster-arrow-border { /* border-color: ... !important; */ } /* If you're using the icon option, use this next selector to style them */ .tooltipster-icon { cursor: help; margin-left: 4px; } /* This is the base styling required to make all Tooltipsters work */ .tooltipster-base { padding: 0; font-size: 0; line-height: 0; position: absolute; left: 0; top: 0; z-index: 9999999; pointer-events: none; width: auto; overflow: visible; } .tooltipster-base .tooltipster-content { overflow: hidden; } /* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */ .tooltipster-arrow { display: block; text-align: center; width: 100%; height: 100%; position: absolute; top: 0; left: 0; z-index: -1; } .tooltipster-arrow span, .tooltipster-arrow-border { display: block; width: 0; height: 0; position: absolute; } .tooltipster-arrow-top span, .tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span { border-left: 8px solid transparent !important; border-right: 8px solid transparent !important; border-top: 8px solid; bottom: -7px; } .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border { border-left: 9px solid transparent !important; border-right: 9px solid transparent !important; border-top: 9px solid; bottom: -7px; } .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span { border-left: 8px solid transparent !important; border-right: 8px solid transparent !important; border-bottom: 8px solid; top: -7px; } .tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border { border-left: 9px solid transparent !important; border-right: 9px solid transparent !important; border-bottom: 9px solid; top: -7px; } .tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border { left: 0; right: 0; margin: 0 auto; } .tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span { left: 6px; } .tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border { left: 5px; } .tooltipster-arrow-top-right span, .tooltipster-arrow-bottom-right span { right: 6px; } .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border { right: 5px; } .tooltipster-arrow-left span, .tooltipster-arrow-left .tooltipster-arrow-border { border-top: 8px solid transparent !important; border-bottom: 8px solid transparent !important; border-left: 8px solid; top: 50%; margin-top: -7px; right: -7px; } .tooltipster-arrow-left .tooltipster-arrow-border { border-top: 9px solid transparent !important; border-bottom: 9px solid transparent !important; border-left: 9px solid; margin-top: -8px; } .tooltipster-arrow-right span, .tooltipster-arrow-right .tooltipster-arrow-border { border-top: 8px solid transparent !important; border-bottom: 8px solid transparent !important; border-right: 8px solid; top: 50%; margin-top: -7px; left: -7px; } .tooltipster-arrow-right .tooltipster-arrow-border { border-top: 9px solid transparent !important; border-bottom: 9px solid transparent !important; border-right: 9px solid; margin-top: -8px; } /* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */ .tooltipster-grow { -webkit-transform: scale(0,0); -moz-transform: scale(0,0); -o-transform: scale(0,0); -ms-transform: scale(0,0); transform: scale(0,0); -webkit-transition-property: -webkit-transform; -moz-transition-property: -moz-transform; -o-transition-property: -o-transform; -ms-transition-property: -ms-transform; transition-property: transform; -webkit-backface-visibility: hidden; } .tooltipster-grow-show { -webkit-transform: scale(1,1); -moz-transform: scale(1,1); -o-transform: scale(1,1); -ms-transform: scale(1,1); transform: scale(1,1); -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); } /* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */ .tooltipster-content-changing { opacity: 0.5; -webkit-transform: scale(1.1, 1.1); -moz-transform: scale(1.1, 1.1); -o-transform: scale(1.1, 1.1); -ms-transform: scale(1.1, 1.1); transform: scale(1.1, 1.1); } /* Shadow theme */ .tooltipster-shadow { border-radius: 5px; background: #fff; box-shadow: 0px 0px 14px rgba(0,0,0,0.3); color: #2c2c2c; } .tooltipster-shadow .tooltipster-content { font-family: 'Arial', sans-serif; font-size: 14px; line-height: 16px; padding: 8px 10px; }
docs/api/class-Pawelzny.MetaClass.Meta.html
pawelzny/meta-class
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Class Pawelzny\MetaClass\Meta</title> <link rel="stylesheet" href="resources/bootstrap.min.css?973e37a8502921d56bc02bb55321f45b072b6f71"> <link rel="stylesheet" href="resources/style.css?49f43d3208c5d7e33fa16d36107a345bf11cc00d"> </head> <body> <nav id="navigation" class="navbar navbar-default navbar-fixed-top"> <div class="container-fluid"> <div class="navbar-header"> <a href="index.html" class="navbar-brand">Overview</a> </div> <div class="collapse navbar-collapse"> <form id="search" class="navbar-form navbar-left" role="search"> <input type="hidden" name="cx" value=""> <input type="hidden" name="ie" value="UTF-8"> <div class="form-group"> <input type="text" name="q" class="search-query form-control" placeholder="Search"> </div> </form> <ul class="nav navbar-nav"> <li> <a href="namespace-Pawelzny.MetaClass.html" title="Summary of Pawelzny\MetaClass"><span>Namespace</span></a> </li> <li class="active"> <span>Class</span> </li> </ul> </div> </div> </nav> <div id="left"> <div id="menu"> <div id="groups"> <h3>Namespaces</h3> <ul> <li class="active"> <a href="namespace-Pawelzny.html"> Pawelzny<span></span> </a> <ul> <li class="active"> <a href="namespace-Pawelzny.MetaClass.html"> MetaClass<span></span> </a> <ul> <li> <a href="namespace-Pawelzny.MetaClass.Contracts.html"> Contracts </a> </li> <li> <a href="namespace-Pawelzny.MetaClass.Exceptions.html"> Exceptions </a> </li> </ul></li> <li> <a href="namespace-Pawelzny.Support.html"> Support<span></span> </a> <ul> <li> <a href="namespace-Pawelzny.Support.Mutation.html"> Mutation </a> </li> <li> <a href="namespace-Pawelzny.Support.Normalization.html"> Normalization </a> </li> <li> <a href="namespace-Pawelzny.Support.Predication.html"> Predication </a> </li> </ul></li></ul></li> </ul> </div> <div id="elements"> <h3>Classes</h3> <ul> <li><a href="class-Pawelzny.MetaClass.Component.html">Component</a></li> <li class="active"><a href="class-Pawelzny.MetaClass.Meta.html">Meta</a></li> <li><a href="class-Pawelzny.MetaClass.MetaCompose.html">MetaCompose</a></li> <li><a href="class-Pawelzny.MetaClass.MetaModel.html">MetaModel</a></li> </ul> <h3>Traits</h3> <ul> <li><a href="class-Pawelzny.MetaClass.MetaClass.html">MetaClass</a></li> </ul> </div> </div> </div> <div id="splitter"></div> <div id="right"> <div id="rightInner"> <div id="content" class="class"> <h1>Class Meta</h1> <div class="description"> <p>Meta is an basic implementation. It can be used as stdClass with extra features like setters and predicates.</p> </div> <dl class="tree well"> <dd style="padding-left:0px"> <b><span>Pawelzny\MetaClass\Meta</span></b> implements <a href="class-Pawelzny.MetaClass.Contracts.MetaExpansible.html"><span>Pawelzny\MetaClass\Contracts\MetaExpansible</span></a> </dd> </dl> <div> <h3>Direct known subclasses</h3> <p class="elementList"> <code><a href="class-Pawelzny.MetaClass.MetaModel.html">Pawelzny\MetaClass\MetaModel</a></code> </p> </div> <div> <h3>Indirect known subclasses</h3> <p class="elementList"> <code><a href="class-Pawelzny.MetaClass.MetaCompose.html">Pawelzny\MetaClass\MetaCompose</a></code> </p> </div> <div class="alert alert-info"> <b>Namespace:</b> <a href="namespace-Pawelzny.html">Pawelzny</a>\<a href="namespace-Pawelzny.MetaClass.html">MetaClass</a><br> <b>Package:</b> Pawelzny\MetaClass<br> <b>Located at</b> <a href="source-class-Pawelzny.MetaClass.Meta.html#15-170" title="Go to source code">MetaClass/Meta.php</a> <br> </div> <div class="panel panel-default"> <div class="panel-heading"><h2>Methods summary</h2></div> <table class="summary table table-bordered table-striped methods" id="methods"> <tr data-order="__call" id="___call"> <td class="attributes"><code> public mixed </code> </td> <td class="name"><div> <a class="anchor" href="#___call">#</a> <code><a href="source-class-Pawelzny.MetaClass.Meta.html#38-59" title="Go to source code">__call</a>( <span>string <var>$method</var></span>, <span>array <var>$arguments</var></span> )</code> <div class="description short"> <p>Meta stores it's methods in registry to allow dynamic creation of new methods.</p> </div> <div class="description detailed hidden"> <p>Meta stores it's methods in registry to allow dynamic creation of new methods.</p> <p>__call search for method in registry and invoke it if exist. Otherwise throws MetaMethodException.</p> <h4>Parameters</h4> <div class="list"><dl> <dt><var>$method</var></dt> <dd></dd> <dt><var>$arguments</var></dt> <dd></dd> </dl></div> <h4>Returns</h4> <div class="list"> mixed </div> <h4>Throws</h4> <div class="list"> <code><a href="class-Pawelzny.MetaClass.Exceptions.MetaMethodException.html">Pawelzny\MetaClass\Exceptions\MetaMethodException</a></code> </div> <h4>Implementation of</h4> <div class="list"><code><a href="class-Pawelzny.MetaClass.Contracts.MetaExpansible.html#___call">Pawelzny\MetaClass\Contracts\MetaExpansible::__call()</a></code></div> </div> </div></td> </tr> <tr data-order="__set" id="___set"> <td class="attributes"><code> public </code> </td> <td class="name"><div> <a class="anchor" href="#___set">#</a> <code><a href="source-class-Pawelzny.MetaClass.Meta.html#61-77" title="Go to source code">__set</a>( <span>string <var>$property</var></span>, <span>mixed <var>$value</var></span> )</code> <div class="description short"> <p>Detects if set value is callable and if it is, puts new method in methods registry. Otherwise puts value in attributes registry.</p> </div> <div class="description detailed hidden"> <p>Detects if set value is callable and if it is, puts new method in methods registry. Otherwise puts value in attributes registry.</p> <h4>Parameters</h4> <div class="list"><dl> <dt><var>$property</var></dt> <dd></dd> <dt><var>$value</var></dt> <dd></dd> </dl></div> <h4>Implementation of</h4> <div class="list"><code><a href="class-Pawelzny.MetaClass.Contracts.MetaExpansible.html#___set">Pawelzny\MetaClass\Contracts\MetaExpansible::__set()</a></code></div> </div> </div></td> </tr> <tr data-order="__isset" id="___isset"> <td class="attributes"><code> public boolean </code> </td> <td class="name"><div> <a class="anchor" href="#___isset">#</a> <code><a href="source-class-Pawelzny.MetaClass.Meta.html#79-90" title="Go to source code">__isset</a>( <span> <var>$name</var></span> )</code> <div class="description short"> <p>Is used when isset() or empty() function are called on meta object.</p> </div> <div class="description detailed hidden"> <p>Is used when isset() or empty() function are called on meta object.</p> <h4>Parameters</h4> <div class="list"><dl> <dt><var>$name</var></dt> <dd></dd> </dl></div> <h4>Returns</h4> <div class="list"> boolean </div> <h4>Implementation of</h4> <div class="list"><code><a href="class-Pawelzny.MetaClass.Contracts.MetaExpansible.html#___isset">Pawelzny\MetaClass\Contracts\MetaExpansible::__isset()</a></code></div> </div> </div></td> </tr> <tr data-order="__get" id="___get"> <td class="attributes"><code> public mixed </code> </td> <td class="name"><div> <a class="anchor" href="#___get">#</a> <code><a href="source-class-Pawelzny.MetaClass.Meta.html#92-111" title="Go to source code">__get</a>( <span>string <var>$attribute</var></span> )</code> <div class="description short"> <p>Meta stores it's attributes in registry to allow dynamic setting and getting them.</p> </div> <div class="description detailed hidden"> <p>Meta stores it's attributes in registry to allow dynamic setting and getting them.</p> <p>__get search for attribute in registry and returns it's value. Otherwise throws an MetaAttributeException.</p> <h4>Parameters</h4> <div class="list"><dl> <dt><var>$attribute</var></dt> <dd></dd> </dl></div> <h4>Returns</h4> <div class="list"> mixed </div> <h4>Throws</h4> <div class="list"> <code><a href="class-Pawelzny.MetaClass.Exceptions.MetaAttributeException.html">Pawelzny\MetaClass\Exceptions\MetaAttributeException</a></code> </div> <h4>Implementation of</h4> <div class="list"><code><a href="class-Pawelzny.MetaClass.Contracts.MetaExpansible.html#___get">Pawelzny\MetaClass\Contracts\MetaExpansible::__get()</a></code></div> </div> </div></td> </tr> <tr data-order="hasMethod" id="_hasMethod"> <td class="attributes"><code> public boolean </code> </td> <td class="name"><div> <a class="anchor" href="#_hasMethod">#</a> <code><a href="source-class-Pawelzny.MetaClass.Meta.html#113-124" title="Go to source code">hasMethod</a>( <span>string <var>$name</var></span> )</code> <div class="description short"> <p>Predicates if Meta class has meta method in the registry.</p> </div> <div class="description detailed hidden"> <p>Predicates if Meta class has meta method in the registry.</p> <h4>Parameters</h4> <div class="list"><dl> <dt><var>$name</var></dt> <dd></dd> </dl></div> <h4>Returns</h4> <div class="list"> boolean </div> <h4>Api</h4> <div class="list"> </div> </div> </div></td> </tr> <tr data-order="hasAttribute" id="_hasAttribute"> <td class="attributes"><code> public boolean </code> </td> <td class="name"><div> <a class="anchor" href="#_hasAttribute">#</a> <code><a href="source-class-Pawelzny.MetaClass.Meta.html#126-137" title="Go to source code">hasAttribute</a>( <span>string <var>$name</var></span> )</code> <div class="description short"> <p>Predicates if Meta class has meta attribute in the registry.</p> </div> <div class="description detailed hidden"> <p>Predicates if Meta class has meta attribute in the registry.</p> <h4>Parameters</h4> <div class="list"><dl> <dt><var>$name</var></dt> <dd></dd> </dl></div> <h4>Returns</h4> <div class="list"> boolean </div> <h4>Api</h4> <div class="list"> </div> </div> </div></td> </tr> <tr data-order="setMethod" id="_setMethod"> <td class="attributes"><code> public static </code> </td> <td class="name"><div> <a class="anchor" href="#_setMethod">#</a> <code><a href="source-class-Pawelzny.MetaClass.Meta.html#139-153" title="Go to source code">setMethod</a>( <span>string <var>$name</var></span>, <span>callable <var>$method</var></span> )</code> <div class="description short"> <p>Adds new method to the registry.</p> </div> <div class="description detailed hidden"> <p>Adds new method to the registry.</p> <h4>Parameters</h4> <div class="list"><dl> <dt><var>$name</var></dt> <dd></dd> <dt><var>$method</var></dt> <dd></dd> </dl></div> <h4>Returns</h4> <div class="list"> static </div> <h4>Api</h4> <div class="list"> </div> </div> </div></td> </tr> <tr data-order="setAttribute" id="_setAttribute"> <td class="attributes"><code> public static </code> </td> <td class="name"><div> <a class="anchor" href="#_setAttribute">#</a> <code><a href="source-class-Pawelzny.MetaClass.Meta.html#155-169" title="Go to source code">setAttribute</a>( <span>string <var>$name</var></span>, <span>mixed <var>$value</var></span> )</code> <div class="description short"> <p>Adds new attribute to the registry.</p> </div> <div class="description detailed hidden"> <p>Adds new attribute to the registry.</p> <h4>Parameters</h4> <div class="list"><dl> <dt><var>$name</var></dt> <dd></dd> <dt><var>$value</var></dt> <dd></dd> </dl></div> <h4>Returns</h4> <div class="list"> static </div> <h4>Api</h4> <div class="list"> </div> </div> </div></td> </tr> </table> </div> <div class="panel panel-default"> <div class="panel-heading"><h2>Properties summary</h2></div> <table class="summary table table-bordered table-striped properties" id="properties"> <tr data-order="methods" id="$methods"> <td class="attributes"><code> protected array </code></td> <td class="name"> <a href="source-class-Pawelzny.MetaClass.Meta.html#24-29" title="Go to source code"><var>$methods</var></a> <div class="description short"> <p>Meta methods registry</p> </div> <div class="description detailed hidden"> <p>Meta methods registry</p> </div> </td> <td class="value"> <div> <a href="#$methods" class="anchor">#</a> <code>[]</code> </div> </td> </tr> <tr data-order="attributes" id="$attributes"> <td class="attributes"><code> protected array </code></td> <td class="name"> <a href="source-class-Pawelzny.MetaClass.Meta.html#31-36" title="Go to source code"><var>$attributes</var></a> <div class="description short"> <p>Meta attributes registry</p> </div> <div class="description detailed hidden"> <p>Meta attributes registry</p> </div> </td> <td class="value"> <div> <a href="#$attributes" class="anchor">#</a> <code>[]</code> </div> </td> </tr> </table> </div> </div> </div> <div id="footer"> API documentation generated by <a href="http://apigen.org">ApiGen</a> </div> </div> <script src="resources/combined.js"></script> <script src="elementlist.js"></script> </body> </html>
zakalwe.css
rjz/zakalwe
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ /* Document ========================================================================== */ /** * 1. Correct the line height in all browsers. * 2. Prevent adjustments of font size after orientation changes in iOS. */ html { line-height: 1.15; /* 1 */ -webkit-text-size-adjust: 100%; /* 2 */ } /* Sections ========================================================================== */ /** * Remove the margin in all browsers. */ body { margin: 0; } /** * Render the `main` element consistently in IE. */ main { display: block; } /** * Correct the font size and margin on `h1` elements within `section` and * `article` contexts in Chrome, Firefox, and Safari. */ h1 { font-size: 2em; margin: 0.67em 0; } /* Grouping content ========================================================================== */ /** * 1. Add the correct box sizing in Firefox. * 2. Show the overflow in Edge and IE. */ hr { box-sizing: content-box; /* 1 */ height: 0; /* 1 */ overflow: visible; /* 2 */ } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ pre { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } /* Text-level semantics ========================================================================== */ /** * Remove the gray background on active links in IE 10. */ a { background-color: transparent; } /** * 1. Remove the bottom border in Chrome 57- * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */ abbr[title] { border-bottom: none; /* 1 */ text-decoration: underline; /* 2 */ text-decoration: underline dotted; /* 2 */ } /** * Add the correct font weight in Chrome, Edge, and Safari. */ b, strong { font-weight: bolder; } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ code, kbd, samp { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } /** * Add the correct font size in all browsers. */ small { font-size: 80%; } /** * Prevent `sub` and `sup` elements from affecting the line height in * all browsers. */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sub { bottom: -0.25em; } sup { top: -0.5em; } /* Embedded content ========================================================================== */ /** * Remove the border on images inside links in IE 10. */ img { border-style: none; } /* Forms ========================================================================== */ /** * 1. Change the font styles in all browsers. * 2. Remove the margin in Firefox and Safari. */ button, input, optgroup, select, textarea { font-family: inherit; /* 1 */ font-size: 100%; /* 1 */ line-height: 1.15; /* 1 */ margin: 0; /* 2 */ } /** * Show the overflow in IE. * 1. Show the overflow in Edge. */ button, input { /* 1 */ overflow: visible; } /** * Remove the inheritance of text transform in Edge, Firefox, and IE. * 1. Remove the inheritance of text transform in Firefox. */ button, select { /* 1 */ text-transform: none; } /** * Correct the inability to style clickable types in iOS and Safari. */ button, [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; } /** * Remove the inner border and padding in Firefox. */ button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { border-style: none; padding: 0; } /** * Restore the focus styles unset by the previous rule. */ button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring { outline: 1px dotted ButtonText; } /** * Correct the padding in Firefox. */ fieldset { padding: 0.35em 0.75em 0.625em; } /** * 1. Correct the text wrapping in Edge and IE. * 2. Correct the color inheritance from `fieldset` elements in IE. * 3. Remove the padding so developers are not caught out when they zero out * `fieldset` elements in all browsers. */ legend { box-sizing: border-box; /* 1 */ color: inherit; /* 2 */ display: table; /* 1 */ max-width: 100%; /* 1 */ padding: 0; /* 3 */ white-space: normal; /* 1 */ } /** * Add the correct vertical alignment in Chrome, Firefox, and Opera. */ progress { vertical-align: baseline; } /** * Remove the default vertical scrollbar in IE 10+. */ textarea { overflow: auto; } /** * 1. Add the correct box sizing in IE 10. * 2. Remove the padding in IE 10. */ [type="checkbox"], [type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ } /** * Correct the cursor style of increment and decrement buttons in Chrome. */ [type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; } /** * 1. Correct the odd appearance in Chrome and Safari. * 2. Correct the outline style in Safari. */ [type="search"] { -webkit-appearance: textfield; /* 1 */ outline-offset: -2px; /* 2 */ } /** * Remove the inner padding in Chrome and Safari on macOS. */ [type="search"]::-webkit-search-decoration { -webkit-appearance: none; } /** * 1. Correct the inability to style clickable types in iOS and Safari. * 2. Change font properties to `inherit` in Safari. */ ::-webkit-file-upload-button { -webkit-appearance: button; /* 1 */ font: inherit; /* 2 */ } /* Interactive ========================================================================== */ /* * Add the correct display in Edge, IE 10+, and Firefox. */ details { display: block; } /* * Add the correct display in all browsers. */ summary { display: list-item; } /* Misc ========================================================================== */ /** * Add the correct display in IE 10+. */ template { display: none; } /** * Add the correct display in IE 10. */ [hidden] { display: none; } html { color: #231f20; font: normal 1.4rem/1.8 'Source Serif Pro', Georgia, serif; /* ref: http://stackoverflow.com/questions/11006812 */ -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100% } @media screen and (max-width: 768px) { html { font: normal 1rem/1.6 'Source Serif Pro', Georgia, serif } } body { background-color: #fff; margin: 0; padding-top: 0; overflow-x: hidden; } footer { font: 0.7em 'Lato', Arial, sans-serif; padding: 2em 0 1.6em; text-align: center; } a:link, a:visited { color: #231f20; text-decoration: none; border-bottom: 1px dotted #231f20; } a:hover, a:focus, a:active { color: #1982d1; border-bottom-color: #1982d1; } p { margin: 0.2em 0 1em; } ol, ul, dl, blockquote { margin: 1.2em 0 1.6em } @media screen and (max-width: 768px) { ol, ul, dl, blockquote { margin: 1em 0; padding: 0 1em } } figure { display: block; margin: 3em auto 2em; max-width: 90%; } figure img { display: block; margin: auto; max-width: 100%; } figure figcaption { text-align: center; font-style: italic; font-size: 0.9em; padding-top: 0.6em; position: relative; } figure cite { color: #777; font-size: 0.6em; font-style: normal; text-transform: uppercase; position: absolute; top: 0; right: 0; } @media screen and (max-width: 768px) { figure { max-width: 100% } } blockquote { font-style: italic; border-left: 1px dotted #231f20; margin-left: 2em; margin-right: 3em; padding: 0.2em 2em 0.4em } @media screen and (max-width: 768px) { blockquote { margin-left: 0; margin-right: 0; padding: 0.2em 1em 0.4em; border: 0 } } blockquote cite { margin-left: 3em; margin-top: 0.4em } @media screen and (max-width: 480px) { blockquote cite { margin-left: 1em } } blockquote p { margin: 1em 0 } blockquote p:first-child { margin-top: 0.4em; } blockquote p:last-of-type { margin-bottom: 0.4em; } ol, ul, pre { margin: 1.5em 2em; } ol { list-style: decimal-leading-zero; } ol, ul { margin: 1.5em 1em 1.5em 1em; } blockquote ol, blockquote ul { line-height: 1.4; margin: 1em 0; } ol li, ul li { margin-bottom: 0.4em; } ol li ol, ol li ul, ul li ol, ul li ul { margin: 0.5em 1em 0.8em 0; padding-left: 1em; } ol li ul, ul li ul { list-style: circle; } ol li ol, ul li ol { list-style: lower-alpha; } dl dt { font: bold 1em 'Lato', Arial, sans-serif; margin-top: 0.5em } dl dt:first-child { margin-top: 0; } dl dd { font-style: italic; font-size: 0.9em; } hr { border: 0; border-bottom: 1px solid #231f20; clear: both; margin: 2em auto; max-width: 20%; } .dark hr { border-color: #fff; } h1, h2, h3, h4, h5, h6 { line-height: 1.3; margin: 2em 0 0.8em; } h1 a:link, h1 a:visited, h2 a:link, h2 a:visited, h3 a:link, h3 a:visited, h4 a:link, h4 a:visited, h5 a:link, h5 a:visited, h6 a:link, h6 a:visited { color: #231f20; } h1 a:focus, h1 a:hover, h2 a:focus, h2 a:hover, h3 a:focus, h3 a:hover, h4 a:focus, h4 a:hover, h5 a:focus, h5 a:hover, h6 a:focus, h6 a:hover { text-decoration: underline; } h1 { font-family: 'Source Serif Pro', Georgia, serif; font-weight: normal; text-align: center; } h1 small { font-family: 'Lato', Arial, sans-serif; font-size: 0.4em; } @media screen and (max-width: 480px) { h1 { margin: 0.5em 0 } } h2 { } h3 { font-size: 1.0em; } code, pre { color: #231f20; font: bold 0.8em/1.4em monospace; } pre { font-size: 0.9em; line-height: 1.3em; margin-left: 1em; padding: 0.5em 1em; white-space: pre-wrap } @media screen and (max-width: 1025px) { pre { padding: 1em 0; word-wrap: break-word; overflow: hidden } } @media screen and (max-width: 480px) { pre { font-size: 1em; padding-left: 0; margin: 1.5em 1em } } a > code, a > pre { color: #231f20; } table { margin: 1em 0 2em; width: 100%; border-spacing: 0; } table td, table th { padding: 0.3em 1em; vertical-align: top; } table td { border-bottom: 1px dotted #231f20; } table td hr { margin: 0.3em auto 0.6em; max-width: 100%; border: 0; height: auto; text-align: center } table td hr::before { content: '…'; } table tr:last-child td { border-bottom: 0; } table th { border-bottom: 2px solid #231f20; font-weight: bold; padding-top: 1em; text-align: left; } table tbody > tr:first-child td { padding-top: 0.5em; } @media screen and (max-width: 480px) { table { margin: 0; width: 100% } } figure > table { max-width: 100%; } article { margin: 0 auto; max-width: 940px; padding-top: 0; width: 100%; } article h1, article h2, article h3, article h4, article h5, article h6 { clear: both; } @media screen and (max-width: 1024px) { article { max-width: 600px; width: 90% } } @media screen and (max-width: 768px) { article { width: 500px; max-width: 95% } } .article__leader { font-size: 1.4em; font-style: italic; line-height: 1.5; position: relative } @media screen and (max-width: 1200px) { .article__leader { max-width: 95% } } .article__figure figcaption { font-size: 0.7em; } .article__figure--inline { margin: 2em; width: 420px; } .article__figure--inline img, .article__figure--inline table { width: 100%; } @media screen and (max-width: 767px) { .article__figure--inline { width: 100% } } @media screen and (max-width: 767px) { .article__figure--inline img, .article__figure--jumbo img { margin: auto -5%; max-width: none; max-height: none; width: 110% } } .article__figure--inline cite { position: static; } .article__figure--inline-right { float: right; margin-right: -60px } @media screen and (max-width: 1200px) { .article__figure--inline-right { margin-right: 0 } } .article__figure--inline-left { float: left; margin-left: -60px } @media screen and (max-width: 1200px) { .article__figure--inline-left { margin-left: 0 } } .article__figure--jumbo { width: 100vw; position: relative; margin-left: -120px; max-width: 1180px } @media screen and (max-width: 1200px) { .article__figure--jumbo { margin-left: 0; margin-right: 0; max-width: 100% } } .article__blockquote--jumbo { border: 0; font-style: italic; font-size: 1.5em; line-height: 1.6em; margin: 2em 0; padding: 0; width: 100vw; position: relative; margin-left: -120px; margin-right: -120px; max-width: 1180px; text-align: center } @media screen and (max-width: 1200px) { .article__blockquote--jumbo { margin-left: 0; margin-right: 0; max-width: 100% } } .article-header { background-color: #231f20; height: 60vh; width: 100vw; max-height: 800px; display: flex; justify-content: center; align-items: flex-end; margin-left: calc(-50vw + 470px); position: relative; overflow: hidden; color: #fff; text-align: center } @media screen and (max-width: 1024px) { .article-header { height: auto; max-height: auto; margin: 0; width: auto } } .article-header--mini { height: 300px; } .article-header__image { background: #231f20 center center no-repeat; background-size: cover; position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 0; } .article-header__image a { cursor: pointer; font-size: 2em; position: absolute; left: 20px; top: 100px; } .article__sharing { margin: 3em 0; text-align: center; } .article__sharing ul { margin: 0; padding: 0; } .article__sharing li { display: inline; list-style: none; } .article__sharing i, .article__sharing a:link, .article__sharing a:visited { cursor: pointer; color: #fff; border: none; } .dark .article__sharing i, .dark .article__sharing a:link, .dark .article__sharing a:visited { border: none; color: #231f20; } .article__sharing i { background: #231f20; display: inline-block; border-radius: 3em; padding: 0.6em 0.5em 0.4em; width: 1em; height: 1em; text-align: center; } .dark .article__sharing i { background: #fff; } @media screen and (max-width: 768px) { .article__sharing { display: none } } .article-header__summary { background-color: #fff; box-shadow: 0 0 30px #231f20; color: #231f20; max-width: 1200px; margin: 0 auto; width: 100%; z-index: 1; } .article-header__summary h1 { font-size: 4em; line-height: 0.9em; margin: 1em 0 0.2em; } .article-header__summary h1 a:link, .article-header__summary h1 a:visited { color: #231f20; } .article-header__summary p { font-style: italic; margin: 0; } @media screen and (max-width: 768px) { .article-header__summary { padding: 1em 20px; margin-bottom: 0; max-width: calc(100vw - 40px) } } .dark .article-header__summary { background-color: #231f20; color: #fff; } .dark { background-color: #231f20; color: #fff; } .dark a:link, .dark a:visited, .dark a:hover, .dark a:focus, .dark a:active { color: #fff; text-decoration: none; border-bottom: 1px dotted #fff; } .dark a:hover, .dark a:focus, .dark a:active { border-bottom: 1px solid #fff; } .dark code, .dark pre { color: #64d8a6; } .dark td, .dark th { border-color: #fff; }
app/components/views/PrivacyPage/PrivacyTab/PrivacyContent.module.css
decred/decrediton
.privacyContent { width: 740px; } .error { color: var(--error-text-color); margin-top: 8px; } .isRow { display: flex; flex-direction: row; } .isColumn { display: flex; flex-direction: column; } .bold { font-weight: 700; } .select { width: 300px; } .item { padding: 10px; } .item.error { color: red; } .area { margin-left: auto; } .row { margin-bottom: 10px; } .balanceRow { width: 100%; align-items: center; } .highlighted { background-color: var(--blue-highlight-background); padding: 2px; } .contentTitleButtonsArea { margin-left: auto; } .mixerArea { background-color: var(--background-back-color); padding: 30px 40px; position: relative; margin-bottom: 10px; } .mixerStatus { margin-right: auto; font-size: 18px; color: var(--privacy-mixer-status-color); margin-bottom: 20px; padding-left: 44px; height: 34px; align-items: center; background-size: 34px; background-repeat: no-repeat; background-image: var(--decentralized-loop-still); } .mixerStatus.running { background-image: var(--decentralized-loop-animation); } .mixerSettingsIconButton { position: absolute; top: 30px; right: 40px; } .balances { display: flex; flex-direction: row; } .balanceContainer { background-size: 18px; background-position: 2px 0; background-repeat: no-repeat; padding-left: 30px; font-size: 17px; line-height: 15px; color: var(--privacy-balance-color); position: relative; font-family: var(--font-family-monospace); } .balanceContainer .balance-base { color: var(--input-color-default); } .balanceContainer.mixedAccount { background-image: var(--mixed-account-icon); } .balanceContainer.unmixedAccount { background-image: var(--unmixed-account-icon); } .balanceContainer label { font-size: 11px; color: var(--privacy-balance-label-color); line-height: 20px; font-family: var(--font-family-regular); } .balanceContainer .alertIcon { position: absolute; width: 10px; height: 10px; top: -2px; left: 13px; background-image: var(--animated-alert-icon); background-size: 10px; background-position: top left; background-repeat: no-repeat; } .balanceContainer.balanceError label { color: var(--error-red); } .balanceContainer.mixedAccount label { color: var(--privacy-balance-mixed-label-color); } .privacyArrows { width: 50px; height: 20px; padding: 0 14px; } .privacyArrows.running { background-image: var(--privacy-running-arrows); background-position: center; background-repeat: no-repeat; background-size: 50px 20px; } .startButtonContrainer { margin-left: auto; } .sendToUnmixedAccount { background-color: var(--background-back-color); padding: 30px 40px; margin-bottom: 10px; position: relative; } .sendToUnmixedAccount .title { margin-right: auto; font-size: 18px; line-height: 32px; color: var(--privacy-mixer-status-color); padding-left: 42px; background-size: 32px; background-position: 0 0; background-repeat: no-repeat; background-image: var(--self-transaction-icon); } .disabledTooltip { width: 17rem; text-align: center; } @media screen and (max-width: 1180px) { .privacyContent { width: 667px; } } @media screen and (max-width: 768px) { .privacyContent { width: 355px; margin-left: 0; } .mixerArea { padding: 30px 20px; } .sendToUnmixedAccount { padding: 30px 20px 0 20px; } .mixerArea .balanceRow.isRow { flex-direction: column; } .balanceRow { align-items: flex-start; } .mixerSettingsIconButton { right: 20px; } }
app/styles/main.css
bcoe/record-crate
body { background: #373737; font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif; color: rgba(244, 244, 244, 0.87); -webkit-tap-highlight-color: rgba(255, 255, 255, 0); tap-highlight-color: rgba(255, 255, 255, 0); } html /deep/ a { text-decoration: none; } html /deep/ paper-icon-button /deep/ core-icon { display: block; } html /deep/ core-icon { display: inline-block; vertical-align: middle; background-repeat: no-repeat; fill: currentcolor; position: relative; height: 24px; width: 24px; }
23/bindata/base.html
mastensg/52
<!DOCTYPE html> <html> <head> <title>{{template "title" .}}</title> <meta http-equiv="Content-type" content="text/html;charset=UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> body { background: #fff; font-family: sans-serif; } </style> {{template "head" .}} </head> <body> {{template "body" .}} </body> </html>
_posts/2006-10-08-ddd-making-implicit-concepts-explicit.html
vazexqi/softwareengineering.vazexqi.com
--- layout: post typo_id: 32 title: "DDD: Making Implicit Concepts Explicit" --- <p> This chapter was a bit long and I felt that it should be split into two chapters. Overall the contents of the chapter fits well with the title but the first part focused on making iterative steps to refine the model and the second part focused on specifications. </p> <p> The first part of the chapter mentions some useful methods for identifying missing concepts from the domain. For instance, by paying attention to the daily conversations between developers and domain experts, one might be able to pick up discrepancies in model and the description that the domain experts use. These discrepancies hint at possible concepts that might enhance the model. What else should you pick up from conversations with the domain experts? Pay attention to the contradictions between domain experts. These contradictions might be signs of different approaches to the problem and you should be prepared to accommodate multiple solutions if necessary. </p> <p> Moreover, you should also not discount the fact that reading a book, a paper or some article on the subject might pave the way for a better domain model. Some domain experts do not have the time to sit through every meeting with the developers. In such cases, it is best to pick up the literature and peruse it. It might also be beneficial to see how other developers have approached this problem in the past. </p> <p> Another quick way to diagnose potential problems with the model is by checking for <a href="http://wiki.java.net/bin/view/People/SmellsToRefactorings"><i>code smells</i></a>. By focusing on the smells between classes, you can identify potential trouble hotspots that might require some refactoring. Of particular interest are smells such as <i>divergent change</i>, <i>shotgun surgery</i> and <i>parallel inheritance hierarchies</i> since those smells affect a large portion of the source code. </p> <p> Refactoring toward a breakthrough is a hard enough process. But actually finding the end goal for <i>refactoring to</i> can also be complicated. What Evans has done is present a list of rules of thumb and illustrate them using concrete examples. Even with these guidelines, Evans does not fail to emphasize the importance of trial and error. Sometimes, it takes multiple session of trial and error before getting the <i>right</i> model. Experience certainly helps but I would assume that a great deal of perseverance and an excellent version control - for reverting code - helps significantly as well. </p> <p> In the second part of the chapter, Evans focuses on the <i>Specification</i> pattern. The <b>Specification</b> pattern is a predicate that determines if an object does or does not satisfy some criteria. By making this predicate its own object, it becomes clearer to people that this is requirement rather than some arbitrary behavior of the object or model. I felt that this was the main theme of the chapter: making implicit concepts explicit in an intention-revealing manner. </p> <p> A Specification object takes care of handling the testing of whether some criteria have been met. There are three main uses for specifications: validation, selection and generation. These three uses are on the same conceptual level. </p> <p> Specifications should not be confused with <i>Assertions</i> (presented in the next chapter) which ensure that certain pre-conditions, post-conditions and invariants are maintained through the program. Use a specification to test if an object fulfills some criteria that is part of the domain logic but use an assertion to make explicit the side effects from calling some procedure. Specifications and assertions both make the intent more explicit but they do so for different purposes. Used together, both can communicate the model better.</p>
node_modules/npm/html/doc/api/npm-bugs.html
ericntd/sccprototype
<!doctype html> <html> <title>npm-bugs</title> <meta http-equiv="content-type" value="text/html;utf-8"> <link rel="stylesheet" type="text/css" href="../../static/style.css"> <link rel="canonical" href="https://www.npmjs.org/doc/api/npm-bugs.html"> <script async=true src="../../static/toc.js"></script> <body> <div id="wrapper"> <h1><a href="../api/npm-bugs.html">npm-bugs</a></h1> <p>Bugs for a package in a web browser maybe</p> <h2 id="synopsis">SYNOPSIS</h2> <pre><code>npm.commands.bugs(package, callback) </code></pre><h2 id="description">DESCRIPTION</h2> <p>This command tries to guess at the likely location of a package&#39;s bug tracker URL, and then tries to open it using the <code>--browser</code> config param.</p> <p>Like other commands, the first parameter is an array. This command only uses the first element, which is expected to be a package name with an optional version number.</p> <p>This command will launch a browser, so this command may not be the most friendly for programmatic use.</p> </div> <table border=0 cellspacing=0 cellpadding=0 id=npmlogo> <tr><td style="width:180px;height:10px;background:rgb(237,127,127)" colspan=18>&nbsp;</td></tr> <tr><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td><td style="width:40px;height:10px;background:#fff" colspan=4>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4>&nbsp;</td><td style="width:40px;height:10px;background:#fff" colspan=4>&nbsp;</td><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td><td colspan=6 style="width:60px;height:10px;background:#fff">&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4>&nbsp;</td></tr> <tr><td colspan=2 style="width:20px;height:30px;background:#fff" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:20px;height:10px;background:#fff" rowspan=4 colspan=2>&nbsp;</td><td style="width:10px;height:20px;background:rgb(237,127,127)" rowspan=2>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:20px;height:10px;background:#fff" rowspan=3 colspan=2>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td></tr> <tr><td style="width:10px;height:10px;background:#fff" rowspan=2>&nbsp;</td></tr> <tr><td style="width:10px;height:10px;background:#fff">&nbsp;</td></tr> <tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr> <tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr> </table> <p id="footer">npm-bugs &mdash; npm@2.5.0</p>
doc/java/jdk8/org/omg/PortableServer/CurrentHelper.html
fbiville/annotation-processing-ftw
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_31) on Wed Dec 17 20:48:20 PST 2014 --> <title>CurrentHelper (Java Platform SE 8 )</title> <meta name="date" content="2014-12-17"> <meta name="keywords" content="org.omg.PortableServer.CurrentHelper class"> <meta name="keywords" content="insert()"> <meta name="keywords" content="extract()"> <meta name="keywords" content="type()"> <meta name="keywords" content="id()"> <meta name="keywords" content="read()"> <meta name="keywords" content="write()"> <meta name="keywords" content="narrow()"> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="CurrentHelper (Java Platform SE 8 )"; } } catch(err) { } //--> var methods = {"i0":9,"i1":9,"i2":9,"i3":9,"i4":9,"i5":9,"i6":9}; var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/CurrentHelper.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-files/index-1.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><strong>Java&trade;&nbsp;Platform<br>Standard&nbsp;Ed.&nbsp;8</strong></div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../org/omg/PortableServer/Current.html" title="interface in org.omg.PortableServer"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../org/omg/PortableServer/CurrentOperations.html" title="interface in org.omg.PortableServer"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?org/omg/PortableServer/CurrentHelper.html" target="_top">Frames</a></li> <li><a href="CurrentHelper.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.omg.PortableServer</div> <h2 title="Class CurrentHelper" class="title">Class CurrentHelper</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li><a href="../../../java/lang/Object.html" title="class in java.lang">java.lang.Object</a></li> <li> <ul class="inheritance"> <li>org.omg.PortableServer.CurrentHelper</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public abstract class <span class="typeNameLabel">CurrentHelper</span> extends <a href="../../../java/lang/Object.html" title="class in java.lang">Object</a></pre> <div class="block">The PortableServer::Current interface, derived from CORBA::Current, provides method implementations with access to the identity of the object on which the method was invoked. The Current interface is provided to support servants that implement multiple objects, but can be used within the context of POA-dispatched method invocations on any servant. To provide location transparency, ORBs are required to support use of Current in the context of both locally and remotely invoked operations. An instance of Current can be obtained by the application by issuing the CORBA::ORB::resolve_initial_references("POACurrent") operation. Thereafter, it can be used within the context of a method dispatched by the POA to obtain the POA and ObjectId that identify the object on which that operation was invoked.</div> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/omg/PortableServer/CurrentHelper.html#CurrentHelper--">CurrentHelper</a></span>()</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code>static <a href="../../../org/omg/PortableServer/Current.html" title="interface in org.omg.PortableServer">Current</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/omg/PortableServer/CurrentHelper.html#extract-org.omg.CORBA.Any-">extract</a></span>(<a href="../../../org/omg/CORBA/Any.html" title="class in org.omg.CORBA">Any</a>&nbsp;a)</code>&nbsp;</td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>static <a href="../../../java/lang/String.html" title="class in java.lang">String</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/omg/PortableServer/CurrentHelper.html#id--">id</a></span>()</code>&nbsp;</td> </tr> <tr id="i2" class="altColor"> <td class="colFirst"><code>static void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/omg/PortableServer/CurrentHelper.html#insert-org.omg.CORBA.Any-org.omg.PortableServer.Current-">insert</a></span>(<a href="../../../org/omg/CORBA/Any.html" title="class in org.omg.CORBA">Any</a>&nbsp;a, <a href="../../../org/omg/PortableServer/Current.html" title="interface in org.omg.PortableServer">Current</a>&nbsp;that)</code>&nbsp;</td> </tr> <tr id="i3" class="rowColor"> <td class="colFirst"><code>static <a href="../../../org/omg/PortableServer/Current.html" title="interface in org.omg.PortableServer">Current</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/omg/PortableServer/CurrentHelper.html#narrow-org.omg.CORBA.Object-">narrow</a></span>(<a href="../../../org/omg/CORBA/Object.html" title="interface in org.omg.CORBA">Object</a>&nbsp;obj)</code>&nbsp;</td> </tr> <tr id="i4" class="altColor"> <td class="colFirst"><code>static <a href="../../../org/omg/PortableServer/Current.html" title="interface in org.omg.PortableServer">Current</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/omg/PortableServer/CurrentHelper.html#read-org.omg.CORBA.portable.InputStream-">read</a></span>(<a href="../../../org/omg/CORBA/portable/InputStream.html" title="class in org.omg.CORBA.portable">InputStream</a>&nbsp;istream)</code>&nbsp;</td> </tr> <tr id="i5" class="rowColor"> <td class="colFirst"><code>static <a href="../../../org/omg/CORBA/TypeCode.html" title="class in org.omg.CORBA">TypeCode</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/omg/PortableServer/CurrentHelper.html#type--">type</a></span>()</code>&nbsp;</td> </tr> <tr id="i6" class="altColor"> <td class="colFirst"><code>static void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/omg/PortableServer/CurrentHelper.html#write-org.omg.CORBA.portable.OutputStream-org.omg.PortableServer.Current-">write</a></span>(<a href="../../../org/omg/CORBA/portable/OutputStream.html" title="class in org.omg.CORBA.portable">OutputStream</a>&nbsp;ostream, <a href="../../../org/omg/PortableServer/Current.html" title="interface in org.omg.PortableServer">Current</a>&nbsp;value)</code>&nbsp;</td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.<a href="../../../java/lang/Object.html" title="class in java.lang">Object</a></h3> <code><a href="../../../java/lang/Object.html#clone--">clone</a>, <a href="../../../java/lang/Object.html#equals-java.lang.Object-">equals</a>, <a href="../../../java/lang/Object.html#finalize--">finalize</a>, <a href="../../../java/lang/Object.html#getClass--">getClass</a>, <a href="../../../java/lang/Object.html#hashCode--">hashCode</a>, <a href="../../../java/lang/Object.html#notify--">notify</a>, <a href="../../../java/lang/Object.html#notifyAll--">notifyAll</a>, <a href="../../../java/lang/Object.html#toString--">toString</a>, <a href="../../../java/lang/Object.html#wait--">wait</a>, <a href="../../../java/lang/Object.html#wait-long-">wait</a>, <a href="../../../java/lang/Object.html#wait-long-int-">wait</a></code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="CurrentHelper--"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>CurrentHelper</h4> <pre>public&nbsp;CurrentHelper()</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="insert-org.omg.CORBA.Any-org.omg.PortableServer.Current-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>insert</h4> <pre>public static&nbsp;void&nbsp;insert(<a href="../../../org/omg/CORBA/Any.html" title="class in org.omg.CORBA">Any</a>&nbsp;a, <a href="../../../org/omg/PortableServer/Current.html" title="interface in org.omg.PortableServer">Current</a>&nbsp;that)</pre> </li> </ul> <a name="extract-org.omg.CORBA.Any-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>extract</h4> <pre>public static&nbsp;<a href="../../../org/omg/PortableServer/Current.html" title="interface in org.omg.PortableServer">Current</a>&nbsp;extract(<a href="../../../org/omg/CORBA/Any.html" title="class in org.omg.CORBA">Any</a>&nbsp;a)</pre> </li> </ul> <a name="type--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>type</h4> <pre>public static&nbsp;<a href="../../../org/omg/CORBA/TypeCode.html" title="class in org.omg.CORBA">TypeCode</a>&nbsp;type()</pre> </li> </ul> <a name="id--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>id</h4> <pre>public static&nbsp;<a href="../../../java/lang/String.html" title="class in java.lang">String</a>&nbsp;id()</pre> </li> </ul> <a name="read-org.omg.CORBA.portable.InputStream-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>read</h4> <pre>public static&nbsp;<a href="../../../org/omg/PortableServer/Current.html" title="interface in org.omg.PortableServer">Current</a>&nbsp;read(<a href="../../../org/omg/CORBA/portable/InputStream.html" title="class in org.omg.CORBA.portable">InputStream</a>&nbsp;istream)</pre> </li> </ul> <a name="write-org.omg.CORBA.portable.OutputStream-org.omg.PortableServer.Current-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>write</h4> <pre>public static&nbsp;void&nbsp;write(<a href="../../../org/omg/CORBA/portable/OutputStream.html" title="class in org.omg.CORBA.portable">OutputStream</a>&nbsp;ostream, <a href="../../../org/omg/PortableServer/Current.html" title="interface in org.omg.PortableServer">Current</a>&nbsp;value)</pre> </li> </ul> <a name="narrow-org.omg.CORBA.Object-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>narrow</h4> <pre>public static&nbsp;<a href="../../../org/omg/PortableServer/Current.html" title="interface in org.omg.PortableServer">Current</a>&nbsp;narrow(<a href="../../../org/omg/CORBA/Object.html" title="interface in org.omg.CORBA">Object</a>&nbsp;obj)</pre> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/CurrentHelper.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-files/index-1.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><strong>Java&trade;&nbsp;Platform<br>Standard&nbsp;Ed.&nbsp;8</strong></div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../org/omg/PortableServer/Current.html" title="interface in org.omg.PortableServer"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../org/omg/PortableServer/CurrentOperations.html" title="interface in org.omg.PortableServer"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?org/omg/PortableServer/CurrentHelper.html" target="_top">Frames</a></li> <li><a href="CurrentHelper.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small><font size="-1"> <a href="http://bugreport.sun.com/bugreport/">Submit a bug or feature</a> <br>For further API reference and developer documentation, see <a href="http://download.oracle.com/javase/8/docs/index.html" target="_blank">Java SE Documentation</a>. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.<br> <a href="../../../../legal/cpyr.html">Copyright</a> &#x00a9; 1993, 2015, Oracle and/or its affiliates. All rights reserved. </font></small></p> </body> </html>
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/3458ae4ef42645d3d4270b88ccdb080f9b5fc4ef84c73cac55c4440df369f706.html
simonmysun/praxis
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>18 --> 19</title> <link href="./../../assets/style.css" rel="stylesheet"> </head> <body> <h2>You have to be fast</h2> <a href="./78950f3c3d0cf4c92848956a248fd13b3fb62718d68b00077e6049a1fc78f235.html">Teleport</a> <hr> <a href="./../../about.md">About</a> (Spoilers! ) <script src="./../../assets/md5.js"></script> <script> window.currentLevel = 7; </script> <script src="./../../assets/script.js"></script> </body> </html>
demo/column_resize.html
billdc/handsontable
<!doctype html> <html> <head> <meta charset='utf-8'> <title>Column &amp; row resize - Handsontable</title> <!-- Loading Handsontable (full distribution that includes all dependencies apart from jQuery) --> <link data-jsfiddle="common" rel="stylesheet" media="screen" href="../dist/handsontable.css"> <link data-jsfiddle="common" rel="stylesheet" media="screen" href="../dist/pikaday/pikaday.css"> <script data-jsfiddle="common" src="../dist/pikaday/pikaday.js"></script> <script data-jsfiddle="common" src="../dist/moment/moment.js"></script> <script data-jsfiddle="common" src="../dist/zeroclipboard/ZeroClipboard.js"></script> <script data-jsfiddle="common" src="../dist/handsontable.js"></script> <!-- Loading demo dependencies. They are used here only to enhance the examples on this page --> <link data-jsfiddle="common" rel="stylesheet" media="screen" href="css/samples.css?20140331"> <script src="js/samples.js"></script> <script src="js/highlight/highlight.pack.js"></script> <link rel="stylesheet" media="screen" href="js/highlight/styles/github.css"> <link rel="stylesheet" href="css/font-awesome/css/font-awesome.min.css"> <!-- Facebook open graph. Don't copy this to your project :) --> <meta property="og:title" content="Column resize"> <meta property="og:description" content="."> <meta property="og:url" content="http://handsontable.com/demo/column_resize.html"> <meta property="og:image" content="http://handsontable.com/demo/image/og-image.png"> <meta property="og:image:type" content="image/png"> <meta property="og:image:width" content="409"> <meta property="og:image:height" content="164"> <link rel="canonical" href="http://handsontable.com/demo/column_resize.html"> <!-- Google Analytics for GitHub Page. Don't copy this to your project :) --> <script src="js/ga.js"></script> </head> <body> <div class="wrapper"> <div class="wrapper-row"> <div id="global-menu-clone"> <h1><a href="../index.html">Handsontable</a></h1> </div> <div id="container"> <div class="columnLayout"> <div class="rowLayout"> <div class="descLayout"> <div class="pad" data-jsfiddle="example1"> <a name="resize"></a> <h2>Column &amp; row resize</h2> <p>To enable these features, use settings <code>manualColumnResize: true</code> and <code>manualRowResize: true</code></p> <p>The draggable resize handle appears:</p> <ul> <li>in the right part of the column header,</li> <li>in the bottom part of the row header.</li> </ul> <p>Double click on the resize handle automatically adjusts size of the row or column.</p> <div class="state-loaded example1 alert">State of the table has been restored. <button class="mini reset-state1">Reset table state</button></div> <p> <button id="changeSize">get size</button> <p id="showWidth"></p> <p id="showHeight"></p> </p> <div id="example1" style="width: 800px; height: 600px; overflow: hidden;"></div> <p> <button name="dump" data-dump="#example1" data-instance="hot" title="Prints current data source to Firebug/Chrome Dev Tools"> Dump data to console </button> </p> </div> </div> <div class="codeLayout"> <div class="pad"> <div class="jsFiddle"> <button class="jsFiddleLink" data-runfiddle="example1">Edit in jsFiddle</button> </div> <script data-jsfiddle="example1"> var container = document.getElementById('example1'), hot; hot = new Handsontable(container, { data: Handsontable.helper.createSpreadsheetData(1000, 10), rowHeaders: true, colHeaders: true, colWidths: [55, 80, 80, 80, 80, 80, 80], rowHeights: [50, 40, 100], manualColumnResize: true, manualRowResize: true, minSpareRows: 1, persistentState: true, contextMenu: true }); </script> </div> </div> </div> <script type="text/javascript"> (function(hot){ var reset = document.querySelector('.reset-state1'), stateLoaded = document.querySelector('.state-loaded'), storedData = {}, savedKeys; Handsontable.Dom.addEvent(changeSize, 'click', function () { // console.log(hot.getSettings().__proto__.colWidths); // console.log(hot.getSettings().__proto__.rowHeights); var rows = hot.getData().length; var cols = hot.getData()[0].length; var rowHeight = []; var colWidth = []; var temp; for(var i=0;i<cols;i++){ temp = hot.getColWidth(i); if(temp !== undefined){ colWidth[i] = temp; } } for(var i=0;i<rows;i++){ temp = hot.getRowHeight(i); if(temp !== undefined){ rowHeight[i] = temp; } } // console.log(hot.getRowHeight(1)); document.getElementById("showWidth").innerHTML = "width : "+colWidth; document.getElementById("showHeight").innerHTML = "height : "+rowHeight; }); Handsontable.Dom.addEvent(reset, 'click', function(){ hot.runHooks('persistentStateReset'); hot.updateSettings({ manualColumnMove: true, manualRowMove: true, manualColumnResize: true, manualRowResize: true }); stateLoaded.style.display = 'none'; hot.render(); }); hot.runHooks('persistentStateLoad', '_persistentStateKeys', storedData); savedKeys = storedData.value; if (savedKeys && savedKeys.length > 0) { stateLoaded.style.display = 'block'; hot.render(); } })(hot); </script> <div class="footer-text"> </div> </div> </div> </div> </div> <div id="outside-links-wrapper"></div> </body> </html>
views/loans/editloancharge.html
gauravsaini03/www
<div ng-controller="EditLoanChargeController"> <div> <ul class="breadcrumb"> <li><a href="#/viewloanaccount/{{loanId}}">{{'label.anchor.viewloanaccount' | translate}}</a> <span class="divider">/</span></li> <li class="active">{{'label.anchor.editloancharge' | translate}}</li> </ul> </div> <form name="loanchargeform" novalidate="" class="form-horizontal well" ng-submit="submit()"> <api-validate></api-validate> <fieldset> <legend>{{ 'label.heading.editloancharge' | translate }}</legend> <div class="control-group"> <label class="control-label" for="amount">{{ 'label.input.amount' | translate }}<span class="required">*</span></label> <div class="controls"> <input id="amount" ng-autofocus="true" type="text" name="amount" ng-model="formData.amount" required late-Validate/> <form-validate valattributeform="loanchargeform" valattribute="amount"/> </div> </div> <div class="offset3"> <button id="cancel" type="reset" class="btn" ng-click="cancel()">{{ 'label.button.cancel' | translate }}</button> <button id="save" type="submit" ng-disabled="!loanchargeform.$valid" class="btn btn-primary">{{ 'label.button.save' | translate }}</button> </div> </fieldset> </form> </div>
NOCAS_M282.txt.html
andrewdefries/Ames_ToxBenchmark
<html><img border=0 src=NOCAS_M282.txt alt=NOCAS_M282.txt></img><body> "x" "1" "KAZIUS, J, MCGUIRE, R AND BURSI, R. DERIVATION AND VALIDATION OF TOXICOPHORES FOR MUTAGENICITY PREDICTION. J. MED. CHEM. 48: 312-320, 2005" </body></html>
app/index.html
sixthand6th/gitbattle
<!DOCTYPE html> <html> <head> <title>Github Battle</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> </head> <body> <div id="app"> </div> </body> </html>
src/app/components/chart/chart.component.css
likr/interactive-sem
:host { width: 559px; height: 400px; display: block; }
_posts/_site/2012-06-06-fluent-2012-playlist.html
orestes/blog.orestes.io
<p><iframe style="width: 100%" width="100%"height="315" src="http://www.youtube.com/embed/f7AU2Ozu8eo" frameborder="0" allowfullscreen></iframe></p> <p><em>JavaScript development workflow of 2013</em> by <strong><a target="_blank" href="http://www.paulirish.com/">Paul Irish</a></strong> was amazing!</p> <p><strong>Link</strong>: <a href="http://www.youtube.com/playlist?list=PL75AC4484E6866741">Fluent 2012 playlist</a> on <strong>YouTube</strong> (58 videos, 5 hours).</p>
app/components/fighter/fighterDetail.template.html
LukaszK88/AngularJsApp
<section class="bg-pages" > <div class="container" ng-controller="myApp.FighterCtrl as fighterCtrl"> <div class="col-md-3"> <md-card> <md-card-title> <md-card-title-text> <span class="md-headline text-center">{{ fighter.name }}</span> <span class="md-subhead"></span> </md-card-title-text> </md-card-title> <md-card-content layout="row" layout-align="space-between"> <div ng-show="!fighter.image && fighterCtrl.fighterLoggedIn()"> <div ngf-drop ngf-select ng-model="file" ngf-resize="{width:200,height: 250, quality: .8, ratio: '2:3,centerCrop: true}" class="drop-box" ngf-drag-over-class="'dragover'" ngf-multiple="false" ngf-allow-dir="true" accept="image/*" ngf-pattern="'image/*'">Drop image here or click to upload</div> <div ngf-no-file-drop>File Drag/Drop is not supported for this browser</div> </div> <div ng-show="fighter.image && fighterCtrl.fighterLoggedIn()"> <div ngf-drop ngf-select ng-model="file" ngf-resize="{width:200,height: 250, quality: .8, ratio: '2:3, centerCrop: true}" ngf-drag-over-class="'dragover'" ngf-multiple="false" ngf-allow-dir="true" accept="image/*" ngf-pattern="'image/*'"> <img ng-show="fighter.image" class="img-responsive" src="{{fighter.image}}"> </div> </div> <img style="height: 200px" ng-show="fighter.image" class="img-responsive" src="{{fighter.image}}"> </md-card-content> </md-card> </div> <div class="col-md-5"> <md-card> <md-card-title> <md-card-title-text> <span class="md-headline"><span ng-repeat="flag in fighterCtrl.achievements.achievement.countries"><flag ng-if="flag.event.location != null" country="{{flag.event.location}}" size="32"></flag></span></span><br> <span class="md-headline text-center"> <span class="pull-left"> <font color='#a52a2a'><i class='fa fa-trophy fa-2x' aria-hidden='true'></i><br> <button style="background-color: #a52a2a; color: #0b0b0b " class="btn btn-xs">{{ fighterCtrl.achievements.achievement.bronze }}</button></font> </span> <span class="pull-left"> <font color='silver'><i class='fa fa-trophy fa-2x' aria-hidden='true'></i><br> <button style="background-color: silver; color: #0b0b0b " class="btn btn-xs">{{ fighterCtrl.achievements.achievement.silver }}</button></font> </span> <span class="pull-left"> <font color='#ffd700'><i class='fa fa-trophy fa-2x' aria-hidden='true'></i><br> <button style="background-color: #ffd700; color: #0b0b0b " class="btn btn-xs">{{ fighterCtrl.achievements.achievement.gold }}</button></font> </span> Fighter Stats</span> <span class="md-subhead"></span> </md-card-title-text> </md-card-title> <!--<md-card-content layout="row" layout-align="space-between">--> <!--</md-card-content>--> <!--<md-card-actions layout="column" layout-align="start">--> <!--<span class="md-subhead">Reversed</span>--> <!--<span class="md-subhead">Reversed2</span>--> <!--</md-card-actions>--> <div class="col-md-12"> <div class="row"> <div class="col-md-6"> <md-card-title-text> <span style="font-size: large" class="md-subhead text-center">Fighter info</span><br> <hr> <span class="md-subhead">Age: {{ fighter.age }}</span><br> <span class="md-subhead">Weight: {{ fighter.weight }}</span><br> <span class="md-subhead">Points: {{ fighter.total_points }}</span><br> <span class="md-subhead text-center">Quote:<br> <span style="font-size: small">"{{ fighter.quote }}"</span> </span><br> </md-card-title-text> </div> <div class="col-md-6"> <md-card-title-text> <span style="font-size: large" class="md-subhead text-center">Fighter record</span> <hr> <span class="md-subhead"></span><br> <span class="md-subhead">Fights: {{ (fighter.bohurt | arrayHelper:'fights') + (fighter.profight | arrayHelper:'fights') + (fighter.sword_shield | arrayHelper:'fights') + (fighter.sword_buckler | arrayHelper:'fights') + (fighter.polearm | arrayHelper:'fights') + (fighter.triathlon | arrayHelper:'fights') + (fighter.longsword | arrayHelper:'fights') }}</span><br> <span class="md-subhead">Bohurt: {{ fighter.bohurt | arrayHelper:'fights' }}</span><br> <span class="md-subhead">S&S: {{ fighter.sword_shield | arrayHelper:'fights' }}</span><br> <span class="md-subhead">S&B: {{ fighter.sword_buckler | arrayHelper:'fights' }}</span><br> <span class="md-subhead">Longsword: {{ fighter.longsword | arrayHelper:'fights' }}</span><br> <span class="md-subhead">Profight: {{ fighter.profight | arrayHelper:'fights' }}</span><br> <span class="md-subhead">Polearm: {{ fighter.polearm | arrayHelper:'fights' }}</span><br> <span class="md-subhead">Triathlon: {{ fighter.triathlon | arrayHelper:'fights' }}</span><br> </md-card-title-text> </div> </div> <hr> <span class="md-subhead">About:<br> <span style="font-size: small">"{{ fighter.about }}"</span> </span><br> </div> </md-card> </div> <div class="col-md-4"> <md-card> <md-card-title> <md-card-title-text> <span class="md-headline text-center">Achievements</span> <span class="md-subhead"></span> </md-card-title-text> </md-card-title> <md-card-content layout="row" layout-align="space-between"> <span ng-show="fighterCtrl.fighterLoggedIn() && !showform"> <md-button ng-click="showform=!showform" class="md-raised btn-sm wc-theme">Add Achievement</md-button> </span> <div ng-if="showform"> <form name="achievementForm" > <md-input-container class="md-block" flex-gt-sm> <md-select placeholder="Select Competition" ng-change="eventSelected = true" ng-model="achievement.event_id" required> <md-option ng-repeat="event in fighterCtrl.eventSelect" ng-value="event.id"> {{ event.title }} <flag country="{{event.location}}" size="16"></flag> </md-option> </md-select> </md-input-container> <!--<md-input-container class="md-block" flex-gt-sm>--> <!--<label>Country </label>--> <!--<md-select ng-model="achievement.location" required>--> <!--<md-option ng-repeat="country in countries" ng-value="country.code">--> <!--{{ country.name }}--> <!--</md-option>--> <!--</md-select>--> <!--</md-input-container>--> <div ng-show="eventSelected"> <md-input-container> <label>Category </label> <md-select ng-model="achievement.category" required> <md-option ng-repeat="category in categories" ng-value="category.name" > {{ category.name }} </md-option> </md-select> </md-input-container> <md-input-container> <label>Place </label> <md-select ng-model="achievement.place" required> <md-option ng-repeat="place in places" ng-value="place.name" > {{ place.name }} </md-option> </md-select> </md-input-container> <!--<div class="md-block" flex-gt-xs >--> <!--<md-datepicker ng-required="true" name="date" ng-model="achievement.date" md-current-view="year" md-placeholder="Enter date"></md-datepicker>--> <!--</div>--> <md-button ng-disabled="!( achievement.place && achievement.category ) " ng-click="fighterCtrl.addAchievement(achievement)"> Submit </md-button> <md-button ng-click="fighterCtrl.hideForm()"> Done </md-button> </div> </form> </div> </md-card-content> <md-card-content ng-repeat="achievement in fighterCtrl.achievements.data"> <span > {{ achievement.event.title }} |<flag country="{{ achievement.event.location }}" size="16"></flag> |{{achievement.category}} |<span ng-bind-html="achievement.cup">{{ achievement.cup }}</span> |{{achievement.event.date | limitTo:10}} </span> <button ng-show="fighterCtrl.fighterLoggedIn()" ng-click="updateForm=!updateForm" class="btn btn-xs btn-success"><span class="glyphicon glyphicon-pencil"></span></button> <button ng-show="fighterCtrl.fighterLoggedIn()" ng-click="fighterCtrl.deleteAchievement(achievement)" class="btn btn-xs btn-danger"><span class="glyphicon glyphicon-remove"></span></button> <br> <div ng-if="updateForm"> <form name="achievementForm" > <md-input-container> <label>Category </label> <md-select ng-model="achievement.category" required> <md-option ng-repeat="category in categories" ng-value="category.name" > {{ category.name }} </md-option> </md-select> </md-input-container> <md-input-container> <label>Place </label> <md-select ng-model="achievement.place" required> <md-option ng-repeat="place in places" ng-value="place.name" > {{ place.name }} </md-option> </md-select> </md-input-container> <br> <md-button ng-disabled="!( achievement.place && achievement.category )" ng-click="fighterCtrl.updateAchievement(achievement)"> Submit </md-button> </form> </div> </md-card-content> </md-card> </div> </div> </section>
docs/string__traits_8hpp_source.html
trflynn89/libfly
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.9.1"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <title>libfly: fly/types/string/detail/string_traits.hpp Source File</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtreedata.js"></script> <script type="text/javascript" src="navtree.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> <link href="doxygen-awesome.css" rel="stylesheet" type="text/css"/> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">libfly &#160;<span id="projectnumber">5.0.0</span> </div> <div id="projectbrief">C++20 utility library for Linux, macOS, and Windows</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.9.1 --> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */ var searchBox = new SearchBox("searchBox", "search",false,'Search','.html'); /* @license-end */ </script> <script type="text/javascript" src="menudata.js"></script> <script type="text/javascript" src="menu.js"></script> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */ $(function() { initMenu('',true,false,'search.php','Search'); $(document).ready(function() { init_search(); }); }); /* @license-end */</script> <div id="main-nav"></div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */ $(document).ready(function(){initNavTree('string__traits_8hpp_source.html',''); initResizable(); }); /* @license-end */ </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">string_traits.hpp</div> </div> </div><!--header--> <div class="contents"> <div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span>&#160;<span class="preprocessor">#pragma once</span></div> <div class="line"><a name="l00002"></a><span class="lineno"> 2</span>&#160; </div> <div class="line"><a name="l00003"></a><span class="lineno"> 3</span>&#160;<span class="preprocessor">#include &quot;fly/traits/traits.hpp&quot;</span></div> <div class="line"><a name="l00004"></a><span class="lineno"> 4</span>&#160; </div> <div class="line"><a name="l00005"></a><span class="lineno"> 5</span>&#160;<span class="preprocessor">#include &lt;cstdint&gt;</span></div> <div class="line"><a name="l00006"></a><span class="lineno"> 6</span>&#160;<span class="preprocessor">#include &lt;ostream&gt;</span></div> <div class="line"><a name="l00007"></a><span class="lineno"> 7</span>&#160;<span class="preprocessor">#include &lt;string&gt;</span></div> <div class="line"><a name="l00008"></a><span class="lineno"> 8</span>&#160;<span class="preprocessor">#include &lt;type_traits&gt;</span></div> <div class="line"><a name="l00009"></a><span class="lineno"> 9</span>&#160; </div> <div class="line"><a name="l00010"></a><span class="lineno"> 10</span>&#160;<span class="keyword">namespace </span>fly::detail {</div> <div class="line"><a name="l00011"></a><span class="lineno"> 11</span>&#160; </div> <div class="line"><a name="l00015"></a><span class="lineno"> 15</span>&#160;<span class="keyword">template</span> &lt;<span class="keyword">typename</span> StringType&gt;</div> <div class="line"><a name="l00016"></a><span class="lineno"> 16</span>&#160;<span class="keyword">using</span> is_supported_string =</div> <div class="line"><a name="l00017"></a><span class="lineno"> 17</span>&#160; any_same&lt;StringType, std::string, std::wstring, std::u8string, std::u16string, std::u32string&gt;;</div> <div class="line"><a name="l00018"></a><span class="lineno"> 18</span>&#160; </div> <div class="line"><a name="l00019"></a><span class="lineno"> 19</span>&#160;<span class="keyword">template</span> &lt;<span class="keyword">typename</span> StringType&gt;</div> <div class="line"><a name="l00020"></a><span class="lineno"> 20</span>&#160;<span class="comment">// NOLINTNEXTLINE(readability-identifier-naming)</span></div> <div class="line"><a name="l00021"></a><span class="lineno"> 21</span>&#160;<span class="keyword">inline</span> constexpr <span class="keywordtype">bool</span> is_supported_string_v = is_supported_string&lt;StringType&gt;::value;</div> <div class="line"><a name="l00022"></a><span class="lineno"> 22</span>&#160; </div> <div class="line"><a name="l00027"></a><span class="lineno"> 27</span>&#160;<span class="keyword">template</span> &lt;<span class="keyword">typename</span> CharType&gt;</div> <div class="line"><a name="l00028"></a><span class="lineno"> 28</span>&#160;<span class="keyword">using</span> is_supported_character = any_same&lt;CharType, char, wchar_t, char8_t, char16_t, char32_t&gt;;</div> <div class="line"><a name="l00029"></a><span class="lineno"> 29</span>&#160; </div> <div class="line"><a name="l00030"></a><span class="lineno"> 30</span>&#160;<span class="keyword">template</span> &lt;<span class="keyword">typename</span> CharType&gt;</div> <div class="line"><a name="l00031"></a><span class="lineno"> 31</span>&#160;<span class="comment">// NOLINTNEXTLINE(readability-identifier-naming)</span></div> <div class="line"><a name="l00032"></a><span class="lineno"> 32</span>&#160;<span class="keyword">inline</span> constexpr <span class="keywordtype">bool</span> is_supported_character_v = is_supported_character&lt;CharType&gt;::value;</div> <div class="line"><a name="l00033"></a><span class="lineno"> 33</span>&#160; </div> <div class="line"><a name="l00042"></a><span class="lineno"> 42</span>&#160;<span class="keyword">template</span> &lt;<span class="keyword">typename</span> StringType&gt;</div> <div class="line"><a name="l00043"></a><span class="lineno"> 43</span>&#160;<span class="comment">// NOLINTNEXTLINE(readability-identifier-naming)</span></div> <div class="line"><a name="l00044"></a><span class="lineno"><a class="line" href="structfly_1_1detail_1_1is__like__supported__string.html"> 44</a></span>&#160;<span class="keyword">struct </span><a class="code" href="structfly_1_1detail_1_1is__like__supported__string.html">is_like_supported_string</a></div> <div class="line"><a name="l00045"></a><span class="lineno"> 45</span>&#160;{</div> <div class="line"><a name="l00046"></a><span class="lineno"> 46</span>&#160;<span class="keyword">private</span>:</div> <div class="line"><a name="l00047"></a><span class="lineno"> 47</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, <span class="keyword">typename</span> CharType&gt;</div> <div class="line"><a name="l00048"></a><span class="lineno"> 48</span>&#160; <span class="keyword">inline</span> <span class="keyword">static</span> constexpr <span class="keywordtype">bool</span> is_like_string_impl = fly::any_same_v&lt;</div> <div class="line"><a name="l00049"></a><span class="lineno"> 49</span>&#160; T,</div> <div class="line"><a name="l00050"></a><span class="lineno"> 50</span>&#160; CharType *,</div> <div class="line"><a name="l00051"></a><span class="lineno"> 51</span>&#160; CharType <span class="keyword">const</span> *,</div> <div class="line"><a name="l00052"></a><span class="lineno"> 52</span>&#160; std::basic_string&lt;CharType&gt;,</div> <div class="line"><a name="l00053"></a><span class="lineno"> 53</span>&#160; std::basic_string_view&lt;CharType&gt;&gt;;</div> <div class="line"><a name="l00054"></a><span class="lineno"> 54</span>&#160; </div> <div class="line"><a name="l00055"></a><span class="lineno"> 55</span>&#160;<span class="keyword">public</span>:</div> <div class="line"><a name="l00056"></a><span class="lineno"> 56</span>&#160; <span class="keyword">using</span> type = std::conditional_t&lt;</div> <div class="line"><a name="l00057"></a><span class="lineno"> 57</span>&#160; is_like_string_impl&lt;StringType, char&gt;,</div> <div class="line"><a name="l00058"></a><span class="lineno"> 58</span>&#160; std::string,</div> <div class="line"><a name="l00059"></a><span class="lineno"> 59</span>&#160; std::conditional_t&lt;</div> <div class="line"><a name="l00060"></a><span class="lineno"> 60</span>&#160; is_like_string_impl&lt;StringType, wchar_t&gt;,</div> <div class="line"><a name="l00061"></a><span class="lineno"> 61</span>&#160; std::wstring,</div> <div class="line"><a name="l00062"></a><span class="lineno"> 62</span>&#160; std::conditional_t&lt;</div> <div class="line"><a name="l00063"></a><span class="lineno"> 63</span>&#160; is_like_string_impl&lt;StringType, char8_t&gt;,</div> <div class="line"><a name="l00064"></a><span class="lineno"> 64</span>&#160; std::u8string,</div> <div class="line"><a name="l00065"></a><span class="lineno"> 65</span>&#160; std::conditional_t&lt;</div> <div class="line"><a name="l00066"></a><span class="lineno"> 66</span>&#160; is_like_string_impl&lt;StringType, char16_t&gt;,</div> <div class="line"><a name="l00067"></a><span class="lineno"> 67</span>&#160; std::u16string,</div> <div class="line"><a name="l00068"></a><span class="lineno"> 68</span>&#160; std::conditional_t&lt;</div> <div class="line"><a name="l00069"></a><span class="lineno"> 69</span>&#160; is_like_string_impl&lt;StringType, char32_t&gt;,</div> <div class="line"><a name="l00070"></a><span class="lineno"> 70</span>&#160; std::u32string,</div> <div class="line"><a name="l00071"></a><span class="lineno"> 71</span>&#160; <span class="keywordtype">void</span>&gt;&gt;&gt;&gt;&gt;;</div> <div class="line"><a name="l00072"></a><span class="lineno"> 72</span>&#160; </div> <div class="line"><a name="l00073"></a><span class="lineno"> 73</span>&#160; <span class="keyword">inline</span> <span class="keyword">static</span> constexpr <span class="keywordtype">bool</span> value = std::negation_v&lt;std::is_same&lt;type, void&gt;&gt;;</div> <div class="line"><a name="l00074"></a><span class="lineno"> 74</span>&#160;};</div> <div class="line"><a name="l00075"></a><span class="lineno"> 75</span>&#160; </div> <div class="line"><a name="l00076"></a><span class="lineno"> 76</span>&#160;<span class="keyword">template</span> &lt;<span class="keyword">typename</span> StringType&gt;</div> <div class="line"><a name="l00077"></a><span class="lineno"> 77</span>&#160;<span class="comment">// NOLINTNEXTLINE(readability-identifier-naming)</span></div> <div class="line"><a name="l00078"></a><span class="lineno"> 78</span>&#160;<span class="keyword">using</span> is_like_supported_string_t = <span class="keyword">typename</span> is_like_supported_string&lt;StringType&gt;::type;</div> <div class="line"><a name="l00079"></a><span class="lineno"> 79</span>&#160; </div> <div class="line"><a name="l00080"></a><span class="lineno"> 80</span>&#160;<span class="keyword">template</span> &lt;<span class="keyword">typename</span> StringType&gt;</div> <div class="line"><a name="l00081"></a><span class="lineno"> 81</span>&#160;<span class="comment">// NOLINTNEXTLINE(readability-identifier-naming)</span></div> <div class="line"><a name="l00082"></a><span class="lineno"> 82</span>&#160;<span class="keyword">inline</span> constexpr <span class="keywordtype">bool</span> is_like_supported_string_v = <a class="code" href="structfly_1_1detail_1_1is__like__supported__string.html">is_like_supported_string&lt;StringType&gt;::value</a>;</div> <div class="line"><a name="l00083"></a><span class="lineno"> 83</span>&#160; </div> <div class="line"><a name="l00087"></a><span class="lineno"> 87</span>&#160;<span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;</div> <div class="line"><a name="l00088"></a><span class="lineno"> 88</span>&#160;<span class="keyword">using</span> OstreamDeclaration = decltype(std::declval&lt;std::ostream &amp;&gt;() &lt;&lt; std::declval&lt;T&gt;());</div> <div class="line"><a name="l00089"></a><span class="lineno"> 89</span>&#160; </div> <div class="line"><a name="l00090"></a><span class="lineno"> 90</span>&#160;<span class="keyword">using</span> <a class="code" href="structfly_1_1_declaration_traits.html">OstreamTraits</a> = <a class="code" href="structfly_1_1_declaration_traits.html">DeclarationTraits&lt;OstreamDeclaration&gt;</a>;</div> <div class="line"><a name="l00091"></a><span class="lineno"> 91</span>&#160; </div> <div class="line"><a name="l00098"></a><span class="lineno"> 98</span>&#160;<span class="keyword">template</span> &lt;<span class="keyword">typename</span> StringType&gt;</div> <div class="line"><a name="l00099"></a><span class="lineno"><a class="line" href="structfly_1_1detail_1_1_basic_string_traits.html"> 99</a></span>&#160;<span class="keyword">struct </span><a class="code" href="structfly_1_1detail_1_1_basic_string_traits.html">BasicStringTraits</a></div> <div class="line"><a name="l00100"></a><span class="lineno"> 100</span>&#160;{</div> <div class="line"><a name="l00101"></a><span class="lineno"> 101</span>&#160; static_assert(</div> <div class="line"><a name="l00102"></a><span class="lineno"> 102</span>&#160; is_supported_string_v&lt;StringType&gt;,</div> <div class="line"><a name="l00103"></a><span class="lineno"> 103</span>&#160; <span class="stringliteral">&quot;StringType must be a standard std::basic_string specialization&quot;</span>);</div> <div class="line"><a name="l00104"></a><span class="lineno"> 104</span>&#160; </div> <div class="line"><a name="l00108"></a><span class="lineno"><a class="line" href="structfly_1_1detail_1_1_basic_string_traits.html#a7964422bfc4414d79060e8611736136f"> 108</a></span>&#160; <span class="keyword">using</span> <a class="code" href="structfly_1_1detail_1_1_basic_string_traits.html#a7964422bfc4414d79060e8611736136f">string_type</a> = StringType;</div> <div class="line"><a name="l00109"></a><span class="lineno"> 109</span>&#160; <span class="keyword">using</span> size_type = <span class="keyword">typename</span> StringType::size_type;</div> <div class="line"><a name="l00110"></a><span class="lineno"> 110</span>&#160; <span class="keyword">using</span> char_type = <span class="keyword">typename</span> StringType::value_type;</div> <div class="line"><a name="l00111"></a><span class="lineno"> 111</span>&#160; <span class="keyword">using</span> view_type = std::basic_string_view&lt;char_type&gt;;</div> <div class="line"><a name="l00112"></a><span class="lineno"> 112</span>&#160; <span class="keyword">using</span> int_type = <span class="keyword">typename</span> std::char_traits&lt;char_type&gt;::int_type;</div> <div class="line"><a name="l00113"></a><span class="lineno"> 113</span>&#160; </div> <div class="line"><a name="l00114"></a><span class="lineno"> 114</span>&#160; <span class="keyword">using</span> codepoint_type = std::uint32_t;</div> <div class="line"><a name="l00115"></a><span class="lineno"> 115</span>&#160; </div> <div class="line"><a name="l00119"></a><span class="lineno"> 119</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;</div> <div class="line"><a name="l00120"></a><span class="lineno"><a class="line" href="structfly_1_1detail_1_1_basic_string_traits.html#a8f1773459401f71b3488265c9ba39c53"> 120</a></span>&#160; <span class="keyword">using</span> <a class="code" href="structfly_1_1detail_1_1_basic_string_traits.html#a8f1773459401f71b3488265c9ba39c53">is_string_like</a> = std::is_same&lt;is_like_supported_string_t&lt;T&gt;, StringType&gt;;</div> <div class="line"><a name="l00121"></a><span class="lineno"> 121</span>&#160; </div> <div class="line"><a name="l00122"></a><span class="lineno"> 122</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;</div> <div class="line"><a name="l00123"></a><span class="lineno"> 123</span>&#160; <span class="keyword">inline</span> <span class="keyword">static</span> constexpr <span class="keywordtype">bool</span> is_string_like_v = <a class="code" href="structfly_1_1detail_1_1_basic_string_traits.html#a8f1773459401f71b3488265c9ba39c53">is_string_like&lt;T&gt;::value</a>;</div> <div class="line"><a name="l00124"></a><span class="lineno"> 124</span>&#160;};</div> <div class="line"><a name="l00125"></a><span class="lineno"> 125</span>&#160; </div> <div class="line"><a name="l00132"></a><span class="lineno"><a class="line" href="structfly_1_1detail_1_1_basic_format_traits.html"> 132</a></span>&#160;<span class="keyword">struct </span><a class="code" href="structfly_1_1detail_1_1_basic_format_traits.html">BasicFormatTraits</a></div> <div class="line"><a name="l00133"></a><span class="lineno"> 133</span>&#160;{</div> <div class="line"><a name="l00137"></a><span class="lineno"> 137</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, <span class="keyword">typename</span> U = std::remove_cvref_t&lt;T&gt;&gt;</div> <div class="line"><a name="l00138"></a><span class="lineno"><a class="line" href="structfly_1_1detail_1_1_basic_format_traits.html#ae41f60cdbda4b2ec253f726558c2a6e4"> 138</a></span>&#160; <span class="keyword">using</span> <a class="code" href="structfly_1_1detail_1_1_basic_format_traits.html#ae41f60cdbda4b2ec253f726558c2a6e4">is_formattable</a> = std::disjunction&lt;</div> <div class="line"><a name="l00139"></a><span class="lineno"> 139</span>&#160; OstreamTraits::is_declared&lt;T&gt;,</div> <div class="line"><a name="l00140"></a><span class="lineno"> 140</span>&#160; <a class="code" href="structfly_1_1detail_1_1is__like__supported__string.html">detail::is_like_supported_string&lt;T&gt;</a>,</div> <div class="line"><a name="l00141"></a><span class="lineno"> 141</span>&#160; <a class="code" href="structfly_1_1any__same.html">detail::is_supported_character&lt;T&gt;</a>,</div> <div class="line"><a name="l00142"></a><span class="lineno"> 142</span>&#160; std::is_enum&lt;U&gt;&gt;;</div> <div class="line"><a name="l00143"></a><span class="lineno"> 143</span>&#160; </div> <div class="line"><a name="l00144"></a><span class="lineno"> 144</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;</div> <div class="line"><a name="l00145"></a><span class="lineno"> 145</span>&#160; <span class="keyword">static</span> <span class="keyword">inline</span> constexpr <span class="keywordtype">bool</span> is_formattable_v = <a class="code" href="structfly_1_1detail_1_1_basic_format_traits.html#ae41f60cdbda4b2ec253f726558c2a6e4">is_formattable&lt;T&gt;::value</a>;</div> <div class="line"><a name="l00146"></a><span class="lineno"> 146</span>&#160; </div> <div class="line"><a name="l00150"></a><span class="lineno"> 150</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, <span class="keyword">typename</span> U = std::remove_cvref_t&lt;T&gt;&gt;</div> <div class="line"><a name="l00151"></a><span class="lineno"><a class="line" href="structfly_1_1detail_1_1_basic_format_traits.html#acaea437aff23cb6b34b5c06d408ea88f"> 151</a></span>&#160; <span class="keyword">using</span> <a class="code" href="structfly_1_1detail_1_1_basic_format_traits.html#acaea437aff23cb6b34b5c06d408ea88f">is_pointer</a> = std::conjunction&lt;</div> <div class="line"><a name="l00152"></a><span class="lineno"> 152</span>&#160; std::disjunction&lt;std::is_pointer&lt;U&gt;, std::is_null_pointer&lt;U&gt;&gt;,</div> <div class="line"><a name="l00153"></a><span class="lineno"> 153</span>&#160; std::negation&lt;detail::is_like_supported_string&lt;T&gt;&gt;&gt;;</div> <div class="line"><a name="l00154"></a><span class="lineno"> 154</span>&#160; </div> <div class="line"><a name="l00155"></a><span class="lineno"> 155</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;</div> <div class="line"><a name="l00156"></a><span class="lineno"> 156</span>&#160; <span class="keyword">static</span> <span class="keyword">inline</span> constexpr <span class="keywordtype">bool</span> is_pointer_v = <a class="code" href="structfly_1_1detail_1_1_basic_format_traits.html#acaea437aff23cb6b34b5c06d408ea88f">is_pointer&lt;T&gt;::value</a>;</div> <div class="line"><a name="l00157"></a><span class="lineno"> 157</span>&#160; </div> <div class="line"><a name="l00161"></a><span class="lineno"> 161</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, <span class="keyword">typename</span> U = std::remove_cvref_t&lt;T&gt;&gt;</div> <div class="line"><a name="l00162"></a><span class="lineno"><a class="line" href="structfly_1_1detail_1_1_basic_format_traits.html#a33f9f85b5b3fe97d6cc01ee1f188319a"> 162</a></span>&#160; <span class="keyword">using</span> <a class="code" href="structfly_1_1detail_1_1_basic_format_traits.html#a33f9f85b5b3fe97d6cc01ee1f188319a">is_integral</a> = std::conjunction&lt;std::is_integral&lt;U&gt;, std::negation&lt;std::is_same&lt;U, bool&gt;&gt;&gt;;</div> <div class="line"><a name="l00163"></a><span class="lineno"> 163</span>&#160; </div> <div class="line"><a name="l00164"></a><span class="lineno"> 164</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;</div> <div class="line"><a name="l00165"></a><span class="lineno"> 165</span>&#160; <span class="keyword">static</span> <span class="keyword">inline</span> constexpr <span class="keywordtype">bool</span> is_integral_v = <a class="code" href="structfly_1_1detail_1_1_basic_format_traits.html#a33f9f85b5b3fe97d6cc01ee1f188319a">is_integral&lt;T&gt;::value</a>;</div> <div class="line"><a name="l00166"></a><span class="lineno"> 166</span>&#160; </div> <div class="line"><a name="l00170"></a><span class="lineno"> 170</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;</div> <div class="line"><a name="l00171"></a><span class="lineno"><a class="line" href="structfly_1_1detail_1_1_basic_format_traits.html#af12a88cf2e9ee82593d8af6645b7845a"> 171</a></span>&#160; <span class="keyword">using</span> <a class="code" href="structfly_1_1detail_1_1_basic_format_traits.html#af12a88cf2e9ee82593d8af6645b7845a">is_integer</a> = std::conjunction&lt;is_integral&lt;T&gt;, std::negation&lt;is_supported_character&lt;T&gt;&gt;&gt;;</div> <div class="line"><a name="l00172"></a><span class="lineno"> 172</span>&#160; </div> <div class="line"><a name="l00173"></a><span class="lineno"> 173</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;</div> <div class="line"><a name="l00174"></a><span class="lineno"> 174</span>&#160; <span class="keyword">static</span> <span class="keyword">inline</span> constexpr <span class="keywordtype">bool</span> is_integer_v = <a class="code" href="structfly_1_1detail_1_1_basic_format_traits.html#af12a88cf2e9ee82593d8af6645b7845a">is_integer&lt;T&gt;::value</a>;</div> <div class="line"><a name="l00175"></a><span class="lineno"> 175</span>&#160; </div> <div class="line"><a name="l00180"></a><span class="lineno"> 180</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, <span class="keyword">typename</span> U = std::remove_cvref_t&lt;T&gt;&gt;</div> <div class="line"><a name="l00181"></a><span class="lineno"><a class="line" href="structfly_1_1detail_1_1_basic_format_traits.html#a7597e61cd43947f716bcda8da986787f"> 181</a></span>&#160; <span class="keyword">using</span> <a class="code" href="structfly_1_1detail_1_1_basic_format_traits.html#a7597e61cd43947f716bcda8da986787f">is_default_formatted_enum</a> =</div> <div class="line"><a name="l00182"></a><span class="lineno"> 182</span>&#160; std::conjunction&lt;std::is_enum&lt;U&gt;, std::negation&lt;OstreamTraits::is_declared&lt;T&gt;&gt;&gt;;</div> <div class="line"><a name="l00183"></a><span class="lineno"> 183</span>&#160; </div> <div class="line"><a name="l00184"></a><span class="lineno"> 184</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;</div> <div class="line"><a name="l00185"></a><span class="lineno"> 185</span>&#160; <span class="keyword">static</span> <span class="keyword">inline</span> constexpr <span class="keywordtype">bool</span> is_default_formatted_enum_v = <a class="code" href="structfly_1_1detail_1_1_basic_format_traits.html#a7597e61cd43947f716bcda8da986787f">is_default_formatted_enum&lt;T&gt;::value</a>;</div> <div class="line"><a name="l00186"></a><span class="lineno"> 186</span>&#160; </div> <div class="line"><a name="l00190"></a><span class="lineno"> 190</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, <span class="keyword">typename</span> U = std::remove_cvref_t&lt;T&gt;&gt;</div> <div class="line"><a name="l00191"></a><span class="lineno"><a class="line" href="structfly_1_1detail_1_1_basic_format_traits.html#a2f29dd13fd4a7e4a5bc6c0f4f8762bc3"> 191</a></span>&#160; <span class="keyword">using</span> <a class="code" href="structfly_1_1detail_1_1_basic_format_traits.html#a2f29dd13fd4a7e4a5bc6c0f4f8762bc3">is_generic</a> = std::negation&lt;std::disjunction&lt;</div> <div class="line"><a name="l00192"></a><span class="lineno"> 192</span>&#160; <a class="code" href="structfly_1_1detail_1_1is__like__supported__string.html">detail::is_like_supported_string&lt;T&gt;</a>,</div> <div class="line"><a name="l00193"></a><span class="lineno"> 193</span>&#160; <a class="code" href="structfly_1_1detail_1_1_basic_format_traits.html#acaea437aff23cb6b34b5c06d408ea88f">is_pointer&lt;T&gt;</a>,</div> <div class="line"><a name="l00194"></a><span class="lineno"> 194</span>&#160; <a class="code" href="structfly_1_1detail_1_1_basic_format_traits.html#a33f9f85b5b3fe97d6cc01ee1f188319a">is_integral&lt;T&gt;</a>,</div> <div class="line"><a name="l00195"></a><span class="lineno"> 195</span>&#160; std::is_floating_point&lt;T&gt;,</div> <div class="line"><a name="l00196"></a><span class="lineno"> 196</span>&#160; std::is_same&lt;T, bool&gt;,</div> <div class="line"><a name="l00197"></a><span class="lineno"> 197</span>&#160; <a class="code" href="structfly_1_1detail_1_1_basic_format_traits.html#a7597e61cd43947f716bcda8da986787f">is_default_formatted_enum&lt;T&gt;</a>&gt;&gt;;</div> <div class="line"><a name="l00198"></a><span class="lineno"> 198</span>&#160; </div> <div class="line"><a name="l00199"></a><span class="lineno"> 199</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;</div> <div class="line"><a name="l00200"></a><span class="lineno"> 200</span>&#160; <span class="keyword">static</span> <span class="keyword">inline</span> constexpr <span class="keywordtype">bool</span> is_generic_v = <a class="code" href="structfly_1_1detail_1_1_basic_format_traits.html#a2f29dd13fd4a7e4a5bc6c0f4f8762bc3">is_generic&lt;T&gt;::value</a>;</div> <div class="line"><a name="l00201"></a><span class="lineno"> 201</span>&#160;};</div> <div class="line"><a name="l00202"></a><span class="lineno"> 202</span>&#160; </div> <div class="line"><a name="l00203"></a><span class="lineno"> 203</span>&#160;} <span class="comment">// namespace fly::detail</span></div> <div class="ttc" id="astructfly_1_1_declaration_traits_html"><div class="ttname"><a href="structfly_1_1_declaration_traits.html">fly::DeclarationTraits</a></div><div class="ttdef"><b>Definition:</b> traits.hpp:190</div></div> <div class="ttc" id="astructfly_1_1any__same_html"><div class="ttname"><a href="structfly_1_1any__same.html">fly::any_same</a></div><div class="ttdef"><b>Definition:</b> traits.hpp:102</div></div> <div class="ttc" id="astructfly_1_1detail_1_1_basic_format_traits_html"><div class="ttname"><a href="structfly_1_1detail_1_1_basic_format_traits.html">fly::detail::BasicFormatTraits</a></div><div class="ttdef"><b>Definition:</b> string_traits.hpp:133</div></div> <div class="ttc" id="astructfly_1_1detail_1_1_basic_format_traits_html_a2f29dd13fd4a7e4a5bc6c0f4f8762bc3"><div class="ttname"><a href="structfly_1_1detail_1_1_basic_format_traits.html#a2f29dd13fd4a7e4a5bc6c0f4f8762bc3">fly::detail::BasicFormatTraits::is_generic</a></div><div class="ttdeci">std::negation&lt; std::disjunction&lt; detail::is_like_supported_string&lt; T &gt;, is_pointer&lt; T &gt;, is_integral&lt; T &gt;, std::is_floating_point&lt; T &gt;, std::is_same&lt; T, bool &gt;, is_default_formatted_enum&lt; T &gt; &gt;&gt; is_generic</div><div class="ttdef"><b>Definition:</b> string_traits.hpp:197</div></div> <div class="ttc" id="astructfly_1_1detail_1_1_basic_format_traits_html_a33f9f85b5b3fe97d6cc01ee1f188319a"><div class="ttname"><a href="structfly_1_1detail_1_1_basic_format_traits.html#a33f9f85b5b3fe97d6cc01ee1f188319a">fly::detail::BasicFormatTraits::is_integral</a></div><div class="ttdeci">std::conjunction&lt; std::is_integral&lt; U &gt;, std::negation&lt; std::is_same&lt; U, bool &gt; &gt;&gt; is_integral</div><div class="ttdef"><b>Definition:</b> string_traits.hpp:162</div></div> <div class="ttc" id="astructfly_1_1detail_1_1_basic_format_traits_html_a7597e61cd43947f716bcda8da986787f"><div class="ttname"><a href="structfly_1_1detail_1_1_basic_format_traits.html#a7597e61cd43947f716bcda8da986787f">fly::detail::BasicFormatTraits::is_default_formatted_enum</a></div><div class="ttdeci">std::conjunction&lt; std::is_enum&lt; U &gt;, std::negation&lt; OstreamTraits::is_declared&lt; T &gt; &gt;&gt; is_default_formatted_enum</div><div class="ttdef"><b>Definition:</b> string_traits.hpp:182</div></div> <div class="ttc" id="astructfly_1_1detail_1_1_basic_format_traits_html_acaea437aff23cb6b34b5c06d408ea88f"><div class="ttname"><a href="structfly_1_1detail_1_1_basic_format_traits.html#acaea437aff23cb6b34b5c06d408ea88f">fly::detail::BasicFormatTraits::is_pointer</a></div><div class="ttdeci">std::conjunction&lt; std::disjunction&lt; std::is_pointer&lt; U &gt;, std::is_null_pointer&lt; U &gt; &gt;, std::negation&lt; detail::is_like_supported_string&lt; T &gt; &gt;&gt; is_pointer</div><div class="ttdef"><b>Definition:</b> string_traits.hpp:153</div></div> <div class="ttc" id="astructfly_1_1detail_1_1_basic_format_traits_html_ae41f60cdbda4b2ec253f726558c2a6e4"><div class="ttname"><a href="structfly_1_1detail_1_1_basic_format_traits.html#ae41f60cdbda4b2ec253f726558c2a6e4">fly::detail::BasicFormatTraits::is_formattable</a></div><div class="ttdeci">std::disjunction&lt; OstreamTraits::is_declared&lt; T &gt;, detail::is_like_supported_string&lt; T &gt;, detail::is_supported_character&lt; T &gt;, std::is_enum&lt; U &gt; &gt; is_formattable</div><div class="ttdef"><b>Definition:</b> string_traits.hpp:142</div></div> <div class="ttc" id="astructfly_1_1detail_1_1_basic_format_traits_html_af12a88cf2e9ee82593d8af6645b7845a"><div class="ttname"><a href="structfly_1_1detail_1_1_basic_format_traits.html#af12a88cf2e9ee82593d8af6645b7845a">fly::detail::BasicFormatTraits::is_integer</a></div><div class="ttdeci">std::conjunction&lt; is_integral&lt; T &gt;, std::negation&lt; is_supported_character&lt; T &gt; &gt;&gt; is_integer</div><div class="ttdef"><b>Definition:</b> string_traits.hpp:171</div></div> <div class="ttc" id="astructfly_1_1detail_1_1_basic_string_traits_html"><div class="ttname"><a href="structfly_1_1detail_1_1_basic_string_traits.html">fly::detail::BasicStringTraits</a></div><div class="ttdef"><b>Definition:</b> string_traits.hpp:100</div></div> <div class="ttc" id="astructfly_1_1detail_1_1_basic_string_traits_html_a7964422bfc4414d79060e8611736136f"><div class="ttname"><a href="structfly_1_1detail_1_1_basic_string_traits.html#a7964422bfc4414d79060e8611736136f">fly::detail::BasicStringTraits::string_type</a></div><div class="ttdeci">StringType string_type</div><div class="ttdef"><b>Definition:</b> string_traits.hpp:108</div></div> <div class="ttc" id="astructfly_1_1detail_1_1_basic_string_traits_html_a8f1773459401f71b3488265c9ba39c53"><div class="ttname"><a href="structfly_1_1detail_1_1_basic_string_traits.html#a8f1773459401f71b3488265c9ba39c53">fly::detail::BasicStringTraits::is_string_like</a></div><div class="ttdeci">std::is_same&lt; is_like_supported_string_t&lt; T &gt;, StringType &gt; is_string_like</div><div class="ttdef"><b>Definition:</b> string_traits.hpp:120</div></div> <div class="ttc" id="astructfly_1_1detail_1_1is__like__supported__string_html"><div class="ttname"><a href="structfly_1_1detail_1_1is__like__supported__string.html">fly::detail::is_like_supported_string</a></div><div class="ttdef"><b>Definition:</b> string_traits.hpp:45</div></div> </div><!-- fragment --></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="dir_4e888731a8ba874a656d519f9f1001d8.html">fly</a></li><li class="navelem"><a class="el" href="dir_666f9a7ac6e05881746e5257b80aca61.html">types</a></li><li class="navelem"><a class="el" href="dir_49e3912fae493e2393f226e8ce9a9628.html">string</a></li><li class="navelem"><a class="el" href="dir_d141bb725252332eecd8b99525f70e63.html">detail</a></li><li class="navelem"><b>string_traits.hpp</b></li> <li class="footer">Generated by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.1 </li> </ul> </div> </body> </html>
site/_layouts/construction.html
janslow/rag-ball-2013
<!DOCTYPE html> <html> <head> {% include meta.html %} <meta name="viewport" content="width=device-width"> <title>{{ site.name }}</title> <!-- build:css(bin/staging) /css/construction.min.css --> <link rel="stylesheet" type="text/css" href="/css/construction.css"> <!-- endbuild --> </head> <body> <table> <tbody> <tr> <td class='middle'> <div class='content'> <div class='logo'>&nbsp;</div> <div class='notice'>Coming Soon</div> </div> </td> </tr> </tbody> </table> </body>
imagersite/imagersite/templates/registration/password_reset_confirm.html
ellezv/django_imager
{% extends "imagersite/base.html" %} {% load i18n %} {% block content %} {% if validlink %} <form method="post" action="."> {% csrf_token %} {{ form.as_p }} <input type="submit" value="{% trans 'Submit' %}" /> </form> {% else %} <p>{% trans "Password reset failed" %}</p> {% endif %} {% endblock %}
javadoc/3.1/org/robolectric/util/class-use/Function.html
robolectric/robolectric.github.io
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_45) on Mon Jun 06 13:18:33 PDT 2016 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Uses of Interface org.robolectric.util.Function (robolectric-parent 3.1 API)</title> <meta name="date" content="2016-06-06"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Interface org.robolectric.util.Function (robolectric-parent 3.1 API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../org/robolectric/util/Function.html" title="interface in org.robolectric.util">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/robolectric/util/class-use/Function.html" target="_top">Frames</a></li> <li><a href="Function.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Interface org.robolectric.util.Function" class="title">Uses of Interface<br>org.robolectric.util.Function</h2> </div> <div class="classUseContainer">No usage of org.robolectric.util.Function</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../org/robolectric/util/Function.html" title="interface in org.robolectric.util">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/robolectric/util/class-use/Function.html" target="_top">Frames</a></li> <li><a href="Function.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p> </body> </html>
stylesheets/resume.css
dma315/dma315.github.io
* { font-family: Cabin, sans-serif; } body { background-image: url("../imgs/congruent_outline.png"); background-repeat: repeat; color: #F8F8F8; } /* Styling on details / summary */ details summary::-webkit-details-marker { display:none; } /* Removes the arrow */ details summary:focus { outline: none; } /* Summary and Image Styling */ summary { cursor: pointer; overflow: hidden; } div.resume-background { background-position: center; background-size: cover; background-repeat: no-repeat; position: relative; } div.overlap { background-color: black; opacity: 0.6; position: relative; width: 100%; z-index: 5; } div.table-container { width: 100%; position: relative; z-index: 10; } /* Responsive */ @media all and (min-width: 800px) { summary, div.overlap, div.resume-background { height: 200px; } div.resume-background { top: -200px; } div.table-container { top: -400px; } div.table-container > div.table-cell > p.job-title { font-size: 2em; margin-bottom: 0; } div.table-container > div.table-cell > p.job-dates { font-size: 1em; margin-top: 0.5em; } } @media all and (max-width: 800px) { summary, div.overlap, div.resume-background { height: 100px; } div.resume-background { top: -100px; } div.table-container { top: -200px; } div.table-container > div.table-cell > p.job-title { font-size: 1.25em; margin-bottom: 0; } div.table-container > div.table-cell > p.job-dates { font-size: 0.75em; margin-top: 0.5em; } } /* Job Details */ details p, details ul { margin: 1em; } details p.title { font-size: 1.1em; } div.resume-section { padding: 1em; background-color: #00647F; color: #f8f8f8; font-size: 1.25em; } span.emphasis { color: #00A1CC; /*Dark Blue*/ font-weight: bold; } /* Hover details */ details:hover div.resume-background { -webkit-transform: scale(1.1, 1.1); -moz-transform: scale(1.1, 1.1); -ms-transform: scale(1.1, 1.1); -o-transform: scale(1.1, 1.1); transform: scale(1.1, 1.1) } details:hover div.overlap { opacity: 0.2; } /* Individual sections */ /*div#contextmedia { background-color: rgba(111,36,144,0.7); } div#bcg { background-color: rgba(2,41,14,0.7); } div#gsb { background-color: rgba(142,19,14,0.8); } div#dbc { background-color: rgba(0,171,182,0.8); } div#nu { background-color: rgba(64,27,106,0.8); }*/ div#contextmedia { background-image: url("../imgs/companies/cmh_office_small.jpg"); } div#bcg { background-image: url("../imgs/companies/bcg_office.jpg"); } div#gsb { background-image: url("../imgs/companies/gsb_campus_small.jpg"); } div#dbc { background-image: url("../imgs/companies/chi_bridge.jpg"); } div#nu { background-image: url("../imgs/companies/nu_arch.jpg"); }
docs/interfaces/_typings_node_node_d_.weaksetconstructor.html
harryjoy/tsty
<!doctype html> <html class="default no-js"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>WeakSetConstructor | tsty</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="../assets/css/main.css"> <script src="../assets/js/modernizr.js"></script> </head> <body> <header> <div class="tsd-page-toolbar"> <div class="container"> <div class="table-wrap"> <div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base=".."> <div class="field"> <label for="tsd-search-field" class="tsd-widget search no-caption">Search</label> <input id="tsd-search-field" type="text" /> </div> <ul class="results"> <li class="state loading">Preparing search index...</li> <li class="state failure">The search index is not available</li> </ul> <a href="../index.html" class="title">tsty</a> </div> <div class="table-cell" id="tsd-widgets"> <div id="tsd-filter"> <a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a> <div class="tsd-filter-group"> <div class="tsd-select" id="tsd-filter-visibility"> <span class="tsd-select-label">All</span> <ul class="tsd-select-list"> <li data-value="public">Public</li> <li data-value="protected">Public/Protected</li> <li data-value="private" class="selected">All</li> </ul> </div> <input type="checkbox" id="tsd-filter-inherited" checked /> <label class="tsd-widget" for="tsd-filter-inherited">Inherited</label> <input type="checkbox" id="tsd-filter-externals" checked /> <label class="tsd-widget" for="tsd-filter-externals">Externals</label> <input type="checkbox" id="tsd-filter-only-exported" /> <label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label> </div> </div> <a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a> </div> </div> </div> </div> <div class="tsd-page-title"> <div class="container"> <ul class="tsd-breadcrumb"> <li> <a href="../globals.html">Globals</a> </li> <li> <a href="../modules/_typings_node_node_d_.html">&quot;typings/node/node.d&quot;</a> </li> <li> <a href="_typings_node_node_d_.weaksetconstructor.html">WeakSetConstructor</a> </li> </ul> <h1>Interface WeakSetConstructor</h1> </div> </div> </header> <div class="container container-main"> <div class="row"> <div class="col-8 col-content"> <section class="tsd-panel tsd-hierarchy"> <h3>Hierarchy</h3> <ul class="tsd-hierarchy"> <li> <span class="target">WeakSetConstructor</span> </li> </ul> </section> </div> <div class="col-4 col-menu menu-sticky-wrap menu-highlight"> <nav class="tsd-navigation primary"> <ul> <li class="globals "> <a href="../globals.html"><em>Globals</em></a> </li> <li class="current tsd-kind-external-module tsd-is-external"> <a href="../modules/_typings_node_node_d_.html">"typings/node/node.d"</a> <ul> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_._assert_.html">"assert"</a> </li> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_._buffer_.html">"buffer"</a> </li> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_._child_process_.html">"child_<wbr>process"</a> </li> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_._cluster_.html">"cluster"</a> </li> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_._constants_.html">"constants"</a> </li> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_._crypto_.html">"crypto"</a> </li> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_._dgram_.html">"dgram"</a> </li> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_._dns_.html">"dns"</a> </li> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_._domain_.html">"domain"</a> </li> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_._events_.html">"events"</a> </li> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_._fs_.html">"fs"</a> </li> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_._http_.html">"http"</a> </li> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_._https_.html">"https"</a> </li> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_._net_.html">"net"</a> </li> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_._os_.html">"os"</a> </li> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_._path_.html">"path"</a> </li> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_._punycode_.html">"punycode"</a> </li> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_._querystring_.html">"querystring"</a> </li> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_._readline_.html">"readline"</a> </li> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_._repl_.html">"repl"</a> </li> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_._stream_.html">"stream"</a> </li> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_._string_decoder_.html">"string_<wbr>decoder"</a> </li> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_._tls_.html">"tls"</a> </li> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_._tty_.html">"tty"</a> </li> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_._url_.html">"url"</a> </li> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_._util_.html">"util"</a> </li> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_._vm_.html">"vm"</a> </li> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_._zlib_.html">"zlib"</a> </li> <li class=" tsd-kind-module tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="../modules/_typings_node_node_d_.nodejs.html">NodeJS</a> </li> </ul> </li> </ul> </nav> <nav class="tsd-navigation secondary menu-sticky"> <ul class="before-current"> </ul> <ul class="current"> <li class="current tsd-kind-interface tsd-parent-kind-external-module tsd-is-external tsd-is-not-exported"> <a href="_typings_node_node_d_.weaksetconstructor.html" class="tsd-kind-icon">Weak<wbr>Set<wbr>Constructor</a> </li> </ul> <ul class="after-current"> </ul> </nav> </div> </div> </div> <footer class="with-border-bottom"> <div class="container"> <h2>Legend</h2> <div class="tsd-legend-group"> <ul class="tsd-legend"> <li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li> <li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li> <li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li> <li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li> <li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li> <li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li> <li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li> <li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li> <li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li> <li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li> <li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li> <li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li> <li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li> <li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li> <li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li> <li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li> </ul> </div> </div> </footer> <div class="container tsd-generator"> <p>Generated using <a href="http://typedoc.io" target="_blank">TypeDoc</a></p> </div> <div class="overlay"></div> <script src="../assets/js/main.js"></script> <script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script> </body> </html>
page97/index.html
xiazemin/MyBlog
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content="Sci blog jekyll theme"> <meta name="author" content="AIR RAYA Group"> <link href='/MyBlog/img/favicon.ico' type='image/icon' rel='shortcut icon'/> <title>泽民博客 | Jekyll theme</title> <link rel="stylesheet" href="/MyBlog/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous"> <link rel="stylesheet" href="/MyBlog/css/font-awesome.min.css"> <link href="/MyBlog/css/simple-sidebar.css" rel="stylesheet"> <link href="/MyBlog/css/classic-10_7.css" rel="stylesheet" type="text/css"> <!-- Custom CSS --> <link href="/MyBlog/css/style.css" rel="stylesheet"> <link href="/MyBlog/css/pygments.css" rel="stylesheet"> <!-- Fonts --> <link href="/MyBlog/css/front.css" rel="stylesheet" type="text/css"> <link href="/MyBlog/css/Josefin_Slab.css" rel="stylesheet" type="text/css"> <link href="/MyBlog/css/Architects_Daughter.css" rel="stylesheet" type="text/css"> <link href="/MyBlog/css/Schoolbell.css" rel="stylesheet" type="text/css"> <link href="/MyBlog/css/Codystar.css" rel="stylesheet" type="text/css"> <script type="text/javascript" src="/MyBlog/js/jquery-1.12.0.min.js"></script> <link href="/MyBlog/css/calendar/common.css" type="text/css" rel="stylesheet"> <script type="text/javascript" src="/MyBlog/js/calendar/calendar.js"></script> <!-- share this --> <script type="text/javascript">var switchTo5x=true;</script> <script type="text/javascript" src="/MyBlog/js/buttons.js"></script> <script type="text/javascript">stLight.options({publisher: "b28464c3-d287-4257-ad18-058346dd35f7", doNotHash: false, doNotCopy: false, hashAddressBar: false});</script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="/MyBlog/js/html5shiv.js"></script> <script src="/MyBlog/js/respond.min.js"></script> <![endif]--> <!--百度统计--> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?e965cab8c73512b8b23939e7051d93bd"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <script async src="/MyBlog/katex/katex.js"></script> <link rel="stylesheet" href="/MyBlog/katex/katex.css"> <!--轮播图片--> <!--script type="text/javascript" src="https://xiazemin.github.io/MyBlog/js/jquery.js"></script> <script type="text/javascript" src="https://xiazemin.github.io/MyBlog/js/jquery.stripesrotator.js"></script> <script type="text/javascript"> $(document).ready(function() { alert($('#rotator_xzm')); alert($('#rotator_xzm').fn); $('#rotator_xzm').stripesRotator({ images: [ "https://xiazemin.github.io/MyBlog/img/BPlusTree.png", "https://xiazemin.github.io/MyBlog/img/linuxMMap.jpeg"] }); }); </script--> <!--水印--> <script type="text/javascript" src="/MyBlog/js/waterMark.js"></script> <script type="text/javascript"> $(document).ready(function(){ watermark({watermark_txt0:'泽民博客',watermark_txt1:'zemin',watermark_txt2:(new Date()).Format("yyyy-MM-dd hh:mm:ss.S")}); }) </script> <!--水印--> <!--adscene--> <script data-ad-client="ca-pub-6672721494777557" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> </head> <body> <div id="wrapper"> <!-- Navigation --> <!-- Sidebar --> <div id="sidebar-wrapper"> <ul class="sidebar-nav"> <li class="sidebar-brand"> <a href="/MyBlog"> Home </a> </li> <li> <a href="#">About</a> </li> <li> <a href="#">Services</a> </li> <li> <a href="#">Portfolio</a> </li> <li> <a href="#">Events</a> </li> <li> <a href="#">Blog</a> </li> <li> <a href="#">FAQ</a> </li> <li> <a href="#">Contact</a> </li> </ul> </div> <header class="intro-header"> <div class="container"> <div class="row"> <div class="col-lg-12"> <div class="heading text-center"> <a href="https://xiazemin.github.io/MyBlog/" style="color: #fff; font-size: 4em; font-family: 'Schoolbell', cursive;">泽民博客</a> <a href="#menu-toggle" class="btn btn-default sciblog" id="menu-toggle" style="font-weight: bold;">&#9776; Menu</a> </div> </div> </div> </div> </header> <script async src="/MyBlog/js/busuanzi.pure.mini.js"></script> <script type="text/javascript" src="/MyBlog/js/jquery.js"></script> <script type="text/javascript" src="/MyBlog/js/jquery.stripesrotator.js"></script> <!-- Page Content --> <div class="container"> <div class="row"> <!-- Blog Post Content Column --> <div class="col-lg-8"> <!-- Blog Post --> <div class="post-list" style="list-style-type: none;"> <h2> <img class="title-image" src="/MyBlog/img/dna.png"/> <a class="post-link" href="/MyBlog/k8s/2021/06/06/ConfigMap.html">ConfigMap</a> </h2> <div class="author" style="margin-top: -10px;">Posted by <i class="fa fa-user"></i> <a href="/MyBlog/k8s/2021/06/06/ConfigMap.html"> 夏泽民</a> <span class="post-meta"><i class="fa fa-calendar"></i> Jun 6, 2021 </span> </div> <div class="excerpt"><p>ConfigMap 是一种 API 对象,用来将非机密性的数据保存到键值对中。使用时, Pods 可以将其用作环境变量、命令行参数或者存储卷中的配置文件。</p> </div> <div class="readmore" style="float: right;"> <a href="/MyBlog/k8s/2021/06/06/ConfigMap.html" style="color:green">阅读全文</a> </div> </div> <br/> <hr/> <div class="post-list" style="list-style-type: none;"> <h2> <img class="title-image" src="/MyBlog/img/dna.png"/> <a class="post-link" href="/MyBlog/web/2021/06/06/Chrome.html">Chrome</a> </h2> <div class="author" style="margin-top: -10px;">Posted by <i class="fa fa-user"></i> <a href="/MyBlog/web/2021/06/06/Chrome.html"> 夏泽民</a> <span class="post-meta"><i class="fa fa-calendar"></i> Jun 6, 2021 </span> </div> <div class="excerpt"><p>Chrome为什么打开一个页面,会有4个进程?</p> </div> <div class="readmore" style="float: right;"> <a href="/MyBlog/web/2021/06/06/Chrome.html" style="color:green">阅读全文</a> </div> </div> <br/> <hr/> <div class="post-list" style="list-style-type: none;"> <h2> <img class="title-image" src="/MyBlog/img/dna.png"/> <a class="post-link" href="/MyBlog/storage/2021/06/06/Cancellations.html">mysql Cancellations</a> </h2> <div class="author" style="margin-top: -10px;">Posted by <i class="fa fa-user"></i> <a href="/MyBlog/storage/2021/06/06/Cancellations.html"> 夏泽民</a> <span class="post-meta"><i class="fa fa-calendar"></i> Jun 6, 2021 </span> </div> <div class="excerpt"><p>https://www.alexedwards.net/blog/how-to-manage-database-timeouts-and-cancellations-in-go https://medium.com/@rocketlaunchr.cloud/canceling-mysql-in-go-827ed8f83b30</p> </div> <div class="readmore" style="float: right;"> <a href="/MyBlog/storage/2021/06/06/Cancellations.html" style="color:green">阅读全文</a> </div> </div> <br/> <hr/> <div class="post-list" style="list-style-type: none;"> <h2> <img class="title-image" src="/MyBlog/img/dna.png"/> <a class="post-link" href="/MyBlog/linux/2021/05/16/wget.html">wget apt-get yum rpm 区别</a> </h2> <div class="author" style="margin-top: -10px;">Posted by <i class="fa fa-user"></i> <a href="/MyBlog/linux/2021/05/16/wget.html"> 夏泽民</a> <span class="post-meta"><i class="fa fa-calendar"></i> May 16, 2021 </span> </div> <div class="excerpt"><p>wget 类似于迅雷,是一种命令行下载工具,通过HTTP、HTTPS、FTP三个最常见的TCP/IP协议下载。</p> </div> <div class="readmore" style="float: right;"> <a href="/MyBlog/linux/2021/05/16/wget.html" style="color:green">阅读全文</a> </div> </div> <br/> <hr/> <div class="post-list" style="list-style-type: none;"> <h2> <img class="title-image" src="/MyBlog/img/dna.png"/> <a class="post-link" href="/MyBlog/linux/2021/05/16/ssh.html">iTerm2保持ssh连接不断开</a> </h2> <div class="author" style="margin-top: -10px;">Posted by <i class="fa fa-user"></i> <a href="/MyBlog/linux/2021/05/16/ssh.html"> 夏泽民</a> <span class="post-meta"><i class="fa fa-calendar"></i> May 16, 2021 </span> </div> <div class="excerpt"><p>方法一:修改iTerm2配置,每隔60s发送一个字符 profiles -&gt; sessions -&gt; When idle, send ASCII code,建议填ASCII码填0,对应是空格 方法二:修改ssh配置,间隔60s发送一个no-op包 编辑本地ssh配置vim ~/.ssh/config,在首行添加如下配置</p> </div> <div class="readmore" style="float: right;"> <a href="/MyBlog/linux/2021/05/16/ssh.html" style="color:green">阅读全文</a> </div> </div> <br/> <hr/> <div class="post-list" style="list-style-type: none;"> </div> <!-- Pagination links --> <div class="pagination"> <a href="/MyBlog/page96/">&laquo; Prev</a> <a href="/MyBlog/page96/">1</a> <a href="/MyBlog/page2/">2</a> <a href="/MyBlog/page3/">3</a> <a href="/MyBlog/page4/">4</a> <a href="/MyBlog/page5/">5</a> <a href="/MyBlog/page6/">6</a> <a href="/MyBlog/page7/">7</a> <a href="/MyBlog/page8/">8</a> <a href="/MyBlog/page9/">9</a> <a href="/MyBlog/page10/">10</a> <a href="/MyBlog/page11/">11</a> <a href="/MyBlog/page12/">12</a> <a href="/MyBlog/page13/">13</a> <a href="/MyBlog/page14/">14</a> <a href="/MyBlog/page15/">15</a> <a href="/MyBlog/page16/">16</a> <a href="/MyBlog/page17/">17</a> <a href="/MyBlog/page18/">18</a> <a href="/MyBlog/page19/">19</a> <a href="/MyBlog/page20/">20</a> <a href="/MyBlog/page21/">21</a> <a href="/MyBlog/page22/">22</a> <a href="/MyBlog/page23/">23</a> <a href="/MyBlog/page24/">24</a> <a href="/MyBlog/page25/">25</a> <a href="/MyBlog/page26/">26</a> <a href="/MyBlog/page27/">27</a> <a href="/MyBlog/page28/">28</a> <a href="/MyBlog/page29/">29</a> <a href="/MyBlog/page30/">30</a> <a href="/MyBlog/page31/">31</a> <a href="/MyBlog/page32/">32</a> <a href="/MyBlog/page33/">33</a> <a href="/MyBlog/page34/">34</a> <a href="/MyBlog/page35/">35</a> <a href="/MyBlog/page36/">36</a> <a href="/MyBlog/page37/">37</a> <a href="/MyBlog/page38/">38</a> <a href="/MyBlog/page39/">39</a> <a href="/MyBlog/page40/">40</a> <a href="/MyBlog/page41/">41</a> <a href="/MyBlog/page42/">42</a> <a href="/MyBlog/page43/">43</a> <a href="/MyBlog/page44/">44</a> <a href="/MyBlog/page45/">45</a> <a href="/MyBlog/page46/">46</a> <a href="/MyBlog/page47/">47</a> <a href="/MyBlog/page48/">48</a> <a href="/MyBlog/page49/">49</a> <a href="/MyBlog/page50/">50</a> <a href="/MyBlog/page51/">51</a> <a href="/MyBlog/page52/">52</a> <a href="/MyBlog/page53/">53</a> <a href="/MyBlog/page54/">54</a> <a href="/MyBlog/page55/">55</a> <a href="/MyBlog/page56/">56</a> <a href="/MyBlog/page57/">57</a> <a href="/MyBlog/page58/">58</a> <a href="/MyBlog/page59/">59</a> <a href="/MyBlog/page60/">60</a> <a href="/MyBlog/page61/">61</a> <a href="/MyBlog/page62/">62</a> <a href="/MyBlog/page63/">63</a> <a href="/MyBlog/page64/">64</a> <a href="/MyBlog/page65/">65</a> <a href="/MyBlog/page66/">66</a> <a href="/MyBlog/page67/">67</a> <a href="/MyBlog/page68/">68</a> <a href="/MyBlog/page69/">69</a> <a href="/MyBlog/page70/">70</a> <a href="/MyBlog/page71/">71</a> <a href="/MyBlog/page72/">72</a> <a href="/MyBlog/page73/">73</a> <a href="/MyBlog/page74/">74</a> <a href="/MyBlog/page75/">75</a> <a href="/MyBlog/page76/">76</a> <a href="/MyBlog/page77/">77</a> <a href="/MyBlog/page78/">78</a> <a href="/MyBlog/page79/">79</a> <a href="/MyBlog/page80/">80</a> <a href="/MyBlog/page81/">81</a> <a href="/MyBlog/page82/">82</a> <a href="/MyBlog/page83/">83</a> <a href="/MyBlog/page84/">84</a> <a href="/MyBlog/page85/">85</a> <a href="/MyBlog/page86/">86</a> <a href="/MyBlog/page87/">87</a> <a href="/MyBlog/page88/">88</a> <a href="/MyBlog/page89/">89</a> <a href="/MyBlog/page90/">90</a> <a href="/MyBlog/page91/">91</a> <a href="/MyBlog/page92/">92</a> <a href="/MyBlog/page93/">93</a> <a href="/MyBlog/page94/">94</a> <a href="/MyBlog/page95/">95</a> <a href="/MyBlog/page96/">96</a> <em>97</em> <a href="/MyBlog/page98/">98</a> <a href="/MyBlog/page99/">99</a> <a href="/MyBlog/page100/">100</a> <a href="/MyBlog/page101/">101</a> <a href="/MyBlog/page102/">102</a> <a href="/MyBlog/page103/">103</a> <a href="/MyBlog/page104/">104</a> <a href="/MyBlog/page105/">105</a> <a href="/MyBlog/page106/">106</a> <a href="/MyBlog/page107/">107</a> <a href="/MyBlog/page108/">108</a> <a href="/MyBlog/page109/">109</a> <a href="/MyBlog/page110/">110</a> <a href="/MyBlog/page111/">111</a> <a href="/MyBlog/page112/">112</a> <a href="/MyBlog/page113/">113</a> <a href="/MyBlog/page114/">114</a> <a href="/MyBlog/page115/">115</a> <a href="/MyBlog/page116/">116</a> <a href="/MyBlog/page117/">117</a> <a href="/MyBlog/page118/">118</a> <a href="/MyBlog/page119/">119</a> <a href="/MyBlog/page120/">120</a> <a href="/MyBlog/page121/">121</a> <a href="/MyBlog/page122/">122</a> <a href="/MyBlog/page123/">123</a> <a href="/MyBlog/page124/">124</a> <a href="/MyBlog/page125/">125</a> <a href="/MyBlog/page126/">126</a> <a href="/MyBlog/page127/">127</a> <a href="/MyBlog/page128/">128</a> <a href="/MyBlog/page129/">129</a> <a href="/MyBlog/page130/">130</a> <a href="/MyBlog/page131/">131</a> <a href="/MyBlog/page132/">132</a> <a href="/MyBlog/page133/">133</a> <a href="/MyBlog/page134/">134</a> <a href="/MyBlog/page135/">135</a> <a href="/MyBlog/page136/">136</a> <a href="/MyBlog/page137/">137</a> <a href="/MyBlog/page138/">138</a> <a href="/MyBlog/page139/">139</a> <a href="/MyBlog/page140/">140</a> <a href="/MyBlog/page141/">141</a> <a href="/MyBlog/page142/">142</a> <a href="/MyBlog/page143/">143</a> <a href="/MyBlog/page144/">144</a> <a href="/MyBlog/page145/">145</a> <a href="/MyBlog/page146/">146</a> <a href="/MyBlog/page147/">147</a> <a href="/MyBlog/page148/">148</a> <a href="/MyBlog/page149/">149</a> <a href="/MyBlog/page150/">150</a> <a href="/MyBlog/page151/">151</a> <a href="/MyBlog/page152/">152</a> <a href="/MyBlog/page153/">153</a> <a href="/MyBlog/page154/">154</a> <a href="/MyBlog/page155/">155</a> <a href="/MyBlog/page156/">156</a> <a href="/MyBlog/page157/">157</a> <a href="/MyBlog/page158/">158</a> <a href="/MyBlog/page159/">159</a> <a href="/MyBlog/page160/">160</a> <a href="/MyBlog/page161/">161</a> <a href="/MyBlog/page162/">162</a> <a href="/MyBlog/page163/">163</a> <a href="/MyBlog/page164/">164</a> <a href="/MyBlog/page165/">165</a> <a href="/MyBlog/page166/">166</a> <a href="/MyBlog/page167/">167</a> <a href="/MyBlog/page168/">168</a> <a href="/MyBlog/page169/">169</a> <a href="/MyBlog/page170/">170</a> <a href="/MyBlog/page171/">171</a> <a href="/MyBlog/page172/">172</a> <a href="/MyBlog/page173/">173</a> <a href="/MyBlog/page174/">174</a> <a href="/MyBlog/page175/">175</a> <a href="/MyBlog/page176/">176</a> <a href="/MyBlog/page177/">177</a> <a href="/MyBlog/page178/">178</a> <a href="/MyBlog/page179/">179</a> <a href="/MyBlog/page180/">180</a> <a href="/MyBlog/page181/">181</a> <a href="/MyBlog/page182/">182</a> <a href="/MyBlog/page183/">183</a> <a href="/MyBlog/page184/">184</a> <a href="/MyBlog/page185/">185</a> <a href="/MyBlog/page186/">186</a> <a href="/MyBlog/page187/">187</a> <a href="/MyBlog/page188/">188</a> <a href="/MyBlog/page189/">189</a> <a href="/MyBlog/page190/">190</a> <a href="/MyBlog/page191/">191</a> <a href="/MyBlog/page192/">192</a> <a href="/MyBlog/page193/">193</a> <a href="/MyBlog/page194/">194</a> <a href="/MyBlog/page195/">195</a> <a href="/MyBlog/page196/">196</a> <a href="/MyBlog/page197/">197</a> <a href="/MyBlog/page198/">198</a> <a href="/MyBlog/page199/">199</a> <a href="/MyBlog/page200/">200</a> <a href="/MyBlog/page201/">201</a> <a href="/MyBlog/page202/">202</a> <a href="/MyBlog/page203/">203</a> <a href="/MyBlog/page204/">204</a> <a href="/MyBlog/page205/">205</a> <a href="/MyBlog/page206/">206</a> <a href="/MyBlog/page207/">207</a> <a href="/MyBlog/page208/">208</a> <a href="/MyBlog/page209/">209</a> <a href="/MyBlog/page210/">210</a> <a href="/MyBlog/page211/">211</a> <a href="/MyBlog/page212/">212</a> <a href="/MyBlog/page213/">213</a> <a href="/MyBlog/page214/">214</a> <a href="/MyBlog/page215/">215</a> <a href="/MyBlog/page216/">216</a> <a href="/MyBlog/page217/">217</a> <a href="/MyBlog/page218/">218</a> <a href="/MyBlog/page219/">219</a> <a href="/MyBlog/page220/">220</a> <a href="/MyBlog/page221/">221</a> <a href="/MyBlog/page222/">222</a> <a href="/MyBlog/page223/">223</a> <a href="/MyBlog/page224/">224</a> <a href="/MyBlog/page225/">225</a> <a href="/MyBlog/page226/">226</a> <a href="/MyBlog/page227/">227</a> <a href="/MyBlog/page228/">228</a> <a href="/MyBlog/page229/">229</a> <a href="/MyBlog/page230/">230</a> <a href="/MyBlog/page231/">231</a> <a href="/MyBlog/page232/">232</a> <a href="/MyBlog/page233/">233</a> <a href="/MyBlog/page234/">234</a> <a href="/MyBlog/page235/">235</a> <a href="/MyBlog/page236/">236</a> <a href="/MyBlog/page237/">237</a> <a href="/MyBlog/page238/">238</a> <a href="/MyBlog/page239/">239</a> <a href="/MyBlog/page240/">240</a> <a href="/MyBlog/page241/">241</a> <a href="/MyBlog/page242/">242</a> <a href="/MyBlog/page243/">243</a> <a href="/MyBlog/page244/">244</a> <a href="/MyBlog/page245/">245</a> <a href="/MyBlog/page246/">246</a> <a href="/MyBlog/page247/">247</a> <a href="/MyBlog/page248/">248</a> <a href="/MyBlog/page249/">249</a> <a href="/MyBlog/page250/">250</a> <a href="/MyBlog/page251/">251</a> <a href="/MyBlog/page252/">252</a> <a href="/MyBlog/page253/">253</a> <a href="/MyBlog/page254/">254</a> <a href="/MyBlog/page255/">255</a> <a href="/MyBlog/page256/">256</a> <a href="/MyBlog/page257/">257</a> <a href="/MyBlog/page258/">258</a> <a href="/MyBlog/page259/">259</a> <a href="/MyBlog/page260/">260</a> <a href="/MyBlog/page261/">261</a> <a href="/MyBlog/page262/">262</a> <a href="/MyBlog/page263/">263</a> <a href="/MyBlog/page264/">264</a> <a href="/MyBlog/page265/">265</a> <a href="/MyBlog/page266/">266</a> <a href="/MyBlog/page267/">267</a> <a href="/MyBlog/page268/">268</a> <a href="/MyBlog/page269/">269</a> <a href="/MyBlog/page270/">270</a> <a href="/MyBlog/page271/">271</a> <a href="/MyBlog/page272/">272</a> <a href="/MyBlog/page273/">273</a> <a href="/MyBlog/page274/">274</a> <a href="/MyBlog/page275/">275</a> <a href="/MyBlog/page276/">276</a> <a href="/MyBlog/page277/">277</a> <a href="/MyBlog/page278/">278</a> <a href="/MyBlog/page279/">279</a> <a href="/MyBlog/page280/">280</a> <a href="/MyBlog/page281/">281</a> <a href="/MyBlog/page282/">282</a> <a href="/MyBlog/page283/">283</a> <a href="/MyBlog/page284/">284</a> <a href="/MyBlog/page285/">285</a> <a href="/MyBlog/page286/">286</a> <a href="/MyBlog/page287/">287</a> <a href="/MyBlog/page288/">288</a> <a href="/MyBlog/page289/">289</a> <a href="/MyBlog/page290/">290</a> <a href="/MyBlog/page291/">291</a> <a href="/MyBlog/page292/">292</a> <a href="/MyBlog/page293/">293</a> <a href="/MyBlog/page294/">294</a> <a href="/MyBlog/page295/">295</a> <a href="/MyBlog/page296/">296</a> <a href="/MyBlog/page297/">297</a> <a href="/MyBlog/page298/">298</a> <a href="/MyBlog/page299/">299</a> <a href="/MyBlog/page300/">300</a> <a href="/MyBlog/page301/">301</a> <a href="/MyBlog/page302/">302</a> <a href="/MyBlog/page303/">303</a> <a href="/MyBlog/page304/">304</a> <a href="/MyBlog/page305/">305</a> <a href="/MyBlog/page306/">306</a> <a href="/MyBlog/page307/">307</a> <a href="/MyBlog/page308/">308</a> <a href="/MyBlog/page309/">309</a> <a href="/MyBlog/page310/">310</a> <a href="/MyBlog/page311/">311</a> <a href="/MyBlog/page312/">312</a> <a href="/MyBlog/page313/">313</a> <a href="/MyBlog/page314/">314</a> <a href="/MyBlog/page315/">315</a> <a href="/MyBlog/page316/">316</a> <a href="/MyBlog/page317/">317</a> <a href="/MyBlog/page318/">318</a> <a href="/MyBlog/page319/">319</a> <a href="/MyBlog/page320/">320</a> <a href="/MyBlog/page321/">321</a> <a href="/MyBlog/page322/">322</a> <a href="/MyBlog/page323/">323</a> <a href="/MyBlog/page324/">324</a> <a href="/MyBlog/page325/">325</a> <a href="/MyBlog/page326/">326</a> <a href="/MyBlog/page327/">327</a> <a href="/MyBlog/page328/">328</a> <a href="/MyBlog/page329/">329</a> <a href="/MyBlog/page330/">330</a> <a href="/MyBlog/page331/">331</a> <a href="/MyBlog/page332/">332</a> <a href="/MyBlog/page333/">333</a> <a href="/MyBlog/page334/">334</a> <a href="/MyBlog/page335/">335</a> <a href="/MyBlog/page336/">336</a> <a href="/MyBlog/page337/">337</a> <a href="/MyBlog/page338/">338</a> <a href="/MyBlog/page339/">339</a> <a href="/MyBlog/page340/">340</a> <a href="/MyBlog/page341/">341</a> <a href="/MyBlog/page342/">342</a> <a href="/MyBlog/page343/">343</a> <a href="/MyBlog/page344/">344</a> <a href="/MyBlog/page345/">345</a> <a href="/MyBlog/page346/">346</a> <a href="/MyBlog/page347/">347</a> <a href="/MyBlog/page348/">348</a> <a href="/MyBlog/page349/">349</a> <a href="/MyBlog/page350/">350</a> <a href="/MyBlog/page351/">351</a> <a href="/MyBlog/page352/">352</a> <a href="/MyBlog/page353/">353</a> <a href="/MyBlog/page354/">354</a> <a href="/MyBlog/page355/">355</a> <a href="/MyBlog/page356/">356</a> <a href="/MyBlog/page357/">357</a> <a href="/MyBlog/page358/">358</a> <a href="/MyBlog/page359/">359</a> <a href="/MyBlog/page360/">360</a> <a href="/MyBlog/page361/">361</a> <a href="/MyBlog/page362/">362</a> <a href="/MyBlog/page363/">363</a> <a href="/MyBlog/page364/">364</a> <a href="/MyBlog/page365/">365</a> <a href="/MyBlog/page366/">366</a> <a href="/MyBlog/page367/">367</a> <a href="/MyBlog/page368/">368</a> <a href="/MyBlog/page369/">369</a> <a href="/MyBlog/page370/">370</a> <a href="/MyBlog/page371/">371</a> <a href="/MyBlog/page372/">372</a> <a href="/MyBlog/page373/">373</a> <a href="/MyBlog/page374/">374</a> <a href="/MyBlog/page375/">375</a> <a href="/MyBlog/page376/">376</a> <a href="/MyBlog/page377/">377</a> <a href="/MyBlog/page378/">378</a> <a href="/MyBlog/page379/">379</a> <a href="/MyBlog/page380/">380</a> <a href="/MyBlog/page381/">381</a> <a href="/MyBlog/page382/">382</a> <a href="/MyBlog/page383/">383</a> <a href="/MyBlog/page384/">384</a> <a href="/MyBlog/page385/">385</a> <a href="/MyBlog/page386/">386</a> <a href="/MyBlog/page387/">387</a> <a href="/MyBlog/page388/">388</a> <a href="/MyBlog/page389/">389</a> <a href="/MyBlog/page390/">390</a> <a href="/MyBlog/page391/">391</a> <a href="/MyBlog/page392/">392</a> <a href="/MyBlog/page393/">393</a> <a href="/MyBlog/page394/">394</a> <a href="/MyBlog/page395/">395</a> <a href="/MyBlog/page396/">396</a> <a href="/MyBlog/page397/">397</a> <a href="/MyBlog/page398/">398</a> <a href="/MyBlog/page399/">399</a> <a href="/MyBlog/page400/">400</a> <a href="/MyBlog/page401/">401</a> <a href="/MyBlog/page402/">402</a> <a href="/MyBlog/page403/">403</a> <a href="/MyBlog/page404/">404</a> <a href="/MyBlog/page405/">405</a> <a href="/MyBlog/page406/">406</a> <a href="/MyBlog/page407/">407</a> <a href="/MyBlog/page408/">408</a> <a href="/MyBlog/page409/">409</a> <a href="/MyBlog/page410/">410</a> <a href="/MyBlog/page411/">411</a> <a href="/MyBlog/page412/">412</a> <a href="/MyBlog/page413/">413</a> <a href="/MyBlog/page414/">414</a> <a href="/MyBlog/page415/">415</a> <a href="/MyBlog/page416/">416</a> <a href="/MyBlog/page417/">417</a> <a href="/MyBlog/page418/">418</a> <a href="/MyBlog/page419/">419</a> <a href="/MyBlog/page420/">420</a> <a href="/MyBlog/page421/">421</a> <a href="/MyBlog/page422/">422</a> <a href="/MyBlog/page423/">423</a> <a href="/MyBlog/page424/">424</a> <a href="/MyBlog/page425/">425</a> <a href="/MyBlog/page426/">426</a> <a href="/MyBlog/page427/">427</a> <a href="/MyBlog/page428/">428</a> <a href="/MyBlog/page429/">429</a> <a href="/MyBlog/page430/">430</a> <a href="/MyBlog/page431/">431</a> <a href="/MyBlog/page432/">432</a> <a href="/MyBlog/page433/">433</a> <a href="/MyBlog/page434/">434</a> <a href="/MyBlog/page435/">435</a> <a href="/MyBlog/page436/">436</a> <a href="/MyBlog/page437/">437</a> <a href="/MyBlog/page438/">438</a> <a href="/MyBlog/page439/">439</a> <a href="/MyBlog/page440/">440</a> <a href="/MyBlog/page441/">441</a> <a href="/MyBlog/page442/">442</a> <a href="/MyBlog/page443/">443</a> <a href="/MyBlog/page444/">444</a> <a href="/MyBlog/page445/">445</a> <a href="/MyBlog/page446/">446</a> <a href="/MyBlog/page447/">447</a> <a href="/MyBlog/page448/">448</a> <a href="/MyBlog/page449/">449</a> <a href="/MyBlog/page450/">450</a> <a href="/MyBlog/page451/">451</a> <a href="/MyBlog/page452/">452</a> <a href="/MyBlog/page453/">453</a> <a href="/MyBlog/page454/">454</a> <a href="/MyBlog/page455/">455</a> <a href="/MyBlog/page456/">456</a> <a href="/MyBlog/page457/">457</a> <a href="/MyBlog/page458/">458</a> <a href="/MyBlog/page459/">459</a> <a href="/MyBlog/page460/">460</a> <a href="/MyBlog/page461/">461</a> <a href="/MyBlog/page462/">462</a> <a href="/MyBlog/page463/">463</a> <a href="/MyBlog/page464/">464</a> <a href="/MyBlog/page465/">465</a> <a href="/MyBlog/page466/">466</a> <a href="/MyBlog/page467/">467</a> <a href="/MyBlog/page468/">468</a> <a href="/MyBlog/page469/">469</a> <a href="/MyBlog/page470/">470</a> <a href="/MyBlog/page471/">471</a> <a href="/MyBlog/page472/">472</a> <a href="/MyBlog/page473/">473</a> <a href="/MyBlog/page474/">474</a> <a href="/MyBlog/page475/">475</a> <a href="/MyBlog/page476/">476</a> <a href="/MyBlog/page477/">477</a> <a href="/MyBlog/page478/">478</a> <a href="/MyBlog/page479/">479</a> <a href="/MyBlog/page480/">480</a> <a href="/MyBlog/page481/">481</a> <a href="/MyBlog/page482/">482</a> <a href="/MyBlog/page483/">483</a> <a href="/MyBlog/page484/">484</a> <a href="/MyBlog/page485/">485</a> <a href="/MyBlog/page486/">486</a> <a href="/MyBlog/page487/">487</a> <a href="/MyBlog/page488/">488</a> <a href="/MyBlog/page489/">489</a> <a href="/MyBlog/page490/">490</a> <a href="/MyBlog/page491/">491</a> <a href="/MyBlog/page492/">492</a> <a href="/MyBlog/page493/">493</a> <a href="/MyBlog/page494/">494</a> <a href="/MyBlog/page495/">495</a> <a href="/MyBlog/page496/">496</a> <a href="/MyBlog/page497/">497</a> <a href="/MyBlog/page498/">498</a> <a href="/MyBlog/page499/">499</a> <a href="/MyBlog/page500/">500</a> <a href="/MyBlog/page501/">501</a> <a href="/MyBlog/page502/">502</a> <a href="/MyBlog/page503/">503</a> <a href="/MyBlog/page504/">504</a> <a href="/MyBlog/page505/">505</a> <a href="/MyBlog/page506/">506</a> <a href="/MyBlog/page507/">507</a> <a href="/MyBlog/page508/">508</a> <a href="/MyBlog/page509/">509</a> <a href="/MyBlog/page510/">510</a> <a href="/MyBlog/page511/">511</a> <a href="/MyBlog/page512/">512</a> <a href="/MyBlog/page513/">513</a> <a href="/MyBlog/page514/">514</a> <a href="/MyBlog/page515/">515</a> <a href="/MyBlog/page516/">516</a> <a href="/MyBlog/page517/">517</a> <a href="/MyBlog/page518/">518</a> <a href="/MyBlog/page519/">519</a> <a href="/MyBlog/page520/">520</a> <a href="/MyBlog/page521/">521</a> <a href="/MyBlog/page522/">522</a> <a href="/MyBlog/page523/">523</a> <a href="/MyBlog/page524/">524</a> <a href="/MyBlog/page525/">525</a> <a href="/MyBlog/page526/">526</a> <a href="/MyBlog/page527/">527</a> <a href="/MyBlog/page528/">528</a> <a href="/MyBlog/page529/">529</a> <a href="/MyBlog/page530/">530</a> <a href="/MyBlog/page531/">531</a> <a href="/MyBlog/page532/">532</a> <a href="/MyBlog/page533/">533</a> <a href="/MyBlog/page534/">534</a> <a href="/MyBlog/page535/">535</a> <a href="/MyBlog/page536/">536</a> <a href="/MyBlog/page537/">537</a> <a href="/MyBlog/page538/">538</a> <a href="/MyBlog/page539/">539</a> <a href="/MyBlog/page540/">540</a> <a href="/MyBlog/page541/">541</a> <a href="/MyBlog/page542/">542</a> <a href="/MyBlog/page543/">543</a> <a href="/MyBlog/page544/">544</a> <a href="/MyBlog/page545/">545</a> <a href="/MyBlog/page546/">546</a> <a href="/MyBlog/page547/">547</a> <a href="/MyBlog/page548/">548</a> <a href="/MyBlog/page549/">549</a> <a href="/MyBlog/page550/">550</a> <a href="/MyBlog/page551/">551</a> <a href="/MyBlog/page552/">552</a> <a href="/MyBlog/page553/">553</a> <a href="/MyBlog/page554/">554</a> <a href="/MyBlog/page555/">555</a> <a href="/MyBlog/page556/">556</a> <a href="/MyBlog/page557/">557</a> <a href="/MyBlog/page558/">558</a> <a href="/MyBlog/page559/">559</a> <a href="/MyBlog/page560/">560</a> <a href="/MyBlog/page561/">561</a> <a href="/MyBlog/page562/">562</a> <a href="/MyBlog/page563/">563</a> <a href="/MyBlog/page564/">564</a> <a href="/MyBlog/page565/">565</a> <a href="/MyBlog/page566/">566</a> <a href="/MyBlog/page567/">567</a> <a href="/MyBlog/page568/">568</a> <a href="/MyBlog/page569/">569</a> <a href="/MyBlog/page570/">570</a> <a href="/MyBlog/page571/">571</a> <a href="/MyBlog/page572/">572</a> <a href="/MyBlog/page573/">573</a> <a href="/MyBlog/page574/">574</a> <a href="/MyBlog/page575/">575</a> <a href="/MyBlog/page576/">576</a> <a href="/MyBlog/page577/">577</a> <a href="/MyBlog/page578/">578</a> <a href="/MyBlog/page579/">579</a> <a href="/MyBlog/page580/">580</a> <a href="/MyBlog/page581/">581</a> <a href="/MyBlog/page582/">582</a> <a href="/MyBlog/page583/">583</a> <a href="/MyBlog/page584/">584</a> <a href="/MyBlog/page585/">585</a> <a href="/MyBlog/page586/">586</a> <a href="/MyBlog/page587/">587</a> <a href="/MyBlog/page588/">588</a> <a href="/MyBlog/page589/">589</a> <a href="/MyBlog/page590/">590</a> <a href="/MyBlog/page591/">591</a> <a href="/MyBlog/page592/">592</a> <a href="/MyBlog/page593/">593</a> <a href="/MyBlog/page594/">594</a> <a href="/MyBlog/page595/">595</a> <a href="/MyBlog/page596/">596</a> <a href="/MyBlog/page597/">597</a> <a href="/MyBlog/page98/">Next &raquo;</a> </div> <!-- Pagination links --> <span class='st_sharethis' displayText='ShareThis'></span> <span class='st_facebook' displayText='Facebook'></span> <span class='st_twitter' displayText='Tweet'></span> <span class='st_linkedin' displayText='LinkedIn'></span> <span class='st_pinterest' displayText='Pinterest'></span> <span class='st_email' displayText='Email'></span> <!-- Pagination links --> <div class="pagination"> <ul> <li><a href="/MyBlog/page96">Previous</a></li> <li><a href="/MyBlog/">1</a></li> <li><a href="/MyBlog/page2">2</a></li> <li><a href="/MyBlog/page3">3</a></li> <li><a href="/MyBlog/page4">4</a></li> <li><a href="/MyBlog/page5">5</a></li> <li><a href="/MyBlog/page6">6</a></li> <li><a href="/MyBlog/page7">7</a></li> <li><a href="/MyBlog/page8">8</a></li> <li><a href="/MyBlog/page9">9</a></li> <li><a href="/MyBlog/page10">10</a></li> <li><a href="/MyBlog/page11">11</a></li> <li><a href="/MyBlog/page12">12</a></li> <li><a href="/MyBlog/page13">13</a></li> <li><a href="/MyBlog/page14">14</a></li> <li><a href="/MyBlog/page15">15</a></li> <li><a href="/MyBlog/page16">16</a></li> <li><a href="/MyBlog/page17">17</a></li> <li><a href="/MyBlog/page18">18</a></li> <li><a href="/MyBlog/page19">19</a></li> <li><a href="/MyBlog/page20">20</a></li> <li><a href="/MyBlog/page21">21</a></li> <li><a href="/MyBlog/page22">22</a></li> <li><a href="/MyBlog/page23">23</a></li> <li><a href="/MyBlog/page24">24</a></li> <li><a href="/MyBlog/page25">25</a></li> <li><a href="/MyBlog/page26">26</a></li> <li><a href="/MyBlog/page27">27</a></li> <li><a href="/MyBlog/page28">28</a></li> <li><a href="/MyBlog/page29">29</a></li> <li><a href="/MyBlog/page30">30</a></li> <li><a href="/MyBlog/page31">31</a></li> <li><a href="/MyBlog/page32">32</a></li> <li><a href="/MyBlog/page33">33</a></li> <li><a href="/MyBlog/page34">34</a></li> <li><a href="/MyBlog/page35">35</a></li> <li><a href="/MyBlog/page36">36</a></li> <li><a href="/MyBlog/page37">37</a></li> <li><a href="/MyBlog/page38">38</a></li> <li><a href="/MyBlog/page39">39</a></li> <li><a href="/MyBlog/page40">40</a></li> <li><a href="/MyBlog/page41">41</a></li> <li><a href="/MyBlog/page42">42</a></li> <li><a href="/MyBlog/page43">43</a></li> <li><a href="/MyBlog/page44">44</a></li> <li><a href="/MyBlog/page45">45</a></li> <li><a href="/MyBlog/page46">46</a></li> <li><a href="/MyBlog/page47">47</a></li> <li><a href="/MyBlog/page48">48</a></li> <li><a href="/MyBlog/page49">49</a></li> <li><a href="/MyBlog/page50">50</a></li> <li><a href="/MyBlog/page51">51</a></li> <li><a href="/MyBlog/page52">52</a></li> <li><a href="/MyBlog/page53">53</a></li> <li><a href="/MyBlog/page54">54</a></li> <li><a href="/MyBlog/page55">55</a></li> <li><a href="/MyBlog/page56">56</a></li> <li><a href="/MyBlog/page57">57</a></li> <li><a href="/MyBlog/page58">58</a></li> <li><a href="/MyBlog/page59">59</a></li> <li><a href="/MyBlog/page60">60</a></li> <li><a href="/MyBlog/page61">61</a></li> <li><a href="/MyBlog/page62">62</a></li> <li><a href="/MyBlog/page63">63</a></li> <li><a href="/MyBlog/page64">64</a></li> <li><a href="/MyBlog/page65">65</a></li> <li><a href="/MyBlog/page66">66</a></li> <li><a href="/MyBlog/page67">67</a></li> <li><a href="/MyBlog/page68">68</a></li> <li><a href="/MyBlog/page69">69</a></li> <li><a href="/MyBlog/page70">70</a></li> <li><a href="/MyBlog/page71">71</a></li> <li><a href="/MyBlog/page72">72</a></li> <li><a href="/MyBlog/page73">73</a></li> <li><a href="/MyBlog/page74">74</a></li> <li><a href="/MyBlog/page75">75</a></li> <li><a href="/MyBlog/page76">76</a></li> <li><a href="/MyBlog/page77">77</a></li> <li><a href="/MyBlog/page78">78</a></li> <li><a href="/MyBlog/page79">79</a></li> <li><a href="/MyBlog/page80">80</a></li> <li><a href="/MyBlog/page81">81</a></li> <li><a href="/MyBlog/page82">82</a></li> <li><a href="/MyBlog/page83">83</a></li> <li><a href="/MyBlog/page84">84</a></li> <li><a href="/MyBlog/page85">85</a></li> <li><a href="/MyBlog/page86">86</a></li> <li><a href="/MyBlog/page87">87</a></li> <li><a href="/MyBlog/page88">88</a></li> <li><a href="/MyBlog/page89">89</a></li> <li><a href="/MyBlog/page90">90</a></li> <li><a href="/MyBlog/page91">91</a></li> <li><a href="/MyBlog/page92">92</a></li> <li><a href="/MyBlog/page93">93</a></li> <li><a href="/MyBlog/page94">94</a></li> <li><a href="/MyBlog/page95">95</a></li> <li><a href="/MyBlog/page96">96</a></li> <li><span class="active">97</span></li> <li><a href="/MyBlog/page98">98</a></li> <li><a href="/MyBlog/page99">99</a></li> <li><a href="/MyBlog/page100">100</a></li> <li><a href="/MyBlog/page101">101</a></li> <li><a href="/MyBlog/page102">102</a></li> <li><a href="/MyBlog/page103">103</a></li> <li><a href="/MyBlog/page104">104</a></li> <li><a href="/MyBlog/page105">105</a></li> <li><a href="/MyBlog/page106">106</a></li> <li><a href="/MyBlog/page107">107</a></li> <li><a href="/MyBlog/page108">108</a></li> <li><a href="/MyBlog/page109">109</a></li> <li><a href="/MyBlog/page110">110</a></li> <li><a href="/MyBlog/page111">111</a></li> <li><a href="/MyBlog/page112">112</a></li> <li><a href="/MyBlog/page113">113</a></li> <li><a href="/MyBlog/page114">114</a></li> <li><a href="/MyBlog/page115">115</a></li> <li><a href="/MyBlog/page116">116</a></li> <li><a href="/MyBlog/page117">117</a></li> <li><a href="/MyBlog/page118">118</a></li> <li><a href="/MyBlog/page119">119</a></li> <li><a href="/MyBlog/page120">120</a></li> <li><a href="/MyBlog/page121">121</a></li> <li><a href="/MyBlog/page122">122</a></li> <li><a href="/MyBlog/page123">123</a></li> <li><a href="/MyBlog/page124">124</a></li> <li><a href="/MyBlog/page125">125</a></li> <li><a href="/MyBlog/page126">126</a></li> <li><a href="/MyBlog/page127">127</a></li> <li><a href="/MyBlog/page128">128</a></li> <li><a href="/MyBlog/page129">129</a></li> <li><a href="/MyBlog/page130">130</a></li> <li><a href="/MyBlog/page131">131</a></li> <li><a href="/MyBlog/page132">132</a></li> <li><a href="/MyBlog/page133">133</a></li> <li><a href="/MyBlog/page134">134</a></li> <li><a href="/MyBlog/page135">135</a></li> <li><a href="/MyBlog/page136">136</a></li> <li><a href="/MyBlog/page137">137</a></li> <li><a href="/MyBlog/page138">138</a></li> <li><a href="/MyBlog/page139">139</a></li> <li><a href="/MyBlog/page140">140</a></li> <li><a href="/MyBlog/page141">141</a></li> <li><a href="/MyBlog/page142">142</a></li> <li><a href="/MyBlog/page143">143</a></li> <li><a href="/MyBlog/page144">144</a></li> <li><a href="/MyBlog/page145">145</a></li> <li><a href="/MyBlog/page146">146</a></li> <li><a href="/MyBlog/page147">147</a></li> <li><a href="/MyBlog/page148">148</a></li> <li><a href="/MyBlog/page149">149</a></li> <li><a href="/MyBlog/page150">150</a></li> <li><a href="/MyBlog/page151">151</a></li> <li><a href="/MyBlog/page152">152</a></li> <li><a href="/MyBlog/page153">153</a></li> <li><a href="/MyBlog/page154">154</a></li> <li><a href="/MyBlog/page155">155</a></li> <li><a href="/MyBlog/page156">156</a></li> <li><a href="/MyBlog/page157">157</a></li> <li><a href="/MyBlog/page158">158</a></li> <li><a href="/MyBlog/page159">159</a></li> <li><a href="/MyBlog/page160">160</a></li> <li><a href="/MyBlog/page161">161</a></li> <li><a href="/MyBlog/page162">162</a></li> <li><a href="/MyBlog/page163">163</a></li> <li><a href="/MyBlog/page164">164</a></li> <li><a href="/MyBlog/page165">165</a></li> <li><a href="/MyBlog/page166">166</a></li> <li><a href="/MyBlog/page167">167</a></li> <li><a href="/MyBlog/page168">168</a></li> <li><a href="/MyBlog/page169">169</a></li> <li><a href="/MyBlog/page170">170</a></li> <li><a href="/MyBlog/page171">171</a></li> <li><a href="/MyBlog/page172">172</a></li> <li><a href="/MyBlog/page173">173</a></li> <li><a href="/MyBlog/page174">174</a></li> <li><a href="/MyBlog/page175">175</a></li> <li><a href="/MyBlog/page176">176</a></li> <li><a href="/MyBlog/page177">177</a></li> <li><a href="/MyBlog/page178">178</a></li> <li><a href="/MyBlog/page179">179</a></li> <li><a href="/MyBlog/page180">180</a></li> <li><a href="/MyBlog/page181">181</a></li> <li><a href="/MyBlog/page182">182</a></li> <li><a href="/MyBlog/page183">183</a></li> <li><a href="/MyBlog/page184">184</a></li> <li><a href="/MyBlog/page185">185</a></li> <li><a href="/MyBlog/page186">186</a></li> <li><a href="/MyBlog/page187">187</a></li> <li><a href="/MyBlog/page188">188</a></li> <li><a href="/MyBlog/page189">189</a></li> <li><a href="/MyBlog/page190">190</a></li> <li><a href="/MyBlog/page191">191</a></li> <li><a href="/MyBlog/page192">192</a></li> <li><a href="/MyBlog/page193">193</a></li> <li><a href="/MyBlog/page194">194</a></li> <li><a href="/MyBlog/page195">195</a></li> <li><a href="/MyBlog/page196">196</a></li> <li><a href="/MyBlog/page197">197</a></li> <li><a href="/MyBlog/page198">198</a></li> <li><a href="/MyBlog/page199">199</a></li> <li><a href="/MyBlog/page200">200</a></li> <li><a href="/MyBlog/page201">201</a></li> <li><a href="/MyBlog/page202">202</a></li> <li><a href="/MyBlog/page203">203</a></li> <li><a href="/MyBlog/page204">204</a></li> <li><a href="/MyBlog/page205">205</a></li> <li><a href="/MyBlog/page206">206</a></li> <li><a href="/MyBlog/page207">207</a></li> <li><a href="/MyBlog/page208">208</a></li> <li><a href="/MyBlog/page209">209</a></li> <li><a href="/MyBlog/page210">210</a></li> <li><a href="/MyBlog/page211">211</a></li> <li><a href="/MyBlog/page212">212</a></li> <li><a href="/MyBlog/page213">213</a></li> <li><a href="/MyBlog/page214">214</a></li> <li><a href="/MyBlog/page215">215</a></li> <li><a href="/MyBlog/page216">216</a></li> <li><a href="/MyBlog/page217">217</a></li> <li><a href="/MyBlog/page218">218</a></li> <li><a href="/MyBlog/page219">219</a></li> <li><a href="/MyBlog/page220">220</a></li> <li><a href="/MyBlog/page221">221</a></li> <li><a href="/MyBlog/page222">222</a></li> <li><a href="/MyBlog/page223">223</a></li> <li><a href="/MyBlog/page224">224</a></li> <li><a href="/MyBlog/page225">225</a></li> <li><a href="/MyBlog/page226">226</a></li> <li><a href="/MyBlog/page227">227</a></li> <li><a href="/MyBlog/page228">228</a></li> <li><a href="/MyBlog/page229">229</a></li> <li><a href="/MyBlog/page230">230</a></li> <li><a href="/MyBlog/page231">231</a></li> <li><a href="/MyBlog/page232">232</a></li> <li><a href="/MyBlog/page233">233</a></li> <li><a href="/MyBlog/page234">234</a></li> <li><a href="/MyBlog/page235">235</a></li> <li><a href="/MyBlog/page236">236</a></li> <li><a href="/MyBlog/page237">237</a></li> <li><a href="/MyBlog/page238">238</a></li> <li><a href="/MyBlog/page239">239</a></li> <li><a href="/MyBlog/page240">240</a></li> <li><a href="/MyBlog/page241">241</a></li> <li><a href="/MyBlog/page242">242</a></li> <li><a href="/MyBlog/page243">243</a></li> <li><a href="/MyBlog/page244">244</a></li> <li><a href="/MyBlog/page245">245</a></li> <li><a href="/MyBlog/page246">246</a></li> <li><a href="/MyBlog/page247">247</a></li> <li><a href="/MyBlog/page248">248</a></li> <li><a href="/MyBlog/page249">249</a></li> <li><a href="/MyBlog/page250">250</a></li> <li><a href="/MyBlog/page251">251</a></li> <li><a href="/MyBlog/page252">252</a></li> <li><a href="/MyBlog/page253">253</a></li> <li><a href="/MyBlog/page254">254</a></li> <li><a href="/MyBlog/page255">255</a></li> <li><a href="/MyBlog/page256">256</a></li> <li><a href="/MyBlog/page257">257</a></li> <li><a href="/MyBlog/page258">258</a></li> <li><a href="/MyBlog/page259">259</a></li> <li><a href="/MyBlog/page260">260</a></li> <li><a href="/MyBlog/page261">261</a></li> <li><a href="/MyBlog/page262">262</a></li> <li><a href="/MyBlog/page263">263</a></li> <li><a href="/MyBlog/page264">264</a></li> <li><a href="/MyBlog/page265">265</a></li> <li><a href="/MyBlog/page266">266</a></li> <li><a href="/MyBlog/page267">267</a></li> <li><a href="/MyBlog/page268">268</a></li> <li><a href="/MyBlog/page269">269</a></li> <li><a href="/MyBlog/page270">270</a></li> <li><a href="/MyBlog/page271">271</a></li> <li><a href="/MyBlog/page272">272</a></li> <li><a href="/MyBlog/page273">273</a></li> <li><a href="/MyBlog/page274">274</a></li> <li><a href="/MyBlog/page275">275</a></li> <li><a href="/MyBlog/page276">276</a></li> <li><a href="/MyBlog/page277">277</a></li> <li><a href="/MyBlog/page278">278</a></li> <li><a href="/MyBlog/page279">279</a></li> <li><a href="/MyBlog/page280">280</a></li> <li><a href="/MyBlog/page281">281</a></li> <li><a href="/MyBlog/page282">282</a></li> <li><a href="/MyBlog/page283">283</a></li> <li><a href="/MyBlog/page284">284</a></li> <li><a href="/MyBlog/page285">285</a></li> <li><a href="/MyBlog/page286">286</a></li> <li><a href="/MyBlog/page287">287</a></li> <li><a href="/MyBlog/page288">288</a></li> <li><a href="/MyBlog/page289">289</a></li> <li><a href="/MyBlog/page290">290</a></li> <li><a href="/MyBlog/page291">291</a></li> <li><a href="/MyBlog/page292">292</a></li> <li><a href="/MyBlog/page293">293</a></li> <li><a href="/MyBlog/page294">294</a></li> <li><a href="/MyBlog/page295">295</a></li> <li><a href="/MyBlog/page296">296</a></li> <li><a href="/MyBlog/page297">297</a></li> <li><a href="/MyBlog/page298">298</a></li> <li><a href="/MyBlog/page299">299</a></li> <li><a href="/MyBlog/page300">300</a></li> <li><a href="/MyBlog/page301">301</a></li> <li><a href="/MyBlog/page302">302</a></li> <li><a href="/MyBlog/page303">303</a></li> <li><a href="/MyBlog/page304">304</a></li> <li><a href="/MyBlog/page305">305</a></li> <li><a href="/MyBlog/page306">306</a></li> <li><a href="/MyBlog/page307">307</a></li> <li><a href="/MyBlog/page308">308</a></li> <li><a href="/MyBlog/page309">309</a></li> <li><a href="/MyBlog/page310">310</a></li> <li><a href="/MyBlog/page311">311</a></li> <li><a href="/MyBlog/page312">312</a></li> <li><a href="/MyBlog/page313">313</a></li> <li><a href="/MyBlog/page314">314</a></li> <li><a href="/MyBlog/page315">315</a></li> <li><a href="/MyBlog/page316">316</a></li> <li><a href="/MyBlog/page317">317</a></li> <li><a href="/MyBlog/page318">318</a></li> <li><a href="/MyBlog/page319">319</a></li> <li><a href="/MyBlog/page320">320</a></li> <li><a href="/MyBlog/page321">321</a></li> <li><a href="/MyBlog/page322">322</a></li> <li><a href="/MyBlog/page323">323</a></li> <li><a href="/MyBlog/page324">324</a></li> <li><a href="/MyBlog/page325">325</a></li> <li><a href="/MyBlog/page326">326</a></li> <li><a href="/MyBlog/page327">327</a></li> <li><a href="/MyBlog/page328">328</a></li> <li><a href="/MyBlog/page329">329</a></li> <li><a href="/MyBlog/page330">330</a></li> <li><a href="/MyBlog/page331">331</a></li> <li><a href="/MyBlog/page332">332</a></li> <li><a href="/MyBlog/page333">333</a></li> <li><a href="/MyBlog/page334">334</a></li> <li><a href="/MyBlog/page335">335</a></li> <li><a href="/MyBlog/page336">336</a></li> <li><a href="/MyBlog/page337">337</a></li> <li><a href="/MyBlog/page338">338</a></li> <li><a href="/MyBlog/page339">339</a></li> <li><a href="/MyBlog/page340">340</a></li> <li><a href="/MyBlog/page341">341</a></li> <li><a href="/MyBlog/page342">342</a></li> <li><a href="/MyBlog/page343">343</a></li> <li><a href="/MyBlog/page344">344</a></li> <li><a href="/MyBlog/page345">345</a></li> <li><a href="/MyBlog/page346">346</a></li> <li><a href="/MyBlog/page347">347</a></li> <li><a href="/MyBlog/page348">348</a></li> <li><a href="/MyBlog/page349">349</a></li> <li><a href="/MyBlog/page350">350</a></li> <li><a href="/MyBlog/page351">351</a></li> <li><a href="/MyBlog/page352">352</a></li> <li><a href="/MyBlog/page353">353</a></li> <li><a href="/MyBlog/page354">354</a></li> <li><a href="/MyBlog/page355">355</a></li> <li><a href="/MyBlog/page356">356</a></li> <li><a href="/MyBlog/page357">357</a></li> <li><a href="/MyBlog/page358">358</a></li> <li><a href="/MyBlog/page359">359</a></li> <li><a href="/MyBlog/page360">360</a></li> <li><a href="/MyBlog/page361">361</a></li> <li><a href="/MyBlog/page362">362</a></li> <li><a href="/MyBlog/page363">363</a></li> <li><a href="/MyBlog/page364">364</a></li> <li><a href="/MyBlog/page365">365</a></li> <li><a href="/MyBlog/page366">366</a></li> <li><a href="/MyBlog/page367">367</a></li> <li><a href="/MyBlog/page368">368</a></li> <li><a href="/MyBlog/page369">369</a></li> <li><a href="/MyBlog/page370">370</a></li> <li><a href="/MyBlog/page371">371</a></li> <li><a href="/MyBlog/page372">372</a></li> <li><a href="/MyBlog/page373">373</a></li> <li><a href="/MyBlog/page374">374</a></li> <li><a href="/MyBlog/page375">375</a></li> <li><a href="/MyBlog/page376">376</a></li> <li><a href="/MyBlog/page377">377</a></li> <li><a href="/MyBlog/page378">378</a></li> <li><a href="/MyBlog/page379">379</a></li> <li><a href="/MyBlog/page380">380</a></li> <li><a href="/MyBlog/page381">381</a></li> <li><a href="/MyBlog/page382">382</a></li> <li><a href="/MyBlog/page383">383</a></li> <li><a href="/MyBlog/page384">384</a></li> <li><a href="/MyBlog/page385">385</a></li> <li><a href="/MyBlog/page386">386</a></li> <li><a href="/MyBlog/page387">387</a></li> <li><a href="/MyBlog/page388">388</a></li> <li><a href="/MyBlog/page389">389</a></li> <li><a href="/MyBlog/page390">390</a></li> <li><a href="/MyBlog/page391">391</a></li> <li><a href="/MyBlog/page392">392</a></li> <li><a href="/MyBlog/page393">393</a></li> <li><a href="/MyBlog/page394">394</a></li> <li><a href="/MyBlog/page395">395</a></li> <li><a href="/MyBlog/page396">396</a></li> <li><a href="/MyBlog/page397">397</a></li> <li><a href="/MyBlog/page398">398</a></li> <li><a href="/MyBlog/page399">399</a></li> <li><a href="/MyBlog/page400">400</a></li> <li><a href="/MyBlog/page401">401</a></li> <li><a href="/MyBlog/page402">402</a></li> <li><a href="/MyBlog/page403">403</a></li> <li><a href="/MyBlog/page404">404</a></li> <li><a href="/MyBlog/page405">405</a></li> <li><a href="/MyBlog/page406">406</a></li> <li><a href="/MyBlog/page407">407</a></li> <li><a href="/MyBlog/page408">408</a></li> <li><a href="/MyBlog/page409">409</a></li> <li><a href="/MyBlog/page410">410</a></li> <li><a href="/MyBlog/page411">411</a></li> <li><a href="/MyBlog/page412">412</a></li> <li><a href="/MyBlog/page413">413</a></li> <li><a href="/MyBlog/page414">414</a></li> <li><a href="/MyBlog/page415">415</a></li> <li><a href="/MyBlog/page416">416</a></li> <li><a href="/MyBlog/page417">417</a></li> <li><a href="/MyBlog/page418">418</a></li> <li><a href="/MyBlog/page419">419</a></li> <li><a href="/MyBlog/page420">420</a></li> <li><a href="/MyBlog/page421">421</a></li> <li><a href="/MyBlog/page422">422</a></li> <li><a href="/MyBlog/page423">423</a></li> <li><a href="/MyBlog/page424">424</a></li> <li><a href="/MyBlog/page425">425</a></li> <li><a href="/MyBlog/page426">426</a></li> <li><a href="/MyBlog/page427">427</a></li> <li><a href="/MyBlog/page428">428</a></li> <li><a href="/MyBlog/page429">429</a></li> <li><a href="/MyBlog/page430">430</a></li> <li><a href="/MyBlog/page431">431</a></li> <li><a href="/MyBlog/page432">432</a></li> <li><a href="/MyBlog/page433">433</a></li> <li><a href="/MyBlog/page434">434</a></li> <li><a href="/MyBlog/page435">435</a></li> <li><a href="/MyBlog/page436">436</a></li> <li><a href="/MyBlog/page437">437</a></li> <li><a href="/MyBlog/page438">438</a></li> <li><a href="/MyBlog/page439">439</a></li> <li><a href="/MyBlog/page440">440</a></li> <li><a href="/MyBlog/page441">441</a></li> <li><a href="/MyBlog/page442">442</a></li> <li><a href="/MyBlog/page443">443</a></li> <li><a href="/MyBlog/page444">444</a></li> <li><a href="/MyBlog/page445">445</a></li> <li><a href="/MyBlog/page446">446</a></li> <li><a href="/MyBlog/page447">447</a></li> <li><a href="/MyBlog/page448">448</a></li> <li><a href="/MyBlog/page449">449</a></li> <li><a href="/MyBlog/page450">450</a></li> <li><a href="/MyBlog/page451">451</a></li> <li><a href="/MyBlog/page452">452</a></li> <li><a href="/MyBlog/page453">453</a></li> <li><a href="/MyBlog/page454">454</a></li> <li><a href="/MyBlog/page455">455</a></li> <li><a href="/MyBlog/page456">456</a></li> <li><a href="/MyBlog/page457">457</a></li> <li><a href="/MyBlog/page458">458</a></li> <li><a href="/MyBlog/page459">459</a></li> <li><a href="/MyBlog/page460">460</a></li> <li><a href="/MyBlog/page461">461</a></li> <li><a href="/MyBlog/page462">462</a></li> <li><a href="/MyBlog/page463">463</a></li> <li><a href="/MyBlog/page464">464</a></li> <li><a href="/MyBlog/page465">465</a></li> <li><a href="/MyBlog/page466">466</a></li> <li><a href="/MyBlog/page467">467</a></li> <li><a href="/MyBlog/page468">468</a></li> <li><a href="/MyBlog/page469">469</a></li> <li><a href="/MyBlog/page470">470</a></li> <li><a href="/MyBlog/page471">471</a></li> <li><a href="/MyBlog/page472">472</a></li> <li><a href="/MyBlog/page473">473</a></li> <li><a href="/MyBlog/page474">474</a></li> <li><a href="/MyBlog/page475">475</a></li> <li><a href="/MyBlog/page476">476</a></li> <li><a href="/MyBlog/page477">477</a></li> <li><a href="/MyBlog/page478">478</a></li> <li><a href="/MyBlog/page479">479</a></li> <li><a href="/MyBlog/page480">480</a></li> <li><a href="/MyBlog/page481">481</a></li> <li><a href="/MyBlog/page482">482</a></li> <li><a href="/MyBlog/page483">483</a></li> <li><a href="/MyBlog/page484">484</a></li> <li><a href="/MyBlog/page485">485</a></li> <li><a href="/MyBlog/page486">486</a></li> <li><a href="/MyBlog/page487">487</a></li> <li><a href="/MyBlog/page488">488</a></li> <li><a href="/MyBlog/page489">489</a></li> <li><a href="/MyBlog/page490">490</a></li> <li><a href="/MyBlog/page491">491</a></li> <li><a href="/MyBlog/page492">492</a></li> <li><a href="/MyBlog/page493">493</a></li> <li><a href="/MyBlog/page494">494</a></li> <li><a href="/MyBlog/page495">495</a></li> <li><a href="/MyBlog/page496">496</a></li> <li><a href="/MyBlog/page497">497</a></li> <li><a href="/MyBlog/page498">498</a></li> <li><a href="/MyBlog/page499">499</a></li> <li><a href="/MyBlog/page500">500</a></li> <li><a href="/MyBlog/page501">501</a></li> <li><a href="/MyBlog/page502">502</a></li> <li><a href="/MyBlog/page503">503</a></li> <li><a href="/MyBlog/page504">504</a></li> <li><a href="/MyBlog/page505">505</a></li> <li><a href="/MyBlog/page506">506</a></li> <li><a href="/MyBlog/page507">507</a></li> <li><a href="/MyBlog/page508">508</a></li> <li><a href="/MyBlog/page509">509</a></li> <li><a href="/MyBlog/page510">510</a></li> <li><a href="/MyBlog/page511">511</a></li> <li><a href="/MyBlog/page512">512</a></li> <li><a href="/MyBlog/page513">513</a></li> <li><a href="/MyBlog/page514">514</a></li> <li><a href="/MyBlog/page515">515</a></li> <li><a href="/MyBlog/page516">516</a></li> <li><a href="/MyBlog/page517">517</a></li> <li><a href="/MyBlog/page518">518</a></li> <li><a href="/MyBlog/page519">519</a></li> <li><a href="/MyBlog/page520">520</a></li> <li><a href="/MyBlog/page521">521</a></li> <li><a href="/MyBlog/page522">522</a></li> <li><a href="/MyBlog/page523">523</a></li> <li><a href="/MyBlog/page524">524</a></li> <li><a href="/MyBlog/page525">525</a></li> <li><a href="/MyBlog/page526">526</a></li> <li><a href="/MyBlog/page527">527</a></li> <li><a href="/MyBlog/page528">528</a></li> <li><a href="/MyBlog/page529">529</a></li> <li><a href="/MyBlog/page530">530</a></li> <li><a href="/MyBlog/page531">531</a></li> <li><a href="/MyBlog/page532">532</a></li> <li><a href="/MyBlog/page533">533</a></li> <li><a href="/MyBlog/page534">534</a></li> <li><a href="/MyBlog/page535">535</a></li> <li><a href="/MyBlog/page536">536</a></li> <li><a href="/MyBlog/page537">537</a></li> <li><a href="/MyBlog/page538">538</a></li> <li><a href="/MyBlog/page539">539</a></li> <li><a href="/MyBlog/page540">540</a></li> <li><a href="/MyBlog/page541">541</a></li> <li><a href="/MyBlog/page542">542</a></li> <li><a href="/MyBlog/page543">543</a></li> <li><a href="/MyBlog/page544">544</a></li> <li><a href="/MyBlog/page545">545</a></li> <li><a href="/MyBlog/page546">546</a></li> <li><a href="/MyBlog/page547">547</a></li> <li><a href="/MyBlog/page548">548</a></li> <li><a href="/MyBlog/page549">549</a></li> <li><a href="/MyBlog/page550">550</a></li> <li><a href="/MyBlog/page551">551</a></li> <li><a href="/MyBlog/page552">552</a></li> <li><a href="/MyBlog/page553">553</a></li> <li><a href="/MyBlog/page554">554</a></li> <li><a href="/MyBlog/page555">555</a></li> <li><a href="/MyBlog/page556">556</a></li> <li><a href="/MyBlog/page557">557</a></li> <li><a href="/MyBlog/page558">558</a></li> <li><a href="/MyBlog/page559">559</a></li> <li><a href="/MyBlog/page560">560</a></li> <li><a href="/MyBlog/page561">561</a></li> <li><a href="/MyBlog/page562">562</a></li> <li><a href="/MyBlog/page563">563</a></li> <li><a href="/MyBlog/page564">564</a></li> <li><a href="/MyBlog/page565">565</a></li> <li><a href="/MyBlog/page566">566</a></li> <li><a href="/MyBlog/page567">567</a></li> <li><a href="/MyBlog/page568">568</a></li> <li><a href="/MyBlog/page569">569</a></li> <li><a href="/MyBlog/page570">570</a></li> <li><a href="/MyBlog/page571">571</a></li> <li><a href="/MyBlog/page572">572</a></li> <li><a href="/MyBlog/page573">573</a></li> <li><a href="/MyBlog/page574">574</a></li> <li><a href="/MyBlog/page575">575</a></li> <li><a href="/MyBlog/page576">576</a></li> <li><a href="/MyBlog/page577">577</a></li> <li><a href="/MyBlog/page578">578</a></li> <li><a href="/MyBlog/page579">579</a></li> <li><a href="/MyBlog/page580">580</a></li> <li><a href="/MyBlog/page581">581</a></li> <li><a href="/MyBlog/page582">582</a></li> <li><a href="/MyBlog/page583">583</a></li> <li><a href="/MyBlog/page584">584</a></li> <li><a href="/MyBlog/page585">585</a></li> <li><a href="/MyBlog/page586">586</a></li> <li><a href="/MyBlog/page587">587</a></li> <li><a href="/MyBlog/page588">588</a></li> <li><a href="/MyBlog/page589">589</a></li> <li><a href="/MyBlog/page590">590</a></li> <li><a href="/MyBlog/page591">591</a></li> <li><a href="/MyBlog/page592">592</a></li> <li><a href="/MyBlog/page593">593</a></li> <li><a href="/MyBlog/page594">594</a></li> <li><a href="/MyBlog/page595">595</a></li> <li><a href="/MyBlog/page596">596</a></li> <li><a href="/MyBlog/page597">597</a></li> <li><a href="/MyBlog/page98">Next</a></li> </ul> </div> </div> <!-- Widget --> <div class="col-md-4"> <div class="well"> <span id='statics' ></span> </div> <!-- Blog Search --> <div class="well"> <h4>Search</h4> <div class="input-group"> <form action="#" id="cse-search-box"> <div> <input type="hidden" name="cx" value="" /> <input type="hidden" name="ie" value="UTF-8" /> <!-- 搜索框 --> <input type="text" name="q" size="20" id='txt'/> <input type="submit" name="sa" id="Search" value="Search" /> <!-- 模糊查询结果显示框 --> <div id="msg"></div> <script type="text/javascript"> var searchIndex={ "code" : 0 , "data" : [ { "title" : "stun nat类型及打洞原理 - ", "url" : "/MyBlog/web/2022/03/06/stun.html" } , { "title" : "work 多 Module 工作区模式 - ", "url" : "/MyBlog/algorithm/2022/03/05/work.html" } , { "title" : "transaction事务的隔离级别 - ", "url" : "/MyBlog/mysql/2022/03/05/transaction.html" } , { "title" : "timestamp - ", "url" : "/MyBlog/storage/2022/03/05/timestamp.html" } , { "title" : "script - ", "url" : "/MyBlog/elasticsearch/2022/03/05/script.html" } , { "title" : "rpcx - ", "url" : "/MyBlog/golang/2022/03/05/rpcx.html" } , { "title" : "路由器抓包 - ", "url" : "/MyBlog/web/2022/03/05/router.html" } , { "title" : "reindex - ", "url" : "/MyBlog/elasticsearch/2022/03/05/reindex.html" } , { "title" : "rc - ", "url" : "/MyBlog/web/2022/03/05/rc.html" } , { "title" : "prototype - ", "url" : "/MyBlog/node/2022/03/05/prototype.html" } , { "title" : "nginx playground - ", "url" : "/MyBlog/golang/2022/03/05/playground.html" } , { "title" : "Elasticsearch 分页查询 - ", "url" : "/MyBlog/elasticsearch/2022/03/05/page.html" } , { "title" : "oauth2 - ", "url" : "/MyBlog/web/2022/03/05/oauth2.html" } , { "title" : "nf_conntrack - ", "url" : "/MyBlog/linux/2022/03/05/nf_conntrack.html" } , { "title" : "k0s - ", "url" : "/MyBlog/k8s/2022/03/05/k0s.html" } , { "title" : "istio - ", "url" : "/MyBlog/k8s/2022/03/05/istio.html" } , { "title" : "hsts - ", "url" : "/MyBlog/web/2022/03/05/hsts.html" } , { "title" : "gvm - ", "url" : "/MyBlog/golang/2022/03/05/gvm.html" } , { "title" : "gopack - ", "url" : "/MyBlog/golang/2022/03/05/gopack.html" } , { "title" : "go1.18 - ", "url" : "/MyBlog/golang/2022/03/05/go1.18.html" } , { "title" : "go1.17 - ", "url" : "/MyBlog/golang/2022/03/05/go1.17.html" } , { "title" : "go-spew - ", "url" : "/MyBlog/golang/2022/03/05/go-spew.html" } , { "title" : "范型 - ", "url" : "/MyBlog/golang/2022/03/05/generic.html" } , { "title" : "fuzzing - ", "url" : "/MyBlog/golang/2022/03/05/fuzzing.html" } , { "title" : "folium - ", "url" : "/MyBlog/python/2022/03/05/folium.html" } , { "title" : "ent - ", "url" : "/MyBlog/golang/2022/03/05/ent.html" } , { "title" : "es过滤空字符串 - ", "url" : "/MyBlog/elasticsearch/2022/03/05/empty.html" } , { "title" : "dumb-init - ", "url" : "/MyBlog/k8s/2022/03/05/dumb-init.html" } , { "title" : "dockertest - ", "url" : "/MyBlog/k8s/2022/03/05/dockertest.html" } , { "title" : "实现字段之间进行比对 - ", "url" : "/MyBlog/elasticsearch/2022/03/05/compare.html" } , { "title" : "code-server - ", "url" : "/MyBlog/golang/2022/03/05/code-server.html" } , { "title" : "bild - ", "url" : "/MyBlog/golang/2022/03/05/bild.html" } , { "title" : "apollo - ", "url" : "/MyBlog/golang/2022/03/05/apollo.html" } , { "title" : "istio allow_any - ", "url" : "/MyBlog/k8s/2022/03/05/allow_any.html" } , { "title" : "WebTorrent - ", "url" : "/MyBlog/node/2022/03/05/WebTorrent.html" } , { "title" : "WebDAV - ", "url" : "/MyBlog/web/2022/03/05/WebDAV.html" } , { "title" : "Superset - ", "url" : "/MyBlog/storage/2022/03/05/Superset.html" } , { "title" : "OpenIM - ", "url" : "/MyBlog/web/2022/03/05/OpenIM.html" } , { "title" : "KubeSphere - ", "url" : "/MyBlog/k8s/2022/03/05/KubeSphere.html" } , { "title" : "ElasticSearch - ", "url" : "/MyBlog/golang/2022/03/05/ElasticSearch.html" } , { "title" : "Cockpit - ", "url" : "/MyBlog/linux/2022/03/05/Cockpit.html" } , { "title" : "Cloudreve 搭建私人网盘 - ", "url" : "/MyBlog/golang/2022/03/05/Cloudreve.html" } , { "title" : "CPU寄存器 - ", "url" : "/MyBlog/golang/2022/03/05/CPU%E5%AF%84%E5%AD%98%E5%99%A8.html" } , { "title" : "Analyzer - ", "url" : "/MyBlog/elasticsearch/2022/03/05/Analyzer.html" } , { "title" : "404 - ", "url" : "/MyBlog/elasticsearch/2022/03/05/404.html" } , { "title" : "websocket - ", "url" : "/MyBlog/golang/2022/02/27/websocket.html" } , { "title" : "grpc websocket WebRTC - ", "url" : "/MyBlog/golang/2022/02/27/grpc_websocket.html" } , { "title" : "gRPC-Web - ", "url" : "/MyBlog/golang/2022/02/27/gRPC-Web.html" } , { "title" : "Chrome开发者工具调试web socket应用 - ", "url" : "/MyBlog/web/2022/02/26/ws.html" } , { "title" : "webrtc openmeeting2 ion - ", "url" : "/MyBlog/web/2022/02/26/webrtc.html" } , { "title" : "video审核 - ", "url" : "/MyBlog/web/2022/02/26/video.html" } , { "title" : "utf-8 字符拆分 - ", "url" : "/MyBlog/algorithm/2022/02/26/utf-8.html" } , { "title" : "tokenlizer - ", "url" : "/MyBlog/elasticsearch/2022/02/26/tokenlizer.html" } , { "title" : "文本审核 - ", "url" : "/MyBlog/web/2022/02/26/text.html" } , { "title" : "term match - ", "url" : "/MyBlog/elasticsearch/2022/02/26/term.html" } , { "title" : "serverless - ", "url" : "/MyBlog/k8s/2022/02/26/serverless.html" } , { "title" : "图片防盗链原理及实现 - ", "url" : "/MyBlog/web/2022/02/26/referer.html" } , { "title" : "query_string - ", "url" : "/MyBlog/elasticsearch/2022/02/26/query_string.html" } , { "title" : "k8s权限控制 - ", "url" : "/MyBlog/k8s/2022/02/26/permission.html" } , { "title" : "otp - ", "url" : "/MyBlog/golang/2022/02/26/otp.html" } , { "title" : "k8s容器的工作目录 workingDir - ", "url" : "/MyBlog/k8s/2022/02/26/orchome.html" } , { "title" : "opt - ", "url" : "/MyBlog/elasticsearch/2022/02/26/opt.html" } , { "title" : "numeric - ", "url" : "/MyBlog/elasticsearch/2022/02/26/numeric.html" } , { "title" : "n - ", "url" : "/MyBlog/node/2022/02/26/n.html" } , { "title" : "MySQL中的Text类型 - ", "url" : "/MyBlog/mysql/2022/02/26/mysql_text.html" } , { "title" : "mockery testify - ", "url" : "/MyBlog/golang/2022/02/26/mockery.html" } , { "title" : "md5 彩虹表 - ", "url" : "/MyBlog/algorithm/2022/02/26/md5_.html" } , { "title" : "echo 生成 md5多换行符 - ", "url" : "/MyBlog/linux/2022/02/26/md5.html" } , { "title" : "match VS match_phrase - ", "url" : "/MyBlog/elasticsearch/2022/02/26/match.html" } , { "title" : "kmp - ", "url" : "/MyBlog/algorithm/2022/02/26/kmp.html" } , { "title" : "jmeter - ", "url" : "/MyBlog/web/2022/02/26/jmeter.html" } , { "title" : "insert ignore、insert和replace - ", "url" : "/MyBlog/mysql/2022/02/26/insert.html" } , { "title" : "ik - ", "url" : "/MyBlog/elasticsearch/2022/02/26/ik.html" } , { "title" : "http_mock - ", "url" : "/MyBlog/golang/2022/02/26/http_mock.html" } , { "title" : "httpMock - ", "url" : "/MyBlog/golang/2022/02/26/httpMock.html" } , { "title" : "go-json-server - ", "url" : "/MyBlog/golang/2022/02/26/go-json-server.html" } , { "title" : "flutter - ", "url" : "/MyBlog/web/2022/02/26/flutter.html" } , { "title" : "fields - ", "url" : "/MyBlog/elasticsearch/2022/02/26/fields.html" } , { "title" : "electron - ", "url" : "/MyBlog/node/2022/02/26/electron.html" } , { "title" : "electron-android cordova - ", "url" : "/MyBlog/node/2022/02/26/electron-android.html" } , { "title" : "dat - ", "url" : "/MyBlog/algorithm/2022/02/26/dat.html" } , { "title" : "buffer pipe - ", "url" : "/MyBlog/golang/2022/02/26/buffer.html" } , { "title" : "buf - ", "url" : "/MyBlog/golang/2022/02/26/buf.html" } , { "title" : "bash - ", "url" : "/MyBlog/linux/2022/02/26/bash.html" } , { "title" : "apipost - ", "url" : "/MyBlog/web/2022/02/26/apipost.html" } , { "title" : "analyzer - ", "url" : "/MyBlog/elasticsearch/2022/02/26/analyzer.html" } , { "title" : "Volume - ", "url" : "/MyBlog/k8s/2022/02/26/Volume.html" } , { "title" : "QueryEscape - ", "url" : "/MyBlog/golang/2022/02/26/QueryEscape.html" } , { "title" : "Normalization - ", "url" : "/MyBlog/elasticsearch/2022/02/26/Normalization.html" } , { "title" : "HSTS - ", "url" : "/MyBlog/algorithm/2022/02/26/HSTS.html" } , { "title" : "Gendry - ", "url" : "/MyBlog/golang/2022/02/26/Gendry.html" } , { "title" : "Benchmark - ", "url" : "/MyBlog/golang/2022/02/26/Benchmark.html" } , { "title" : "5WHY分析法 - ", "url" : "/MyBlog/web/2022/02/26/5w.html" } , { "title" : "json.Marshal 特殊 html 字符被转义 - ", "url" : "/MyBlog/golang/2022/02/26/0026.html" } , { "title" : "webrtc-解决方案 - ", "url" : "/MyBlog/web/2022/02/20/webrtc-%E8%A7%A3%E5%86%B3%E6%96%B9%E6%A1%88.html" } , { "title" : "coturn - ", "url" : "/MyBlog/web/2022/02/20/coturn.html" } , { "title" : "React useState - ", "url" : "/MyBlog/node/2022/02/19/useState.html" } , { "title" : "typescript可选参数 - ", "url" : "/MyBlog/node/2022/02/19/ts.html" } , { "title" : "第三只眼:网络监控软件技术驱动原理 - ", "url" : "/MyBlog/web/2022/02/19/disanzhiyan.html" } , { "title" : "WebRTC 协议 - ", "url" : "/MyBlog/node/2022/02/19/WebRTC.html" } , { "title" : "sego 分词器 - ", "url" : "/MyBlog/golang/2022/01/08/sego.html" } , { "title" : "kafka offset - ", "url" : "/MyBlog/storage/2022/01/08/offset.html" } , { "title" : "log4j2漏洞 - ", "url" : "/MyBlog/java/2022/01/08/log4j2.html" } , { "title" : "Node.js 的协程coroutine - ", "url" : "/MyBlog/node/2022/01/08/coroutine.html" } , { "title" : "_msearch批量搜索 - ", "url" : "/MyBlog/elasticsearch/2022/01/08/_msearch.html" } , { "title" : "Prometheus - ", "url" : "/MyBlog/k8s/2022/01/08/Prometheus.html" } , { "title" : "DFA 敏感词过滤系统 - ", "url" : "/MyBlog/arch/2022/01/08/DFA.html" } , { "title" : "webpack vue - ", "url" : "/MyBlog/node/2022/01/02/webpack.html" } , { "title" : "reflect 修改map slice struct - ", "url" : "/MyBlog/golang/2022/01/02/reflect.html" } , { "title" : "max_old_space_size - ", "url" : "/MyBlog/node/2022/01/02/max_old_space_size.html" } , { "title" : "max_content_length - ", "url" : "/MyBlog/elasticsearch/2022/01/02/max_content_length.html" } , { "title" : "kind type - ", "url" : "/MyBlog/golang/2022/01/02/kind.html" } , { "title" : "jekyll 升级 - ", "url" : "/MyBlog/web/2022/01/02/jekyll.html" } , { "title" : "jekyll 迁移到 hugo - ", "url" : "/MyBlog/jekyll/2022/01/02/hugo.html" } , { "title" : "grpc 4MB 的限制 - ", "url" : "/MyBlog/golang/2022/01/02/grpc.html" } , { "title" : "explain - ", "url" : "/MyBlog/elasticsearch/2022/01/02/explain.html" } , { "title" : "dumb-init - ", "url" : "/MyBlog/docker/2022/01/02/dumb-init.html" } , { "title" : "一个dockerfile 编译多个镜像 默认镜像 - ", "url" : "/MyBlog/docker/2022/01/02/dockerfile.html" } , { "title" : "deepcopy 反射 实现任意类型属性拷贝 - ", "url" : "/MyBlog/golang/2022/01/02/deepcopy.html" } , { "title" : "channel实现消息的批量处理 - ", "url" : "/MyBlog/golang/2022/01/02/channel.html" } , { "title" : "bundler - ", "url" : "/MyBlog/jekyll/2022/01/02/bundler.html" } , { "title" : "ace 编辑器 - ", "url" : "/MyBlog/node/2022/01/02/ace.html" } , { "title" : "YSLOW - ", "url" : "/MyBlog/node/2022/01/02/YSLOW.html" } , { "title" : "Sort - ", "url" : "/MyBlog/elasticsearch/2022/01/02/Sort.html" } , { "title" : "wails - ", "url" : "/MyBlog/golang/2021/12/25/wails.html" } , { "title" : "outsystems低代码 - ", "url" : "/MyBlog/web/2021/12/25/outsystems.html" } , { "title" : "oliver elasticsearch - ", "url" : "/MyBlog/elasticsearch/2021/12/25/oliver.html" } , { "title" : "lorca electron - ", "url" : "/MyBlog/golang/2021/12/25/lorca.html" } , { "title" : "json 序列化大小写总结 - ", "url" : "/MyBlog/golang/2021/12/25/json.html" } , { "title" : "gin bind自动omitempty问题 - ", "url" : "/MyBlog/golang/2021/12/25/gin_bind.html" } , { "title" : "dnsutils bind-tools - ", "url" : "/MyBlog/linux/2021/12/25/dnsutils.html" } , { "title" : "confluent-kafka-go mac m1 - ", "url" : "/MyBlog/golang/2021/12/25/confluent-kafka-go.html" } , { "title" : "SearchType - ", "url" : "/MyBlog/elasticsearch/2021/12/25/SearchType.html" } , { "title" : "http 302 303 307 - ", "url" : "/MyBlog/web/2021/12/25/307.html" } , { "title" : "sync.Once - ", "url" : "/MyBlog/golang/2021/12/18/sync.Once.html" } , { "title" : "select - ", "url" : "/MyBlog/golang/2021/12/18/select.html" } , { "title" : "kafka - ", "url" : "/MyBlog/storage/2021/12/18/kafka.html" } , { "title" : "elasticsearch - ", "url" : "/MyBlog/elasticsearch/2021/12/18/elasticsearch.html" } , { "title" : "bluebird - ", "url" : "/MyBlog/node/2021/12/18/bluebird.html" } , { "title" : "Promise - ", "url" : "/MyBlog/node/2021/12/18/Promise.html" } , { "title" : "ulimit - ", "url" : "/MyBlog/linux/2021/12/10/ulimit.html" } , { "title" : "sql.DB 和 sql.Tx 提取公共的查询接口 - ", "url" : "/MyBlog/golang/2021/12/10/tx.html" } , { "title" : "prom-client - ", "url" : "/MyBlog/node/2021/12/10/prom-client.html" } , { "title" : "kafka lag的含义为什么lag 为负数 - ", "url" : "/MyBlog/storage/2021/12/10/lag.html" } , { "title" : "k8s保持运行docker容器不关闭 - ", "url" : "/MyBlog/k8s/2021/12/10/docker.html" } , { "title" : "MySQL 线程池总结 - ", "url" : "/MyBlog/mysql/2021/12/05/thread_pool.html" } , { "title" : "nginx惊群问题 - ", "url" : "/MyBlog/linux/2021/12/05/nginx.html" } , { "title" : "mac lsof - ", "url" : "/MyBlog/web/2021/12/05/lsof.html" } , { "title" : "fgprof - ", "url" : "/MyBlog/golang/2021/12/05/fgprof.html" } , { "title" : "Redis-Lua树形结构存储 - ", "url" : "/MyBlog/storage/2021/12/04/tree.html" } , { "title" : "threadpool - ", "url" : "/MyBlog/mysql/2021/12/04/threadpool.html" } , { "title" : "sourcegraph - ", "url" : "/MyBlog/web/2021/12/04/sourcegraph.html" } , { "title" : "profile - ", "url" : "/MyBlog/mysql/2021/12/04/profile.html" } , { "title" : "processlist - ", "url" : "/MyBlog/mysql/2021/12/04/processlist.html" } , { "title" : "lock - ", "url" : "/MyBlog/mysql/2021/12/04/lock.html" } , { "title" : "gui - ", "url" : "/MyBlog/golang/2021/12/04/gui.html" } , { "title" : "nginx grpc - ", "url" : "/MyBlog/golang/2021/12/04/grpc.html" } , { "title" : "文件模型 - ", "url" : "/MyBlog/mysql/2021/12/04/file.html" } , { "title" : "vscode diff - ", "url" : "/MyBlog/golang/2021/12/04/diff.html" } , { "title" : "Region - ", "url" : "/MyBlog/storage/2021/12/04/Region.html" } , { "title" : "Ingest-Attachment 对 word和PDF文档的全文搜索 - ", "url" : "/MyBlog/elasticsearch/2021/12/04/Ingest-Attachment.html" } , { "title" : "EventSource - ", "url" : "/MyBlog/node/2021/12/04/EventSource.html" } , { "title" : "DFS_QUERY_AND_FEATCH - ", "url" : "/MyBlog/elasticsearch/2021/12/04/DFS_QUERY_AND_FEATCH.html" } , { "title" : "五类网线6类网线 - ", "url" : "/MyBlog/web/2021/11/28/line.html" } , { "title" : "grpc lb - ", "url" : "/MyBlog/golang/2021/11/28/lb.html" } , { "title" : "htop - ", "url" : "/MyBlog/linux/2021/11/28/htop.html" } , { "title" : "mysql性能监控 - ", "url" : "/MyBlog/mysql/2021/11/28/Threads_connected.html" } , { "title" : "FlatBuffers - ", "url" : "/MyBlog/golang/2021/11/28/FlatBuffers.html" } , { "title" : "序列化性能比较 - ", "url" : "/MyBlog/golang/2021/11/27/serializers.html" } , { "title" : "nsenter - ", "url" : "/MyBlog/k8s/2021/11/27/nsenter.html" } , { "title" : "grpc metadata Interceptor UnaryClientInterceptor - ", "url" : "/MyBlog/golang/2021/11/27/metadata.html" } , { "title" : "max_connections profiling和explain - ", "url" : "/MyBlog/mysql/2021/11/27/max_connections.html" } , { "title" : "iptables自定义链 - ", "url" : "/MyBlog/linux/2021/11/27/iptables.html" } , { "title" : "Nginx 中配置 gRPC 的代理 - ", "url" : "/MyBlog/golang/2021/11/27/grpc.html" } , { "title" : "go-sql-driver - ", "url" : "/MyBlog/mysql/2021/11/27/go-sql-driver.html" } , { "title" : "go-dns - ", "url" : "/MyBlog/golang/2021/11/27/go-dns.html" } , { "title" : "dns - ", "url" : "/MyBlog/linux/2021/11/27/dns.html" } , { "title" : "vitness - ", "url" : "/MyBlog/mysql/2021/11/20/vitness.html" } , { "title" : "tree store - ", "url" : "/MyBlog/mysql/2021/11/20/tree.html" } , { "title" : "Shell去除空格和空行的方法 - ", "url" : "/MyBlog/linux/2021/11/20/space.html" } , { "title" : "route print netstat nr - ", "url" : "/MyBlog/linux/2021/11/20/route_print.html" } , { "title" : "roaring bitmap - ", "url" : "/MyBlog/elasticsearch/2021/11/20/roaring.html" } , { "title" : "批量 Kill mysql processlist 进程 - ", "url" : "/MyBlog/mysql/2021/11/20/processlist.html" } , { "title" : "next-key lock - ", "url" : "/MyBlog/mysql/2021/11/20/next-key.html" } , { "title" : "netlink - ", "url" : "/MyBlog/docker/2021/11/20/netlink.html" } , { "title" : "long_query_time - ", "url" : "/MyBlog/mysql/2021/11/20/long_query_time.html" } , { "title" : "kubectl logs - ", "url" : "/MyBlog/k8s/2021/11/20/loggs.html" } , { "title" : "kingshard shardingsphere - ", "url" : "/MyBlog/mysql/2021/11/20/kingshard.html" } , { "title" : "dockershim - ", "url" : "/MyBlog/docker/2021/11/20/dockershim.html" } , { "title" : "connections - ", "url" : "/MyBlog/mysql/2021/11/20/connections.html" } , { "title" : "api-resources - ", "url" : "/MyBlog/k8s/2021/11/20/api-resources.html" } , { "title" : "UUID - ", "url" : "/MyBlog/web/2021/11/20/UUID.html" } , { "title" : "NewIncomingContext - ", "url" : "/MyBlog/golang/2021/11/20/NewIncomingContext.html" } , { "title" : "prefix查询 - ", "url" : "/MyBlog/elasticsearch/2021/11/13/prefix.html" } , { "title" : "obj_store - ", "url" : "/MyBlog/storage/2021/11/13/obj_store.html" } , { "title" : "minio - ", "url" : "/MyBlog/storage/2021/11/13/minio.html" } , { "title" : "kubevela - ", "url" : "/MyBlog/k8s/2021/11/13/kubevela.html" } , { "title" : "cpu 单位 - ", "url" : "/MyBlog/k8s/2021/11/13/cpu.html" } , { "title" : "confluent-kafka-go消费多个topic原理 - ", "url" : "/MyBlog/storage/2021/11/13/confluent-kafka-go.html" } , { "title" : "grpc HandleRPC - ", "url" : "/MyBlog/golang/2021/11/13/HandleRPC.html" } , { "title" : "APIExtensionServer - ", "url" : "/MyBlog/k8s/2021/11/13/APIExtensionServer.html" } , { "title" : "writefile - ", "url" : "/MyBlog/golang/2021/11/06/writefile.html" } , { "title" : "文件分段上传 - ", "url" : "/MyBlog/web/2021/11/06/upload.html" } , { "title" : "swag - ", "url" : "/MyBlog/golang/2021/11/06/swag.html" } , { "title" : "submodules - ", "url" : "/MyBlog/web/2021/11/06/submodules.html" } , { "title" : "sls cli sls sdk - ", "url" : "/MyBlog/web/2021/11/06/sls.html" } , { "title" : "docker save load export import区别详解 - ", "url" : "/MyBlog/docker/2021/11/06/save.html" } , { "title" : "pfctl - ", "url" : "/MyBlog/linux/2021/11/06/pfctl.html" } , { "title" : "mysqlslap sysbench - ", "url" : "/MyBlog/mysql/2021/11/06/mysqlslap.html" } , { "title" : "prometheus监控插件mysqld_exporter redis_exporter - ", "url" : "/MyBlog/mysql/2021/11/06/mysqld_exporter.html" } , { "title" : "图片直接展示还是直接被下载 - ", "url" : "/MyBlog/web/2021/11/06/image.html" } , { "title" : "harbor搭建自己的docker registery - ", "url" : "/MyBlog/docker/2021/11/06/harbor.html" } , { "title" : "grpc Context Cancel - ", "url" : "/MyBlog/golang/2021/11/06/grpcContextCancel.html" } , { "title" : "ELF not found - ", "url" : "/MyBlog/docker/2021/11/06/elf.html" } , { "title" : "crd - ", "url" : "/MyBlog/k8s/2021/11/06/crd.html" } , { "title" : "charles 代理的坑 - ", "url" : "/MyBlog/docker/2021/11/06/charles.html" } , { "title" : "chaostoolkit 混沌工程 - ", "url" : "/MyBlog/python/2021/11/06/chaostoolkit.html" } , { "title" : "Signal - ", "url" : "/MyBlog/golang/2021/11/06/Signal.html" } , { "title" : "POLARDB - ", "url" : "/MyBlog/mysql/2021/11/06/POLARDB.html" } , { "title" : "OT算法 - ", "url" : "/MyBlog/algorithm/2021/11/06/OT.html" } , { "title" : "树状数据的存储 - ", "url" : "/MyBlog/mysql/2021/11/06/Closure.html" } , { "title" : "protobuf2json - ", "url" : "/MyBlog/node/2021/10/30/protobuf2json.html" } , { "title" : "kcat - ", "url" : "/MyBlog/storage/2021/10/30/kcat.html" } , { "title" : "ipvlan实现容器和节点间通信 - ", "url" : "/MyBlog/docker/2021/10/30/ipvlan.html" } , { "title" : "console - ", "url" : "/MyBlog/web/2021/10/30/console.html" } , { "title" : "MySQL中各种引号的区别 - ", "url" : "/MyBlog/mysql/2021/10/30/comma.html" } , { "title" : "批量更新 - ", "url" : "/MyBlog/storage/mysql/2021/10/30/case_when.html" } , { "title" : "bhyve - ", "url" : "/MyBlog/docker/k8s/2021/10/30/bhyve.html" } , { "title" : "CustomResourceDefinition - ", "url" : "/MyBlog/k8s/2021/10/30/CustomResourceDefinition.html" } , { "title" : "Cgroup - ", "url" : "/MyBlog/linux/docker/2021/10/30/Cgroup.html" } , { "title" : "time zone Elasticsearch时区问题 - ", "url" : "/MyBlog/elasticsearch/2021/10/23/time_zone.html" } , { "title" : "tf idf - ", "url" : "/MyBlog/elasticsearch/2021/10/23/tf_idf.html" } , { "title" : "Dockerfile RUN CMD ENTRYPOINT命令区别 - ", "url" : "/MyBlog/docker/2021/10/23/run_cmd.html" } , { "title" : "refresh flush - ", "url" : "/MyBlog/elasticsearch/2021/10/23/refresh.html" } , { "title" : "redis 性能指标和监控方法 info monitor - ", "url" : "/MyBlog/storage/2021/10/23/redis.html" } , { "title" : "修改请求参数http网络请求方法 - ", "url" : "/MyBlog/web/2021/10/23/post_put.html" } , { "title" : "nsenter - ", "url" : "/MyBlog/docker/2021/10/23/nsenter.html" } , { "title" : "match_phrase和term区别 - ", "url" : "/MyBlog/elasticsearch/2021/10/23/match_phrase.html" } , { "title" : "局部变量及local命令 - ", "url" : "/MyBlog/linux/2021/10/23/local.html" } , { "title" : "k8s_oauth - ", "url" : "/MyBlog/k8s/2021/10/23/k8s_oauth.html" } , { "title" : "ik分词器安装 - ", "url" : "/MyBlog/elasticsearch/2021/10/23/ik.html" } , { "title" : "golang 规则引擎 - ", "url" : "/MyBlog/golang/2021/10/23/gengine.html" } , { "title" : "高亮使用plian postings fvh差异 - ", "url" : "/MyBlog/elasticsearch/2021/10/23/fvh.html" } , { "title" : "flynn - ", "url" : "/MyBlog/docker/2021/10/23/flynn.html" } , { "title" : "某个字段存在查询或不存在查询 - ", "url" : "/MyBlog/elasticsearch/2021/10/23/exists.html" } , { "title" : "ephemeral-storage - ", "url" : "/MyBlog/k8s/2021/10/23/ephemeral-storage.html" } , { "title" : "ejs - ", "url" : "/MyBlog/node/2021/10/23/ejs.html" } , { "title" : "DSL查询语句对照 - ", "url" : "/MyBlog/elasticsearch/2021/10/23/dsl.html" } , { "title" : "dry-run diff - ", "url" : "/MyBlog/k8s/2021/10/23/dry-run.html" } , { "title" : "docker-registry - ", "url" : "/MyBlog/docker/2021/10/23/docker-registry.html" } , { "title" : "es删除字段 - ", "url" : "/MyBlog/elasticsearch/2021/10/23/delete.html" } , { "title" : "加速 Docker Build 构建过程 - ", "url" : "/MyBlog/docker/2021/10/23/build.html" } , { "title" : "apn - ", "url" : "/MyBlog/web/2021/10/23/apn.html" } , { "title" : "Scroll与Scan - ", "url" : "/MyBlog/elasticsearch/2021/10/23/Scan.html" } , { "title" : "国内公共DNS - ", "url" : "/MyBlog/web/2021/10/23/DNS.html" } , { "title" : "socketio - ", "url" : "/MyBlog/node/2021/09/25/socketio.html" } , { "title" : "redcon miniredis - ", "url" : "/MyBlog/golang/2021/09/25/redcon.html" } , { "title" : "netpoller - ", "url" : "/MyBlog/golang/2021/09/25/netpoller.html" } , { "title" : "ES中的动态映射和动态模板 - ", "url" : "/MyBlog/storage/2021/09/25/mapping.html" } , { "title" : "livego 直播系统 - ", "url" : "/MyBlog/golang/2021/09/25/livego.html" } , { "title" : "joy4 视频服务器 - ", "url" : "/MyBlog/golang/2021/09/25/joy4.html" } , { "title" : "gopherjs - ", "url" : "/MyBlog/golang/2021/09/25/gopherjs.html" } , { "title" : "git clone 提速几十倍的小技巧 - ", "url" : "/MyBlog/web/2021/09/25/git.html" } , { "title" : "浏览器fetch api - ", "url" : "/MyBlog/web/2021/09/25/fetch.html" } , { "title" : "Elasticsearch中数据是如何存储的 - ", "url" : "/MyBlog/storage/2021/09/25/es.html" } , { "title" : "MySQL数据库的死锁日志 - ", "url" : "/MyBlog/storage/2021/09/25/deadlock.html" } , { "title" : "code-server - ", "url" : "/MyBlog/web/2021/09/25/code-server.html" } , { "title" : "Redcon - ", "url" : "/MyBlog/golang/2021/09/21/Redcon.html" } , { "title" : "happens-before - ", "url" : "/MyBlog/golang/2021/09/20/happens-before.html" } , { "title" : "geo s2 geohash - ", "url" : "/MyBlog/golang/2021/09/20/geo.html" } , { "title" : "底纹推荐优化 - ", "url" : "/MyBlog/storage/2021/09/19/%E5%BA%95%E7%BA%B9%E6%8E%A8%E8%8D%90%E4%BC%98%E5%8C%96.html" } , { "title" : "字符串拼接性能 - ", "url" : "/MyBlog/golang/2021/09/19/string.html" } , { "title" : "selector - ", "url" : "/MyBlog/k8s/2021/09/19/selector.html" } , { "title" : "httputil ReverseProxy - ", "url" : "/MyBlog/golang/2021/09/19/proxy.html" } , { "title" : "jwt - ", "url" : "/MyBlog/golang/2021/09/19/jwt.html" } , { "title" : "jaguar walle - ", "url" : "/MyBlog/web/2021/09/19/jaguar.html" } , { "title" : "ip2location-go - ", "url" : "/MyBlog/golang/2021/09/19/ip2location-go.html" } , { "title" : "go-i18n - ", "url" : "/MyBlog/golang/2021/09/19/i18n.html" } , { "title" : "geetest - ", "url" : "/MyBlog/web/2021/09/19/geetest.html" } , { "title" : "es function_score - ", "url" : "/MyBlog/storage/2021/09/19/function_score.html" } , { "title" : "es boost权重提升 - ", "url" : "/MyBlog/storage/2021/09/19/boost.html" } , { "title" : "es bm25 - ", "url" : "/MyBlog/storage/2021/09/19/bm25.html" } , { "title" : "HyperKit、VPNKit和DataKit - ", "url" : "/MyBlog/docker/2021/09/19/VPNKit.html" } , { "title" : "Rancher 菜单 - ", "url" : "/MyBlog/k8s/2021/09/19/Rancher.html" } , { "title" : "Int转string几种方式性能 - ", "url" : "/MyBlog/golang/2021/09/19/FormatInt.html" } , { "title" : "es Explain - ", "url" : "/MyBlog/storage/2021/09/19/Explain.html" } , { "title" : "查看Linux系统架构类型的5条常用命令 - ", "url" : "/MyBlog/linux/2021/09/11/uname.html" } , { "title" : "sarama kafka client - ", "url" : "/MyBlog/golang/2021/09/11/sarama.html" } , { "title" : "ratelimit的实现对比 - ", "url" : "/MyBlog/golang/2021/09/11/ratelimit.html" } , { "title" : "docker pull 指定 os arch - ", "url" : "/MyBlog/docker/2021/09/11/pull.html" } , { "title" : "linuxkit - ", "url" : "/MyBlog/docker/2021/09/11/linuxkit.html" } , { "title" : "http_proxy - ", "url" : "/MyBlog/linux/2021/09/11/http_proxy.html" } , { "title" : "debian - ", "url" : "/MyBlog/docker/2021/09/11/debian.html" } , { "title" : "apline - ", "url" : "/MyBlog/docker/2021/09/11/apline.html" } , { "title" : "Real-Time-Voice-Cloing - ", "url" : "/MyBlog/python/2021/09/11/Real-Time-Voice-Cloing.html" } , { "title" : "go 编程模型 常用结构 - ", "url" : "/MyBlog/golang/2021/09/11/PIPELINE.html" } , { "title" : "proto Oneof - ", "url" : "/MyBlog/golang/2021/09/11/Oneof.html" } , { "title" : "Gitlab - ", "url" : "/MyBlog/web/2021/09/11/Gitlab.html" } , { "title" : "StatefulSet 控制器 - ", "url" : "/MyBlog/k8s/2021/09/05/sts.html" } , { "title" : "存储驱动overlay和overlay2 - ", "url" : "/MyBlog/docker/2021/09/05/overlay.html" } , { "title" : "mysql optimizer trace - ", "url" : "/MyBlog/storage/2021/09/05/optimizer_trace.html" } , { "title" : "app调用浏览器打开网页的方法 - ", "url" : "/MyBlog/web/2021/09/05/openWin.html" } , { "title" : "mysql 学习资料 - ", "url" : "/MyBlog/storage/2021/09/05/mysql.html" } , { "title" : "mockingbird - ", "url" : "/MyBlog/python/2021/09/05/mockingbird.html" } , { "title" : "max_allowed_packet - ", "url" : "/MyBlog/storage/2021/09/05/max_allowed_packet.html" } , { "title" : "k0s - ", "url" : "/MyBlog/k8s/2021/09/05/k0sctl.html" } , { "title" : "kafka 不同topic 相同groupid ,会造成rebalance - ", "url" : "/MyBlog/storage/2021/09/05/groupid.html" } , { "title" : "gitlab-ci 结合k8s - ", "url" : "/MyBlog/k8s/2021/09/05/gitlab-ci.html" } , { "title" : "geoip - ", "url" : "/MyBlog/golang/2021/09/05/geoip.html" } , { "title" : "env 环境变量存哪里 - ", "url" : "/MyBlog/linux/2021/09/05/env.html" } , { "title" : "访问计数系统设计 - ", "url" : "/MyBlog/architect/2021/09/05/count.html" } , { "title" : "confluent kafka - ", "url" : "/MyBlog/storage/2021/09/05/confluent.html" } , { "title" : "mysql buffer pool - ", "url" : "/MyBlog/storage/2021/09/05/bufferpool.html" } , { "title" : "Jumpserver - ", "url" : "/MyBlog/python/2021/09/05/Jumpserver.html" } , { "title" : "minio - ", "url" : "/MyBlog/storage/2021/08/30/minio.html" } , { "title" : "prune - ", "url" : "/MyBlog/docker/2021/08/29/prune.html" } , { "title" : "pipework fopnp - ", "url" : "/MyBlog/docker/2021/08/29/pipework.html" } , { "title" : "mysql parseTime - ", "url" : "/MyBlog/storage/2021/08/29/parseTime.html" } , { "title" : "microk8s - ", "url" : "/MyBlog/k8s/2021/08/29/microk8s.html" } , { "title" : "ingress - ", "url" : "/MyBlog/k8s/2021/08/29/ingress.html" } , { "title" : "ingress-nginx - ", "url" : "/MyBlog/k8s/2021/08/29/ingress-nginx.html" } , { "title" : "docker for mac 升级镜像和容器丢失 - ", "url" : "/MyBlog/docker/2021/08/29/image.html" } , { "title" : "goa - ", "url" : "/MyBlog/golang/2021/08/29/goa.html" } , { "title" : "generic - ", "url" : "/MyBlog/golang/2021/08/29/generic.html" } , { "title" : "Dockerfile CMD 执行多个命令 - ", "url" : "/MyBlog/docker/2021/08/29/cmd.html" } , { "title" : "annotations - ", "url" : "/MyBlog/k8s/2021/08/29/annotations.html" } , { "title" : "Doris - ", "url" : "/MyBlog/storage/2021/08/29/Doris.html" } , { "title" : "gdb - ", "url" : "/MyBlog/golang/2021/08/22/gdb.html" } , { "title" : "pprof diff_base - ", "url" : "/MyBlog/golang/2021/08/21/pprof.html" } , { "title" : "pdf.js - ", "url" : "/MyBlog/node/2021/08/21/pdf.html" } , { "title" : "mysql null - ", "url" : "/MyBlog/storage/2021/08/21/null.html" } , { "title" : "mutex - ", "url" : "/MyBlog/golang/2021/08/21/mutex.html" } , { "title" : "map的实现原理 - ", "url" : "/MyBlog/golang/2021/08/21/map.html" } , { "title" : "ingress HTTP-AUTH - ", "url" : "/MyBlog/k8s/2021/08/21/ingress.html" } , { "title" : "hpa - ", "url" : "/MyBlog/k8s/2021/08/21/hpa.html" } , { "title" : "grpc默认传输文件大小为4*1024*1024 也就是4兆 - ", "url" : "/MyBlog/golang/2021/08/21/grpc.html" } , { "title" : "golang学习书籍归类 - ", "url" : "/MyBlog/golang/2021/08/21/golang.html" } , { "title" : "gdb on mac - ", "url" : "/MyBlog/golang/2021/08/21/gdb.html" } , { "title" : "方法表达式 - ", "url" : "/MyBlog/golang/2021/08/21/func.html" } , { "title" : "chan - ", "url" : "/MyBlog/golang/2021/08/21/chan.html" } , { "title" : "ceph - ", "url" : "/MyBlog/storage/2021/08/21/ceph.html" } , { "title" : "for range 的性能 - ", "url" : "/MyBlog/golang/2021/08/16/range.html" } , { "title" : "map 源码分析 - ", "url" : "/MyBlog/golang/2021/08/16/map.html" } , { "title" : "pprof diff_base - ", "url" : "/MyBlog/golang/2021/08/16/diff_base.html" } , { "title" : "gdb tui - ", "url" : "/MyBlog/golang/2021/08/15/tui.html" } , { "title" : "opentracing - ", "url" : "/MyBlog/golang/2021/08/15/trace.html" } , { "title" : "系统集成商 - ", "url" : "/MyBlog/web/2021/08/15/system.html" } , { "title" : "sync.pool - ", "url" : "/MyBlog/golang/2021/08/15/sync.pool.html" } , { "title" : "singleflight - ", "url" : "/MyBlog/golang/2021/08/15/singleflight.html" } , { "title" : "上下文切换的开销在哪里 - ", "url" : "/MyBlog/golang/2021/08/15/shed.html" } , { "title" : "restfull - ", "url" : "/MyBlog/golang/2021/08/15/restfull.html" } , { "title" : "TP-Link路由器怎么reset - ", "url" : "/MyBlog/web/2021/08/15/reset.html" } , { "title" : "ranking - ", "url" : "/MyBlog/algorithm/2021/08/15/ranking.html" } , { "title" : "quill - ", "url" : "/MyBlog/node/2021/08/15/quill.html" } , { "title" : "pip 使用PyPI国内源 - ", "url" : "/MyBlog/python/2021/08/15/pip.html" } , { "title" : "neo4j 图数据库 - ", "url" : "/MyBlog/storage/2021/08/15/neo4j.html" } , { "title" : "MySQL 之 事务操作 - ", "url" : "/MyBlog/golang/2021/08/15/mysql.html" } , { "title" : "MSE、RMSE、MAE、R-Squared - ", "url" : "/MyBlog/algorithm/2021/08/15/mse.html" } , { "title" : "monorepo - ", "url" : "/MyBlog/web/2021/08/15/monorepo.html" } , { "title" : "k8s loadbalance - ", "url" : "/MyBlog/k8s/2021/08/15/loadbalance.html" } , { "title" : "knative serverless - ", "url" : "/MyBlog/k8s/2021/08/15/knative.html" } , { "title" : "jmeter - ", "url" : "/MyBlog/web/2021/08/15/jemeter.html" } , { "title" : "instrumentedsql - ", "url" : "/MyBlog/golang/2021/08/15/instrumentedsql.html" } , { "title" : "gscan - ", "url" : "/MyBlog/algorithm/2021/08/15/gscan.html" } , { "title" : "groupcache 源码分析 - ", "url" : "/MyBlog/golang/2021/08/15/groupcache.html" } , { "title" : "gorse - ", "url" : "/MyBlog/golang/2021/08/15/gorse.html" } , { "title" : "goim bilibili开源聊天室 - ", "url" : "/MyBlog/golang/2021/08/15/goim.html" } , { "title" : "gocyclo - ", "url" : "/MyBlog/golang/2021/08/15/gocyclo.html" } , { "title" : "gdb in docker - ", "url" : "/MyBlog/docker/2021/08/15/gdb.html" } , { "title" : "flatbuffers - ", "url" : "/MyBlog/storage/2021/08/15/flatbuffers.html" } , { "title" : "excalidraw - ", "url" : "/MyBlog/node/2021/08/15/excalidraw.html" } , { "title" : "Go 1.16 embed - ", "url" : "/MyBlog/golang/2021/08/15/embed.html" } , { "title" : "Docker容器中Mysql数据的导入/导出 - ", "url" : "/MyBlog/docker/2021/08/15/docker_mysql.html" } , { "title" : "node object diff javascript中的require、import和export - ", "url" : "/MyBlog/node/2021/08/15/diff.html" } , { "title" : "github copilot - ", "url" : "/MyBlog/web/2021/08/15/copilot.html" } , { "title" : "compose - ", "url" : "/MyBlog/docker/2021/08/15/commpose.html" } , { "title" : "colly - ", "url" : "/MyBlog/golang/2021/08/15/colly.html" } , { "title" : "codeql - ", "url" : "/MyBlog/web/2021/08/15/codeql.html" } , { "title" : "cadence - ", "url" : "/MyBlog/golang/2021/08/15/cadence.html" } , { "title" : "c10m - ", "url" : "/MyBlog/web/2021/08/15/c10m.html" } , { "title" : "axeslide - ", "url" : "/MyBlog/node/2021/08/15/axeslide.html" } , { "title" : "plan 9 汇编 - ", "url" : "/MyBlog/golang/2021/08/15/assembly.html" } , { "title" : "DDD Repository模式 - ", "url" : "/MyBlog/architect/2021/08/15/Repository.html" } , { "title" : "Luckysheet - ", "url" : "/MyBlog/node/2021/08/15/Luckysheet.html" } , { "title" : "Kompose 将 Docker Compose 文件转换为 Kubernetes 资源 - ", "url" : "/MyBlog/k8s/2021/08/15/Kompose.html" } , { "title" : "防止主键冲突报错-ignore - ", "url" : "/MyBlog/storage/2021/08/15/IGNORE.html" } , { "title" : "Generator - ", "url" : "/MyBlog/node/2021/08/15/Generator.html" } , { "title" : "爬虫html解析 - ", "url" : "/MyBlog/golang/2021/08/15/BeautifulSoup.html" } , { "title" : "Ardb redis geohash - ", "url" : "/MyBlog/storage/2021/08/15/Ardb.html" } , { "title" : "408 - ", "url" : "/MyBlog/web/2021/08/15/408.html" } , { "title" : "vue init webpack project 一直处于...downloading template状态处理 - ", "url" : "/MyBlog/node/2021/08/14/webpack.html" } , { "title" : "vue - ", "url" : "/MyBlog/node/2021/08/14/vue.html" } , { "title" : "服务器端渲染 (SSR) - ", "url" : "/MyBlog/node/2021/08/14/ssr.html" } , { "title" : "quill 文本编辑器 - ", "url" : "/MyBlog/node/2021/08/14/quill.html" } , { "title" : "jekyll - ", "url" : "/MyBlog/web/2021/08/14/jekyll.html" } , { "title" : "github不再支持密码方式登录需要用token - ", "url" : "/MyBlog/web/2021/08/14/github_token.html" } , { "title" : "路由器,集线器,交换机,网桥,光猫 - ", "url" : "/MyBlog/web/2021/07/10/hub.html" } , { "title" : "git 远端意外挂断了 - ", "url" : "/MyBlog/web/2021/07/10/gitbuf.html" } , { "title" : "vie 架构 - ", "url" : "/MyBlog/web/2021/07/07/vie.html" } , { "title" : "trace pprof Profiler labels - ", "url" : "/MyBlog/golang/2021/07/07/trace.html" } , { "title" : "kubectrl port-forward超时 - ", "url" : "/MyBlog/k8s/2021/07/07/prot-forward.html" } , { "title" : "kafka - ", "url" : "/MyBlog/golang/2021/07/07/kafka.html" } , { "title" : "debug - ", "url" : "/MyBlog/golang/2021/07/07/debug.html" } , { "title" : "yaml 的坑 - ", "url" : "/MyBlog/docker/2021/07/02/yaml.html" } , { "title" : "web框架 - ", "url" : "/MyBlog/rust/2021/07/02/web.html" } , { "title" : "The Linux Programming Interface - ", "url" : "/MyBlog/linux/2021/07/02/tlpi.html" } , { "title" : "freecache 无gc的go cache - ", "url" : "/MyBlog/golang/2021/07/02/freecache.html" } , { "title" : "echo 解析客户端IP的坑clientIp - ", "url" : "/MyBlog/golang/2021/07/02/clientIp.html" } , { "title" : "bfe - ", "url" : "/MyBlog/golang/2021/07/02/bfe.html" } , { "title" : "benchmark - ", "url" : "/MyBlog/golang/2021/07/01/benchmark.html" } , { "title" : "str - ", "url" : "/MyBlog/rust/2021/06/29/str.html" } , { "title" : "rust 介绍 - ", "url" : "/MyBlog/rust/2021/06/29/rust.html" } , { "title" : "所有权 - ", "url" : "/MyBlog/rust/2021/06/29/own.html" } , { "title" : "向量化执行引擎 - ", "url" : "/MyBlog/storage/2021/06/21/vector.html" } , { "title" : "sqlvm - ", "url" : "/MyBlog/storage/2021/06/21/sqlvm.html" } , { "title" : "如何在分布式架构下完美实现“全局数据一致性 - ", "url" : "/MyBlog/storage/2021/06/21/scn.html" } , { "title" : "存储计算分离 - ", "url" : "/MyBlog/storage/2021/06/21/sc.html" } , { "title" : "poc 测试 - ", "url" : "/MyBlog/web/2021/06/21/poc.html" } , { "title" : "opentsdb协议 - ", "url" : "/MyBlog/storage/2021/06/21/opentsdb%E5%8D%8F%E8%AE%AE.html" } , { "title" : "木兰社区 - ", "url" : "/MyBlog/web/2021/06/21/ml.html" } , { "title" : "cgroup 多租户 - ", "url" : "/MyBlog/storage/2021/06/21/cgroup.html" } , { "title" : "国密SM1 SM2 SM3 SM4 - ", "url" : "/MyBlog/web/2021/06/20/%E5%9B%BD%E5%AF%86.html" } , { "title" : "vitess - ", "url" : "/MyBlog/storage/2021/06/20/vitess.html" } , { "title" : "sqlmock - ", "url" : "/MyBlog/golang/2021/06/20/sqlmock.html" } , { "title" : "Multi Runtime Microservices Architecture - ", "url" : "/MyBlog/golang/2021/06/20/multiruntime.html" } , { "title" : "map swagger - ", "url" : "/MyBlog/web/2021/06/20/map.html" } , { "title" : "len函数 - ", "url" : "/MyBlog/golang/2021/06/20/len.html" } , { "title" : "mysql enum 字段 - ", "url" : "/MyBlog/storage/2021/06/20/enum.html" } , { "title" : "WebAssembly运行时 - ", "url" : "/MyBlog/golang/2021/06/20/Wasmtime.html" } , { "title" : "Pipeline - ", "url" : "/MyBlog/golang/2021/06/20/Pipeline.html" } , { "title" : "HttpOnly - ", "url" : "/MyBlog/web/2021/06/20/HttpOnly.html" } , { "title" : "mysql timestamp 2038 - ", "url" : "/MyBlog/storage/2021/06/20/2038.html" } , { "title" : "POST PUT PATCH的区别 - ", "url" : "/MyBlog/web/2021/06/20/.html" } , { "title" : "vscode 批量合并请求 - ", "url" : "/MyBlog/web/2021/06/12/vscode.html" } , { "title" : "UI自动化测试 - ", "url" : "/MyBlog/golang/2021/06/12/ui_auto_test.html" } , { "title" : "uIrecorder - ", "url" : "/MyBlog/web/2021/06/12/uIrecorder.html" } , { "title" : "selenium - ", "url" : "/MyBlog/web/2021/06/12/selenium.html" } , { "title" : "内存预分配与race limit on 8128 - ", "url" : "/MyBlog/golang/2021/06/12/race_limit.html" } , { "title" : "go mysql row 被scan 到 interface应该如何解析 - ", "url" : "/MyBlog/storage/2021/06/12/interface.html" } , { "title" : "go test 禁用缓存 - ", "url" : "/MyBlog/golang/2021/06/12/gotest.html" } , { "title" : "SQL之and or优先级 - ", "url" : "/MyBlog/storage/2021/06/12/and_or.html" } , { "title" : "UiAutomator - ", "url" : "/MyBlog/web/2021/06/12/UiAutomator.html" } , { "title" : "多浏览器兼容测试平台F2etest - ", "url" : "/MyBlog/web/2021/06/12/F2etest.html" } , { "title" : "websocket 抓包 - ", "url" : "/MyBlog/web/2021/06/06/websocket.html" } , { "title" : "sqlint Yearning MYSQL - ", "url" : "/MyBlog/storage/2021/06/06/sqlint.html" } , { "title" : "SQL条件!=null查不出数据 - ", "url" : "/MyBlog/storage/2021/06/06/sql_null.html" } , { "title" : "MySQL 字段类型占用空间 - ", "url" : "/MyBlog/storage/2021/06/06/space.html" } , { "title" : "mysql获取表结构 - ", "url" : "/MyBlog/storage/2021/06/06/show_columns.html" } , { "title" : "redismock - ", "url" : "/MyBlog/golang/2021/06/06/redismock.html" } , { "title" : "redis Nil - ", "url" : "/MyBlog/golang/2021/06/06/redis_nil.html" } , { "title" : "prepare sql 预编译 防止 SQL注入 - ", "url" : "/MyBlog/storage/2021/06/06/prepare.html" } , { "title" : "redis pipeline - ", "url" : "/MyBlog/storage/2021/06/06/pipeline.html" } , { "title" : "kafka 指定 partition - ", "url" : "/MyBlog/golang/2021/06/06/partition.html" } , { "title" : "overlay overlay2 - ", "url" : "/MyBlog/docker/2021/06/06/overlay.html" } , { "title" : "octotree - ", "url" : "/MyBlog/web/2021/06/06/octotree.html" } , { "title" : "Select tables optimized away - ", "url" : "/MyBlog/storage/2021/06/06/mysql_optimized.html" } , { "title" : "grpc metadata - ", "url" : "/MyBlog/golang/2021/06/06/metadata.html" } , { "title" : "硬链接软连接 - ", "url" : "/MyBlog/linux/2021/06/06/link.html" } , { "title" : "k8s rbac - ", "url" : "/MyBlog/k8s/2021/06/06/k8s_rbac.html" } , { "title" : "k8s limits 资源限制 - ", "url" : "/MyBlog/k8s/2021/06/06/k8s_limits.html" } , { "title" : "jwt-go - ", "url" : "/MyBlog/golang/2021/06/06/jwt_go.html" } , { "title" : "ip 伪造 - ", "url" : "/MyBlog/linux/2021/06/06/ip.html" } , { "title" : "k8s health check - ", "url" : "/MyBlog/k8s/2021/06/06/health.html" } , { "title" : "h2c h2 HTTP/2 的协议协商机制 - ", "url" : "/MyBlog/golang/2021/06/06/h2c.html" } , { "title" : "grpc error - ", "url" : "/MyBlog/golang/2021/06/06/grpc_error.html" } , { "title" : "goimports 分组导入 - ", "url" : "/MyBlog/golang/2021/06/06/goimports.html" } , { "title" : "go-sql-driver 源码分析 - ", "url" : "/MyBlog/golang/2021/06/06/go-sql-driver.html" } , { "title" : "go-redis - ", "url" : "/MyBlog/storage/2021/06/06/go-redis.html" } , { "title" : "es 预加载fielddata - ", "url" : "/MyBlog/storage/2021/06/06/fielddata.html" } , { "title" : "docker常见问题 - ", "url" : "/MyBlog/docker/2021/06/06/dockerd.html" } , { "title" : "ddd 四色模型 - ", "url" : "/MyBlog/architect/2021/06/06/ddd_color.html" } , { "title" : "防止暴力破解 - ", "url" : "/MyBlog/web/2021/06/06/attack.html" } , { "title" : "show table STATUS数据不准确 - ", "url" : "/MyBlog/mysql/2021/06/06/STATUS.html" } , { "title" : "Redlock - ", "url" : "/MyBlog/storage/2021/06/06/Redlock.html" } , { "title" : "mysql show PROCESSLIST - ", "url" : "/MyBlog/storage/2021/06/06/PROCESSLIST.html" } , { "title" : "OpenTelemetry - ", "url" : "/MyBlog/algorithm/2021/06/06/OpenTelemetry.html" } , { "title" : "mysql ALGORITHM INPLACE in-place 修改字段的大小 - ", "url" : "/MyBlog/storage/2021/06/06/INPLACE.html" } , { "title" : "Rancher INGRESS - ", "url" : "/MyBlog/k8s/2021/06/06/INGRESS.html" } , { "title" : "mysql no rows in result set - ", "url" : "/MyBlog/storage/2021/06/06/ErrNoRows.html" } , { "title" : "CoreDNS - ", "url" : "/MyBlog/k8s/2021/06/06/CoreDNS.html" } , { "title" : "ConfigMap - ", "url" : "/MyBlog/k8s/2021/06/06/ConfigMap.html" } , { "title" : "Chrome - ", "url" : "/MyBlog/web/2021/06/06/Chrome.html" } , { "title" : "mysql Cancellations - ", "url" : "/MyBlog/storage/2021/06/06/Cancellations.html" } , { "title" : "wget apt-get yum rpm 区别 - ", "url" : "/MyBlog/linux/2021/05/16/wget.html" } , { "title" : "iTerm2保持ssh连接不断开 - ", "url" : "/MyBlog/linux/2021/05/16/ssh.html" } , { "title" : "rancher pod 上搭建压测环境 - ", "url" : "/MyBlog/k8s/2021/05/16/rancher.html" } , { "title" : "mysql - ", "url" : "/MyBlog/golang/2021/05/16/mysql.html" } , { "title" : "mysql ifnull 插入多条语句 - ", "url" : "/MyBlog/storage/2021/05/16/ifnull.html" } , { "title" : "mysql cursor游标 - ", "url" : "/MyBlog/storage/2021/05/16/cursor.html" } , { "title" : "buildx - ", "url" : "/MyBlog/docker/2021/05/16/buildx.html" } , { "title" : "bitcoin - ", "url" : "/MyBlog/storage/2021/05/16/bitcoin.html" } , { "title" : "mysql bigint - ", "url" : "/MyBlog/storage/2021/05/16/bigint.html" } , { "title" : "apk - ", "url" : "/MyBlog/docker/2021/05/16/apk.html" } , { "title" : "Spectacle swagger gitlab - ", "url" : "/MyBlog/web/2021/05/16/Spectacle.html" } , { "title" : "获取mysql COLUMNS信息 - ", "url" : "/MyBlog/storage/2021/05/16/COLUMNS.html" } , { "title" : "mysql AUTO_INCREMENT - ", "url" : "/MyBlog/storage/2021/05/16/AUTO_INCREMENT.html" } , { "title" : "wss RSS/VSS/USS/PSS - ", "url" : "/MyBlog/linux/2021/05/10/wss.html" } , { "title" : "mysql实现upsert - ", "url" : "/MyBlog/storage/2021/05/10/upsert.html" } , { "title" : "redis的部署模式 - ", "url" : "/MyBlog/storage/2021/05/10/redis.html" } , { "title" : "range Variable - ", "url" : "/MyBlog/golang/2021/05/10/range.html" } , { "title" : "icp 索引条件下推Index Condition Pushdown - ", "url" : "/MyBlog/storage/2021/05/10/icp.html" } , { "title" : "goland 配置外部工具 - ", "url" : "/MyBlog/golang/2021/05/10/goland.html" } , { "title" : "git fast-forward - ", "url" : "/MyBlog/web/2021/05/10/fast-forward.html" } , { "title" : "mappings之dynamic的三种状态 - ", "url" : "/MyBlog/storage/2021/05/10/dynamic.html" } , { "title" : "grpc code - ", "url" : "/MyBlog/golang/2021/05/10/code.html" } , { "title" : "cdn - ", "url" : "/MyBlog/storage/2021/05/10/cdn.html" } , { "title" : "golang cache - ", "url" : "/MyBlog/golang/2021/05/10/cache.html" } , { "title" : "shell 生成 UUID - ", "url" : "/MyBlog/linux/2021/05/10/UUID.html" } , { "title" : "Protobuf3 Oneof - ", "url" : "/MyBlog/golang/2021/05/10/Oneof.html" } , { "title" : "es Bulk - ", "url" : "/MyBlog/storage/2021/05/10/Bulk.html" } , { "title" : "supervisord - ", "url" : "/MyBlog/golang/2021/04/24/supervisord.html" } , { "title" : "ishell - ", "url" : "/MyBlog/golang/2021/04/24/ishell.html" } , { "title" : "iptables 实现负载均衡 - ", "url" : "/MyBlog/linux/2021/04/24/iptables.html" } , { "title" : "hue - ", "url" : "/MyBlog/storage/2021/04/24/hue.html" } , { "title" : "Rainbond - ", "url" : "/MyBlog/golang/2021/04/24/Rainbond.html" } , { "title" : "Kafka - ", "url" : "/MyBlog/storage/2021/04/24/Kafka.html" } , { "title" : "k8s-client实现kubectl - ", "url" : "/MyBlog/k8s/2021/04/20/k8s-client.html" } , { "title" : "K8S grpc resolver - ", "url" : "/MyBlog/k8s/2021/04/18/resolver.html" } , { "title" : "headless - ", "url" : "/MyBlog/k8s/2021/04/18/headless.html" } , { "title" : "grafana - ", "url" : "/MyBlog/golang/2021/04/18/grafana.html" } , { "title" : "cmak kafka客户端 - ", "url" : "/MyBlog/storage/2021/04/18/cmak.html" } , { "title" : "golang cilint - ", "url" : "/MyBlog/golang/2021/04/18/cilint.html" } , { "title" : "gitlab 加入测试报告及覆盖率 - ", "url" : "/MyBlog/web/2021/04/18/ci.html" } , { "title" : "cherry pick - ", "url" : "/MyBlog/web/2021/04/18/cherry_pick.html" } , { "title" : "k8s api - ", "url" : "/MyBlog/k8s/2021/04/18/api.html" } , { "title" : "Parallels - ", "url" : "/MyBlog/web/2021/04/17/Parallels.html" } , { "title" : "template 源码分析 - ", "url" : "/MyBlog/golang/2021/04/10/template.html" } , { "title" : "reflect 反射访问修改结构体的非导出字段 - ", "url" : "/MyBlog/golang/2021/04/10/reflect.html" } , { "title" : "funcMap 模板调用函数 - ", "url" : "/MyBlog/golang/2021/04/10/funcMap.html" } , { "title" : "casbin 权限管理系统 - ", "url" : "/MyBlog/golang/2021/04/10/casbin.html" } , { "title" : "驼峰翻译助手 - ", "url" : "/MyBlog/web/2021/04/10/camelCase.html" } , { "title" : "权限系统的设计模式 ACL RBAC ABAC - ", "url" : "/MyBlog/golang/2021/04/10/acl.html" } , { "title" : "CORS 简单请求 - ", "url" : "/MyBlog/web/2021/04/10/CORS.html" } , { "title" : "goproxy - ", "url" : "/MyBlog/golang/2021/04/06/goproxy.html" } , { "title" : "regexp - ", "url" : "/MyBlog/golang/2021/04/04/regexp.html" } , { "title" : "Dockerhub+Github构建kubernetes私有镜像仓库 - ", "url" : "/MyBlog/k8s/2021/04/04/mirror.html" } , { "title" : "librdkafka mac m1 安装 - ", "url" : "/MyBlog/golang/2021/04/04/librdkafka.html" } , { "title" : "lens - ", "url" : "/MyBlog/k8s/2021/04/04/lens.html" } , { "title" : "helm chart - ", "url" : "/MyBlog/k8s/2021/04/04/helm.html" } , { "title" : "gitee GitHub Actions - ", "url" : "/MyBlog/web/2021/04/04/gitee.html" } , { "title" : "gcr国内镜像同步 - ", "url" : "/MyBlog/k8s/2021/04/04/gcr.html" } , { "title" : "eslint - ", "url" : "/MyBlog/node/2021/04/04/eslint.html" } , { "title" : "mac m1 安装delve - ", "url" : "/MyBlog/golang/2021/04/04/delve.html" } , { "title" : "buildx 跨平台镜像编译 - ", "url" : "/MyBlog/docker/2021/04/04/buildx.html" } , { "title" : "bind echo 数据绑定 - ", "url" : "/MyBlog/golang/2021/04/04/bind.html" } , { "title" : "NetworkPolicy升级 - ", "url" : "/MyBlog/k8s/2021/04/04/NetworkPolicy.html" } , { "title" : "Github Actions 在 K3S 中运行 CI 测试 - ", "url" : "/MyBlog/k8s/2021/04/04/K8S.html" } , { "title" : "Generator yield - ", "url" : "/MyBlog/node/2021/04/04/Generator.html" } , { "title" : "ingress nginx - ", "url" : "/MyBlog/k8s/2021/03/25/ingress.html" } , { "title" : "github antion 同步代码到gitee - ", "url" : "/MyBlog/web/2021/03/25/githubgitee.html" } , { "title" : "kubectl 使用根据不同context连接不同服务 - ", "url" : "/MyBlog/k8s/2021/03/22/kubectl.html" } , { "title" : "kubeadm - ", "url" : "/MyBlog/k8s/2021/03/22/kubeadm.html" } , { "title" : "ingress - ", "url" : "/MyBlog/k8s/2021/03/22/ingress.html" } , { "title" : "nat64_v4_requires_synthesis docker for mac k8s 无法使用 - ", "url" : "/MyBlog/k8s/2021/03/21/nat64_v4_requires_synthesis.html" } , { "title" : "golang一个文件里定义多个模板 - ", "url" : "/MyBlog/golang/2021/03/21/ParseFiles.html" } , { "title" : "k8s 网络连接 3 种工具 - ", "url" : "/MyBlog/k8s/2021/03/19/k8s.html" } , { "title" : "proto marshal to json enumber as string - ", "url" : "/MyBlog/golang/2021/03/19/json.html" } , { "title" : "innblock 查看mysql的行记录 - ", "url" : "/MyBlog/storage/2021/03/19/innblock.html" } , { "title" : "gomock - ", "url" : "/MyBlog/golang/2021/03/19/gomock.html" } , { "title" : "data length mysql - ", "url" : "/MyBlog/storage/2021/03/19/data_length.html" } , { "title" : "查看innodb 某一行的记录 - ", "url" : "/MyBlog/storage/2021/03/15/innodb.html" } , { "title" : "mysql - ", "url" : "/MyBlog/storage/2021/03/14/mysql.html" } , { "title" : "mysql中整数类型后面的数字含义 - ", "url" : "/MyBlog/storage/2021/03/14/int11.html" } , { "title" : "innodb_ruby - ", "url" : "/MyBlog/storage/2021/03/14/innodb_ruby.html" } , { "title" : "innodb-online-ddl - ", "url" : "/MyBlog/storage/2021/03/14/innodb-online-ddl.html" } , { "title" : "OPTIMIZE - ", "url" : "/MyBlog/storage/2021/03/14/OPTIMIZE.html" } , { "title" : "HSP_HDR IBUF_BITMAP、INODE、XDES - ", "url" : "/MyBlog/storage/2021/03/14/HSP_HDR.html" } , { "title" : "mysql ALGORITHM - ", "url" : "/MyBlog/storage/2021/03/14/ALGORITHM.html" } , { "title" : "mysql 行的存储格式 - ", "url" : "/MyBlog/storage/2021/03/13/mysql.html" } , { "title" : "mysql update - ", "url" : "/MyBlog/storage/2021/03/11/update.html" } , { "title" : "go test coverage - ", "url" : "/MyBlog/golang/2021/03/11/test.html" } , { "title" : "protobuf 自定义选项生成自定义代码 - ", "url" : "/MyBlog/golang/2021/03/11/protoc.html" } , { "title" : "proto - ", "url" : "/MyBlog/golang/2021/03/11/proto.html" } , { "title" : "proto 生成 graphql - ", "url" : "/MyBlog/golang/2021/03/11/graphql.html" } , { "title" : "gomock - ", "url" : "/MyBlog/golang/2021/03/11/gomock.html" } , { "title" : "go-cache - ", "url" : "/MyBlog/golang/2021/03/11/cache.html" } , { "title" : "proto 生成http grpc swagger - ", "url" : "/MyBlog/golang/2021/03/07/proto.html" } , { "title" : "wrk 配lua脚本 ghz - ", "url" : "/MyBlog/golang/2021/02/28/wrk.html" } , { "title" : "treafix - ", "url" : "/MyBlog/golang/2021/02/28/treafix.html" } , { "title" : "telepresence 本地调试 - ", "url" : "/MyBlog/k8s/2021/02/28/telepresence.html" } , { "title" : "sqlingo - ", "url" : "/MyBlog/golang/2021/02/28/sqlingo.html" } , { "title" : "sqlc支持mysql in 语法 - ", "url" : "/MyBlog/golang/2021/02/28/sqlc.html" } , { "title" : "kubectl port-forward - ", "url" : "/MyBlog/k8s/2021/02/28/port.html" } , { "title" : "go mod GOPRIVATE - ", "url" : "/MyBlog/golang/2021/02/28/mod.html" } , { "title" : "mock - ", "url" : "/MyBlog/golang/2021/02/28/mock.html" } , { "title" : "minio 对象存储 - ", "url" : "/MyBlog/storage/2021/02/28/minio.html" } , { "title" : "golangci-lint linters - ", "url" : "/MyBlog/golang/2021/02/28/lint.html" } , { "title" : "kind - ", "url" : "/MyBlog/k8s/2021/02/28/kind.html" } , { "title" : "gops - ", "url" : "/MyBlog/golang/2021/02/28/gops.html" } , { "title" : "grpc gateway - ", "url" : "/MyBlog/golang/2021/02/28/gateway.html" } , { "title" : "mysql enum - ", "url" : "/MyBlog/storage/2021/02/28/enum.html" } , { "title" : "ddd - ", "url" : "/MyBlog/architect/2021/02/28/ddd.html" } , { "title" : "cobertura gover 测试覆盖率 - ", "url" : "/MyBlog/golang/2021/02/28/cobertura.html" } , { "title" : "gorm Preloading - ", "url" : "/MyBlog/golang/2021/02/28/Preloading.html" } , { "title" : "grpc gateway - ", "url" : "/MyBlog/golang/2021/02/25/grpcgateway.html" } , { "title" : "grpc 连接池 - ", "url" : "/MyBlog/golang/2021/02/25/grpc.html" } , { "title" : "protoc - ", "url" : "/MyBlog/golang/2021/02/24/protoc.html" } , { "title" : "mysql_mode - ", "url" : "/MyBlog/storage/2021/02/24/mysql_mode.html" } , { "title" : "grpcurl - ", "url" : "/MyBlog/golang/2021/02/24/grpcurl.html" } , { "title" : "etcd 实现服务注册和发现 - ", "url" : "/MyBlog/golang/2021/02/24/etcd.html" } , { "title" : "xDS REST and gRPC protocol - ", "url" : "/MyBlog/golang/2021/02/21/xDS.html" } , { "title" : "tso - ", "url" : "/MyBlog/linux/2021/02/21/tso.html" } , { "title" : "timeout - ", "url" : "/MyBlog/golang/2021/02/21/timeout.html" } , { "title" : "tgw LVS - ", "url" : "/MyBlog/linux/2021/02/21/tgw.html" } , { "title" : "sqlingo - ", "url" : "/MyBlog/golang/2021/02/21/sqlingo.html" } , { "title" : "roam edit roam redearch - ", "url" : "/MyBlog/web/2021/02/21/roam.html" } , { "title" : "reflex 实现go 热编译 - ", "url" : "/MyBlog/golang/2021/02/21/reflex.html" } , { "title" : "go-redis redigo - ", "url" : "/MyBlog/storage/2021/02/21/redis.html" } , { "title" : "protobuf gogoprotobuf - ", "url" : "/MyBlog/golang/2021/02/21/protobuf.html" } , { "title" : "goprivate-environment-variable - ", "url" : "/MyBlog/golang/2021/02/21/private.html" } , { "title" : "调试 Docker 容器内部进程 - ", "url" : "/MyBlog/docker/2021/02/21/nebula.html" } , { "title" : "monkeypatching - ", "url" : "/MyBlog/golang/2021/02/21/monkeypatching.html" } , { "title" : "mock - ", "url" : "/MyBlog/golang/2021/02/21/mock.html" } , { "title" : "minio - ", "url" : "/MyBlog/storage/2021/02/21/minio.html" } , { "title" : "migrate - ", "url" : "/MyBlog/golang/2021/02/21/migrate.html" } , { "title" : "微服务设计模式 - ", "url" : "/MyBlog/architect/2021/02/21/micro.html" } , { "title" : "kruise - ", "url" : "/MyBlog/golang/2021/02/21/kruise.html" } , { "title" : "kcp - ", "url" : "/MyBlog/golang/2021/02/21/kcp.html" } , { "title" : "kafka 延迟队列、重试队列、死信队列 - ", "url" : "/MyBlog/storage/2021/02/21/kafka.html" } , { "title" : "kaf - ", "url" : "/MyBlog/storage/2021/02/21/kaf.html" } , { "title" : "io_uring - ", "url" : "/MyBlog/golang/2021/02/21/io_uring.html" } , { "title" : "hunspell - ", "url" : "/MyBlog/algorithm/2021/02/21/hunspell.html" } , { "title" : "grpc服务健康检查最佳实践 - ", "url" : "/MyBlog/golang/2021/02/21/helthy.html" } , { "title" : "gvm - ", "url" : "/MyBlog/golang/2021/02/21/gvm.html" } , { "title" : "grpc-gateway - ", "url" : "/MyBlog/golang/2021/02/21/grpcgateway.html" } , { "title" : "gover - ", "url" : "/MyBlog/golang/2021/02/21/gover.html" } , { "title" : "gops - ", "url" : "/MyBlog/golang/2021/02/21/gops.html" } , { "title" : "ghz - ", "url" : "/MyBlog/golang/2021/02/21/ghz.html" } , { "title" : "文本相似度匹配算法 - ", "url" : "/MyBlog/web/2021/02/21/cos.html" } , { "title" : "collection - ", "url" : "/MyBlog/golang/2021/02/21/collection.html" } , { "title" : "gitlab ci - ", "url" : "/MyBlog/web/2021/02/21/cli.html" } , { "title" : "bigwatermelon 合成大西瓜 合成华中大 - ", "url" : "/MyBlog/web/2021/02/21/bigwatermelon.html" } , { "title" : "Validator - ", "url" : "/MyBlog/golang/2021/02/21/Validator.html" } , { "title" : "Tempo - ", "url" : "/MyBlog/golang/2021/02/21/Tempo.html" } , { "title" : "Serverless 技术降低微服务应用资源成本 - ", "url" : "/MyBlog/architect/2021/02/21/Serverless.html" } , { "title" : "Prometheus grafana - ", "url" : "/MyBlog/golang/2021/02/21/Prometheus.html" } , { "title" : "MFA Multi-Factor Authentication - ", "url" : "/MyBlog/architect/2021/02/21/MFA.html" } , { "title" : "Kubectl Flame - ", "url" : "/MyBlog/k8s/2021/02/21/Flame.html" } , { "title" : "Channelz - ", "url" : "/MyBlog/algorithm/2021/02/21/Channelz.html" } , { "title" : "CMAK Kafka可视化Web界面管理工具 - ", "url" : "/MyBlog/golang/2021/02/21/CMAK.html" } , { "title" : "Archery SQL审核查询平台 - ", "url" : "/MyBlog/golang/2021/02/21/Archery.html" } , { "title" : "k9s - ", "url" : "/MyBlog/k8s/2021/02/20/k9s.html" } , { "title" : "k0s - ", "url" : "/MyBlog/k8s/2021/02/20/k0s.html" } , { "title" : "jp2a Textaizer 用ASCII字符拼成图案 - ", "url" : "/MyBlog/linux/2021/02/20/jp2a.html" } , { "title" : "wire - ", "url" : "/MyBlog/golang/2021/02/19/wire.html" } , { "title" : "go build tag - ", "url" : "/MyBlog/golang/2021/02/19/build.html" } , { "title" : "sso - ", "url" : "/MyBlog/golang/2021/01/31/sso.html" } , { "title" : "sqlc - ", "url" : "/MyBlog/golang/2021/01/31/sqlc.html" } , { "title" : "openldap - ", "url" : "/MyBlog/golang/2021/01/31/openldap.html" } , { "title" : "ldap - ", "url" : "/MyBlog/golang/2021/01/31/ldap.html" } , { "title" : "grpcurl grpcui - ", "url" : "/MyBlog/golang/2021/01/31/grpcurl.html" } , { "title" : "gometalinter - ", "url" : "/MyBlog/golang/2021/01/31/gometalinter.html" } , { "title" : "volume from - ", "url" : "/MyBlog/docker/2021/01/24/volume.html" } , { "title" : "kubeadm - ", "url" : "/MyBlog/k8s/2021/01/24/kubeadm.html" } , { "title" : "k8s-for-mac 无法启动问题 - ", "url" : "/MyBlog/k8s/2021/01/24/k8s-for-mac.html" } , { "title" : "grpc http2 context cancel - ", "url" : "/MyBlog/golang/2021/01/24/grpc.html" } , { "title" : "gosec - ", "url" : "/MyBlog/golang/2021/01/24/gosec.html" } , { "title" : "docker 的原始镜像是怎么做的 - ", "url" : "/MyBlog/docker/2021/01/20/image.html" } , { "title" : "http proxy charles 抓包 - ", "url" : "/MyBlog/golang/2021/01/18/proxy.html" } , { "title" : "protoc-gen-validate - ", "url" : "/MyBlog/algorithm/2021/01/18/protoc-gen-validate.html" } , { "title" : "xorm - ", "url" : "/MyBlog/golang/2021/01/17/xorm.html" } , { "title" : "validator - ", "url" : "/MyBlog/golang/2021/01/17/validator.html" } , { "title" : "koa 中间件 - ", "url" : "/MyBlog/node/2021/01/17/koa.html" } , { "title" : "grpc middleware go-proto-validators - ", "url" : "/MyBlog/golang/2021/01/17/hgrpcmiddleware.html" } , { "title" : "Middleware - ", "url" : "/MyBlog/golang/2021/01/17/Middleware.html" } , { "title" : "vue - ", "url" : "/MyBlog/node/2021/01/16/vue.html" } , { "title" : "Surge for Mac+Charles同时分析网络请求 - ", "url" : "/MyBlog/web/2021/01/16/surge.html" } , { "title" : "sso - ", "url" : "/MyBlog/node/2021/01/16/sso.html" } , { "title" : "sequelize - ", "url" : "/MyBlog/node/2021/01/16/sequelize.html" } , { "title" : "proxy - ", "url" : "/MyBlog/web/2021/01/16/proxy.html" } , { "title" : "require 文件夹 - ", "url" : "/MyBlog/node/2021/01/16/node.html" } , { "title" : "jwt json web token - ", "url" : "/MyBlog/node/2021/01/16/jwt.html" } , { "title" : "dd - ", "url" : "/MyBlog/linux/2021/01/16/dd.html" } , { "title" : "charles surge共存方法 - ", "url" : "/MyBlog/algorithm/2021/01/16/charles.html" } , { "title" : "bluebird - ", "url" : "/MyBlog/node/2021/01/16/bluebird.html" } , { "title" : "Generator 自动执行 - ", "url" : "/MyBlog/node/2021/01/16/Generator.html" } , { "title" : "Anyconnect easyconnect - ", "url" : "/MyBlog/algorithm/2021/01/16/Anyconnect.html" } , { "title" : "进度条 - ", "url" : "/MyBlog/golang/2021/01/15/progress.html" } , { "title" : "insert ignore、insert和replace区别 - ", "url" : "/MyBlog/storage/2021/01/15/insert.html" } , { "title" : "cli - ", "url" : "/MyBlog/node/2021/01/15/cli.html" } , { "title" : "bin - ", "url" : "/MyBlog/node/2021/01/15/bin.html" } , { "title" : "npm - ", "url" : "/MyBlog/node/2021/01/14/npm.html" } , { "title" : "minio - ", "url" : "/MyBlog/storage/2021/01/14/minio.html" } , { "title" : "x-request-id - ", "url" : "/MyBlog/node/2021/01/12/x-request-id.html" } , { "title" : "authentication cookie token - ", "url" : "/MyBlog/node/2021/01/12/authentication.html" } , { "title" : "node_modules - ", "url" : "/MyBlog/node/2021/01/11/node_modules.html" } , { "title" : "yield - ", "url" : "/MyBlog/algorithm/2021/01/10/yield.html" } , { "title" : "v8 vm - ", "url" : "/MyBlog/node/2021/01/10/v8vm.html" } , { "title" : "use strict - ", "url" : "/MyBlog/node/2021/01/10/strict.html" } , { "title" : "node 路由 - ", "url" : "/MyBlog/node/2021/01/10/router.html" } , { "title" : "node中Promise使用 - ", "url" : "/MyBlog/algorithm/2021/01/10/promise.html" } , { "title" : "package.json - ", "url" : "/MyBlog/node/2021/01/10/package.html" } , { "title" : "node 面向对象 - ", "url" : "/MyBlog/node/2021/01/10/object.html" } , { "title" : "node 事件模型 - ", "url" : "/MyBlog/node/2021/01/10/node.html" } , { "title" : "node 模块系统 - ", "url" : "/MyBlog/node/2021/01/10/module.html" } , { "title" : "kong - ", "url" : "/MyBlog/k8s/2021/01/10/kong.html" } , { "title" : "function 匿名函数 - ", "url" : "/MyBlog/node/2021/01/10/function.html" } , { "title" : "express - ", "url" : "/MyBlog/node/2021/01/10/express.html" } , { "title" : "vscode 调试 node.js - ", "url" : "/MyBlog/node/2021/01/10/debug.html" } , { "title" : "tj/co 函数生成器 - ", "url" : "/MyBlog/node/2021/01/10/co.html" } , { "title" : "class - ", "url" : "/MyBlog/algorithm/2021/01/10/class.html" } , { "title" : "多进程 - ", "url" : "/MyBlog/node/2021/01/10/child_process.html" } , { "title" : "node Buff Stream - ", "url" : "/MyBlog/node/2021/01/10/buffer.html" } , { "title" : "async await - ", "url" : "/MyBlog/node/2021/01/10/async.html" } , { "title" : "wire - ", "url" : "/MyBlog/golang/2021/01/09/wire.html" } , { "title" : "rancher - ", "url" : "/MyBlog/k8s/2021/01/09/rancher.html" } , { "title" : "oss - ", "url" : "/MyBlog/storage/2021/01/09/oss.html" } , { "title" : "minikube - ", "url" : "/MyBlog/k8s/2021/01/09/minikube.html" } , { "title" : "k8s minikube k3s - ", "url" : "/MyBlog/k8s/2021/01/09/k8s.html" } , { "title" : "igress kong - ", "url" : "/MyBlog/k8s/2021/01/09/igress.html" } , { "title" : "grpc - ", "url" : "/MyBlog/golang/2021/01/09/grpc.html" } , { "title" : "docker for mac k8s 无法启动 - ", "url" : "/MyBlog/k8s/2021/01/09/dockerformac.html" } , { "title" : "browserify - ", "url" : "/MyBlog/node/2021/01/09/browserify.html" } , { "title" : "mac M1 安装 brew - ", "url" : "/MyBlog/web/2021/01/09/brew.html" } , { "title" : "connectpool - ", "url" : "/MyBlog/golang/2020/12/06/connectpool.html" } , { "title" : "tcp http WebSocket长连接区别 - ", "url" : "/MyBlog/web/2020/12/06/WebSocket.html" } , { "title" : "空slice json - ", "url" : "/MyBlog/golang/2020/12/02/slice.html" } , { "title" : "uber go guide - ", "url" : "/MyBlog/golang/2020/12/01/guide.html" } , { "title" : "varchar 隐式转换 int 不转换 - ", "url" : "/MyBlog/storage/2020/11/30/varchar.html" } , { "title" : "超卖问题解决方案 - ", "url" : "/MyBlog/architect/2020/11/30/sell.html" } , { "title" : "Transport - ", "url" : "/MyBlog/golang/2020/11/26/Transport.html" } , { "title" : "SQL优化语句的一般步骤 - ", "url" : "/MyBlog/storage/2020/11/25/sql.html" } , { "title" : "rpc - ", "url" : "/MyBlog/web/2020/11/25/rpc.html" } , { "title" : "http2 - ", "url" : "/MyBlog/web/2020/11/25/http2.html" } , { "title" : "protobuf 为什么那么快 - ", "url" : "/MyBlog/web/2020/11/24/protobuf.html" } , { "title" : "nginx反向代理实现服务器瞬间故障转移 - ", "url" : "/MyBlog/php/2020/11/24/nginx.html" } , { "title" : "MySQL中自增主键不连续 - ", "url" : "/MyBlog/storage/2020/11/24/mysql.html" } , { "title" : "MQ解决消息重发--做到幂等性 - ", "url" : "/MyBlog/storage/2020/11/24/mq.html" } , { "title" : "MQ使用时常见问题以及解决办法 - ", "url" : "/MyBlog/storage/2020/11/24/kafka.html" } , { "title" : "唯一索引和普通索引的选择和区别 - ", "url" : "/MyBlog/storage/2020/11/24/index.html" } , { "title" : "slb - ", "url" : "/MyBlog/php/2020/11/18/slb.html" } , { "title" : "nginx的11个阶段 - ", "url" : "/MyBlog/php/2020/11/18/nginx.html" } , { "title" : "autoconf - ", "url" : "/MyBlog/algorithm/2020/11/18/autoconf.html" } , { "title" : "bin目录区别 - ", "url" : "/MyBlog/linux/2020/11/17/php.html" } , { "title" : "openresty - ", "url" : "/MyBlog/php/2020/11/17/openresty.html" } , { "title" : "autoconf - ", "url" : "/MyBlog/php/2020/11/17/autoconf.html" } , { "title" : "SIP - ", "url" : "/MyBlog/linux/2020/11/17/SIP.html" } , { "title" : "proxy_pass - ", "url" : "/MyBlog/php/2020/11/15/proxy_pass.html" } , { "title" : "MySQL分身 - ", "url" : "/MyBlog/storage/2020/11/12/MySQL.html" } , { "title" : "split - ", "url" : "/MyBlog/linux/2020/11/11/split.html" } , { "title" : "PollDesc - ", "url" : "/MyBlog/golang/2020/11/04/PollDesc.html" } , { "title" : "tingyun - ", "url" : "/MyBlog/architect/2020/11/02/tingyun.html" } , { "title" : "Mac使用Launchd命令行lauchctl - ", "url" : "/MyBlog/linux/2020/11/02/launchctl.html" } , { "title" : "Bash中如何判断一个命令是否存在 - ", "url" : "/MyBlog/linux/2020/11/02/command.html" } , { "title" : "graceful supervisor - ", "url" : "/MyBlog/golang/2020/11/01/graceful.html" } , { "title" : "gogc 运行时环境变量 - ", "url" : "/MyBlog/golang/2020/11/01/gogc.html" } , { "title" : "c10k - ", "url" : "/MyBlog/web/2020/11/01/c10k.html" } , { "title" : "semroot sync.Mutex - ", "url" : "/MyBlog/golang/2020/10/31/semroot.html" } , { "title" : "Docker基础镜像的制作 - ", "url" : "/MyBlog/docker/2020/10/31/image.html" } , { "title" : "copylocks vet - ", "url" : "/MyBlog/golang/2020/10/31/copylocks.html" } , { "title" : "mutex channel 浅拷贝深拷贝 - ", "url" : "/MyBlog/golang/2020/10/31/copy.html" } , { "title" : "Dockerfile - ", "url" : "/MyBlog/docker/2020/10/31/Dockerfile.html" } , { "title" : "phpstorm - ", "url" : "/MyBlog/php/2020/10/28/phpstorm.html" } , { "title" : "php静态分析 - ", "url" : "/MyBlog/php/2020/10/28/phpscan.html" } , { "title" : "php-code-coverage - ", "url" : "/MyBlog/php/2020/10/28/coverage.html" } , { "title" : "SetMaxThreads - ", "url" : "/MyBlog/golang/2020/10/28/SetMaxThreads.html" } , { "title" : "phpgc - ", "url" : "/MyBlog/php/2020/10/26/phpgc.html" } , { "title" : "mapReduce - ", "url" : "/MyBlog/php/2020/10/26/mapReduce.html" } , { "title" : "bundle - ", "url" : "/MyBlog/jekyll/2020/10/26/bundle.html" } , { "title" : "Plugin - ", "url" : "/MyBlog/golang/2020/10/25/Plugin.html" } , { "title" : "JsonSerializable - ", "url" : "/MyBlog/php/2020/10/24/JsonSerializable.html" } , { "title" : "HBase的存储格式 - ", "url" : "/MyBlog/storage/2020/10/22/hbase.html" } , { "title" : "getParams yaf - ", "url" : "/MyBlog/php/2020/10/21/getParams.html" } , { "title" : "xdebug_debug_zval - ", "url" : "/MyBlog/php/2020/10/20/xdebug_debug_zval.html" } , { "title" : "scoreboard - ", "url" : "/MyBlog/php/2020/10/20/scoreboard.html" } , { "title" : "axure 产品画图工具 - ", "url" : "/MyBlog/web/2020/10/20/axure.html" } , { "title" : "udp 超出长度丢弃问题 - ", "url" : "/MyBlog/web/2020/10/18/udp.html" } , { "title" : "通过ip获取用户地理信息原理 - ", "url" : "/MyBlog/web/2020/10/18/ip.html" } , { "title" : "如何快速定位 Redis 热 key - ", "url" : "/MyBlog/storage/2020/10/18/hotkeys.html" } , { "title" : "mysql ha - ", "url" : "/MyBlog/storage/2020/10/18/ha.html" } , { "title" : "symfony console VarDumper - ", "url" : "/MyBlog/php/2020/10/16/symfony.html" } , { "title" : "slice 内存泄露 - ", "url" : "/MyBlog/golang/2020/10/16/slice.html" } , { "title" : "phan - ", "url" : "/MyBlog/php/2020/10/16/phan.html" } , { "title" : "php parser - ", "url" : "/MyBlog/php/2020/10/16/parser.html" } , { "title" : "box - ", "url" : "/MyBlog/php/2020/10/16/box.html" } , { "title" : "chaos 混沌工程 - ", "url" : "/MyBlog/algorithm/2020/10/15/chaos.html" } , { "title" : "稳定性 - ", "url" : "/MyBlog/web/2020/10/15/avaliable.html" } , { "title" : "fastest template - ", "url" : "/MyBlog/golang/2020/10/10/template.html" } , { "title" : "容器健康检查 - ", "url" : "/MyBlog/k8s/2020/10/10/probe.html" } , { "title" : "plugin - ", "url" : "/MyBlog/golang/2020/10/10/plugin.html" } , { "title" : "iptables 限制连接数 - ", "url" : "/MyBlog/linux/2020/10/10/iptables.html" } , { "title" : "goyacc - ", "url" : "/MyBlog/golang/2020/10/10/goyacc.html" } , { "title" : "goZero - ", "url" : "/MyBlog/golang/2020/10/10/goZero.html" } , { "title" : "chaos 混沌工程 - ", "url" : "/MyBlog/golang/2020/10/10/chaos.html" } , { "title" : "ServiceMesh sidecar lstio - ", "url" : "/MyBlog/golang/2020/10/10/Servicemesh.html" } , { "title" : "Pebble Go 编写的 K/V 存储 - ", "url" : "/MyBlog/golang/2020/10/10/Pebble.html" } , { "title" : "ElasticSearch - ", "url" : "/MyBlog/algorithm/2020/10/10/ElasticSearch.html" } , { "title" : "CQRS - ", "url" : "/MyBlog/golang/2020/10/10/CQRS.html" } , { "title" : "字符串查 - ", "url" : "/MyBlog/golang/2020/09/29/string.html" } , { "title" : "strace - ", "url" : "/MyBlog/algorithm/2020/09/29/strace.html" } , { "title" : "二进制逆向分析 - ", "url" : "/MyBlog/golang/2020/09/29/elf.html" } , { "title" : "cow - ", "url" : "/MyBlog/php/2020/09/29/cow.html" } , { "title" : "compare - ", "url" : "/MyBlog/golang/2020/09/29/compare.html" } , { "title" : "chisel lldb - ", "url" : "/MyBlog/linux/2020/09/29/chisel.html" } , { "title" : "byte - ", "url" : "/MyBlog/golang/2020/09/29/byte.html" } , { "title" : "SourceGraph - ", "url" : "/MyBlog/algorithm/2020/09/26/SourceGraph.html" } , { "title" : "set - ", "url" : "/MyBlog/linux/2020/09/25/set.html" } , { "title" : "goreman 进程管理工具 - ", "url" : "/MyBlog/golang/2020/09/25/goreman.html" } , { "title" : "raft - ", "url" : "/MyBlog/algorithm/2020/09/23/raft.html" } , { "title" : "optional parameter in function - ", "url" : "/MyBlog/golang/2020/09/23/optional.html" } , { "title" : "解决 ln -s 软链接产生的Too many levels of symbolic links错误 - ", "url" : "/MyBlog/linux/2020/09/23/ln.html" } , { "title" : "array_merge - ", "url" : "/MyBlog/php/2020/09/23/array_merge.html" } , { "title" : "libfaketime - ", "url" : "/MyBlog/linux/2020/09/22/libfaketime.html" } , { "title" : "php 500 - ", "url" : "/MyBlog/php/2020/09/22/500.html" } , { "title" : "slice - ", "url" : "/MyBlog/golang/2020/09/21/slice.html" } , { "title" : "索引失效的情况 - ", "url" : "/MyBlog/storage/2020/09/21/index.html" } , { "title" : "Debugging Go in prod using eBPF - ", "url" : "/MyBlog/golang/2020/09/21/eBPF.html" } , { "title" : "Pebble - ", "url" : "/MyBlog/golang/2020/09/21/Pebble.html" } , { "title" : "rt0_go - ", "url" : "/MyBlog/golang/2020/09/18/rt0_go.html" } , { "title" : "garbage - ", "url" : "/MyBlog/golang/2020/09/18/garbage.html" } , { "title" : "dubbogo - ", "url" : "/MyBlog/golang/2020/09/18/dubbogo.html" } , { "title" : "Declarative - ", "url" : "/MyBlog/k8s/2020/09/18/Declarative.html" } , { "title" : "godefs - ", "url" : "/MyBlog/golang/2020/09/10/godefs.html" } , { "title" : "get_called_class - ", "url" : "/MyBlog/php/2020/09/10/get_called_class.html" } , { "title" : "dapr sidecar - ", "url" : "/MyBlog/golang/2020/09/10/dapr.html" } , { "title" : "privileged 在docker内部运行docker - ", "url" : "/MyBlog/docker/2020/09/09/privileged.html" } , { "title" : "make container - ", "url" : "/MyBlog/docker/2020/09/09/container.html" } , { "title" : "2017双11交易系统TMF2.0技术揭秘 - ", "url" : "/MyBlog/architect/2020/09/03/tmf.html" } , { "title" : "swoole - ", "url" : "/MyBlog/php/2020/09/01/swoole.html" } , { "title" : "特殊字符的string怎么转byte - ", "url" : "/MyBlog/golang/2020/09/01/byte.html" } , { "title" : "Interface - ", "url" : "/MyBlog/golang/2020/09/01/Interface.html" } , { "title" : "GORM - ", "url" : "/MyBlog/golang/2020/09/01/GORM.html" } , { "title" : "Go 官方进程诊断工具 gops - ", "url" : "/MyBlog/golang/2020/08/31/goops.html" } , { "title" : "Google Cloud 服务网格:Traffic Director 与 Anthos Service Mesh - ", "url" : "/MyBlog/golang/2020/08/31/Controller.html" } , { "title" : "io - ", "url" : "/MyBlog/golang/2020/08/30/io.html" } , { "title" : "call_user_function_ex 扩展调用php脚本函数 - ", "url" : "/MyBlog/php/2020/08/30/call_user_function_ex.html" } , { "title" : "php扩展实现多线程 - ", "url" : "/MyBlog/php/2020/08/30/_call_user_function_ex.html" } , { "title" : "zend_parse_parameters php扩展程序的参数传递 扩展类传参数 - ", "url" : "/MyBlog/php/2020/08/29/zend_parse_parameters.html" } , { "title" : "spl_autoload_register - ", "url" : "/MyBlog/php/2020/08/29/spl_autoload_register.html" } , { "title" : "kylin - ", "url" : "/MyBlog/storage/2020/08/29/kylin.html" } , { "title" : "gdb 调试学习yaf 源码 - ", "url" : "/MyBlog/php/2020/08/29/gdb.html" } , { "title" : "php扩展实现一个class - ", "url" : "/MyBlog/php/2020/08/29/class.html" } , { "title" : "PHP_MINIT - ", "url" : "/MyBlog/php/2020/08/29/PHP_MINIT.html" } , { "title" : "PHP-Yaf执行流程-源码分析 - ", "url" : "/MyBlog/php/2020/08/29/PHP-Yaf%E6%89%A7%E8%A1%8C%E6%B5%81%E7%A8%8B-%E6%BA%90%E7%A0%81%E5%88%86%E6%9E%90.html" } , { "title" : "Semantic Versioning - ", "url" : "/MyBlog/php/2020/08/28/version.html" } , { "title" : "preload php预加载 - ", "url" : "/MyBlog/php/2020/08/27/preload.html" } , { "title" : "ld_preload - ", "url" : "/MyBlog/linux/2020/08/27/ld_preload.html" } , { "title" : "file_get_contents - ", "url" : "/MyBlog/php/2020/08/27/file_get_contents.html" } , { "title" : "auto_prepend_file与auto_append_file使用方法 - ", "url" : "/MyBlog/php/2020/08/27/auto_prepend_file.html" } , { "title" : "php执行shell命令,system、exec、passthru - ", "url" : "/MyBlog/php/2020/08/26/passthru.html" } , { "title" : "grep 正则表达式 - ", "url" : "/MyBlog/linux/2020/08/26/grep.html" } , { "title" : "symfony/console composer - ", "url" : "/MyBlog/php/2020/08/25/symfony.html" } , { "title" : "phptrace Molten - ", "url" : "/MyBlog/php/2020/08/25/phptrace.html" } , { "title" : "object 传引用 - ", "url" : "/MyBlog/php/2020/08/25/object.html" } , { "title" : "composer dump-autoload - ", "url" : "/MyBlog/php/2020/08/25/dumpautoload.html" } , { "title" : "composer 的自动加载原理 - ", "url" : "/MyBlog/php/2020/08/24/composer.html" } , { "title" : "quartz 定时任务 - ", "url" : "/MyBlog/golang/2020/08/22/quartz.html" } , { "title" : "zero - ", "url" : "/MyBlog/golang/2020/08/21/zero.html" } , { "title" : "read - ", "url" : "/MyBlog/golang/2020/08/21/read.html" } , { "title" : "gocenter - ", "url" : "/MyBlog/golang/2020/08/21/gocenter.html" } , { "title" : "transaction - ", "url" : "/MyBlog/golang/2020/08/20/transaction.html" } , { "title" : "thrift 关键字冲突 - ", "url" : "/MyBlog/php/2020/08/20/thrift.html" } , { "title" : "generic glang范型 - ", "url" : "/MyBlog/golang/2020/08/20/generic.html" } , { "title" : "SameSite cookie - ", "url" : "/MyBlog/web/2020/08/20/SameSite_cookie.html" } , { "title" : "yaf_cg 生成yaf框架 - ", "url" : "/MyBlog/php/2020/08/19/yaf_cg.html" } , { "title" : "yaf 加载机制 - ", "url" : "/MyBlog/php/2020/08/19/yaf.html" } , { "title" : "register_globals - ", "url" : "/MyBlog/php/2020/08/19/register_globals.html" } , { "title" : "php phar原理 - ", "url" : "/MyBlog/php/2020/08/19/php_phar.html" } , { "title" : "php单引号比双引号高效 - ", "url" : "/MyBlog/php/2020/08/19/php.html" } , { "title" : "将PHP程序打包成可执行的phar文件 - ", "url" : "/MyBlog/php/2020/08/19/phar.html" } , { "title" : "用phar-composer来构建基于composer的phar包 - ", "url" : "/MyBlog/php/2020/08/19/phar-composer.html" } , { "title" : "openssl 扩展安装不正确导致https请求 segmentfault - ", "url" : "/MyBlog/php/2020/08/19/openssl.html" } , { "title" : "mysql_real_escape_string - ", "url" : "/MyBlog/php/2020/08/19/mysql_real_escape_string.html" } , { "title" : "magic_quotes_gpc - ", "url" : "/MyBlog/php/2020/08/19/magic_quotes_gpc.html" } , { "title" : "log_errors display_errors - ", "url" : "/MyBlog/php/2020/08/19/log_errors.html" } , { "title" : "int 比 intval 性能高出3至6倍 - ", "url" : "/MyBlog/php/2020/08/19/intval.html" } , { "title" : "extract eval - ", "url" : "/MyBlog/php/2020/08/19/extract.html" } , { "title" : "expose_php - ", "url" : "/MyBlog/php/2020/08/19/expose_php.html" } , { "title" : "escapeshellarg - ", "url" : "/MyBlog/php/2020/08/19/escapeshellarg.html" } , { "title" : "composer svn - ", "url" : "/MyBlog/php/2020/08/19/composer.html" } , { "title" : "composer autoload - ", "url" : "/MyBlog/php/2020/08/19/autoload.html" } , { "title" : "assert_instances_of instances_of - ", "url" : "/MyBlog/php/2020/08/19/assert_instances_of.html" } , { "title" : "govaluate - ", "url" : "/MyBlog/golang/2020/08/18/govaluate.html" } , { "title" : "foreach - ", "url" : "/MyBlog/php/2020/08/18/foreach.html" } , { "title" : "yaf - ", "url" : "/MyBlog/php/2020/08/14/yaf.html" } , { "title" : "cURL与wget的区别 - ", "url" : "/MyBlog/linux/2020/08/14/wget.html" } , { "title" : "proto - ", "url" : "/MyBlog/php/2020/08/14/proto.html" } , { "title" : "gof Go实现GoF的23种设计模式 - ", "url" : "/MyBlog/golang/2020/08/14/gof.html" } , { "title" : "openssl_x509_parse - ", "url" : "/MyBlog/php/2020/08/12/openssl_x509_parse.html" } , { "title" : "openssl 版本过高导致php7.0 安装openssl 失败 - ", "url" : "/MyBlog/php/2020/08/12/openssl.html" } , { "title" : "expand_aliases Bash非交互模式下alias不能使用 - ", "url" : "/MyBlog/linux/2020/08/12/expand_aliases.html" } , { "title" : "CaBundle openssl 内存泄露问题 - ", "url" : "/MyBlog/php/2020/08/12/CaBundle.html" } , { "title" : "structLookupCache - ", "url" : "/MyBlog/golang/2020/08/11/structLookupCache.html" } , { "title" : "php-src 安装遇到问题 - ", "url" : "/MyBlog/php/2020/08/11/php-src.html" } , { "title" : "openssl 安装坑 - ", "url" : "/MyBlog/php/2020/08/11/openssl.html" } , { "title" : "go mysql driver - ", "url" : "/MyBlog/golang/2020/08/11/gomysql.html" } , { "title" : "composer - ", "url" : "/MyBlog/php/2020/08/11/composer.html" } , { "title" : "StructOf - ", "url" : "/MyBlog/golang/2020/08/11/StructOf.html" } , { "title" : "GPBMetadata DescriptorPool - ", "url" : "/MyBlog/php/2020/08/11/GPBMetadata.html" } , { "title" : "textarea - ", "url" : "/MyBlog/golang/2020/08/10/textarea.html" } , { "title" : "gin 静态文件服务 - ", "url" : "/MyBlog/golang/2020/08/10/gin.html" } , { "title" : "base64 - ", "url" : "/MyBlog/algorithm/2020/08/10/base64.html" } , { "title" : "TiDB 的列式存储引擎是如何实现的? - ", "url" : "/MyBlog/storage/2020/08/07/tidb.html" } , { "title" : "stubs - ", "url" : "/MyBlog/php/2020/08/07/stubs.html" } , { "title" : "Go struct 类型的 map 结构体成员不能修改的问题 - ", "url" : "/MyBlog/golang/2020/08/07/map.html" } , { "title" : "raft - ", "url" : "/MyBlog/golang/2020/08/06/raft.html" } , { "title" : "gopls - ", "url" : "/MyBlog/golang/2020/08/06/gopls.html" } , { "title" : "drool rete 算法 - ", "url" : "/MyBlog/algorithm/2020/08/06/drool.html" } , { "title" : "pip - ", "url" : "/MyBlog/python/2020/08/04/pip.html" } , { "title" : "pyspark hive - ", "url" : "/MyBlog/storage/2020/08/04/hive.html" } , { "title" : "结构体转map - ", "url" : "/MyBlog/golang/2020/08/03/structtomap.html" } , { "title" : "Docker组件go-event 源码学习 - ", "url" : "/MyBlog/golang/2020/08/03/goevent.html" } , { "title" : "chromedp - ", "url" : "/MyBlog/golang/2020/08/03/chromedp.html" } , { "title" : "升级到php8 问题 - ", "url" : "/MyBlog/php/2020/07/31/jit.html" } , { "title" : "Real-Time Event-Driven Ecosystem - ", "url" : "/MyBlog/golang/2020/07/31/ede.html" } , { "title" : "crocodile - ", "url" : "/MyBlog/golang/2020/07/31/crocodile.html" } , { "title" : "xmi - ", "url" : "/MyBlog/php/2020/07/30/xmi.html" } , { "title" : "plugin - ", "url" : "/MyBlog/golang/2020/07/30/plugin.html" } , { "title" : "graphql 查询自省 - ", "url" : "/MyBlog/golang/2020/07/30/graphql.html" } , { "title" : "docker in docker - ", "url" : "/MyBlog/golang/2020/07/30/dockerindocker.html" } , { "title" : "SQL语句执行过程详解 - ", "url" : "/MyBlog/storage/2020/07/29/sql.html" } , { "title" : "Redis Diagnose - ", "url" : "/MyBlog/storage/2020/07/29/redis.html" } , { "title" : "php_uml - ", "url" : "/MyBlog/php/2020/07/29/php_uml.html" } , { "title" : "phpCallGraph - ", "url" : "/MyBlog/php/2020/07/29/phpCallGraph.html" } , { "title" : "graphql - ", "url" : "/MyBlog/web/2020/07/29/graphql.html" } , { "title" : "log - ", "url" : "/MyBlog/linux/2020/07/27/log.html" } , { "title" : "inode - ", "url" : "/MyBlog/linux/2020/07/27/inode.html" } , { "title" : "import - ", "url" : "/MyBlog/golang/2020/07/27/import.html" } , { "title" : "goroutine 的同步和协作 - ", "url" : "/MyBlog/golang/2020/07/27/goroutine.html" } , { "title" : "Golang Module Proxy实现goproxy.io源码研读 - ", "url" : "/MyBlog/golang/2020/07/27/goproxy.html" } , { "title" : "Docker registry GC 原理分析 - ", "url" : "/MyBlog/docker/2020/07/27/gc.html" } , { "title" : "AKF拆分原则 - ", "url" : "/MyBlog/web/2020/07/27/akf.html" } , { "title" : "Structure101 - ", "url" : "/MyBlog/golang/2020/07/27/Structure101.html" } , { "title" : "Present - ", "url" : "/MyBlog/golang/2020/07/27/Present.html" } , { "title" : "Generics - ", "url" : "/MyBlog/golang/2020/07/27/Generics.html" } , { "title" : "ssa CreateProgram 调用关系生成 - ", "url" : "/MyBlog/golang/2020/07/27/CreateProgram.html" } , { "title" : "json2graphql - ", "url" : "/MyBlog/golang/2020/07/23/json2graphql.html" } , { "title" : "jit - ", "url" : "/MyBlog/php/2020/07/23/jit.html" } , { "title" : "文件IO 文件位置偏移量 - ", "url" : "/MyBlog/linux/2020/07/23/inode.html" } , { "title" : "graphql - ", "url" : "/MyBlog/golang/2020/07/23/graphql.html" } , { "title" : "函数——go世界中的一等公民 - ", "url" : "/MyBlog/golang/2020/07/23/func.html" } , { "title" : "error - ", "url" : "/MyBlog/golang/2020/07/23/error.html" } , { "title" : "dynasm - ", "url" : "/MyBlog/php/2020/07/23/dynasm.html" } , { "title" : "mac php8 源码安装 扩展编译 - ", "url" : "/MyBlog/php/2020/07/20/php8.html" } , { "title" : "Streaming SQL - ", "url" : "/MyBlog/storage/2020/07/20/Streaming.html" } , { "title" : "FileServer - ", "url" : "/MyBlog/golang/2020/07/20/FileServer.html" } , { "title" : "CodeViz - ", "url" : "/MyBlog/linux/2020/07/20/CodeViz.html" } , { "title" : "zend_config - ", "url" : "/MyBlog/php/2020/07/19/zend_config.html" } , { "title" : "git apply 补丁 - ", "url" : "/MyBlog/web/2020/07/19/gitapply.html" } , { "title" : "cmake - ", "url" : "/MyBlog/linux/2020/07/19/cmake.html" } , { "title" : "import - ", "url" : "/MyBlog/algorithm/2020/07/18/import.html" } , { "title" : "graphviz - ", "url" : "/MyBlog/golang/2020/07/18/graphviz.html" } , { "title" : "uniform type identifiers - ", "url" : "/MyBlog/golang/2020/07/18/duti.html" } , { "title" : "packages - ", "url" : "/MyBlog/golang/2020/07/16/packages.html" } , { "title" : "graphql - ", "url" : "/MyBlog/web/2020/07/16/graphql.html" } , { "title" : "goplus - ", "url" : "/MyBlog/golang/2020/07/16/goplus.html" } , { "title" : "ast - ", "url" : "/MyBlog/golang/2020/07/16/ast.html" } , { "title" : "graphql Schema - ", "url" : "/MyBlog/golang/2020/07/16/Schema.html" } , { "title" : "tcpdump - ", "url" : "/MyBlog/linux/2020/07/15/tcpdump.html" } , { "title" : "event_scheduler mysql定时器定时清理表数据 - ", "url" : "/MyBlog/storage/2020/07/15/event_scheduler.html" } , { "title" : "开发常用工具tool - ", "url" : "/MyBlog/web/2020/07/14/tool.html" } , { "title" : "tidb oceanbase对比 - ", "url" : "/MyBlog/storage/2020/07/14/tidb.html" } , { "title" : "shell 常用命令 - ", "url" : "/MyBlog/linux/2020/07/14/shell.html" } , { "title" : "hbase mongodb 比较 - ", "url" : "/MyBlog/storage/2020/07/14/hbase.html" } , { "title" : "graphql - ", "url" : "/MyBlog/web/2020/07/14/graphql.html" } , { "title" : "git查看某个文件的提交历史 - ", "url" : "/MyBlog/web/2020/07/13/log.html" } , { "title" : "graphql client - ", "url" : "/MyBlog/golang/2020/07/13/graphqlc.html" } , { "title" : "graphql - ", "url" : "/MyBlog/golang/2020/07/13/graphql.html" } , { "title" : "使用gqlgen构建GraphQL服务 - ", "url" : "/MyBlog/golang/2020/07/13/gqlgen.html" } , { "title" : "golang后端graphql接口 - ", "url" : "/MyBlog/golang/2020/07/13/gographql.html" } , { "title" : "Curl命令的data data-ascii data-binary data-raw和data-urlencode选项 - ", "url" : "/MyBlog/linux/2020/07/13/Curl.html" } , { "title" : "zend_extension - ", "url" : "/MyBlog/php/2020/07/12/zend_extension.html" } , { "title" : "zend ZEND_OPCODE_HANDLER_ARGS_PASSTHRU - ", "url" : "/MyBlog/php/2020/07/12/zend.html" } , { "title" : "graphviz - ", "url" : "/MyBlog/lang/2020/07/12/graphviz.html" } , { "title" : "dsl - ", "url" : "/MyBlog/linux/2020/07/12/dsl.html" } , { "title" : "antlr graphviz - ", "url" : "/MyBlog/lang/2020/07/12/antlr_graphviz.html" } , { "title" : "markdown - ", "url" : "/MyBlog/golang/2020/07/11/markdown.html" } , { "title" : "antlr json2xml - ", "url" : "/MyBlog/golang/2020/07/11/json2xml.html" } , { "title" : "twirp RPC 的简易 JSON Api Gateway 实现 - ", "url" : "/MyBlog/golang/2020/07/10/twirp.html" } , { "title" : "goantlr - ", "url" : "/MyBlog/golang/2020/07/10/goantlr.html" } , { "title" : "Go GC 三色标记法 - ", "url" : "/MyBlog/golang/2020/07/10/gc.html" } , { "title" : "antlr hive - ", "url" : "/MyBlog/lang/2020/07/10/antlr_hive.html" } , { "title" : "antlr4go - ", "url" : "/MyBlog/golang/2020/07/10/antlr4go.html" } , { "title" : "antlr4 - ", "url" : "/MyBlog/golang/2020/07/10/antlr4.html" } , { "title" : "Gox 使用内存虚拟文件系统提升IO处理速度 - ", "url" : "/MyBlog/golang/2020/07/10/Gox.html" } , { "title" : "Python魔术方法 迭代器 - ", "url" : "/MyBlog/python/2020/07/09/iter.html" } , { "title" : "inspect - ", "url" : "/MyBlog/python/2020/07/09/inspect.html" } , { "title" : "antlr idea - ", "url" : "/MyBlog/lang/2020/07/09/antlridea.html" } , { "title" : "antlr - ", "url" : "/MyBlog/lang/2020/07/09/antlr.html" } , { "title" : "python _getframe - ", "url" : "/MyBlog/python/2020/07/09/_getframe.html" } , { "title" : "Thriftpy - ", "url" : "/MyBlog/python/2020/07/09/Thriftpy.html" } , { "title" : "Flink 如何处理反压问题 - ", "url" : "/MyBlog/storage/2020/07/09/Flink.html" } , { "title" : "python 中的下划线 - ", "url" : "/MyBlog/python/2020/07/08/python.html" } , { "title" : "profile - ", "url" : "/MyBlog/golang/2020/07/08/profile.html" } , { "title" : "ply 教程 - ", "url" : "/MyBlog/python/2020/07/08/ply.html" } , { "title" : "pixijs - ", "url" : "/MyBlog/web/2020/07/08/pixijs.html" } , { "title" : "调试Kubernetes集群中的网络停顿问题 - ", "url" : "/MyBlog/k8s/2020/07/08/k8s.html" } , { "title" : "goc go 语言测试覆盖率收集工具 - ", "url" : "/MyBlog/golang/2020/07/08/goc.html" } , { "title" : "cgi python nginx - ", "url" : "/MyBlog/web/2020/07/08/cgi.html" } , { "title" : "addlint 自定义linker - ", "url" : "/MyBlog/golang/2020/07/08/addlint.html" } , { "title" : "Tracking 用户追踪 - ", "url" : "/MyBlog/golang/2020/07/08/Tracking.html" } , { "title" : "python2 python3兼容问题 - ", "url" : "/MyBlog/python/2020/07/07/python.html" } , { "title" : "ply thriftpy 实现定制化的idl转化工具 - ", "url" : "/MyBlog/python/2020/07/07/ply.html" } , { "title" : "python lambda - ", "url" : "/MyBlog/python/2020/07/07/lambda.html" } , { "title" : "Xdebug - ", "url" : "/MyBlog/php/2020/07/06/xdebug.html" } , { "title" : "union - ", "url" : "/MyBlog/golang/2020/07/06/union.html" } , { "title" : "Go Search Extension - ", "url" : "/MyBlog/golang/2020/07/06/search.html" } , { "title" : "golang 规则引擎 - ", "url" : "/MyBlog/golang/2020/07/06/rule.html" } , { "title" : "Python中import - ", "url" : "/MyBlog/python/2020/07/06/import.html" } , { "title" : "goyacc - ", "url" : "/MyBlog/golang/2020/07/06/goyacc.html" } , { "title" : "govmomi 创建 VMware 虚拟机 - ", "url" : "/MyBlog/golang/2020/07/06/govmomi.html" } , { "title" : "goplus - ", "url" : "/MyBlog/golang/2020/07/06/goplus.html" } , { "title" : "golex - ", "url" : "/MyBlog/golang/2020/07/06/golex.html" } , { "title" : "getopt-php - ", "url" : "/MyBlog/php/2020/07/06/getopt-php.html" } , { "title" : "Python中的exec函数 - ", "url" : "/MyBlog/python/2020/07/06/exec.html" } , { "title" : "AlgorithmVisualizer - ", "url" : "/MyBlog/algorithm/2020/07/06/AlgorithmVisualizer.html" } , { "title" : "php graphviz 可视化工具 - ", "url" : "/MyBlog/php/2020/07/05/php-graphviz.html" } , { "title" : "go-graphviz - ", "url" : "/MyBlog/golang/2020/07/05/go-graphviz.html" } , { "title" : "fastcgi - ", "url" : "/MyBlog/golang/2020/07/05/fastcgi.html" } , { "title" : "dot 语言 graphviz - ", "url" : "/MyBlog/lang/2020/07/05/dot.html" } , { "title" : "golang 构建 - ", "url" : "/MyBlog/golang/2020/07/05/build.html" } , { "title" : "tools - ", "url" : "/MyBlog/golang/2020/07/04/tools.html" } , { "title" : "rapidjson - ", "url" : "/MyBlog/lang/2020/07/04/rapidjson.html" } , { "title" : "json xml yml curl to go - ", "url" : "/MyBlog/golang/2020/07/04/jsontogo.html" } , { "title" : "lex yacc解析 json - ", "url" : "/MyBlog/lang/2020/07/04/json.html" } , { "title" : "go-callvis - ", "url" : "/MyBlog/golang/2020/07/04/go-callvis.html" } , { "title" : "fuckdb sql dsl proto go - ", "url" : "/MyBlog/golang/2020/07/04/fuckdb.html" } , { "title" : "easyjson 源码调试学习 - ", "url" : "/MyBlog/golang/2020/07/04/easyjson.html" } , { "title" : "compiler - ", "url" : "/MyBlog/golang/2020/07/04/compiler.html" } , { "title" : "JSON解析学习 - ", "url" : "/MyBlog/lang/2020/07/04/JSON_zhihu.html" } , { "title" : "JSON 解析器原理 - ", "url" : "/MyBlog/golang/2020/07/03/json.html" } , { "title" : "flink - ", "url" : "/MyBlog/algorithm/2020/07/03/flink.html" } , { "title" : "ast - ", "url" : "/MyBlog/golang/2020/07/03/ast.html" } , { "title" : "UDAF - ", "url" : "/MyBlog/storage/2020/07/03/UDAF.html" } , { "title" : "scripts - ", "url" : "/MyBlog/php/2020/07/02/scripts.html" } , { "title" : "JSON转换成Go的struct - ", "url" : "/MyBlog/golang/2020/07/02/json.html" } , { "title" : "easyJson - ", "url" : "/MyBlog/golang/2020/07/02/easyJson.html" } , { "title" : "Markdown - ", "url" : "/MyBlog/golang/2020/07/02/Markdown.html" } , { "title" : "tcp - ", "url" : "/MyBlog/golang/2020/07/01/tcp.html" } , { "title" : "pool - ", "url" : "/MyBlog/golang/2020/07/01/pool.html" } , { "title" : "dsl 美团海盗 中间件 - ", "url" : "/MyBlog/web/2020/07/01/dsl.html" } , { "title" : "bfe - ", "url" : "/MyBlog/golang/2020/07/01/bfe.html" } , { "title" : "Nightingale - ", "url" : "/MyBlog/algorithm/2020/07/01/Nightingale.html" } , { "title" : "Conductor - ", "url" : "/MyBlog/web/2020/07/01/Conductor.html" } , { "title" : "Choreography choreography - ", "url" : "/MyBlog/web/2020/07/01/Choreography.html" } , { "title" : "BPM与ESB - ", "url" : "/MyBlog/web/2020/07/01/BPM.html" } , { "title" : "YAML 语言教程 - ", "url" : "/MyBlog/web/2020/06/30/yaml.html" } , { "title" : "Time Structured Merge Tree - ", "url" : "/MyBlog/storage/2020/06/30/tsm.html" } , { "title" : "tsdb - ", "url" : "/MyBlog/storage/2020/06/30/tsdb.html" } , { "title" : "kNative - ", "url" : "/MyBlog/golang/2020/06/30/kNative.html" } , { "title" : "ipset iptables ipvs - ", "url" : "/MyBlog/k8s/2020/06/30/ipset.html" } , { "title" : "grpc - ", "url" : "/MyBlog/golang/2020/06/30/grpc.html" } , { "title" : "graphQL - ", "url" : "/MyBlog/golang/2020/06/30/graphQL.html" } , { "title" : "dhcp - ", "url" : "/MyBlog/web/2020/06/30/dhcp.html" } , { "title" : "Tekton - ", "url" : "/MyBlog/k8s/2020/06/30/Tekton.html" } , { "title" : "Serverless - ", "url" : "/MyBlog/golang/2020/06/30/Serverless.html" } , { "title" : "AntiPattern - ", "url" : "/MyBlog/golang/2020/06/30/AntiPattern.html" } , { "title" : "golang toolkits - ", "url" : "/MyBlog/golang/2020/06/29/toolkits.html" } , { "title" : "正则表达式 分组匹配 - ", "url" : "/MyBlog/linux/2020/06/29/regx.html" } , { "title" : "proto3 - ", "url" : "/MyBlog/linux/2020/06/29/proto3.html" } , { "title" : "prometheus - ", "url" : "/MyBlog/linux/2020/06/29/prometheus.html" } , { "title" : "printOneCgoTraceback 打印堆栈 - ", "url" : "/MyBlog/golang/2020/06/29/printOneCgoTraceback.html" } , { "title" : "IntelliJ IDEA插件 - ", "url" : "/MyBlog/web/2020/06/29/idea.html" } , { "title" : "PHPStorm插件 插件编写 - ", "url" : "/MyBlog/web/2020/06/29/ide.html" } , { "title" : "flink - ", "url" : "/MyBlog/storage/2020/06/29/flink.html" } , { "title" : "让Linux终端中执行的程序在后台运行 从前台变到后台 - ", "url" : "/MyBlog/linux/2020/06/29/disown.html" } , { "title" : "Supervisor - ", "url" : "/MyBlog/linux/2020/06/29/Supervisor.html" } , { "title" : "FreeSwitch - ", "url" : "/MyBlog/web/2020/06/29/FreeSwitch.html" } , { "title" : "zabbix 监控系统 - ", "url" : "/MyBlog/linux/2020/06/28/zabbix.html" } , { "title" : "time structure merge tree InfluxDB OpenTSDB - ", "url" : "/MyBlog/storage/2020/06/28/tsm.html" } , { "title" : "rrdtool Round Robin Database Tool - ", "url" : "/MyBlog/storage/2020/06/28/rrdtool.html" } , { "title" : "proc 文件系统 系统监控 - ", "url" : "/MyBlog/linux/2020/06/28/proc.html" } , { "title" : "nsq - ", "url" : "/MyBlog/golang/2020/06/28/nsq.html" } , { "title" : "监控知识体系 - ", "url" : "/MyBlog/linux/2020/06/28/monitor.html" } , { "title" : "迁移godep到gomod - ", "url" : "/MyBlog/golang/2020/06/28/gomod.html" } , { "title" : "goland 无法跳转问题 - ", "url" : "/MyBlog/golang/2020/06/28/goland.html" } , { "title" : "open falcon - ", "url" : "/MyBlog/linux/2020/06/28/falcon.html" } , { "title" : "Smokeping - ", "url" : "/MyBlog/linux/2020/06/28/Smokeping.html" } , { "title" : "zend_string_init - ", "url" : "/MyBlog/php/2020/06/27/zend_string_init.html" } , { "title" : "strlen core 原因排查 - ", "url" : "/MyBlog/php/2020/06/27/strlen.html" } , { "title" : "execute_data - ", "url" : "/MyBlog/php/2020/06/27/execute_data.html" } , { "title" : "debug_backtrace - ", "url" : "/MyBlog/php/2020/06/27/debug_backtrace.html" } , { "title" : "php 500 错误排查 - ", "url" : "/MyBlog/php/2020/06/27/500.html" } , { "title" : "tstamp Local Format - ", "url" : "/MyBlog/golang/2020/06/26/local.html" } , { "title" : "kafka - ", "url" : "/MyBlog/golang/2020/06/26/kafka.html" } , { "title" : "一次http请求,谁会先断开TCP连接?什么情况下客户端先断,什么情况下服务端先断? - ", "url" : "/MyBlog/web/2020/06/26/fin.html" } , { "title" : "cgi - ", "url" : "/MyBlog/php/2020/06/26/cgi.html" } , { "title" : "PHP7源码之CG EG SG PG宏 - ", "url" : "/MyBlog/php/2020/06/26/EGCG.html" } , { "title" : "ss 查看SOCKET使用情况 - ", "url" : "/MyBlog/linux/2020/06/25/ss.html" } , { "title" : "trait 优先级 - ", "url" : "/MyBlog/php/2020/06/24/trait.html" } , { "title" : "apcu_add - ", "url" : "/MyBlog/php/2020/06/24/apcu_add.html" } , { "title" : "phpunit.xml - ", "url" : "/MyBlog/php/2020/06/23/xml.html" } , { "title" : "跑通一个单元测试 - ", "url" : "/MyBlog/php/2020/06/23/testCase.html" } , { "title" : "phytrix - ", "url" : "/MyBlog/php/2020/06/23/phytrix.html" } , { "title" : "phpunit - ", "url" : "/MyBlog/php/2020/06/23/phpunit.html" } , { "title" : "Serverless - ", "url" : "/MyBlog/golang/2020/06/23/Serverless.html" } , { "title" : "PHPUnit_Framework_TestCase - ", "url" : "/MyBlog/php/2020/06/23/PHPUnit_Framework_TestCase.html" } , { "title" : "transaction - ", "url" : "/MyBlog/golang/2020/06/22/transaction.html" } , { "title" : "json schema - ", "url" : "/MyBlog/golang/2020/06/22/schema.html" } , { "title" : "schedulers - ", "url" : "/MyBlog/golang/2020/06/22/schedulers.html" } , { "title" : "go mod replace - ", "url" : "/MyBlog/golang/2020/06/22/replace.html" } , { "title" : "go mod - ", "url" : "/MyBlog/golang/2020/06/22/mod.html" } , { "title" : "Juno 监控中心 - ", "url" : "/MyBlog/golang/2020/06/22/juno.html" } , { "title" : "goproxy - ", "url" : "/MyBlog/golang/2020/06/22/goproxy.html" } , { "title" : "goland go1.13 gomod模式启用情况下代码无法跳转问题 - ", "url" : "/MyBlog/golang/2020/06/22/gomod.html" } , { "title" : "gobreaker - ", "url" : "/MyBlog/golang/2020/06/22/gobreaker.html" } , { "title" : "shell脚本设置环境变量不生效 - ", "url" : "/MyBlog/linux/2020/06/18/shell.html" } , { "title" : "reflect - ", "url" : "/MyBlog/golang/2020/06/18/reflect.html" } , { "title" : "GoFrame - ", "url" : "/MyBlog/golang/2020/06/18/GoFrame.html" } , { "title" : "gval - ", "url" : "/MyBlog/golang/2020/06/16/gval.html" } , { "title" : "OpenTracing - ", "url" : "/MyBlog/golang/2020/06/16/OpenTracing.html" } , { "title" : "GoEasy - ", "url" : "/MyBlog/golang/2020/06/16/GoEasy.html" } , { "title" : "逃逸分析 - ", "url" : "/MyBlog/golang/2020/06/15/escape.html" } , { "title" : "操作结构体的非导出字段 - ", "url" : "/MyBlog/golang/2020/06/15/NewAt.html" } , { "title" : "Istio - ", "url" : "/MyBlog/golang/2020/06/15/Istio.html" } , { "title" : "sso - ", "url" : "/MyBlog/golang/2020/06/13/sso.html" } , { "title" : "golang http句柄泄露 - ", "url" : "/MyBlog/golang/2020/06/13/http.html" } , { "title" : "携程在 CAT 性能优化 - ", "url" : "/MyBlog/golang/2020/06/13/cat.html" } , { "title" : "go test - ", "url" : "/MyBlog/golang/2020/06/12/test.html" } , { "title" : "zepto vscode-go - ", "url" : "/MyBlog/golang/2020/06/11/zepto.html" } , { "title" : "graphQL - ", "url" : "/MyBlog/web/2020/06/11/graphQL.html" } , { "title" : "dubbo dubbo-go-proxy - ", "url" : "/MyBlog/golang/2020/06/11/dubbo.html" } , { "title" : "PySaprk - ", "url" : "/MyBlog/storage/2020/06/11/PySaprk.html" } , { "title" : "validator - ", "url" : "/MyBlog/golang/2020/06/10/validator.html" } , { "title" : "Go 内存池对象池技术 - ", "url" : "/MyBlog/golang/2020/06/10/pool.html" } , { "title" : "k8s+docker部署Golang项目 - ", "url" : "/MyBlog/golang/2020/06/10/docker.html" } , { "title" : "cli - ", "url" : "/MyBlog/golang/2020/06/10/cli.html" } , { "title" : "atomic - ", "url" : "/MyBlog/golang/2020/06/10/atomic.html" } , { "title" : "容器内存占用 OOM - ", "url" : "/MyBlog/golang/2020/06/10/OOM.html" } , { "title" : "Context - ", "url" : "/MyBlog/golang/2020/06/10/Context.html" } , { "title" : "tag - ", "url" : "/MyBlog/golang/2020/06/09/tag.html" } , { "title" : "调度器工作原理 - ", "url" : "/MyBlog/golang/2020/06/09/sched.html" } , { "title" : "proxygen - ", "url" : "/MyBlog/golang/2020/06/09/proxygen.html" } , { "title" : "nginx lua - ", "url" : "/MyBlog/web/2020/06/09/nginx.html" } , { "title" : "service mesh - ", "url" : "/MyBlog/golang/2020/06/09/mesh.html" } , { "title" : "golang+lua的Web日志安全分析系统 - ", "url" : "/MyBlog/golang/2020/06/09/lua.html" } , { "title" : "lambda - ", "url" : "/MyBlog/web/2020/06/09/lambda.html" } , { "title" : "强一致在线 KV &表格存储实践 - ", "url" : "/MyBlog/golang/2020/06/09/kv.html" } , { "title" : "gc 垃圾回收 - ", "url" : "/MyBlog/golang/2020/06/09/gc.html" } , { "title" : "Errors with stack trace - ", "url" : "/MyBlog/golang/2020/06/09/error.html" } , { "title" : "golang动态加载原生代码思路 - ", "url" : "/MyBlog/golang/2020/06/09/dynamic.html" } , { "title" : "dto - ", "url" : "/MyBlog/golang/2020/06/09/dto.html" } , { "title" : "ddd - ", "url" : "/MyBlog/architect/2020/06/09/ddd.html" } , { "title" : "compiler - ", "url" : "/MyBlog/golang/2020/06/09/compiler.html" } , { "title" : "binfmt_misc Using Go as a scripting language - ", "url" : "/MyBlog/golang/2020/06/09/binfmt_misc.html" } , { "title" : "不要轻易使用 Alpine 镜像来构建 Docker 镜像 - ", "url" : "/MyBlog/golang/2020/06/09/Alpine.html" } , { "title" : "chi - ", "url" : "/MyBlog/golang/2020/06/07/chi.html" } , { "title" : "通道死锁经典错误案例详解 - ", "url" : "/MyBlog/golang/2020/06/07/channel.html" } , { "title" : "valgrind - ", "url" : "/MyBlog/php/2020/06/06/valgrind.html" } , { "title" : "phpdbg gdb - ", "url" : "/MyBlog/php/2020/06/06/phpdbg.html" } , { "title" : "gdb 调试动态链接库 - ", "url" : "/MyBlog/php/2020/06/06/gdbso.html" } , { "title" : "current_execute_data - ", "url" : "/MyBlog/php/2020/06/06/current_execute_data.html" } , { "title" : "bz2 Mac 文件解压缩 - ", "url" : "/MyBlog/linux/2020/06/06/bz2.html" } , { "title" : "valgrind - ", "url" : "/MyBlog/php/2020/06/05/valgrind.html" } , { "title" : "strlen - ", "url" : "/MyBlog/php/2020/06/05/strlen.html" } , { "title" : "gdb调试 php - ", "url" : "/MyBlog/php/2020/06/05/gdb.html" } , { "title" : "zend_string char - ", "url" : "/MyBlog/php/2020/06/03/zend_string.html" } , { "title" : "usr2 - ", "url" : "/MyBlog/php/2020/06/03/usr2.html" } , { "title" : "sub_array - ", "url" : "/MyBlog/php/2020/06/03/sub_array.html" } , { "title" : "interface - ", "url" : "/MyBlog/golang/2020/06/03/interface.html" } , { "title" : "bash if - ", "url" : "/MyBlog/linux/2020/06/03/if.html" } , { "title" : "go mod - ", "url" : "/MyBlog/golang/2020/06/03/gomod.html" } , { "title" : "go 1.14 变化 - ", "url" : "/MyBlog/golang/2020/06/03/go.html" } , { "title" : "gin - ", "url" : "/MyBlog/golang/2020/06/03/gin.html" } , { "title" : "goroutine和channel - ", "url" : "/MyBlog/golang/2020/06/03/channel.html" } , { "title" : "扩展回调php函数 - ", "url" : "/MyBlog/php/2020/06/03/callback.html" } , { "title" : "检测三种不同操作系统的Bash脚本 - ", "url" : "/MyBlog/linux/2020/06/03/bash.html" } , { "title" : "Jupiter - ", "url" : "/MyBlog/golang/2020/06/03/Jupiter.html" } , { "title" : "stacktrace - ", "url" : "/MyBlog/php/2020/06/02/stacktrace.html" } , { "title" : "execute_data - ", "url" : "/MyBlog/php/2020/06/02/execute_data.html" } , { "title" : "call_user_function - ", "url" : "/MyBlog/php/2020/06/02/call_user_function.html" } , { "title" : "tcmalloc - ", "url" : "/MyBlog/golang/2020/06/01/tcmalloc.html" } , { "title" : "JSON Web Token - ", "url" : "/MyBlog/golang/2020/06/01/jwt.html" } , { "title" : "goland 激活 - ", "url" : "/MyBlog/golang/2020/06/01/goland.html" } , { "title" : "gdb - ", "url" : "/MyBlog/algorithm/2020/06/01/gdb.html" } , { "title" : "ZEND_HASH_FOREACH_KEY_VAL php扩展hashtable操作 - ", "url" : "/MyBlog/php/2020/06/01/ZEND_HASH_FOREACH_KEY_VAL.html" } , { "title" : "Container - ", "url" : "/MyBlog/golang/2020/06/01/Container.html" } , { "title" : "zval 替代char 解决返回字符串内存泄漏问题 - ", "url" : "/MyBlog/php/2020/05/31/zval.html" } , { "title" : "zend_mm_heap corrupted - ", "url" : "/MyBlog/php/2020/05/31/zend_mm_heap.html" } , { "title" : "sed 替换括号 - ", "url" : "/MyBlog/linux/2020/05/31/sed.html" } , { "title" : "schedule 工作线程的执行流程与调度循环 - ", "url" : "/MyBlog/golang/2020/05/31/schedule.html" } , { "title" : "raw 解决括号冲突问题 - ", "url" : "/MyBlog/jekyll/2020/05/31/raw.html" } , { "title" : "php_json_encode_zval - ", "url" : "/MyBlog/web/2020/05/31/php_json_encode_zval.html" } , { "title" : "ddd - ", "url" : "/MyBlog/golang/2020/05/31/ddd.html" } , { "title" : "cores 用lldb打不开 invalid process - ", "url" : "/MyBlog/linux/2020/05/31/cores.html" } , { "title" : "clion - ", "url" : "/MyBlog/algorithm/2020/05/31/clion.html" } , { "title" : "cJSON c语言json库 - ", "url" : "/MyBlog/web/2020/05/31/cJSON.html" } , { "title" : "PHP7扩展开发之数组处理 - ", "url" : "/MyBlog/php/2020/05/31/array.html" } , { "title" : "ZEND_HASH_FOREACH_KEY_VAL - ", "url" : "/MyBlog/php/2020/05/31/ZEND_HASH_FOREACH_KEY_VAL.html" } , { "title" : "PHP 调试技巧 扩展调试 - ", "url" : "/MyBlog/php/2020/05/30/xdebug.html" } , { "title" : "interface - ", "url" : "/MyBlog/golang/2020/05/30/interface.html" } , { "title" : "Bus error 10 - ", "url" : "/MyBlog/linux/2020/05/30/buserror.html" } , { "title" : "make - ", "url" : "/MyBlog/linux/2020/05/29/make.html" } , { "title" : "文件句柄泄漏 - ", "url" : "/MyBlog/linux/2020/05/29/handler.html" } , { "title" : "mac上分析coredump文件 - ", "url" : "/MyBlog/linux/2020/05/29/gdbcore.html" } , { "title" : "mac gdb 安装 - ", "url" : "/MyBlog/linux/2020/05/29/gdb.html" } , { "title" : "core 文件 调试 追踪 Segmentation fault 11 - ", "url" : "/MyBlog/linux/2020/05/29/core.html" } , { "title" : "brew install 问题解决 - ", "url" : "/MyBlog/web/2020/05/29/brew.html" } , { "title" : "PHP 接口调用报错 502 Bad Gateway - ", "url" : "/MyBlog/php/2020/05/29/502.html" } , { "title" : "BOOT_LDFLAGS - ", "url" : "/MyBlog/web/2020/05/29/10-didi.html" } , { "title" : "zend_execute_ex - ", "url" : "/MyBlog/php/2020/05/28/zend_execute_ex.html" } , { "title" : "zend_execute_data - ", "url" : "/MyBlog/php/2020/05/28/zend_execute_data.html" } , { "title" : "PHP打印调用堆栈的三种方法 - ", "url" : "/MyBlog/php/2020/05/28/stack.html" } , { "title" : "php7 基础上编译扩展,hack文件操作 - ", "url" : "/MyBlog/php/2020/05/28/php_ext.html" } , { "title" : "extension php扩展和zend扩展区别 - ", "url" : "/MyBlog/php/2020/05/28/extension.html" } , { "title" : "yaf - ", "url" : "/MyBlog/php/2020/05/27/yaf.html" } , { "title" : "wechat - ", "url" : "/MyBlog/web/2020/05/27/wechat.html" } , { "title" : "stackpreempt 抢占调度 - ", "url" : "/MyBlog/golang/2020/05/27/stackpreempt.html" } , { "title" : "php.ini中session的配置 - ", "url" : "/MyBlog/web/2020/05/27/session.html" } , { "title" : "phpt 是php源码的测试文件 - ", "url" : "/MyBlog/php/2020/05/27/phpt.html" } , { "title" : "如何判断interface为nil - ", "url" : "/MyBlog/golang/2020/05/27/nil.html" } , { "title" : "golang 最新文章 - ", "url" : "/MyBlog/golang/2020/05/27/newa.html" } , { "title" : "log 高性能 线程安全 zap logrus - ", "url" : "/MyBlog/golang/2020/05/27/log.html" } , { "title" : "goroutine - ", "url" : "/MyBlog/golang/2020/05/27/goroutine.html" } , { "title" : "gocheck - ", "url" : "/MyBlog/golang/2020/05/27/gocheck.html" } , { "title" : "gh-ost mysql binlog同步工具 - ", "url" : "/MyBlog/golang/2020/05/27/ghost.html" } , { "title" : "php 扩展编写ext - ", "url" : "/MyBlog/php/2020/05/27/ext.html" } , { "title" : "books - ", "url" : "/MyBlog/web/2020/05/27/books.html" } , { "title" : "如何保证系统高可用总结 - ", "url" : "/MyBlog/architect/2020/05/27/avaliablity.html" } , { "title" : "PHP严格模式 Strict standards - ", "url" : "/MyBlog/php/2020/05/27/Strict.html" } , { "title" : "解决mac 没有php.ini 文件问题 - ", "url" : "/MyBlog/php/2020/05/26/phpini.html" } , { "title" : "golang如何修改json文件内容 - ", "url" : "/MyBlog/golang/2020/05/26/json.html" } , { "title" : "find - ", "url" : "/MyBlog/linux/2020/05/26/find.html" } , { "title" : "composer replace - ", "url" : "/MyBlog/php/2020/05/26/composer_replace.html" } , { "title" : "composer openssl extension is required - ", "url" : "/MyBlog/php/2020/05/26/composer.html" } , { "title" : "sync.pool - ", "url" : "/MyBlog/golang/2020/05/25/pool.html" } , { "title" : "goroutine 启动运行详细过程 - ", "url" : "/MyBlog/golang/2020/05/25/goroutine.html" } , { "title" : "fault - ", "url" : "/MyBlog/golang/2020/05/25/fault.html" } , { "title" : "DNS support edns-client-subnet - ", "url" : "/MyBlog/golang/2020/05/25/edns.html" } , { "title" : "configMap - ", "url" : "/MyBlog/k8s/2020/05/25/configMap.html" } , { "title" : "基于Docker的Golang交叉编译 - ", "url" : "/MyBlog/docker/2020/05/25/build.html" } , { "title" : "LDAP in go - ", "url" : "/MyBlog/golang/2020/05/25/LDAP.html" } , { "title" : "Bazel - ", "url" : "/MyBlog/golang/2020/05/25/Bazel.html" } , { "title" : "rsync scp sftp 文件同步方式 - ", "url" : "/MyBlog/linux/2020/05/24/rsync.html" } , { "title" : "golang 父类调用子类方法 继承多态的实现方式 - ", "url" : "/MyBlog/golang/2020/05/24/interface.html" } , { "title" : "Speeding up json processing in go - ", "url" : "/MyBlog/golang/2020/05/23/json.html" } , { "title" : "typeAssert - ", "url" : "/MyBlog/golang/2020/05/22/typeAssert.html" } , { "title" : "sync.Mutex使用注意事项 - ", "url" : "/MyBlog/golang/2020/05/22/sync.html" } , { "title" : "golang单例模式 - ", "url" : "/MyBlog/golang/2020/05/22/singleton.html" } , { "title" : "map 加锁与sync.Map性能对比分析 - ", "url" : "/MyBlog/golang/2020/05/22/rwmutext.html" } , { "title" : "postman - ", "url" : "/MyBlog/web/2020/05/22/postman.html" } , { "title" : "补偿还是幂等来解决一致性问题 - ", "url" : "/MyBlog/web/2020/05/22/equal.html" } , { "title" : "postman 压力测试 - ", "url" : "/MyBlog/web/2020/05/21/postman.html" } , { "title" : "gem rvm bundle - ", "url" : "/MyBlog/web/2020/05/21/gem.html" } , { "title" : "brew - ", "url" : "/MyBlog/web/2020/05/21/brew.html" } , { "title" : "xdebug - ", "url" : "/MyBlog/php/2020/05/20/xdebug.html" } , { "title" : "timer - ", "url" : "/MyBlog/golang/2020/05/20/timer.html" } , { "title" : "mcall systemstack - ", "url" : "/MyBlog/golang/2020/05/20/systemstack.html" } , { "title" : "sched_init - ", "url" : "/MyBlog/linux/2020/05/20/sched_init.html" } , { "title" : "phpar - ", "url" : "/MyBlog/web/2020/05/20/phpar.html" } , { "title" : "mpg 状态机队列 - ", "url" : "/MyBlog/golang/2020/05/20/mpg.html" } , { "title" : "map - ", "url" : "/MyBlog/golang/2020/05/20/map.html" } , { "title" : "du - ", "url" : "/MyBlog/linux/2020/05/20/du.html" } , { "title" : "channel实现sync包里的同步锁 - ", "url" : "/MyBlog/golang/2020/05/20/chan.html" } , { "title" : "xdebug 配置教程 - ", "url" : "/MyBlog/php/2020/05/20/cdebug.html" } , { "title" : "benchmark - ", "url" : "/MyBlog/golang/2020/05/20/benchmark.html" } , { "title" : "Theano - ", "url" : "/MyBlog/algorithm/2020/05/20/Theano.html" } , { "title" : "webrtc - ", "url" : "/MyBlog/golang/2020/05/19/webrtc.html" } , { "title" : "unsafe - ", "url" : "/MyBlog/golang/2020/05/19/unsafe.html" } , { "title" : "sysmon 线程到底做了什么 - ", "url" : "/MyBlog/golang/2020/05/19/sysmon.html" } , { "title" : "runtime - ", "url" : "/MyBlog/golang/2020/05/19/runtime.html" } , { "title" : "pstree ps 查看线程数 - ", "url" : "/MyBlog/golang/2020/05/19/pstree.html" } , { "title" : "ssm 业务应用监控 - ", "url" : "/MyBlog/web/2020/05/18/ssm.html" } , { "title" : "块存储文件存储对象存储 - ", "url" : "/MyBlog/storage/2020/05/18/s3.html" } , { "title" : "gdb 查看golang程序的入口和启动 流程 - ", "url" : "/MyBlog/golang/2020/05/18/main.html" } , { "title" : "etcd - ", "url" : "/MyBlog/storage/2020/05/18/etcd.html" } , { "title" : "cqrs 命令和查询责任分离 - ", "url" : "/MyBlog/web/2020/05/18/cqrs.html" } , { "title" : "schedt systemon - ", "url" : "/MyBlog/golang/2020/05/17/schedt.html" } , { "title" : "mpg - ", "url" : "/MyBlog/golang/2020/05/17/mpg.html" } , { "title" : "chan - ", "url" : "/MyBlog/golang/2020/05/17/chan.html" } , { "title" : "bootstrap - ", "url" : "/MyBlog/golang/2020/05/17/bootstrap.html" } , { "title" : "Scheduler 原理解析 - ", "url" : "/MyBlog/golang/2020/05/17/Scheduler.html" } , { "title" : "slice - ", "url" : "/MyBlog/golang/2020/05/16/slice.html" } , { "title" : "race - ", "url" : "/MyBlog/golang/2020/05/16/race.html" } , { "title" : "nil - ", "url" : "/MyBlog/golang/2020/05/16/nil.html" } , { "title" : "lock chan - ", "url" : "/MyBlog/golang/2020/05/16/lock.html" } , { "title" : "apcu - ", "url" : "/MyBlog/php/2020/05/16/apcu.html" } , { "title" : "timer - ", "url" : "/MyBlog/golang/2020/05/15/timer.html" } , { "title" : "semgrep - ", "url" : "/MyBlog/golang/2020/05/15/semgrep.html" } , { "title" : "Google Kubernetes Engine上运行HA MySQL - ", "url" : "/MyBlog/k8s/2020/05/15/mysql.html" } , { "title" : "lwn - ", "url" : "/MyBlog/golang/2020/05/15/lwn.html" } , { "title" : "基于 GoLand 在 Docker 容器中调试 Go 应用程序 - ", "url" : "/MyBlog/golang/2020/05/15/goland.html" } , { "title" : "escape Golang 性能优化实战 - ", "url" : "/MyBlog/golang/2020/05/15/escape.html" } , { "title" : "四种常见的POST提交数据方式对应的content-type取值 - ", "url" : "/MyBlog/web/2020/05/15/content.html" } , { "title" : "cola 微服务业务架构的探索 - ", "url" : "/MyBlog/golang/2020/05/15/cola.html" } , { "title" : "基于 Alluxio 数据缓存的大规模深度学习训练性能优化 - ", "url" : "/MyBlog/golang/2020/05/15/alluxio.html" } , { "title" : "go race 排查 protobuf Marshal Panic - ", "url" : "/MyBlog/golang/2020/05/12/race.html" } , { "title" : "调试golang的bug以及性能问题的实践方法 - ", "url" : "/MyBlog/golang/2020/05/12/debug.html" } , { "title" : "Go替代Python在生产环境中进行数据分析 - ", "url" : "/MyBlog/golang/2020/05/12/data.html" } , { "title" : "类型断言 - ", "url" : "/MyBlog/golang/2020/05/12/assert.html" } , { "title" : "服务网格与Serverless - ", "url" : "/MyBlog/golang/2020/05/12/Serverless.html" } , { "title" : "Go as a Scripting Language - ", "url" : "/MyBlog/golang/2020/05/11/script.html" } , { "title" : "Digging deeper into the analysis of Go-code - ", "url" : "/MyBlog/golang/2020/05/11/dig.html" } , { "title" : "prohibiting comparisons - ", "url" : "/MyBlog/golang/2020/05/11/compare.html" } , { "title" : "Take a walk the Go AST - ", "url" : "/MyBlog/golang/2020/05/11/ast.html" } , { "title" : "写一个语言 编译器 虚拟机 - ", "url" : "/MyBlog/golang/2020/05/09/tinyscript.html" } , { "title" : "限流器 - ", "url" : "/MyBlog/golang/2020/05/09/limiter.html" } , { "title" : "为什么需要 Pod - ", "url" : "/MyBlog/golang/2020/05/08/pod.html" } , { "title" : "Etcd使用go module的灾难 - ", "url" : "/MyBlog/golang/2020/05/08/gomod.html" } , { "title" : "深入TLS/SSL协议 - ", "url" : "/MyBlog/golang/2020/05/07/thl.html" } , { "title" : "system-design-primer - ", "url" : "/MyBlog/web/2020/05/07/system-design-primer.html" } , { "title" : "Commit message 和 Change log 编写指南 - ", "url" : "/MyBlog/web/2020/05/07/git.html" } , { "title" : "context取消goroutine执行的方法 - ", "url" : "/MyBlog/golang/2020/05/07/context.html" } , { "title" : "SOFA - ", "url" : "/MyBlog/web/2020/05/07/SOFA.html" } , { "title" : "Go语言sync包的应用详解 - ", "url" : "/MyBlog/golang/2020/05/06/sync.html" } , { "title" : "profiling - ", "url" : "/MyBlog/golang/2020/05/06/profiling.html" } , { "title" : "goreplay 流量回放方案 - ", "url" : "/MyBlog/golang/2020/05/06/goreplay.html" } , { "title" : "dubbo-go - ", "url" : "/MyBlog/golang/2020/05/06/dubbo-go-D-D.html" } , { "title" : "Golang Context 原理与实战 - ", "url" : "/MyBlog/golang/2020/05/06/context.html" } , { "title" : "Goroutine的创建与销毁 - ", "url" : "/MyBlog/golang/2020/05/06/Goroutine.html" } , { "title" : "benchmark - ", "url" : "/MyBlog/golang/2020/04/30/benchmark.html" } , { "title" : "gomod - ", "url" : "/MyBlog/golang/2020/04/29/gomod.html" } , { "title" : "GraphQL - ", "url" : "/MyBlog/golang/2020/04/29/GraphQL.html" } , { "title" : "json - ", "url" : "/MyBlog/golang/2020/04/28/json.html" } , { "title" : "etcd3 数据不一致 bug 分析 - ", "url" : "/MyBlog/storage/2020/04/28/etcd.html" } , { "title" : "go服务内存管理 - ", "url" : "/MyBlog/golang/2020/04/28/MADV_FREE.html" } , { "title" : "Go Search Extension - ", "url" : "/MyBlog/golang/2020/04/26/search.html" } , { "title" : "Go 协作与抢占 - ", "url" : "/MyBlog/golang/2020/04/26/schdule.html" } , { "title" : "middleWare - ", "url" : "/MyBlog/algorithm/2020/04/26/middleWare.html" } , { "title" : "Istio 分层架构 - ", "url" : "/MyBlog/golang/2020/04/26/lstio.html" } , { "title" : "Inlining optimisations in Go - ", "url" : "/MyBlog/golang/2020/04/26/inline.html" } , { "title" : "kubernetes网络 - ", "url" : "/MyBlog/k8s/2020/04/26/epbf.html" } , { "title" : "dubbo-go 中如何实现路由策略功能 - ", "url" : "/MyBlog/golang/2020/04/26/dubbo.html" } , { "title" : "淘宝云梯分布式计算平台架构 - ", "url" : "/MyBlog/golang/2020/04/26/dbsync.html" } , { "title" : "Golang context源码阅读与分析 - ", "url" : "/MyBlog/golang/2020/04/26/context.html" } , { "title" : "Colly外的又一Go爬虫框架 — Goribot - ", "url" : "/MyBlog/golang/2020/04/26/Goribot.html" } , { "title" : "How to Manage Database Timeouts and Cancellations in Go - ", "url" : "/MyBlog/golang/2020/04/26/Cancellations.html" } , { "title" : "binlog - ", "url" : "/MyBlog/storage/2020/04/24/binlog.html" } , { "title" : "Parquet - ", "url" : "/MyBlog/storage/2020/04/24/Parquet.html" } , { "title" : "argo - ", "url" : "/MyBlog/golang/2020/04/23/argo.html" } , { "title" : "apitest - ", "url" : "/MyBlog/golang/2020/04/23/apitest.html" } , { "title" : "pprof分析变量逃逸过程 - ", "url" : "/MyBlog/golang/2020/04/22/escape.html" } , { "title" : "sqlStmt的使用以及坑 - ", "url" : "/MyBlog/storage/2020/04/21/sql.html" } , { "title" : "切片 - ", "url" : "/MyBlog/golang/2020/04/21/slice.html" } , { "title" : "PHP SPL(PHP 标准库) - ", "url" : "/MyBlog/php/2020/04/21/getArrayCopy.html" } , { "title" : "DDL平台服务 - ", "url" : "/MyBlog/architect/2020/04/21/ddl.html" } , { "title" : "autocommit - ", "url" : "/MyBlog/storage/2020/04/21/autocommit.html" } , { "title" : "MyRocks - ", "url" : "/MyBlog/storage/2020/04/21/MyRocks.html" } , { "title" : "HTTP3 - ", "url" : "/MyBlog/web/2020/04/21/HTTP3.html" } , { "title" : "Using Go as a scripting language in Linux - ", "url" : "/MyBlog/golang/2020/04/20/script.html" } , { "title" : "OPA 进阶-分布式利器 Bundle - ", "url" : "/MyBlog/golang/2020/04/20/opa.html" } , { "title" : "从graphql-go转换到gqlgen - ", "url" : "/MyBlog/golang/2020/04/20/gqlgen.html" } , { "title" : "eda 事件驱动架构 - ", "url" : "/MyBlog/architect/2020/04/20/eda.html" } , { "title" : "binlog - ", "url" : "/MyBlog/storage/2020/04/20/binlog.html" } , { "title" : "linux下使用binfmt_misc设定不同二进制的打开程序 - ", "url" : "/MyBlog/linux/2020/04/20/binfmt_misc.html" } , { "title" : "云原生大型分布式监控系统 Thanos 部署与实践 - ", "url" : "/MyBlog/golang/2020/04/20/Thanos.html" } , { "title" : "GTID - ", "url" : "/MyBlog/storage/2020/04/20/GTID.html" } , { "title" : "DomainEvents - ", "url" : "/MyBlog/architect/2020/04/20/DomainEvents.html" } , { "title" : "二进制表示 - ", "url" : "/MyBlog/golang/2020/04/19/uint.html" } , { "title" : "Local vs Global Runnable Queue - ", "url" : "/MyBlog/golang/2020/04/19/runqueue.html" } , { "title" : "gc 3色标记算法 - ", "url" : "/MyBlog/golang/2020/04/19/gc.html" } , { "title" : "为什么DNS使用UDP而不是TCP - ", "url" : "/MyBlog/web/2020/04/18/%E4%B8%BA%E4%BB%80%E4%B9%88DNS%E4%BD%BF%E7%94%A8UDP%E8%80%8C%E4%B8%8D%E6%98%AFTCP.html" } , { "title" : "如何做权限管理系统设计 - ", "url" : "/MyBlog/architect/2020/04/18/right.html" } , { "title" : "pt-online-schema-change - ", "url" : "/MyBlog/storage/2020/04/18/pt-online-schema-change.html" } , { "title" : "局部敏感哈希(Locality Sensitive Hashing)和MinHash - ", "url" : "/MyBlog/algorithm/2020/04/18/lsh.html" } , { "title" : "协程与线程的区别 - ", "url" : "/MyBlog/golang/2020/04/18/goroutine.html" } , { "title" : "InnoDB与MyISAM 聚集索引与非聚集索引 - ", "url" : "/MyBlog/storage/2020/04/18/Index.html" } , { "title" : "DNS原理和智能DNS及CDN - ", "url" : "/MyBlog/web/2020/04/17/dns.html" } , { "title" : "WebRTC Gaming as a Service - ", "url" : "/MyBlog/web/2020/04/17/WebRTC.html" } , { "title" : "severless - ", "url" : "/MyBlog/web/2020/04/16/severless.html" } , { "title" : "Java各种规则引擎 - ", "url" : "/MyBlog/web/2020/04/16/ruleEngine.html" } , { "title" : "分布式系统频次限制实现 - ", "url" : "/MyBlog/algorithm/2020/04/16/rate.html" } , { "title" : "工作流与BPM - ", "url" : "/MyBlog/web/2020/04/16/NPM.html" } , { "title" : "EDA事件驱动架构 - ", "url" : "/MyBlog/web/2020/04/16/EDA.html" } , { "title" : "Aviator java的表达式引擎化框架 - ", "url" : "/MyBlog/web/2020/04/16/Aviator.html" } , { "title" : "字典 - ", "url" : "/MyBlog/algorithm/2020/04/15/set.html" } , { "title" : "线程数与QPS计算 - ", "url" : "/MyBlog/web/2020/04/15/qps.html" } , { "title" : "减小Docker镜像的简单技巧 - ", "url" : "/MyBlog/docker/2020/04/15/image.html" } , { "title" : "HashTable - ", "url" : "/MyBlog/algorithm/2020/04/15/hashmap.html" } , { "title" : "Goimports explained - ", "url" : "/MyBlog/golang/2020/04/15/goimports-s.html" } , { "title" : "writing a SQL database from scratch in Go - ", "url" : "/MyBlog/golang/2020/04/15/database.html" } , { "title" : "craw - ", "url" : "/MyBlog/golang/2020/04/15/craw.html" } , { "title" : "close_wait - ", "url" : "/MyBlog/golang/2020/04/15/close_wait.html" } , { "title" : "Libcsp - ", "url" : "/MyBlog/golang/2020/04/15/Libcsp.html" } , { "title" : "GO111MODULE - ", "url" : "/MyBlog/golang/2020/04/15/GO111MODULE.html" } , { "title" : "Handling Errors in Your HTTP Handlers - ", "url" : "/MyBlog/golang/2020/04/15/Errors.html" } , { "title" : "查找算法-2-3-4树和普通红黑树 - ", "url" : "/MyBlog/algorithm/2020/04/15/234.html" } , { "title" : "vet - ", "url" : "/MyBlog/golang/2020/04/14/vet.html" } , { "title" : "轻量级 Kubernetes k3s 初探 - ", "url" : "/MyBlog/k8s/2020/04/14/k3s.html" } , { "title" : "graphql-code-generator 生成graphql - ", "url" : "/MyBlog/golang/2020/04/14/graphql.html" } , { "title" : "Debug实现原理 - ", "url" : "/MyBlog/linux/2020/04/14/debug.html" } , { "title" : "品类管理 - ", "url" : "/MyBlog/architect/2020/04/14/category.html" } , { "title" : "Reflections on 2 Years of Golang - ", "url" : "/MyBlog/golang/2020/04/14/Golang.html" } , { "title" : "自动换肤系统设计 - ", "url" : "/MyBlog/architect/2020/04/14/ChangeSkin.html" } , { "title" : "statically - ", "url" : "/MyBlog/golang/2020/04/13/statically.html" } , { "title" : "TinyGo - ", "url" : "/MyBlog/golang/2020/04/13/TinyGo.html" } , { "title" : "reflect - ", "url" : "/MyBlog/golang/2020/04/11/reflect.html" } , { "title" : "dubbo-go 与 gRPC - ", "url" : "/MyBlog/golang/2020/04/11/gorpc.html" } , { "title" : "delve - ", "url" : "/MyBlog/golang/2020/04/10/delve.html" } , { "title" : "反向二进制迭代(Reverse Binary Iteration)算法 - ", "url" : "/MyBlog/algorithm/2020/04/09/rbi.html" } , { "title" : "raft - ", "url" : "/MyBlog/golang/2020/04/09/raft.html" } , { "title" : "goland 安装破解 - ", "url" : "/MyBlog/golang/2020/04/09/goland.html" } , { "title" : "go 远程调试 - ", "url" : "/MyBlog/golang/2020/04/09/godebug.html" } , { "title" : "TreeMap和HashMap的区别 - ", "url" : "/MyBlog/algorithm/2020/04/09/TreeMap.html" } , { "title" : "TCP协议中的疑难杂症 - ", "url" : "/MyBlog/linux/2020/04/08/tcp.html" } , { "title" : "composer - ", "url" : "/MyBlog/php/2020/04/08/composer.html" } , { "title" : "xa mysql xid - ", "url" : "/MyBlog/storage/2020/04/07/xa.html" } , { "title" : "go 类型转换 - ", "url" : "/MyBlog/golang/2020/04/07/type.html" } , { "title" : "ticker 导致cpu泄漏 - ", "url" : "/MyBlog/golang/2020/04/07/ticker.html" } , { "title" : "并发模型汇总 - ", "url" : "/MyBlog/golang/2020/04/07/socket.html" } , { "title" : "分布式ID生成方案 - ", "url" : "/MyBlog/algorithm/2020/04/07/snowflake.html" } , { "title" : "pprof 时间点对比 - ", "url" : "/MyBlog/golang/2020/04/07/pprof.html" } , { "title" : "lru - ", "url" : "/MyBlog/storage/2020/04/07/lru.html" } , { "title" : "IO 多路复用 - ", "url" : "/MyBlog/golang/2020/04/07/io.html" } , { "title" : "Epoll的本质 内部实现原理 - ", "url" : "/MyBlog/linux/2020/04/07/epoll.html" } , { "title" : "kubernetes 控制器 Deployment 核心机制 - ", "url" : "/MyBlog/k8s/2020/04/07/deployment.html" } , { "title" : "csp actor 并发与并行 - ", "url" : "/MyBlog/golang/2020/04/07/csp.html" } , { "title" : "codereview - ", "url" : "/MyBlog/golang/2020/04/07/codereview.html" } , { "title" : "socket 的 connect、listen、accept 和全连接队列、半连接队列的原理 - ", "url" : "/MyBlog/linux/2020/04/07/accept.html" } , { "title" : "Slice 实现原理分析 - ", "url" : "/MyBlog/golang/2020/04/07/Slice.html" } , { "title" : "stream_set_timeout - ", "url" : "/MyBlog/php/2020/04/03/stream_set_timeout.html" } , { "title" : "__destruct与register_shutdown_function执行的先后顺序 - ", "url" : "/MyBlog/php/2020/04/03/register_shutdown_function.html" } , { "title" : "Generating Go code in Kubebuilder style - ", "url" : "/MyBlog/golang/2020/04/03/generation.html" } , { "title" : "enable_file_override - ", "url" : "/MyBlog/php/2020/04/03/enable_file_override.html" } , { "title" : "untyped - ", "url" : "/MyBlog/golang/2020/04/02/untyped.html" } , { "title" : "Go实现Raft:命令和日志复制 - ", "url" : "/MyBlog/golang/2020/04/02/raft.html" } , { "title" : "nebula 图数据库 - ", "url" : "/MyBlog/storage/2020/04/02/nebula.html" } , { "title" : "标准化和集中化处理Golang日志的一些建议 - ", "url" : "/MyBlog/golang/2020/04/02/logrus.html" } , { "title" : "look-aside cache - ", "url" : "/MyBlog/storage/2020/04/02/cache.html" } , { "title" : "Scheduler - ", "url" : "/MyBlog/golang/2020/04/02/Scheduler.html" } , { "title" : "新版 Protobuf API - ", "url" : "/MyBlog/golang/2020/04/02/Protobuf.html" } , { "title" : "CGO_ENABLED - ", "url" : "/MyBlog/golang/2020/04/02/CGO_ENABLED.html" } , { "title" : "redis rehash - ", "url" : "/MyBlog/storage/2020/04/01/rehash.html" } , { "title" : "pagecache 预读 - ", "url" : "/MyBlog/linux/2020/04/01/pagecache.html" } , { "title" : "Golang HTTP服务平滑重启及升级 - ", "url" : "/MyBlog/golang/2020/04/01/grace.html" } , { "title" : "goadmin 极速搭建golang应用管理后台 - ", "url" : "/MyBlog/golang/2020/04/01/goadmin.html" } , { "title" : "B+Tree索引树高度如何计算 - ", "url" : "/MyBlog/storage/2020/04/01/btree.html" } , { "title" : "tight loop - ", "url" : "/MyBlog/golang/2020/03/31/tight.html" } , { "title" : "scan - ", "url" : "/MyBlog/storage/2020/03/31/scan.html" } , { "title" : "Linux如何实现共享内存 - ", "url" : "/MyBlog/linux/2020/03/31/mmap.html" } , { "title" : "cgroup - ", "url" : "/MyBlog/linux/2020/03/31/cgroup.html" } , { "title" : "编写可测试 Go 代码的一种模式 - ", "url" : "/MyBlog/golang/2020/03/30/ut.html" } , { "title" : "tcp - ", "url" : "/MyBlog/linux/2020/03/30/tcp.html" } , { "title" : "Go语言如何实现stop the world - ", "url" : "/MyBlog/golang/2020/03/30/stop.html" } , { "title" : "gRPC 的重试策略 - ", "url" : "/MyBlog/algorithm/2020/03/30/retry.html" } , { "title" : "自定义Go Json的序列化方法 - ", "url" : "/MyBlog/golang/2020/03/30/go.html" } , { "title" : "dubbo-go - ", "url" : "/MyBlog/golang/2020/03/30/dubbo-go.html" } , { "title" : "爬虫系统设计 - ", "url" : "/MyBlog/architect/2020/03/30/crawler.html" } , { "title" : "分布式从 ACID、CAP、BASE 的理论推进 - ", "url" : "/MyBlog/storage/2020/03/30/base.html" } , { "title" : "SO_REUSEPORT 端口复用 - ", "url" : "/MyBlog/linux/2020/03/30/SO_REUSEPORT.html" } , { "title" : "go Compilers - ", "url" : "/MyBlog/golang/2020/03/30/Compilers.html" } , { "title" : "淘宝架构演进背后——零售业务中台架构设计探讨及实践 - ", "url" : "/MyBlog/architect/2020/03/27/taobao.html" } , { "title" : "selectgo - ", "url" : "/MyBlog/golang/2020/03/27/selectgo.html" } , { "title" : "pprof unrecognized profile format - ", "url" : "/MyBlog/golang/2020/03/27/pprof.html" } , { "title" : "expvar - ", "url" : "/MyBlog/golang/2020/03/27/expvar.html" } , { "title" : "runtime debug - ", "url" : "/MyBlog/golang/2020/03/27/debug.html" } , { "title" : "MemStats - ", "url" : "/MyBlog/golang/2020/03/27/MemStats.html" } , { "title" : "提高Go的GOGC变量能提升性能 - ", "url" : "/MyBlog/golang/2020/03/27/GOGC.html" } , { "title" : "Go项目简单接入travis ci - ", "url" : "/MyBlog/golang/2020/03/26/travis.html" } , { "title" : "Debugging performance issues in Go programs - ", "url" : "/MyBlog/golang/2020/03/26/profile.html" } , { "title" : "pprof 原理 - ", "url" : "/MyBlog/golang/2020/03/26/prof.html" } , { "title" : "golang pprof访问debug/pprof报404 page not found的解决办法 - ", "url" : "/MyBlog/golang/2020/03/26/pprof.html" } , { "title" : "两个进程同时监听同一个端口 - ", "url" : "/MyBlog/linux/2020/03/26/port.html" } , { "title" : "X-Content-Type-Options nosniff - ", "url" : "/MyBlog/web/2020/03/26/nosniff.html" } , { "title" : "微服务设计模式 - ", "url" : "/MyBlog/architect/2020/03/26/micro.html" } , { "title" : "结构体转成map string interface - ", "url" : "/MyBlog/golang/2020/03/26/map.html" } , { "title" : "gperftools 定位CPU热点函数 - ", "url" : "/MyBlog/golang/2020/03/26/gperftools.html" } , { "title" : "flat cum sum pprof文本输出的含义 - ", "url" : "/MyBlog/golang/2020/03/26/cum.html" } , { "title" : "wrk - ", "url" : "/MyBlog/golang/2020/03/25/wrk.html" } , { "title" : "go tool trace - ", "url" : "/MyBlog/golang/2020/03/25/trace.html" } , { "title" : "pprof - ", "url" : "/MyBlog/golang/2020/03/25/pprof.html" } , { "title" : "git clone mirror bare - ", "url" : "/MyBlog/golang/2020/03/25/mirror.html" } , { "title" : "httptrace - ", "url" : "/MyBlog/golang/2020/03/25/httptrace.html" } , { "title" : "defer - ", "url" : "/MyBlog/golang/2020/03/25/defer.html" } , { "title" : "brew install 慢的解决方法 - ", "url" : "/MyBlog/web/2020/03/25/brew.html" } , { "title" : "Nebula - ", "url" : "/MyBlog/storage/2020/03/25/Nebula.html" } , { "title" : "FlameGraph - ", "url" : "/MyBlog/golang/2020/03/25/FlameGraph.html" } , { "title" : "composer source 和 dist。 - ", "url" : "/MyBlog/php/2020/03/24/source.html" } , { "title" : "schedule - ", "url" : "/MyBlog/golang/2020/03/24/schedule.html" } , { "title" : "MacOS 下使用 PHPStorm 打开隐藏文件夹 - ", "url" : "/MyBlog/web/2020/03/24/phpstorm.html" } , { "title" : "goimports - ", "url" : "/MyBlog/golang/2020/03/24/goimports.html" } , { "title" : "composer - ", "url" : "/MyBlog/php/2020/03/24/composer.html" } , { "title" : "c10k - ", "url" : "/MyBlog/linux/2020/03/24/c10k.html" } , { "title" : "COMPOSER_HOME 环境变量 - ", "url" : "/MyBlog/web/2020/03/24/COMPOSER_HOME.html" } , { "title" : "Golang三种方式实现超时退出 - ", "url" : "/MyBlog/golang/2020/03/23/timeout.html" } , { "title" : "Go进程的HeapReleased上升但是RSS不下降造成内存泄漏 - ", "url" : "/MyBlog/golang/2020/03/23/rss.html" } , { "title" : "prestissimo Composer 加速 - ", "url" : "/MyBlog/php/2020/03/23/prestissimo.html" } , { "title" : "Golang连接池的几种实现 - ", "url" : "/MyBlog/golang/2020/03/23/pool.html" } , { "title" : "packagist composer - ", "url" : "/MyBlog/php/2020/03/23/packagist.html" } , { "title" : "OPA 重新定义规则引擎 - ", "url" : "/MyBlog/golang/2020/03/23/opa.html" } , { "title" : "log - ", "url" : "/MyBlog/golang/2020/03/23/log.html" } , { "title" : "IO 多路复用 - ", "url" : "/MyBlog/linux/2020/03/23/io.html" } , { "title" : "go 语言是如何运行的-内存分配 - ", "url" : "/MyBlog/golang/2020/03/23/TCMalloc.html" } , { "title" : "滴滴内部监控系统 Nightingale 开源啦 - ", "url" : "/MyBlog/golang/2020/03/23/Nightingale.html" } , { "title" : "用Go编写Web中间件 - ", "url" : "/MyBlog/golang/2020/03/23/Middleware.html" } , { "title" : "Raft - ", "url" : "/MyBlog/golang/2020/03/20/Raft.html" } , { "title" : "Kong入口控制器和服务网格Kubernetes设置入口到Istio - ", "url" : "/MyBlog/k8s/2020/03/20/Istio.html" } , { "title" : "gnet一个轻量级且高性能的 Golang 网络库 - ", "url" : "/MyBlog/golang/2020/03/18/gnet.html" } , { "title" : "Golang -CPU 性能、内存分析调试方法汇总 - ", "url" : "/MyBlog/golang/2020/03/18/gc.html" } , { "title" : "evio - ", "url" : "/MyBlog/golang/2020/03/18/evio.html" } , { "title" : "golang调用原生epoll引起event loop阻塞问题 - ", "url" : "/MyBlog/golang/2020/03/18/epoll.html" } , { "title" : "websocket - ", "url" : "/MyBlog/golang/2020/03/17/websocket.html" } , { "title" : "linux的wc -l 命令统计文件少一行 - ", "url" : "/MyBlog/linux/2020/03/17/wcl.html" } , { "title" : "Understand unsafe in GoLang - ", "url" : "/MyBlog/golang/2020/03/17/unsafe.html" } , { "title" : "slice - ", "url" : "/MyBlog/golang/2020/03/17/slice.html" } , { "title" : "怎么面对“写业务代码”这件事 - ", "url" : "/MyBlog/architect/2020/03/17/code.html" } , { "title" : "Redis 安全配置 - ", "url" : "/MyBlog/storage/2020/03/17/Redis.html" } , { "title" : "go中的引用类型 - ", "url" : "/MyBlog/golang/2020/03/16/pointer.html" } , { "title" : "go-cache - ", "url" : "/MyBlog/golang/2020/03/16/go-cache.html" } , { "title" : "race - ", "url" : "/MyBlog/golang/2020/03/14/rece.html" } , { "title" : "k8s log - ", "url" : "/MyBlog/k8s/2020/03/14/k8s.html" } , { "title" : "goroutine 切换代价为啥这么小 - ", "url" : "/MyBlog/algorithm/2020/03/14/go.html" } , { "title" : "gctrace Go的GC打印出来的信息 - ", "url" : "/MyBlog/golang/2020/03/14/gctrace.html" } , { "title" : "GODEBUG - ", "url" : "/MyBlog/golang/2020/03/14/GODEBUG.html" } , { "title" : "event_scheduler - ", "url" : "/MyBlog/storage/2020/03/13/event_scheduler.html" } , { "title" : "Go实现Raft - ", "url" : "/MyBlog/golang/2020/03/12/raft.html" } , { "title" : "moesi CPU缓存知识 - ", "url" : "/MyBlog/linux/2020/03/12/moesi.html" } , { "title" : "memory - ", "url" : "/MyBlog/golang/2020/03/12/memory.html" } , { "title" : "JSON Schema - ", "url" : "/MyBlog/web/2020/03/12/json.html" } , { "title" : "错误使用 go-cache 导致出现的线上问题 - ", "url" : "/MyBlog/golang/2020/03/12/gocache.html" } , { "title" : "Go 垃圾回收 - ", "url" : "/MyBlog/golang/2020/03/12/gc.html" } , { "title" : "TCP 协议有粘包问题 - ", "url" : "/MyBlog/linux/2020/03/12/frame.html" } , { "title" : "书籍 - ", "url" : "/MyBlog/golang/2020/03/12/book.html" } , { "title" : "API网关和服务网格的区别 - ", "url" : "/MyBlog/algorithm/2020/03/12/apim.html" } , { "title" : "代码执行的效率 - ", "url" : "/MyBlog/linux/2020/03/12/Hotspot.html" } , { "title" : "Go防缓存击穿 - ", "url" : "/MyBlog/golang/2020/03/10/singleflight.html" } , { "title" : "go-mir v2.0.0 发布 用 Go 结构体标签定义 handler 路由信息的辅助库 - ", "url" : "/MyBlog/golang/2020/03/10/mirr.html" } , { "title" : "go 1.14变化 - ", "url" : "/MyBlog/golang/2020/03/10/go.html" } , { "title" : "Cookie数据的安全传输 - ", "url" : "/MyBlog/golang/2020/03/10/cookie.html" } , { "title" : "Go STL 查询 DB 引发的内存泄露 - ", "url" : "/MyBlog/golang/2020/03/08/mem_leak.html" } , { "title" : "Go语言inline内联的策略与限制 - ", "url" : "/MyBlog/golang/2020/03/08/inline.html" } , { "title" : "kubernetes 中的事件机制 - ", "url" : "/MyBlog/k8s/2020/03/08/events.html" } , { "title" : "terraform - ", "url" : "/MyBlog/golang/2020/03/06/terraform.html" } , { "title" : "获取map[interface{}]interface{}的value - ", "url" : "/MyBlog/golang/2020/03/06/interface.html" } , { "title" : "Go 语言中下划线的用法分析总结 - ", "url" : "/MyBlog/golang/2020/03/06/go.html" } , { "title" : "Go的方法集详解 - ", "url" : "/MyBlog/golang/2020/03/06/func.html" } , { "title" : "Bounds Check Elimination In Go - ", "url" : "/MyBlog/golang/2020/03/06/bce.html" } , { "title" : "GOSSAFUNC Dig101-Go 之 interface 调用的一个优化点 - ", "url" : "/MyBlog/golang/2020/03/06/GOSSAFUNC.html" } , { "title" : "underlay overlay - ", "url" : "/MyBlog/linux/2020/03/05/underlay.html" } , { "title" : "fpm slowlog - ", "url" : "/MyBlog/php/2020/03/05/slowlog.html" } , { "title" : "go vs code - ", "url" : "/MyBlog/golang/2020/03/05/gocode.html" } , { "title" : "Kubernetes 网络模型进阶 - ", "url" : "/MyBlog/golang/2020/03/05/Kubernetes.html" } , { "title" : "Iaas Paas Saas - ", "url" : "/MyBlog/web/2020/03/05/Iaas.html" } , { "title" : "watermill - ", "url" : "/MyBlog/golang/2020/03/04/watermill.html" } , { "title" : "sync.WaitGroup 实现逻辑和源码解析 - ", "url" : "/MyBlog/golang/2020/03/04/waitGroup.html" } , { "title" : "sync.Pool 的设计与实现 - ", "url" : "/MyBlog/golang/2020/03/04/syncpool.html" } , { "title" : "regexp - ", "url" : "/MyBlog/golang/2020/03/04/regexp.html" } , { "title" : "Optimizing a Golang service to reduce over 40% CPU - ", "url" : "/MyBlog/golang/2020/03/04/pprof.html" } , { "title" : "httptest - ", "url" : "/MyBlog/golang/2020/03/04/httptest.html" } , { "title" : "go 的坑 - ", "url" : "/MyBlog/golang/2020/03/04/go.html" } , { "title" : "Golang 中字典的 Comma Ok 是如何实现的 - ", "url" : "/MyBlog/golang/2020/03/04/comma.html" } , { "title" : "VSCode 调试 Golang - ", "url" : "/MyBlog/golang/2020/03/04/VSCode.html" } , { "title" : "Singleflight - ", "url" : "/MyBlog/golang/2020/03/04/Singleflight.html" } , { "title" : "Git Flow - ", "url" : "/MyBlog/web/2020/03/03/gitflow.html" } , { "title" : "gts - ", "url" : "/MyBlog/architect/2020/03/02/gts.html" } , { "title" : "vuls - ", "url" : "/MyBlog/golang/2020/03/01/vuls.html" } , { "title" : "Golang连接池 mysql redis - ", "url" : "/MyBlog/golang/2020/03/01/pool.html" } , { "title" : "可扩展的限流算法 - ", "url" : "/MyBlog/golang/2020/03/01/limiter.html" } , { "title" : "php execute_ex - ", "url" : "/MyBlog/php/2020/03/01/execute_ex.html" } , { "title" : "Modules - ", "url" : "/MyBlog/golang/2020/03/01/Modules.html" } , { "title" : "micro - ", "url" : "/MyBlog/architect/2020/02/29/micro.html" } , { "title" : "epoll - ", "url" : "/MyBlog/golang/2020/02/29/epoll.html" } , { "title" : "dubbo-go - ", "url" : "/MyBlog/golang/2020/02/29/dubbo.html" } , { "title" : "golang的简单分布式延时队列服务 - ", "url" : "/MyBlog/golang/2020/02/29/delay.html" } , { "title" : "channel - ", "url" : "/MyBlog/golang/2020/02/29/channel.html" } , { "title" : "zen of go - ", "url" : "/MyBlog/golang/2020/02/27/zen.html" } , { "title" : "go1.14基于netpoll优化timer定时器实现原理 - ", "url" : "/MyBlog/golang/2020/02/27/timer.html" } , { "title" : "go1.14 基于信号的抢占式调度实现原理 - ", "url" : "/MyBlog/golang/2020/02/27/sigurg.html" } , { "title" : "go 理解 Lock-Free - ", "url" : "/MyBlog/golang/2020/02/27/lock.html" } , { "title" : "为什么流媒体直播的延迟很高 - ", "url" : "/MyBlog/web/2020/02/27/live.html" } , { "title" : "gojsonq - ", "url" : "/MyBlog/golang/2020/02/27/gojsonq.html" } , { "title" : "goim - ", "url" : "/MyBlog/golang/2020/02/27/goim.html" } , { "title" : "Go 高级并发 - ", "url" : "/MyBlog/golang/2020/02/27/go.html" } , { "title" : "error - ", "url" : "/MyBlog/golang/2020/02/27/error.html" } , { "title" : "epoll 在 Go 中的使用 - ", "url" : "/MyBlog/golang/2020/02/27/epoll.html" } , { "title" : "Sentinel - ", "url" : "/MyBlog/golang/2020/02/27/Sentinel.html" } , { "title" : "HTTPS - ", "url" : "/MyBlog/golang/2020/02/27/HTTPS.html" } , { "title" : "Go lessons learnt by refactoring - ", "url" : "/MyBlog/golang/2020/02/26/refactoring.html" } , { "title" : "mpg - ", "url" : "/MyBlog/algorithm/2020/02/26/mpg.html" } , { "title" : "Go系统可能遇到的锁问题 - ", "url" : "/MyBlog/golang/2020/02/26/lock.html" } , { "title" : "docker image - ", "url" : "/MyBlog/docker/2020/02/26/image.html" } , { "title" : "go.dev - ", "url" : "/MyBlog/golang/2020/02/26/dev.html" } , { "title" : "dci 四色模型结合 - ", "url" : "/MyBlog/architect/2020/02/26/dci.html" } , { "title" : "golang net/http输出context引起的map panic - ", "url" : "/MyBlog/golang/2020/02/26/context.html" } , { "title" : "Introducing Sqreen for Go the first Runtime Application Self-Protection for Go - ", "url" : "/MyBlog/golang/2020/02/26/RASP.html" } , { "title" : "LimitReader - ", "url" : "/MyBlog/golang/2020/02/26/LimitReader.html" } , { "title" : "GOSSAFUNC 查看 Go 的代码优化过程 - ", "url" : "/MyBlog/golang/2020/02/26/GOSSAFUNC.html" } , { "title" : "GitHub Actions 自动化构建 Golang 应用 - ", "url" : "/MyBlog/golang/2020/02/26/Actions.html" } , { "title" : "role DDD、DCI之间的关系 - ", "url" : "/MyBlog/algorithm/2020/02/25/role.html" } , { "title" : "resolver - ", "url" : "/MyBlog/architect/2020/02/25/resolver.html" } , { "title" : "插件化 - ", "url" : "/MyBlog/architect/2020/02/25/plugin.html" } , { "title" : "业务配置化 - ", "url" : "/MyBlog/architect/2020/02/25/config.html" } , { "title" : "组件化 组件化业务模型(CBM) - ", "url" : "/MyBlog/architect/2020/02/25/component.html" } , { "title" : "四色原型总结 - ", "url" : "/MyBlog/architect/2020/02/25/color.html" } , { "title" : "RTTI - ", "url" : "/MyBlog/lang/2020/02/25/RTTI.html" } , { "title" : "DB2 NoSQL JSON - ", "url" : "/MyBlog/web/2020/02/25/NoSQL.html" } , { "title" : "Gflag - ", "url" : "/MyBlog/web/2020/02/25/Gflag.html" } , { "title" : "从领域、对象、角色、职责、对象交互、场景等方面去分析和设计领域模型 - ", "url" : "/MyBlog/architect/2020/02/25/DCI.html" } , { "title" : "μJavaActors - ", "url" : "/MyBlog/algorithm/2020/02/24/%CE%BCJavaActors.html" } , { "title" : "mixin trait 多继承 - ", "url" : "/MyBlog/lang/2020/02/24/mixin_trait.html" } , { "title" : "并发之痛 Thread,Goroutine,Actor - ", "url" : "/MyBlog/golang/2020/02/24/goroutine.html" } , { "title" : "golang Trait - ", "url" : "/MyBlog/golang/2020/02/24/goTrait.html" } , { "title" : "callback hell - ", "url" : "/MyBlog/golang/2020/02/24/callback.html" } , { "title" : "c++ Traits - ", "url" : "/MyBlog/web/2020/02/24/cTraits.html" } , { "title" : "为什么actors没有堆栈 - ", "url" : "/MyBlog/lang/2020/02/24/actors.html" } , { "title" : "php Traits - ", "url" : "/MyBlog/php/2020/02/24/Traits.html" } , { "title" : "Mixin - ", "url" : "/MyBlog/lang/2020/02/24/Mixin.html" } , { "title" : "Docker容器内部使用gdb进行debug - ", "url" : "/MyBlog/docker/2020/02/21/seccomp_docker.html" } , { "title" : "seccomp - ", "url" : "/MyBlog/linux/2020/02/21/seccomp.html" } , { "title" : "gdb - ", "url" : "/MyBlog/golang/2020/02/21/gdb.html" } , { "title" : "gcBgMarkWorker - ", "url" : "/MyBlog/golang/2020/02/21/gcBgMarkWorker.html" } , { "title" : "exec - ", "url" : "/MyBlog/golang/2020/02/21/exec.html" } , { "title" : "debugger 学go - ", "url" : "/MyBlog/golang/2020/02/21/debugger.html" } , { "title" : "dci - ", "url" : "/MyBlog/algorithm/2020/02/21/dci.html" } , { "title" : "UseNumber - ", "url" : "/MyBlog/golang/2020/02/21/UseNumber.html" } , { "title" : "ParseInt 的坑 - ", "url" : "/MyBlog/golang/2020/02/21/ParseInt.html" } , { "title" : "Concurrency - ", "url" : "/MyBlog/golang/2020/02/21/Concurrency.html" } , { "title" : "Testing in Go Clean Tests Using t Cleanup - ", "url" : "/MyBlog/golang/2020/02/20/test.html" } , { "title" : "Go 编程语言规范 - ", "url" : "/MyBlog/golang/2020/02/20/golang_spec.html" } , { "title" : "golang 编译链接 - ", "url" : "/MyBlog/golang/2020/02/20/compile.html" } , { "title" : "斗鱼配置管理中心 Minerva 的设计与实现 - ", "url" : "/MyBlog/golang/2020/02/20/Minerva.html" } , { "title" : "ssh +trap 实现跳板机 - ", "url" : "/MyBlog/linux/2020/02/18/trap.html" } , { "title" : "进程ID、父进程ID、进程组ID、会话和控制终端 - ", "url" : "/MyBlog/linux/2020/02/18/pty.html" } , { "title" : "ps ef 和 -ef 区别 - ", "url" : "/MyBlog/linux/2020/02/18/ps.html" } , { "title" : "信号的生命周期 - ", "url" : "/MyBlog/linux/2020/02/18/SIGXXX.html" } , { "title" : "linux 的nohup & 和daemon 总结 - ", "url" : "/MyBlog/linux/2020/02/18/Daemon.html" } , { "title" : "gulp webpack grunt requirejs - ", "url" : "/MyBlog/web/2020/02/17/webpack.html" } , { "title" : "rollup - ", "url" : "/MyBlog/web/2020/02/17/rollup.html" } , { "title" : "Node.js RESTful API - ", "url" : "/MyBlog/web/2020/02/17/restful.html" } , { "title" : "Node.js GET POST请求 - ", "url" : "/MyBlog/web/2020/02/17/post.html" } , { "title" : "node - ", "url" : "/MyBlog/web/2020/02/17/node.html" } , { "title" : "grunt - ", "url" : "/MyBlog/web/2020/02/17/gulp.html" } , { "title" : "Node.js Express 框架 - ", "url" : "/MyBlog/web/2020/02/17/express.html" } , { "title" : "exports - ", "url" : "/MyBlog/web/2020/02/17/exports.html" } , { "title" : "electron nodejs源码打包为可执行程序 - ", "url" : "/MyBlog/web/2020/02/17/electron.html" } , { "title" : "npm 和 cnpm - ", "url" : "/MyBlog/web/2020/02/17/cnpm.html" } , { "title" : "使用Browserify解决浏览器加载require没有被定义 - ", "url" : "/MyBlog/web/2020/02/17/browserify.html" } , { "title" : "babelify - ", "url" : "/MyBlog/web/2020/02/17/babelify.html" } , { "title" : "babel - ", "url" : "/MyBlog/web/2020/02/17/babel.html" } , { "title" : "ES6 - ", "url" : "/MyBlog/web/2020/02/17/ES6.html" } , { "title" : "thriftpy - ", "url" : "/MyBlog/golang/2020/02/15/thriftpy.html" } , { "title" : "pprof - ", "url" : "/MyBlog/golang/2020/02/15/pprof.html" } , { "title" : "php-Parser - ", "url" : "/MyBlog/php/2020/02/15/Parser.html" } , { "title" : "slice作为函数参数是值传递 - ", "url" : "/MyBlog/algorithm/2020/02/14/slice.html" } , { "title" : "PhpStorm Xdebug远程调试环境搭建原理分析 - ", "url" : "/MyBlog/php/2020/02/14/Xdebug.html" } , { "title" : "Delve - ", "url" : "/MyBlog/golang/2020/02/14/Delve.html" } , { "title" : "分布式系统的基本盘 - ", "url" : "/MyBlog/storage/2020/02/13/distri.html" } , { "title" : "redis-cli pipe模式 - ", "url" : "/MyBlog/storage/2020/02/12/redis.html" } , { "title" : "netpoller - ", "url" : "/MyBlog/golang/2020/02/12/netpoller.html" } , { "title" : "HTTP缓存机制详解 - ", "url" : "/MyBlog/storage/2020/02/12/cache.html" } , { "title" : "不能使用简短声明来设置字段的值 - ", "url" : "/MyBlog/golang/2020/02/12/assign.html" } , { "title" : "logrus - ", "url" : "/MyBlog/golang/2020/02/11/logrus.html" } , { "title" : "router - ", "url" : "/MyBlog/linux/2020/02/10/router.html" } , { "title" : "webassembly go 学习资料 - ", "url" : "/MyBlog/golang/2020/02/08/webassemblygo.html" } , { "title" : "webassembly syscall js - ", "url" : "/MyBlog/golang/2020/02/08/webassembly.html" } , { "title" : "tinygo - ", "url" : "/MyBlog/golang/2020/02/08/tinygo.html" } , { "title" : "shed 调度 - ", "url" : "/MyBlog/golang/2020/02/07/shed.html" } , { "title" : "gc - ", "url" : "/MyBlog/golang/2020/02/07/gc.html" } , { "title" : "WebAssembly Go - ", "url" : "/MyBlog/golang/2020/02/07/WebAssemblyGo.html" } , { "title" : "WebAssembly - ", "url" : "/MyBlog/golang/2020/02/07/WebAssembly.html" } , { "title" : "abi - ", "url" : "/MyBlog/linux/2020/02/06/abi.html" } , { "title" : "调度器设计 golang linux k8s - ", "url" : "/MyBlog/golang/2020/02/05/scheduler.html" } , { "title" : "map - ", "url" : "/MyBlog/golang/2020/02/05/map.html" } , { "title" : "graphql - ", "url" : "/MyBlog/golang/2020/02/05/graphql.html" } , { "title" : "fx - ", "url" : "/MyBlog/golang/2020/02/05/fx.html" } , { "title" : "逃逸分析 - ", "url" : "/MyBlog/golang/2020/02/05/escape.html" } , { "title" : "Go1.14为time.Timer定时器带来巨幅性能提升 - ", "url" : "/MyBlog/golang/2020/02/05/Timer.html" } , { "title" : "Kubernetes 服务发现 - ", "url" : "/MyBlog/golang/2020/02/05/Kubernetes.html" } , { "title" : "uintptr - ", "url" : "/MyBlog/golang/2020/02/03/uintptr.html" } , { "title" : "50 Shades of Go Traps, Gotchas, and Common Mistakes for New Golang Devs - ", "url" : "/MyBlog/golang/2020/02/03/traps.html" } , { "title" : "sqlc - ", "url" : "/MyBlog/algorithm/2020/02/03/sqlc.html" } , { "title" : "slice - ", "url" : "/MyBlog/golang/2020/02/03/slice.html" } , { "title" : "rabbitmq - ", "url" : "/MyBlog/storage/2020/02/03/rabbitmq.html" } , { "title" : "pprof & trace - ", "url" : "/MyBlog/golang/2020/02/03/pprof.html" } , { "title" : "orm - ", "url" : "/MyBlog/golang/2020/02/03/orm.html" } , { "title" : "map 有序 json - ", "url" : "/MyBlog/golang/2020/02/03/map.html" } , { "title" : "lockedSource - ", "url" : "/MyBlog/golang/2020/02/03/lockedSource.html" } , { "title" : "inline defer - ", "url" : "/MyBlog/golang/2020/02/03/inline.html" } , { "title" : "net/http包 - ", "url" : "/MyBlog/golang/2020/02/03/http.html" } , { "title" : "golang map转json的顺序问题 - ", "url" : "/MyBlog/golang/2020/02/03/gson.html" } , { "title" : "go bnf - ", "url" : "/MyBlog/golang/2020/02/03/gobnf.html" } , { "title" : "为什么 Go 语言没有泛型 - ", "url" : "/MyBlog/golang/2020/02/03/generics.html" } , { "title" : "file sever - ", "url" : "/MyBlog/golang/2020/02/03/fsever.html" } , { "title" : "Why are my Go executable files so large - ", "url" : "/MyBlog/golang/2020/02/03/executable.html" } , { "title" : "ddd - ", "url" : "/MyBlog/architect/2020/02/03/ddd.html" } , { "title" : "为什么数据库会丢失数据 - ", "url" : "/MyBlog/storage/2020/02/03/data.html" } , { "title" : "close_wait - ", "url" : "/MyBlog/golang/2020/02/03/close_wait.html" } , { "title" : "Go 语言标准库中 atomic.Value - ", "url" : "/MyBlog/golang/2020/02/03/automic.html" } , { "title" : "ScheduleAlgorithm - ", "url" : "/MyBlog/golang/2020/02/03/ScheduleAlgorithm.html" } , { "title" : "Profefe - ", "url" : "/MyBlog/golang/2020/02/03/Profefe.html" } , { "title" : "BitTorrent - ", "url" : "/MyBlog/golang/2020/02/03/BitTorrent.html" } , { "title" : "dsl json - ", "url" : "/MyBlog/lang/2020/01/15/dsl_json.html" } , { "title" : "DelayQueue 延迟队列实现原理 - ", "url" : "/MyBlog/web/2020/01/15/DelayQueue.html" } , { "title" : "延迟队列设计 - ", "url" : "/MyBlog/web/2020/01/15/DelayQue.html" } , { "title" : "Range sync.Map - ", "url" : "/MyBlog/golang/2020/01/14/Range.html" } , { "title" : "Charles不能捕获localhost请求 - ", "url" : "/MyBlog/web/2020/01/13/localhost.html" } , { "title" : "源码剖析:fmt 标准库 - ", "url" : "/MyBlog/golang/2020/01/13/fmt.html" } , { "title" : "file_get_contents - ", "url" : "/MyBlog/php/2020/01/10/file_get_contents.html" } , { "title" : "线程池 - ", "url" : "/MyBlog/linux/2020/01/09/threadpool.html" } , { "title" : "多线程模式下全局变量竞争 - ", "url" : "/MyBlog/linux/2020/01/09/thread.html" } , { "title" : "no debugging symbols found - ", "url" : "/MyBlog/golang/2020/01/09/symbols.html" } , { "title" : "runtime-gdb.py - ", "url" : "/MyBlog/golang/2020/01/09/runtime-gdb.py.html" } , { "title" : "流水线冒险及解决方法 - ", "url" : "/MyBlog/linux/2020/01/09/pipleline.html" } , { "title" : "服务自动发现 - ", "url" : "/MyBlog/k8s/2020/01/09/discovery.html" } , { "title" : "连接池 - ", "url" : "/MyBlog/linux/2020/01/09/connectpool.html" } , { "title" : "Mutex/Semaphore/Spinlock - ", "url" : "/MyBlog/linux/2020/01/09/Semaphore.html" } , { "title" : "IPC Inter-Process Communication,进程间通信 - ", "url" : "/MyBlog/linux/2020/01/09/IPC.html" } , { "title" : "zend_parse_paramenters - ", "url" : "/MyBlog/lang/2020/01/08/zend_parse_paramenters.html" } , { "title" : "php 扩展加载顺序 - ", "url" : "/MyBlog/lang/2020/01/08/zend_module_entry.html" } , { "title" : "如何理解PHP虚拟机 - ", "url" : "/MyBlog/lang/2020/01/08/vm.html" } , { "title" : "内存屏障原理分析 - ", "url" : "/MyBlog/linux/2020/01/08/valotile.html" } , { "title" : "linux最大进程数、最大打开文件数 - ", "url" : "/MyBlog/linux/2020/01/08/ulimit.html" } , { "title" : "内存池 - ", "url" : "/MyBlog/linux/2020/01/08/slab.html" } , { "title" : "rename - ", "url" : "/MyBlog/linux/2020/01/08/rename.html" } , { "title" : "post - ", "url" : "/MyBlog/algorithm/2020/01/08/post.html" } , { "title" : "pass_two - ", "url" : "/MyBlog/lang/2020/01/08/pass_two.html" } , { "title" : "mmap的原理 - ", "url" : "/MyBlog/linux/2020/01/08/mmap.html" } , { "title" : "多线程安全无锁日志系统 - ", "url" : "/MyBlog/golang/2020/01/08/log4cpp.html" } , { "title" : "log - ", "url" : "/MyBlog/linux/2020/01/08/log.html" } , { "title" : "php 函数在vm执行流程 - ", "url" : "/MyBlog/lang/2020/01/08/func.html" } , { "title" : "LD_PRELOAD和dlopen选项RTLD_DEEPBIND之间的优先级 - ", "url" : "/MyBlog/linux/2020/01/08/dlopen.html" } , { "title" : "linux 下调试coredump文件 - ", "url" : "/MyBlog/linux/2020/01/08/coredump.html" } , { "title" : "SATA硬盘和SSD硬盘性能测试对比 - ", "url" : "/MyBlog/linux/2020/01/08/SATA.html" } , { "title" : "OOM原理分析 - ", "url" : "/MyBlog/linux/2020/01/08/OOM.html" } , { "title" : "检测内存泄露 - ", "url" : "/MyBlog/linux/2020/01/08/MemoryLeaks.html" } , { "title" : "双缓冲(Double Buffer)原理和使用 - ", "url" : "/MyBlog/linux/2020/01/08/Buffer.html" } , { "title" : "phpize php-config 作用 - ", "url" : "/MyBlog/lang/2020/01/07/phpize.html" } , { "title" : "php - ", "url" : "/MyBlog/lang/2020/01/07/php.html" } , { "title" : "php map 实现 - ", "url" : "/MyBlog/lang/2020/01/07/map.html" } , { "title" : "php include和require区别 - ", "url" : "/MyBlog/lang/2020/01/07/include.html" } , { "title" : "文件锁 - ", "url" : "/MyBlog/linux/2020/01/07/flock.html" } , { "title" : "MINIT、RINIT、RSHUTDOWN、MSHUTDOWN加载顺序 - ", "url" : "/MyBlog/lang/2020/01/07/MINIT.html" } , { "title" : "dynamo - ", "url" : "/MyBlog/storage/2020/01/06/dynamo.html" } , { "title" : "强一致性、顺序一致性、弱一致性和共识 - ", "url" : "/MyBlog/storage/2020/01/06/Consistency.html" } , { "title" : "xargs - ", "url" : "/MyBlog/linux/2020/01/05/xargs.html" } , { "title" : "UNIX域套接字传递描述符的应用 - ", "url" : "/MyBlog/linux/2020/01/05/socket.html" } , { "title" : "rest - ", "url" : "/MyBlog/golang/2020/01/05/rest.html" } , { "title" : "rainbow table 彩虹表 - ", "url" : "/MyBlog/algorithm/2020/01/05/rainbow.html" } , { "title" : "pki Public Key Infrastructure - ", "url" : "/MyBlog/algorithm/2020/01/05/pki.html" } , { "title" : "mysqldump Mysql 大量数据快速导出 - ", "url" : "/MyBlog/storage/2020/01/05/mysqldump.html" } , { "title" : "mysql优化技巧 - ", "url" : "/MyBlog/storage/2020/01/05/mysql_op.html" } , { "title" : "mysql index - ", "url" : "/MyBlog/storage/2020/01/05/mysql_index.html" } , { "title" : "mysql 同库不同表索引不一样 - ", "url" : "/MyBlog/storage/2020/01/05/mysql.html" } , { "title" : "Mysql模糊查询like效率 - ", "url" : "/MyBlog/storage/2020/01/05/like.html" } , { "title" : "int(2) tinyint - ", "url" : "/MyBlog/storage/2020/01/05/int.html" } , { "title" : "index 索引 - ", "url" : "/MyBlog/storage/2020/01/05/index.html" } , { "title" : "Mysql的explain - ", "url" : "/MyBlog/storage/2020/01/05/explain.html" } , { "title" : "bgsave - ", "url" : "/MyBlog/storage/2020/01/05/bgsave.html" } , { "title" : "TIMESTAMP - ", "url" : "/MyBlog/storage/2020/01/05/TIMESTAMP.html" } , { "title" : "进程中线程同步的四种方式 - ", "url" : "/MyBlog/linux/2020/01/05/CCriticalSection.html" } , { "title" : "BCrypt 如何存储密码 - ", "url" : "/MyBlog/algorithm/2020/01/05/BCrypt.html" } , { "title" : "206 http 1.1断点续传 - ", "url" : "/MyBlog/linux/2020/01/05/206.html" } , { "title" : "uniq - ", "url" : "/MyBlog/linux/2020/01/04/uniq.html" } , { "title" : "sort - ", "url" : "/MyBlog/linux/2020/01/04/sort.html" } , { "title" : "nginx 日志访问量统计 - ", "url" : "/MyBlog/linux/2020/01/04/log.html" } , { "title" : "httpCache - ", "url" : "/MyBlog/linux/2020/01/04/httpCache.html" } , { "title" : "tcp errno - ", "url" : "/MyBlog/linux/2020/01/03/tcp.html" } , { "title" : "如何运行多进程Docker容器 - ", "url" : "/MyBlog/docker/2020/01/03/sysvinit.html" } , { "title" : "systemctl init.d - ", "url" : "/MyBlog/linux/2020/01/03/systemctl.html" } , { "title" : "Connect reset by peer - ", "url" : "/MyBlog/linux/2020/01/03/reset.html" } , { "title" : "Connection refused - ", "url" : "/MyBlog/linux/2020/01/03/refused.html" } , { "title" : "prune - ", "url" : "/MyBlog/docker/2020/01/03/prune.html" } , { "title" : "pause - ", "url" : "/MyBlog/docker/2020/01/03/pause.html" } , { "title" : "list-watch - ", "url" : "/MyBlog/docker/2020/01/03/list-watch.html" } , { "title" : "gc - ", "url" : "/MyBlog/docker/2020/01/03/gc.html" } , { "title" : "etcd - ", "url" : "/MyBlog/docker/2020/01/03/etcd.html" } , { "title" : "Failed to get D-Bus connection - ", "url" : "/MyBlog/linux/2020/01/03/dbus_connection.html" } , { "title" : "dbus - ", "url" : "/MyBlog/linux/2020/01/03/dbus.html" } , { "title" : "dapper - ", "url" : "/MyBlog/linux/2020/01/03/dapper.html" } , { "title" : "Broken Pipe - ", "url" : "/MyBlog/linux/2020/01/03/broken.html" } , { "title" : "Kubernetes 中如何保证优雅地停止 Pod - ", "url" : "/MyBlog/docker/2020/01/03/PreStop.html" } , { "title" : "Kubernetes - ", "url" : "/MyBlog/algorithm/2020/01/03/Kubernetes.html" } , { "title" : "Abort trap 6 - ", "url" : "/MyBlog/web/2020/01/02/trap.html" } , { "title" : "rst - ", "url" : "/MyBlog/linux/2020/01/02/rst.html" } , { "title" : "golang 升级安装 - ", "url" : "/MyBlog/golang/2020/01/01/update.html" } , { "title" : "govendor - ", "url" : "/MyBlog/golang/2020/01/01/govendor.html" } , { "title" : "goproxy - ", "url" : "/MyBlog/golang/2020/01/01/goproxy.html" } , { "title" : "etcd 编译 - ", "url" : "/MyBlog/golang/2020/01/01/etcd.html" } , { "title" : "golang 自动下载所有依赖包 - ", "url" : "/MyBlog/golang/2020/01/01/depend.html" } , { "title" : "sync.Pool - ", "url" : "/MyBlog/golang/2019/12/30/pool.html" } , { "title" : "sync.Map - ", "url" : "/MyBlog/golang/2019/12/30/map.html" } , { "title" : "DCL双检查锁机制 - ", "url" : "/MyBlog/golang/2019/12/30/dcl.html" } , { "title" : "CACHE的一些基本概念 - ", "url" : "/MyBlog/golang/2019/12/30/CACHE.html" } , { "title" : "为什么要用npm scripts替代gulp - ", "url" : "/MyBlog/web/2019/12/29/npm.html" } , { "title" : "gulp - ", "url" : "/MyBlog/web/2019/12/29/gulp.html" } , { "title" : "BloomFilter golang实现 - ", "url" : "/MyBlog/golang/2019/12/29/BloomFilter.html" } , { "title" : "upstream - ", "url" : "/MyBlog/web/2019/12/28/upstream.html" } , { "title" : "panic defer 顺序 - ", "url" : "/MyBlog/golang/2019/12/28/panic.html" } , { "title" : "网关中间件 - ", "url" : "/MyBlog/web/2019/12/28/gateway.html" } , { "title" : "full nat Session的Hash表 - ", "url" : "/MyBlog/linux/2019/12/28/fullnat.html" } , { "title" : "kmp tire树 ac自动机 - ", "url" : "/MyBlog/algorithm/2019/12/28/ac.html" } , { "title" : "OmniPlan 项目排期管理工具 - ", "url" : "/MyBlog/web/2019/12/28/OmniPlan.html" } , { "title" : "MySQL_backup - ", "url" : "/MyBlog/storage/2019/12/28/MySQL_backup.html" } , { "title" : "事务ACID、2PC、3PC、2PL - ", "url" : "/MyBlog/storage/2019/12/28/2pl.html" } , { "title" : "kmp 实现strstr - ", "url" : "/MyBlog/algorithm/2019/12/26/kmp.html" } , { "title" : "float 的表示和进度转换 - ", "url" : "/MyBlog/golang/2019/12/26/float.html" } , { "title" : "memory barrier 内存屏障 - ", "url" : "/MyBlog/golang/2019/12/26/barrier.html" } , { "title" : "AC自动机 - ", "url" : "/MyBlog/algorithm/2019/12/26/ac.html" } , { "title" : "MOVSD - ", "url" : "/MyBlog/golang/2019/12/26/MOVSD.html" } , { "title" : "物化视图 material view - ", "url" : "/MyBlog/storage/2019/12/22/snapshot.html" } , { "title" : "skiplist - ", "url" : "/MyBlog/golang/2019/12/22/skiplist.html" } , { "title" : "innobackupex - ", "url" : "/MyBlog/storage/2019/12/22/innobackupex.html" } , { "title" : "Semisynchronous mysql半同步复制 - ", "url" : "/MyBlog/storage/2019/12/22/Semisynchronous.html" } , { "title" : "template - ", "url" : "/MyBlog/golang/2019/12/21/template.html" } , { "title" : "golang 和php float 计算结果不一致的坑 - ", "url" : "/MyBlog/golang/2019/12/20/float.html" } , { "title" : "echarts - ", "url" : "/MyBlog/golang/2019/12/20/echarts.html" } , { "title" : "levenshtein - ", "url" : "/MyBlog/web/2019/12/19/levenshtein.html" } , { "title" : "go json 实践中遇到的坑 - ", "url" : "/MyBlog/golang/2019/12/19/json.html" } , { "title" : "pull - ", "url" : "/MyBlog/web/2019/12/18/pull.html" } , { "title" : "Uber 设计 - ", "url" : "/MyBlog/architect/2019/12/18/Uber.html" } , { "title" : "Uber Project Lead揭秘 在科技巨头如何从0到1,主导项目 - ", "url" : "/MyBlog/architect/2019/12/17/uber.html" } , { "title" : "Facebook面试真题:如何设计Payment System - ", "url" : "/MyBlog/architect/2019/12/17/Payment.html" } , { "title" : "设计Netflix - ", "url" : "/MyBlog/architect/2019/12/17/Netflix.html" } , { "title" : "thrift optional 字段一般都是指针的原因 - ", "url" : "/MyBlog/golang/2019/12/16/thrift.html" } , { "title" : "feed 流 - ", "url" : "/MyBlog/architect/2019/12/16/feed.html" } , { "title" : "如何设计Twitter - ", "url" : "/MyBlog/architect/2019/12/16/Twitter.html" } , { "title" : "SWRR 算法 - ", "url" : "/MyBlog/linux/2019/12/16/SWRR.html" } , { "title" : "LVS - ", "url" : "/MyBlog/linux/2019/12/16/LVS.html" } , { "title" : "tcp-no-delay - ", "url" : "/MyBlog/golang/2019/12/15/tcp-no-delay.html" } , { "title" : "ratelimit - ", "url" : "/MyBlog/golang/2019/12/15/ratelimit.html" } , { "title" : "mail 实现ssl - ", "url" : "/MyBlog/golang/2019/12/15/mail.html" } , { "title" : "kubernetes 网络 - ", "url" : "/MyBlog/docker/2019/12/15/kubernetes.html" } , { "title" : "gracehttp - ", "url" : "/MyBlog/golang/2019/12/15/gracehttp.html" } , { "title" : "go-restful - ", "url" : "/MyBlog/golang/2019/12/15/go-restful.html" } , { "title" : "go-reflector - ", "url" : "/MyBlog/golang/2019/12/15/go-reflector.html" } , { "title" : "ConnContext Go1.13 标准库的 http 内存泄漏 - ", "url" : "/MyBlog/golang/2019/12/14/ConnContext.html" } , { "title" : "tcp_tw_reuse - ", "url" : "/MyBlog/linux/2019/12/13/tcp_tw_reuse.html" } , { "title" : "tcp_tw_recycle - ", "url" : "/MyBlog/linux/2019/12/13/tcp_tw_recycle.html" } , { "title" : "tcp_retries - ", "url" : "/MyBlog/linux/2019/12/13/tcp_retries.html" } , { "title" : "MTU、MSS、MSL、RTT、TTL、RTO - ", "url" : "/MyBlog/linux/2019/12/13/rto.html" } , { "title" : "chrome 无法打开https 网站问题解决 - ", "url" : "/MyBlog/web/2019/12/13/chrome.html" } , { "title" : "gateway - ", "url" : "/MyBlog/linux/2019/12/12/gateway.html" } , { "title" : "cni cnm - ", "url" : "/MyBlog/docker/2019/12/12/cni_cnm.html" } , { "title" : "ip netns - ", "url" : "/MyBlog/linux/2019/12/10/netns.html" } , { "title" : "netfilter iptables - ", "url" : "/MyBlog/linux/2019/12/10/netfilter.html" } , { "title" : "12306 抢票,极限并发带来的思考 - ", "url" : "/MyBlog/architect/2019/12/10/12306.html" } , { "title" : "tcp - ", "url" : "/MyBlog/linux/2019/12/09/tcp.html" } , { "title" : "redis ssh 漏洞 - ", "url" : "/MyBlog/storage/2019/12/09/ssh.html" } , { "title" : "redis config - ", "url" : "/MyBlog/storage/2019/12/09/redis.html" } , { "title" : "skydns - ", "url" : "/MyBlog/docker/2019/12/08/skydns.html" } , { "title" : "resolv.conf - ", "url" : "/MyBlog/linux/2019/12/08/resolv.html" } , { "title" : "itoa - ", "url" : "/MyBlog/golang/2019/12/02/itoa.html" } , { "title" : "interceptor - ", "url" : "/MyBlog/golang/2019/12/02/interceptor.html" } , { "title" : "grpc http2 - ", "url" : "/MyBlog/golang/2019/12/02/http2.html" } , { "title" : "gRPC vs Thrift - ", "url" : "/MyBlog/golang/2019/12/02/gRPC.html" } , { "title" : "gRPC ProtoBuf - ", "url" : "/MyBlog/golang/2019/12/02/ProtoBuf.html" } , { "title" : "runtime.Caller runtime.FuncForPC - ", "url" : "/MyBlog/golang/2019/12/02/Caller.html" } , { "title" : "scp - ", "url" : "/MyBlog/web/2019/12/01/scp.html" } , { "title" : "Replication Controller、Replica Set - ", "url" : "/MyBlog/golang/2019/12/01/rc.html" } , { "title" : "kubernetes - ", "url" : "/MyBlog/golang/2019/12/01/kubernetes.html" } , { "title" : "cli - ", "url" : "/MyBlog/golang/2019/12/01/cli.html" } , { "title" : "borg - ", "url" : "/MyBlog/golang/2019/12/01/borg.html" } , { "title" : "Sidecar - ", "url" : "/MyBlog/golang/2019/11/30/Sidecar.html" } , { "title" : "SOFA-MOSN - ", "url" : "/MyBlog/golang/2019/11/30/SOFA-MOSN.html" } , { "title" : "injector - ", "url" : "/MyBlog/golang/2019/11/29/injector.html" } , { "title" : "Martini - ", "url" : "/MyBlog/golang/2019/11/29/Martini.html" } , { "title" : "hijack - ", "url" : "/MyBlog/golang/2019/11/28/hijack.html" } , { "title" : "gometalinter - ", "url" : "/MyBlog/golang/2019/11/28/gometalinter.html" } , { "title" : "HandleFunc - ", "url" : "/MyBlog/golang/2019/11/28/HandleFunc.html" } , { "title" : "pkgconfig - ", "url" : "/MyBlog/linux/2019/11/27/pkgconfig.html" } , { "title" : "Go内存原理详解 - ", "url" : "/MyBlog/golang/2019/11/27/mcache.html" } , { "title" : "hijack - ", "url" : "/MyBlog/golang/2019/11/27/hijack.html" } , { "title" : "heap - ", "url" : "/MyBlog/golang/2019/11/27/heap.html" } , { "title" : "gracefull - ", "url" : "/MyBlog/golang/2019/11/27/graceful.html" } , { "title" : "cgo - ", "url" : "/MyBlog/golang/2019/11/27/cgo.html" } , { "title" : "ast rewrite - ", "url" : "/MyBlog/golang/2019/11/27/ast.html" } , { "title" : "Pkg-Config cgo - ", "url" : "/MyBlog/golang/2019/11/27/Pkg-Config.html" } , { "title" : "Deadline - ", "url" : "/MyBlog/golang/2019/11/27/Deadline.html" } , { "title" : "CFLAGS - ", "url" : "/MyBlog/golang/2019/11/27/CFLAGS.html" } , { "title" : "Deadline - ", "url" : "/MyBlog/golang/2019/11/26/Deadline.html" } , { "title" : "CFLAGS - ", "url" : "/MyBlog/golang/2019/11/26/CFLAGS.html" } , { "title" : "tags - ", "url" : "/MyBlog/golang/2019/11/25/tags.html" } , { "title" : "Go写的程序需不需要glibc - ", "url" : "/MyBlog/golang/2019/11/24/libc.html" } , { "title" : "hook glibc - ", "url" : "/MyBlog/linux/2019/11/24/glibc.html" } , { "title" : "实现一个 Golang 调试器 - ", "url" : "/MyBlog/golang/2019/11/24/gdb.html" } , { "title" : "dlsym - ", "url" : "/MyBlog/linux/2019/11/24/dlsym.html" } , { "title" : "Golang生成动态库及调用 - ", "url" : "/MyBlog/golang/2019/11/24/dll.html" } , { "title" : "cgo 原理 - ", "url" : "/MyBlog/golang/2019/11/24/cgo.html" } , { "title" : "golang 实现 LD_PRELOAD 拦截 libc - ", "url" : "/MyBlog/golang/2019/11/24/LD_PRELOAD.html" } , { "title" : "DYLD_INTERPOSE - ", "url" : "/MyBlog/linux/2019/11/24/DYLD_INTERPOSE.html" } , { "title" : "DYLD_FORCE_FLAT_NAMESPACE - ", "url" : "/MyBlog/linux/2019/11/24/DYLD_FORCE_FLAT_NAMESPACE.html" } , { "title" : "LD_LIBRARY_PATH - ", "url" : "/MyBlog/linux/2019/11/24/.html" } , { "title" : "tcmalloc - ", "url" : "/MyBlog/golang/2019/11/23/%E5%B9%B6%E5%8F%91%E8%AE%BF%E9%97%AE.html" } , { "title" : "set - ", "url" : "/MyBlog/linux/2019/11/23/set.html" } , { "title" : "select - ", "url" : "/MyBlog/golang/2019/11/23/select.html" } , { "title" : "Kubernetes Pod 的实现原理 - ", "url" : "/MyBlog/golang/2019/11/23/pod.html" } , { "title" : "k3s - ", "url" : "/MyBlog/golang/2019/11/23/k3s.html" } , { "title" : "flutter - ", "url" : "/MyBlog/web/2019/11/23/flutter.html" } , { "title" : "dubbo-go - ", "url" : "/MyBlog/golang/2019/11/23/dubbo-go.html" } , { "title" : "build go src - ", "url" : "/MyBlog/golang/2019/11/23/buildgo.html" } , { "title" : "bfe - ", "url" : "/MyBlog/golang/2019/11/23/bfe.html" } , { "title" : "BigCache - ", "url" : "/MyBlog/golang/2019/11/23/BigCache.html" } , { "title" : "docker - ", "url" : "/MyBlog/docker/2019/11/20/docker.html" } , { "title" : "git Patch - ", "url" : "/MyBlog/web/2019/11/20/Patch.html" } , { "title" : "build - ", "url" : "/MyBlog/golang/2019/11/19/build.html" } , { "title" : "gometalinter - ", "url" : "/MyBlog/golang/2019/11/17/gometalinter.html" } , { "title" : "uintptr 临时变量gc风险 - ", "url" : "/MyBlog/golang/2019/11/16/uintptr.html" } , { "title" : "sysmon - ", "url" : "/MyBlog/golang/2019/11/16/sysmon.html" } , { "title" : "scheduler - ", "url" : "/MyBlog/golang/2019/11/16/scheduler.html" } , { "title" : "time/rate - ", "url" : "/MyBlog/golang/2019/11/16/rate.html" } , { "title" : "pprof - ", "url" : "/MyBlog/golang/2019/11/16/pprof.html" } , { "title" : "netpoll - ", "url" : "/MyBlog/golang/2019/11/16/netpoll.html" } , { "title" : "ldflags - ", "url" : "/MyBlog/golang/2019/11/16/ldflags.html" } , { "title" : "gc - ", "url" : "/MyBlog/golang/2019/11/16/gc.html" } , { "title" : "bitset - ", "url" : "/MyBlog/golang/2019/11/16/bitset.html" } , { "title" : "automaxprocs - ", "url" : "/MyBlog/golang/2019/11/16/automaxprocs.html" } , { "title" : "Token - ", "url" : "/MyBlog/golang/2019/11/16/Token.html" } , { "title" : "Go实现简单TCP扫描器 - ", "url" : "/MyBlog/golang/2019/11/16/TCP.html" } , { "title" : "Staticcheck - ", "url" : "/MyBlog/golang/2019/11/16/Staticcheck.html" } , { "title" : "Panic/Recover Mechanism - ", "url" : "/MyBlog/golang/2019/11/16/Recover.html" } , { "title" : "Balancers - ", "url" : "/MyBlog/golang/2019/11/16/Balancers.html" } , { "title" : "微服务架构下的分布式事务问题 - ", "url" : "/MyBlog/web/2019/11/14/tcc_cap.html" } , { "title" : "tcc - ", "url" : "/MyBlog/architect/2019/11/14/tcc.html" } , { "title" : "perf - ", "url" : "/MyBlog/linux/2019/11/14/perf.html" } , { "title" : "GTS - ", "url" : "/MyBlog/architect/2019/11/14/GTS.html" } , { "title" : "pstree - ", "url" : "/MyBlog/linux/2019/11/13/pstree.html" } , { "title" : "pid namespace - ", "url" : "/MyBlog/docker/2019/11/13/pid.html" } , { "title" : "chroot - ", "url" : "/MyBlog/linux/2019/11/13/chroot.html" } , { "title" : "Namespaces - ", "url" : "/MyBlog/docker/2019/11/13/Namespaces.html" } , { "title" : "Namespace - ", "url" : "/MyBlog/docker/2019/11/13/Namespace.html" } , { "title" : "分布式任务队列 - ", "url" : "/MyBlog/golang/2019/11/12/jobexecuter.html" } , { "title" : "etcd compaction - ", "url" : "/MyBlog/golang/2019/11/12/compaction.html" } , { "title" : "Quartz - ", "url" : "/MyBlog/golang/2019/11/12/Quartz.html" } , { "title" : "netns - ", "url" : "/MyBlog/linux/2019/11/11/netns.html" } , { "title" : "gzencode、gzdeflate和gzcompress的区别 - ", "url" : "/MyBlog/lang/2019/11/11/deflate.html" } , { "title" : "virtual(虚函数) vtbl(虚函数表)与vptr(虚函数表指针) - ", "url" : "/MyBlog/linux/2019/11/10/votr.html" } , { "title" : "sbrk brk break linux-malloc底层实现原理 - ", "url" : "/MyBlog/linux/2019/11/10/sbrk.html" } , { "title" : "文件描述符与文件指针的区别 - ", "url" : "/MyBlog/linux/2019/11/10/file.html" } , { "title" : "malloc()与 alloc()区别 - ", "url" : "/MyBlog/linux/2019/11/10/calloc.html" } , { "title" : "alloca - ", "url" : "/MyBlog/linux/2019/11/10/alloca.html" } , { "title" : "类型系统 - ", "url" : "/MyBlog/lang/2019/11/09/type.html" } , { "title" : "go 类型系统 - ", "url" : "/MyBlog/golang/2019/11/09/gotype.html" } , { "title" : "从机器语言到高级语言的原理 - ", "url" : "/MyBlog/lang/2019/11/09/01100001.html" } , { "title" : "内存分析 - ", "url" : "/MyBlog/golang/2019/11/08/%E5%86%85%E5%AD%98%E5%88%86%E6%9E%90.html" } , { "title" : "tcmalloc原理剖析 - ", "url" : "/MyBlog/linux/2019/11/08/tcmalloc%E5%8E%9F%E7%90%86%E5%89%96%E6%9E%90.html" } , { "title" : "malloc - ", "url" : "/MyBlog/linux/2019/11/08/malloc.html" } , { "title" : "expvar - ", "url" : "/MyBlog/golang/2019/11/08/expvar.html" } , { "title" : "slab/slob/slub的区别 - ", "url" : "/MyBlog/linux/2019/11/07/slab.html" } , { "title" : "进程的页表 - ", "url" : "/MyBlog/linux/2019/11/07/pcb.html" } , { "title" : "map 如何进行删除 - ", "url" : "/MyBlog/golang/2019/11/07/map.html" } , { "title" : "TCMalloc - ", "url" : "/MyBlog/linux/2019/11/07/TCMalloc.html" } , { "title" : "MemStats 查询度量内存和GC使用 - ", "url" : "/MyBlog/golang/2019/11/07/MemStats.html" } , { "title" : "Go语言的实时GC - ", "url" : "/MyBlog/golang/2019/11/07/Go%E8%AF%AD%E8%A8%80%E7%9A%84%E5%AE%9E%E6%97%B6GC.html" } , { "title" : "GCStats - ", "url" : "/MyBlog/golang/2019/11/07/GCStats.html" } , { "title" : "page - ", "url" : "/MyBlog/linux/2019/11/06/page.html" } , { "title" : "c语言内存管理 - ", "url" : "/MyBlog/linux/2019/11/06/c.html" } , { "title" : "automaxprocs - ", "url" : "/MyBlog/golang/2019/11/06/automaxprocs.html" } , { "title" : "mt.Sprint(e) 死循环 - ", "url" : "/MyBlog/golang/2019/11/05/sprintf.html" } , { "title" : "memory 内存管理机制 - ", "url" : "/MyBlog/linux/2019/11/05/memory.html" } , { "title" : "crontab - ", "url" : "/MyBlog/linux/2019/11/05/crontab.html" } , { "title" : "字符串高效拼接 - ", "url" : "/MyBlog/golang/2019/11/04/string.html" } , { "title" : "time/rate - ", "url" : "/MyBlog/golang/2019/11/03/rate.html" } , { "title" : "endless - ", "url" : "/MyBlog/golang/2019/11/03/endless.html" } , { "title" : "Redis - ", "url" : "/MyBlog/storage/2019/11/03/Redis.html" } , { "title" : "net/url - ", "url" : "/MyBlog/golang/2019/11/02/url.html" } , { "title" : "tcmalloc - ", "url" : "/MyBlog/golang/2019/11/02/tcmalloc.html" } , { "title" : "percona-toolkit - ", "url" : "/MyBlog/storage/2019/11/02/percona-toolkit.html" } , { "title" : "golangci-lint - ", "url" : "/MyBlog/golang/2019/11/02/golangci-lint.html" } , { "title" : "ginkgo BDD - ", "url" : "/MyBlog/golang/2019/11/02/ginkgo.html" } , { "title" : "fmt - ", "url" : "/MyBlog/algorithm/2019/11/02/fmt.html" } , { "title" : "Service Mesh - ", "url" : "/MyBlog/golang/2019/11/02/Mesh.html" } , { "title" : "如何写出高质量代码 - ", "url" : "/MyBlog/golang/2019/11/02/CodeReviewComments.html" } , { "title" : "victim cache - ", "url" : "/MyBlog/golang/2019/10/31/victim.html" } , { "title" : "ast - ", "url" : "/MyBlog/golang/2019/10/31/ast.html" } , { "title" : "HTTP - ", "url" : "/MyBlog/web/2019/10/31/HTTP.html" } , { "title" : "Gourtines - ", "url" : "/MyBlog/golang/2019/10/31/Gourtines.html" } , { "title" : "Debugging - ", "url" : "/MyBlog/golang/2019/10/31/Debugging.html" } , { "title" : "Exactly Once语义与事务机制 - ", "url" : "/MyBlog/storage/2019/10/28/Exactly.html" } , { "title" : "kafka EOS - ", "url" : "/MyBlog/storage/2019/10/28/EOS.html" } , { "title" : "workerpool - ", "url" : "/MyBlog/golang/2019/10/27/workerpool.html" } , { "title" : "WaitGroup - ", "url" : "/MyBlog/golang/2019/10/27/WaitGroup.html" } , { "title" : "Cond - ", "url" : "/MyBlog/golang/2019/10/27/Cond.html" } , { "title" : "微信小程序底层原理 - ", "url" : "/MyBlog/web/2019/10/26/wx.html" } , { "title" : "Pessimistic Lock - ", "url" : "/MyBlog/storage/2019/10/26/storage.html" } , { "title" : "livenessProbe - ", "url" : "/MyBlog/linux/2019/10/26/livenessProbe.html" } , { "title" : "单列索引和联合索引区别 - ", "url" : "/MyBlog/storage/2019/10/26/index_merge.html" } , { "title" : "回表查询 - ", "url" : "/MyBlog/storage/2019/10/26/index.html" } , { "title" : "http2 - ", "url" : "/MyBlog/web/2019/10/26/http2.html" } , { "title" : "PHP7数组的有序性 - ", "url" : "/MyBlog/lang/2019/10/26/array.html" } , { "title" : "DNS 劫持 - ", "url" : "/MyBlog/web/2019/10/26/DNS.html" } , { "title" : "Kafka的ACK含义 - ", "url" : "/MyBlog/storage/2019/10/26/ACK.html" } , { "title" : "mysql 最左前缀原则 - ", "url" : "/MyBlog/storage/2019/10/25/mysql.html" } , { "title" : "lock - ", "url" : "/MyBlog/linux/2019/10/25/lock.html" } , { "title" : "ssh tty - ", "url" : "/MyBlog/linux/2019/10/24/ssh.html" } , { "title" : "js - ", "url" : "/MyBlog/lang/2019/10/24/js.html" } , { "title" : "tty - ", "url" : "/MyBlog/linux/2019/10/23/tty.html" } , { "title" : "session - ", "url" : "/MyBlog/linux/2019/10/23/session.html" } , { "title" : "ptmx - ", "url" : "/MyBlog/linux/2019/10/23/ptmx.html" } , { "title" : "Cmd.start, Cmd.Wait - ", "url" : "/MyBlog/golang/2019/10/22/wait.html" } , { "title" : "命令行界面 (CLI)、终端 (Terminal)、Shell、TTY的区别 - ", "url" : "/MyBlog/linux/2019/10/22/tty.html" } , { "title" : "setns - ", "url" : "/MyBlog/docker/2019/10/22/setns.html" } , { "title" : "runC - ", "url" : "/MyBlog/docker/2019/10/22/runC.html" } , { "title" : "docker exec 进入容器原理 - ", "url" : "/MyBlog/docker/2019/10/22/exec.html" } , { "title" : "如何进入Docker容器 - ", "url" : "/MyBlog/docker/2019/10/22/attach.html" } , { "title" : "artifactory - ", "url" : "/MyBlog/web/2019/10/22/artifactory.html" } , { "title" : "Namespace - ", "url" : "/MyBlog/docker/2019/10/22/Namespace.html" } , { "title" : "HTTPS - ", "url" : "/MyBlog/web/2019/10/22/HTTPS.html" } , { "title" : "zval 弱类型实现 - ", "url" : "/MyBlog/lang/2019/10/20/zval.html" } , { "title" : "top、free、uptime、htop - ", "url" : "/MyBlog/linux/2019/10/20/top.html" } , { "title" : "request_slowlog_timeout - ", "url" : "/MyBlog/lang/2019/10/20/request_slowlog_timeout.html" } , { "title" : "mysql - ", "url" : "/MyBlog/storage/2019/10/20/mysql.html" } , { "title" : "mt_rand rand - ", "url" : "/MyBlog/lang/2019/10/20/mt_rand.html" } , { "title" : "dvwa - ", "url" : "/MyBlog/lang/2019/10/20/dvwa.html" } , { "title" : "autoload - ", "url" : "/MyBlog/lang/2019/10/20/autoload.html" } , { "title" : "array_map 与array_walk的用法与区别 - ", "url" : "/MyBlog/lang/2019/10/20/array_map.html" } , { "title" : "FPM 多进程模型 - ", "url" : "/MyBlog/lang/2019/10/20/FPM.html" } , { "title" : "php Coroutine - ", "url" : "/MyBlog/lang/2019/10/20/Coroutine.html" } , { "title" : "CSRF、XSS、sql注入、DDOS流量攻击 - ", "url" : "/MyBlog/web/2019/10/20/CSRF.html" } , { "title" : "composer update - ", "url" : "/MyBlog/lang/2019/10/19/update.html" } , { "title" : "spl_auto_register - ", "url" : "/MyBlog/lang/2019/10/19/spl_auto_register.html" } , { "title" : "satis composer - ", "url" : "/MyBlog/lang/2019/10/19/satis.html" } , { "title" : "perl POSIX 正则 - ", "url" : "/MyBlog/lang/2019/10/19/perl.html" } , { "title" : "php fig psr - ", "url" : "/MyBlog/lang/2019/10/19/fig.html" } , { "title" : "Packagist - ", "url" : "/MyBlog/lang/2019/10/19/Packagist.html" } , { "title" : "HTTP_X_FORWARDED_FOR - ", "url" : "/MyBlog/web/2019/10/19/HTTP_X_FORWARDED_FOR.html" } , { "title" : "Defer recover - ", "url" : "/MyBlog/golang/2019/10/19/Defer.html" } , { "title" : "Composer - ", "url" : "/MyBlog/lang/2019/10/19/Composer.html" } , { "title" : "recover - ", "url" : "/MyBlog/golang/2019/10/18/recover.html" } , { "title" : "println - ", "url" : "/MyBlog/golang/2019/10/18/println.html" } , { "title" : "ArrayObject getArrayCopy - ", "url" : "/MyBlog/lang/2019/10/18/getArrayCopy.html" } , { "title" : "thrift t_generator_registry map初始化 - ", "url" : "/MyBlog/lang/2019/10/17/thrift.html" } , { "title" : "magic - ", "url" : "/MyBlog/lang/2019/10/17/magic.html" } , { "title" : "__call call_user_func_array - ", "url" : "/MyBlog/lang/2019/10/17/__call.html" } , { "title" : "php Reflection - ", "url" : "/MyBlog/lang/2019/10/17/Reflection.html" } , { "title" : "c++ 前向声明(forward declaration) - ", "url" : "/MyBlog/lang/2019/10/16/declaration.html" } , { "title" : "Thrift 源码 - ", "url" : "/MyBlog/golang/2019/10/16/Thrift.html" } , { "title" : "thrift annotation - ", "url" : "/MyBlog/golang/2019/10/15/annotation.html" } , { "title" : "Dapper - ", "url" : "/MyBlog/web/2019/10/15/Dapper.html" } , { "title" : "Istio - ", "url" : "/MyBlog/algorithm/2019/10/14/Istio.html" } , { "title" : "bytes.Buffer - ", "url" : "/MyBlog/golang/2019/10/14/Buffer.html" } , { "title" : "load - ", "url" : "/MyBlog/linux/2019/10/13/load.html" } , { "title" : "缓存穿透,缓存击穿,缓存雪崩 - ", "url" : "/MyBlog/storage/2019/10/13/cache.html" } , { "title" : "内存屏障 - ", "url" : "/MyBlog/linux/2019/10/13/barrier.html" } , { "title" : "atomic 原理 - ", "url" : "/MyBlog/golang/2019/10/13/atomic.html" } , { "title" : "孤儿进程、僵尸进程和守护进程 - ", "url" : "/MyBlog/linux/2019/10/13/PCB.html" } , { "title" : "Mutex - ", "url" : "/MyBlog/golang/2019/10/13/Mutex.html" } , { "title" : "Jaeger - ", "url" : "/MyBlog/golang/2019/10/13/Jaeger.html" } , { "title" : "GC - ", "url" : "/MyBlog/golang/2019/10/13/GC.html" } , { "title" : "Channel - ", "url" : "/MyBlog/golang/2019/10/13/Channel.html" } , { "title" : "select for update - ", "url" : "/MyBlog/storage/2019/10/12/update.html" } , { "title" : "statsd - ", "url" : "/MyBlog/golang/2019/10/12/statsd.html" } , { "title" : "runtime matrics - ", "url" : "/MyBlog/golang/2019/10/12/runtimematrics.html" } , { "title" : "nowait - ", "url" : "/MyBlog/storage/2019/10/12/nowait.html" } , { "title" : "matrix - ", "url" : "/MyBlog/web/2019/10/12/matrix.html" } , { "title" : "gomatrix - ", "url" : "/MyBlog/golang/2019/10/12/gomatrix.html" } , { "title" : "open-falcon - ", "url" : "/MyBlog/golang/2019/10/12/falcon.html" } , { "title" : "coordtransform - ", "url" : "/MyBlog/algorithm/2019/10/12/coordtransform.html" } , { "title" : "golang atomic包 - ", "url" : "/MyBlog/golang/2019/10/12/atomic.html" } , { "title" : "Lockless - ", "url" : "/MyBlog/web/2019/10/12/Lockless.html" } , { "title" : "HEXAGON 六边形 - ", "url" : "/MyBlog/algorithm/2019/10/12/HEXAGON.html" } , { "title" : "高效的多维空间点索引算法 — Geohash 和 Google S2 - ", "url" : "/MyBlog/algorithm/2019/10/11/s2.html" } , { "title" : "redis-cell - ", "url" : "/MyBlog/storage/2019/10/11/redis-cell.html" } , { "title" : "ratelimit - ", "url" : "/MyBlog/golang/2019/10/11/ratelimit.html" } , { "title" : "php heredoc - ", "url" : "/MyBlog/php/2019/10/11/heredoc.html" } , { "title" : "evalsha - ", "url" : "/MyBlog/storage/2019/10/11/evalsha.html" } , { "title" : "分布式限流 - ", "url" : "/MyBlog/web/2019/10/11/dratelimit.html" } , { "title" : "地理索引 uber s3 - ", "url" : "/MyBlog/algorithm/2019/10/11/PHXIS.html" } , { "title" : "uber H3 - ", "url" : "/MyBlog/algorithm/2019/10/11/H3.html" } , { "title" : "select - ", "url" : "/MyBlog/golang/2019/10/10/select.html" } , { "title" : "runtime - ", "url" : "/MyBlog/golang/2019/10/10/runtime.html" } , { "title" : "rpc - ", "url" : "/MyBlog/golang/2019/10/10/rpc.html" } , { "title" : "HTTP路由 - ", "url" : "/MyBlog/golang/2019/10/10/router.html" } , { "title" : "radix tire - ", "url" : "/MyBlog/algorithm/2019/10/10/radix_tire.html" } , { "title" : "radix tree router - ", "url" : "/MyBlog/golang/2019/10/10/radix_router.html" } , { "title" : "radix 基数树 - ", "url" : "/MyBlog/linux/2019/10/10/radix.html" } , { "title" : "netstack - ", "url" : "/MyBlog/golang/2019/10/10/netstack.html" } , { "title" : "gops - ", "url" : "/MyBlog/golang/2019/10/10/gops.html" } , { "title" : "go_radix - ", "url" : "/MyBlog/golang/2019/10/10/go_radix.html" } , { "title" : "gRpc - ", "url" : "/MyBlog/golang/2019/10/10/gRpc.html" } , { "title" : "expvar - ", "url" : "/MyBlog/golang/2019/10/10/expvar.html" } , { "title" : "gobreaker - ", "url" : "/MyBlog/golang/2019/10/09/gobreaker.html" } , { "title" : "go-kit - ", "url" : "/MyBlog/golang/2019/10/09/go-kit.html" } , { "title" : "Prometheus - ", "url" : "/MyBlog/golang/2019/10/09/Prometheus.html" } , { "title" : "sed - ", "url" : "/MyBlog/linux/2019/10/08/sed.html" } , { "title" : "heatbeat - ", "url" : "/MyBlog/golang/2019/09/28/heatbeat.html" } , { "title" : "etcd - ", "url" : "/MyBlog/golang/2019/09/28/etcd.html" } , { "title" : "slot map redis 槽映射 - ", "url" : "/MyBlog/golang/2019/09/27/slot.html" } , { "title" : "hystrix - ", "url" : "/MyBlog/golang/2019/09/27/hystrix.html" } , { "title" : "一致性hash golang 实现 - ", "url" : "/MyBlog/golang/2019/09/27/hash.html" } , { "title" : "gomacro - ", "url" : "/MyBlog/golang/2019/09/27/gomacro.html" } , { "title" : "Go-kit 熔断器 - ", "url" : "/MyBlog/golang/2019/09/27/gokit.html" } , { "title" : "如何设计一个亿级网关 - ", "url" : "/MyBlog/golang/2019/09/27/gateway.html" } , { "title" : "etcd实现服务发现机制 - ", "url" : "/MyBlog/golang/2019/09/27/etcd.html" } , { "title" : "/dev/udp - ", "url" : "/MyBlog/linux/2019/09/27/dev.html" } , { "title" : "Consul - ", "url" : "/MyBlog/golang/2019/09/27/Consul.html" } , { "title" : "xdebug - ", "url" : "/MyBlog/php/2019/09/26/xdebug.html" } , { "title" : "spf13-vim - ", "url" : "/MyBlog/golang/2019/09/26/spf13-vim.html" } , { "title" : "jsoniter - ", "url" : "/MyBlog/golang/2019/09/26/jsoniter.html" } , { "title" : "hugo - ", "url" : "/MyBlog/golang/2019/09/26/hugo.html" } , { "title" : "pflag flag - ", "url" : "/MyBlog/golang/2019/09/26/flag.html" } , { "title" : "ffjson - ", "url" : "/MyBlog/golang/2019/09/26/ffjson.html" } , { "title" : "cobra detail - ", "url" : "/MyBlog/golang/2019/09/26/cobra_detail.html" } , { "title" : "cobra - ", "url" : "/MyBlog/golang/2019/09/26/cobra.html" } , { "title" : "Modules - ", "url" : "/MyBlog/golang/2019/09/26/Modules.html" } , { "title" : "json - ", "url" : "/MyBlog/golang/2019/09/25/json.html" } , { "title" : "dwarf - ", "url" : "/MyBlog/golang/2019/09/25/dwarf.html" } , { "title" : "https - ", "url" : "/MyBlog/golang/2019/09/23/https.html" } , { "title" : "sso - ", "url" : "/MyBlog/web/2019/09/22/sso.html" } , { "title" : "rsa - ", "url" : "/MyBlog/algorithm/2019/09/22/rsa.html" } , { "title" : "rand 随机数 - ", "url" : "/MyBlog/golang/2019/09/22/rand.html" } , { "title" : "签名和加密的区别 - ", "url" : "/MyBlog/algorithm/2019/09/22/openssl.html" } , { "title" : "sso oauth - ", "url" : "/MyBlog/web/2019/09/22/oauth.html" } , { "title" : "cors - ", "url" : "/MyBlog/web/2019/09/22/cors.html" } , { "title" : "tengine - ", "url" : "/MyBlog/web/2019/09/21/tengine.html" } , { "title" : "stream - ", "url" : "/MyBlog/storage/2019/09/21/stream.html" } , { "title" : "id 生成器 - ", "url" : "/MyBlog/web/2019/09/21/snowflake.html" } , { "title" : "shortUrl - ", "url" : "/MyBlog/web/2019/09/21/shortUrl.html" } , { "title" : "redis 4 特性 - ", "url" : "/MyBlog/storage/2019/09/21/redis4.html" } , { "title" : "redis 5 新特性 - ", "url" : "/MyBlog/storage/2019/09/21/redis.html" } , { "title" : "php7 - ", "url" : "/MyBlog/php/2019/09/21/php.html" } , { "title" : "openretry - ", "url" : "/MyBlog/web/2019/09/21/openretry.html" } , { "title" : "nginx - ", "url" : "/MyBlog/web/2019/09/21/nginx.html" } , { "title" : "md5 - ", "url" : "/MyBlog/algorithm/2019/09/21/md5.html" } , { "title" : "linux 5.3 - ", "url" : "/MyBlog/linux/2019/09/21/linux.html" } , { "title" : "kafka - ", "url" : "/MyBlog/storage/2019/09/21/kafka.html" } , { "title" : "golang 1.13 - ", "url" : "/MyBlog/golang/2019/09/21/golang.html" } , { "title" : "docker - ", "url" : "/MyBlog/docker/2019/09/21/docker.html" } , { "title" : "CentOS - ", "url" : "/MyBlog/linux/2019/09/21/CentOS.html" } , { "title" : "xa - ", "url" : "/MyBlog/storage/2019/09/19/xa.html" } , { "title" : "mariadb - ", "url" : "/MyBlog/storage/2019/09/19/mariadb.html" } , { "title" : "system call table - ", "url" : "/MyBlog/linux/2019/09/18/systemcalltab.html" } , { "title" : "函数调用帧栈 - ", "url" : "/MyBlog/linux/2019/09/18/stackFrame.html" } , { "title" : "C语言的异常机制 setjump longjump函数 - ", "url" : "/MyBlog/linux/2019/09/18/setjump.html" } , { "title" : "rtld_fini - ", "url" : "/MyBlog/linux/2019/09/18/rtld_fini.html" } , { "title" : "main - ", "url" : "/MyBlog/linux/2019/09/18/main.html" } , { "title" : "heap 内存管理之堆和栈 - ", "url" : "/MyBlog/linux/2019/09/18/heap.html" } , { "title" : "dumpbin - ", "url" : "/MyBlog/linux/2019/09/18/dumpbin.html" } , { "title" : "c++filt - ", "url" : "/MyBlog/linux/2019/09/18/c++filt.html" } , { "title" : "Linux进程分配内存的两种方式--brk() 和mmap() - ", "url" : "/MyBlog/linux/2019/09/18/brk.html" } , { "title" : "atexit - ", "url" : "/MyBlog/linux/2019/09/18/atexit_linux.html" } , { "title" : "atexit - ", "url" : "/MyBlog/linux/2019/09/18/atexit.html" } , { "title" : "0x80 0x21 软中断 - ", "url" : "/MyBlog/linux/2019/09/18/0x80.html" } , { "title" : "readelf - ", "url" : "/MyBlog/linux/2019/09/16/readelf.html" } , { "title" : "ar - ", "url" : "/MyBlog/linux/2019/09/16/ar.html" } , { "title" : "压栈的工作原理 - ", "url" : "/MyBlog/linux/2019/09/15/statck.html" } , { "title" : "Go 函数调用━栈和寄存器视角 - ", "url" : "/MyBlog/golang/2019/09/15/req.html" } , { "title" : "图的连通性 - ", "url" : "/MyBlog/algorithm/2019/09/15/graph.html" } , { "title" : "clang - ", "url" : "/MyBlog/web/2019/09/15/clang.html" } , { "title" : "golang 函数调用汇编 - ", "url" : "/MyBlog/golang/2019/09/15/call.html" } , { "title" : "setxx setnx - ", "url" : "/MyBlog/storage/2019/09/14/setxx.html" } , { "title" : "p2p 打洞 - ", "url" : "/MyBlog/web/2019/09/14/p2p.html" } , { "title" : "max_execution_time fpm - ", "url" : "/MyBlog/php/2019/09/14/max_execution_time.html" } , { "title" : "interface - ", "url" : "/MyBlog/golang/2019/09/14/interface.html" } , { "title" : "gimple - ", "url" : "/MyBlog/algorithm/2019/09/14/gimple.html" } , { "title" : "go test Build 缓存 - ", "url" : "/MyBlog/golang/2019/09/12/test.html" } , { "title" : "Go 语言运行时环境变量 - ", "url" : "/MyBlog/golang/2019/09/12/env.html" } , { "title" : "reflect性能 - ", "url" : "/MyBlog/golang/2019/09/11/reflect_json.html" } , { "title" : "reflect - ", "url" : "/MyBlog/golang/2019/09/11/reflect.html" } , { "title" : "go 语言内存布局 - ", "url" : "/MyBlog/golang/2019/09/11/Header.html" } , { "title" : "Assertion - ", "url" : "/MyBlog/golang/2019/09/11/Assertion.html" } , { "title" : "unsafe - ", "url" : "/MyBlog/golang/2019/09/10/unsafe.html" } , { "title" : "godoc - ", "url" : "/MyBlog/golang/2019/09/10/godoc.html" } , { "title" : "builtin - ", "url" : "/MyBlog/golang/2019/09/10/builtin.html" } , { "title" : "Reflection - ", "url" : "/MyBlog/golang/2019/09/10/Reflection.html" } , { "title" : "Interfaces - ", "url" : "/MyBlog/golang/2019/09/10/Interfaces.html" } , { "title" : "upx - ", "url" : "/MyBlog/golang/2019/09/08/upx.html" } , { "title" : "tcpproxy - ", "url" : "/MyBlog/golang/2019/09/08/tcpproxy.html" } , { "title" : "swagger php - ", "url" : "/MyBlog/php/2019/09/08/swaggerphp.html" } , { "title" : "reflect 为啥慢 - ", "url" : "/MyBlog/golang/2019/09/08/reflect.html" } , { "title" : "Swagger与postman使用 - ", "url" : "/MyBlog/golang/2019/09/08/postman.html" } , { "title" : "openfalcon - ", "url" : "/MyBlog/golang/2019/09/08/openfalcon.html" } , { "title" : "json - ", "url" : "/MyBlog/golang/2019/09/08/json.html" } , { "title" : "golang 编译压缩体积 - ", "url" : "/MyBlog/golang/2019/09/08/goupx.html" } , { "title" : "goconvey - ", "url" : "/MyBlog/golang/2019/09/08/goconvey.html" } , { "title" : "go-swagger - ", "url" : "/MyBlog/golang/2019/09/08/go-swagger.html" } , { "title" : "easy-mock - ", "url" : "/MyBlog/golang/2019/09/08/easy-mock.html" } , { "title" : "Swagger - ", "url" : "/MyBlog/golang/2019/09/08/Swagger.html" } , { "title" : "simplejson json.Decoder vs json.Unmarshal - ", "url" : "/MyBlog/golang/2019/09/04/simplejson.html" } , { "title" : "travis ci - ", "url" : "/MyBlog/web/2019/09/03/travis.html" } , { "title" : "json - ", "url" : "/MyBlog/golang/2019/09/03/json.html" } , { "title" : "pprof 火焰图 实践 - ", "url" : "/MyBlog/golang/2019/08/25/torch.html" } , { "title" : "pprof - ", "url" : "/MyBlog/golang/2019/08/25/pprof.html" } , { "title" : "perf pprof - ", "url" : "/MyBlog/linux/2019/08/25/perf.html" } , { "title" : "gprof 原理 - ", "url" : "/MyBlog/linux/2019/08/25/gprof.html" } , { "title" : "go tool trace - ", "url" : "/MyBlog/golang/2019/08/25/gotrace.html" } , { "title" : "go-callvis 生成golang调用图 - ", "url" : "/MyBlog/golang/2019/08/25/go-callvis.html" } , { "title" : "flamegraph - ", "url" : "/MyBlog/linux/2019/08/25/flamegraph.html" } , { "title" : "空间索引 - ", "url" : "/MyBlog/web/2019/08/22/geoindex.html" } , { "title" : "wrk - ", "url" : "/MyBlog/golang/2019/08/18/wrk.html" } , { "title" : "race - ", "url" : "/MyBlog/golang/2019/08/18/race.html" } , { "title" : "make new 的区别 - ", "url" : "/MyBlog/golang/2019/08/18/make.html" } , { "title" : "interface - ", "url" : "/MyBlog/golang/2019/08/18/interface.html" } , { "title" : "flame graph - ", "url" : "/MyBlog/golang/2019/08/18/flamegraph.html" } , { "title" : "defer - ", "url" : "/MyBlog/golang/2019/08/18/defer.html" } , { "title" : "http状态码413 - ", "url" : "/MyBlog/php/2019/08/15/413.html" } , { "title" : "mark and sweep - ", "url" : "/MyBlog/golang/2019/08/09/sweep.html" } , { "title" : "phpgc - ", "url" : "/MyBlog/php/2019/08/09/phpgc.html" } , { "title" : "gc 发展 - ", "url" : "/MyBlog/golang/2019/08/09/gc.html" } , { "title" : "fpm_scoreboard - ", "url" : "/MyBlog/php/2019/08/09/fpm_scoreboard.html" } , { "title" : "sync.pool - ", "url" : "/MyBlog/golang/2019/08/08/pool.html" } , { "title" : "MVCC 、CAS 和CopyOnWrite - ", "url" : "/MyBlog/storage/2019/08/08/mvcc.html" } , { "title" : "mutex - ", "url" : "/MyBlog/golang/2019/08/08/mutex.html" } , { "title" : "fasthttp - ", "url" : "/MyBlog/golang/2019/08/08/fasthttp.html" } , { "title" : "Treap - ", "url" : "/MyBlog/algorithm/2019/08/08/Treap.html" } , { "title" : "load average - ", "url" : "/MyBlog/linux/2019/08/07/load.html" } , { "title" : "fasthttp - ", "url" : "/MyBlog/golang/2019/08/04/fasthttp.html" } , { "title" : "channel - ", "url" : "/MyBlog/golang/2019/08/04/channel.html" } , { "title" : "opentracing - ", "url" : "/MyBlog/golang/2019/08/03/opentracing.html" } , { "title" : "httptrace - ", "url" : "/MyBlog/golang/2019/08/03/httptrace.html" } , { "title" : "Memory Allocator Trace - ", "url" : "/MyBlog/golang/2019/07/28/trace.html" } , { "title" : "系统调度 - ", "url" : "/MyBlog/golang/2019/07/28/scheduler.html" } , { "title" : "hey - ", "url" : "/MyBlog/golang/2019/07/28/hey.html" } , { "title" : "gostub - ", "url" : "/MyBlog/golang/2019/07/28/gostub.html" } , { "title" : "goMonkey - ", "url" : "/MyBlog/golang/2019/07/28/goMonkey.html" } , { "title" : "GoConvey - ", "url" : "/MyBlog/golang/2019/07/28/GoConvey.html" } , { "title" : "mock - ", "url" : "/MyBlog/golang/2019/07/27/mock.html" } , { "title" : "tty stdin stdout stderr - ", "url" : "/MyBlog/linux/2019/07/21/tty.html" } , { "title" : "tiny compiler - ", "url" : "/MyBlog/golang/2019/07/21/tiny.html" } , { "title" : "compile link - ", "url" : "/MyBlog/golang/2019/07/21/link.html" } , { "title" : "elf - ", "url" : "/MyBlog/linux/2019/07/21/elf.html" } , { "title" : "tscan - ", "url" : "/MyBlog/golang/2019/07/20/tscan.html" } , { "title" : "race - ", "url" : "/MyBlog/golang/2019/07/20/race.html" } , { "title" : "Memory Sanitizer - ", "url" : "/MyBlog/golang/2019/07/20/goroutine.html" } , { "title" : "go 编译器指示 - ", "url" : "/MyBlog/golang/2019/07/20/go.html" } , { "title" : "编译优化 - ", "url" : "/MyBlog/golang/2019/07/20/gc.html" } , { "title" : "调试golang编译器,增加自定义声明 - ", "url" : "/MyBlog/golang/2019/07/20/compile.html" } , { "title" : "语法树与抽象语法树(parse tree & abstract syntax tree) - ", "url" : "/MyBlog/golang/2019/07/20/ast.html" } , { "title" : "静态单赋值(SSA,Static Single-Assignment) - ", "url" : "/MyBlog/golang/2019/07/19/ssa.html" } , { "title" : "502 504 - ", "url" : "/MyBlog/web/2019/07/18/502.html" } , { "title" : "slice - ", "url" : "/MyBlog/golang/2019/07/16/slice.html" } , { "title" : "plan9 - ", "url" : "/MyBlog/golang/2019/07/16/plan9.html" } , { "title" : "goasm - ", "url" : "/MyBlog/golang/2019/07/16/goasm.html" } , { "title" : "asm - ", "url" : "/MyBlog/golang/2019/07/16/asm.html" } , { "title" : "binaryen - ", "url" : "/MyBlog/golang/2019/07/15/binaryen.html" } , { "title" : "WebAssembly - ", "url" : "/MyBlog/golang/2019/07/15/WebAssembly.html" } , { "title" : "tty 及其在远程登录(SSH,telnet等)中的应用 - ", "url" : "/MyBlog/linux/2019/07/14/tty.html" } , { "title" : "go tool trace - ", "url" : "/MyBlog/golang/2019/07/14/trace.html" } , { "title" : "ssl ssh - ", "url" : "/MyBlog/web/2019/07/14/ssl.html" } , { "title" : "ssh 原理 - ", "url" : "/MyBlog/linux/2019/07/14/ssh_keygen.html" } , { "title" : "Linux中tty、pty、pts的概念区别 - ", "url" : "/MyBlog/linux/2019/07/14/pty.html" } , { "title" : "cAdvisor - ", "url" : "/MyBlog/docker/2019/07/14/cAdvisor.html" } , { "title" : "SSH - ", "url" : "/MyBlog/linux/2019/07/14/SSH.html" } , { "title" : "Quagga - ", "url" : "/MyBlog/linux/2019/07/14/Quagga.html" } , { "title" : "Pipework、Weave、Flannel - ", "url" : "/MyBlog/docker/2019/07/14/Pipework.html" } , { "title" : "Flannel - ", "url" : "/MyBlog/2019/07/14/Flannel.html" } , { "title" : "sdn - ", "url" : "/MyBlog/docker/2019/07/11/sdn.html" } , { "title" : "php - ", "url" : "/MyBlog/php/2019/07/11/php.html" } , { "title" : "Macvlan与ipvlan - ", "url" : "/MyBlog/docker/2019/07/11/ipvlan.html" } , { "title" : "hypervisor - ", "url" : "/MyBlog/docker/2019/07/11/hypervisor.html" } , { "title" : "go get go install - ", "url" : "/MyBlog/golang/2019/07/11/goget.html" } , { "title" : "Docker与Hypervisor - ", "url" : "/MyBlog/docker/2019/07/11/docker.html" } , { "title" : "cobra - ", "url" : "/MyBlog/golang/2019/07/11/cobra.html" } , { "title" : "prctl - ", "url" : "/MyBlog/linux/2019/07/09/prctl.html" } , { "title" : "type aliases - ", "url" : "/MyBlog/golang/2019/07/09/alias.html" } , { "title" : "union mount - ", "url" : "/MyBlog/docker/2019/07/07/union.html" } , { "title" : "Linux内核namespace机制 - ", "url" : "/MyBlog/docker/2019/07/07/namespace.html" } , { "title" : "Namespace 资源隔离 - ", "url" : "/MyBlog/linux/2019/07/07/linux_ns.html" } , { "title" : "ioctl 网桥管理 - ", "url" : "/MyBlog/linux/2019/07/07/ioctl.html" } , { "title" : "clone - ", "url" : "/MyBlog/linux/2019/07/07/clone.html" } , { "title" : "cidr - ", "url" : "/MyBlog/linux/2019/07/07/cidr.html" } , { "title" : "Libcontainer - ", "url" : "/MyBlog/docker/2019/07/07/Libcontainer.html" } , { "title" : "AppArmor - ", "url" : "/MyBlog/docker/2019/07/07/AppArmor.html" } , { "title" : "namespace - ", "url" : "/MyBlog/docker/2019/07/06/namespace.html" } , { "title" : "lxc - ", "url" : "/MyBlog/docker/2019/07/06/lxc.html" } , { "title" : "lxc-start 源码分析 - ", "url" : "/MyBlog/docker/2019/07/06/lxc-start.html" } , { "title" : "hijack - ", "url" : "/MyBlog/golang/2019/07/05/hijack.html" } , { "title" : "gotty 把你的 Linux 终端放到浏览器里面 - ", "url" : "/MyBlog/golang/2019/07/05/gotty.html" } , { "title" : "fcgi - ", "url" : "/MyBlog/golang/2019/07/04/fcgi.html" } , { "title" : "fastcgi_client - ", "url" : "/MyBlog/php/2019/07/04/fastcgi_client.html" } , { "title" : "RequestID fastcgi - ", "url" : "/MyBlog/php/2019/07/04/RequestID.html" } , { "title" : "FastCGI MIT 文档 - ", "url" : "/MyBlog/web/2019/07/04/FastCGI.html" } , { "title" : "setfacl - ", "url" : "/MyBlog/linux/2019/07/03/setfacl.html" } , { "title" : "go-web + go-cgi + go-cgi-script - ", "url" : "/MyBlog/golang/2019/07/03/gocgi.html" } , { "title" : "aufs、Btrfs、Device mapper、OverlayFS、ZFS - ", "url" : "/MyBlog/docker/2019/07/03/aufs.html" } , { "title" : "netListener.File - ", "url" : "/MyBlog/golang/2019/07/02/netListener.html" } , { "title" : "lantern mac编译 Proxy SwitchyOmega - ", "url" : "/MyBlog/golang/2019/06/30/lantern.html" } , { "title" : "shell $(( ))、$( )、``与${ }的区别 - ", "url" : "/MyBlog/linux/2019/06/29/shell.html" } , { "title" : "shutdown 源码分析 - ", "url" : "/MyBlog/golang/2019/06/29/graceful.html" } , { "title" : "git彻底删除提交历史 - ", "url" : "/MyBlog/web/2019/06/29/git.html" } , { "title" : "fpm graceful - ", "url" : "/MyBlog/web/2019/06/29/fpm.html" } , { "title" : "graceful Shutdown - ", "url" : "/MyBlog/golang/2019/06/29/Shutdown.html" } , { "title" : "interface 和nil - ", "url" : "/MyBlog/golang/2019/06/28/nil.html" } , { "title" : "martini inject - ", "url" : "/MyBlog/golang/2019/06/28/invoke.html" } , { "title" : "Martini之inject源码 - ", "url" : "/MyBlog/golang/2019/06/28/inject.html" } , { "title" : "gcflags - ", "url" : "/MyBlog/golang/2019/06/28/gcflags.html" } , { "title" : "Martini - ", "url" : "/MyBlog/golang/2019/06/28/Martini.html" } , { "title" : "vmnetd - ", "url" : "/MyBlog/docker/2019/06/27/vmnetd.html" } , { "title" : "godoc doc.go - ", "url" : "/MyBlog/golang/2019/06/27/godoc.html" } , { "title" : "docker for mac k8s - ", "url" : "/MyBlog/docker/2019/06/26/dockerformak.html" } , { "title" : "ssh端口转发 - ", "url" : "/MyBlog/docker/2019/06/25/ssh.html" } , { "title" : "docker for mac k8s - ", "url" : "/MyBlog/docker/2019/06/25/dockerformack8s.html" } , { "title" : "docker for mac - ", "url" : "/MyBlog/docker/2019/06/25/dockerformac.html" } , { "title" : "boot2docker - ", "url" : "/MyBlog/docker/2019/06/25/boot2docker.html" } , { "title" : "VBoxManage - ", "url" : "/MyBlog/docker/2019/06/25/VBoxManage.html" } , { "title" : "Docker Machine - ", "url" : "/MyBlog/docker/2019/06/25/Machine.html" } , { "title" : "Borg - ", "url" : "/MyBlog/docker/2019/06/25/Borg.html" } , { "title" : "validator - ", "url" : "/MyBlog/golang/2019/06/19/validator.html" } , { "title" : "Redis 源码阅读顺序 - ", "url" : "/MyBlog/storage/2019/06/19/redis.html" } , { "title" : "ptmalloc、tcmalloc和jemalloc - ", "url" : "/MyBlog/storage/2019/06/19/ptmalloc.html" } , { "title" : "SystemTap - ", "url" : "/MyBlog/linux/2019/06/19/SystemTap.html" } , { "title" : "phpcs phpcbf PHP_CodeSniffer - ", "url" : "/MyBlog/php/2019/06/17/phpcs.html" } , { "title" : "goroutine 状态机扭转 - ", "url" : "/MyBlog/golang/2019/06/17/goroutine.html" } , { "title" : "m p g schedt sudog - ", "url" : "/MyBlog/golang/2019/06/16/mpg.html" } , { "title" : "sync.Pool 设计思路与原理 - ", "url" : "/MyBlog/golang/2019/06/15/sync.Pool.html" } , { "title" : "sync.Map - ", "url" : "/MyBlog/golang/2019/06/15/sync.Map.html" } , { "title" : "xargs - ", "url" : "/MyBlog/linux/2019/06/14/xargs.html" } , { "title" : "rwmutex - ", "url" : "/MyBlog/golang/2019/06/14/rwmutex.html" } , { "title" : "onece - ", "url" : "/MyBlog/golang/2019/06/14/onece.html" } , { "title" : "mutex - ", "url" : "/MyBlog/golang/2019/06/14/mutex.html" } , { "title" : "awk完成两个文件的关联Join 高级用法 - ", "url" : "/MyBlog/linux/2019/06/14/awk.html" } , { "title" : "thrift transport - ", "url" : "/MyBlog/web/2019/06/12/transport.html" } , { "title" : "TProtocol 协议和编解码 - ", "url" : "/MyBlog/web/2019/06/12/Tprotocal.html" } , { "title" : "thrift 源码 - ", "url" : "/MyBlog/web/2019/06/12/IDL.html" } , { "title" : "pollfd - ", "url" : "/MyBlog/linux/2019/06/11/pollfd.html" } , { "title" : "libevent 编译安装 - ", "url" : "/MyBlog/linux/2019/06/11/libevent.html" } , { "title" : "fd_set - ", "url" : "/MyBlog/linux/2019/06/11/fd_set.html" } , { "title" : "epoll_event - ", "url" : "/MyBlog/linux/2019/06/11/epoll_event.html" } , { "title" : "configure.ac - ", "url" : "/MyBlog/linux/2019/06/11/configure.ac.html" } , { "title" : "Makefile/Makefile.am/Makefile.in三者关系 - ", "url" : "/MyBlog/linux/2019/06/11/Makefile.html" } , { "title" : "Golang网络库中socket阻塞调度源码剖析 - ", "url" : "/MyBlog/golang/2019/06/10/socket_go.html" } , { "title" : "gopark goready - ", "url" : "/MyBlog/golang/2019/06/10/gopark.html" } , { "title" : "eagain accept - ", "url" : "/MyBlog/linux/2019/06/10/eagain.html" } , { "title" : "Socket 源码 - ", "url" : "/MyBlog/linux/2019/06/10/Socket.html" } , { "title" : "SIGIO - ", "url" : "/MyBlog/linux/2019/06/10/SIGIO.html" } , { "title" : "golang syscall原理 - ", "url" : "/MyBlog/golang/2019/06/09/SYSCALL.html" } , { "title" : "gdb_codesign - ", "url" : "/MyBlog/linux/2019/06/08/gdb_codesign.html" } , { "title" : "fcntl函数设置阻塞与非阻塞 - ", "url" : "/MyBlog/linux/2019/06/08/fcntl.html" } , { "title" : "swoole - ", "url" : "/MyBlog/linux/2019/06/07/swoole.html" } , { "title" : "进程池,线程池 - ", "url" : "/MyBlog/linux/2019/06/07/pool.html" } , { "title" : "getuid、geteuid和setuid函数 - ", "url" : "/MyBlog/linux/2019/06/07/geteuid.html" } , { "title" : "fpm 源码阅读 - ", "url" : "/MyBlog/linux/2019/06/07/fpm.html" } , { "title" : "socketpair nginx 通信机制 - ", "url" : "/MyBlog/php/2019/06/06/socketpair.html" } , { "title" : "goroutine 泄露 - ", "url" : "/MyBlog/golang/2019/06/04/goroutine.html" } , { "title" : "umask umask(0) - ", "url" : "/MyBlog/linux/2019/06/02/umask.html" } , { "title" : "sigsuspend 进程阻塞 与 pause 区别 - ", "url" : "/MyBlog/linux/2019/06/02/sigsuspend.html" } , { "title" : "sigaction - ", "url" : "/MyBlog/linux/2019/06/02/sigaction.html" } , { "title" : "信号(sigaction,sigaddset,sigprocmask) - ", "url" : "/MyBlog/linux/2019/06/02/sig.html" } , { "title" : "三种时间结构及定时器setitimer() - ", "url" : "/MyBlog/linux/2019/06/02/settimer.html" } , { "title" : "setsid & 后台进程 - ", "url" : "/MyBlog/linux/2019/06/02/setsid.html" } , { "title" : "getsockname getpeername - ", "url" : "/MyBlog/linux/2019/06/02/getsockname.html" } , { "title" : "yaf - ", "url" : "/MyBlog/php/2019/06/01/yaf.html" } , { "title" : "waitpid wait - ", "url" : "/MyBlog/linux/2019/05/31/waitpid.html" } , { "title" : "socketpair popen - ", "url" : "/MyBlog/linux/2019/05/31/socketpair.html" } , { "title" : "ngx_cycle_s - ", "url" : "/MyBlog/php/2019/05/31/ngx_cycle_s.html" } , { "title" : "linux 信号系统调用 - ", "url" : "/MyBlog/linux/2019/05/31/kill.html" } , { "title" : "fpm worker 进程的生命周期 - ", "url" : "/MyBlog/php/2019/05/31/fpm.html" } , { "title" : "ext_skel php-x php扩展开发工具 - ", "url" : "/MyBlog/php/2019/05/31/ext_skel.html" } , { "title" : "sockt编程中的文件句柄 select poll epoll - ", "url" : "/MyBlog/linux/2019/05/30/sockfd.html" } , { "title" : "clion 支持跳转配置 - ", "url" : "/MyBlog/web/2019/05/30/clion.html" } , { "title" : "How TCP Sockets Work - ", "url" : "/MyBlog/linux/2019/05/29/o.html" } , { "title" : "io 模型 - ", "url" : "/MyBlog/linux/2019/05/29/io.html" } , { "title" : "SO_REUSEPORT 惊群 - ", "url" : "/MyBlog/linux/2019/05/29/SO_REUSEPORT.html" } , { "title" : "pprof - ", "url" : "/MyBlog/golang/2019/05/28/pprof.html" } , { "title" : "kedis - ", "url" : "/MyBlog/storage/2019/05/28/kedis.html" } , { "title" : "php-fpm - ", "url" : "/MyBlog/php/2019/05/28/fpm.html" } , { "title" : "codis - ", "url" : "/MyBlog/storage/2019/05/28/codis.html" } , { "title" : "SO_REUSEPORT 多个server进程同时监听一个unix socket文件 - ", "url" : "/MyBlog/linux/2019/05/28/SO_REUSEPORT.html" } , { "title" : "多个进程绑定相同端口的实现分析[Google Patch] - ", "url" : "/MyBlog/linux/2019/05/28/REUSEPORT.html" } , { "title" : "PrintStack - ", "url" : "/MyBlog/golang/2019/05/28/PrintStack.html" } , { "title" : "redis HashTags - ", "url" : "/MyBlog/storage/2019/05/28/HashTags.html" } , { "title" : "GEODNS GeoIP - ", "url" : "/MyBlog/web/2019/05/28/GEODNS.html" } , { "title" : "Benchmark - ", "url" : "/MyBlog/golang/2019/05/27/Benchmark.html" } , { "title" : "TCP_CORK tcp_push TCP_NODELAY 和 TCP_NOPUSH - ", "url" : "/MyBlog/linux/2019/05/26/tcp.html" } , { "title" : "pid 文件作用 - ", "url" : "/MyBlog/linux/2019/05/26/pid.html" } , { "title" : "limit_rate_after nginx限速配置 - ", "url" : "/MyBlog/php/2019/05/26/limit_rate_after.html" } , { "title" : "libevent - ", "url" : "/MyBlog/linux/2019/05/26/libevent.html" } , { "title" : "爱拉托逊斯筛选法 - ", "url" : "/MyBlog/algorithm/2019/05/26/Eratosthees.html" } , { "title" : "thread local storage Goroutine Local Storage - ", "url" : "/MyBlog/golang/2019/05/24/tls.html" } , { "title" : "获取 goroutine id - ", "url" : "/MyBlog/golang/2019/05/24/getg.html" } , { "title" : "backlog - ", "url" : "/MyBlog/linux/2019/05/24/backlog.html" } , { "title" : "method 接收者 - ", "url" : "/MyBlog/golang/2019/05/23/method.html" } , { "title" : "SYN-Cookie - ", "url" : "/MyBlog/linux/2019/05/23/SYN-Cookie.html" } , { "title" : "SO_REUSEADDR SO_REUSEPORT - ", "url" : "/MyBlog/linux/2019/05/23/SO_REUSEADDR.html" } , { "title" : "lsof netstat - ", "url" : "/MyBlog/linux/2019/05/22/lsof.html" } , { "title" : "nginx request_time - ", "url" : "/MyBlog/php/2019/05/21/request_time.html" } , { "title" : "mysql instant add colum - ", "url" : "/MyBlog/storage/2019/05/21/instantaddcolum.html" } , { "title" : "mysql ddl-ghost - ", "url" : "/MyBlog/storage/2019/05/21/ddl-ghost.html" } , { "title" : "TIME_WAIT和CLOSE_WAIT - ", "url" : "/MyBlog/golang/2019/05/09/time_wait.html" } , { "title" : "netpoller - ", "url" : "/MyBlog/golang/2019/05/09/netpoller.html" } , { "title" : "TCP序列号欺骗 - ", "url" : "/MyBlog/linux/2019/05/09/isns.html" } , { "title" : "gopsutil - ", "url" : "/MyBlog/golang/2019/05/09/gopsutil.html" } , { "title" : "goprof - ", "url" : "/MyBlog/golang/2019/04/26/goprof.html" } , { "title" : "CAS:Compare and Swap - ", "url" : "/MyBlog/algorithm/2019/04/26/cas.html" } , { "title" : "Context - ", "url" : "/MyBlog/golang/2019/04/26/Context.html" } , { "title" : "tideways + xhgui(+toolkit) php 性能分析 - ", "url" : "/MyBlog/php/2019/04/24/tideways.html" } , { "title" : "aqs - ", "url" : "/MyBlog/algorithm/2019/04/24/aqs.html" } , { "title" : "treemap HashMap和LinkedHashMap的区别 - ", "url" : "/MyBlog/algorithm/2019/04/23/treemap.html" } , { "title" : "gctrace - ", "url" : "/MyBlog/golang/2019/04/23/gctrace.html" } , { "title" : "BitTorrent协议分析 - ", "url" : "/MyBlog/web/2019/04/23/BitTorrent%E5%8D%8F%E8%AE%AE%E5%88%86%E6%9E%90%E4%B8%80.html" } , { "title" : "mutex - ", "url" : "/MyBlog/golang/2019/04/22/mutex.html" } , { "title" : "WaitGroup - ", "url" : "/MyBlog/golang/2019/04/22/WaitGroup.html" } , { "title" : "TCMalloc - ", "url" : "/MyBlog/golang/2019/04/22/TCMalloc.html" } , { "title" : "SESSION 保存在服务器的哪里 - ", "url" : "/MyBlog/php/2019/04/21/SESSION.html" } , { "title" : "go schedule - ", "url" : "/MyBlog/golang/2019/04/20/schedule.html" } , { "title" : "gc - ", "url" : "/MyBlog/golang/2019/04/20/gc.html" } , { "title" : "channel - ", "url" : "/MyBlog/golang/2019/04/20/channel.html" } , { "title" : "lldb - ", "url" : "/MyBlog/golang/2019/04/18/lldb.html" } , { "title" : "goroutine实现原理 - ", "url" : "/MyBlog/golang/2019/04/18/goroutine.html" } , { "title" : "go Vet - ", "url" : "/MyBlog/golang/2019/04/18/Vet.html" } , { "title" : "runtime - ", "url" : "/MyBlog/golang/2019/04/17/runtime.html" } , { "title" : "go:linkname go:nosplit - ", "url" : "/MyBlog/golang/2019/04/17/linkname.html" } , { "title" : "Go 语言编译指示 - ", "url" : "/MyBlog/golang/2019/04/17/go.html" } , { "title" : "Cond - ", "url" : "/MyBlog/golang/2019/04/17/Cond.html" } , { "title" : "reflection - ", "url" : "/MyBlog/golang/2019/04/14/reflection.html" } , { "title" : "Tcp Keepalive和HTTP Keep-alive - ", "url" : "/MyBlog/linux/2019/04/13/tcphttp.html" } , { "title" : "keepalive 连接池 - ", "url" : "/MyBlog/linux/2019/04/13/keepalive.html" } , { "title" : "发送接收缓冲区滑动窗口 - ", "url" : "/MyBlog/linux/2019/04/13/cwnd.html" } , { "title" : "dnsmasq - ", "url" : "/MyBlog/algorithm/2019/04/12/dnsmasq.html" } , { "title" : "Zabbix 监控组件及流程 - ", "url" : "/MyBlog/web/2019/04/12/Zabbix.html" } , { "title" : "FULLTEXT 全文索引 - ", "url" : "/MyBlog/storage/2019/04/12/FULLTEXT.html" } , { "title" : "vrrp keepalived - ", "url" : "/MyBlog/web/2019/04/09/vrrp.html" } , { "title" : "lvs - ", "url" : "/MyBlog/algorithm/2019/04/09/lvs.html" } , { "title" : "dig - ", "url" : "/MyBlog/web/2019/04/09/dig.html" } , { "title" : "高qps接入层方案 - ", "url" : "/MyBlog/web/2019/04/08/qps.html" } , { "title" : "for update - ", "url" : "/MyBlog/storage/2019/04/08/forupdate.html" } , { "title" : "inode 与文件块 block 对应关系 - ", "url" : "/MyBlog/linux/2019/04/07/inode.html" } , { "title" : "socket 虚拟文件系统 - ", "url" : "/MyBlog/linux/2019/04/06/socket.html" } , { "title" : "screen nohup session - ", "url" : "/MyBlog/linux/2019/04/06/screen.html" } , { "title" : "Golang服务器的网络层实现--总结对比常用epoll模型 - ", "url" : "/MyBlog/golang/2019/04/06/net.html" } , { "title" : "堆组织表(HOT)和索引组织表(IOT) - ", "url" : "/MyBlog/storage/2019/04/06/iot.html" } , { "title" : "fork cahe - ", "url" : "/MyBlog/linux/2019/04/06/fork_cahe.html" } , { "title" : "文件锁 - ", "url" : "/MyBlog/linux/2019/04/06/file_lock.html" } , { "title" : "fd 文件描述符 - ", "url" : "/MyBlog/linux/2019/04/06/fd.html" } , { "title" : "fork() execve() - ", "url" : "/MyBlog/linux/2019/04/06/exec.html" } , { "title" : "snowflake - ", "url" : "/MyBlog/algorithm/2019/03/31/snowflake.html" } , { "title" : "Consul vs Zookeeper vs Etcd vs Eureka - ", "url" : "/MyBlog/algorithm/2019/03/31/eureka.html" } , { "title" : "maxmemory - ", "url" : "/MyBlog/algorithm/2019/03/27/maxmemory.html" } , { "title" : "页、磁盘块与扇区 - ", "url" : "/MyBlog/linux/2019/03/27/disk.html" } , { "title" : "GeoHash - ", "url" : "/MyBlog/algorithm/2019/03/27/GeoHash.html" } , { "title" : "SkipList跳表基本原理 - ", "url" : "/MyBlog/algorithm/2019/03/26/skip_table.html" } , { "title" : "Bash 带有特殊含义的退出码 - ", "url" : "/MyBlog/linux/2019/03/25/exit.html" } , { "title" : "FUNCNAME - ", "url" : "/MyBlog/linux/2019/03/25/FUNCNAME.html" } , { "title" : "乐观锁悲观锁 - ", "url" : "/MyBlog/linux/2019/03/24/lock.html" } , { "title" : "redis zset 延迟队列 - ", "url" : "/MyBlog/storage/2019/03/23/zset.html" } , { "title" : "redis keys scan - ", "url" : "/MyBlog/storage/2019/03/23/scan.html" } , { "title" : "lru - ", "url" : "/MyBlog/storage/2019/03/23/lru.html" } , { "title" : "lfu - ", "url" : "/MyBlog/storage/2019/03/23/lfu.html" } , { "title" : "Codis Twemproxy redis集群 - ", "url" : "/MyBlog/storage/2019/03/23/codis.html" } , { "title" : "gap Lock 间隙锁 - ", "url" : "/MyBlog/storage/2019/03/19/gapLock.html" } , { "title" : "strace - ", "url" : "/MyBlog/linux/2019/03/17/strace.html" } , { "title" : "pstack 原理 - ", "url" : "/MyBlog/linux/2019/03/17/pstack.html" } , { "title" : "Linux进程间通信-消息队列(mqueue) - ", "url" : "/MyBlog/linux/2019/03/17/mqueue.html" } , { "title" : "kill - ", "url" : "/MyBlog/linux/2019/03/17/kill.html" } , { "title" : "interface - ", "url" : "/MyBlog/golang/2019/03/17/interface.html" } , { "title" : "gc - ", "url" : "/MyBlog/golang/2019/03/17/gc.html" } , { "title" : "火焰图(flame graph) - ", "url" : "/MyBlog/linux/2019/03/17/flame.html" } , { "title" : "escape 逃逸分析 - ", "url" : "/MyBlog/golang/2019/03/17/escape.html" } , { "title" : "core dump - ", "url" : "/MyBlog/linux/2019/03/17/core.html" } , { "title" : "thread apply all bt - ", "url" : "/MyBlog/linux/2019/03/17/bt.html" } , { "title" : "尾递归、尾调用 - ", "url" : "/MyBlog/lang/2019/03/10/tail.html" } , { "title" : "golang slice append 陷阱 - ", "url" : "/MyBlog/golang/2019/03/10/slice.html" } , { "title" : "函数式编程、闭包 - ", "url" : "/MyBlog/lang/2019/03/10/functional.html" } , { "title" : "通配符与正则表达式 - ", "url" : "/MyBlog/linux/2019/03/09/regx.html" } , { "title" : "awk 用法总结 - ", "url" : "/MyBlog/linux/2019/03/03/awk.html" } , { "title" : "线程技术(Hyper-Threading Technology) - ", "url" : "/MyBlog/web/2019/03/02/ht.html" } , { "title" : "ConcurrentHashMap 分段锁 - ", "url" : "/MyBlog/algorithm/2019/03/02/ConcurrentHashMap.html" } , { "title" : "锁 - ", "url" : "/MyBlog/web/2019/02/27/lock.html" } , { "title" : "futex 快速用户空间互斥体 - ", "url" : "/MyBlog/linux/2019/02/27/futex.html" } , { "title" : "Test And Set Lock - ", "url" : "/MyBlog/linux/2019/02/27/Test_And_Set_Lock.html" } , { "title" : "分布式事务 xa/tcc - ", "url" : "/MyBlog/storage/2019/02/26/xa.html" } , { "title" : "分布式缓存redis - ", "url" : "/MyBlog/storage/2019/02/26/redis.html" } , { "title" : "elasticsearch - ", "url" : "/MyBlog/elasticsearch/2019/02/26/elasticsearch.html" } , { "title" : "异地多活 - ", "url" : "/MyBlog/algorithm/2019/02/26/cap.html" } , { "title" : "go语言sync包的学习(Mutex、WaitGroup、Cond) - ", "url" : "/MyBlog/golang/2019/02/24/sync.html" } , { "title" : "golang 的栈 - ", "url" : "/MyBlog/golang/2019/02/24/stack.html" } , { "title" : "Go语言汇编 - ", "url" : "/MyBlog/golang/2019/02/24/goasm.html" } , { "title" : "Actor模型和CSP模型的区别 - ", "url" : "/MyBlog/golang/2019/02/24/csp_actor.html" } , { "title" : "CSP(Communicating Sequential Processes)模型 - ", "url" : "/MyBlog/golang/2019/02/24/csp.html" } , { "title" : "application binary interface - ", "url" : "/MyBlog/web/2019/02/24/abi.html" } , { "title" : "Context - ", "url" : "/MyBlog/golang/2019/02/24/Context.html" } , { "title" : "Go unsafe Pointer - ", "url" : "/MyBlog/golang/2019/02/23/unsafepointer.html" } , { "title" : "ilp 整数线性规划 - ", "url" : "/MyBlog/algorithm/2019/02/22/ilp.html" } , { "title" : "php json_encode 的坑 - ", "url" : "/MyBlog/php/2019/01/28/json_encode.html" } , { "title" : "traps - ", "url" : "/MyBlog/golang/2019/01/26/traps.html" } , { "title" : "golang 内存分配 - ", "url" : "/MyBlog/golang/2019/01/26/stack.html" } , { "title" : "Server Name Indication - ", "url" : "/MyBlog/web/2019/01/26/sni.html" } , { "title" : "golang nil 总结 - ", "url" : "/MyBlog/golang/2019/01/26/nil.html" } , { "title" : "checkstyle - ", "url" : "/MyBlog/web/2019/01/16/checkstyle.html" } , { "title" : "timer - ", "url" : "/MyBlog/linux/2019/01/15/timer.html" } , { "title" : "timekeeper - ", "url" : "/MyBlog/linux/2019/01/15/timekeeper.html" } , { "title" : "jiffies - ", "url" : "/MyBlog/linux/2019/01/15/jiffies.html" } , { "title" : "clock_event_device - ", "url" : "/MyBlog/linux/2019/01/15/clock_event_device.html" } , { "title" : "时间轮算法 - ", "url" : "/MyBlog/linux/2019/01/15/callout.html" } , { "title" : "ddd - ", "url" : "/MyBlog/architect/2019/01/13/ddd.html" } , { "title" : "4色图 - ", "url" : "/MyBlog/architect/2019/01/13/4color.html" } , { "title" : "www-authenticate - ", "url" : "/MyBlog/web/2019/01/12/www-authenticate.html" } , { "title" : "rstp - ", "url" : "/MyBlog/web/2019/01/12/rstp.html" } , { "title" : "WebDAV - ", "url" : "/MyBlog/web/2019/01/12/WebDAV.html" } , { "title" : "TCP_NODELAY - ", "url" : "/MyBlog/web/2019/01/12/TCP_NODELAY.html" } , { "title" : "reflect golang 反射 - ", "url" : "/MyBlog/golang/2019/01/04/reflect.html" } , { "title" : "llvm - ", "url" : "/MyBlog/lang/2019/01/02/llvm.html" } , { "title" : "recover panic defer - ", "url" : "/MyBlog/golang/2018/12/29/recover.html" } , { "title" : "golang debug dlv - ", "url" : "/MyBlog/golang/2018/12/25/godebug.html" } , { "title" : "gdb dlv 对比 - ", "url" : "/MyBlog/golang/2018/12/25/gdbdlv.html" } , { "title" : "gdb 工作原理和内核实现 - ", "url" : "/MyBlog/golang/2018/12/25/gdb_.html" } , { "title" : "gdb 调试golang - ", "url" : "/MyBlog/golang/2018/12/25/gdb.html" } , { "title" : "go-bindata Go 语言打包静态文件 - ", "url" : "/MyBlog/golang/2018/12/24/go-bindata.html" } , { "title" : "esc - ", "url" : "/MyBlog/golang/2018/12/24/esc.html" } , { "title" : "go Generate - ", "url" : "/MyBlog/golang/2018/12/24/Generate.html" } , { "title" : "subline text3 插件编写 - ", "url" : "/MyBlog/web/2018/12/23/subline.html" } , { "title" : "bom - ", "url" : "/MyBlog/web/2018/12/23/bom.html" } , { "title" : "newSQL - ", "url" : "/MyBlog/storage/2018/12/22/newSQL.html" } , { "title" : "subline text3 自动生成测试代码 - ", "url" : "/MyBlog/golang/2018/12/22/gotest_subline.html" } , { "title" : "ghost - ", "url" : "/MyBlog/storage/2018/12/22/ghost.html" } , { "title" : "go test - ", "url" : "/MyBlog/golang/2018/12/21/gotest.html" } , { "title" : "golang strcut 初始化 - ", "url" : "/MyBlog/golang/2018/12/20/strcut.html" } , { "title" : "docker mac 镜像清理 - ", "url" : "/MyBlog/docker/2018/12/18/docker_clean.html" } , { "title" : "golang 传值传引用 - ", "url" : "/MyBlog/golang/2018/12/14/reference.html" } , { "title" : "ntp 网络时间协议 - ", "url" : "/MyBlog/algorithm/2018/12/13/ntp.html" } , { "title" : "hive 表与hdfs关系 - ", "url" : "/MyBlog/storage/2018/12/08/hive.html" } , { "title" : "Shell 脚本中调用另一个 Shell 脚本 - ", "url" : "/MyBlog/linux/2018/11/28/shell.html" } , { "title" : "Multipart File Upload - ", "url" : "/MyBlog/golang/2018/11/26/postfile.html" } , { "title" : "golang 的坑 - ", "url" : "/MyBlog/golang/2018/11/26/float64.html" } , { "title" : "http basic authentication - ", "url" : "/MyBlog/golang/2018/11/26/authentication.html" } , { "title" : "索引原理分析 - ", "url" : "/MyBlog/elasticsearch/2018/11/18/stor.html" } , { "title" : "正排索引vs倒排索引 - ", "url" : "/MyBlog/elasticsearch/2018/11/18/index.html" } , { "title" : "hive 和 elasticsearch 的整合 - ", "url" : "/MyBlog/elasticsearch/2018/11/18/hive.html" } , { "title" : "elasticsearch 文件的存储 - ", "url" : "/MyBlog/elasticsearch/2018/11/18/elasticsearch.html" } , { "title" : "curl get 发送post数据 - ", "url" : "/MyBlog/web/2018/11/16/curl.html" } , { "title" : "地理坐标的六边形编码(PHXIS) - ", "url" : "/MyBlog/algorithm/2018/11/15/PHXIS.html" } , { "title" : "大数据系统的Lambda架构 - ", "url" : "/MyBlog/storage/2018/11/11/lambda.html" } , { "title" : "B树、B-树、B+树、B*树介绍 - ", "url" : "/MyBlog/storage/2018/11/11/b.html" } , { "title" : "Phoenix - ", "url" : "/MyBlog/storage/2018/11/11/Phoenix.html" } , { "title" : "MHA的搭建 - ", "url" : "/MyBlog/storage/2018/11/09/mha_setup.html" } , { "title" : "Xtrabackup - ", "url" : "/MyBlog/storage/2018/11/09/Xtrabackup.html" } , { "title" : "R_tree - ", "url" : "/MyBlog/algorithm/2018/11/09/R_tree.html" } , { "title" : "MySql GIS 空间数据库使用体验 - ", "url" : "/MyBlog/storage/2018/11/09/MySql.html" } , { "title" : "MySQL高可用架构之MHA - ", "url" : "/MyBlog/storage/2018/11/09/MHA.html" } , { "title" : "ArcSDE 是ArcGIS的空间数据引擎 - ", "url" : "/MyBlog/storage/2018/11/09/ArcSDE.html" } , { "title" : "kafka shell - ", "url" : "/MyBlog/storage/2018/11/07/kafka.html" } , { "title" : "presto - ", "url" : "/MyBlog/storage/2018/11/02/presto.html" } , { "title" : "alibaba Druid - ", "url" : "/MyBlog/storage/2018/11/02/Druid.html" } , { "title" : "Calcite - ", "url" : "/MyBlog/storage/2018/11/02/Calcite.html" } , { "title" : "binlog同步kafka方案 - ", "url" : "/MyBlog/storage/2018/10/31/binlog_kafka.html" } , { "title" : "maxwell+kafka+Spark Streaming构建MySQL Binlog日志采集实时处理方案 - ", "url" : "/MyBlog/storage/2018/10/29/maxwell.html" } , { "title" : "samza - ", "url" : "/MyBlog/algorithm/2018/10/28/smaza.html" } , { "title" : "flume - ", "url" : "/MyBlog/storage/2018/10/28/flume.html" } , { "title" : "csrf token - ", "url" : "/MyBlog/web/2018/10/28/csrftoken.html" } , { "title" : "show processlist - ", "url" : "/MyBlog/storage/2018/10/22/processlist.html" } , { "title" : "ptmalloc、tcmalloc和jemalloc - ", "url" : "/MyBlog/storage/2018/10/21/tcmalloc.html" } , { "title" : "列式存储 - ", "url" : "/MyBlog/storage/2018/10/21/rowstorage.html" } , { "title" : "mysql-proxy-lua - ", "url" : "/MyBlog/storage/2018/10/21/mysql-proxy-lua.html" } , { "title" : "mvcc - ", "url" : "/MyBlog/storage/2018/10/21/mvcc.html" } , { "title" : "LSM树由来、设计思想 - ", "url" : "/MyBlog/storage/2018/10/21/lsmwal.html" } , { "title" : "文件读取流程 - ", "url" : "/MyBlog/linux/2018/10/21/fileread.html" } , { "title" : "zookeeper在hadoop和hbase中的作用 - ", "url" : "/MyBlog/zookeeper/2018/10/18/zk_hdfs_hbase.html" } , { "title" : "ssh config - ", "url" : "/MyBlog/web/2018/10/18/sshconfig.html" } , { "title" : "google authenticator 工作原理 - ", "url" : "/MyBlog/web/2018/10/12/authenticator.html" } , { "title" : "Zookeeper 在 Kafka 中的作用 - ", "url" : "/MyBlog/zookeeper/2018/10/11/zkkafka.html" } , { "title" : "redis-lua 事物 - ", "url" : "/MyBlog/storage/2018/10/10/redis-lua.html" } , { "title" : "explain mysql 执行计划 - ", "url" : "/MyBlog/storage/2018/10/10/explain.html" } , { "title" : "mysql的隐式类型转换 - ", "url" : "/MyBlog/storage/2018/10/09/type.html" } , { "title" : "zookeeper 实现配置同步 服务发现 - ", "url" : "/MyBlog/zookeeper/2018/10/08/zkconf.html" } , { "title" : "zk 实现分布式锁 - ", "url" : "/MyBlog/zookeeper/2018/09/29/zklock.html" } , { "title" : "基于数据库的分布式锁 - ", "url" : "/MyBlog/storage/2018/09/29/dblock.html" } , { "title" : "mysqlbinlog 格式解析 - ", "url" : "/MyBlog/storage/2018/09/28/mysqlbinlog.html" } , { "title" : "sublime for mac 实现 ctrl+左键 跳转函数 - ", "url" : "/MyBlog/web/2018/09/27/subline.html" } , { "title" : "sql-parser - ", "url" : "/MyBlog/storage/2018/09/27/sql-parser.html" } , { "title" : "Redis分布式锁 - ", "url" : "/MyBlog/algorithm/2018/09/27/redis-lock.html" } , { "title" : "go 原子操作 - ", "url" : "/MyBlog/golang/2018/09/27/goautomic.html" } , { "title" : "cmakelist - ", "url" : "/MyBlog/algorithm/2018/09/27/cmakelist.html" } , { "title" : "mac mysql 开启binlog - ", "url" : "/MyBlog/storage/2018/09/27/binlog.html" } , { "title" : "autoconf和automake - ", "url" : "/MyBlog/linux/2018/09/27/automake.html" } , { "title" : "bash 2>&1 - ", "url" : "/MyBlog/linux/2018/09/26/bash.html" } , { "title" : "uninterruptible D 状态 - ", "url" : "/MyBlog/linux/2018/09/23/uninterruptible.html" } , { "title" : "LSF、BPF、eBPF - ", "url" : "/MyBlog/linux/2018/09/23/bpf.html" } , { "title" : "UNIX Domain Socket - ", "url" : "/MyBlog/linux/2018/09/21/unix_socket.html" } , { "title" : "ptrace - ", "url" : "/MyBlog/linux/2018/09/21/ptrace.html" } , { "title" : "LD_PRELOAD/DYLD_INSERT_LIBRARIES libc hook - ", "url" : "/MyBlog/linux/2018/09/21/LD_PRELOAD.html" } , { "title" : "nginx php-fpm unix-socket - ", "url" : "/MyBlog/php/2018/09/20/php-fpm-unix-socket.html" } , { "title" : "cachetool 非php环境操作apcu - ", "url" : "/MyBlog/php/2018/09/20/cachetool.html" } , { "title" : "git rebase - ", "url" : "/MyBlog/web/2018/09/19/rebase.html" } , { "title" : "futex - ", "url" : "/MyBlog/linux/2018/09/15/futex.html" } , { "title" : "strace 原理 - ", "url" : "/MyBlog/linux/2018/09/14/strace.html" } , { "title" : "libiop - ", "url" : "/MyBlog/web/2018/09/14/libiop.html" } , { "title" : "libevent - ", "url" : "/MyBlog/linux/2018/09/14/libevent.html" } , { "title" : "dbpool 数据库连接池 - ", "url" : "/MyBlog/algorithm/2018/09/14/dbpool.html" } , { "title" : "c-ares dns 异步请求库 - ", "url" : "/MyBlog/linux/2018/09/14/c-ares.html" } , { "title" : "HttpClient - ", "url" : "/MyBlog/web/2018/09/14/HttpClient.html" } , { "title" : "Eureka 服务发现 - ", "url" : "/MyBlog/algorithm/2018/09/14/Eureka.html" } , { "title" : "makefile 及其工作原理 - ", "url" : "/MyBlog/linux/2018/09/13/makefile.html" } , { "title" : "php 内置的 web 服务器 - ", "url" : "/MyBlog/php/2018/09/11/oho.html" } , { "title" : "php 的定界符 <<<eof - ", "url" : "/MyBlog/php/2018/09/10/php.html" } , { "title" : "http_proxy - ", "url" : "/MyBlog/web/2018/09/10/http_proxy.html" } , { "title" : "thrift_golang - ", "url" : "/MyBlog/golang/2018/09/09/thrift_golang.html" } , { "title" : "thrift 遇到的坑 - ", "url" : "/MyBlog/web/2018/09/09/thrift.html" } , { "title" : "spinlock 自旋锁 - ", "url" : "/MyBlog/linux/2018/09/08/spinlock.html" } , { "title" : "异步io - ", "url" : "/MyBlog/linux/2018/09/05/aio.html" } , { "title" : "thrift - ", "url" : "/MyBlog/web/2018/09/03/thrift.html" } , { "title" : "popen - ", "url" : "/MyBlog/linux/2018/09/03/popen.html" } , { "title" : "零拷贝之splice( )函数和tee( )函数 - ", "url" : "/MyBlog/linux/2018/09/02/tee.html" } , { "title" : "splice_sendfile - ", "url" : "/MyBlog/linux/2018/09/02/splice_sendfile.html" } , { "title" : "splice - ", "url" : "/MyBlog/linux/2018/09/02/splice.html" } , { "title" : "MySQL协议分析 - ", "url" : "/MyBlog/storage/2018/09/02/mysql.html" } , { "title" : "Nginx/LVS/HAProxy负载均衡软件的优缺点 - ", "url" : "/MyBlog/web/2018/09/02/lvs.html" } , { "title" : "haproxy_exp - ", "url" : "/MyBlog/web/2018/09/02/haproxy_exp.html" } , { "title" : "haproxy - ", "url" : "/MyBlog/web/2018/09/02/haproxy.html" } , { "title" : "haproxy+keepalived实现高可用集群搭建 - ", "url" : "/MyBlog/web/2018/09/02/Keepalived.html" } , { "title" : "expect 100 continue - ", "url" : "/MyBlog/web/2018/09/02/100_continue.html" } , { "title" : "Jenkins和SonarQube集成 - ", "url" : "/MyBlog/web/2018/08/31/sonarQubeJenkins.html" } , { "title" : "sonarQube之平台搭建及sonar-scanner扫描 - ", "url" : "/MyBlog/web/2018/08/31/sonarQube.html" } , { "title" : "sendfile - ", "url" : "/MyBlog/linux/2018/08/30/sendfile.html" } , { "title" : "php流Streams、包装器wrapper - ", "url" : "/MyBlog/php/2018/08/30/phpwrapper.html" } , { "title" : "phar - ", "url" : "/MyBlog/php/2018/08/30/phar.html" } , { "title" : "httpdns - ", "url" : "/MyBlog/algorithm/2018/08/30/httpdns.html" } , { "title" : "PHP 资源大全 - ", "url" : "/MyBlog/algorithm/slug/2018/08/30/.html" } , { "title" : "oneProxy - ", "url" : "/MyBlog/storage/2018/08/28/oneProxy.html" } , { "title" : "自适应hash - ", "url" : "/MyBlog/algorithm/2018/08/28/hash.html" } , { "title" : "cgroup - ", "url" : "/MyBlog/linux/2018/08/28/cgroup.html" } , { "title" : "Php-fpm运行原理 - ", "url" : "/MyBlog/php/2018/08/27/fpm.html" } , { "title" : "sds - ", "url" : "/MyBlog/algorithm/2018/08/23/sds.html" } , { "title" : "SkipList - ", "url" : "/MyBlog/algorithm/2018/08/23/SkipList.html" } , { "title" : "MurmurHash - ", "url" : "/MyBlog/algorithm/2018/08/23/MurmurHash.html" } , { "title" : "PHP的Realpath Cache - ", "url" : "/MyBlog/php/2018/08/22/realpath.html" } , { "title" : "SQL Hints (SQL 优化器) - ", "url" : "/MyBlog/storage/2018/08/22/php_mysql.html" } , { "title" : "percona-toolkit Maatkit - ", "url" : "/MyBlog/storage/2018/08/22/percona-toolkit.html" } , { "title" : "oracle_hint - ", "url" : "/MyBlog/storage/2018/08/22/oracle_hint.html" } , { "title" : "读写分离导致主库从库数据不一致问题 - ", "url" : "/MyBlog/storage/2018/08/22/master_slave_diff.html" } , { "title" : "主从一致性架构优化4种方法 - ", "url" : "/MyBlog/storage/2018/08/22/constency.html" } , { "title" : "opcache缓存的操作小工具cachetool - ", "url" : "/MyBlog/algorithm/2018/08/22/cachetool.html" } , { "title" : "Linux系统调用--access - ", "url" : "/MyBlog/linux/2018/08/22/access.html" } , { "title" : "Mysqlnd 主从复制和负载均衡插件 mysqlnd_qc - ", "url" : "/MyBlog/storage/2018/08/22/Mysqlnd.html" } , { "title" : "Dapper - ", "url" : "/MyBlog/algorithm/2018/08/22/Dapper.html" } , { "title" : "mysql-proxy - ", "url" : "/MyBlog/storage/2018/08/20/mysql-proxy.html" } , { "title" : "influxdb - ", "url" : "/MyBlog/algorithm/2018/08/20/influxdb.html" } , { "title" : "hint - ", "url" : "/MyBlog/storage/2018/08/20/hint.html" } , { "title" : "ifconfig - ", "url" : "/MyBlog/linux/2018/08/14/ifconfig.html" } , { "title" : "launchctl - ", "url" : "/MyBlog/web/2018/08/13/launchctl.html" } , { "title" : "time_wait - ", "url" : "/MyBlog/linux/2018/08/11/time_wait.html" } , { "title" : "OpenStack - ", "url" : "/MyBlog/algorithm/2018/08/11/OpenStack.html" } , { "title" : "μJavaActors - ", "url" : "/MyBlog/algorithm/2018/08/10/%CE%BCJavaActors.html" } , { "title" : "ceph的CRUSH数据分布算法 - ", "url" : "/MyBlog/algorithm/2018/08/10/crush.html" } , { "title" : "Akka 和 μJavaActors - ", "url" : "/MyBlog/algorithm/2018/08/10/akka.html" } , { "title" : "gossip 应用 - ", "url" : "/MyBlog/algorithm/2018/07/30/gossip_application.html" } , { "title" : "Gossip协议 - ", "url" : "/MyBlog/algorithm/2018/07/30/gossip.html" } , { "title" : "分布式系统常用思想和技术总结 - ", "url" : "/MyBlog/algorithm/2018/07/30/consitency.html" } , { "title" : "Gossip_zap_raft_paxos 对比 - ", "url" : "/MyBlog/algorithm/2018/07/30/Gossip_zap_raft_paxos.html" } , { "title" : "dht 一致性hash算法 - ", "url" : "/MyBlog/algorithm/2018/07/28/dht.html" } , { "title" : "Kademlia 原理 - ", "url" : "/MyBlog/algorithm/2018/07/28/Kademlia.html" } , { "title" : "sampling 采样 - ", "url" : "/MyBlog/algorithm/2018/07/27/sampling.html" } , { "title" : "rocksdb - ", "url" : "/MyBlog/storage/2018/07/26/rocksdb.html" } , { "title" : "Tachyon - ", "url" : "/MyBlog/spark/2018/07/26/Tachyon.html" } , { "title" : "tcc 分布式事务 - ", "url" : "/MyBlog/web/2018/07/22/tcc.html" } , { "title" : "KNN与K-Means的区别 - ", "url" : "/MyBlog/algorithm/2018/07/16/knn.html" } , { "title" : "yarn - ", "url" : "/MyBlog/hadoop/2018/07/12/yarn.html" } , { "title" : "余弦夹角 和 欧氏距离 Jaccard相似系数和皮尔逊相关系数 - ", "url" : "/MyBlog/algorithm/2018/07/12/jacard.html" } , { "title" : "MapReduce - ", "url" : "/MyBlog/hadoop/2018/07/12/MapReduce.html" } , { "title" : "php_kafka - ", "url" : "/MyBlog/php/2018/07/11/php_kafka.html" } , { "title" : "KM算法 - ", "url" : "/MyBlog/algorithm/2018/07/10/km.html" } , { "title" : "Hall匹配定理 - ", "url" : "/MyBlog/algorithm/2018/07/10/hall.html" } , { "title" : "gossip 算法 redis - ", "url" : "/MyBlog/algorithm/2018/07/10/gossip.html" } , { "title" : "bipartite_graph_match - ", "url" : "/MyBlog/algorithm/2018/07/10/bipartite_graph_match.html" } , { "title" : "bipartite_graph 二分图 - ", "url" : "/MyBlog/algorithm/2018/07/10/bipartite_graph.html" } , { "title" : "agumenting_path - ", "url" : "/MyBlog/algorithm/2018/07/10/agumenting_path.html" } , { "title" : "KM(Kuhn and Munkres)算法 - ", "url" : "/MyBlog/algorithm/2018/07/10/Kuhn_and_Munkres.html" } , { "title" : "Hungarian_algorithm 匈牙利算法 - ", "url" : "/MyBlog/algorithm/2018/07/10/Hungarian_algorithm.html" } , { "title" : "Edmond-Karp 算法 网络流 增广路 - ", "url" : "/MyBlog/algorithm/2018/07/10/Edmond-Karp.html" } , { "title" : "git - ", "url" : "/MyBlog/web/2018/07/06/git.html" } , { "title" : "composer dump-atoload namespace dir - ", "url" : "/MyBlog/php/2018/07/06/composer.html" } , { "title" : "golang list jsonMarshal之后一个为null一个为[ ]问题 - ", "url" : "/MyBlog/golang/2018/07/04/golang_list.html" } , { "title" : "xterm.js tty.js 基于浏览器的终端模拟器 - ", "url" : "/MyBlog/web/2018/07/03/xterm.js_tty.js.html" } , { "title" : "mac安装gradle - ", "url" : "/MyBlog/java/2018/07/03/mac_gradle.html" } , { "title" : "gradle_eclipse - ", "url" : "/MyBlog/java/2018/07/03/gradle_eclipse.html" } , { "title" : "build.gradle - ", "url" : "/MyBlog/java/2018/07/03/gradle_build.html" } , { "title" : "Gradle - ", "url" : "/MyBlog/java/2018/07/03/Gradle.html" } , { "title" : "mysql、zookeeper、redis和elasticsearch主从同步机制 - ", "url" : "/MyBlog/storage/2018/06/30/slave.html" } , { "title" : "redis slow log - ", "url" : "/MyBlog/storage/2018/06/30/redis_slow_log.html" } , { "title" : "redis主从复制 - ", "url" : "/MyBlog/storage/2018/06/30/redis_slave.html" } , { "title" : "redis主从复制原理、断点续传、无磁盘化复制、过期key处理 - ", "url" : "/MyBlog/storage/2018/06/30/redis_replication.html" } , { "title" : "redis_mysql - ", "url" : "/MyBlog/storage/2018/06/30/redis_mysql.html" } , { "title" : "redis_memcache - ", "url" : "/MyBlog/storage/2018/06/30/redis_memcache.html" } , { "title" : "Redis原理及使用 - ", "url" : "/MyBlog/storage/2018/06/30/redis.html" } , { "title" : "nginx_redis 高并发 - ", "url" : "/MyBlog/linux/2018/06/30/nginx_redis.html" } , { "title" : "mysql slow log - ", "url" : "/MyBlog/storage/2018/06/30/mysql_slow_log.html" } , { "title" : "multiplexing IO多路复用 - ", "url" : "/MyBlog/linux/2018/06/30/multiplexing.html" } , { "title" : "select,poll,epoll,kqueue模型 - ", "url" : "/MyBlog/linux/2018/06/30/kqueue.html" } , { "title" : "grok - ", "url" : "/MyBlog/elasticsearch/2018/06/30/grok.html" } , { "title" : "epoll_server 服务端代码 - ", "url" : "/MyBlog/linux/2018/06/30/epoll_server.html" } , { "title" : "epoll - ", "url" : "/MyBlog/linux/2018/06/30/epoll.html" } , { "title" : "Sentinel - ", "url" : "/MyBlog/storage/2018/06/30/Sentinel.html" } , { "title" : "Pipeline - ", "url" : "/MyBlog/storage/2018/06/30/Pipeline.html" } , { "title" : "Logagent 日志组件对比 - ", "url" : "/MyBlog/elasticsearch/2018/06/30/Logagent.html" } , { "title" : "test - ", "url" : "/MyBlog/elasticsearch/2018/06/29/test.html" } , { "title" : "map 映射 - ", "url" : "/MyBlog/elasticsearch/2018/06/29/map.html" } , { "title" : "logstash输出到elasticsearch - ", "url" : "/MyBlog/elasticsearch/2018/06/29/logstash_elasticsearch.html" } , { "title" : "kibana - ", "url" : "/MyBlog/elasticsearch/2018/06/29/kibana.html" } , { "title" : "index - ", "url" : "/MyBlog/elasticsearch/2018/06/29/index.html" } , { "title" : "ik - ", "url" : "/MyBlog/elasticsearch/2018/06/29/ik.html" } , { "title" : "head - ", "url" : "/MyBlog/elasticsearch/2018/06/29/head.html" } , { "title" : "elasticsearch - ", "url" : "/MyBlog/elasticsearch/2018/06/29/elasticsearch.html" } , { "title" : "dsl - ", "url" : "/MyBlog/elasticsearch/2018/06/29/dsl.html" } , { "title" : "config - ", "url" : "/MyBlog/elasticsearch/2018/06/29/config.html" } , { "title" : "aggregations - ", "url" : "/MyBlog/elasticsearch/2018/06/29/aggregations.html" } , { "title" : "_search - ", "url" : "/MyBlog/elasticsearch/2018/06/29/_search.html" } , { "title" : "Logstash_example - ", "url" : "/MyBlog/elasticsearch/2018/06/29/Logstash_example.html" } , { "title" : "Logstash_elk - ", "url" : "/MyBlog/elasticsearch/2018/06/29/Logstash_elk.html" } , { "title" : "Logstash - ", "url" : "/MyBlog/elasticsearch/2018/06/29/Logstash.html" } , { "title" : "elk mac 安装 - ", "url" : "/MyBlog/elasticsearch/2018/06/28/elk.html" } , { "title" : "sysfs - ", "url" : "/MyBlog/linux/2018/06/27/sysfs.html" } , { "title" : "proc文件系统 - ", "url" : "/MyBlog/linux/2018/06/27/proc.html" } , { "title" : "lkm 可加载内核模块 - ", "url" : "/MyBlog/linux/2018/06/27/lkm.html" } , { "title" : "kobject - ", "url" : "/MyBlog/linux/2018/06/27/kobject.html" } , { "title" : "Linux各目录及每个目录的详细介绍 - ", "url" : "/MyBlog/linux/2018/06/27/dir.html" } , { "title" : "devfs sysfs - ", "url" : "/MyBlog/linux/2018/06/27/devfs.html" } , { "title" : "pool - ", "url" : "/MyBlog/golang/2018/06/26/pool.html" } , { "title" : "Linux中pam模块 - ", "url" : "/MyBlog/linux/2018/06/26/pam.html" } , { "title" : "issue 设置linux登录前后的欢迎信息 - ", "url" : "/MyBlog/linux/2018/06/26/issue.html" } , { "title" : "bash_profile等几个文件的执行过程 - ", "url" : "/MyBlog/linux/2018/06/26/bash_profile.html" } , { "title" : "gorpc - ", "url" : "/MyBlog/web/2018/06/24/gorpc.html" } , { "title" : "HAProxy - ", "url" : "/MyBlog/web/2018/06/24/HAProxy.html" } , { "title" : "Nutch - ", "url" : "/MyBlog/web/2018/06/23/Nutch.html" } , { "title" : "lsm - ", "url" : "/MyBlog/storage/2018/06/16/lsm.html" } , { "title" : "logstash 日志收集 - ", "url" : "/MyBlog/elasticsearch/2018/06/16/logstash.html" } , { "title" : "ldap 轻量目录访问协议 - ", "url" : "/MyBlog/web/2018/06/16/ldap.html" } , { "title" : "查看某行代码的git修改历史 - ", "url" : "/MyBlog/web/2018/06/16/gitEditHistory.html" } , { "title" : "python中os.system、os.popen、subprocess.popen的区别 - ", "url" : "/MyBlog/linux/2018/06/12/subprocess.html" } , { "title" : "sshpass - ", "url" : "/MyBlog/linux/2018/06/12/sshpass.html" } , { "title" : "samba - ", "url" : "/MyBlog/linux/2018/06/12/samb.html" } , { "title" : "pyopen Python subprocess - ", "url" : "/MyBlog/linux/2018/06/12/pyopen.html" } , { "title" : "dns - ", "url" : "/MyBlog/linux/2018/06/12/dns.html" } , { "title" : "bind - ", "url" : "/MyBlog/linux/2018/06/12/bind.html" } , { "title" : "supervisor - ", "url" : "/MyBlog/linux/2018/06/10/supervisor.html" } , { "title" : "Paxos、Raft、Zab和VR - ", "url" : "/MyBlog/zookeeper/2018/06/10/raft.html" } , { "title" : "quorum - ", "url" : "/MyBlog/zookeeper/2018/06/10/quorum.html" } , { "title" : "Paxos和Quorum - ", "url" : "/MyBlog/zookeeper/2018/06/10/paxos_quorum.html" } , { "title" : "lucence elasticsearch - ", "url" : "/MyBlog/elasticsearch/2018/06/10/lucence.html" } , { "title" : "jndi - ", "url" : "/MyBlog/zookeeper/2018/06/10/jndi.html" } , { "title" : "guava - ", "url" : "/MyBlog/zookeeper/2018/06/10/gava.html" } , { "title" : "fluent 编程风格 - ", "url" : "/MyBlog/zookeeper/2018/06/10/fluent.html" } , { "title" : "Curator - ", "url" : "/MyBlog/zookeeper/2018/06/10/Curator.html" } , { "title" : "ZooKeeper实现配置同步 - ", "url" : "/MyBlog/spark/2018/06/03/zk_conf.html" } , { "title" : "nginx_header - ", "url" : "/MyBlog/php/2018/06/03/nginx_header.html" } , { "title" : "dtrace - ", "url" : "/MyBlog/linux/2018/06/03/dtrace.html" } , { "title" : "zebra - ", "url" : "/MyBlog/linux/2018/05/30/zebra.html" } , { "title" : "rawip - ", "url" : "/MyBlog/linux/2018/05/30/rawip.html" } , { "title" : "ospf - ", "url" : "/MyBlog/linux/2018/05/30/ospf.html" } , { "title" : "邻居子系统 - ", "url" : "/MyBlog/linux/2018/05/30/nabour.html" } , { "title" : "General Purpose Input Output - ", "url" : "/MyBlog/linux/2018/05/30/gpio.html" } , { "title" : "流量控制 - ", "url" : "/MyBlog/linux/2018/05/30/Traffic_ctl.html" } , { "title" : "透明网桥 - ", "url" : "/MyBlog/linux/2018/05/28/transparent.html" } , { "title" : "tcpdump - ", "url" : "/MyBlog/linux/2018/05/28/tcpdump.html" } , { "title" : "stp 生成树协议 - ", "url" : "/MyBlog/linux/2018/05/28/stp.html" } , { "title" : "NAPI 技术在 Linux 网络驱动上的应用 - ", "url" : "/MyBlog/linux/2018/05/28/napi.html" } , { "title" : "ethereal - ", "url" : "/MyBlog/linux/2018/05/28/ethereal.html" } , { "title" : "inotify 监控 Linux 文件系统事件 - ", "url" : "/MyBlog/linux/2018/05/24/inotify.html" } , { "title" : "golang fsnotify - ", "url" : "/MyBlog/golang/2018/05/24/fsnotify_go.html" } , { "title" : "fsnotify - ", "url" : "/MyBlog/linux/2018/05/24/fsnotify.html" } , { "title" : "PostForm - ", "url" : "/MyBlog/golang/2018/05/18/PostForm.html" } , { "title" : "template - ", "url" : "/MyBlog/golang/2018/05/17/template.html" } , { "title" : "mergely_CodeMirror_DiffMatchPatch前端文本diff - ", "url" : "/MyBlog/web/2018/05/12/mergeLy.html" } , { "title" : "pipework 为docker容器配置独立IP - ", "url" : "/MyBlog/docker/2018/05/09/pipework.html" } , { "title" : "调用namespace的API - ", "url" : "/MyBlog/docker/2018/05/09/namespace.html" } , { "title" : "ifconfig - ", "url" : "/MyBlog/web/2018/05/08/ifconfig.html" } , { "title" : "subnet_mask 子网掩码 - ", "url" : "/MyBlog/web/2018/05/06/subnet_mask.html" } , { "title" : "iptables - ", "url" : "/MyBlog/linux/2018/05/06/iptables.html" } , { "title" : "gateway - ", "url" : "/MyBlog/web/2018/05/06/gateway.html" } , { "title" : "docker_bridge 容器桥接到物理网络 - ", "url" : "/MyBlog/docker/2018/05/06/docker_bridge.html" } , { "title" : "default_gateway 默认网关 - ", "url" : "/MyBlog/web/2018/05/06/default_gateway.html" } , { "title" : "bridge 网桥 Linux下的虚拟网桥 - ", "url" : "/MyBlog/web/2018/05/06/bridge.html" } , { "title" : "wins - ", "url" : "/MyBlog/web/2018/05/05/wins.html" } , { "title" : "routing_table 路由表 - ", "url" : "/MyBlog/web/2018/05/05/routing_table.html" } , { "title" : "routing_protocol 路由协议 - ", "url" : "/MyBlog/web/2018/05/05/routing_protocol.html" } , { "title" : "router 路由协议 - ", "url" : "/MyBlog/web/2018/05/05/router.html" } , { "title" : "rip 路由信息协议 - ", "url" : "/MyBlog/web/2018/05/05/rip.html" } , { "title" : "netbios - ", "url" : "/MyBlog/web/2018/05/05/netbios.html" } , { "title" : "lmhosts - ", "url" : "/MyBlog/web/2018/05/05/lmhosts.html" } , { "title" : "dhcp - ", "url" : "/MyBlog/web/2018/05/05/dhcp.html" } , { "title" : "arc phabricator 结合 arcanist 使用 - ", "url" : "/MyBlog/web/2018/05/04/arc.html" } , { "title" : "aufs Union File System - ", "url" : "/MyBlog/docker/2018/05/03/aufs.html" } , { "title" : "veth - ", "url" : "/MyBlog/linux/2018/04/29/veth.html" } , { "title" : "linux namespace - ", "url" : "/MyBlog/linux/2018/04/29/namespace.html" } , { "title" : "docker_net - ", "url" : "/MyBlog/docker/2018/04/29/docker_net.html" } , { "title" : "Docker容器通过独立IP暴露给局域网的方法 - ", "url" : "/MyBlog/docker/2018/04/29/docker_ip.html" } , { "title" : "linux cgroup - ", "url" : "/MyBlog/linux/2018/04/29/cgroup.html" } , { "title" : "bridge - ", "url" : "/MyBlog/linux/2018/04/29/bridge.html" } , { "title" : "flag - ", "url" : "/MyBlog/golang/2018/04/24/flag.html" } , { "title" : "expect - ", "url" : "/MyBlog/linux/2018/04/22/expect.html" } , { "title" : "站群 - ", "url" : "/MyBlog/web/2018/04/21/zq.html" } , { "title" : "urlencode - ", "url" : "/MyBlog/cryptology/2018/04/20/urlencode.html" } , { "title" : "shell 运行原理 & unix 缺陷 - ", "url" : "/MyBlog/jekyll/2018/04/20/shell.html" } , { "title" : "Linux下的shell工作原理 - ", "url" : "/MyBlog/linux/2018/04/20/linux_shell.html" } , { "title" : "base64 - ", "url" : "/MyBlog/cryptology/2018/04/20/base64.html" } , { "title" : "aes 的工作模式(ECB、CBC、CFB、OFB) - ", "url" : "/MyBlog/cryptology/2018/04/19/aes.html" } , { "title" : "json - ", "url" : "/MyBlog/golang/2018/04/16/json.html" } , { "title" : "dup dup2 - ", "url" : "/MyBlog/linux/2018/04/16/dup.html" } , { "title" : "Reactor and Proactor - ", "url" : "/MyBlog/web/2018/04/15/proactor.html" } , { "title" : "fsnotify bee 热编译 - ", "url" : "/MyBlog/golang/2018/04/15/fsnotify.html" } , { "title" : "Git内部原理 blob tree commit - ", "url" : "/MyBlog/web/2018/04/12/git.html" } , { "title" : "rsync - ", "url" : "/MyBlog/linux/2018/03/27/rsync.html" } , { "title" : "intellij 配置 - ", "url" : "/MyBlog/golang/2018/03/27/intellij.html" } , { "title" : "context - ", "url" : "/MyBlog/golang/2018/03/27/context.html" } , { "title" : "golang热编译工具 - ", "url" : "/MyBlog/golang/2018/03/23/online_build.html" } , { "title" : "glide 包依赖管理 - ", "url" : "/MyBlog/golang/2018/03/23/glide.html" } , { "title" : "utxo 比特币查询原理 - ", "url" : "/MyBlog/cryptology/2018/03/18/utxo.html" } , { "title" : "数字时间戳 - ", "url" : "/MyBlog/cryptology/2018/03/18/timestamp.html" } , { "title" : "stratum协议原理 - ", "url" : "/MyBlog/cryptology/2018/03/18/stratum.html" } , { "title" : "区块链共识机制 Pow、Pos、DPos、Pool - ", "url" : "/MyBlog/cryptology/2018/03/18/pow.html" } , { "title" : "PBFT(实用拜占庭容错)、PAXOS、RAFT - ", "url" : "/MyBlog/cryptology/2018/03/18/pbft.html" } , { "title" : "hamming 码校验 汉明距离 - ", "url" : "/MyBlog/cryptology/2018/03/18/hamming_code.html" } , { "title" : "block chain 区块链 - ", "url" : "/MyBlog/cryptology/2018/03/18/block_chain.html" } , { "title" : "unsafe cgo - ", "url" : "/MyBlog/golang/2018/03/17/unsafe.html" } , { "title" : "数字签名及应用 - ", "url" : "/MyBlog/cryptology/2018/03/17/signature.html" } , { "title" : "reflect - ", "url" : "/MyBlog/golang/2018/03/17/reflect.html" } , { "title" : "go package - ", "url" : "/MyBlog/golang/2018/03/17/package.html" } , { "title" : "goroutine - ", "url" : "/MyBlog/golang/2018/03/17/goroutine.html" } , { "title" : "go test - ", "url" : "/MyBlog/golang/2018/03/17/go_test.html" } , { "title" : "进程和线程、协程的区别 - ", "url" : "/MyBlog/golang/2018/03/17/coroutine.html" } , { "title" : "golang 返回函数的匿名函数 vs 接收器的方法 - ", "url" : "/MyBlog/golang/2018/03/16/go_func.html" } , { "title" : "go-tour 安装 - ", "url" : "/MyBlog/golang/2018/03/16/go-tour.html" } , { "title" : "git默认不区分文件夹大小写 - ", "url" : "/MyBlog/web/2018/03/16/git.html" } , { "title" : "栈与活动记录 - ", "url" : "/MyBlog/lang/2018/03/15/active_record.html" } , { "title" : "Lambda演算的类型 - ", "url" : "/MyBlog/lang/2018/03/14/lambda_type.html" } , { "title" : "lambda 演算中的数字 - ", "url" : "/MyBlog/lang/2018/03/14/lambda_num.html" } , { "title" : "Lambda演算建模 - ", "url" : "/MyBlog/lang/2018/03/14/lambda_model.html" } , { "title" : "lambda 演算中的布尔值和选择 - ", "url" : "/MyBlog/lang/2018/03/14/lambda_bool.html" } , { "title" : "lambda Y组合子(y-combinator) - ", "url" : "/MyBlog/lang/2018/03/14/lambda_Y.html" } , { "title" : "lambda_Evaluation - ", "url" : "/MyBlog/lang/2018/03/14/lambda_Evaluation.html" } , { "title" : "从Lambda演算到组合子演算 - ", "url" : "/MyBlog/lang/2018/03/14/lambda_Combinator.html" } , { "title" : "Lambda 演算 - ", "url" : "/MyBlog/lang/2018/03/14/Lambda.html" } , { "title" : "系统调用 - ", "url" : "/MyBlog/linux/2018/03/13/system_call.html" } , { "title" : "mysql 分页 - ", "url" : "/MyBlog/web/2018/03/13/page.html" } , { "title" : "尾递归优化 - ", "url" : "/MyBlog/lang/2018/03/12/tco.html" } , { "title" : "三地址代码 - ", "url" : "/MyBlog/lang/2018/03/09/three-address-code.html" } , { "title" : "栈机 - ", "url" : "/MyBlog/lang/2018/03/09/Stack_machine.html" } , { "title" : "下推自动机 - ", "url" : "/MyBlog/lang/2018/03/08/pda.html" } , { "title" : "LR分析法 - ", "url" : "/MyBlog/lang/2018/03/08/lr.html" } , { "title" : "LL(1)文法判别之First集合、Follow集合、Select集合求法 - ", "url" : "/MyBlog/lang/2018/03/07/first_follow_select.html" } , { "title" : "thrift - ", "url" : "/MyBlog/lang/2018/03/02/thrift.html" } , { "title" : "thrift 低版本安装 - ", "url" : "/MyBlog/web/2018/03/01/thrift_low.html" } , { "title" : "jekyll paginate 分页失败原因 - ", "url" : "/MyBlog/jekyll/2018/03/01/paginate.html" } , { "title" : "git add 删除文件问题 - ", "url" : "/MyBlog/web/2018/03/01/git.html" } , { "title" : "symbol_table - ", "url" : "/MyBlog/lang/2018/02/28/symbol_table.html" } , { "title" : "re2c - ", "url" : "/MyBlog/lang/2018/02/28/re2c.html" } , { "title" : "Jekyll目录结构和运行机理 - ", "url" : "/MyBlog/jekyll/2018/02/28/jekyll_inside.html" } , { "title" : "CollectingCycles - ", "url" : "/MyBlog/lang/2018/02/28/CollectingCycles.html" } , { "title" : "type_hinting - ", "url" : "/MyBlog/php/2018/02/26/type_hinting.html" } , { "title" : "tsrm - ", "url" : "/MyBlog/php/2018/02/26/tsrm.html" } , { "title" : "create_function - ", "url" : "/MyBlog/php/2018/02/26/create_function.html" } , { "title" : "Xdebug - ", "url" : "/MyBlog/php/2018/02/26/Xdebug.html" } , { "title" : "Closure - ", "url" : "/MyBlog/lang/2018/02/26/Closure.html" } , { "title" : "lex - ", "url" : "/MyBlog/lang/2018/02/13/lex.html" } , { "title" : "vld_dot_graphviz - ", "url" : "/MyBlog/php/2018/02/12/vld_dot_graphviz.html" } , { "title" : "phpvld - ", "url" : "/MyBlog/php/2018/02/12/phpvld.html" } , { "title" : "phpize - ", "url" : "/MyBlog/php/2018/02/12/phpize.html" } , { "title" : "PHP 调试利器之 PHPDBG - ", "url" : "/MyBlog/php/2018/02/12/phpdbg.html" } , { "title" : "dot - ", "url" : "/MyBlog/web/2018/02/12/dot.html" } , { "title" : "netty - ", "url" : "/MyBlog/web/2018/02/10/netty.html" } , { "title" : "Tachyon - ", "url" : "/MyBlog/spark/2018/02/10/Tachyon.html" } , { "title" : "crlf 攻击 - ", "url" : "/MyBlog/web/2018/02/06/crlf.html" } , { "title" : "iputils - ", "url" : "/MyBlog/linux/2018/02/05/iputils.html" } , { "title" : "cscope - ", "url" : "/MyBlog/web/2018/02/05/cscope.html" } , { "title" : "sklearn - ", "url" : "/MyBlog/spark/2018/02/03/sklearn.html" } , { "title" : "mathlatex - ", "url" : "/MyBlog/web/2018/02/02/mathlatex.html" } , { "title" : "二项逻辑斯蒂回归模型 - ", "url" : "/MyBlog/spark/2018/02/02/logistic.html" } , { "title" : "Duck typing - ", "url" : "/MyBlog/golang/2018/02/02/Duck_typing.html" } , { "title" : "导入第三方依赖到shell - ", "url" : "/MyBlog/spark/2018/01/27/spark_jar.html" } , { "title" : "zero copy - ", "url" : "/MyBlog/linux/2018/01/26/zero_copy.html" } , { "title" : "进程在后台运行原理 - ", "url" : "/MyBlog/linux/2018/01/24/nohup.html" } , { "title" : "mongodb - ", "url" : "/MyBlog/storage/2018/01/24/mongodb.html" } , { "title" : "倒排索引 - ", "url" : "/MyBlog/storage/2018/01/24/inverted_file.html" } , { "title" : "npm registry - ", "url" : "/MyBlog/web/2018/01/16/npm.html" } , { "title" : "制作地图 - ", "url" : "/MyBlog/web/2018/01/16/map.html" } , { "title" : "Linux、Mac上面ln命令使用说明 - ", "url" : "/MyBlog/linux/2018/01/16/ln.html" } , { "title" : "spark on hive - ", "url" : "/MyBlog/spark/2018/01/13/spark_hive.html" } , { "title" : "scala maven 版本冲突问题解决 - ", "url" : "/MyBlog/spark/2018/01/12/scala_version.html" } , { "title" : "Eclipse中操作Hive、HDFS、spark时的jar包列表 - ", "url" : "/MyBlog/spark/2018/01/12/hive.html" } , { "title" : "Eclipse+maven+scala+spark环境搭建 - ", "url" : "/MyBlog/spark/2018/01/11/maven_scala_eclipse.html" } , { "title" : "maven - ", "url" : "/MyBlog/spark/2018/01/11/maven.html" } , { "title" : "随机森林 - ", "url" : "/MyBlog/spark/2018/01/09/random_foreast.html" } , { "title" : "svm - ", "url" : "/MyBlog/spark/2018/01/08/svm.html" } , { "title" : "virtualenv - ", "url" : "/MyBlog/web/2018/01/07/virtualenv.html" } , { "title" : "pip - ", "url" : "/MyBlog/web/2018/01/07/pip.html" } , { "title" : "信息熵 - ", "url" : "/MyBlog/spark/2018/01/05/shang.html" } , { "title" : "Zookeeper与Paxos - ", "url" : "/MyBlog/spark/2018/01/04/zookeeper.html" } , { "title" : "安全散列算法SHA256 - ", "url" : "/MyBlog/cryptology/2018/01/04/sha.html" } , { "title" : "raft - ", "url" : "/MyBlog/storage/2018/01/04/raft.html" } , { "title" : "比较raft ,basic paxos以及multi-paxos - ", "url" : "/MyBlog/spark/2018/01/04/paxos_raft.html" } , { "title" : "p2p - ", "url" : "/MyBlog/web/2018/01/04/p2p.html" } , { "title" : "nat - ", "url" : "/MyBlog/web/2018/01/04/nat.html" } , { "title" : "Chubby与Paxos - ", "url" : "/MyBlog/spark/2018/01/04/chubby.html" } , { "title" : "Paxos - ", "url" : "/MyBlog/spark/2018/01/04/Paxos.html" } , { "title" : "rsa 非对称加密原理 - ", "url" : "/MyBlog/cryptology/2018/01/03/rsa.html" } , { "title" : "Merkle Patricia Tree - ", "url" : "/MyBlog/cryptology/2018/01/03/merkle_tree.html" } , { "title" : "ecc 椭圆曲线加密 - ", "url" : "/MyBlog/cryptology/2018/01/03/ecc.html" } , { "title" : "单播、多播和广播 - ", "url" : "/MyBlog/linux/2017/12/30/broad_cast.html" } , { "title" : "arp - ", "url" : "/MyBlog/linux/2017/12/30/arp.html" } , { "title" : "json_shell - ", "url" : "/MyBlog/web/2017/12/27/json_shell.html" } , { "title" : "ioctl - ", "url" : "/MyBlog/linux/2017/12/27/ioctl.html" } , { "title" : "inetd - ", "url" : "/MyBlog/linux/2017/12/27/inetd.html" } , { "title" : "Django_nginx_uwsgi - ", "url" : "/MyBlog/web/2017/12/27/Django_nginx_uwsgi.html" } , { "title" : "UNIX下的5种IO模型 - ", "url" : "/MyBlog/linux/2017/12/24/unix_io5.html" } , { "title" : "用户空间实现线程 内核实现线程 线程的调度 - ", "url" : "/MyBlog/linux/2017/12/24/thread_namespace.html" } , { "title" : "进程切换 - ", "url" : "/MyBlog/linux/2017/12/24/thread.html" } , { "title" : "IO多路复用之select、poll、epoll - ", "url" : "/MyBlog/linux/2017/12/24/select_poll.html" } , { "title" : "goroutine - ", "url" : "/MyBlog/golang/2017/12/24/goroutine.html" } , { "title" : "goclipse eclipse go 开发环境搭建+跳转支持 - ", "url" : "/MyBlog/web/2017/12/24/goclipse.html" } , { "title" : "tcp_flag - ", "url" : "/MyBlog/web/2017/12/22/tcp_flag.html" } , { "title" : "url短链 - ", "url" : "/MyBlog/web/2017/12/22/short_url.html" } , { "title" : "ID为0和ID为1的进程 - ", "url" : "/MyBlog/linux/2017/12/22/pid_0_1.html" } , { "title" : "Shell脚本经典之Fork炸弹 - ", "url" : "/MyBlog/linux/2017/12/22/fork_b.html" } , { "title" : "fork - ", "url" : "/MyBlog/linux/2017/12/22/fork.html" } , { "title" : "Linux进程控制——exec函数族 - ", "url" : "/MyBlog/linux/2017/12/22/exec.html" } , { "title" : "各种树的应用场景 - ", "url" : "/MyBlog/storage/2017/12/13/tree.html" } , { "title" : "sbt - ", "url" : "/MyBlog/spark/2017/12/13/sbt.html" } , { "title" : "radix tree - ", "url" : "/MyBlog/linux/2017/12/13/radix_tree.html" } , { "title" : "maven 安装 - ", "url" : "/MyBlog/spark/2017/12/13/maven.html" } , { "title" : "figaro mac 安装 - ", "url" : "/MyBlog/spark/2017/12/13/figaro.html" } , { "title" : "大端小端 - ", "url" : "/MyBlog/web/2017/12/13/bigEnd.html" } , { "title" : "truss、strace或ltrace - ", "url" : "/MyBlog/linux/2017/12/10/strace.html" } , { "title" : "netlink - ", "url" : "/MyBlog/linux/2017/12/10/netlink.html" } , { "title" : "linux sysfs - ", "url" : "/MyBlog/linux/2017/12/09/sysfs.html" } , { "title" : "proc文件系统 - ", "url" : "/MyBlog/linux/2017/12/09/proc.html" } , { "title" : "netfliter - ", "url" : "/MyBlog/linux/2017/12/09/netfliter.html" } , { "title" : "namespace - ", "url" : "/MyBlog/linux/2017/12/08/namespace.html" } , { "title" : "vfs - ", "url" : "/MyBlog/linux/2017/12/07/vfs.html" } , { "title" : "mysql_index - ", "url" : "/MyBlog/storage/2017/12/07/mysql_index.html" } , { "title" : "linux_rcu - ", "url" : "/MyBlog/linux/2017/12/06/linux_rcu.html" } , { "title" : "Linux的mmap内存映射机制 - ", "url" : "/MyBlog/linux/2017/12/06/linux_mmap.html" } , { "title" : "linux_lock - ", "url" : "/MyBlog/linux/2017/12/06/linux_lock.html" } , { "title" : "linux_elf - ", "url" : "/MyBlog/linux/2017/12/06/linux_elf.html" } , { "title" : "linux_cow - ", "url" : "/MyBlog/linux/2017/12/06/linux_cow.html" } , { "title" : "Kibana - ", "url" : "/MyBlog/spark/2017/12/06/Kibana.html" } , { "title" : "linux_memory - ", "url" : "/MyBlog/linux/2017/12/05/linux_memory.html" } , { "title" : "server格式 - ", "url" : "/MyBlog/web/2017/12/02/server_tyrp.html" } , { "title" : "nginx_ssi - ", "url" : "/MyBlog/web/2017/12/02/nginx_ssi.html" } , { "title" : "go升级遇到问题及解决方案 - ", "url" : "/MyBlog/web/2017/11/29/go_update.html" } , { "title" : "go_pprof - ", "url" : "/MyBlog/golang/2017/11/29/go_pprof.html" } , { "title" : "go_vs_code - ", "url" : "/MyBlog/web/2017/11/28/go_vs_code.html" } , { "title" : "scala tuple - ", "url" : "/MyBlog/spark/2017/11/19/scala_tuple.html" } , { "title" : "redis协议 - ", "url" : "/MyBlog/storage/2017/11/18/redis_protocal.html" } , { "title" : "jupyter 数学公式 - ", "url" : "/MyBlog/spark/2017/11/18/jupyter_math.html" } , { "title" : "jupyter 数学公式 - ", "url" : "/MyBlog/spark/2017/11/18/jupyter_latex.html" } , { "title" : "Jupyter Notebook 添加目录 - ", "url" : "/MyBlog/spark/2017/11/18/jupyter_index.html" } , { "title" : "文字特征提取算法 - ", "url" : "/MyBlog/spark/2017/11/17/word_feature.html" } , { "title" : "sparl_ml_pipline - ", "url" : "/MyBlog/spark/2017/11/16/sparl_ml_pipline.html" } , { "title" : "mysql 的排序 - ", "url" : "/MyBlog/storage/2017/11/16/mysql_sort.html" } , { "title" : "mysql_maneager - ", "url" : "/MyBlog/storage/2017/11/16/mysql_maneager.html" } , { "title" : "mysql_index - ", "url" : "/MyBlog/storage/2017/11/16/mysql_index.html" } , { "title" : "MySQL的表类型的(存储引擎) - ", "url" : "/MyBlog/storage/2017/11/16/mysql_engine.html" } , { "title" : "mysql 原理 - ", "url" : "/MyBlog/storage/2017/11/16/mysql.html" } , { "title" : "spark_memory - ", "url" : "/MyBlog/spark/2017/11/15/spark_memory.html" } , { "title" : "redis 持久化 - ", "url" : "/MyBlog/storage/2017/11/15/redis_forever.html" } , { "title" : "spark toDF 失败原因总结 - ", "url" : "/MyBlog/spark/2017/11/14/spark_toDF.html" } , { "title" : "spark_start问题原因及解决办法 - ", "url" : "/MyBlog/spark/2017/11/14/spark_start.html" } , { "title" : "spark_rdd创建转换 - ", "url" : "/MyBlog/spark/2017/11/14/spark_rdd.html" } , { "title" : "spark的ML和MLLib两个包区别和联系 - ", "url" : "/MyBlog/spark/2017/11/14/spark_ml_mllib.html" } , { "title" : "RDD/Dataset/DataFrame互转 - ", "url" : "/MyBlog/spark/2017/11/14/rdd_dataset_dataframe.html" } , { "title" : "dataSet和dataFrame的创建方法 - ", "url" : "/MyBlog/spark/2017/11/14/dataSet_dataFrame.html" } , { "title" : "php_session - ", "url" : "/MyBlog/php/2017/11/09/php_session.html" } , { "title" : "jupyter_matplotlib - ", "url" : "/MyBlog/web/2017/11/09/jupyter_matplotlib.html" } , { "title" : "Jupyter_slides - ", "url" : "/MyBlog/web/2017/11/09/Jupyter_slides.html" } , { "title" : "composer - ", "url" : "/MyBlog/php/2017/11/03/composer.html" } , { "title" : "scala_partion_function - ", "url" : "/MyBlog/spark/2017/10/24/scala_partion_function.html" } , { "title" : "partion_function - ", "url" : "/MyBlog/web/2017/10/24/partion_function.html" } , { "title" : "高阶函数函数加里化(Currying)和偏函数应用(Partial Application)的比较 - ", "url" : "/MyBlog/web/2017/10/24/function.html" } , { "title" : "使用Phabricator做为Code Review工具 - ", "url" : "/MyBlog/web/2017/10/24/Phabricator.html" } , { "title" : "cut - ", "url" : "/MyBlog/spark/2017/10/23/cut.html" } , { "title" : "akka_sbt_eclipse - ", "url" : "/MyBlog/spark/2017/10/18/akka_sbt_eclipse.html" } , { "title" : "FunSuite - ", "url" : "/MyBlog/spark/2017/10/18/FunSuite.html" } , { "title" : "spark基本概念 - ", "url" : "/MyBlog/spark/2017/10/13/spark_concepts.html" } , { "title" : "Actor模型原理 - ", "url" : "/MyBlog/spark/2017/10/13/actor_intro.html" } , { "title" : "Actor系统的实体 - ", "url" : "/MyBlog/spark/2017/10/13/actor_detail.html" } , { "title" : "Actor模型和CSP模型的区别 - ", "url" : "/MyBlog/spark/2017/10/13/actor_csp.html" } , { "title" : "java_scala - ", "url" : "/MyBlog/spark/2017/10/12/java_scala.html" } , { "title" : "Scala_collection - ", "url" : "/MyBlog/spark/2017/10/12/Scala_collection.html" } , { "title" : "scala_list - ", "url" : "/MyBlog/spark/2017/10/11/scala_list.html" } , { "title" : "spark-session-context - ", "url" : "/MyBlog/spark/2017/10/06/spark-session-context.html" } , { "title" : "scala_main_class - ", "url" : "/MyBlog/spark/2017/09/29/scala_main_class.html" } , { "title" : "alibaba_fast_json - ", "url" : "/MyBlog/spark/2017/09/29/alibaba_fast_json.html" } , { "title" : "gorpc - ", "url" : "/MyBlog/jekyll/2017/09/25/gorpc.html" } , { "title" : "spark-kafka - ", "url" : "/MyBlog/spark/2017/09/22/spark-kafka.html" } , { "title" : "mysqldump - ", "url" : "/MyBlog/storage/2017/09/20/mysqldump.html" } , { "title" : "mysql-time - ", "url" : "/MyBlog/storage/2017/09/20/mysql-time.html" } , { "title" : "mac 安装 sshfs - ", "url" : "/MyBlog/jekyll/2017/09/18/sshfs.html" } , { "title" : "jupyter - ", "url" : "/MyBlog/deep_learning/2017/09/17/jupyter.html" } , { "title" : "deep_learning - ", "url" : "/MyBlog/deep_learning/2017/09/17/deep_learning.html" } , { "title" : "spark-rdd - spark", "url" : "/MyBlog/spark/2017/09/15/spark-rdd.html" } , { "title" : "netcat - ", "url" : "/MyBlog/web/2017/09/15/netcat.html" } , { "title" : "markdown-table - ", "url" : "/MyBlog/jekyll/2017/09/15/markdown-table.html" } , { "title" : "books-sites - ", "url" : "/MyBlog/jekyll/2017/09/15/books-sites.html" } , { "title" : "脚本输出带颜色文字 - ", "url" : "/MyBlog/linux/2017/09/14/%E8%84%9A%E6%9C%AC%E8%BE%93%E5%87%BA%E5%B8%A6%E9%A2%9C%E8%89%B2%E6%96%87%E5%AD%97.html" } , { "title" : "常见SSL证书格式转换 - ", "url" : "/MyBlog/jekyll/2017/09/13/%E5%B8%B8%E8%A7%81SSL%E8%AF%81%E4%B9%A6%E6%A0%BC%E5%BC%8F%E8%BD%AC%E6%8D%A2.html" } , { "title" : "php-curl-ext - ", "url" : "/MyBlog/php/2017/09/13/php-curl-ext.html" } , { "title" : "curl-https-php - ", "url" : "/MyBlog/php/2017/09/13/curl-https-php.html" } , { "title" : "php-spider - ", "url" : "/MyBlog/php/2017/09/12/php-spider.html" } , { "title" : "php怎么判断函数,类,类方法是不是存在 - ", "url" : "/MyBlog/php/2017/09/12/php-function.html" } , { "title" : "composer-source - ", "url" : "/MyBlog/php/2017/09/12/composer-source.html" } , { "title" : "php-doc - ", "url" : "/MyBlog/php/2017/09/11/php-doc.html" } , { "title" : "oauth-github-api - ", "url" : "/MyBlog/jekyll/2017/09/10/oauth-github-api.html" } , { "title" : "http-head 四种常见的 POST 提交数据方式 - ", "url" : "/MyBlog/web/2017/09/10/http-head.html" } , { "title" : "javascript 实现客户端访问次数统计 - ", "url" : "/MyBlog/jekyll/2017/09/09/statics.html" } , { "title" : "JavaScript实现模糊匹配搜索 - ", "url" : "/MyBlog/jekyll/2017/09/09/search_match.html" } , { "title" : "search - ", "url" : "/MyBlog/jekyll/2017/09/09/search.html" } , { "title" : "robots - ", "url" : "/MyBlog/jekyll/2017/09/09/robots.html" } , { "title" : "oauth-github - ", "url" : "/MyBlog/jekyll/2017/09/09/oauth-github.html" } , { "title" : "github-openapi - ", "url" : "/MyBlog/jekyll/2017/09/09/github-openapi.html" } , { "title" : "github-api - ", "url" : "/MyBlog/jekyll/2017/09/09/github-api.html" } , { "title" : "Authorization-ajax - ", "url" : "/MyBlog/jekyll/2017/09/09/Authorization-ajax.html" } , { "title" : "自动化替换网站引用资源到本地工具 - ", "url" : "/MyBlog/jekyll/2017/09/08/replace-url.html" } , { "title" : "pygments - ", "url" : "/MyBlog/jekyll/2017/09/08/pygments.html" } , { "title" : "markdown - ", "url" : "/MyBlog/jekyll/2017/09/07/markdown.html" } , { "title" : "mac-sed - ", "url" : "/MyBlog/jekyll/2017/09/07/mac-sed.html" } , { "title" : "jekyll config - ", "url" : "/MyBlog/jekyll/2017/09/07/jeky-env.html" } , { "title" : "comment - ", "url" : "/MyBlog/jekyll/2017/09/07/comment.html" } , { "title" : "Welcome to xiazemin's blog! - ", "url" : "/MyBlog/jekyll/2017/09/05/welcome-to-jekyll.html" } , { "title" : "nginx lua - octopress_jekyll", "url" : "/MyBlog/web/2017/08/05/nginx-lua.html" } , { "title" : "jekyll layout - octopress_jekyll", "url" : "/MyBlog/jekyll/2017/08/05/jekyll-layout.html" } , { "title" : "jekyll dir - octopress_jekyll", "url" : "/MyBlog/jekyll/2017/08/05/jekyll-dir.html" } , { "title" : "jekyll macdown使用 - octopress_jekyll", "url" : "/MyBlog/jekyll/2017/08/05/jekyll-usage.html" } , { "title" : "jekyll 分页 - octopress_jekyll", "url" : "/MyBlog/jekyll/2017/08/05/jekyll-page.html" } , { "title" : "jekyll mac 安装 - octopress_jekyll", "url" : "/MyBlog/jekyll/2017/08/05/jekyll-mac-install.html" } , { "title" : "Eleventh post - css_html", "url" : "/MyBlog/technology/2016/02/11/eleventh.html" } , { "title" : "Tenth post - css_html", "url" : "/MyBlog/technology/2016/02/09/tenth.html" } , { "title" : "second post - holiday", "url" : "/MyBlog/jekyll/web/2016/02/02/second-post.html" } , { "title" : "first post - css_html_hosting_openshift_wordpress", "url" : "/MyBlog/jekyll/web/2016/02/01/first-post.html" } ] }; function handle(){ var word = document.getElementById('txt').value; var value = ""; var data=searchIndex.data; for(var i = 0;i < data.length;i++){ if(word!="" && data[i].title.match(".*"+word+".*") != null){ value += "<a onclick=add('"+ data[i].title +"') href='"+ data[i]. url +"'>" + data[i].title + "</a><br/>"; } } document.getElementById('msg').innerHTML=value; if(typeof(document.getElementById('msg').children[0])!="undefined"){ document.getElementById('cse-search-box').action=document.getElementById('msg').children[0].href; } } function add(city){ document.getElementById('txt').value=city; } //firefox下检测状态改变只能用oninput,且需要用addEventListener来注册事件。 if(/msie/i.test(navigator.userAgent)) //ie浏览器 {document.getElementById('txt').onpropertychange=handle } else{//非ie浏览器,比如Firefox document.getElementById('txt').addEventListener("input",handle,false); } </script> </div> </form> <!--script type="text/javascript" src="https://www.google.com/coop/cse/brand?form=cse-search-box&amp;lang=en"></script--> </div> </div> <!-- time --> <div id="myTime" class="well"> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="/MyBlog/flash/swflash.cab" style="margin: 0;padding: 0;height: auto;width:auto;"> <param name="allowScriptAccess" value="always"> <param name="movie" value="/MyBlog/flash/honehone_clock_wh.swf"> <param name="quality" value="high"> <param name="bgcolor" value="transparent"> <param name="wmode" value="transparent"> <embed wmode="transparent" src="/MyBlog/flash/honehone_clock_wh.swf" quality="high" name="honehoneclock" align="middle" allowscriptaccess="always" type="application/x-shockwave-flash" pluginspage="" style="margin: 0;padding: 0;border: 0 ;height: auto;width:100%;"> </object> </div> <!--calendar--> <div id="calendar" class="well"> <script type="text/javascript"> calender.init("calendar",null); </script> </div> <!--赞--> <div id="container" class="well"> <div class="row"> <div class="col-lg-6"> <img src="https://xiazemin.github.io/MyBlog/img/webwxgetmsgimg.jpeg" height="300" width="auto" /> </div> </div> </div> <!-- Blog Categories --> <div class="well"> <h4>Blog Categories</h4> <div class="row"> <div class="col-lg-6"> <a class="bold" href="/MyBlog/category/jekyll"> jekyll (35) </a> </div> <div class="col-lg-6"> <a class="bold" href="/MyBlog/category/web"> web (317) </a> </div> <div class="col-lg-6"> <a class="bold" href="/MyBlog/category/technology"> technology (2) </a> </div> <div class="col-lg-6"> <a class="bold" href="/MyBlog/category/php"> php (201) </a> </div> <div class="col-lg-6"> <a class="bold" href="/MyBlog/category/linux"> linux (401) </a> </div> <div class="col-lg-6"> <a class="bold" href="/MyBlog/category/spark"> spark (51) </a> </div> <div class="col-lg-6"> <a class="bold" href="/MyBlog/category/deep-learning"> deep_learning (2) </a> </div> <div class="col-lg-6"> <a class="bold" href="/MyBlog/category/storage"> storage (281) </a> </div> <div class="col-lg-6"> <a class="bold" href="/MyBlog/category/golang"> golang (1061) </a> </div> <div class="col-lg-6"> <a class="bold" href="/MyBlog/category/cryptology"> cryptology (15) </a> </div> <div class="col-lg-6"> <a class="bold" href="/MyBlog/category/lang"> lang (74) </a> </div> <div class="col-lg-6"> <a class="bold" href="/MyBlog/category/docker"> docker (97) </a> </div> <div class="col-lg-6"> <a class="bold" href="/MyBlog/category/zookeeper"> zookeeper (11) </a> </div> <div class="col-lg-6"> <a class="bold" href="/MyBlog/category/elasticsearch"> elasticsearch (62) </a> </div> <div class="col-lg-6"> <a class="bold" href="/MyBlog/category/java"> java (5) </a> </div> <div class="col-lg-6"> <a class="bold" href="/MyBlog/category/algorithm"> algorithm (127) </a> </div> <div class="col-lg-6"> <a class="bold" href="/MyBlog/category/hadoop"> hadoop (2) </a> </div> <div class="col-lg-6"> <a class="bold" href="/MyBlog/category/slug"> slug (1) </a> </div> <div class="col-lg-6"> <a class="bold" href="/MyBlog/category/architect"> architect (43) </a> </div> <div class="col-lg-6"> <a class="bold" href="/MyBlog/category/k8s"> k8s (90) </a> </div> <div class="col-lg-6"> <a class="bold" href="/MyBlog/category/python"> python (18) </a> </div> <div class="col-lg-6"> <a class="bold" href="/MyBlog/category/node"> node (62) </a> </div> <div class="col-lg-6"> <a class="bold" href="/MyBlog/category/mysql"> mysql (26) </a> </div> <div class="col-lg-6"> <a class="bold" href="/MyBlog/category/rust"> rust (4) </a> </div> <div class="col-lg-6"> <a class="bold" href="/MyBlog/category/elasticsearch"> elasticSearch (1) </a> </div> <div class="col-lg-6"> <a class="bold" href="/MyBlog/category/arch"> arch (1) </a> </div> <div class="col-lg-6"> </div> </div> <!-- /.row --> </div> <!-- end --> <!-- Blog Categories all sidebar --> <div class="well"> <h4>Popular posts</h4> <script type='text/javascript' src='/MyBlog/js/sidebar/jquery.js'></script> <script type='text/javascript' src='/MyBlog/js/sidebar/jquery-migrate.min.js'></script> <script type='text/javascript'> /* <![CDATA[ */ var CrayonSyntaxSettings = {"version":"_2.7.2_beta","is_admin":"0","ajaxurl":"https:\/\/blog.yiz96.com\/wp-admin\/admin-ajax.php","prefix":"crayon-","setting":"crayon-setting","selected":"crayon-setting-selected","changed":"crayon-setting-changed","special":"crayon-setting-special","orig_value":"data-orig-value","debug":""}; var CrayonSyntaxStrings = {"copy":"\u4f7f\u7528 %s \u590d\u5236\uff0c\u4f7f\u7528 %s \u7c98\u8d34\u3002","minimize":"\u70b9\u51fb\u5c55\u5f00\u4ee3\u7801"}; /* ]]> */ </script> <script type='text/javascript' src='/MyBlog/js/sidebar/crayon.min.js'></script> <script type='text/javascript' src='/MyBlog/js/sidebar/jquery.tagcanvas.min.js'></script> <script type="text/javascript"> $j = jQuery.noConflict(); $j(document).ready(function() { if(!$j('#myCanvas').tagcanvas({ textColour: '#333333', outlineColour: '#ffffff', reverse: true, depth: 0.8, textFont: null, weight: true, maxSpeed: 0.05 },'tags')) { $j('#myCanvasContainer').hide(); } }); </script> <div id="myCanvasContainer" style="background-color:#ffffff;"> <canvas height="250" id="myCanvas"> <p>Anything in here will be replaced on browsers that support the canvas element</p> </canvas> </div> <div id="tags"> <ul style="display:none;width:250px;height:250px;"> <li> <a href="/MyBlog/web/2022/03/06/stun.html" style="font-size:40px;"> stun nat类型及打洞原理</a> </li> <li> <a href="/MyBlog/algorithm/2022/03/05/work.html" style="font-size:40px;"> work 多 Module 工作区模式</a> </li> <li> <a href="/MyBlog/mysql/2022/03/05/transaction.html" style="font-size:40px;"> transaction事务的隔离级别</a> </li> <li> <a href="/MyBlog/storage/2022/03/05/timestamp.html" style="font-size:40px;"> timestamp</a> </li> <li> <a href="/MyBlog/elasticsearch/2022/03/05/script.html" style="font-size:40px;"> script</a> </li> <li> <a href="/MyBlog/golang/2022/03/05/rpcx.html" style="font-size:40px;"> rpcx</a> </li> <li> <a href="/MyBlog/web/2022/03/05/router.html" style="font-size:40px;"> 路由器抓包</a> </li> <li> <a href="/MyBlog/elasticsearch/2022/03/05/reindex.html" style="font-size:40px;"> reindex</a> </li> <li> <a href="/MyBlog/web/2022/03/05/rc.html" style="font-size:40px;"> rc</a> </li> <li> <a href="/MyBlog/node/2022/03/05/prototype.html" style="font-size:40px;"> prototype</a> </li> <li> <a href="/MyBlog/golang/2022/03/05/playground.html" style="font-size:40px;"> nginx playground</a> </li> <li> <a href="/MyBlog/elasticsearch/2022/03/05/page.html" style="font-size:40px;"> Elasticsearch 分页查询</a> </li> <li> <a href="/MyBlog/web/2022/03/05/oauth2.html" style="font-size:40px;"> oauth2</a> </li> <li> <a href="/MyBlog/linux/2022/03/05/nf_conntrack.html" style="font-size:40px;"> nf_conntrack</a> </li> <li> <a href="/MyBlog/k8s/2022/03/05/k0s.html" style="font-size:40px;"> k0s</a> </li> <li> <a href="/MyBlog/k8s/2022/03/05/istio.html" style="font-size:40px;"> istio</a> </li> <li> <a href="/MyBlog/web/2022/03/05/hsts.html" style="font-size:40px;"> hsts</a> </li> <li> <a href="/MyBlog/golang/2022/03/05/gvm.html" style="font-size:40px;"> gvm</a> </li> <li> <a href="/MyBlog/golang/2022/03/05/gopack.html" style="font-size:40px;"> gopack</a> </li> <li> <a href="/MyBlog/golang/2022/03/05/go1.18.html" style="font-size:40px;"> go1.18</a> </li> <li> <a href="/MyBlog/golang/2022/03/05/go1.17.html" style="font-size:40px;"> go1.17</a> </li> <li> <a href="/MyBlog/golang/2022/03/05/go-spew.html" style="font-size:40px;"> go-spew</a> </li> <li> <a href="/MyBlog/golang/2022/03/05/generic.html" style="font-size:40px;"> 范型</a> </li> <li> <a href="/MyBlog/golang/2022/03/05/fuzzing.html" style="font-size:40px;"> fuzzing</a> </li> <li> <a href="/MyBlog/python/2022/03/05/folium.html" style="font-size:40px;"> folium</a> </li> <li> <a href="/MyBlog/golang/2022/03/05/ent.html" style="font-size:40px;"> ent</a> </li> <li> <a href="/MyBlog/elasticsearch/2022/03/05/empty.html" style="font-size:40px;"> es过滤空字符串</a> </li> <li> <a href="/MyBlog/k8s/2022/03/05/dumb-init.html" style="font-size:40px;"> dumb-init</a> </li> <li> <a href="/MyBlog/k8s/2022/03/05/dockertest.html" style="font-size:40px;"> dockertest</a> </li> <li> <a href="/MyBlog/elasticsearch/2022/03/05/compare.html" style="font-size:40px;"> 实现字段之间进行比对</a> </li> <li> <a href="/MyBlog/golang/2022/03/05/code-server.html" style="font-size:40px;"> code-server</a> </li> <li> <a href="/MyBlog/golang/2022/03/05/bild.html" style="font-size:40px;"> bild</a> </li> <li> <a href="/MyBlog/golang/2022/03/05/apollo.html" style="font-size:40px;"> apollo</a> </li> <li> <a href="/MyBlog/k8s/2022/03/05/allow_any.html" style="font-size:40px;"> istio allow_any</a> </li> <li> <a href="/MyBlog/node/2022/03/05/WebTorrent.html" style="font-size:40px;"> WebTorrent</a> </li> <li> <a href="/MyBlog/web/2022/03/05/WebDAV.html" style="font-size:40px;"> WebDAV</a> </li> <li> <a href="/MyBlog/storage/2022/03/05/Superset.html" style="font-size:40px;"> Superset</a> </li> <li> <a href="/MyBlog/web/2022/03/05/OpenIM.html" style="font-size:40px;"> OpenIM</a> </li> <li> <a href="/MyBlog/k8s/2022/03/05/KubeSphere.html" style="font-size:40px;"> KubeSphere</a> </li> <li> <a href="/MyBlog/golang/2022/03/05/ElasticSearch.html" style="font-size:40px;"> ElasticSearch</a> </li> </ul> </div> </div> <!-- end --> <!-- Recents post --> <div class="well"> <h4>Recent posts</h4> <ul class="posts" span="recent"> <li> <span>06 Mar 2022</span> <a href="/MyBlog/web/2022/03/06/stun.html"> stun nat类型及打洞原理</a> </li> <li> <span>05 Mar 2022</span> <a href="/MyBlog/algorithm/2022/03/05/work.html"> work 多 Module 工作区模式</a> </li> <li> <span>05 Mar 2022</span> <a href="/MyBlog/mysql/2022/03/05/transaction.html"> transaction事务的隔离级别</a> </li> <li> <span>05 Mar 2022</span> <a href="/MyBlog/storage/2022/03/05/timestamp.html"> timestamp</a> </li> <li> <span>05 Mar 2022</span> <a href="/MyBlog/elasticsearch/2022/03/05/script.html"> script</a> </li> </ul> </div> <!-- tags widget --> <div class="well"> <h4>Tags</h4> <ul> <a class="tag-label bold" href="/MyBlog/tag/css"> css (3) </a> <a class="tag-label bold" href="/MyBlog/tag/html"> html (3) </a> <a class="tag-label bold" href="/MyBlog/tag/hosting"> hosting (1) </a> <a class="tag-label bold" href="/MyBlog/tag/openshift"> openshift (1) </a> <a class="tag-label bold" href="/MyBlog/tag/wordpress"> wordpress (1) </a> <a class="tag-label bold" href="/MyBlog/tag/holiday"> holiday (1) </a> <a class="tag-label bold" href="/MyBlog/tag/octopress"> octopress (6) </a> <a class="tag-label bold" href="/MyBlog/tag/jekyll"> jekyll (6) </a> <a class="tag-label bold" href="/MyBlog/tag/spark"> spark (1) </a> </ul> </div> <!-- 轮播图片 --> <!--div class="well"> <div id="rotator_xzm" style="height:auto;width: 100%; overflow: hidden; padding: 0; background-image: url('https://xiazemin.github.io/MyBlog/img/Tachyon2.jpg');"></div> </div--> <!--div class="well"> <script src='https://xiazemin.github.io/MyBlog/slicebox/js/jquery.js'></script> <script src='https://xiazemin.github.io/MyBlog/slicebox/js/jquery.slicebox.js'></script> <ul id="sb-slider" class="sb-slider"> <li> <a href="#" ><img src="https://xiazemin.github.io/MyBlog/img/Tachyon2.jpg" alt="image1"/></a> <div class="sb-description"> <h3>Creative Lifesaver</h3> </div> </li> <li> <a href="#" ><img src="https://xiazemin.github.io/MyBlog/img/Tachyon2.jpg" alt="image2"/></a> <div class="sb-description"> <h3>Honest Entertainer</h3> </div> </li> <li> <a href="#" ><img src="https://xiazemin.github.io/MyBlog/img/Tachyon2.jpg" alt="image1"/></a> <div class="sb-description"> <h3>Brave Astronaut</h3> </div> </li> <li> <a href="#" ><img src="https://xiazemin.github.io/MyBlog/img/Tachyon2.jpg" alt="image1"/></a> <div class="sb-description"> <h3>Affectionate Decision Maker</h3> </div> </li> <li> <a href="#" ><img src="https://xiazemin.github.io/MyBlog/img/Tachyon2.jpg" alt="image1"/></a> <div class="sb-description"> <h3>Faithful Investor</h3> </div> </li> <li> <a href="#" ><img src="https://xiazemin.github.io/MyBlog/img/Tachyon2.jpg" alt="image1"/></a> <div class="sb-description"> <h3>Groundbreaking Artist</h3> </div> </li> <li> <a href="#" ><img src="https://xiazemin.github.io/MyBlog/img/Tachyon2.jpg" alt="image1"/></a> <div class="sb-description"> <h3>Selfless Philantropist</h3> </div> </li> </ul> <div id="shadow" class="shadow"></div> <div id="nav-arrows" class="nav-arrows"> <a href="#">Next</a> <a href="#">Previous</a> </div> <script src="https://xiazemin.github.io/MyBlog/slicebox/js/index.js"></script> <link rel='stylesheet prefetch' href='https://xiazemin.github.io/MyBlog/slicebox/css/demo.css'> <link rel="stylesheet" href="https://xiazemin.github.io/MyBlog/slicebox/css/style.css" media="screen" type="text/css" /> <script src="https://xiazemin.github.io/MyBlog/slicebox/js/modernizr.js"></script> </div--> <!-- author widget --> <div class="well"> <h4>This blog is maintained by <a href="/MyBlog">夏泽民</a></h4> <p>Get in touch with me at 465474307@qq.com</p> <ul class="list-inline"> <li> <a href="/MyBlog"> <span class="fa-stack fa-2x"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-facebook fa-stack-1x fa-inverse"></i> </span> </a> </li> <li> <a href="/MyBlog"> <span class="fa-stack fa-2x"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-globe fa-stack-1x fa-inverse"></i> </span> </a> </li> <li> <a href="mailto:airrayagroup@gmail.com"> <span class="fa-stack fa-2x"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-envelope fa-stack-1x fa-inverse"></i> </span> </a> </li> <li> <a href="/MyBlog"> <span class="fa-stack fa-2x"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-bitbucket fa-stack-1x fa-inverse"></i> </span> </a> </li> </ul> </div> <!-- subscribe --> <div class="well"> <!-- Begin MailChimp Signup Form --> <div id="mc_embed_signup"> <form action="https://maplelearning.us1.list-manage.com/subscribe?u=47d56ac42a95b4295600c0e64&id=5f9ede27c9" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate> <div id="mc_embed_signup_scroll"> <h2>Subscribe to our mailing list</h2> <div class="indicates-required"><span class="asterisk">*</span> indicates required</div> <div class="mc-field-group"> <label for="mce-EMAIL">Email Address <span class="asterisk">*</span> </label> <input type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL"> </div> <div class="mc-field-group"> <label for="mce-FNAME">First Name </label> <input type="text" value="" name="FNAME" class="" id="mce-FNAME"> </div> <div class="mc-field-group"> <label for="mce-LNAME">Last Name </label> <input type="text" value="" name="LNAME" class="" id="mce-LNAME"> </div> <div id="mce-responses" class="clear"> <div class="response" id="mce-error-response" style="display:none"></div> <div class="response" id="mce-success-response" style="display:none"></div> </div> <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups--> <div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_47d56ac42a95b4295600c0e64_5f9ede27c9" tabindex="-1" value=""></div> <div class="clear"><input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button"></div> </div> </form> </div> <!--End mc_embed_signup--> </div> </div> </div> <!-- /.row --> <hr> <footer> <div class="container"> <a href="/MyBlog/" style="color: green; font-size: 2em; font-family: 'Schoolbell', cursive;">首页</a> <div class="row"> <div class="col-lg-6"> <p>Copyright &copy; 2017 465474307@qq.com <p> </div> <div class="col-lg-6"> <p style="float: right;">Jekyll theme by <a href="https://github.com/xiazemin/">夏泽民</a></p> </div> </div> </div> </footer> <!-- jQuery --> <script src="/MyBlog/js/jquery-1.12.0.min.js"></script> <script src="/MyBlog/js/jquery-migrate-1.2.1.min.js"></script> <!-- Latest compiled and minified JavaScript --> <script src="/MyBlog/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script> <!-- Menu Toggle Script --> <script> $("#menu-toggle").click(function(e) { e.preventDefault(); $("#wrapper").toggleClass("toggled"); }); </script> <script>window._bd_share_config={"common":{"bdSnsKey":{},"bdText":"","bdMini":"2","bdMiniList":false,"bdPic":"","bdStyle":"0","bdSize":"16"},"slide":{"type":"slide","bdImg":"6","bdPos":"right","bdTop":"100"},"image":{"viewList":["qzone","tsina","tqq","renren","weixin"],"viewText":"分享到:","viewSize":"16"}};with(document)0[(getElementsByTagName('head')[0]||body).appendChild(createElement('script')).src='/MyBlog/shareapi/js/share.js?v=89860593.js?'];</script> <!-- 2d --> <script type="text/javascript" charset="utf-8" src="/MyBlog/js/L2Dwidget.0.min.js"></script> <script type="text/javascript" charset="utf-8" src="/MyBlog/js/L2Dwidget.min.js"></script> <script type="text/javascript"> setTimeout(()=> { /*L2Dwidget.init({"display": { "superSample": 2, "width": 200, "height": 400, "position": "right", "hOffset": 0, "vOffset": 0 } }); */ L2Dwidget .on('*', (name) => { console.log('%c EVENT ' + '%c -> ' + name, 'background: #222; color: yellow', 'background: #fff; color: #000') }) .init({ dialog: { // 开启对话框 enable: true, script: { // 每空闲 10 秒钟,显示一条一言 'every idle 10s': '$hitokoto$', // 当触摸到星星图案 'hover .star': '星星在天上而你在我心里 (*/ω\*)', // 当触摸到角色身体 'tap body': '哎呀!别碰我!', // 当触摸到角色头部 'tap face': '人家已经不是小孩子了!' } } }); }) </script> <!--html xmlns:wb="http://open.weibo.com/wb"> <script src="http://tjs.sjs.sinajs.cn/open/api/js/wb.js" type="text/javascript" charset="utf-8"></script> <wb:follow-button uid="2165491993" type="red_1" width="67" height="24" ></wb:follow-button--> <!--本文来自--> <script type="text/javascript"> /* 仅IE document.body.oncopy = function(){ setTimeout( function () { var text =window.clipboardData.getData("text"); if (text) { text = text + "/r/n本篇文章来源于 xiazemin 的 泽民博客|https://xiazemin.github.io/MyBlog/index.html 原文链接:"+location.href; clipboardData.setData("text", text); } }, 100 ) } */ //绑定在了body上,也可以绑定在其他可用元素行,但是不是所有元素都支持copy和past事件。 /* $(document.body).bind({ copy: function(event) {//copy事件 //var cpTxt = "复制的数据"; var clipboardData = window.clipboardData; //for IE if (!clipboardData) { // for chrome clipboardData = event.originalEvent.clipboardData; } if (event.clipboardData != null/false/undefined) { //ignore the incorrectness of the truncation clipboarddata = event.clipboardData; } else if (window.clipboardData != null/false/undefined) { clipboarddata = window.clipboardData; } else { //default to the last option even if it is null/false/undefined clipboarddata = event.originalEvent.clipboardData; } //e.clipboardData.getData('text');//可以获取用户选中复制的数据 //clipboardData.setData('Text', cpTxt); alert(clipboarddata.getData('text')); //$('#message').text('Copy Data : ' + cpTxt); return false;//否则设不生效 },paste: function(e) {//paste事件 var eve = e.originalEvent var cp = eve.clipboardData; var data = null; var clipboardData = window.clipboardData; // IE if (!clipboardData) { //chrome clipboardData = e.originalEvent.clipboardData } data = clipboardData.getData('Text'); //$('#message').html(data); } }); */ function addLink() { var body_element = document.getElementsByTagName('body')[0]; var selection; selection = window.getSelection(); var pagelink = "<br /><br />本文来源:xiazemin 的 泽民博客 <a href='"+document.location.href+"'>"+document.location.href+"</a>"; //+document.location.href+当前页面链接 var copy_text = selection + pagelink; console.log(copy_text); var new_div = document.createElement('div'); new_div.style.left='-99999px'; new_div.style.position='absolute'; body_element.appendChild(new_div ); new_div.innerHTML = copy_text ; selection.selectAllChildren(new_div ); window.setTimeout(function() { body_element.removeChild(new_div ); },0); } document.oncopy = addLink; </script> <!--本文来自--> </div> </body> </html>
publication/acn/index.html
escorciav/escorciav.github.io
<!DOCTYPE html> <html lang="en-us"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="generator" content="Source Themes Academic 3.1.1"> <meta name="generator" content="Hugo 0.51" /> <meta name="author" content="Victor Escorcia"> <meta name="description" content=""> <link rel="alternate" hreflang="en-us" href="https://escorciav.github.io/publication/acn/"> <meta name="theme-color" content="#2962ff"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha256-eSi1q2PG6J7g7ib17yAaWMcrr5GrtohYChqibrV7PBE=" crossorigin="anonymous"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/academicons/1.8.6/css/academicons.min.css" integrity="sha256-uFVgMKfistnJAfoCUQigIl+JfUaP47GrRKjf6CTPVmw=" crossorigin="anonymous"> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz" crossorigin="anonymous"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.2.5/jquery.fancybox.min.css" integrity="sha256-ygkqlh3CYSUri3LhQxzdcm0n1EQvH2Y+U5S2idbLtxs=" crossorigin="anonymous"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/github.min.css" crossorigin="anonymous"> <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Montserrat:400,700|Roboto:400,400italic,700|Roboto+Mono"> <link rel="stylesheet" href="/styles.css"> <script> window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date; ga('create', 'UA-61931832-2', 'auto'); ga('require', 'eventTracker'); ga('require', 'outboundLinkTracker'); ga('require', 'urlChangeTracker'); ga('send', 'pageview'); </script> <script async src="//www.google-analytics.com/analytics.js"></script> <script async src="https://cdnjs.cloudflare.com/ajax/libs/autotrack/2.4.1/autotrack.js" integrity="sha512-HUmooslVKj4m6OBu0OgzjXXr+QuFYy/k7eLI5jdeEy/F4RSgMn6XRWRGkFi5IFaFgy7uFTkegp3Z0XnJf3Jq+g==" crossorigin="anonymous"></script> <link rel="alternate" href="https://escorciav.github.io/index.xml" type="application/rss+xml" title="Victor"> <link rel="feed" href="https://escorciav.github.io/index.xml" type="application/rss+xml" title="Victor"> <link rel="manifest" href="/site.webmanifest"> <link rel="icon" type="image/png" href="/img/icon.png"> <link rel="apple-touch-icon" type="image/png" href="/img/icon-192.png"> <link rel="canonical" href="https://escorciav.github.io/publication/acn/"> <meta property="twitter:card" content="summary_large_image"> <meta property="twitter:site" content="@3scorciav"> <meta property="twitter:creator" content="@3scorciav"> <meta property="og:site_name" content="Victor"> <meta property="og:url" content="https://escorciav.github.io/publication/acn/"> <meta property="og:title" content="On the Relationship between Visual Attributes and Convolutional Networks | Victor"> <meta property="og:description" content=""> <meta property="og:image" content="https://escorciav.github.io/img/icon-192.png"> <meta property="og:locale" content="en-us"> <meta property="article:published_time" content="2015-06-22T00:00:00&#43;03:00"> <meta property="article:modified_time" content="2015-06-22T00:00:00&#43;03:00"> <title>On the Relationship between Visual Attributes and Convolutional Networks | Victor</title> </head> <body id="top" data-spy="scroll" data-target="#TableOfContents" data-offset="71" > <aside class="search-results" id="search"> <div class="container"> <section class="search-header fixed-top"> <div class="row no-gutters justify-content-between mb-3"> <div class="col-6"> <h1>Search</h1> </div> <div class="col-6 col-search-close"> <a class="js-search" href="#"><i class="fas fa-times-circle text-muted" aria-hidden="true"></i></a> </div> </div> <div id="search-box"> </div> </section> <section class="section-search-results"> <div id="search-hits"> </div> </section> </div> </aside> <nav class="navbar navbar-light fixed-top navbar-expand-lg py-0" id="navbar-main"> <div class="container"> <a class="navbar-brand" href="/">Victor</a> <button type="button" class="navbar-toggler" data-toggle="collapse" data-target="#navbar" aria-controls="navbar" aria-expanded="false" aria-label="Toggle navigation"> <span><i class="fas fa-bars"></i></span> </button> <div class="collapse navbar-collapse" id="navbar"> <ul class="navbar-nav ml-auto"> <li class="nav-item"> <a class="nav-link" href="/#about"> <span>Home</span> </a> </li> <li class="nav-item"> <a class="nav-link" href="/#publications"> <span>Publications</span> </a> </li> <li class="nav-item"> <a class="nav-link" href="/#contact"> <span>Contact</span> </a> </li> <li class="nav-item"> <a class="nav-link" href="https://drive.google.com/open?id=0B0ZXjo_p8lHBbVkzLXk5UWplUkU" target="_blank" rel="noopener"> <span>CV</span> </a> </li> </ul> </div> </div> </nav> <div class="pub" itemscope itemtype="http://schema.org/CreativeWork"> <div class="article-container pt-3"> <h1 itemprop="name">On the Relationship between Visual Attributes and Convolutional Networks</h1> <div class="article-metadata"> <div> <span itemscope itemprop="author" itemtype="http://schema.org/Person"> <span itemprop="name">Victor Escorcia</span> </span>, <span itemscope itemprop="author" itemtype="http://schema.org/Person"> <span itemprop="name">Juan Carlos Niebles</span> </span>, <span itemscope itemprop="author" itemtype="http://schema.org/Person"> <span itemprop="name">Bernard Ghanem</span> </span> </div> <span class="article-date"> <meta content="2015-06-22 00:00:00 &#43;0300 AST" itemprop="datePublished"> <time datetime="2015-06-22 00:00:00 &#43;0300 AST" itemprop="dateModified"> Jun 22, 2015 </time> </span> <span itemscope itemprop="publisher" itemtype="http://schema.org/Person"> <meta itemprop="name" content="Victor Escorcia"> </span> <div class="share-box" aria-hidden="true"> <ul class="share"> <li> <a class="twitter" href="https://twitter.com/intent/tweet?text=On%20the%20Relationship%20between%20Visual%20Attributes%20and%20Convolutional%20Networks&amp;url=https%3a%2f%2fescorciav.github.io%2fpublication%2facn%2f" target="_blank" rel="noopener"> <i class="fab fa-twitter"></i> </a> </li> <li> <a class="facebook" href="https://www.facebook.com/sharer.php?u=https%3a%2f%2fescorciav.github.io%2fpublication%2facn%2f" target="_blank" rel="noopener"> <i class="fab fa-facebook-f"></i> </a> </li> <li> <a class="linkedin" href="https://www.linkedin.com/shareArticle?mini=true&amp;url=https%3a%2f%2fescorciav.github.io%2fpublication%2facn%2f&amp;title=On%20the%20Relationship%20between%20Visual%20Attributes%20and%20Convolutional%20Networks" target="_blank" rel="noopener"> <i class="fab fa-linkedin-in"></i> </a> </li> <li> <a class="weibo" href="http://service.weibo.com/share/share.php?url=https%3a%2f%2fescorciav.github.io%2fpublication%2facn%2f&amp;title=On%20the%20Relationship%20between%20Visual%20Attributes%20and%20Convolutional%20Networks" target="_blank" rel="noopener"> <i class="fab fa-weibo"></i> </a> </li> <li> <a class="email" href="mailto:?subject=On%20the%20Relationship%20between%20Visual%20Attributes%20and%20Convolutional%20Networks&amp;body=https%3a%2f%2fescorciav.github.io%2fpublication%2facn%2f"> <i class="fas fa-envelope"></i> </a> </li> </ul> </div> </div> <div class="btn-links mb-3"> <a class="btn btn-outline-primary my-1 mr-1" href="https://www.cv-foundation.org/openaccess/content_cvpr_2015/papers/Escorcia_On_the_Relationship_2015_CVPR_paper.pdf" target="_blank" rel="noopener"> PDF </a> <a class="btn btn-outline-primary my-1 mr-1" href="https://www.cv-foundation.org/openaccess/content_cvpr_2015/app/1B_016_ext.pdf" target="_blank" rel="noopener"> Abstract </a> <a class="btn btn-outline-primary my-1 mr-1" href="https://drive.google.com/file/d/0B0ZXjo_p8lHBb3dDakFpNXRrUkU/view" target="_blank" rel="noopener"> Video </a> </div> </div> <div class="article-container"> <div class="row"> <div class="col-md-1"></div> <div class="col-md-10"> <div class="row"> <div class="col-12 col-md-3 pub-row-heading">Type</div> <div class="col-12 col-md-9"> <a href="/publication/#1"> Conference paper </a> </div> </div> </div> <div class="col-md-1"></div> </div> <div class="d-md-none space-below"></div> <div class="row"> <div class="col-md-1"></div> <div class="col-md-10"> <div class="row"> <div class="col-12 col-md-3 pub-row-heading">Date</div> <div class="col-12 col-md-9" itemprop="datePublished"> June, 2015 </div> </div> </div> <div class="col-md-1"></div> </div> <div class="d-sm-none space-below"></div> <div class="space-below"></div> <div class="article-style"></div> <div class="media author-card" itemscope itemtype="http://schema.org/Person"> <img class="portrait mr-3" src="/img/me.jpg" itemprop="image" alt="Avatar"> <div class="media-body"> <h5 class="card-title" itemprop="name"><a href="/">Victor Escorcia</a></h5> <h6 class="card-subtitle">PhD Student</h6> <ul class="network-icon" aria-hidden="true"> <li> <a itemprop="sameAs" href="/#contact" > <i class="fas fa-envelope"></i> </a> </li> <li> <a itemprop="sameAs" href="https://twitter.com/3scorciav" target="_blank" rel="noopener"> <i class="fab fa-twitter"></i> </a> </li> <li> <a itemprop="sameAs" href="https://scholar.google.co.uk/citations?user=PxayLNwAAAAJ&amp;hl" target="_blank" rel="noopener"> <i class="ai ai-google-scholar"></i> </a> </li> <li> <a itemprop="sameAs" href="https://github.com/escorciav" target="_blank" rel="noopener"> <i class="fab fa-github"></i> </a> </li> </ul> </div> </div> </div> </div> <div class="container"> <footer class="site-footer"> <p class="powered-by"> &copy; 2018 &middot; Powered by the <a href="https://sourcethemes.com/academic/" target="_blank" rel="noopener">Academic theme</a> for <a href="https://gohugo.io" target="_blank" rel="noopener">Hugo</a>. <span class="float-right" aria-hidden="true"> <a href="#" id="back_to_top"> <span class="button_icon"> <i class="fas fa-chevron-up fa-2x"></i> </span> </a> </span> </p> </footer> </div> <div id="modal" class="modal fade" role="dialog"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title">Cite</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">&times;</span> </button> </div> <div class="modal-body"> <pre><code class="tex hljs"></code></pre> </div> <div class="modal-footer"> <a class="btn btn-outline-primary my-1 js-copy-cite" href="#" target="_blank"> <i class="fas fa-copy"></i> Copy </a> <a class="btn btn-outline-primary my-1 js-download-cite" href="#" target="_blank"> <i class="fas fa-download"></i> Download </a> <div id="modal-error"></div> </div> </div> </div> </div> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js" integrity="sha512-+NqPlbbtM1QqiK8ZAo4Yrj2c4lNQoGv8P79DPtKzj++l5jnN39rHA/xsqn8zE9l0uSoxaCdrOgFs6yjyfbBxSg==" crossorigin="anonymous"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.imagesloaded/4.1.3/imagesloaded.pkgd.min.js" integrity="sha512-umsR78NN0D23AzgoZ11K7raBD+R6hqKojyBZs1w8WvYlsI+QuKRGBx3LFCwhatzBunCjDuJpDHwxD13sLMbpRA==" crossorigin="anonymous"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha256-VsEqElsCHSGmnmHXGQzvoWjWwoznFSZc6hs7ARLRacQ=" crossorigin="anonymous"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.isotope/3.0.4/isotope.pkgd.min.js" integrity="sha512-VDBOIlDbuC4VWxGJNmuFRQ0Li0SKkDpmGyuhAG5LTDLd/dJ/S0WMVxriR2Y+CyPL5gzjpN4f/6iqWVBJlht0tQ==" crossorigin="anonymous"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.2.5/jquery.fancybox.min.js" integrity="sha256-X5PoE3KU5l+JcX+w09p/wHl9AzK333C4hJ2I9S5mD4M=" crossorigin="anonymous"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js" integrity="sha256-/BfiIkHlHoVihZdc6TFuj7MmJ0TWcWsMXkeDFwhi0zw=" crossorigin="anonymous"></script> <script>hljs.initHighlightingOnLoad();</script> <script src="/js/academic.min.14cafafda844d960749b7551524d1c3a.js"></script> </body> </html>
diy/glassfish4/glassfish/docs/copyright.html
dgacitua/glassfish-deploy-test
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <!-- DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. Copyright (c) 2010, 2013 Oracle and/or its affiliates. All rights reserved. Use is subject to License Terms --> <head> <style type="text/css"> body{margin-top:0} body,td,p,div,span,a,ul,ul li, ol, ol li, ol li b, dl,h1,h2,h3,h4,h5,h6,li {font-family:geneva,helvetica,arial,"lucida sans",sans-serif; font-size:10pt} h1 {font-size:18pt} h2 {font-size:14pt} h3 {font-size:12pt} code,kbd,tt,pre {font-family:monaco,courier,"courier new"; font-size:10pt;} p.copy, p.copy a {font-family:geneva,helvetica,arial,"lucida sans",sans-serif; font-size:8pt} p.copy {text-align: center} table.grey1,tr.grey1,td.grey1{background:#f1f1f1} th {color:#ffffff; font-family:geneva,helvetica,arial,"lucida sans",sans-serif; font-size:12pt} td.insidehead {font-weight:bold; background:white; text-align: left;} a {text-decoration:none; color:#3E6B8A} a:visited{color:#917E9C} a:hover {text-decoration:underline} </style> <title>GlassFish Server 4.0</title> </head> <body><table width="100%" border="0" cellspacing="4" cellpadding="2"> <tbody> <tr><td align="right" valign="top"> <a href="http://www.oracle.com">oracle.com</a> </td></tr> <tr><td align="left" valign="top" bgcolor="#587993"> <font color="#ffffff">&nbsp;&nbsp;<b> GlassFish Server 4.0</b></font>&nbsp; </td></tr> </tbody> </table><!--startindex--> <p>Copyright &copy; 2010, 2013, Oracle and/or its affiliates. All rights reserved.</p> <p>This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited.</p> <p>The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing.</p> <p>If this is software or related documentation that is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, the following notice is applicable:</p> <p>U.S. GOVERNMENT RIGHTS Programs, software, databases, and related documentation and technical data delivered to U.S. Government customers are "commercial computer software" or "commercial technical data" pursuant to the applicable Federal Acquisition Regulation and agency-specific supplemental regulations. As such, the use, duplication, disclosure, modification, and adaptation shall be subject to the restrictions and license terms set forth in the applicable Government contract, and, to the extent applicable by the terms of the Government contract, the additional rights set forth in FAR 52.227-19, Commercial Computer Software License (December 2007). Oracle America, Inc., 500 Oracle Parkway, Redwood City, CA 94065.</p> <p>This software or hardware is developed for general use in a variety of information management applications. It is not developed or intended for use in any inherently dangerous applications, including applications that may create a risk of personal injury. If you use this software or hardware in dangerous applications, then you shall be responsible to take all appropriate fail-safe, backup, redundancy, and other measures to ensure its safe use. Oracle Corporation and its affiliates disclaim any liability for any damages caused by use of this software or hardware in dangerous applications.</p> <p>Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners.</p> <p>Intel and Intel Xeon are trademarks or registered trademarks of Intel Corporation. All SPARC trademarks are used under license and are trademarks or registered trademarks of SPARC International, Inc. AMD, Opteron, the AMD logo, and the AMD Opteron logo are trademarks or registered trademarks of Advanced Micro Devices. UNIX is a registered trademark of The Open Group.</p> <p>This software or hardware and documentation may provide access to or information on content, products, and services from third parties. Oracle Corporation and its affiliates are not responsible for and expressly disclaim all warranties of any kind with respect to third-party content, products, and services. Oracle Corporation and its affiliates will not be responsible for any loss, costs, or damages incurred due to your access to or use of third-party content, products, or services.</p> <!--stopindex--> <hr style="width: 80%; height: 2px;"> <p class="copy"> <a href="http://www.oracle.com/corporate/">Company Info</a> &nbsp;&nbsp;|&nbsp;&nbsp; <a href="http://www.oracle.com/corporate/contact/">Contact</a> &nbsp;&nbsp;|&nbsp;&nbsp; Copyright &copy; 2010, 2013 Oracle Corporation</p> </body></html>
engage/templates/dataset/_add.html
Suite5/DataColibri
<!-- #Copyright (c) 2012-2015 Suite5. #Any use of this code including copying, distribution and modification of the code is not allowed without the prior written approval of Suite5. --> {% extends 'base.html' %} {% load i18n %} {% block title %}{% trans "Create Dataset" %}{% endblock %} {% block bodyclass %}dataset-new{% endblock %} {% block css %} <link rel="stylesheet" href="/s/chosen/chosen.css" /> <link rel="stylesheet" type="text/css" href="/s/css/third_party/nyroModal_extend.css"/> {% endblock %} {% block scripts %} <script src="/s/opendatasites/js/jquery-ui.min.js"></script> <script type="text/javascript" src="/s/js/third_party/jquery.easytabs.min.js"></script> <script src="/s/chosen/chosen.jquery.js"></script> <script src="/s/js/third_party/jquery.nyroModal.custom.min.js"></script> <script src="/s/js/jquery.formset.min.js"></script> <script src="/s/js/dataset.js"></script> <script type="text/javascript"> (function($){ $(document).ready(function () { $('#tab-side-container').easytabs( {animate: false,tabActiveClass: "selected-tab",panelActiveClass: "displayed"} ); var $tabContainer = $('#tab-side-container'), $tabs = $tabContainer.data('easytabs').tabs, $tabPanels = $(".tab-buttons-panel") totalSize = $tabPanels.length; $tabPanels.each(function(i){ if (i != 0) { prev = i - 1; $(this).append("<a href='#' class='prev-tab button button-small button-gold-rounded ' rel='" + prev + "'>&laquo; {% trans "Back" %} </a>"); } else { $(this).append("<span style='display:none' class='prev-tab button button-small button-gold-rounded'>&laquo; {% trans "Back" %}</span>"); } if (i+1 != totalSize) { next = i + 1; $(this).append("<a href='#' class='next-tab button button-small button-gold-rounded' rel='" + next + "'>{% trans "Next" %} &raquo</a>"); } else { $(this).append("<span style='display:none' class='next-tab button button-small button-gold-rounded'>{% trans "Next" %} &raquo</span>"); } }); $('.next-tab, .prev-tab').click(function() { var i = parseInt($(this).attr('rel')); var tabSelector = $tabs.children('a:eq(' + i + ')').attr('href'); $tabContainer.easytabs('select', tabSelector); return false; }); if ($('.dataerrors').text()!='') { if ($('.dataerrors:contains("e")').first().parents('.tab-buttons-panel').attr('id') != null) { var tabtoselect = $('.dataerrors:contains("e")').first().parents('.tab-buttons-panel').attr('id'); $('#tab-side-container').easytabs('select', tabtoselect); }; }; $('#id_license').val("OKD Compliant::Creative Commons Attribution 3.0 Unported"); $('#nyroModalLicense').nyroModal(); //Load Licenses $.ajax({ url: 'https://www.googleapis.com/freebase/v1/mqlread?query=[{"type":"/computer/content_license","name":[]}]', dataType: 'json', success: function(response) { //get csv and excel data; for(i=0;i< response["result"].length;i++){ $("#mySelect").append('<option value="'+ response["result"][i]["name"] + '">' + response["result"][i]["name"] + '</option>'); } }, error:function(response) { } }); }); })(jQuery); </script> {% endblock %} {% block searchnav%} <div class="head-search-nav-cont"> <div class="head-search-nav centered clearfix"> </div><!-- .head-search-nav .centered --> </div><!-- head-search-nav-cont --> <div class="head-data-box-cont"> <div class="head-data-box centered"> </div><!-- .head-data-box .centered --> </div><!-- .head-data-box-cont --> {% endblock %} {% block content %} <div id="main" class="site-main"> <div class="bg-half-left bg-white"></div> <div id="content" class="site-content centered clearfix" role="main"> <div class="datasets-form-body"> <h1 class="page-title title-28-light text-petroldark">{% trans "Add new dataset" %}</h1> <form id="dataset-add-form" class="dataset-form" method="post" action="/dataset/add" enctype="multipart/form-data"> {% include 'dataset/_form.html' with scientificForm=scientificForm datasetForm=datasetForm resourceFormset=resourceFormset geoTempForm=geoTempForm %} </form> </div> </div> </div> {% endblock %}
SolrSimpleQuery.NG2/src/index.html
randompeanut/solrsimplequery
<!DOCTYPE html> <html style="overflow: hidden"> <head> <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"> <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet"> <meta charset=UTF-8> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>solr simple query</title> <base href="/"> </head> <body> <app> Loading... </app> <script async src="/main.bundle.js"></script> </body> </html>
clean/Linux-x86_64-4.09.0-2.0.5/released/8.9.1/hammer/1.1.1+8.10.html
coq-bench/coq-bench.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>hammer: Not compatible</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="../../../../../bootstrap-custom.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../..">clean / released</a></li> <li class="active"><a href="">8.9.1 / hammer - 1.1.1+8.10</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> hammer <small> 1.1.1+8.10 <span class="label label-info">Not compatible</span> </small> </h1> <p><em><script>document.write(moment("2020-03-13 06:10:22 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-03-13 06:10:22 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-threads base base-unix base camlp5 7.11 Preprocessor-pretty-printer of OCaml conf-findutils 1 Virtual package relying on findutils conf-m4 1 Virtual package relying on m4 coq 8.9.1 Formal proof management system num 1.3 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.09.0 The OCaml compiler (virtual package) ocaml-base-compiler 4.09.0 Official release 4.09.0 ocaml-config 1 OCaml Switch Configuration ocamlfind 1.8.1 A library manager for OCaml # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;palmskog@gmail.com&quot; homepage: &quot;https://github.com/lukaszcz/coqhammer&quot; dev-repo: &quot;git+https://github.com/lukaszcz/coqhammer.git&quot; bug-reports: &quot;https://github.com/lukaszcz/coqhammer/issues&quot; license: &quot;LGPL-2.1-only&quot; synopsis: &quot;General-purpose automated reasoning hammer tool for Coq&quot; description: &quot;&quot;&quot; A general-purpose automated reasoning hammer tool for Coq that combines learning from previous proofs with the translation of problems to the logics of automated systems and the reconstruction of successfully found proofs. &quot;&quot;&quot; build: [make &quot;plugin&quot;] install: [ [make &quot;install-plugin&quot;] [make &quot;test-plugin&quot;] {with-test} ] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.10&quot; &amp; &lt; &quot;8.11~&quot;} &quot;conf-g++&quot; {build} &quot;coq-hammer-tactics&quot; {= version} ] tags: [ &quot;category:Miscellaneous/Coq Extensions&quot; &quot;keyword:automation&quot; &quot;keyword:hammer&quot; &quot;logpath:Hammer&quot; &quot;date:2019-10-14&quot; ] authors: [ &quot;Lukasz Czajka &lt;lukaszcz@mimuw.edu.pl&gt;&quot; &quot;Cezary Kaliszyk &lt;cezary.kaliszyk@uibk.ac.at&gt;&quot; &quot;Burak Ekici &lt;burak.ekici@uibk.ac.at&gt;&quot; ] url { src: &quot;https://github.com/lukaszcz/coqhammer/archive/v1.1.1-coq8.10.tar.gz&quot; checksum: &quot;sha512=c9fd9c1a997775f515850fad54edceac6572d365f1e7cc043e448d6e5c9903ccb1bea2020fbbfda3983616f9ae4181a384b933f97731a487ee5cfba7cc1543d1&quot; } </pre> <h2>Lint</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Dry install</h2> <p>Dry install with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --show-action coq-hammer.1.1.1+8.10 coq.8.9.1</code></dd> <dt>Return code</dt> <dd>5120</dd> <dt>Output</dt> <dd><pre>[NOTE] Package coq is already installed (current version is 8.9.1). The following dependencies couldn&#39;t be met: - coq-hammer -&gt; coq-hammer-tactics &gt;= 1.1.1+8.10 -&gt; coq &gt;= 8.10 Your request can&#39;t be satisfied: - No available version of coq satisfies the constraints No solution found, exiting </pre></dd> </dl> <p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-hammer.1.1.1+8.10</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Installation size</h2> <p>No files were installed.</p> <h2>Uninstall</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> <small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small> </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
clean/Linux-x86_64-4.02.3-2.0.6/released/8.8.0/topology/8.12.0.html
coq-bench/coq-bench.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>topology: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="../../../../../bootstrap-custom.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../..">clean / released</a></li> <li class="active"><a href="">8.8.0 / topology - 8.12.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> topology <small> 8.12.0 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2021-11-30 23:51:15 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-11-30 23:51:15 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-num base Num library distributed with the OCaml compiler base-ocamlbuild base OCamlbuild binary and libraries distributed with the OCaml compiler base-threads base base-unix base camlp5 7.14 Preprocessor-pretty-printer of OCaml conf-findutils 1 Virtual package relying on findutils conf-perl 1 Virtual package relying on perl coq 8.8.0 Formal proof management system num 0 The Num library for arbitrary-precision integer and rational arithmetic ocaml 4.02.3 The OCaml compiler (virtual package) ocaml-base-compiler 4.02.3 Official 4.02.3 release ocaml-config 1 OCaml Switch Configuration ocamlfind 1.9.1 A library manager for OCaml # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;palmskog@gmail.com&quot; homepage: &quot;https://github.com/coq-community/topology&quot; dev-repo: &quot;git+https://github.com/coq-community/topology.git&quot; bug-reports: &quot;https://github.com/coq-community/topology/issues&quot; license: &quot;LGPL-2.1-or-later&quot; synopsis: &quot;General Topology in Coq&quot; description: &quot;&quot;&quot; This library develops some of the basic concepts and results of general topology in Coq. &quot;&quot;&quot; build: [make &quot;-j%{jobs}%&quot; ] install: [make &quot;install&quot;] depends: [ &quot;coq&quot; {&gt;= &quot;8.11&quot; &amp; &lt; &quot;8.13~&quot;} &quot;coq-zorns-lemma&quot; {&gt;= &quot;8.11&quot; &amp; &lt; &quot;8.13~&quot;} ] tags: [ &quot;category:Mathematics/Real Calculus and Topology&quot; &quot;keyword:topology&quot; &quot;keyword:filters&quot; &quot;keyword:nets&quot; &quot;keyword:metric spaces&quot; &quot;keyword:real analysis&quot; &quot;keyword:Urysohn&#39;s lemma&quot; &quot;keyword:Tietze extension theorem&quot; &quot;logpath:Topology&quot; ] authors: [ &quot;Daniel Schepler&quot; ] url { src: &quot;https://github.com/coq-community/topology/archive/v8.12.0.tar.gz&quot; checksum: &quot;sha512=88fb3b9ad75e3cceb78e248044cd3ccc36003437aacfe3ac240dd7405d830461ef244cc79cbdb988178ed3f98b7030a148aa9474d0d43e43a0e0be5772359e21&quot; } </pre> <h2>Lint</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Dry install 🏜️</h2> <p>Dry install with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --show-action coq-topology.8.12.0 coq.8.8.0</code></dd> <dt>Return code</dt> <dd>5120</dd> <dt>Output</dt> <dd><pre>[NOTE] Package coq is already installed (current version is 8.8.0). The following dependencies couldn&#39;t be met: - coq-topology -&gt; coq &gt;= 8.11 -&gt; ocaml &gt;= 4.05.0 base of this switch (use `--unlock-base&#39; to force) No solution found, exiting </pre></dd> </dl> <p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-topology.8.12.0</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install 🚀</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Installation size</h2> <p>No files were installed.</p> <h2>Uninstall 🧹</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣 </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
app/index.html
alexciesielski/ciesielski-co
<!DOCTYPE html> <!--[if lt IE 7]> <html lang="pl" ng-app="app" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> <!--[if IE 7]> <html lang="pl" ng-app="app" class="no-js lt-ie9 lt-ie8"> <![endif]--> <!--[if IE 8]> <html lang="pl" ng-app="app" class="no-js lt-ie9"> <![endif]--> <!--[if gt IE 8]><!--> <html lang="pl" ng-app="app" ng-strict-di ng-controller="AppController as vm" class="no-js"> <!--<![endif]--> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content="alexander ciesielski full stack full-stack developer mobile web hyprid app application iphone windows phone android angular angularjs javascript ionic meteor meteorjs java hibernate spring nodejs node.js front back end front-end back-end frontend backend"> <title>Alexander Ciesielski - ciesielski.co</title> <!-- build:style bundle --> <!-- Bootstrap Core CSS --> <link rel="stylesheet" href="css/ciesielski-co.bootstrap.min.css" type="text/css"> <!-- Plugin CSS --> <link rel="stylesheet" href="css/flag-icon.min.css" type="text/css"> <link rel="stylesheet" href="css/font-awesome.min.css" type="text/css"> <link rel="stylesheet" href="css/animate.min.css" type="text/css"> <!-- Custom CSS --> <link rel="stylesheet" href="css/ciesielski-co.css" type="text/css"> <link rel="stylesheet" href="css/please-wait.css" type="text/css"> <!-- Custom Fonts --> <link href="css/OpenSans300italic,400italic,600italic,700italic,800italic,400,300,600,700,800.css" rel="stylesheet" type="text/css"> <link href="css/Merriweather400,300,300italic,400italic,700,700italic,900,900italic.css" rel="stylesheet" type="text/css"> <!-- /build --> </head> <body id="page-top"> <script src="js/libs/please-wait.min.js"></script> <script type="text/javascript"> window.loadingScreen = window.pleaseWait({ backgroundColor: '#F05F40', logo: '', loadingHtml: '<i style="color:#fff;" class="fa fa-code fa-5x"></i>' }); </script> <div class="inner"> <nav id="mainNav" class="navbar navbar-default navbar-fixed-top"> <div class="container-fluid"> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> <span class="sr-only">Nawigacja</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand page-scroll" href="#page-top">ciesielski.co</a> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="nav navbar-nav navbar-right"> <li> <a translate class="page-scroll" href="#technologie">{{'TECHNOLOGIES'}}</a> </li> <li> <a class="page-scroll" href="#cv">CURRICULUM VITAE</a> </li> <li> <a class="page-scroll" href="#portfolio">PORTFOLIO</a> </li> <li> <a translate class="page-scroll" href="#kontakt">{{'CONTACT'}}</a> </li> <li ng-class="{'lang-active': (vm.langActive === 'de')}"> <a href="" ng-click="vm.changeLanguage('de')"><span class="flag-icon flag-icon-de"></span></a> </li> <li ng-class="{'lang-active': (vm.langActive === 'gb')}"> <a href="" ng-click="vm.changeLanguage('gb')"><span class="flag-icon flag-icon-gb"></span></a> </li> <li ng-class="{'lang-active': (vm.langActive === 'pl')}"> <a href="" ng-click="vm.changeLanguage('pl')"><span class="flag-icon flag-icon-pl"></span></a> </li> </ul> </div> </div> </nav> <header> <video loop muted autoplay class="header-bg-video"> <source src="img/header.webm" type="video/webm"> <source src="img/header.mp4" type="video/mp4"> </video> <div class="header-content"> <div class="header-content-inner"> <div style="height:120px;"> <h1 id="ciesielski-brand"><i class="fa fa-code wow bounceIn text-primary"></i> <span id="typed"></span></h1> </div> <hr> <p translate>{{'HI_MYNAMEIS'}} Alexander Ciesielski.</p> <p translate>{{'ABOUTME'}}</p> <p translate>{{'ABOUTME_2'}}</p> <p translate>{{'ABOUTME_3'}}</p> <a href="#technologie" class="btn btn-primary btn-xl page-scroll"><span translate>{{'LEARN_MORE'}}</span></a> </div> </div> </header> <section class="bg-primary" id="technologie"> <div class="container"> <div class="row"> <div class="col-lg-12 text-center"> <h2 translate class="section-heading">{{'TECHNOLOGIES'}}</h2> <hr class="light"> </div> </div> </div> <div class="container"> <div class="row"> <div class="col-lg-3 col-md-6 text-center"> <div class="service-box"> <i class="fa fa-4x fa-mobile wow bounceIn"></i> <h3>Front-End</h3> <p class="text-faded">HTML5, CSS,</p> <p class="text-faded">AngularJS, MeteorJS, Ionic</p> </div> </div> <div class="col-lg-3 col-md-6 text-center"> <div class="service-box"> <i class="fa fa-4x fa-server wow bounceIn" data-wow-delay=".2s"></i> <h3>Back-End</h3> <p class="text-faded">Spring + Hibernate,</p> <p class="text-faded">Node.js, MeteorJS</p> </div> </div> <div class="col-lg-3 col-md-6 text-center"> <div class="service-box"> <i class="fa fa-4x fa-database wow bounceIn" data-wow-delay=".4s"></i> <h3 translate>{{'DATABASES'}}</h3> <p class="text-faded">SQL (Oracle, Postgre, MySQL)</p> <p class="text-faded">NoSQL (MongoDB, Firebase)</p> </div> </div> <div class="col-lg-3 col-md-6 text-center"> <div class="service-box"> <i class="fa fa-4x fa-heart wow bounceIn" data-wow-delay=".6s"></i> <h3 translate>{{'WILL_TO_LEARN'}}</h3> <p translate class="text-faded">{{'NONSTOP_SELFDEVELOPMENT'}}</p> <p translate class="text-faded">{{'AND_INTEREST_IN_TECHNOLOGIES'}}</p> </div> </div> </div> </div> </section> <section id="cv" class="cv-table"> <div class="container"> <div class="row"> <div class="col-lg-8 col-lg-offset-2 text-center"> <h2 class="section-heading wow bounceIn">Curriculum Vitae</h2> <hr class="primary"> <p translate>{{'CV_1'}}</p> <p translate>{{'CV_2'}}</p> </div> </div> </div> <div class="container"> <div class="row"> <p></p> </div> <div class="row"> <div class="col-lg-8 col-lg-offset-2 text-center"> <h3 translate class="section-heading wow bounceIn">{{'PROJECTS'}}</h3> <hr /> </div> </div> <div class="table-responsive"> <table class="table table-striped text-center"> <thead> <tr> <th translate class="col-md-4 text-center">{{'WHEN'}}?</th> <th translate class="col-md-4 text-center">{{'WHERE'}}?</th> <th translate class="col-md-4 text-center">{{'WHAT'}}?</th> </tr> </thead> <tbody> <tr> <td>01/2015 - 10/2015</td> <td translate>Capgemini, {{'WROCLAW'}}</td> <td translate>{{'CAPGEMINI_DESCRIPTION'}}</td> </tr> <tr> <td>08/2014 - 12/2014</td> <td translate>Pentegy, {{'WARSZAWA'}}</td> <td translate>{{'PENTEGY_DESCRIPTION'}}</td> </tr> <tr> <td>01/2014 - 07/2014</td> <td translate>ACI Worldwide, {{'WARSZAWA'}}</td> <td translate>{{'ACI_DESCRIPTION'}}</td> </tr> <tr> <td>07/2010 - 08/2013</td> <td translate>{{'BILANS'}}</td> <td translate>{{'BILANS_DESCRIPTION'}}</td> </tr> </tbody> </table> </div> <div class="row"> <div class="col-lg-8 col-lg-offset-2 text-center"> <h3 translate class="section-heading wow bounceIn">{{'EDUCATION'}}</h3> <hr /> </div> </div> <div class="table-responsive"> <table class="table table-striped text-center"> <thead> <tr> <th translate class="col-md-4 text-center" style="min-width:145px;">{{'WHEN'}}?</th> <th translate class="col-md-4 text-center">{{'WHERE'}}?</th> <th translate class="col-md-4 text-center">{{'WHAT'}}?</th> </tr> </thead> <tbody> <tr> <td>2009 - 2013</td> <td translate>{{'PJATK'}}</td> <td translate>{{'IT_ENGINEER'}}</td> </tr> <tr> <td>2003 - 2009</td> <td translate>{{'WBS'}}</td> <td translate>{{'MATURA'}}</td> </tr> </tbody> </table> </div> </div> </section> <section class="no-padding" id="portfolio"> <div class="container-fluid"> <div class="row"> <div class="col-lg-12 text-center"> <h2 class="section-heading wow bounceIn">Portfolio</h2> <hr /> </div> </div> <div class="row no-gutter"> <div class="col-lg-4 col-sm-6"> <a target="_blank" href="http://gbadwokaci.pl" class="portfolio-box"> <img src="img/portfolio/gbadwokaci.jpg" height="659" class="img-responsive" alt=""> <div class="portfolio-box-caption"> <div class="portfolio-box-caption-content"> <div class="project-category text-faded"> Website </div> <div class="project-name"> gbadwokaci.pl (2012) </div> </div> </div> </a> </div> <div class="col-lg-4 col-sm-6"> <a target="_blank" href="http://wszystkodlafirmy.pl" class="portfolio-box"> <img src="img/portfolio/wdf.jpg" height="659" class="img-responsive" alt=""> <div class="portfolio-box-caption"> <div class="portfolio-box-caption-content"> <div class="project-category text-faded"> Website </div> <div class="project-name"> wszystkodlafirmy.pl (2011) </div> </div> </div> </a> </div> <div class="col-lg-4 col-sm-6"> <a target="_blank" href="http://bilans.eu" class="portfolio-box"> <img src="img/portfolio/bilans.jpg" height="659" class="img-responsive" alt=""> <div class="portfolio-box-caption"> <div class="portfolio-box-caption-content"> <div class="project-category text-faded"> Website </div> <div class="project-name"> bilans.eu (2011) </div> </div> </div> </a> </div> </div> </div> </section> <section id="kontakt"> <div class="container"> <div class="row"> <div class="col-lg-8 col-lg-offset-2 text-center"> <h2 translate class="section-heading wow bounceIn">{{'CONTACT'}}</h2> <hr /> <p translate>{{'READY_TO_HIRE_ME'}}</p> <p translate>{{'USE_THE_CONTACT_FORM'}}</p> </div> </div> <div class="row"> <div class="col-lg-8 col-lg-offset-2 text-center"> <div class="panel panel-default" ng-show="!vm.success"> <div class="panel-body"> <form role="form" name="contactForm" id="contactForm" ng-submit="vm.submitForm(vm.name, vm.email, vm.message)" novalidate> <div class="row"> <!-- Name --> <div class="form-group col-sm-6" ng-class="{ 'has-error': contactForm.name.$touched && contactForm.name.$invalid }"> <label translate for="name" class="h4 text-uppercase">{{'NAME_SURNAME'}}</label> <input translate type="text" class="form-control" name="name" id="name" ng-model="vm.name" placeholder="" required ng-minlength="2" ng-maxlength="30"> </div> <!-- Email --> <div class="form-group col-sm-6" ng-class="{ 'has-error': contactForm.email.$touched && contactForm.email.$invalid }"> <label translate for="email" class="h4 text-uppercase">{{'EMAIL'}}</label> <input translate type="email" class="form-control" name="email" id="email" ng-model="vm.email" placeholder="" required> </div> </div> <!-- Message --> <div class="form-group" ng-class="{ 'has-error': contactForm.message.$touched && contactForm.message.$invalid }"> <label translate for="message" class="h4 text-uppercase">{{'MESSAGE'}}</label> <p class="small pull-right" ng-show="vm.message.length > 5"> {{vm.message.length}} / 1000</p> <textarea name="message" id="message" class="form-control" rows="5" ng-model="vm.message" placeholder="" required ng-minlength="5" ng-maxlength="1000"></textarea> </div> <!-- Submit --> <button translate ng-disabled="contactForm.$invalid || vm.loading" type="submit" id="form-submit" class="btn btn-primary btn-xl btn-block">{{'SEND'}}</button> <div class="row"> <div role="alert" class="help-block" ng-messages="contactForm.name.$error" ng-show="contactForm.name.$touched"> <p class="text-danger" translate ng-message="minlength">{{'NAME_TOO_SHORT'}}</p> <p class="text-danger" translate ng-message="maxlength">{{'NAME_TOO_LONG'}}</p> <p class="text-danger" translate ng-message="required">{{'NAME_REQUIRED'}}</p> </div> <div class="help-block" ng-messages="contactForm.email.$error" ng-show="contactForm.email.$touched"> <p class="text-danger" translate ng-message="required">{{'EMAIL_REQUIRED'}}</p> <p class="text-danger" translate ng-message="email">{{'EMAIL_INVALID'}}</p> </div> <div class="help-block" ng-messages="contactForm.message.$error" ng-show="contactForm.message.$touched"> <p class="text-danger" translate ng-message="minlength">{{'MESSAGE_TOO_SHORT'}}</p> <p class="text-danger" translate ng-message="maxlength">{{'MESSAGE_TOO_LONG'}}</p> <p class="text-danger" translate ng-message="required">{{'MESSAGE_REQUIRED'}}</p> </div> <div class="help-block" ng-show="vm.error"> <p class="text-danger" translate>{{'ERROR'}}</h4> </div> </div> </form> </div> </div> </div> </div> <!-- The Modal --> <div id="modalLoading" class="modal"> <!-- Modal content --> <div class="modal-content"> <div class="sk-wave"> <div class="sk-rect sk-rect1"></div> <div class="sk-rect sk-rect2"></div> <div class="sk-rect sk-rect3"></div> <div class="sk-rect sk-rect4"></div> <div class="sk-rect sk-rect5"></div> </div> </div> </div> <div class="row"> <div class="panel panel-default" ng-show="vm.success || vm.error"> <div class="panel-body" ng-show="vm.success"> <h4 translate class="text-center text-success">{{'MESSAGE_SENT'}}</h4> </div> </div> </div> </div> <div class="container" style="margin-top:50px;"> <div class="row text-center"> <div class="col-lg-4"> <i class="fa fa-phone fa-3x wow bounceIn"></i> <br /> <p class="btn btn-primary btn-xl" href="">+48 <script type="text/javascript"> <!-- var s="644!444!289"; m=""; for (i=0; i<s.length; i++) { if(s.charCodeAt(i) == 28){ m+= '&';} else if (s.charCodeAt(i) == 23) { m+= '!';} else { m+=String.fromCharCode(s.charCodeAt(i)-1); }}document.write(m); //--> </script> </p> </div> <div class="col-lg-4"> <i class="fa fa-github fa-3x wow bounceIn" data-wow-delay=".1s"></i> <br /> <a class="btn btn-primary btn-xl" target="_blank" href="http://github.com/alexciesielski/"> alexciesielski </a> </p> </div> <div class="col-lg-4"> <i class="fa fa-envelope-o fa-3x wow bounceIn" data-wow-delay=".2s"></i> <br /> <a class="btn btn-primary btn-xl" href="mailto:alexanderMALPAciesielskiKROPKAco" onclick="this.href=this.href.replace(/MALPA/,'&#64;').replace(/KROPKA/,'&#46;')"> <span id="mejl"></span> </a> </p> </div> </div> </div> </section> </div> <!-- jQuery --> <!--<script src="js/jquery.js"></script>--> <script src="https://code.jquery.com/jquery-1.12.0.min.js"></script> <!-- Angular + Firebase --> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular.min.js"></script> <!--<script src="js/angular.min.js"></script>--> <!-- Typed.js --> <script src="js/libs/typed.min.js"></script> <!-- Bootstrap Core JavaScript --> <script src="js/libs/ciesielski-co.bootstrap.min.js"></script> <!-- Plugin JavaScript --> <script src="js/libs/jquery.easing.min.js"></script> <script src="js/libs/jquery.fittext.js"></script> <script src="js/libs/wow.min.js"></script> <script src="js/libs/firebase.js"></script> <script src="js/libs/angularfire.min.js"></script> <script src="js/libs/angular-translate.min.js"></script> <script src="js/libs/angular-route.min.js"></script> <script src="js/libs/angular-messages.min.js"></script> <script src="js/libs/angular-sanitize.min.js"></script> <!-- build:remove --> <!-- App Javascript --> <script src="js/app.module.js"></script> <script src="js/app.controller.js"></script> <!-- /build --> <!-- build:section scripts --> <!-- /build --> <!--obscuremail--> <script> var parts = ["alexander", "ciesielski", "co", "&#46;", "&#64;"]; var mejl = parts[0] + parts[4] + parts[1] + parts[3] + parts[2]; document.getElementById("mejl").innerHTML = mejl; </script> </body> </html>
app/content/texts/grc_sblgnt/C114.html
khangpng/VietnameseBible
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" /> <title>ΚΟΡΙΝΘΙΟΥΣ Α΄ 14 (SBLGNT)</title> <link href="../../../build/mobile.css" rel="stylesheet" /> <script src="../../../build/mobile.js"></script> </head> <body dir="ltr" class="section-document"> <div class="header"><div class="nav"> <a class="name" href="C1.html">SBL Greek New Testament</a><a class="location" href="C1.html">ΚΟΡΙΝΘΙΟΥΣ Α΄ 14</a><a class="prev" href="C113.html">&lt;</a> <a class="home" href="index.html">=</a> <a class="next" href="C115.html">&gt;</a> </div></div> <div class="section chapter C1 C114 grc_sblgnt grc " dir="ltr" lang="el" data-id="C114" data-nextid="C115" data-previd="C113"> <div class="c">14</div> <div class="p"> <span class="v-num v-1">1&nbsp;</span><span class="v C114_1" data-id="C114_1"><l s="G1377" m="V-2PADP">Διώκετε</l> <l m="RA-ASF">τὴν</l> <l s="G26" m="N-ASF">ἀγάπην,</l> <l s="G2206" m="V-2PADP">ζηλοῦτε</l> <l s="G1161" m="C-">δὲ</l> <l m="RA-APN">τὰ</l> <l s="G4152" m="A-APN">πνευματικά,</l> <l s="G3123" m="D-">μᾶλλον</l> <l s="G1161" m="C-">δὲ</l> <l s="G2443" m="C-">ἵνα</l> <l s="G4395" m="V-2PASP">προφητεύητε.</l> </span> <span class="v-num v-2">2&nbsp;</span><span class="v C114_2" data-id="C114_2"><l m="RA-NSM">ὁ</l> <l s="G1063" m="C-">γὰρ</l> <l s="G2980" m="V-PAPNSM">λαλῶν</l> <l s="G1100" m="N-DSF">γλώσσῃ</l> <l m="D-">οὐκ</l> <l s="G444" m="N-DPM">ἀνθρώποις</l> <l s="G2980" m="V-3PAIS">λαλεῖ</l> <l s="G235" m="C-">⸀ἀλλὰ</l> <l s="G2316" m="N-DSM">θεῷ,</l> <l m="A-NSM">οὐδεὶς</l> <l s="G1063" m="C-">γὰρ</l> <l s="G191" m="V-3PAIS">ἀκούει,</l> <l s="G4151" m="N-DSN">πνεύματι</l> <l s="G1161" m="C-">δὲ</l> <l s="G2980" m="V-3PAIS">λαλεῖ</l> <l s="G3466" m="N-APN">μυστήρια·</l> </span> <span class="v-num v-3">3&nbsp;</span><span class="v C114_3" data-id="C114_3"><l m="RA-NSM">ὁ</l> <l s="G1161" m="C-">δὲ</l> <l s="G4395" m="V-PAPNSM">προφητεύων</l> <l s="G444" m="N-DPM">ἀνθρώποις</l> <l s="G2980" m="V-3PAIS">λαλεῖ</l> <l s="G3619" m="N-ASF">οἰκοδομὴν</l> <l s="G2532" m="C-">καὶ</l> <l s="G3874" m="N-ASF">παράκλησιν</l> <l s="G2532" m="C-">καὶ</l> <l s="G3889" m="N-ASF">παραμυθίαν.</l> </span> <span class="v-num v-4">4&nbsp;</span><span class="v C114_4" data-id="C114_4"><l m="RA-NSM">ὁ</l> <l s="G2980" m="V-PAPNSM">λαλῶν</l> <l s="G1100" m="N-DSF">γλώσσῃ</l> <l s="G1438" m="RP-ASM">ἑαυτὸν</l> <l s="G3618" m="V-3PAIS">οἰκοδομεῖ·</l> <l m="RA-NSM">ὁ</l> <l s="G1161" m="C-">δὲ</l> <l s="G4395" m="V-PAPNSM">προφητεύων</l> <l s="G1577" m="N-ASF">ἐκκλησίαν</l> <l s="G3618" m="V-3PAIS">οἰκοδομεῖ.</l> </span> <span class="v-num v-5">5&nbsp;</span><span class="v C114_5" data-id="C114_5"><l m="V-1PAIS">θέλω</l> <l s="G1161" m="C-">δὲ</l> <l s="G3956" m="A-APM">πάντας</l> <l s="G4771" m="RP-AP">ὑμᾶς</l> <l s="G2980" m="V-PAN">λαλεῖν</l> <l s="G1100" m="N-DPF">γλώσσαις,</l> <l s="G3123" m="D-">μᾶλλον</l> <l s="G1161" m="C-">δὲ</l> <l s="G2443" m="C-">ἵνα</l> <l s="G4395" m="V-2PASP">προφητεύητε·</l> <l s="G3173" m="A-NSMC">μείζων</l> <l s="G1161" m="C-">⸀δὲ</l> <l m="RA-NSM">ὁ</l> <l s="G4395" m="V-PAPNSM">προφητεύων</l> <l s="G2228" m="C-">ἢ</l> <l m="RA-NSM">ὁ</l> <l s="G2980" m="V-PAPNSM">λαλῶν</l> <l s="G1100" m="N-DPF">γλώσσαις,</l> <l s="G1622" m="D-">ἐκτὸς</l> <l s="G1487" m="C-">εἰ</l> <l s="G3361" m="D-">μὴ</l> <l s="G1329" m="V-3PASS">⸀διερμηνεύῃ,</l> <l s="G2443" m="C-">ἵνα</l> <l m="RA-NSF">ἡ</l> <l s="G1577" m="N-NSF">ἐκκλησία</l> <l s="G3619" m="N-ASF">οἰκοδομὴν</l> <l s="G2983" m="V-3AASS">λάβῃ.</l> </span> <span class="v-num v-6">6&nbsp;</span><span class="v C114_6" data-id="C114_6"><l s="G3568" m="D-">⸀Νῦν</l> <l s="G1161" m="C-">δέ,</l> <l s="G80" m="N-VPM">ἀδελφοί,</l> <l s="G1437" m="C-">ἐὰν</l> <l s="G2064" m="V-1AASS">ἔλθω</l> <l s="G4314" m="P-">πρὸς</l> <l s="G4771" m="RP-AP">ὑμᾶς</l> <l s="G1100" m="N-DPF">γλώσσαις</l> <l s="G2980" m="V-PAPNSM">λαλῶν,</l> <l s="G5101" m="RI-ASN">τί</l> <l s="G4771" m="RP-AP">ὑμᾶς</l> <l s="G5623" m="V-1FAIS">ὠφελήσω,</l> <l s="G1437" m="C-">ἐὰν</l> <l s="G3361" m="D-">μὴ</l> <l s="G4771" m="RP-DP">ὑμῖν</l> <l s="G2980" m="V-1AASS">λαλήσω</l> <l s="G2228" m="C-">ἢ</l> <l s="G1722" m="P-">ἐν</l> <l s="G602" m="N-DSF">ἀποκαλύψει</l> <l s="G2228" m="C-">ἢ</l> <l s="G1722" m="P-">ἐν</l> <l s="G1108" m="N-DSF">γνώσει</l> <l s="G2228" m="C-">ἢ</l> <l s="G1722" m="P-">ἐν</l> <l s="G4394" m="N-DSF">προφητείᾳ</l> <l s="G2228" m="C-">ἢ</l> <l s="G1722" m="P-">ἐν</l> <l s="G1322" m="N-DSF">διδαχῇ;</l> </span> <span class="v-num v-7">7&nbsp;</span><span class="v C114_7" data-id="C114_7"><l s="G3676" m="D-">ὅμως</l> <l m="RA-NPN">τὰ</l> <l s="G895" m="A-NPN">ἄψυχα</l> <l s="G5456" m="N-ASF">φωνὴν</l> <l s="G1325" m="V-PAPNPN">διδόντα,</l> <l s="G1535" m="C-">εἴτε</l> <l s="G836" m="N-NSM">αὐλὸς</l> <l s="G1535" m="C-">εἴτε</l> <l s="G2788" m="N-NSF">κιθάρα,</l> <l s="G1437" m="C-">ἐὰν</l> <l s="G1293" m="N-ASF">διαστολὴν</l> <l m="RA-DPM">τοῖς</l> <l s="G5353" m="N-DPM">φθόγγοις</l> <l s="G3361" m="D-">μὴ</l> <l s="G1325" m="V-3AASS">⸀δῷ,</l> <l s="G4459" m="D-">πῶς</l> <l s="G1097" m="V-3FPIS">γνωσθήσεται</l> <l m="RA-NSN">τὸ</l> <l s="G832" m="V-PPPNSN">αὐλούμενον</l> <l s="G2228" m="C-">ἢ</l> <l m="RA-NSN">τὸ</l> <l s="G2789" m="V-PPPNSN">κιθαριζόμενον;</l> </span> <span class="v-num v-8">8&nbsp;</span><span class="v C114_8" data-id="C114_8"><l s="G2532" m="D-">καὶ</l> <l s="G1063" m="C-">γὰρ</l> <l s="G1437" m="C-">ἐὰν</l> <l s="G82" m="A-ASF">ἄδηλον</l> <l s="G5456" m="N-ASF">⸂φωνὴν</l> <l s="G4536" m="N-NSF">σάλπιγξ⸃</l> <l s="G1325" m="V-3AASS">δῷ,</l> <l s="G5101" m="RI-NSM">τίς</l> <l s="G3903" m="V-3FMIS">παρασκευάσεται</l> <l s="G1519" m="P-">εἰς</l> <l s="G4171" m="N-ASM">πόλεμον;</l> </span> <span class="v-num v-9">9&nbsp;</span><span class="v C114_9" data-id="C114_9"><l m="D-">οὕτως</l> <l s="G2532" m="D-">καὶ</l> <l s="G4771" m="RP-NP">ὑμεῖς</l> <l s="G1223" m="P-">διὰ</l> <l m="RA-GSF">τῆς</l> <l s="G1100" m="N-GSF">γλώσσης</l> <l s="G1437" m="C-">ἐὰν</l> <l s="G3361" m="D-">μὴ</l> <l s="G2154" m="A-ASM">εὔσημον</l> <l s="G3056" m="N-ASM">λόγον</l> <l s="G1325" m="V-2AASP">δῶτε,</l> <l s="G4459" m="D-">πῶς</l> <l s="G1097" m="V-3FPIS">γνωσθήσεται</l> <l m="RA-NSN">τὸ</l> <l s="G2980" m="V-PPPNSN">λαλούμενον;</l> <l s="G1510" m="V-2FMIP">ἔσεσθε</l> <l s="G1063" m="C-">γὰρ</l> <l s="G1519" m="P-">εἰς</l> <l s="G109" m="N-ASM">ἀέρα</l> <l s="G2980" m="V-PAPNPM">λαλοῦντες.</l> </span> <span class="v-num v-10">10&nbsp;</span><span class="v C114_10" data-id="C114_10"><l s="G5118" m="RD-NPN">τοσαῦτα</l> <l s="G1487" m="C-">εἰ</l> <l s="G5177" m="V-3AAOS">τύχοι</l> <l s="G1085" m="N-NPN">γένη</l> <l s="G5456" m="N-GPF">φωνῶν</l> <l s="G1510" m="V-3PAIP">⸀εἰσιν</l> <l s="G1722" m="P-">ἐν</l> <l s="G2889" m="N-DSM">κόσμῳ,</l> <l s="G2532" m="C-">καὶ</l> <l m="A-NSN">⸀οὐδὲν</l> <l s="G880" m="A-NSN">ἄφωνον·</l> </span> <span class="v-num v-11">11&nbsp;</span><span class="v C114_11" data-id="C114_11"><l s="G1437" m="C-">ἐὰν</l> <l s="G3767" m="C-">οὖν</l> <l s="G3361" m="D-">μὴ</l> <l m="V-1XASS">εἰδῶ</l> <l m="RA-ASF">τὴν</l> <l s="G1411" m="N-ASF">δύναμιν</l> <l m="RA-GSF">τῆς</l> <l s="G5456" m="N-GSF">φωνῆς,</l> <l s="G1510" m="V-1FMIS">ἔσομαι</l> <l m="RA-DSM">τῷ</l> <l s="G2980" m="V-PAPDSM">λαλοῦντι</l> <l s="G915" m="A-NSM">βάρβαρος</l> <l s="G2532" m="C-">καὶ</l> <l m="RA-NSM">ὁ</l> <l s="G2980" m="V-PAPNSM">λαλῶν</l> <l s="G1722" m="P-">ἐν</l> <l s="G1473" m="RP-DS">ἐμοὶ</l> <l s="G915" m="A-NSM">βάρβαρος.</l> </span> <span class="v-num v-12">12&nbsp;</span><span class="v C114_12" data-id="C114_12"><l m="D-">οὕτως</l> <l s="G2532" m="D-">καὶ</l> <l s="G4771" m="RP-NP">ὑμεῖς,</l> <l s="G1893" m="C-">ἐπεὶ</l> <l s="G2207" m="N-NPM">ζηλωταί</l> <l s="G1510" m="V-2PAIP">ἐστε</l> <l s="G4151" m="N-GPN">πνευμάτων,</l> <l s="G4314" m="P-">πρὸς</l> <l m="RA-ASF">τὴν</l> <l s="G3619" m="N-ASF">οἰκοδομὴν</l> <l m="RA-GSF">τῆς</l> <l s="G1577" m="N-GSF">ἐκκλησίας</l> <l s="G2212" m="V-2PADP">ζητεῖτε</l> <l s="G2443" m="C-">ἵνα</l> <l s="G4052" m="V-2PASP">περισσεύητε.</l> </span> <span class="v-num v-13">13&nbsp;</span><span class="v C114_13" data-id="C114_13"><l s="G1352" m="C-">⸀Διὸ</l> <l m="RA-NSM">ὁ</l> <l s="G2980" m="V-PAPNSM">λαλῶν</l> <l s="G1100" m="N-DSF">γλώσσῃ</l> <l s="G4336" m="V-3PMDS">προσευχέσθω</l> <l s="G2443" m="C-">ἵνα</l> <l s="G1329" m="V-3PASS">διερμηνεύῃ.</l> </span> <span class="v-num v-14">14&nbsp;</span><span class="v C114_14" data-id="C114_14"><l s="G1437" m="C-">ἐὰν</l> <l s="G1063" m="C-">γὰρ</l> <l s="G4336" m="V-1PMSS">προσεύχωμαι</l> <l s="G1100" m="N-DSF">γλώσσῃ,</l> <l m="RA-NSN">τὸ</l> <l s="G4151" m="N-NSN">πνεῦμά</l> <l s="G1473" m="RP-GS">μου</l> <l s="G4336" m="V-3PMIS">προσεύχεται,</l> <l m="RA-NSM">ὁ</l> <l s="G1161" m="C-">δὲ</l> <l s="G3563" m="N-NSM">νοῦς</l> <l s="G1473" m="RP-GS">μου</l> <l s="G175" m="A-NSM">ἄκαρπός</l> <l s="G1510" m="V-3PAIS">ἐστιν.</l> </span> <span class="v-num v-15">15&nbsp;</span><span class="v C114_15" data-id="C114_15"><l s="G5101" m="RI-NSN">τί</l> <l s="G3767" m="C-">οὖν</l> <l s="G1510" m="V-3PAIS">ἐστιν;</l> <l s="G4336" m="V-1FMIS">προσεύξομαι</l> <l m="RA-DSN">τῷ</l> <l s="G4151" m="N-DSN">πνεύματι,</l> <l s="G4336" m="V-1FMIS">προσεύξομαι</l> <l s="G1161" m="C-">δὲ</l> <l s="G2532" m="D-">καὶ</l> <l m="RA-DSM">τῷ</l> <l s="G3563" m="N-DSM">νοΐ·</l> <l s="G5567" m="V-1FAIS">ψαλῶ</l> <l m="RA-DSN">τῷ</l> <l s="G4151" m="N-DSN">πνεύματι,</l> <l s="G5567" m="V-1FAIS">ψαλῶ</l> <l s="G1161" m="C-">δὲ</l> <l s="G2532" m="D-">καὶ</l> <l m="RA-DSM">τῷ</l> <l s="G3563" m="N-DSM">νοΐ·</l> </span> <span class="v-num v-16">16&nbsp;</span><span class="v C114_16" data-id="C114_16"><l s="G1893" m="C-">ἐπεὶ</l> <l s="G1437" m="C-">ἐὰν</l> <l s="G2127" m="V-2PASS">⸀εὐλογῇς</l> <l s="G4151" m="N-DSN">⸀πνεύματι,</l> <l m="RA-NSM">ὁ</l> <l s="G378" m="V-PAPNSM">ἀναπληρῶν</l> <l m="RA-ASM">τὸν</l> <l s="G5117" m="N-ASM">τόπον</l> <l m="RA-GSM">τοῦ</l> <l s="G2399" m="N-GSM">ἰδιώτου</l> <l s="G4459" m="D-">πῶς</l> <l s="G3004" m="V-3FAIS">ἐρεῖ</l> <l m="RA-ASN">τὸ</l> <l s="G281" m="X-">Ἀμήν</l> <l s="G1909" m="P-">ἐπὶ</l> <l m="RA-DSF">τῇ</l> <l s="G4674" m="A-DSF">σῇ</l> <l s="G2169" m="N-DSF">εὐχαριστίᾳ;</l> <l s="G1894" m="C-">ἐπειδὴ</l> <l s="G5101" m="RI-ASN">τί</l> <l s="G3004" m="V-2PAIS">λέγεις</l> <l m="D-">οὐκ</l> <l m="V-3XAIS">οἶδεν·</l> </span> <span class="v-num v-17">17&nbsp;</span><span class="v C114_17" data-id="C114_17"><l s="G4771" m="RP-NS">σὺ</l> <l s="G3303" m="C-">μὲν</l> <l s="G1063" m="C-">γὰρ</l> <l s="G2573" m="D-">καλῶς</l> <l s="G2168" m="V-2PAIS">εὐχαριστεῖς,</l> <l s="G235" m="C-">ἀλλ’</l> <l m="RA-NSM">ὁ</l> <l s="G2087" m="A-NSM">ἕτερος</l> <l m="D-">οὐκ</l> <l s="G3618" m="V-3PPIS">οἰκοδομεῖται.</l> </span> <span class="v-num v-18">18&nbsp;</span><span class="v C114_18" data-id="C114_18"><l s="G2168" m="V-1PAIS">εὐχαριστῶ</l> <l m="RA-DSM">τῷ</l> <l s="G2316" m="N-DSM">⸀θεῷ,</l> <l s="G3956" m="A-GPM">πάντων</l> <l s="G4771" m="RP-GP">ὑμῶν</l> <l s="G3123" m="D-">μᾶλλον</l> <l s="G1100" m="N-DPF">⸀γλώσσαις</l> <l s="G2980" m="V-1PAIS">⸀λαλῶ·</l> </span> <span class="v-num v-19">19&nbsp;</span><span class="v C114_19" data-id="C114_19"><l s="G235" m="C-">ἀλλὰ</l> <l s="G1722" m="P-">ἐν</l> <l s="G1577" m="N-DSF">ἐκκλησίᾳ</l> <l m="V-1PAIS">θέλω</l> <l s="G4002" m="A-APM">πέντε</l> <l s="G3056" m="N-APM">λόγους</l> <l m="RA-DSM">⸂τῷ</l> <l s="G3563" m="N-DSM">νοΐ⸃</l> <l s="G1473" m="RP-GS">μου</l> <l s="G2980" m="V-AAN">λαλῆσαι,</l> <l s="G2443" m="C-">ἵνα</l> <l s="G2532" m="D-">καὶ</l> <l s="G243" m="A-APM">ἄλλους</l> <l s="G2727" m="V-1AASS">κατηχήσω,</l> <l s="G2228" m="C-">ἢ</l> <l s="G3463" m="A-APM">μυρίους</l> <l s="G3056" m="N-APM">λόγους</l> <l s="G1722" m="P-">ἐν</l> <l s="G1100" m="N-DSF">γλώσσῃ.</l> </span> <span class="v-num v-20">20&nbsp;</span><span class="v C114_20" data-id="C114_20"><l s="G80" m="N-VPM">Ἀδελφοί,</l> <l s="G3361" m="D-">μὴ</l> <l s="G3813" m="N-NPN">παιδία</l> <l s="G1096" m="V-2PMDP">γίνεσθε</l> <l m="RA-DPF">ταῖς</l> <l s="G5424" m="N-DPF">φρεσίν,</l> <l s="G235" m="C-">ἀλλὰ</l> <l m="RA-DSF">τῇ</l> <l s="G2549" m="N-DSF">κακίᾳ</l> <l s="G3515" m="V-2PADP">νηπιάζετε,</l> <l m="RA-DPF">ταῖς</l> <l s="G1161" m="C-">δὲ</l> <l s="G5424" m="N-DPF">φρεσὶν</l> <l s="G5046" m="A-NPM">τέλειοι</l> <l s="G1096" m="V-2PMDP">γίνεσθε.</l> </span> <span class="v-num v-21">21&nbsp;</span><span class="v C114_21" data-id="C114_21"><l s="G1722" m="P-">ἐν</l> <l m="RA-DSM">τῷ</l> <l s="G3551" m="N-DSM">νόμῳ</l> <l s="G1125" m="V-3XPIS">γέγραπται</l> <l s="G3748" m="C-">ὅτι</l> <l s="G1722" m="P-">Ἐν</l> <l s="G2084" m="A-DPM">ἑτερογλώσσοις</l> <l s="G2532" m="C-">καὶ</l> <l s="G1722" m="P-">ἐν</l> <l s="G5491" m="N-DPN">χείλεσιν</l> <l s="G2087" m="A-GPM">⸀ἑτέρων</l> <l s="G2980" m="V-1FAIS">λαλήσω</l> <l m="RA-DSM">τῷ</l> <l s="G2992" m="N-DSM">λαῷ</l> <l m="RD-DSM">τούτῳ,</l> <l s="G2532" m="C-">καὶ</l> <l s="G3761" m="D-">οὐδ’</l> <l m="D-">οὕτως</l> <l s="G1522" m="V-3FMIP">εἰσακούσονταί</l> <l s="G1473" m="RP-GS">μου,</l> <l s="G3004" m="V-3PAIS">λέγει</l> <l s="G2962" m="N-NSM">κύριος.</l> </span> <span class="v-num v-22">22&nbsp;</span><span class="v C114_22" data-id="C114_22"><l s="G5620" m="C-">ὥστε</l> <l m="RA-NPF">αἱ</l> <l s="G1100" m="N-NPF">γλῶσσαι</l> <l s="G1519" m="P-">εἰς</l> <l s="G4592" m="N-ASN">σημεῖόν</l> <l s="G1510" m="V-3PAIP">εἰσιν</l> <l m="D-">οὐ</l> <l m="RA-DPM">τοῖς</l> <l s="G4100" m="V-PAPDPM">πιστεύουσιν</l> <l s="G235" m="C-">ἀλλὰ</l> <l m="RA-DPM">τοῖς</l> <l s="G571" m="A-DPM">ἀπίστοις,</l> <l m="RA-NSF">ἡ</l> <l s="G1161" m="C-">δὲ</l> <l s="G4394" m="N-NSF">προφητεία</l> <l m="D-">οὐ</l> <l m="RA-DPM">τοῖς</l> <l s="G571" m="A-DPM">ἀπίστοις</l> <l s="G235" m="C-">ἀλλὰ</l> <l m="RA-DPM">τοῖς</l> <l s="G4100" m="V-PAPDPM">πιστεύουσιν.</l> </span> <span class="v-num v-23">23&nbsp;</span><span class="v C114_23" data-id="C114_23"><l s="G1437" m="C-">ἐὰν</l> <l s="G3767" m="C-">οὖν</l> <l s="G4905" m="V-3AASS">συνέλθῃ</l> <l m="RA-NSF">ἡ</l> <l s="G1577" m="N-NSF">ἐκκλησία</l> <l s="G3650" m="A-NSF">ὅλη</l> <l s="G1909" m="P-">ἐπὶ</l> <l m="RA-ASN">τὸ</l> <l s="G846" m="A-ASN">αὐτὸ</l> <l s="G2532" m="C-">καὶ</l> <l s="G3956" m="A-NPM">πάντες</l> <l s="G2980" m="V-3PASP">⸂λαλῶσιν</l> <l s="G1100" m="N-DPF">γλώσσαις⸃,</l> <l s="G1525" m="V-3AASP">εἰσέλθωσιν</l> <l s="G1161" m="C-">δὲ</l> <l s="G2399" m="N-NPM">ἰδιῶται</l> <l s="G2228" m="C-">ἢ</l> <l s="G571" m="A-NPM">ἄπιστοι,</l> <l m="X-">οὐκ</l> <l s="G3004" m="V-3FAIP">ἐροῦσιν</l> <l s="G3748" m="C-">ὅτι</l> <l s="G3105" m="V-2PMIP">μαίνεσθε;</l> </span> <span class="v-num v-24">24&nbsp;</span><span class="v C114_24" data-id="C114_24"><l s="G1437" m="C-">ἐὰν</l> <l s="G1161" m="C-">δὲ</l> <l s="G3956" m="A-NPM">πάντες</l> <l s="G4395" m="V-3PASP">προφητεύωσιν,</l> <l s="G1525" m="V-3AASS">εἰσέλθῃ</l> <l s="G1161" m="C-">δέ</l> <l m="RI-NSM">τις</l> <l s="G571" m="A-NSM">ἄπιστος</l> <l s="G2228" m="C-">ἢ</l> <l s="G2399" m="N-NSM">ἰδιώτης,</l> <l s="G1651" m="V-3PPIS">ἐλέγχεται</l> <l s="G5259" m="P-">ὑπὸ</l> <l s="G3956" m="A-GPM">πάντων,</l> <l s="G350" m="V-3PPIS">ἀνακρίνεται</l> <l s="G5259" m="P-">ὑπὸ</l> <l s="G3956" m="A-GPM">πάντων,</l> </span> <span class="v-num v-25">25&nbsp;</span><span class="v C114_25" data-id="C114_25"><l m="RA-NPN">⸀τὰ</l> <l s="G2927" m="A-NPN">κρυπτὰ</l> <l m="RA-GSF">τῆς</l> <l s="G2588" m="N-GSF">καρδίας</l> <l s="G846" m="RP-GSM">αὐτοῦ</l> <l s="G5318" m="A-NPN">φανερὰ</l> <l s="G1096" m="V-3PMIS">γίνεται,</l> <l s="G2532" m="C-">καὶ</l> <l m="D-">οὕτως</l> <l m="V-AAPNSM">πεσὼν</l> <l s="G1909" m="P-">ἐπὶ</l> <l s="G4383" m="N-ASN">πρόσωπον</l> <l s="G4352" m="V-3FAIS">προσκυνήσει</l> <l m="RA-DSM">τῷ</l> <l s="G2316" m="N-DSM">θεῷ,</l> <l s="G518" m="V-PAPNSM">ἀπαγγέλλων</l> <l s="G3748" m="C-">ὅτι</l> <l s="G3689" m="D-">⸂Ὄντως</l> <l m="RA-NSM">ὁ</l> <l s="G2316" m="N-NSM">θεὸς⸃</l> <l s="G1722" m="P-">ἐν</l> <l s="G4771" m="RP-DP">ὑμῖν</l> <l s="G1510" m="V-3PAIS">ἐστιν.</l> </span> <span class="v-num v-26">26&nbsp;</span><span class="v C114_26" data-id="C114_26"><l s="G5101" m="RI-NSN">Τί</l> <l s="G3767" m="C-">οὖν</l> <l s="G1510" m="V-3PAIS">ἐστιν,</l> <l s="G80" m="N-VPM">ἀδελφοί;</l> <l s="G3752" m="C-">ὅταν</l> <l s="G4905" m="V-2PMSP">συνέρχησθε,</l> <l s="G1538" m="A-NSM">⸀ἕκαστος</l> <l s="G5568" m="N-ASM">ψαλμὸν</l> <l m="V-3PAIS">ἔχει,</l> <l s="G1322" m="N-ASF">διδαχὴν</l> <l m="V-3PAIS">ἔχει,</l> <l s="G602" m="N-ASF">⸂ἀποκάλυψιν</l> <l m="V-3PAIS">ἔχει,</l> <l s="G1100" m="N-ASF">γλῶσσαν⸃</l> <l m="V-3PAIS">ἔχει,</l> <l s="G2058" m="N-ASF">ἑρμηνείαν</l> <l m="V-3PAIS">ἔχει·</l> <l s="G3956" m="A-NPN">πάντα</l> <l s="G4314" m="P-">πρὸς</l> <l s="G3619" m="N-ASF">οἰκοδομὴν</l> <l s="G1096" m="V-3PMDS">γινέσθω.</l> </span> <span class="v-num v-27">27&nbsp;</span><span class="v C114_27" data-id="C114_27"><l s="G1535" m="C-">εἴτε</l> <l s="G1100" m="N-DSF">γλώσσῃ</l> <l m="RI-NSM">τις</l> <l s="G2980" m="V-3PAIS">λαλεῖ,</l> <l s="G2596" m="P-">κατὰ</l> <l s="G1417" m="A-APM">δύο</l> <l s="G2228" m="C-">ἢ</l> <l m="RA-ASN">τὸ</l> <l s="G4183" m="A-ASNS">πλεῖστον</l> <l m="A-APM">τρεῖς,</l> <l s="G2532" m="C-">καὶ</l> <l s="G303" m="P-">ἀνὰ</l> <l s="G3313" m="N-ASN">μέρος,</l> <l s="G2532" m="C-">καὶ</l> <l s="G1520" m="A-NSM">εἷς</l> <l s="G1329" m="V-3PADS">διερμηνευέτω·</l> </span> <span class="v-num v-28">28&nbsp;</span><span class="v C114_28" data-id="C114_28"><l s="G1437" m="C-">ἐὰν</l> <l s="G1161" m="C-">δὲ</l> <l s="G3361" m="D-">μὴ</l> <l s="G1510" m="V-3PASS">ᾖ</l> <l s="G1328" m="N-NSM">⸀διερμηνευτής,</l> <l s="G4601" m="V-3PADS">σιγάτω</l> <l s="G1722" m="P-">ἐν</l> <l s="G1577" m="N-DSF">ἐκκλησίᾳ,</l> <l s="G1438" m="RP-DSM">ἑαυτῷ</l> <l s="G1161" m="C-">δὲ</l> <l s="G2980" m="V-3PADS">λαλείτω</l> <l s="G2532" m="C-">καὶ</l> <l m="RA-DSM">τῷ</l> <l s="G2316" m="N-DSM">θεῷ.</l> </span> <span class="v-num v-29">29&nbsp;</span><span class="v C114_29" data-id="C114_29"><l s="G4396" m="N-NPM">προφῆται</l> <l s="G1161" m="C-">δὲ</l> <l s="G1417" m="A-NPM">δύο</l> <l s="G2228" m="C-">ἢ</l> <l m="A-NPM">τρεῖς</l> <l s="G2980" m="V-3PADP">λαλείτωσαν,</l> <l s="G2532" m="C-">καὶ</l> <l m="RA-NPM">οἱ</l> <l s="G243" m="A-NPM">ἄλλοι</l> <l s="G1252" m="V-3PADP">διακρινέτωσαν·</l> </span> <span class="v-num v-30">30&nbsp;</span><span class="v C114_30" data-id="C114_30"><l s="G1437" m="C-">ἐὰν</l> <l s="G1161" m="C-">δὲ</l> <l s="G243" m="A-DSM">ἄλλῳ</l> <l s="G601" m="V-3APSS">ἀποκαλυφθῇ</l> <l s="G2521" m="V-PMPDSM">καθημένῳ,</l> <l m="RA-NSM">ὁ</l> <l s="G4413" m="A-NSM">πρῶτος</l> <l s="G4601" m="V-3PADS">σιγάτω.</l> </span> <span class="v-num v-31">31&nbsp;</span><span class="v C114_31" data-id="C114_31"><l s="G1410" m="V-2PMIP">δύνασθε</l> <l s="G1063" m="C-">γὰρ</l> <l s="G2596" m="P-">καθ’</l> <l s="G1520" m="A-ASM">ἕνα</l> <l s="G3956" m="A-NPM">πάντες</l> <l s="G4395" m="V-PAN">προφητεύειν,</l> <l s="G2443" m="C-">ἵνα</l> <l s="G3956" m="A-NPM">πάντες</l> <l s="G3129" m="V-3PASP">μανθάνωσιν</l> <l s="G2532" m="C-">καὶ</l> <l s="G3956" m="A-NPM">πάντες</l> <l s="G3870" m="V-3PPSP">παρακαλῶνται</l> </span> <span class="v-num v-32">32&nbsp;</span><span class="v C114_32" data-id="C114_32"><l s="G2532" m="C-">(καὶ</l> <l s="G4151" m="N-NPN">πνεύματα</l> <l s="G4396" m="N-GPM">προφητῶν</l> <l s="G4396" m="N-DPM">προφήταις</l> <l s="G5293" m="V-3PPIS">ὑποτάσσεται,</l> </span> <span class="v-num v-33">33&nbsp;</span><span class="v C114_33" data-id="C114_33"><l m="D-">οὐ</l> <l s="G1063" m="C-">γάρ</l> <l s="G1510" m="V-3PAIS">ἐστιν</l> <l s="G181" m="N-GSF">ἀκαταστασίας</l> <l m="RA-NSM">ὁ</l> <l s="G2316" m="N-NSM">θεὸς</l> <l s="G235" m="C-">ἀλλὰ</l> <l s="G1515" m="N-GSF">εἰρήνης),</l> <l s="G5613" m="C-">ὡς</l> <l s="G1722" m="P-">ἐν</l> <l s="G3956" m="A-DPF">πάσαις</l> <l m="RA-DPF">ταῖς</l> <l s="G1577" m="N-DPF">ἐκκλησίαις</l> <l m="RA-GPM">τῶν</l> <l s="G40" m="A-GPM">ἁγίων.</l> </span> <span class="v-num v-34">34&nbsp;</span><span class="v C114_34" data-id="C114_34"><l m="RA-NPF">Αἱ</l> <l s="G1135" m="N-NPF">⸀γυναῖκες</l> <l s="G1722" m="P-">ἐν</l> <l m="RA-DPF">ταῖς</l> <l s="G1577" m="N-DPF">ἐκκλησίαις</l> <l s="G4601" m="V-3PADP">σιγάτωσαν,</l> <l m="D-">οὐ</l> <l s="G1063" m="C-">γὰρ</l> <l s="G2010" m="V-3PPIS">⸀ἐπιτρέπεται</l> <l s="G846" m="RP-DPF">αὐταῖς</l> <l s="G2980" m="V-PAN">λαλεῖν·</l> <l s="G235" m="C-">ἀλλὰ</l> <l s="G5293" m="V-3PPDP">⸀ὑποτασσέσθωσαν,</l> <l s="G2531" m="C-">καθὼς</l> <l s="G2532" m="D-">καὶ</l> <l m="RA-NSM">ὁ</l> <l s="G3551" m="N-NSM">νόμος</l> <l s="G3004" m="V-3PAIS">λέγει.</l> </span> <span class="v-num v-35">35&nbsp;</span><span class="v C114_35" data-id="C114_35"><l s="G1487" m="C-">εἰ</l> <l s="G1161" m="C-">δέ</l> <l m="RI-ASN">τι</l> <l s="G3129" m="V-AAN">⸀μαθεῖν</l> <l m="V-3PAIP">θέλουσιν,</l> <l s="G1722" m="P-">ἐν</l> <l s="G3624" m="N-DSM">οἴκῳ</l> <l m="RA-APM">τοὺς</l> <l s="G2398" m="A-APM">ἰδίους</l> <l s="G435" m="N-APM">ἄνδρας</l> <l s="G1905" m="V-3PADP">ἐπερωτάτωσαν,</l> <l s="G150" m="A-NSN">αἰσχρὸν</l> <l s="G1063" m="C-">γάρ</l> <l s="G1510" m="V-3PAIS">ἐστιν</l> <l s="G1135" m="N-DSF">γυναικὶ</l> <l s="G2980" m="V-PAN">⸂λαλεῖν</l> <l s="G1722" m="P-">ἐν</l> <l s="G1577" m="N-DSF">ἐκκλησίᾳ⸃.</l> </span> <span class="v-num v-36">36&nbsp;</span><span class="v C114_36" data-id="C114_36"><l s="G2228" m="C-">ἢ</l> <l s="G575" m="P-">ἀφ’</l> <l s="G4771" m="RP-GP">ὑμῶν</l> <l m="RA-NSM">ὁ</l> <l s="G3056" m="N-NSM">λόγος</l> <l m="RA-GSM">τοῦ</l> <l s="G2316" m="N-GSM">θεοῦ</l> <l s="G1831" m="V-3AAIS">ἐξῆλθεν,</l> <l s="G2228" m="C-">ἢ</l> <l s="G1519" m="P-">εἰς</l> <l s="G4771" m="RP-AP">ὑμᾶς</l> <l s="G3441" m="A-APM">μόνους</l> <l s="G2658" m="V-3AAIS">κατήντησεν;</l> </span> <span class="v-num v-37">37&nbsp;</span><span class="v C114_37" data-id="C114_37"><l s="G1487" m="C-">Εἴ</l> <l m="RI-NSM">τις</l> <l s="G1380" m="V-3PAIS">δοκεῖ</l> <l s="G4396" m="N-NSM">προφήτης</l> <l s="G1510" m="V-PAN">εἶναι</l> <l s="G2228" m="C-">ἢ</l> <l s="G4152" m="A-NSM">πνευματικός,</l> <l s="G1921" m="V-3PADS">ἐπιγινωσκέτω</l> <l m="RR-APN">ἃ</l> <l s="G1125" m="V-1PAIS">γράφω</l> <l s="G4771" m="RP-DP">ὑμῖν</l> <l s="G3748" m="C-">ὅτι</l> <l s="G2962" m="N-GSM">κυρίου</l> <l s="G1510" m="V-3PAIS">⸀ἐστὶν·</l> </span> <span class="v-num v-38">38&nbsp;</span><span class="v C114_38" data-id="C114_38"><l s="G1487" m="C-">εἰ</l> <l s="G1161" m="C-">δέ</l> <l m="RI-NSM">τις</l> <l s="G50" m="V-3PAIS">ἀγνοεῖ,</l> <l s="G50" m="V-3PPIS">⸀ἀγνοεῖται.</l> </span> <span class="v-num v-39">39&nbsp;</span><span class="v C114_39" data-id="C114_39"><l s="G5620" m="C-">ὥστε,</l> <l s="G80" m="N-VPM">ἀδελφοί</l> <l s="G1473" m="RP-GS">⸀μου,</l> <l s="G2206" m="V-2PADP">ζηλοῦτε</l> <l m="RA-ASN">τὸ</l> <l s="G4395" m="V-PAN">προφητεύειν,</l> <l s="G2532" m="C-">καὶ</l> <l m="RA-ASN">τὸ</l> <l s="G2980" m="V-PAN">λαλεῖν</l> <l s="G3361" m="D-">⸂μὴ</l> <l s="G2967" m="V-2PADP">κωλύετε</l> <l s="G1100" m="N-DPF">γλώσσαις⸃·</l> </span> <span class="v-num v-40">40&nbsp;</span><span class="v C114_40" data-id="C114_40"><l s="G3956" m="A-NPN">πάντα</l> <l s="G1161" m="C-">⸀δὲ</l> <l s="G2156" m="D-">εὐσχημόνως</l> <l s="G2532" m="C-">καὶ</l> <l s="G2596" m="P-">κατὰ</l> <l s="G5010" m="N-ASF">τάξιν</l> <l s="G1096" m="V-3PMDS">γινέσθω.</l> </span> </div> </div> <div class="footer"><div class="nav"> <a class="prev" href="C113.html">&lt;</a> <a class="home" href="index.html">=</a> <a class="next" href="C115.html">&gt;</a> </div></div> </body> </html>
products.产品/led-decorative/led-wall-washer/LWW-1.html
micze/maijie
--- title: "LED Wall Washer Light, LED Event Lighting, LWW-1-36P, LWW-1-12P-RGBAW, LWW-1-10P-RGBAWP, LWW-1-18P-Tricolor, LED Wall Wash, Architectural lighting, China LED Wall Washer Suppliers Manufacturers, LED Wall Washer Wholesalers, Wall Washer, DMX Stage Lighting" description: "LWW-1-18P-Tricolor, LWW-1-36P, LED WALL WASHER LIGHT, RGBAW LED WALL WASHER, LWW-1-12P-RGBAW, LWW-1-10P-RGBAWP, DMX LED WALL WASHER" keywords: - LED Wall Washer Light - LED Event Lighting - LWW-1-36P-RGB - LWW-1-18P-Tricolor - LWW-1-12P-RGBA 4in1 LEDs - LWW-1-12P-RGBAW 5in1 LEDs - LWW-1-10P-RGBAWP 6in1 LEDs - High Power LED Wall Washer - LED Wall Wash - Architectural lighting - China LED Wall Washer Suppliers Manufacturers - Wall Washer - DMX Stage Lighting --- <table cellpadding="0" cellspacing="0" height="3384" style="margin-left: 0px;" width="620"> <!-- MSTableType="layout" --> <tr> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td height="3"> </td> </tr> <tr> <td> </td> <td colspan="11" valign="top"> &nbsp; <p> <font face="Arial Black" size="5">LED WALL WASHER LIGHT</font></p> <hr> </td> <td height="109"> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td height="2"> </td> </tr> <tr> <td> </td> <td colspan="11" valign="top"> <p class="MsoNormal"> <font color="#ff6600"><span lang="EN-US" style="background-image: none; background-attachment: scroll; background-repeat: repeat; background-position: 0% 0%"><font face="Arial" size="3"><b>LED WALL WASHER LIGHT</b> </font><font face="Arial" style="font-size: 11pt">is mainly used for decoration and highlight in building, stage, event,&nbsp; frame, garden, restaurant and architectural lighting etc, by offering colorful and magic environment. It can work in independent mode and DMX mode, which can generate various color changing effects, such as flashing, fading, steady, seven color jumping synchronously etc. DMX256 class gray degree dimmer, DMX programmable (thousands of effects available if many lights connected together).</font></span></font></p> </td> <td height="105"> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td height="5"> </td> </tr> <tr> <td> </td> <td colspan="3" rowspan="3" valign="top"> <p class="MsoNormal"> <b><font face="Arial"><span lang="EN-US">MODEL NO</span></font><span style="font-family: Arial">:&nbsp;&nbsp; LWW-1-180<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; LWW-1-360<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; </span><font face="Arial"><span lang="EN-US">LWW-1-36P-RGB<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;LWW-1-30P-RGBAW<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; LWW-1-32P-RGBAW<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;LWW-1-18P-Tricolor<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp; &nbsp;LWW-1-12P-RGBA<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; LWW-1-12P-RGBW<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; LWW-1-15P-RGBA<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; LWW-1-15P-RGBW<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; LWW-1-12P-RGBAW<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; LWW-1-10P-RGBAWP</font></b></span></p> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td height="2"> </td> </tr> <tr> <td> </td> <td>  </td> <td colspan="7" valign="top"> <img alt="" border="0" hspace="0" src="/images/led_wall_washer-1-18Pand36p.gif" style="filter: ; width: 300px; height: 225px"></td> <td height="225"> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td height="1"> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td height="10"> </td> </tr> <tr> <td> </td> <td> </td> <td>  </td> <td>  </td> <td>  </td> <td>  </td> <td>  </td> <td align="middle"> <font face="Arial Black">PATENT</font></td> <td>  </td> <td>  </td> <td> </td> <td> </td> <td height="35"> </td> </tr> <tr> <td> </td> <td colspan="3" rowspan="4" valign="top"> <img alt="" border="0" height="240" hspace="0" src="/images/led_wall_washer_back.jpg" style="filter: ; width: 300px; height: 240px" width="300"></td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td height="13"> </td> </tr> <tr> <td> </td> <td>  </td> <td>  </td> <td colspan="3" valign="top"> <img alt="" border="0" height="100" hspace="0" src="/images/led_wall_washer_add.jpg" style="filter: ; width: 224px; height: 100px" width="224"></td> <td>  </td> <td> </td> <td> </td> <td height="100"> </td> </tr> <tr> <td> </td> <td>  </td> <td>  </td> <td>  </td> <td>  </td> <td>  </td> <td>  </td> <td> </td> <td> </td> <td height="28"> </td> </tr> <tr> <td> </td> <td>  </td> <td>  </td> <td colspan="3" valign="top"> <img alt="" border="0" height="100" hspace="0" src="/images/led_wall_washer_program.jpg" style="filter: ; width: 224px; height: 100px" width="224"></td> <td>  </td> <td> </td> <td> </td> <td height="100"> </td> </tr> <tr> <td> </td> <td> </td> <td>  </td> <td>  </td> <td>  </td> <td>  </td> <td>  </td> <td>  </td> <td>  </td> <td>  </td> <td> </td> <td> </td> <td height="40"> </td> </tr> <tr> <td> </td> <td valign="top" colspan="3"><font face="Arial" size="3"><b>A.Structure and Specification </b><br> Size:L343*W152*H214mm <br> Material of Shell: Aluminum alloy <br> Weight: 5.0kgs ± 5% <br> Rotary angle: <br> Vertical turn( -45&ordm; ~ +90&ordm;) <br> Horizontal turn ( -90&ordm; ~ +90&ordm;)<br> <br> <b>B .Technical Parameters </b><br> Input Voltage: 100V-256V AC <br> Protection Rating: IP65 <br> Operating Temperature: -20 ℃~ 40 ℃<br> <br> <b>C .Function </b><br> Seven colors static, seven colors change, seven color fade, seven color strobe<br> <br> <b>D .Control mode </b><br> 1.Independent mode <br> 2.Master/Slave mode <br> 3.DMX mode <br> 4.RGB(A/W/P) Dimming</font></td> <td>  </td> <td colspan="7" valign="top"> <img alt="" border="0" height="400" hspace="0" src="/images/led_wall_washer_demo1.jpg" style="filter: ; " width="300"></td> <td height="400"> </td> </tr> <tr> <td> </td> <td> </td> <td>  </td> <td>  </td> <td>  </td> <td>  </td> <td>  </td> <td>  </td> <td>  </td> <td>  </td> <td> </td> <td> </td> <td height="21"> </td> </tr> <tr> <td> </td> <td colspan="10" valign="top"> <table x:str border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse; width: 609px" id="table1"> <colgroup> <col width="120" style="width: 90pt"> <col width="57" style="width: 43pt"><col width="75" style="width: 56pt"> <col width="114" style="width: 86pt"> <col width="82" style="width: 62pt"><col width="67" style="width: 50pt"> <col width="77" style="width: 58pt"> </colgroup> <tr height="38" style="height: 28.5pt"> <td height="38" style="height: 28.5pt; width: 127px; font-size: 9.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #339966"> <b>Model No.</b></td> <td style="width: 47px; font-size: 9.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: .5pt solid white; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #339966"> <b>LED Quantity</b></td> <td style="width: 77px; font-size: 9.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: .5pt solid white; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #339966"> <b>LED Type</b></td> <td style="width: 116px; font-size: 9.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: .5pt solid white; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #339966"> <b>Color</b></td> <td style="width: 77px; font-size: 9.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: .5pt solid white; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #339966"> <b>Power Consumption</b></td> <td style="width: 70px; font-size: 9.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: .5pt solid white; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #339966"> <b>Beam Angle</b></td> <td style="width: 73px; font-size: 9.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: .5pt solid white; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #339966"> <b>Project Distance</b></td> </tr> <tr height="20" style="height: 15.0pt"> <td height="20" style="height: 15.0pt; width: 127px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: .5pt solid white; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #33CCCC"> LWW-1-180</td> <td style="width: 47px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #33CCCC" x:num> 180</td> <td style="width: 77px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #33CCCC"> &Oslash;5mm</td> <td style="width: 116px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #33CCCC"> R-60, G-60,B-60</td> <td style="width: 77px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #33CCCC"> 17Watts</td> <td style="width: 70px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #33CCCC"> 15&ordm;~20&ordm;</td> <td style="width: 73px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #33CCCC"> 5M to8M</td> </tr> <tr height="20" style="height: 15.0pt"> <td height="20" style="height: 15.0pt; width: 127px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: .5pt solid white; border-right: .5pt solid white; border-top: medium none; border-bottom: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #33CCCC"> LWW-1-360</td> <td style="width: 47px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #33CCCC" x:num> 360</td> <td style="width: 77px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #33CCCC"> &Oslash;5mm</td> <td style="width: 116px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #33CCCC"> R-120, G-120, B-120</td> <td style="width: 77px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #33CCCC"> 27Watts</td> <td style="width: 70px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #33CCCC"> 15&ordm;~20&ordm;</td> <td style="width: 73px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #33CCCC"> 7M to 15M</td> </tr> <tr height="20" style="height: 15.0pt"> <td height="20" style="height: 15.0pt; width: 127px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: .5pt solid white; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FFCC99"> LWW-1-36P-RGB</td> <td style="width: 47px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FFCC99" x:num> 36</td> <td style="width: 77px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FFCC99"> 1W LED</td> <td style="width: 116px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FFCC99"> R-12, G-12,B-12</td> <td style="width: 77px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FFCC99"> 36Watts</td> <td style="width: 70px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FFCC99"> 15&ordm; 30&ordm; 45&ordm;</td> <td style="width: 73px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FFCC99"> 8M to 20M</td> </tr> <tr height="20" style="height: 15.0pt"> <td height="20" style="height: 15.0pt; width: 127px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: .5pt solid white; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FFCC99"> LWW-1-30P-RGBAW</td> <td style="width: 47px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FFCC99" x:num> 30</td> <td style="width: 77px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FFCC99"> 1W LED</td> <td style="width: 116px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FFCC99"> R-6,G-6,B-6,A-6,W-6</td> <td style="width: 77px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FFCC99"> 32Watts</td> <td style="width: 70px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FFCC99"> 15&ordm; 30&ordm; 45&ordm;</td> <td style="width: 73px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FFCC99"> 6M to 15M</td> </tr> <tr height="20" style="height: 15.0pt"> <td height="20" style="height: 15.0pt; width: 127px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: .5pt solid white; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FFCC99"> LWW-1-32P-RGBAW</td> <td style="width: 47px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FFCC99" x:num> 32</td> <td style="width: 77px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FFCC99"> 1W LED</td> <td style="width: 116px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FFCC99"> R-8,G-6,B-6,A-6,W-6</td> <td style="width: 77px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FFCC99"> 34Watts</td> <td style="width: 70px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FFCC99"> 15&ordm; 30&ordm; 45&ordm;</td> <td style="width: 73px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FFCC99"> 6M to 15M</td> </tr> <tr height="20" style="height: 15.0pt"> <td height="20" style="height: 15.0pt; width: 127px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: .5pt solid white; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #CCCCFF"> LWW-1-18P-TriColor</td> <td style="width: 47px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #CCCCFF" x:num> 18</td> <td style="width: 77px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #CCCCFF"> 3W 3IN1 LED</td> <td style="width: 116px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #CCCCFF"> RGB-18</td> <td style="width: 77px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #CCCCFF"> 55Watts</td> <td style="width: 70px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #CCCCFF"> 25&ordm; 45&ordm;</td> <td style="width: 73px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #CCCCFF"> 25M to 30M</td> </tr> <tr height="20" style="height: 15.0pt"> <td height="20" style="height: 15.0pt; width: 127px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: .5pt solid white; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FF99CC"> LWW-1-12P-RGBA</td> <td style="width: 47px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FF99CC" x:num> 12</td> <td style="width: 77px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FF99CC"> 4W 4IN1 LED</td> <td style="width: 116px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FF99CC"> RGBA-12</td> <td style="width: 77px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FF99CC"> 45Watts</td> <td style="width: 70px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FF99CC"> 25&ordm;</td> <td style="width: 73px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FF99CC"> 20M</td> </tr> <tr height="20" style="height: 15.0pt"> <td height="20" style="height: 15.0pt; width: 127px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: .5pt solid white; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FF99CC"> LWW-1-12P-RGBW</td> <td style="width: 47px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FF99CC" x:num> 12</td> <td style="width: 77px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FF99CC"> 4W 4IN1 LED</td> <td style="width: 116px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: .5pt solid white; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FF99CC"> RGBW-12</td> <td style="width: 77px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FF99CC"> 45Watts</td> <td style="width: 70px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FF99CC"> 25&ordm;</td> <td style="width: 73px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: .5pt solid white; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FF99CC"> 20M</td> </tr> <tr height="20" style="height: 15.0pt"> <td height="20" style="height: 15.0pt; width: 127px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: .5pt solid white; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FF99CC"> LWW-1-15P-RGBA</td> <td style="width: 47px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FF99CC" x:num> 15</td> <td style="width: 77px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FF99CC"> 4W 4IN1 LED</td> <td style="width: 116px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FF99CC"> RGBA-15</td> <td style="width: 77px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FF99CC"> 58Watts</td> <td style="width: 70px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FF99CC"> 25&ordm;</td> <td style="width: 73px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: medium none; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FF99CC"> 20M</td> </tr> <tr height="20" style="height: 15.0pt"> <td height="20" style="height: 15.0pt; width: 127px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: .5pt solid white; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FF99CC"> LWW-1-15P-RGBW</td> <td style="width: 47px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FF99CC" x:num> 15</td> <td style="width: 77px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FF99CC"> 4W 4IN1 LED</td> <td style="width: 116px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: .5pt solid white; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FF99CC"> RGBW-15</td> <td style="width: 77px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FF99CC"> 58Watts</td> <td style="width: 70px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FF99CC"> 25&ordm;</td> <td style="width: 73px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: .5pt solid white; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #FF99CC"> 20M</td> </tr> <tr height="20" style="height: 15.0pt"> <td height="20" style="height: 15.0pt; width: 127px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: .5pt solid white; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #00FF00"> LWW-1-12P-RGBAW</td> <td style="width: 47px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #00FF00"> 12</td> <td style="width: 77px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #00FF00"> 5W 5IN1 LED</td> <td style="width: 116px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #00FF00"> RGBAW-12</td> <td style="width: 77px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #00FF00"> 58Watts</td> <td style="width: 70px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #00FF00"> 25&ordm;</td> <td style="width: 73px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #00FF00"> 20M</td> </tr> <tr height="20" style="height: 15.0pt"> <td height="20" style="height: 15.0pt; width: 127px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: .5pt solid white; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #99CC00"> LWW-1-10P-RGBAWP</td> <td style="width: 47px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #99CC00" x:num> 10</td> <td style="width: 77px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #99CC00"> 6W 6IN1 LED</td> <td style="width: 116px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #99CC00"> RGBAWP-10</td> <td style="width: 77px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #99CC00"> 58Watts</td> <td style="width: 70px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #99CC00"> 25&ordm;</td> <td style="width: 73px; font-size: 8.0pt; font-family: Arial, sans-serif; text-align: center; vertical-align: middle; white-space: normal; color: windowtext; font-weight: 400; font-style: normal; text-decoration: none; border-left: medium none; border-right: .5pt solid white; border-top: medium none; border-bottom: .5pt solid white; padding-left: 1px; padding-right: 1px; padding-top: 1px; background: #99CC00"> 20M</td> </tr> </table> </td> <td> </td> <td height="280"> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td></td> <td height="17"></td> </tr> <tr> <td></td> <td></td> <td valign="top" colspan="8"> <img border="0" src="/images/led_wall_washer_demo2.jpg"></td> <td></td> <td></td> <td height="800"></td> </tr> <tr> <td></td> <td></td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td></td> <td></td> <td height="27"></td> </tr> <tr> <td></td> <td></td> <td colspan="8" valign="top"> <img border="0" src="/images/18P_vs_36P_new_arrival.jpg" width="600" height="661"></td> <td></td> <td></td> <td height="661"></td> </tr> <tr> <td></td> <td></td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td></td> <td></td> <td height="28"></td> </tr> <tr> <td></td> <td></td> <td> </td> <td colspan="5" valign="top"> <embed allowfullscreen="true" allowscriptaccess="always" height="344" src="http://www.youtube.com/v/NCwiQvcsGzU&amp;hl=zh_CN&amp;fs=1" type="application/x-shockwave-flash" width="425"></td> <td> </td> <td> </td> <td></td> <td></td> <td height="344"></td> </tr> <tr> <td width="5"></td> <td width="5"></td> <td width="85"> </td> <td width="210"> </td> <td width="10"> </td> <td width="36"> </td> <td width="56"> </td> <td width="113"> </td> <td width="55"> </td> <td width="35"> </td> <td width="4"></td> <td width="1"></td> <td width="5" height="28"></td> </tr> </table>
tests/sprites_test.html
Archon-/Spook
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Cycles Tests - test</title> </head> <body> <button id="start" onclick="javascript:game.play();">Start</button> <button id="stop" onclick="javascript:game.stop();">Stop</button> <button id="pause" onclick="javascript:game.pause();">Pause</button> <script src="../src/spook.js"></script> <script> var game = new Spook('game', 800, 480); var img2; var i = 0; game.preload(function () { game.load('img', 'http://upload.wikimedia.org/wikipedia/commons/c/c8/USNS_Big_Horn_T-AO-198.jpg'); game.load('dfg', '../assets/image.jpg'); img2 = game.load('img2', '../assets/image2.jpg'); // game.load('fdg', 'http://upload.wikimedia.org/wikipedia/commons/3/3f/Fronalpstock_big.jpg'); // game.load('gdsgfg', 'http://upload.wikimedia.org/wikipedia/commons/6/6b/Big_Sur_June_2008.jpg'); game.load('person', '../assets/walk-cycle.png'); }); game.loading(function(isLoaded, counter) { console.log('Donaloaded: ' + counter + '%'); var ctx = game.context; ctx.fillStyle = "rgb(255,255,255)"; ctx.fillRect(0, 0, 800, 480); ctx.fillStyle = '#f00'; ctx.font = 'italic bold 30px sans-serif'; ctx.textBaseline = 'bottom'; ctx.fillText('Downloaded ' + counter + '%!', 50, 100); }); game.ready(function () { console.log('Now its ready!'); console.log('Gaaaame!'); console.log('creating sprite'); var spr = new game.sprite({ name: 'Spritic', width: 48, height: 92, image: game.getAsset('person') }); //spr.animate(); console.log('Sprite\'s name is: ' + spr.name + 'w: ' + spr.width + ', h: ' + spr.height); console.log(spr.image); spr.animate(); game.play(); }); game.willUpdate(function () { //console.log('willUpdate'); }); game.update(function () { //console.log('update'); //i++; }); game.didUpdate(function () { //console.log('didUpdate'); }); game.willDraw(function () { //console.log('willDraw'); }); game.draw(function () { game.clear(); //console.log('draw'); // game.context.fillStyle = "rgb(148,5,205)"; // game.context.fillRect(i, i, 50, 50); }); game.didDraw(function () { //console.log('didDraw'); }); </script> </body> </html>
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/c0895d4457417db357bc665e15016977008e8f04cb16a59648e1d28a48da8987.html
simonmysun/praxis
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>18 --> 19</title> <link href="./../../assets/style.css" rel="stylesheet"> </head> <body> <h2>You have to be fast</h2> <a href="./52860ea294251b9e91f0e8f34c7487cdc0482e557c21f4b2515526157fc0e247.html">Teleport</a> <hr> <a href="./../../about.md">About</a> (Spoilers! ) <script src="./../../assets/md5.js"></script> <script> window.currentLevel = 7; </script> <script src="./../../assets/script.js"></script> </body> </html>
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/e7e2894e9c9b827c7c03788394bc619b874505f10f81e1e6d85849a6260e3cf3.html
simonmysun/praxis
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>18 --> 19</title> <link href="./../../assets/style.css" rel="stylesheet"> </head> <body> <h2>You have to be fast</h2> <a href="./1c56457d3a4a5321bfb57c6fd8a6c91c985ae306881dbab8ebd333950280da81.html">Teleport</a> <hr> <a href="./../../about.md">About</a> (Spoilers! ) <script src="./../../assets/md5.js"></script> <script> window.currentLevel = 7; </script> <script src="./../../assets/script.js"></script> </body> </html>
coverage/-Library-Ruby-Gems-1_8-gems-treetop-1_2_5-lib-treetop-runtime-interval_skip_list-interval_skip_list_rb.html
starapor/slippers
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html lang='en' xml:lang='en' xmlns='http://www.w3.org/1999/xhtml'><head><title>/Library/Ruby/Gems/1.8/gems/treetop-1.2.5/lib/treetop/runtime/interval_skip_list/interval_skip_list.rb - C0 code coverage information</title> <style type='text/css'>body { background-color: rgb(240, 240, 245); }</style> <style type='text/css'>span.cross-ref-title { font-size: 140%; } span.cross-ref a { text-decoration: none; } span.cross-ref { background-color:#f3f7fa; border: 1px dashed #333; margin: 1em; padding: 0.5em; overflow: hidden; } a.crossref-toggle { text-decoration: none; } span.marked0 { background-color: rgb(185, 210, 200); display: block; } span.marked1 { background-color: rgb(190, 215, 205); display: block; } span.inferred0 { background-color: rgb(175, 200, 200); display: block; } span.inferred1 { background-color: rgb(180, 205, 205); display: block; } span.uncovered0 { background-color: rgb(225, 110, 110); display: block; } span.uncovered1 { background-color: rgb(235, 120, 120); display: block; } span.overview { border-bottom: 8px solid black; } div.overview { border-bottom: 8px solid black; } body { font-family: verdana, arial, helvetica; } div.footer { font-size: 68%; margin-top: 1.5em; } h1, h2, h3, h4, h5, h6 { margin-bottom: 0.5em; } h5 { margin-top: 0.5em; } .hidden { display: none; } div.separator { height: 10px; } /* Commented out for better readability, esp. on IE */ /* table tr td, table tr th { font-size: 68%; } td.value table tr td { font-size: 11px; } */ table.percent_graph { height: 12px; border: #808080 1px solid; empty-cells: show; } table.percent_graph td.covered { height: 10px; background: #00f000; } table.percent_graph td.uncovered { height: 10px; background: #e00000; } table.percent_graph td.NA { height: 10px; background: #eaeaea; } table.report { border-collapse: collapse; width: 100%; } table.report td.heading { background: #dcecff; border: #d0d0d0 1px solid; font-weight: bold; text-align: center; } table.report td.heading:hover { background: #c0ffc0; } table.report td.text { border: #d0d0d0 1px solid; } table.report td.value, table.report td.lines_total, table.report td.lines_code { text-align: right; border: #d0d0d0 1px solid; } table.report tr.light { background-color: rgb(240, 240, 245); } table.report tr.dark { background-color: rgb(230, 230, 235); } </style> <script type='text/javascript'> // <![CDATA[ function toggleCode( id ) { if ( document.getElementById ) elem = document.getElementById( id ); else if ( document.all ) elem = eval( "document.all." + id ); else return false; elemStyle = elem.style; if ( elemStyle.display != "block" ) { elemStyle.display = "block" } else { elemStyle.display = "none" } return true; } // Make cross-references hidden by default document.writeln( "<style type=\"text/css\">span.cross-ref { display: none }</style>" ) // ]]> </script> <style type='text/css'>span.run0 { background-color: rgb(178, 204, 255); display: block; } span.run1 { background-color: rgb(178, 206, 255); display: block; } span.run2 { background-color: rgb(178, 209, 255); display: block; } span.run3 { background-color: rgb(178, 211, 255); display: block; } span.run4 { background-color: rgb(178, 214, 255); display: block; } span.run5 { background-color: rgb(178, 218, 255); display: block; } span.run6 { background-color: rgb(178, 220, 255); display: block; } span.run7 { background-color: rgb(178, 223, 255); display: block; } span.run8 { background-color: rgb(178, 225, 255); display: block; } span.run9 { background-color: rgb(178, 228, 255); display: block; } span.run10 { background-color: rgb(178, 232, 255); display: block; } span.run11 { background-color: rgb(178, 234, 255); display: block; } span.run12 { background-color: rgb(178, 237, 255); display: block; } span.run13 { background-color: rgb(178, 239, 255); display: block; } span.run14 { background-color: rgb(178, 242, 255); display: block; } span.run15 { background-color: rgb(178, 246, 255); display: block; } span.run16 { background-color: rgb(178, 248, 255); display: block; } span.run17 { background-color: rgb(178, 251, 255); display: block; } span.run18 { background-color: rgb(178, 253, 255); display: block; } span.run19 { background-color: rgb(178, 255, 253); display: block; } span.run20 { background-color: rgb(178, 255, 249); display: block; } span.run21 { background-color: rgb(178, 255, 247); display: block; } span.run22 { background-color: rgb(178, 255, 244); display: block; } span.run23 { background-color: rgb(178, 255, 242); display: block; } span.run24 { background-color: rgb(178, 255, 239); display: block; } span.run25 { background-color: rgb(178, 255, 235); display: block; } span.run26 { background-color: rgb(178, 255, 233); display: block; } span.run27 { background-color: rgb(178, 255, 230); display: block; } span.run28 { background-color: rgb(178, 255, 228); display: block; } span.run29 { background-color: rgb(178, 255, 225); display: block; } span.run30 { background-color: rgb(178, 255, 221); display: block; } span.run31 { background-color: rgb(178, 255, 219); display: block; } span.run32 { background-color: rgb(178, 255, 216); display: block; } span.run33 { background-color: rgb(178, 255, 214); display: block; } span.run34 { background-color: rgb(178, 255, 211); display: block; } span.run35 { background-color: rgb(178, 255, 207); display: block; } span.run36 { background-color: rgb(178, 255, 205); display: block; } span.run37 { background-color: rgb(178, 255, 202); display: block; } span.run38 { background-color: rgb(178, 255, 200); display: block; } span.run39 { background-color: rgb(178, 255, 197); display: block; } span.run40 { background-color: rgb(178, 255, 193); display: block; } span.run41 { background-color: rgb(178, 255, 191); display: block; } span.run42 { background-color: rgb(178, 255, 188); display: block; } span.run43 { background-color: rgb(178, 255, 186); display: block; } span.run44 { background-color: rgb(178, 255, 183); display: block; } span.run45 { background-color: rgb(178, 255, 179); display: block; } span.run46 { background-color: rgb(179, 255, 178); display: block; } span.run47 { background-color: rgb(182, 255, 178); display: block; } span.run48 { background-color: rgb(184, 255, 178); display: block; } span.run49 { background-color: rgb(187, 255, 178); display: block; } span.run50 { background-color: rgb(191, 255, 178); display: block; } span.run51 { background-color: rgb(193, 255, 178); display: block; } span.run52 { background-color: rgb(196, 255, 178); display: block; } span.run53 { background-color: rgb(198, 255, 178); display: block; } span.run54 { background-color: rgb(201, 255, 178); display: block; } span.run55 { background-color: rgb(205, 255, 178); display: block; } span.run56 { background-color: rgb(207, 255, 178); display: block; } span.run57 { background-color: rgb(210, 255, 178); display: block; } span.run58 { background-color: rgb(212, 255, 178); display: block; } span.run59 { background-color: rgb(215, 255, 178); display: block; } span.run60 { background-color: rgb(219, 255, 178); display: block; } span.run61 { background-color: rgb(221, 255, 178); display: block; } span.run62 { background-color: rgb(224, 255, 178); display: block; } span.run63 { background-color: rgb(226, 255, 178); display: block; } span.run64 { background-color: rgb(229, 255, 178); display: block; } span.run65 { background-color: rgb(233, 255, 178); display: block; } span.run66 { background-color: rgb(235, 255, 178); display: block; } span.run67 { background-color: rgb(238, 255, 178); display: block; } span.run68 { background-color: rgb(240, 255, 178); display: block; } span.run69 { background-color: rgb(243, 255, 178); display: block; } span.run70 { background-color: rgb(247, 255, 178); display: block; } span.run71 { background-color: rgb(249, 255, 178); display: block; } span.run72 { background-color: rgb(252, 255, 178); display: block; } span.run73 { background-color: rgb(255, 255, 178); display: block; } span.run74 { background-color: rgb(255, 252, 178); display: block; } span.run75 { background-color: rgb(255, 248, 178); display: block; } span.run76 { background-color: rgb(255, 246, 178); display: block; } span.run77 { background-color: rgb(255, 243, 178); display: block; } span.run78 { background-color: rgb(255, 240, 178); display: block; } span.run79 { background-color: rgb(255, 238, 178); display: block; } span.run80 { background-color: rgb(255, 234, 178); display: block; } span.run81 { background-color: rgb(255, 232, 178); display: block; } span.run82 { background-color: rgb(255, 229, 178); display: block; } span.run83 { background-color: rgb(255, 226, 178); display: block; } span.run84 { background-color: rgb(255, 224, 178); display: block; } span.run85 { background-color: rgb(255, 220, 178); display: block; } span.run86 { background-color: rgb(255, 218, 178); display: block; } span.run87 { background-color: rgb(255, 215, 178); display: block; } span.run88 { background-color: rgb(255, 212, 178); display: block; } span.run89 { background-color: rgb(255, 210, 178); display: block; } span.run90 { background-color: rgb(255, 206, 178); display: block; } span.run91 { background-color: rgb(255, 204, 178); display: block; } span.run92 { background-color: rgb(255, 201, 178); display: block; } span.run93 { background-color: rgb(255, 198, 178); display: block; } span.run94 { background-color: rgb(255, 196, 178); display: block; } span.run95 { background-color: rgb(255, 192, 178); display: block; } span.run96 { background-color: rgb(255, 189, 178); display: block; } span.run97 { background-color: rgb(255, 187, 178); display: block; } span.run98 { background-color: rgb(255, 184, 178); display: block; } span.run99 { background-color: rgb(255, 182, 178); display: block; } span.run100 { background-color: rgb(255, 178, 178); display: block; } </style> </head> <body><h3>C0 code coverage information</h3> <p>Generated on Wed Sep 30 08:18:24 +0100 2009 with <a href='http://eigenclass.org/hiki/rcov'>rcov 0.8.1.2</a> </p> <hr/> <pre><span class='marked0'>Code reported as executed by Ruby looks like this... </span><span class='marked1'>and this: this line is also marked as covered. </span><span class='inferred0'>Lines considered as run by rcov, but not reported by Ruby, look like this, </span><span class='inferred1'>and this: these lines were inferred by rcov (using simple heuristics). </span><span class='uncovered0'>Finally, here&apos;s a line marked as not executed. </span></pre> <table class='report'><thead><tr><td class='heading'>Name</td> <td class='heading'>Total lines</td> <td class='heading'>Lines of code</td> <td class='heading'>Total coverage</td> <td class='heading'>Code coverage</td> </tr> </thead> <tbody><tr class='light'><td><a href='-Library-Ruby-Gems-1_8-gems-treetop-1_2_5-lib-treetop-runtime-interval_skip_list-interval_skip_list_rb.html'>/Library/Ruby/Gems/1.8/gems/treetop-1.2.5/lib/treetop/runtime/interval_skip_list/interval_skip_list.rb</a> </td> <td class='lines_total'><tt>200</tt> </td> <td class='lines_code'><tt>168</tt> </td> <td><table cellspacing='0' cellpadding='0' align='right'><tr><td><tt class='coverage_total'>24.5%</tt> &nbsp;</td> <td><table cellspacing='0' class='percent_graph' cellpadding='0' width='100'><tr><td class='covered' width='25'/> <td class='uncovered' width='75'/> </tr> </table> </td> </tr> </table> </td> <td><table cellspacing='0' cellpadding='0' align='right'><tr><td><tt class='coverage_code'>15.5%</tt> &nbsp;</td> <td><table cellspacing='0' class='percent_graph' cellpadding='0' width='100'><tr><td class='covered' width='15'/> <td class='uncovered' width='85'/> </tr> </table> </td> </tr> </table> </td> </tr> </tbody> </table> <pre><span class="marked1"><a name="line1"></a> 1 class IntervalSkipList </span><span class="marked0"><a name="line2"></a> 2 attr_reader :probability </span><span class="inferred1"><a name="line3"></a> 3 </span><span class="marked0"><a name="line4"></a> 4 def initialize </span><span class="uncovered1"><a name="line5"></a> 5 @head = HeadNode.new(max_height) </span><span class="uncovered0"><a name="line6"></a> 6 @ranges = {} </span><span class="uncovered1"><a name="line7"></a> 7 @probability = 0.5 </span><span class="uncovered0"><a name="line8"></a> 8 end </span><span class="inferred1"><a name="line9"></a> 9 </span><span class="marked0"><a name="line10"></a> 10 def max_height </span><span class="uncovered1"><a name="line11"></a> 11 3 </span><span class="uncovered0"><a name="line12"></a> 12 end </span><span class="inferred1"><a name="line13"></a> 13 </span><span class="marked0"><a name="line14"></a> 14 def empty? </span><span class="uncovered1"><a name="line15"></a> 15 head.forward[0].nil? </span><span class="uncovered0"><a name="line16"></a> 16 end </span><span class="inferred1"><a name="line17"></a> 17 </span><span class="marked0"><a name="line18"></a> 18 def expire(range, length_change) </span><span class="uncovered1"><a name="line19"></a> 19 expired_markers, first_node_after_range = overlapping(range) </span><span class="uncovered0"><a name="line20"></a> 20 expired_markers.each { |marker| delete(marker) } </span><span class="uncovered1"><a name="line21"></a> 21 first_node_after_range.propagate_length_change(length_change) </span><span class="uncovered0"><a name="line22"></a> 22 end </span><span class="inferred1"><a name="line23"></a> 23 </span><span class="marked0"><a name="line24"></a> 24 def overlapping(range) </span><span class="uncovered1"><a name="line25"></a> 25 markers, first_node = containing_with_node(range.first) </span><span class="uncovered0"><a name="line26"></a> 26 </span><span class="uncovered1"><a name="line27"></a> 27 cur_node = first_node </span><span class="uncovered0"><a name="line28"></a> 28 begin </span><span class="uncovered1"><a name="line29"></a> 29 markers.concat(cur_node.forward_markers.flatten) </span><span class="uncovered0"><a name="line30"></a> 30 cur_node = cur_node.forward[0] </span><span class="uncovered1"><a name="line31"></a> 31 end while cur_node.key &lt; range.last </span><span class="uncovered0"><a name="line32"></a> 32 </span><span class="uncovered1"><a name="line33"></a> 33 return markers.uniq, cur_node </span><span class="uncovered0"><a name="line34"></a> 34 end </span><span class="inferred1"><a name="line35"></a> 35 </span><span class="marked0"><a name="line36"></a> 36 def containing(n) </span><span class="uncovered1"><a name="line37"></a> 37 containing_with_node(n).first </span><span class="uncovered0"><a name="line38"></a> 38 end </span><span class="inferred1"><a name="line39"></a> 39 </span><span class="marked0"><a name="line40"></a> 40 def insert(range, marker) </span><span class="uncovered1"><a name="line41"></a> 41 ranges[marker] = range </span><span class="uncovered0"><a name="line42"></a> 42 first_node = insert_node(range.first) </span><span class="uncovered1"><a name="line43"></a> 43 first_node.endpoint_of.push(marker) </span><span class="uncovered0"><a name="line44"></a> 44 last_node = insert_node(range.last) </span><span class="uncovered1"><a name="line45"></a> 45 last_node.endpoint_of.push(marker) </span><span class="uncovered0"><a name="line46"></a> 46 </span><span class="uncovered1"><a name="line47"></a> 47 cur_node = first_node </span><span class="uncovered0"><a name="line48"></a> 48 cur_level = first_node.top_level </span><span class="uncovered1"><a name="line49"></a> 49 while next_node_at_level_inside_range?(cur_node, cur_level, range) </span><span class="uncovered0"><a name="line50"></a> 50 while can_ascend_from?(cur_node, cur_level) &amp;&amp; next_node_at_level_inside_range?(cur_node, cur_level + 1, range) </span><span class="uncovered1"><a name="line51"></a> 51 cur_level += 1 </span><span class="uncovered0"><a name="line52"></a> 52 end </span><span class="uncovered1"><a name="line53"></a> 53 cur_node = mark_forward_path_at_level(cur_node, cur_level, marker) </span><span class="uncovered0"><a name="line54"></a> 54 end </span><span class="uncovered1"><a name="line55"></a> 55 </span><span class="uncovered0"><a name="line56"></a> 56 while node_inside_range?(cur_node, range) </span><span class="uncovered1"><a name="line57"></a> 57 while can_descend_from?(cur_level) &amp;&amp; next_node_at_level_outside_range?(cur_node, cur_level, range) </span><span class="uncovered0"><a name="line58"></a> 58 cur_level -= 1 </span><span class="uncovered1"><a name="line59"></a> 59 end </span><span class="uncovered0"><a name="line60"></a> 60 cur_node = mark_forward_path_at_level(cur_node, cur_level, marker) </span><span class="uncovered1"><a name="line61"></a> 61 end </span><span class="uncovered0"><a name="line62"></a> 62 end </span><span class="inferred1"><a name="line63"></a> 63 </span><span class="marked0"><a name="line64"></a> 64 def delete(marker) </span><span class="uncovered1"><a name="line65"></a> 65 range = ranges[marker] </span><span class="uncovered0"><a name="line66"></a> 66 path_to_first_node = make_path </span><span class="uncovered1"><a name="line67"></a> 67 first_node = find(range.first, path_to_first_node) </span><span class="uncovered0"><a name="line68"></a> 68 </span><span class="uncovered1"><a name="line69"></a> 69 cur_node = first_node </span><span class="uncovered0"><a name="line70"></a> 70 cur_level = first_node.top_level </span><span class="uncovered1"><a name="line71"></a> 71 while next_node_at_level_inside_range?(cur_node, cur_level, range) </span><span class="uncovered0"><a name="line72"></a> 72 while can_ascend_from?(cur_node, cur_level) &amp;&amp; next_node_at_level_inside_range?(cur_node, cur_level + 1, range) </span><span class="uncovered1"><a name="line73"></a> 73 cur_level += 1 </span><span class="uncovered0"><a name="line74"></a> 74 end </span><span class="uncovered1"><a name="line75"></a> 75 cur_node = unmark_forward_path_at_level(cur_node, cur_level, marker) </span><span class="uncovered0"><a name="line76"></a> 76 end </span><span class="uncovered1"><a name="line77"></a> 77 </span><span class="uncovered0"><a name="line78"></a> 78 while node_inside_range?(cur_node, range) </span><span class="uncovered1"><a name="line79"></a> 79 while can_descend_from?(cur_level) &amp;&amp; next_node_at_level_outside_range?(cur_node, cur_level, range) </span><span class="uncovered0"><a name="line80"></a> 80 cur_level -= 1 </span><span class="uncovered1"><a name="line81"></a> 81 end </span><span class="uncovered0"><a name="line82"></a> 82 cur_node = unmark_forward_path_at_level(cur_node, cur_level, marker) </span><span class="uncovered1"><a name="line83"></a> 83 end </span><span class="uncovered0"><a name="line84"></a> 84 last_node = cur_node </span><span class="uncovered1"><a name="line85"></a> 85 </span><span class="uncovered0"><a name="line86"></a> 86 first_node.endpoint_of.delete(marker) </span><span class="uncovered1"><a name="line87"></a> 87 if first_node.endpoint_of.empty? </span><span class="uncovered0"><a name="line88"></a> 88 first_node.delete(path_to_first_node) </span><span class="uncovered1"><a name="line89"></a> 89 end </span><span class="uncovered0"><a name="line90"></a> 90 </span><span class="uncovered1"><a name="line91"></a> 91 last_node.endpoint_of.delete(marker) </span><span class="uncovered0"><a name="line92"></a> 92 if last_node.endpoint_of.empty? </span><span class="uncovered1"><a name="line93"></a> 93 path_to_last_node = make_path </span><span class="uncovered0"><a name="line94"></a> 94 find(range.last, path_to_last_node) </span><span class="uncovered1"><a name="line95"></a> 95 last_node.delete(path_to_last_node) </span><span class="uncovered0"><a name="line96"></a> 96 end </span><span class="uncovered1"><a name="line97"></a> 97 end </span><span class="inferred0"><a name="line98"></a> 98 </span><span class="marked1"><a name="line99"></a> 99 protected </span><span class="marked0"><a name="line100"></a>100 attr_reader :head, :ranges </span><span class="inferred1"><a name="line101"></a>101 </span><span class="marked0"><a name="line102"></a>102 def insert_node(key) </span><span class="uncovered1"><a name="line103"></a>103 path = make_path </span><span class="uncovered0"><a name="line104"></a>104 found_node = find(key, path) </span><span class="uncovered1"><a name="line105"></a>105 if found_node &amp;&amp; found_node.key == key </span><span class="uncovered0"><a name="line106"></a>106 return found_node </span><span class="uncovered1"><a name="line107"></a>107 else </span><span class="uncovered0"><a name="line108"></a>108 return Node.new(key, next_node_height, path) </span><span class="uncovered1"><a name="line109"></a>109 end </span><span class="uncovered0"><a name="line110"></a>110 end </span><span class="inferred1"><a name="line111"></a>111 </span><span class="marked0"><a name="line112"></a>112 def containing_with_node(n) </span><span class="uncovered1"><a name="line113"></a>113 containing = [] </span><span class="uncovered0"><a name="line114"></a>114 cur_node = head </span><span class="uncovered1"><a name="line115"></a>115 (max_height - 1).downto(0) do |cur_level| </span><span class="uncovered0"><a name="line116"></a>116 while (next_node = cur_node.forward[cur_level]) &amp;&amp; next_node.key &lt;= n </span><span class="uncovered1"><a name="line117"></a>117 cur_node = next_node </span><span class="uncovered0"><a name="line118"></a>118 if cur_node.key == n </span><span class="uncovered1"><a name="line119"></a>119 return containing + (cur_node.markers - cur_node.endpoint_of), cur_node </span><span class="uncovered0"><a name="line120"></a>120 end </span><span class="uncovered1"><a name="line121"></a>121 end </span><span class="uncovered0"><a name="line122"></a>122 containing.concat(cur_node.forward_markers[cur_level]) </span><span class="uncovered1"><a name="line123"></a>123 end </span><span class="uncovered0"><a name="line124"></a>124 </span><span class="uncovered1"><a name="line125"></a>125 return containing, cur_node </span><span class="uncovered0"><a name="line126"></a>126 end </span><span class="inferred1"><a name="line127"></a>127 </span><span class="marked0"><a name="line128"></a>128 def delete_node(key) </span><span class="uncovered1"><a name="line129"></a>129 path = make_path </span><span class="uncovered0"><a name="line130"></a>130 found_node = find(key, path) </span><span class="uncovered1"><a name="line131"></a>131 found_node.delete(path) if found_node.key == key </span><span class="uncovered0"><a name="line132"></a>132 end </span><span class="inferred1"><a name="line133"></a>133 </span><span class="marked0"><a name="line134"></a>134 def find(key, path) </span><span class="uncovered1"><a name="line135"></a>135 cur_node = head </span><span class="uncovered0"><a name="line136"></a>136 (max_height - 1).downto(0) do |cur_level| </span><span class="uncovered1"><a name="line137"></a>137 while (next_node = cur_node.forward[cur_level]) &amp;&amp; next_node.key &lt; key </span><span class="uncovered0"><a name="line138"></a>138 cur_node = next_node </span><span class="uncovered1"><a name="line139"></a>139 end </span><span class="uncovered0"><a name="line140"></a>140 path[cur_level] = cur_node </span><span class="uncovered1"><a name="line141"></a>141 end </span><span class="uncovered0"><a name="line142"></a>142 cur_node.forward[0] </span><span class="uncovered1"><a name="line143"></a>143 end </span><span class="inferred0"><a name="line144"></a>144 </span><span class="marked1"><a name="line145"></a>145 def make_path </span><span class="uncovered0"><a name="line146"></a>146 Array.new(max_height, nil) </span><span class="uncovered1"><a name="line147"></a>147 end </span><span class="inferred0"><a name="line148"></a>148 </span><span class="marked1"><a name="line149"></a>149 def next_node_height </span><span class="uncovered0"><a name="line150"></a>150 height = 1 </span><span class="uncovered1"><a name="line151"></a>151 while rand &lt; probability &amp;&amp; height &lt; max_height </span><span class="uncovered0"><a name="line152"></a>152 height += 1 </span><span class="uncovered1"><a name="line153"></a>153 end </span><span class="uncovered0"><a name="line154"></a>154 height </span><span class="uncovered1"><a name="line155"></a>155 end </span><span class="inferred0"><a name="line156"></a>156 </span><span class="marked1"><a name="line157"></a>157 def can_ascend_from?(node, level) </span><span class="uncovered0"><a name="line158"></a>158 level &lt; node.top_level </span><span class="uncovered1"><a name="line159"></a>159 end </span><span class="inferred0"><a name="line160"></a>160 </span><span class="marked1"><a name="line161"></a>161 def can_descend_from?(level) </span><span class="uncovered0"><a name="line162"></a>162 level &gt; 0 </span><span class="uncovered1"><a name="line163"></a>163 end </span><span class="inferred0"><a name="line164"></a>164 </span><span class="marked1"><a name="line165"></a>165 def node_inside_range?(node, range) </span><span class="uncovered0"><a name="line166"></a>166 node.key &lt; range.last </span><span class="uncovered1"><a name="line167"></a>167 end </span><span class="inferred0"><a name="line168"></a>168 </span><span class="marked1"><a name="line169"></a>169 def next_node_at_level_inside_range?(node, level, range) </span><span class="uncovered0"><a name="line170"></a>170 node.forward[level] &amp;&amp; node.forward[level].key &lt;= range.last </span><span class="uncovered1"><a name="line171"></a>171 end </span><span class="inferred0"><a name="line172"></a>172 </span><span class="marked1"><a name="line173"></a>173 def next_node_at_level_outside_range?(node, level, range) </span><span class="uncovered0"><a name="line174"></a>174 (node.forward[level].nil? || node.forward[level].key &gt; range.last) </span><span class="uncovered1"><a name="line175"></a>175 end </span><span class="inferred0"><a name="line176"></a>176 </span><span class="marked1"><a name="line177"></a>177 def mark_forward_path_at_level(node, level, marker) </span><span class="uncovered0"><a name="line178"></a>178 node.forward_markers[level].push(marker) </span><span class="uncovered1"><a name="line179"></a>179 next_node = node.forward[level] </span><span class="uncovered0"><a name="line180"></a>180 next_node.markers.push(marker) </span><span class="uncovered1"><a name="line181"></a>181 node = next_node </span><span class="uncovered0"><a name="line182"></a>182 end </span><span class="inferred1"><a name="line183"></a>183 </span><span class="marked0"><a name="line184"></a>184 def unmark_forward_path_at_level(node, level, marker) </span><span class="uncovered1"><a name="line185"></a>185 node.forward_markers[level].delete(marker) </span><span class="uncovered0"><a name="line186"></a>186 next_node = node.forward[level] </span><span class="uncovered1"><a name="line187"></a>187 next_node.markers.delete(marker) </span><span class="uncovered0"><a name="line188"></a>188 node = next_node </span><span class="uncovered1"><a name="line189"></a>189 end </span><span class="inferred0"><a name="line190"></a>190 </span><span class="marked1"><a name="line191"></a>191 def nodes </span><span class="uncovered0"><a name="line192"></a>192 nodes = [] </span><span class="uncovered1"><a name="line193"></a>193 cur_node = head.forward[0] </span><span class="uncovered0"><a name="line194"></a>194 until cur_node.nil? </span><span class="uncovered1"><a name="line195"></a>195 nodes &lt;&lt; cur_node </span><span class="uncovered0"><a name="line196"></a>196 cur_node = cur_node.forward[0] </span><span class="uncovered1"><a name="line197"></a>197 end </span><span class="uncovered0"><a name="line198"></a>198 nodes </span><span class="uncovered1"><a name="line199"></a>199 end </span><span class="uncovered0"><a name="line200"></a>200 end </span></pre><hr/> <p>Generated using the <a href='http://eigenclass.org/hiki.rb?rcov'>rcov code coverage analysis tool for Ruby</a> version 0.8.1.2.</p> <p><a href='http://validator.w3.org/check/referer'><img src='http://www.w3.org/Icons/valid-xhtml10' height='31' alt='Valid XHTML 1.0!' width='88'/> </a> <a href='http://jigsaw.w3.org/css-validator/check/referer'><img src='http://jigsaw.w3.org/css-validator/images/vcss' alt='Valid CSS!' style='border:0;width:88px;height:31px'/> </a> </p> </body> </html>
gallery_submission.php-id=1113.html
heyitsgarrett/envelopecollective
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Submission 1113</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0"> <img src="gallery/submissions/1113.jpg" height="400"> </body> </html>
old/old_v1/404.html
sangeet259/sangeet259.github.io
--- layout: default title: 404 - Page not found permalink: /404 --- <div class="text-center"> <h1>Whoops, this page doesn't exist.</h1> <h1>Move along. (404 error)</h1> <br/> <img src="{{ site.baseurl }}/img/404-southpark.jpg" /> </div>
doc/org/thepaffy/kugellabyrinth/class-use/SettingsActivity.NotificationPreferenceFragment.html
thepaffy/Kugellabyrinth
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="de"> <head> <!-- Generated by javadoc (version 1.7.0_55) on Mon May 26 21:53:03 CEST 2014 --> <title>Uses of Class org.thepaffy.kugellabyrinth.SettingsActivity.NotificationPreferenceFragment</title> <meta name="date" content="2014-05-26"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.thepaffy.kugellabyrinth.SettingsActivity.NotificationPreferenceFragment"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../org/thepaffy/kugellabyrinth/SettingsActivity.NotificationPreferenceFragment.html" title="class in org.thepaffy.kugellabyrinth">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/thepaffy/kugellabyrinth/class-use/SettingsActivity.NotificationPreferenceFragment.html" target="_top">Frames</a></li> <li><a href="SettingsActivity.NotificationPreferenceFragment.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.thepaffy.kugellabyrinth.SettingsActivity.NotificationPreferenceFragment" class="title">Uses of Class<br>org.thepaffy.kugellabyrinth.SettingsActivity.NotificationPreferenceFragment</h2> </div> <div class="classUseContainer">No usage of org.thepaffy.kugellabyrinth.SettingsActivity.NotificationPreferenceFragment</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../org/thepaffy/kugellabyrinth/SettingsActivity.NotificationPreferenceFragment.html" title="class in org.thepaffy.kugellabyrinth">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/thepaffy/kugellabyrinth/class-use/SettingsActivity.NotificationPreferenceFragment.html" target="_top">Frames</a></li> <li><a href="SettingsActivity.NotificationPreferenceFragment.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
src/components/admin/registros_usuario/registros_usuario.html
anassa/aleph_frontend
<script type="text/stache" can-autorender> <can-import from="aleph-frontend/admin/registros_usuario/" /> <aleph-admin-registros-usuario></aleph-admin-registros-usuario> </script> <script src="../../../node_modules/steal/steal.js" main="can/view/autorender/"></script>
demo/demo.css
bed-rock/br-nav
* { box-sizing: border-box; } html { font-size: 14px; } body { margin: 0; font-family: "Roboto", sans-serif; font-size: 0.875rem; line-height: 1.42857143; color: #333; } header { position: relative; width: 100%; height: 50px; background: #eee; box-shadow: rgba(0, 0, 0, 0.5) 0 -20px 20px 20px; } header h1 { margin: 0; padding: 0 15px; height: 50px; line-height: 50px; font-weight: 400; font-size: 18px; float: left; } .page-main { padding: 15px 30px; transition: all 0.3s ease-out; } /* Medium devices (desktops) ==========================*/ @media (min-width: 992px) { .page-main { margin-left: 200px; } .page-nav__minify + .page-main { margin-left: 50px; } }
starter-code11/index.html
lizziegooding/Blog-Code-301
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Blog</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="vendor/styles/normalize.css"> <link rel="stylesheet" href="styles/icons.css"> <link rel="stylesheet" href="styles/base.css"> <link rel="stylesheet" href="styles/layout.css"> <link rel="stylesheet" href="styles/modules.css"> <script id="article-template" type="text/x-handlebars-template"> <article class="clearfix" data-author="{{author}}" data-category="{{category}}"> <header> <h1>{{title}}</h1> <div class="byline"> By <address><a href="{{authorUrl}}">{{author}}</a></address> {{publishStatus}} </div> </header> <section class="article-body">{{{body}}}</section> <a href="#" class="read-on">Read on &rarr;</a> </article> </script> </head> <body> <header class="site-header clearfix"> <section class="heading-group-h1"> <h1> Kilovolt Blog! </h1> <h2>The shocking power of static pages</h2> </section> <nav class="main-nav"> <div class="icon-menu"></div> <ul> <li class="tab" data-content="articles"><a href="/" class="icon-home"> Home</a></li> <li class="tab" data-content="about"><a href="/about" class="icon-address-book"> About</a></li> <li><a href="http://twitter.com/brookr" target="_blank" class="icon-twitter3"> Twitter</a></li> <li><a href="http://github.com/brookr" target="_blank" class="icon-github"> GitHub</a></li> </ul> </nav> </header> <main> <section id="articles" class="tab-content"> <div> <ul id="filters"> <li> <select id="author-filter"> <option value="">-- Filter by Authors --</option> </select> </li> <li> <select id="category-filter"> <option value="">-- Filter by Categories --</option> </select> </li> </ul> </div> </section> <section id="about" class="tab-content"> <header> Welcome to my Blog </header> <section> <h1>Some of my intrests:</h1> <ul> <li>Coding</li> <li>Sharing what I've learned</li> <li>Hanging with my family</li> </ul> </section> </section> </main> <footer> &copy; 2015 Code Fellows | Static Blog | Happy Ipsum! </footer> <!-- TODO: Be sure to include the routing functionality with the correct script files. Don't forget your controllers! Ensure the load order satisfies any dependencies: --> <script src="/vendor/scripts/jquery-2.1.4.js"></script> <script src="/vendor/scripts/handlebars.js"></script> <script src="/vendor/scripts/marked.js"></script> <script src="/vendor/scripts/html5sql.js"></script> <script src="/scripts/webdb.js"></script> <script src="/scripts/article.js"></script> <script src="/scripts/articleView.js"></script> <!-- TODO: These function calls inside the script tag do not look great here. Why not place them where they belong, in our brand new article controller?!: --> <script> Article.createTable(); Article.fetchAll(articleView.initIndexPage); </script> </body> </html>
src/MerchelloExample/App_Plugins/Merchello/Backoffice/Merchello/CustomerEdit.html
sydneypaige/merchellodeveloperssample
<link href="/App_Plugins/Merchello/Common/Css/merchello.css" rel="stylesheet"> <form novalidate name="customerForm" data-ng-controller="Merchello.Editors.Customer.EditController" data-ng-show="loaded" data-ng-submit="save()"> <umb-panel val-show-validation> <umb-header> <div class="span4"> <umb-content-name ng-model="customer.name" placeholder="[Customer Name]"> </umb-content-name> </div> <div class="span8"> <div class="btn-toolbar pull-right umb-btn-toolbar"> <div class="btn-group"> <button type="submit" class="btn btn-success">Save</button> </div> </div> </div> </umb-header> <merchello-panel class="row-fluid"> <div class="merchello-pane row-fluid"> <div class="control-group umb-control-group"> <label class="merchello-section-label" for="customer-note"> Customer Overview </label> <div class="merchello-controls row-fluid"> <div class="form-group span12"> <label for="firstName">First Name:</label> <input name="firstName" type="text" class="span5" /> <label for="lastName">Last Name:</label> <input name="lastName" type="text" class="span5" /> <label for="tel">Phone Number:</label> <input name="tel" type="text" class="span5" /> <label for="email">Email Address:</label> <input name="email" type="email" class="span5" /> </div> <div class="span5 gravatar"> <div class="span3"><img src="/media/1001/heather.jpg" /></div> <p class="span7">Gravatar for this email address</p> </div> <div class="form-group span12"> <label for="acceptsMarketing"><input type="checkbox" name="acceptsMarketing" /> Acceps marketing</label> </div> </div> </div> <div class="control-group umb-control-group"> <label class="merchello-section-label" for="customer-note"> Billing Address </label> <div class="merchello-controls row-fluid"> <div class="form-group span12"> <label for="org">Company:</label> <input name="org" type="text" class="span5" /> <label for="streetAddress">Address:</label> <input name="streetAddress" type="text" class="span5" /> <label for="extendedAddress">Address Con't</label> <input name="extendedAddress" type="text" class="span5" /> <label for="locality">City:</label> <input name="locality" type="text" class="span5" /> <label for="postalCode">Zip Code:</label> <input name="postalCode" type="text" class="span3" /> <label for="region">State:</label> <select name="region" class="span3"> <option value="WA">WA</option> </select> <label for="countryName">Country:</label> <select name="countryName" class="span3"> <option>USA</option> </select> </div> </div> </div> <div class="control-group umb-control-group"> <label class="merchello-section-label" for="customer-note"> Notes <small>Notes about the customer (not order specific)</small> </label> <div class="merchello-controls"> <div class="well new-note span10"> <div class="form-group col-xs-12 span12"> <textarea name="note-message" name="customer-note" rows="8" class="span12">Nulla mollis mauris nec erat ullamcorper, at vestibulum ipsum bibendum. Fusce leo lorem, tempor ac dapibus rhoncus, imperdiet at tellus. Quisque vel odio et dolor gravida sollicitudin et eu mi. Donec risus turpis, facilisis nec commodo sed, tempus sit amet enim. Sed vel eros vitae metus viverra ornare. Proin condimentum sodales elit eget elementum. Morbi adipiscing eget nisl ut lacinia. Ut molestie, ipsum auctor iaculis iaculis, mauris mi rutrum sapien, eget ultrices nulla justo ut lorem. Sed accumsan quis augue nec condimentum. Fusce ac iaculis felis. Duis viverra, eros eget varius molestie, metus felis mollis odio, sed rutrum nisi turpis quis quam. Mauris rutrum pellentesque sollicitudin.</textarea> </div> <input type="submit" class="btn btn-primary" value="Save Note" /> </div> <div class="clearfix"></div> </div> </div> </div> </merchello-panel> </umb-panel> </form>
public/Windows 10 x64 (18363.657)/_POP_SLEEP_CHECKPOINT_STATUS.html
epikcraw/ggool
<html><body> <h4>Windows 10 x64 (18363.657)</h4><br> <h2>_POP_SLEEP_CHECKPOINT_STATUS</h2> <font face="arial"> PopSleepCheckpointStatusDisabled = 0n0<br> PopSleepCheckpointStatusEnabledDueToDirtyShutdown = 0n1<br> PopSleepCheckpointStatusEnabledManually = 0n4<br> PopSleepCheckpointStatusEnabledExperiment = 0n4<br> PopSleepCheckpointStatusEnabledMax = 0n7<br> PopSleepCheckpointStatusFailedNotEfiSystem = 0n8<br> PopSleepCheckpointStatusFailedInsufficientSpace = 0n9<br> PopSleepCheckpointStatusFailedTooSlow = 0n10<br> PopSleepCheckpointStatusFailedOtherError = 0n15<br> PopSleepCheckpointStatusMax = 0n15<br> </font></body></html>
week-4/gps/gps2-1.html
pthomas551/phase-0
<!-- Write your names here: 1. Phil Thomas 2. David Ma We spent [.75] hours on this challenge. --> <!-- This challenge uses HTML5 syntax that may not be available in all browsers (It works in Chrome and Safari, from my testing. (<details> and<summary>). --> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <link rel="stylesheet" type="text/css" href="gps2-1.css"> <title>Git Cheat Sheet</title> </head> <body> <header> <img src="https://help.github.com/assets/images/site/set-up-git.gif"/><h1>GitHub: Git Cheat Sheet</h1> <p class="header-text">Git is the open source distributed version control system that facilitates GitHub activities on your laptop or desktop. This cheat sheet summarizes commonly used Git command line instructions for quick reference.</p> </header> <section class="column-1"> <article> <h2>INSTALL GIT</h2> <p>GitHub provides desktop clients that include a graphical user interface for the most common repository actions and an automatically updating command line edition of Git for advanced scenarios.</p> <ul> <li><a href="https://windows.github.com">GitHub for Windows</a></li> <li><a href="https://mac.github.com">GitHub for Mac</a></li> <li><a href="http://git-scm.com">Git for All Platforms</a></li> </ul> Git distributions for Linux and POSIX systems are available on the official Git SCM web site. </article> <article> <h2>CONFIGURE TOOLING</h2> <p>Configure user information for all local repositories</p> <p> To see a summary of each command, click it.</p> <details> <summary><code>$ git config --global user.name "[name]"</code></summary> <p>Sets the name you want attached to your commit transactions</p> </details> <details> <summary><code>$ git config --global user.email "[email address]"</code></summary> <p>Sets the email you want atached to your commit transactions</p> </details> <details> <summary><code>$ git config --global color.ui auto</code></summary> <p>Enables helpful colorization of command line output</p> </details> </article> <article> <h2>CREATE REPOSITORIES</h2> <p>Start a new repository or obtain one from an existing URL</p> <details> <summary><code>$ git init [project-name]</code></summary> <p>Creates a new local repository with the specified name</p> </details> <details> <summary><code>$ git clone [url]</code></summary> <p>Downloads a project and its entire version history</p> </details> </article> <article> <h2>MAKE CHANGES</h2> <p>Review edits and craft a commit transaction</p> <details> <summary><code>$ git status</code></summary> <p>Lists all new or modified files to be committed</p> </details> <details> <summary><code>$ git add [file]</code></summary> <p>Snapshots the file in preparation for versioning</p> </details> <details> <summary><code>$ git reset [file]</code></summary> <p>Unstages the file, but preserve its contents</p> </details> <details> <summary><code>$ git diff</code></summary> <p>Shows file differences not yet staged</p> </details> <details> <summary><code>$ git diff --staged</code></summary> <p>Shows file differences between staging and the last file version</p> </details> <details> <summary><code>$ git commit -m "[descriptive message]"</code></summary> <p>Records file snapshots permanently in version history</p> </details> </article> <article> <h2>GROUP CHANGES</h2> <p>Name a series of commits and combine completed efforts</p> <details> <summary><code>$ git branch</code></summary> <p>Lists all local branches in the current repository</p> </details> <details> <summary><code>$ git branch [branch-name]</code></summary> <p>Creates a new branch</p> </details> <details> <summary><code>$ git checkout [branch-name]</code></summary> <p>Switches to the specified branch and updates the working directory</p> </details> <details> <summary><code>$ git merge [branch]</code></summary> <p>Combines the specified branch’s history into the current branch</p> </details> <details> <summary><code>$ git branch -d [branch-name]</code></summary> <p>Deletes the specified branch</p> </details> </article> </section> <section class="column-2"> <article> <h2>REFACTOR FILENAMES</h2> <p>Relocate and remove versioned files</p> <details> <summary><code>$ git rm [file]</code></summary> <p>Deletes the file from the working directory and stages the deletion</p> </details> <details> <summary><code>$ git rm --cached [file]</code></summary> <p>Removes the file from version control but preserves the file locally</p> </details> <details> <summary><code>$ git mv [file-original] [file-renamed]</code></summary> <p>Changes the file name and prepares it for commit</p> </details> </article> <article> <h2>SUPPRESS TRACKING</h2> <p>Exclude temporary files and paths</p> <details> <summary><code>*.log build/ temp-* </code></summary> <p>A text file named .gitignore suppresses accidental versioning of files and paths matching the specified paterns</p> </details> <details> <summary><code>$ git ls-files --other --ignored --exclude-standard</code></summary> <p>Lists all ignored files in this project</p> </details> </article> <article> <h2>SAVE FRAGMENTS</h2> <p>Shelve and restore incomplete changes</p> <details> <summary><code>$ git stash</code></summary> <p>Temporarily stores all modified tracked files</p> </details> <details> <summary><code>$ git stash list</code>Lists all stashed changesets</summary> <p></p> </details> <details> <summary><code>$ git stash pop</code></summary> <p>Restores the most recently stashed files</p> </details> <details> <summary><code>$ git stash drop</code></summary> <p>Discards the most recently stashed changeset</p> </details> </article> <article> <h2>REVIEW HISTORY</h2> <p>Browse and inspect the evolution of project files</p> <details> <summary><code>$ git log</code></summary> <p>Lists version history for the current branch</p> </details> <details> <summary><code>$ git log --follow [file]</code></summary> <p>Lists version history for a file, including renames</p> </details> <details> <summary><code>$ git diff [first-branch]...[second-branch]</code></summary> <p>Shows content differences between two branches</p> </details> <details> <summary><code>$ git show [commit]</code></summary> <p>Outputs metadata and content changes of the specified commit</p> </details> </article> <article> <h2>REDO COMMITS</h2> <p>Erase mistakes and craft replacement history</p> <details> <summary><code>$ git reset [commit]</code></summary> <p>Undoes all commits after [commit], preserving changes locally</p> </details> <details> <summary><code>$ git reset --hard [commit]</code></summary> <p>Discards all history and changes back to the specified commit</p> </details> </article> <article> <h2>SYNCHRONIZE CHANGES</h2> <p>Register a repository bookmark and exchange version history</p> <details> <summary><code>$ git fetch [bookmark]</code></summary> <p>Downloads all history from the repository bookmark</p> </details> <details> <summary><code>$ git merge [bookmark]/[branch]</code></summary> <p>Combines bookmark’s branch into current local branch</p> </details> <details> <summary><code>$ git push [alias] [branch]</code></summary> <p>Uploads all local branch commits to GitHub</p> </details> <details> <summary><code>$ git pull</code></summary> <p>Downloads bookmark history and incorporates changes</p> </details> </article> </section> <footer> This information is copied directly from <a href="https://training.github.com/kit/downloads/github-git-cheat-sheet.pdf">GitHub's Training Cheatsheet</a>. </footer> <!-- Add your reflection here as a comment. Did you feel more confident with CSS positioning? Yes, it was good to see how others used the positioning attributes and settle on some best practices. How did you do with the learning competencies in general? I think I had an adequate grasp on CSS positioning but more practice would always be helpful. --> </body>
_includes/header.html
maria/tipsandtricks
<header class="site-header"> <article class="spicture-box"> <div class="picture-canvas"> <div class="container"> <h2>TIPS & TRICKS </h2> <h3> for Frontend deploys </h3> </div> </div> </article> </header>
store/order/templates/order/order_list_item.html
sorz/isi
<div class="col-md-8 items"> <p><span class="item-name">Purchase date:</span> <span class="date">{{ order.purchase_date }}</span></p> <p><span class="item-name">Status:</span> <span class="status">{{ order.get_status_display }}</span></p> <p><span class="item-name">Total amount:</span> <span class="price">${{ order.total_price|floatformat:2 }}</span></p> </div> <div class="col-md-2"> <a class="btn btn-default btn-block" role="button" href="{% url 'order:detail' order.pk %}">View detail</a> </div>
_layouts/post.html
skahwah/skahwah.github.io
--- layout: compress --- <!DOCTYPE html> <!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> <!--[if (IE 7)&!(IEMobile)]><html class="no-js lt-ie9 lt-ie8"><![endif]--> <!--[if (IE 8)&!(IEMobile)]><html class="no-js lt-ie9"><![endif]--> <!--[if gt IE 8]><!--> <html class="no-js"><!--<![endif]--> <head> {% include head.html %} {% seo %} </head> <body> {% include nav.html %} <!-- Header --> <header class="header" role="banner"> <div class="wrapper animated fadeIn"> <div class="content"> <div class="post-title {% if page.feature %} feature {% endif %}"> <h1>{{ page.title }}</h1> <h4>{{ page.date | date_to_string }}</h4> {% if site.reading_time %} <p class="reading-time"> <i class="fa fa-clock-o"></i> {% include read-time.html %} </p><!-- /.entry-reading-time --> {% endif %} {% if page.project %} <a class="btn zoombtn" href="{{site.url}}/projects/"> {% else %} <a class="btn zoombtn" href="{{site.url}}/posts/"> {% endif %} <i class="fa fa-chevron-left"></i> </a> </div> {{ content }} <div class="entry-meta"> {% include meta.html %} </div> </div> </div> {% if page.comments and site.disqus_shortname %}<section id="disqus_thread" class="animated fadeInUp"></section><!-- /#disqus_thread -->{% endif %} </header> {% include scripts.html %} {% if site.mathjax == true %} <!-- MathJax --> <script async src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> {% endif %} </body> </html>
components/navbar.css
MasterWhisker/ZeroType
/*** NAVBARS ***/ .navbar-transparent { float: right; margin-right: 50px; } .navbar-transparent ul { list-style: none; } .navbar-transparent li { display: inline-block; text-decoration: none; font-family: 'Ubuntu', sans-serif; font-weight: 300; } .navbar-transparent a { display: inline-block; text-decoration: none; font-family: 'Ubuntu', sans-serif; font-weight: 300; } header { margin-left: 50px; } nav h1 { font-family: 'Ubuntu', sans-serif; font-weight: 300; float: left; margin: 0 0 0 0; padding: 5px 0 0 0; } /* NAVBAR: COLORS */ .navbar-transparent a { color: #000; } .active a { color: #5ab8d1; } hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1px 0; padding: 0; }
css/media.css
joaorocha/sutekh-theme
/*****************************Media For Tablets*************************/ @media only screen and (min-device-width: 768px){ .overlay { height: 387px; } .headerImg { height: 387px; min-height: 387px; } } /*****************************Media For Tablets*************************/ /*****************************Media For Mobiles*************************/ @media only screen and (min-device-width : 320px) and (max-device-width : 480px) { .navBar { height: 100px; } .headerImg { background: url(../img/header-img.jpg); background-size: cover; background-position: -540px 0px; background-repeat: no-repeat; height: 510px; min-height: 510px; } .bloco { margin-top: 100px; height: 250px; } .bloco h1 { line-height: 20px; margin-top: 55px; } .font-extra-big { font-size: 50px; } .font-big { font-size: 35px; } .med-mar { margin: 15px 0px; } .title { top: -43px; font-size: 37px; } .redes { height: auto; } .med-mar-redes { margin-bottom: 10px; } .newsletter input[type="text"] { width: 60%; } .newsletter input[type="submit"] { width: 40%; } .med-font-size { font-size: 20px; } .med-font-size-small { font-size: 11px; } dl.Zebra_Accordion dt.Zebra_Accordion_Expanded, dl.Zebra_Accordion dt { padding: 19px 5px; font-size: 16px; } dl.Zebra_Accordion dd { height: 270px; } .med-font-small-final{ font-size: 21px; } .footer input[type="submit"] { width: 50%; }
docs/classpytorch_1_1_sigmoid-members.html
bzcheeseman/pytorch-inference
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.13"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <title>pytorch-inference: Member List</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtreedata.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">pytorch-inference </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.13 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <script type="text/javascript" src="menudata.js"></script> <script type="text/javascript" src="menu.js"></script> <script type="text/javascript"> $(function() { initMenu('',true,false,'search.php','Search'); $(document).ready(function() { init_search(); }); }); </script> <div id="main-nav"></div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('classpytorch_1_1_sigmoid.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">pytorch::Sigmoid Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="classpytorch_1_1_sigmoid.html">pytorch::Sigmoid</a>, including all inherited members.</p> <table class="directory"> <tr class="even"><td class="entry"><a class="el" href="classpytorch_1_1_sigmoid.html#ad85f564989d4c54e27fc221f73e8d203">forward</a>(const std::vector&lt; tensor &gt; &amp;input)</td><td class="entry"><a class="el" href="classpytorch_1_1_sigmoid.html">pytorch::Sigmoid</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classpytorch_1_1_sigmoid.html#a4db6261b6e54c5c4b5d7221a9371f9b5">operator()</a>(const std::vector&lt; tensor &gt; &amp;input)</td><td class="entry"><a class="el" href="classpytorch_1_1_sigmoid.html">pytorch::Sigmoid</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr> </table></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="footer">Generated by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li> </ul> </div> </body> </html>
firmware/old_WaterCtrl_v1/doxygen/html/stuff_8c.html
janhieber/WaterCtrl
<!-- HTML header for doxygen 1.8.8--> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.10"/> <title>WaterCtrl_v1: /home/jan/WaterCtrl/firmware/WaterCtrl_v1/cubemx/Src/stuff.c File Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtreedata.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { init_search(); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> <link href="style.css" rel="stylesheet" type="text/css"/> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.10 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('stuff_8c.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="summary"> <a href="#nested-classes">Data Structures</a> &#124; <a href="#func-members">Functions</a> </div> <div class="headertitle"> <div class="title">stuff.c File Reference</div> </div> </div><!--header--> <div class="contents"> <p>some usefull stuff <a href="#details">More...</a></p> <div class="textblock"><code>#include &quot;stm32f1xx_hal.h&quot;</code><br /> <code>#include &lt;mxconstants.h&gt;</code><br /> <code>#include &lt;usart.h&gt;</code><br /> </div> <p><a href="stuff_8c_source.html">Go to the source code of this file.</a></p> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a> Data Structures</h2></td></tr> <tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structfault__saved.html">fault_saved</a></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="func-members"></a> Functions</h2></td></tr> <tr class="memitem:gaf57f752120d87609acaf864e00833488"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaf57f752120d87609acaf864e00833488"></a> void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Stuff.html#gaf57f752120d87609acaf864e00833488">AliveTicker</a> (void)</td></tr> <tr class="memdesc:gaf57f752120d87609acaf864e00833488"><td class="mdescLeft">&#160;</td><td class="mdescRight">System alive indicator for LED. <br /></td></tr> <tr class="separator:gaf57f752120d87609acaf864e00833488"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:gac5665802df7401afeabcdfe09816614a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gac5665802df7401afeabcdfe09816614a"></a> void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Stuff.html#gac5665802df7401afeabcdfe09816614a">WatchdogReset</a> (IWDG_HandleTypeDef *hiwdg)</td></tr> <tr class="memdesc:gac5665802df7401afeabcdfe09816614a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Reset watchdog. <br /></td></tr> <tr class="separator:gac5665802df7401afeabcdfe09816614a"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ga3a3b194535b105a540ae6cebdf63e353"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga3a3b194535b105a540ae6cebdf63e353"></a> void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__Stuff.html#ga3a3b194535b105a540ae6cebdf63e353">WatchdogStart</a> (IWDG_HandleTypeDef *hiwdg)</td></tr> <tr class="memdesc:ga3a3b194535b105a540ae6cebdf63e353"><td class="mdescLeft">&#160;</td><td class="mdescRight">Start watchdog. <br /></td></tr> <tr class="separator:ga3a3b194535b105a540ae6cebdf63e353"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ga61402748430fc964933139a61ab8cde8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga61402748430fc964933139a61ab8cde8"></a> void&#160;</td><td class="memItemRight" valign="bottom"><b>default_handler</b> (void)</td></tr> <tr class="separator:ga61402748430fc964933139a61ab8cde8"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:gaacba76c1383df17097ae2733413f2cb1"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="gaacba76c1383df17097ae2733413f2cb1"></a> void&#160;</td><td class="memItemRight" valign="bottom"><b>default_handler_c</b> (struct <a class="el" href="structfault__saved.html">fault_saved</a> *saved, unsigned int sp)</td></tr> <tr class="separator:gaacba76c1383df17097ae2733413f2cb1"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ga0af7232f7a8c719d4eb2f14796141a00"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ga0af7232f7a8c719d4eb2f14796141a00"></a> void&#160;</td><td class="memItemRight" valign="bottom"><b>prvGetRegistersFromStack</b> (uint32_t *pulFaultStackAddress)</td></tr> <tr class="separator:ga0af7232f7a8c719d4eb2f14796141a00"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"><p>some usefull stuff </p> <dl class="section author"><dt>Author</dt><dd>Jan Hieber <a href="#" onclick="location.href='mai'+'lto:'+'mai'+'l@'+'jan'+'hi'+'ebe'+'r.'+'net'; return false;">mail@<span style="display: none;">.nosp@m.</span>janh<span style="display: none;">.nosp@m.</span>ieber<span style="display: none;">.nosp@m.</span>.net</a> </dd></dl> <p>Definition in file <a class="el" href="stuff_8c_source.html">stuff.c</a>.</p> </div></div><!-- contents --> </div><!-- doc-content --> <!-- HTML footer for doxygen 1.8.8--> <!-- start footer part --> </body> </html>
_layouts/post.html
zhiguangwang/zhiguangwang.github.io
--- layout: default --- <div class="post"> <h1 class="post-title">{{ page.title }}</h1> <span class="post-date">{{ page.date | date: "%Y-%m-%d" }}</span> {{ content }} </div> <div id="disqus_thread"></div> <script> /** * RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS. * LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables */ /* var disqus_config = function () { this.page.url = PAGE_URL; // Replace PAGE_URL with your page's canonical URL variable this.page.identifier = PAGE_IDENTIFIER; // Replace PAGE_IDENTIFIER with your page's unique identifier variable }; */ (function() { // DON'T EDIT BELOW THIS LINE var d = document, s = d.createElement('script'); s.src = '//zhiguangwang.disqus.com/embed.js'; s.setAttribute('data-timestamp', +new Date()); (d.head || d.body).appendChild(s); })(); </script> <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript> <!-- <div class="related"> <h4>Related Posts</h4> <ul class="related-posts"> {% for post in site.related_posts limit:3 %} <li> <a href="{{ site.baseurl }}{{ post.url }}"> <small>{{ post.date | date: "%Y-%m-%d" }}</small> &nbsp; {{ post.title }} </a> </li> {% endfor %} </ul> </div> -->
all-data/24000-24999/24200-22.html
BuzzAcademy/idioms-moe-unformatted-data
<table width="90%" border="0"><tr><td><script>function openfile(url) {fullwin = window.open(url, "fulltext", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");}</script><div class="flayoutclass"><div class="flayoutclass_first"><table class="tableoutfmt2"><tr><th class="std1"><b>條目&nbsp;</b></th><td class="std2">稱臣納貢</td></tr> <tr><th class="std1"><b>注音&nbsp;</b></th><td class="std2">ㄔㄥ ㄔㄣ<sup class="subfont">ˊ</sup> ㄋㄚ<sup class="subfont">ˋ</sup> ㄍㄨㄥ<sup class="subfont">ˋ</sup></td></tr> <tr><th class="std1"><b>漢語拼音&nbsp;</b></th><td class="std2"><font class="english_word">chēng chén nà gòng</font></td></tr> <tr><th class="std1"><b>釋義&nbsp;</b></th><td class="std2">小國向大國臣服,定時進貢。東周列國志˙第十七回:<img src=/cydic/dicword/fa40.gif border=0 alt=* class=fontimg valign=center>凡漢東小國,無不稱臣納貢。<img src=/cydic/dicword/fa41.gif border=0 alt=* class=fontimg valign=center></td></tr> <tr><th class="std1"><b><font class="fltypefont">附錄</font>&nbsp;</b></th><td class="std2">修訂本參考資料</td></tr> </td></tr></table></div> <!-- flayoutclass_first --><div class="flayoutclass_second"></div> <!-- flayoutclass_second --></div> <!-- flayoutclass --></td></tr></table>
all-data/1000-1999/1462-31.html
BuzzAcademy/idioms-moe-unformatted-data
<table width="90%" border="0"><tr><td><script>function openfile(url) {fullwin = window.open(url, "fulltext", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");}</script><div class="layoutclass_pic"><div class="layoutclass_first_pic"><table class="ztable"><tr><th class="ztd1"><b>成語&nbsp;</b></th><td class="ztd2">微乎其微</td></tr> <tr><th class="ztd1"><b>典源&nbsp;</b></th><td class="ztd2"> <font class="dianuan_mark">《爾雅.釋訓》</font><br>式微式微<font size=-2 color="#999900"><font class="dianyuanfont"><b><i>1></i></b></font></font>者,微乎微者<font size=-2 color="#999900"><font class="dianyuanfont"><b><i>2></i></b></font></font>也。</font> <br><font class="dianuan_mark2">〔注解〕</font><br></font> <div class="Rulediv"><font class="english_word">(1)</font> 式微式微:<font class="dianuan_mark">《詩經.邶風》</font>文。式,發語詞,無義。微,衰微。</div> <div class="Rulediv"><font class="english_word">(2)</font> 微乎微者:極其衰微。</font></font></div> </td></tr> </td></tr></table></div> <!-- layoutclass_first_pic --><div class="layoutclass_second_pic"></div> <!-- layoutclass_second_pic --></div> <!-- layoutclass_pic --></td></tr></table>
src/components/ContentText/ContentText.css
pitLancer/pbdorb
@import '../variables.css'; .contentHeader{ font-family: var(--font-family-ubuntuBold); white-space: pre-line; letter-spacing: 10px; } .contentHeaderInline{ composes: contentHeader; display: inline; } .contentText{ font-family: var(--font-family-ubuntuLight); margin-left: 78px; text-align: justify; /*white-space: nowrap;*/ } .contentTextInline{ composes: contentText; display: inline; } .wrapperFlex{ display: flex; align-content: stretch; flex-direction: row; max-width:100%; height: 100%; } /*.blockFlexLeft{ flex: 1; position:relative; align-self: flex-start; margin-left: 5vw; max-width: 25%; height: 100%; }*/ .child{ width:100%; height:100%; position: absolute; overflow-y:auto; } /*.blockFlexRight{ flex: 1; position: relative; align-self: flex-start; margin-right: 5%; margin-left: 3%; width: 70%; height: 100%; }*/ .ul{ list-style: none; padding-left: 0px; } @media screen and (min-width: 320px){ .wrapperFlex{ display: flex; align-content: stretch; flex-direction: column; /*text-align: center;*/ max-width:100%; height: 100%; } .blockFlexLeft{ flex: 1; position:relative; align-self: flex-start; margin-right: 0; margin-left: 0; margin-top: 1vh; width: 100%; max-height: 35%; } .blockFlexRight{ flex: 1; position: relative; align-self: flex-start; margin-right: 0; margin-left: 0; width: 100%; max-height: 65%; } .ul{ list-style: none; padding-left: 0px; } .ul > li{ margin-bottom: 10px; } } @media screen and (min-width: 550px){ .wrapperFlex{ display: flex; align-content: stretch; text-align: left; flex-direction: row; max-width:100%; height: 100%; } .ul{ list-style: none; padding-left: 0px; } .ul > li{ margin-bottom: 3px; } .blockFlexLeft{ flex: 1; position:relative; align-self: flex-start; margin-left: 5vw; margin-top: 0; max-width: 25%; height: 100%; } .blockFlexRight{ flex: 1; position: relative; align-self: flex-start; margin-right: 5%; margin-left: 3%; width: 70%; height: 100%; } } @media screen and (min-width: 900px) { .wrapperFlex{ display: flex; align-content: stretch; text-align: left; flex-direction: row; max-width:100%; height: 100%; } .ul{ list-style: none; padding-left: 0px; } .ul > li{ margin-bottom: 3px; } .blockFlexLeft{ flex: 1; position:relative; align-self: flex-start; margin-left: 5vw; margin-top: 0; max-width: 25%; height: 100%; } .blockFlexRight{ flex: 1; position: relative; align-self: flex-start; margin-right: 5%; margin-left: 3%; width: 70%; height: 100%; } }
LayoutTests/fast/js/Promise-then-callback-receiver.html
lordmos/blink
<!DOCTYPE html> <html> <head> <script src="../../resources/js-test.js"></script> </head> <body> <div id="description"></div> <div id="console"></div> <script> window.jsTestIsAsync = true; description('Test Promise.'); var thisInOnFulfilledSloppy; var thisInOnRejectedSloppy; var thisInOnFulfilledStrict; var thisInOnRejectedStrict; Promise.resolve().then(function () { return Promise.resolve(42).then(function () { testPassed('fulfilled'); window.thisInOnFulfilledSloppy = this; shouldBe('thisInOnFulfilledSloppy', 'window'); }, function () { testFailed('rejected'); }); }).then(function () { return Promise.reject(42).then(function () { testFailed('fulfilled'); }, function () { testPassed('rejected'); window.thisInOnRejectedSloppy = this; shouldBe('thisInOnRejectedSloppy', 'window'); }); }).then(function () { return Promise.resolve(42).then(function () { 'use strict'; testPassed('fulfilled'); window.thisInOnFulfilledStrict = this; shouldBe('thisInOnFulfilledStrict', 'undefined'); }, function () { 'use strict'; testFailed('rejected'); }); }).then(function () { return Promise.reject(42).then(function () { 'use strict'; testFailed('fulfilled'); }, function () { 'use strict'; testPassed('rejected'); window.thisInOnRejectedStrict = this; shouldBe('thisInOnRejectedStrict', 'undefined'); }); }).then(finishJSTest, finishJSTest); </script> </body> </html>
slides/sessao4/sessao4-03.html
uaijug/hermes-workshop
<img src="images/sessao4/devops.jpeg" alt="UaiJUG" width="620px" height="auto">
_site/vim/2016/03/04/vim-four.html
SPxiaomin/github_blog
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="emmet.vim 插件使用学习笔记"> <meta name="keywords" content="emmet.vim, vim"> <title>emmet.vim 插件使用学习笔记</title> <link rel="stylesheet" href="/github_blog/public/bower_components/bootstrap/dist/css/bootstrap.min.css"> <link rel="stylesheet" href="/github_blog/public/stylesheets/dest/style.min.css"> <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="//cdn.bootcss.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="//cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container post"> <a href="/github_blog/">&lt;- Back to Home</a> <h2>emmet.vim 插件使用学习笔记</h2> <p>项目地址: <a href="https://github.com/mattn/emmet-vim">https://github.com/mattn/emmet-vim</a></p> <ul> <li> <p>Abbreviation</p> <ul> <li>Expand an Abbreviation</li> <li>wrap with an Abbreviation</li> </ul> </li> <li>Merge lines</li> <li>Remove a Tag</li> <li>Toggle Comment</li> <li>Make an anchor from a URL</li> </ul> <div id="disqus_thread"></div> <script type="text/javascript"> /* * * CONFIGURATION VARIABLES * * */ var disqus_shortname = 'jimmy-github-blog'; /* * * DON'T EDIT BELOW THIS LINE * * */ (function() { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); })(); </script> <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript> </div> </body> </html>
templates/includes/flash.html
sumpfgottheit/pydiwa
{% with messages = get_flashed_messages(with_categories=True) %} {% if messages %} <div style="padding-top: 20px;"> {% for category, message in messages %} {% if category == 'success' %} <div class="alert alert-success alert-dismissable"> <a class="close" data-dismiss="alert" href="#">×</a> <i class="icon-ok-sign"></i> {{ message }} </div> {% elif category == 'error' %} <div class="alert alert-danger alert-dismissable"> <a class="close" data-dismiss="alert" href="#">×</a> <i class="icon-remove-sign"></i> {{ message }} </div> {% elif category == 'warning' %} <div class="alert alert-warning alert-dismissable"> <a class="close" data-dismiss="alert" href="#">×</a> <i class="icon-exclamation-sign"></i> {{ message }} </div> {% else %} <div class="alert alert-info alert-dismissable"> <a class="close" data-dismiss="alert" href="#">×</a> <i class="icon-info-sign"></i> {{ message }} </div> {% endif %} {% endfor %} </div> {% endif %} {% endwith %}
clean/Linux-x86_64-4.06.1-2.0.5/released/8.8.0/infotheo/0.1.html
coq-bench/coq-bench.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>infotheo: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="../../../../../bootstrap-custom.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../..">clean / released</a></li> <li class="active"><a href="">8.8.0 / infotheo - 0.1</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> infotheo <small> 0.1 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2021-12-20 01:17:33 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-20 01:17:33 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-threads base base-unix base camlp5 7.14 Preprocessor-pretty-printer of OCaml conf-findutils 1 Virtual package relying on findutils conf-perl 1 Virtual package relying on perl coq 8.8.0 Formal proof management system num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.06.1 The OCaml compiler (virtual package) ocaml-base-compiler 4.06.1 Official 4.06.1 release ocaml-config 1 OCaml Switch Configuration ocamlfind 1.9.1 A library manager for OCaml # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;reynald.affeldt@aist.go.jp&quot; homepage: &quot;https://github.com/affeldt-aist/infotheo&quot; bug-reports: &quot;https://github.com/affeldt-aist/infotheo/issues&quot; dev-repo: &quot;git+https://github.com/affeldt-aist/infotheo.git&quot; license: &quot;GPL-3.0-or-later&quot; authors: [ &quot;Reynald Affeldt&quot; &quot;Manabu Hagiwara&quot; &quot;Jonas Senizergues&quot; &quot;Jacques Garrigue&quot; &quot;Kazuhiko Sakaguchi&quot; &quot;Taku Asai&quot; &quot;Takafumi Saikawa&quot; &quot;Naruomi Obata&quot; &quot;Erik Martin-Dorel&quot; &quot;Ryosuke Obi&quot; &quot;Mitsuharu Yamamoto&quot; ] build: [ [make &quot;-j%{jobs}%&quot;] [make &quot;-C&quot; &quot;extraction&quot; &quot;tests&quot;] {with-test} ] install: [ [make &quot;install&quot;] ] depends: [ &quot;coq&quot; {&gt;= &quot;8.10~&quot;} &quot;coq-mathcomp-field&quot; {&gt;= &quot;1.10.0&quot;} &quot;coq-mathcomp-analysis&quot; {(&gt;= &quot;0.2.0&quot; &amp; &lt;= &quot;0.2.3&quot;)} ] synopsis: &quot;Infotheo&quot; description: &quot;&quot;&quot; a Coq formalization of information theory and linear error-correcting codes &quot;&quot;&quot; tags: [ &quot;category:Computer Science/Data Types and Data Structures&quot; &quot;keyword: information theory&quot; &quot;keyword: probability&quot; &quot;keyword: error-correcting codes&quot; &quot;logpath:infotheo&quot; &quot;date:2020-03-21&quot; ] url { http: &quot;https://github.com/affeldt-aist/infotheo/archive/v0.1.tar.gz&quot; checksum: &quot;sha512=2565b063c1dd9e6ef0999da7004c2901ab52e6c3667d07dab4ffe8251b7ac2527b69fe7a667f1329d001bb7fb2076d75cae45258037bd1a5fcc2414571479bf5&quot; } </pre> <h2>Lint</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Dry install 🏜️</h2> <p>Dry install with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --show-action coq-infotheo.0.1 coq.8.8.0</code></dd> <dt>Return code</dt> <dd>5120</dd> <dt>Output</dt> <dd><pre>[NOTE] Package coq is already installed (current version is 8.8.0). The following dependencies couldn&#39;t be met: - coq-infotheo -&gt; coq &gt;= 8.10~ Your request can&#39;t be satisfied: - No available version of coq satisfies the constraints No solution found, exiting </pre></dd> </dl> <p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-infotheo.0.1</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install 🚀</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Installation size</h2> <p>No files were installed.</p> <h2>Uninstall 🧹</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣 </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
comics/page_52.html
paulbrzeski/kamigen
<!DOCTYPE html> <html> <head> <title>Page 52 | Comics | Kamigen | A Tropical Cyberpunk World </title> <base href="/"> <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"> <link href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css" rel="stylesheet"><!-- Facebook Pixel Code --><script>!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,document,'script','https://connect.facebook.net/en_US/fbevents.js'); fbq('init', '1266796517023212'); fbq('track', 'PageView');</script><noscript> <img height="1" width="1" src="https://www.facebook.com/tr?id=1266796517023212&ev=PageView&noscript=1"/></noscript><!-- End Facebook Pixel Code --> <link href="/dist/website.css" rel="stylesheet"> </head> <body> <div class="ui grid stackable"> <div class="row"> <div class="column"> <div class="ui five column very relaxed grid center aligned" id="main_menu"> <div class="column"><a class="ui button inverted big fluid" href="/comics.html">Comics</a></div> <div class="column"><a class="ui button inverted big fluid" href="/game.html">Game</a></div> <div class="column logo"><a href="/"><img src="/art/design/Website%20Logo-01.png" title="Return to the Kamigen Homepage"></a></div> <div class="column"><a class="ui button inverted big fluid" href="/shop.html">Shop</a></div> <div class="column"><a class="ui button inverted big fluid" href="/wiki.html">Wiki</a></div> </div> <div class="ui fluid vertical menu inverted" id="mobile_menu"> <div class="item logo"><a href="/"><img src="/art/design/Website%20Logo-01.png" title="Return to the Kamigen Homepage"></a> <div id="mobile_menu_toggle"><i class="content icon"></i></div> </div> <div class="item"><a class="ui button inverted big fluid" href="/comics.html">Comics</a></div> <div class="item"><a class="ui button inverted big fluid" href="/game.html">Game</a></div> <div class="item"><a class="ui button inverted big fluid" href="/shop.html">Shop</a></div> <div class="item"><a class="ui button inverted big fluid" href="/wiki.html">Wiki</a></div> </div> </div> </div> <div class="ui dividing header"></div> <div class="row"> <div class="column center aligned"> <h2><a href="/comics.html">Comics</a> \ <a href="/comics/issue_2.html">Issue 02</a> \ Page 52</h2> </div> </div> <div class="row"> <div class="column"> <div class="ui one column center aligned page grid"> <div class="column eight wide"><a class="ui grey large labeled icon button" href="/comics/page_51.html"><i class="icon reply"></i>Previous</a></div> <div class="column eight wide"><a class="ui grey large right labeled icon button" href="/comics/page_53.html"><i class="icon share"></i>Next</a> </div> </div> </div> </div> <div class="row"> <div class="column"> <div class="ui one column stackable center aligned page grid"> <div class="column sixteen wide"></div><a href="/comics/page_53.html"><img class="ui image fluid" src="../art/comics/HD/Kamigen Page 52-01.png"></a> </div> </div> </div> <div class="row"> <div class="column"> <div class="ui one column center aligned page grid"> <div class="column eight wide"><a class="ui grey large labeled icon button" href="/comics/page_51.html"><i class="icon reply"></i>Previous</a></div> <div class="column eight wide"><a class="ui grey large right labeled icon button" href="/comics/page_53.html"><i class="icon share"></i>Next</a> </div> </div> </div> </div> <div class="row"> <div class="column center aligned"> <h2><a href="/comics.html">Comics</a> \ <a href="/comics/issue_2.html">Issue 02</a> \ Page 52</h2> </div> </div> <div class="row"> <div class="column"> <div class="ui one column center aligned page grid" id="page_script"> </div> </div> </div> <div class="row"> <div class="column"> <div class="ui one column stackable center aligned page grid"> <div class="column sixteen wide"> <div id="disqus_thread"></div> </div> </div> </div> </div> <div class="row footer"> <div class="column five wide"> <div class="ui horizontal list"> <div class="item"><a href="https://www.deviantart.com/thezeski/gallery/70776399/kamigen-comics" title="Kamigen Comics on DeviantArt"><img class="ui mini image" src="/assets/deviantart.png" alt="Deviantart"></a></div> <div class="item"><a href="https://www.facebook.com/kamigengame/" title="Kamigen Facebook Page"><img class="ui mini image" src="/assets/facebook.png" alt="Facebook"></a></div> </div> </div> <div class="column six wide"><a href="/"><img src="/art/design/Website%20Footer%20Logo-01.png" title="Kamigen"></a></div> <div class="column five wide"><a href="https://openstudios.xyz" title="An Open Studios Project"><img class="ui image small" src="/assets/open_studios_logo.png" style="margin: 0 auto"></a></div> </div> </div> <script id="landVertexShader" type="x-shader/x-vertex">uniform sampler2D bumpTexture; uniform float bumpScale; varying float vAmount; varying vec2 vUV; varying vec4 worldPosition; varying vec3 vViewPosition; varying vec3 vNormal; void main() { vUV = uv; vec4 bumpData = texture2D( bumpTexture, uv ); vAmount = bumpData.r; // assuming map is grayscale it doesn't matter if you use r, g, or b. // move the position along the normal vec3 newPosition = position + normal * bumpScale * vAmount; worldPosition = modelMatrix * vec4( newPosition, 1.0 ); // Normal position. vNormal = normalize( normalMatrix * normal ); // View vector. vViewPosition = cameraPosition - worldPosition.xyz; gl_Position = projectionMatrix * modelViewMatrix * vec4( newPosition, 1.0 ); } </script> <script id="landFragmentShader" type="x-shader/x-fragment">uniform float landSize; uniform float time; uniform sampler2D sandyTexture; uniform sampler2D forestTexture; uniform sampler2D rockyTexture; uniform sampler2D texture; uniform vec3 sunPosition; uniform vec3 center; varying vec2 vUV; varying float vAmount; varying vec4 worldPosition; varying vec3 vViewPosition; varying vec3 vNormal; // Shade island based on sun direction. float sunshadeIsland() { float radius = landSize / 4.; // Distance between this point and sun. float a = distance(worldPosition.xyz, sunPosition); // Distance between the center and sun. float b = distance(center, sunPosition); // Default shade float c = 0.0; // Sun max height float maxSun = 150000.; float brightness = (sunPosition.y / maxSun); if (sunPosition.y > 0.) { if (a < b) { brightness *= 0.5; } else { brightness *= 0.3; } } else { brightness *= 0.05; } return brightness; } float snoise ( vec3 coord, float scale, float time_factor ) { vec3 scaledCoord = coord * scale - (vNormal / time_factor + vec3(0.0, 0.0, -time / time_factor)); vec2 uvTimeShift = vec2((scaledCoord.x + scaledCoord.z) / 2.0, scaledCoord.y) + vec2( -0.7, 1.5 ) * time / time_factor * 0.015; vec4 noiseGeneratorTimeShift = texture2D( forestTexture, uvTimeShift ) * 50.; vec2 uvNoiseTimeShift = vec2(scaledCoord.x, scaledCoord.y) + 0.5 * vec2( noiseGeneratorTimeShift.r, noiseGeneratorTimeShift.b ); vec4 baseColor = texture2D( forestTexture, uvNoiseTimeShift * vec2(4.0, 4.0) ); return baseColor.b; } float heightMap( vec3 coord ) { float n = abs(snoise(coord , 1.0 , 18.0)); n -= 0.75 * abs(snoise(coord , 4.0 , 25.0)); n += 0.125 * abs(snoise(coord , 14.0 , 35.0)); n *= 0.7; return n; } // normal vec3 getNormalLightWeight() { const float e = .01; float n = heightMap(worldPosition.xyz); float nx = heightMap( worldPosition.xyz + vec3( e, 0.0, 0.0 ) ); float ny = heightMap( worldPosition.xyz + vec3( 0.0, e, 0.0 ) ); float nz = heightMap( worldPosition.xyz + vec3( 0.0, 0.0, e ) ); vec3 normal = normalize( vNormal + .5 * vec3( n - nx, n - ny, n - nz ) / e ); // diffuse light vec3 vLightWeighting = vec3( 0.005 ); vec4 lDirection = viewMatrix * vec4( normalize( vec3( 1.0, 0.0, 0.5 ) ), 0.0 ); float directionalLightWeighting = dot( normal, normalize( lDirection.xyz ) ) * 0.15 + 0.85; vLightWeighting += vec3( 1.0 ) * directionalLightWeighting; // specular light vec3 dirHalfVector = normalize( lDirection.xyz + normalize( vViewPosition ) ); float dirDotNormalHalf = dot( normal, dirHalfVector ); float dirSpecularWeight = 0.0; if ( dirDotNormalHalf >= 0.0 ) dirSpecularWeight = ( 1.0 - n ) * pow( dirDotNormalHalf, 5.0 ); vLightWeighting *= vec3( 1.0, 0.5, 0.0 ) * dirSpecularWeight * n * 2.0; return vLightWeighting; } void main() { if (vAmount < 0.01) { gl_FragColor = texture2D( sandyTexture, vUV * 50.0 ); gl_FragColor.a = 0.0; } else { vec4 sandy = (smoothstep(0.01, 0.03, vAmount) - smoothstep(0.05, 0.07, vAmount)) * texture2D( sandyTexture, vUV * 50.0 ); vec4 forest = (smoothstep(0.05, 0.07, vAmount) - smoothstep(0.40, 0.70, vAmount)) * texture2D( forestTexture, vUV * 50.0 ); vec4 rocky = (smoothstep(0.50, 0.65, vAmount)) * texture2D( rockyTexture, vUV * 25.0 ); gl_FragColor = sandy + forest + rocky; gl_FragColor -= (texture2D( texture, vUV ) * 0.5); // Alternative shading.. needs work. Look to integrate above old functions from Langenium.. //float diffuse = max(sunPosition.x * gl_FragColor.r + sunPosition.y * gl_FragColor.g + sunPosition.z * gl_FragColor.b, 0.0); //gl_FragColor *= 1. + diffuse * 0.1; gl_FragColor += sunshadeIsland(); gl_FragColor.a = 1.0; } } </script> <script id="spriteVertexShader" type="x-shader/x-vertex">varying vec2 vUV; void main() { vUV = uv; gl_Position = projectionMatrix * modelViewMatrix * vec4(position,1.0); } </script> <script id="spriteFragmentShader" type="x-shader/x-fragment">varying vec2 vUV; void main() { vec2 uv = vUV; uv -= 0.5; uv.x *= 0.8; float d = length(uv); float c = smoothstep(0.4, 0.4-0.6, d); c *= 0.5; gl_FragColor = vec4(c); } </script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.js"></script> <script async="async" src="https://www.googletagmanager.com/gtag/js?id=UA-126811218-1"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/tween.js/17.4.0/Tween.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r116/three.min.js"></script> <script src="./vendor/ImprovedNoise.js"></script> <script src="./vendor/simplex.js"></script> <script src="./vendor/threex.keyboardstate.js"></script> <script src="./vendor/stats.min.js"></script> <script src="./vendor/OrbitControls.js"></script> <script src="./vendor/Water.js"></script> <script src="./vendor/Sky.js"></script> <script data-ad-client="ca-pub-5962056869598854" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <script> $(document).ready(()=>{ $('#mobile_menu_toggle').click(()=>{ $('#mobile_menu .item:not(.logo)').slideToggle(); }); }); </script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-126811218-1'); </script> <script> (function() { // DON'T EDIT BELOW THIS LINE var d = document, s = d.createElement('script'); s.src = 'https://kamigen.disqus.com/embed.js'; s.setAttribute('data-timestamp', +new Date()); (d.head || d.body).appendChild(s); })(); </script> </body> </html>
src/plugins/tbm_shortcodes/css/default.css
xavortm/thebigmag
@font-face { font-family: 'FontAwesome'; src: url('./font/fontawesome-webfont.eot?v=3.2.1'); src: url('./font/fontawesome-webfont.eot?#iefix&v=3.2.1') format('embedded-opentype'), url('./font/fontawesome-webfont.woff?v=3.2.1') format('woff'), url('./font/fontawesome-webfont.ttf?v=3.2.1') format('truetype'), url('./font/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1') format('svg'); font-weight: normal; font-style: normal; }
doc/doxygen/html/svd__kernels_8h_source.html
aokomoriuta/ViennaCLFiles
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>ViennaCL - The Vienna Computing Library: viennacl/linalg/kernels/svd_kernels.h Source File</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">ViennaCL - The Vienna Computing Library &#160;<span id="projectnumber">1.3.1</span> </div> </td> </tr> </tbody> </table> </div> <!-- Generated by Doxygen 1.7.6.1 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li><a href="annotated.html"><span>Data&#160;Structures</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="files.html"><span>File&#160;List</span></a></li> <li><a href="globals.html"><span>Globals</span></a></li> </ul> </div> </div> <div class="header"> <div class="headertitle"> <div class="title">viennacl/linalg/kernels/svd_kernels.h</div> </div> </div><!--header--> <div class="contents"> <a href="svd__kernels_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="preprocessor">#ifndef VIENNACL_SVD_KERNELS_HPP_</span> <a name="l00002"></a>00002 <span class="preprocessor"></span><span class="preprocessor">#define VIENNACL_SVD_KERNELS_HPP_</span> <a name="l00003"></a>00003 <span class="preprocessor"></span><span class="preprocessor">#include &quot;<a class="code" href="tools_8hpp.html" title="Various little tools used here and there in ViennaCL.">viennacl/tools/tools.hpp</a>&quot;</span> <a name="l00004"></a>00004 <span class="preprocessor">#include &quot;<a class="code" href="kernel_8hpp.html" title="Representation of an OpenCL kernel in ViennaCL.">viennacl/ocl/kernel.hpp</a>&quot;</span> <a name="l00005"></a>00005 <span class="preprocessor">#include &quot;<a class="code" href="platform_8hpp.html" title="Implements a OpenCL platform within ViennaCL.">viennacl/ocl/platform.hpp</a>&quot;</span> <a name="l00006"></a>00006 <span class="preprocessor">#include &quot;<a class="code" href="ocl_2utils_8hpp.html" title="Provides OpenCL-related utilities.">viennacl/ocl/utils.hpp</a>&quot;</span> <a name="l00007"></a>00007 <span class="preprocessor">#include &quot;<a class="code" href="svd__source_8h.html">viennacl/linalg/kernels/svd_source.h</a>&quot;</span> <a name="l00008"></a>00008 <a name="l00009"></a>00009 <span class="comment">//Automatically generated file from aux-directory, do not edit manually!</span> <a name="l00010"></a>00010 <span class="keyword">namespace </span>viennacl <a name="l00011"></a>00011 { <a name="l00012"></a>00012 <span class="keyword">namespace </span>linalg <a name="l00013"></a>00013 { <a name="l00014"></a>00014 <span class="keyword">namespace </span>kernels <a name="l00015"></a>00015 { <a name="l00016"></a>00016 <span class="keyword">template</span>&lt;<span class="keyword">class</span> TYPE, <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> alignment&gt; <a name="l00017"></a>00017 <span class="keyword">struct </span><a class="code" href="namespaceviennacl_1_1linalg.html#a7dd4119fc5dfef5c067af3b46bd86191" title="Computes the singular value decomposition of a matrix A. Experimental in 1.3.x.">svd</a>; <a name="l00018"></a>00018 <a name="l00019"></a>00019 <a name="l00021"></a>00021 <span class="keyword">template</span> &lt;&gt; <a name="l00022"></a><a class="code" href="structviennacl_1_1linalg_1_1kernels_1_1svd_3_01float_00_011_01_4.html">00022</a> <span class="keyword">struct </span><a class="code" href="namespaceviennacl_1_1linalg.html#a7dd4119fc5dfef5c067af3b46bd86191" title="Computes the singular value decomposition of a matrix A. Experimental in 1.3.x.">svd</a>&lt;float, 1&gt; <a name="l00023"></a>00023 { <a name="l00024"></a><a class="code" href="structviennacl_1_1linalg_1_1kernels_1_1svd_3_01float_00_011_01_4.html#adb4613919bae5cf962e40b99da83dd96">00024</a> <span class="keyword">static</span> std::string program_name() <a name="l00025"></a>00025 { <a name="l00026"></a>00026 <span class="keywordflow">return</span> <span class="stringliteral">&quot;f_svd_1&quot;</span>; <a name="l00027"></a>00027 } <a name="l00028"></a><a class="code" href="structviennacl_1_1linalg_1_1kernels_1_1svd_3_01float_00_011_01_4.html#aedc913c139bb562646d3459b0ca28997">00028</a> <span class="keyword">static</span> <span class="keywordtype">void</span> init() <a name="l00029"></a>00029 { <a name="l00030"></a>00030 <a class="code" href="structviennacl_1_1ocl_1_1_d_o_u_b_l_e___p_r_e_c_i_s_i_o_n___c_h_e_c_k_e_r.html" title="Ensures that double precision types are only allocated if it is supported by the device. If double precision is requested for a device not capable of providing that, a double_precision_not_provided_error is thrown.">viennacl::ocl::DOUBLE_PRECISION_CHECKER&lt;float&gt;::apply</a>(); <a name="l00031"></a>00031 <span class="keyword">static</span> std::map&lt;cl_context, bool&gt; init_done; <a name="l00032"></a>00032 <a class="code" href="classviennacl_1_1ocl_1_1context.html">viennacl::ocl::context</a> &amp; context_ = <a class="code" href="namespaceviennacl_1_1ocl.html#a0c2a174533a0aca403ff7c4aa802edcf" title="Convenience function for returning the current context.">viennacl::ocl::current_context</a>(); <a name="l00033"></a>00033 <span class="keywordflow">if</span> (!init_done[context_.<a class="code" href="classviennacl_1_1ocl_1_1context.html#a04a2acfc068529af42d1772382a20b90" title="Returns the context handle.">handle</a>().<a class="code" href="classviennacl_1_1ocl_1_1handle.html#a0f432d9c11ccab11ef350affd8791e47">get</a>()]) <a name="l00034"></a>00034 { <a name="l00035"></a>00035 std::string source; <a name="l00036"></a>00036 source.append(<a class="code" href="namespaceviennacl_1_1linalg_1_1kernels.html#a3fd5dab58edbf6ddb6b0f99eaf20c379">svd_align1_bidiag_pack</a>); <a name="l00037"></a>00037 source.append(<a class="code" href="namespaceviennacl_1_1linalg_1_1kernels.html#a7c441845a22bb2e88c554c44a19d99c2">svd_align1_house_col</a>); <a name="l00038"></a>00038 source.append(<a class="code" href="namespaceviennacl_1_1linalg_1_1kernels.html#a55fc32e660cec21e8ce3dd66fd931cf7">svd_align1_inverse_signs</a>); <a name="l00039"></a>00039 source.append(<a class="code" href="namespaceviennacl_1_1linalg_1_1kernels.html#af8d10c84f85258b0d65ee0b472643dad">svd_align1_transpose_inplace</a>); <a name="l00040"></a>00040 source.append(<a class="code" href="namespaceviennacl_1_1linalg_1_1kernels.html#a20ae167312b1c4a1949f5ec1e5dbbcee">svd_align1_house_row</a>); <a name="l00041"></a>00041 source.append(<a class="code" href="namespaceviennacl_1_1linalg_1_1kernels.html#a339e414537377281d57c8f32bc9761cd">svd_align1_copy_col</a>); <a name="l00042"></a>00042 source.append(<a class="code" href="namespaceviennacl_1_1linalg_1_1kernels.html#afc41c39d90781edeaaebeca06c5e2943">svd_align1_copy_row</a>); <a name="l00043"></a>00043 source.append(<a class="code" href="namespaceviennacl_1_1linalg_1_1kernels.html#a06a235546c2331eb3c1a2830296478dd">svd_align1_givens_prev</a>); <a name="l00044"></a>00044 std::string prog_name = program_name(); <a name="l00045"></a>00045 <span class="preprocessor"> #ifdef VIENNACL_BUILD_INFO</span> <a name="l00046"></a>00046 <span class="preprocessor"></span> std::cout &lt;&lt; <span class="stringliteral">&quot;Creating program &quot;</span> &lt;&lt; prog_name &lt;&lt; std::endl; <a name="l00047"></a>00047 <span class="preprocessor"> #endif</span> <a name="l00048"></a>00048 <span class="preprocessor"></span> context_.<a class="code" href="classviennacl_1_1ocl_1_1context.html#a87c0fbb40f4ee1928c72dbf8d19512bb" title="Adds a program to the context.">add_program</a>(source, prog_name); <a name="l00049"></a>00049 <a class="code" href="classviennacl_1_1ocl_1_1program.html">viennacl::ocl::program</a> &amp; prog_ = context_.<a class="code" href="classviennacl_1_1ocl_1_1context.html#a9258b6b0121e6f1bebe7b83b9e2a625a" title="Returns the program with the provided name.">get_program</a>(prog_name); <a name="l00050"></a>00050 prog_.<a class="code" href="classviennacl_1_1ocl_1_1program.html#a17bee920a38ba6e5158f5c807f88fd92" title="Adds a kernel to the program.">add_kernel</a>(<span class="stringliteral">&quot;bidiag_pack&quot;</span>); <a name="l00051"></a>00051 prog_.<a class="code" href="classviennacl_1_1ocl_1_1program.html#a17bee920a38ba6e5158f5c807f88fd92" title="Adds a kernel to the program.">add_kernel</a>(<span class="stringliteral">&quot;house_col&quot;</span>); <a name="l00052"></a>00052 prog_.<a class="code" href="classviennacl_1_1ocl_1_1program.html#a17bee920a38ba6e5158f5c807f88fd92" title="Adds a kernel to the program.">add_kernel</a>(<span class="stringliteral">&quot;inverse_signs&quot;</span>); <a name="l00053"></a>00053 prog_.<a class="code" href="classviennacl_1_1ocl_1_1program.html#a17bee920a38ba6e5158f5c807f88fd92" title="Adds a kernel to the program.">add_kernel</a>(<span class="stringliteral">&quot;transpose_inplace&quot;</span>); <a name="l00054"></a>00054 prog_.<a class="code" href="classviennacl_1_1ocl_1_1program.html#a17bee920a38ba6e5158f5c807f88fd92" title="Adds a kernel to the program.">add_kernel</a>(<span class="stringliteral">&quot;house_row&quot;</span>); <a name="l00055"></a>00055 prog_.<a class="code" href="classviennacl_1_1ocl_1_1program.html#a17bee920a38ba6e5158f5c807f88fd92" title="Adds a kernel to the program.">add_kernel</a>(<span class="stringliteral">&quot;copy_col&quot;</span>); <a name="l00056"></a>00056 prog_.<a class="code" href="classviennacl_1_1ocl_1_1program.html#a17bee920a38ba6e5158f5c807f88fd92" title="Adds a kernel to the program.">add_kernel</a>(<span class="stringliteral">&quot;copy_row&quot;</span>); <a name="l00057"></a>00057 prog_.<a class="code" href="classviennacl_1_1ocl_1_1program.html#a17bee920a38ba6e5158f5c807f88fd92" title="Adds a kernel to the program.">add_kernel</a>(<span class="stringliteral">&quot;givens_prev&quot;</span>); <a name="l00058"></a>00058 init_done[context_.<a class="code" href="classviennacl_1_1ocl_1_1context.html#a04a2acfc068529af42d1772382a20b90" title="Returns the context handle.">handle</a>().<a class="code" href="classviennacl_1_1ocl_1_1handle.html#a0f432d9c11ccab11ef350affd8791e47">get</a>()] = <span class="keyword">true</span>; <a name="l00059"></a>00059 } <span class="comment">//if</span> <a name="l00060"></a>00060 } <span class="comment">//init</span> <a name="l00061"></a>00061 }; <span class="comment">// struct</span> <a name="l00062"></a>00062 <a name="l00063"></a>00063 <a name="l00064"></a>00064 <a name="l00066"></a>00066 <span class="keyword">template</span> &lt;&gt; <a name="l00067"></a><a class="code" href="structviennacl_1_1linalg_1_1kernels_1_1svd_3_01double_00_011_01_4.html">00067</a> <span class="keyword">struct </span><a class="code" href="namespaceviennacl_1_1linalg.html#a7dd4119fc5dfef5c067af3b46bd86191" title="Computes the singular value decomposition of a matrix A. Experimental in 1.3.x.">svd</a>&lt;double, 1&gt; <a name="l00068"></a>00068 { <a name="l00069"></a><a class="code" href="structviennacl_1_1linalg_1_1kernels_1_1svd_3_01double_00_011_01_4.html#adb4613919bae5cf962e40b99da83dd96">00069</a> <span class="keyword">static</span> std::string program_name() <a name="l00070"></a>00070 { <a name="l00071"></a>00071 <span class="keywordflow">return</span> <span class="stringliteral">&quot;d_svd_1&quot;</span>; <a name="l00072"></a>00072 } <a name="l00073"></a><a class="code" href="structviennacl_1_1linalg_1_1kernels_1_1svd_3_01double_00_011_01_4.html#aedc913c139bb562646d3459b0ca28997">00073</a> <span class="keyword">static</span> <span class="keywordtype">void</span> init() <a name="l00074"></a>00074 { <a name="l00075"></a>00075 <a class="code" href="structviennacl_1_1ocl_1_1_d_o_u_b_l_e___p_r_e_c_i_s_i_o_n___c_h_e_c_k_e_r.html" title="Ensures that double precision types are only allocated if it is supported by the device. If double precision is requested for a device not capable of providing that, a double_precision_not_provided_error is thrown.">viennacl::ocl::DOUBLE_PRECISION_CHECKER&lt;double&gt;::apply</a>(); <a name="l00076"></a>00076 <span class="keyword">static</span> std::map&lt;cl_context, bool&gt; init_done; <a name="l00077"></a>00077 <a class="code" href="classviennacl_1_1ocl_1_1context.html">viennacl::ocl::context</a> &amp; context_ = <a class="code" href="namespaceviennacl_1_1ocl.html#a0c2a174533a0aca403ff7c4aa802edcf" title="Convenience function for returning the current context.">viennacl::ocl::current_context</a>(); <a name="l00078"></a>00078 <span class="keywordflow">if</span> (!init_done[context_.<a class="code" href="classviennacl_1_1ocl_1_1context.html#a04a2acfc068529af42d1772382a20b90" title="Returns the context handle.">handle</a>().<a class="code" href="classviennacl_1_1ocl_1_1handle.html#a0f432d9c11ccab11ef350affd8791e47">get</a>()]) <a name="l00079"></a>00079 { <a name="l00080"></a>00080 std::string source; <a name="l00081"></a>00081 std::string fp64_ext = <a class="code" href="namespaceviennacl_1_1ocl.html#a31b4bfa886efdae7ada1c0c5f2591ed5" title="Convenience function for returning the active device in the current context.">viennacl::ocl::current_device</a>().<a class="code" href="classviennacl_1_1ocl_1_1device.html#a36eb84a793487af78b6a620b418efb6a">double_support_extension</a>(); <a name="l00082"></a>00082 source.append(<a class="code" href="namespaceviennacl_1_1tools.html#ae999cf2ddbfc316b9bf2a3ba57dbe738" title="Create a double precision kernel out of a single precision kernel.">viennacl::tools::make_double_kernel</a>(<a class="code" href="namespaceviennacl_1_1linalg_1_1kernels.html#a3fd5dab58edbf6ddb6b0f99eaf20c379">svd_align1_bidiag_pack</a>, fp64_ext)); <a name="l00083"></a>00083 source.append(<a class="code" href="namespaceviennacl_1_1tools.html#ae999cf2ddbfc316b9bf2a3ba57dbe738" title="Create a double precision kernel out of a single precision kernel.">viennacl::tools::make_double_kernel</a>(<a class="code" href="namespaceviennacl_1_1linalg_1_1kernels.html#a7c441845a22bb2e88c554c44a19d99c2">svd_align1_house_col</a>, fp64_ext)); <a name="l00084"></a>00084 source.append(<a class="code" href="namespaceviennacl_1_1tools.html#ae999cf2ddbfc316b9bf2a3ba57dbe738" title="Create a double precision kernel out of a single precision kernel.">viennacl::tools::make_double_kernel</a>(<a class="code" href="namespaceviennacl_1_1linalg_1_1kernels.html#a55fc32e660cec21e8ce3dd66fd931cf7">svd_align1_inverse_signs</a>, fp64_ext)); <a name="l00085"></a>00085 source.append(<a class="code" href="namespaceviennacl_1_1tools.html#ae999cf2ddbfc316b9bf2a3ba57dbe738" title="Create a double precision kernel out of a single precision kernel.">viennacl::tools::make_double_kernel</a>(<a class="code" href="namespaceviennacl_1_1linalg_1_1kernels.html#af8d10c84f85258b0d65ee0b472643dad">svd_align1_transpose_inplace</a>, fp64_ext)); <a name="l00086"></a>00086 source.append(<a class="code" href="namespaceviennacl_1_1tools.html#ae999cf2ddbfc316b9bf2a3ba57dbe738" title="Create a double precision kernel out of a single precision kernel.">viennacl::tools::make_double_kernel</a>(<a class="code" href="namespaceviennacl_1_1linalg_1_1kernels.html#a20ae167312b1c4a1949f5ec1e5dbbcee">svd_align1_house_row</a>, fp64_ext)); <a name="l00087"></a>00087 source.append(<a class="code" href="namespaceviennacl_1_1tools.html#ae999cf2ddbfc316b9bf2a3ba57dbe738" title="Create a double precision kernel out of a single precision kernel.">viennacl::tools::make_double_kernel</a>(<a class="code" href="namespaceviennacl_1_1linalg_1_1kernels.html#a339e414537377281d57c8f32bc9761cd">svd_align1_copy_col</a>, fp64_ext)); <a name="l00088"></a>00088 source.append(<a class="code" href="namespaceviennacl_1_1tools.html#ae999cf2ddbfc316b9bf2a3ba57dbe738" title="Create a double precision kernel out of a single precision kernel.">viennacl::tools::make_double_kernel</a>(<a class="code" href="namespaceviennacl_1_1linalg_1_1kernels.html#afc41c39d90781edeaaebeca06c5e2943">svd_align1_copy_row</a>, fp64_ext)); <a name="l00089"></a>00089 source.append(<a class="code" href="namespaceviennacl_1_1tools.html#ae999cf2ddbfc316b9bf2a3ba57dbe738" title="Create a double precision kernel out of a single precision kernel.">viennacl::tools::make_double_kernel</a>(<a class="code" href="namespaceviennacl_1_1linalg_1_1kernels.html#a06a235546c2331eb3c1a2830296478dd">svd_align1_givens_prev</a>, fp64_ext)); <a name="l00090"></a>00090 std::string prog_name = program_name(); <a name="l00091"></a>00091 <span class="preprocessor"> #ifdef VIENNACL_BUILD_INFO</span> <a name="l00092"></a>00092 <span class="preprocessor"></span> std::cout &lt;&lt; <span class="stringliteral">&quot;Creating program &quot;</span> &lt;&lt; prog_name &lt;&lt; std::endl; <a name="l00093"></a>00093 <span class="preprocessor"> #endif</span> <a name="l00094"></a>00094 <span class="preprocessor"></span> context_.<a class="code" href="classviennacl_1_1ocl_1_1context.html#a87c0fbb40f4ee1928c72dbf8d19512bb" title="Adds a program to the context.">add_program</a>(source, prog_name); <a name="l00095"></a>00095 <a class="code" href="classviennacl_1_1ocl_1_1program.html">viennacl::ocl::program</a> &amp; prog_ = context_.<a class="code" href="classviennacl_1_1ocl_1_1context.html#a9258b6b0121e6f1bebe7b83b9e2a625a" title="Returns the program with the provided name.">get_program</a>(prog_name); <a name="l00096"></a>00096 prog_.<a class="code" href="classviennacl_1_1ocl_1_1program.html#a17bee920a38ba6e5158f5c807f88fd92" title="Adds a kernel to the program.">add_kernel</a>(<span class="stringliteral">&quot;bidiag_pack&quot;</span>); <a name="l00097"></a>00097 prog_.<a class="code" href="classviennacl_1_1ocl_1_1program.html#a17bee920a38ba6e5158f5c807f88fd92" title="Adds a kernel to the program.">add_kernel</a>(<span class="stringliteral">&quot;house_col&quot;</span>); <a name="l00098"></a>00098 prog_.<a class="code" href="classviennacl_1_1ocl_1_1program.html#a17bee920a38ba6e5158f5c807f88fd92" title="Adds a kernel to the program.">add_kernel</a>(<span class="stringliteral">&quot;inverse_signs&quot;</span>); <a name="l00099"></a>00099 prog_.<a class="code" href="classviennacl_1_1ocl_1_1program.html#a17bee920a38ba6e5158f5c807f88fd92" title="Adds a kernel to the program.">add_kernel</a>(<span class="stringliteral">&quot;transpose_inplace&quot;</span>); <a name="l00100"></a>00100 prog_.<a class="code" href="classviennacl_1_1ocl_1_1program.html#a17bee920a38ba6e5158f5c807f88fd92" title="Adds a kernel to the program.">add_kernel</a>(<span class="stringliteral">&quot;house_row&quot;</span>); <a name="l00101"></a>00101 prog_.<a class="code" href="classviennacl_1_1ocl_1_1program.html#a17bee920a38ba6e5158f5c807f88fd92" title="Adds a kernel to the program.">add_kernel</a>(<span class="stringliteral">&quot;copy_col&quot;</span>); <a name="l00102"></a>00102 prog_.<a class="code" href="classviennacl_1_1ocl_1_1program.html#a17bee920a38ba6e5158f5c807f88fd92" title="Adds a kernel to the program.">add_kernel</a>(<span class="stringliteral">&quot;copy_row&quot;</span>); <a name="l00103"></a>00103 prog_.<a class="code" href="classviennacl_1_1ocl_1_1program.html#a17bee920a38ba6e5158f5c807f88fd92" title="Adds a kernel to the program.">add_kernel</a>(<span class="stringliteral">&quot;givens_prev&quot;</span>); <a name="l00104"></a>00104 init_done[context_.<a class="code" href="classviennacl_1_1ocl_1_1context.html#a04a2acfc068529af42d1772382a20b90" title="Returns the context handle.">handle</a>().<a class="code" href="classviennacl_1_1ocl_1_1handle.html#a0f432d9c11ccab11ef350affd8791e47">get</a>()] = <span class="keyword">true</span>; <a name="l00105"></a>00105 } <span class="comment">//if</span> <a name="l00106"></a>00106 } <span class="comment">//init</span> <a name="l00107"></a>00107 }; <span class="comment">// struct</span> <a name="l00108"></a>00108 <a name="l00109"></a>00109 <a name="l00110"></a>00110 } <span class="comment">//namespace kernels</span> <a name="l00111"></a>00111 } <span class="comment">//namespace linalg</span> <a name="l00112"></a>00112 } <span class="comment">//namespace viennacl</span> <a name="l00113"></a>00113 <span class="preprocessor">#endif</span> </pre></div></div><!-- contents --> <hr class="footer"/><address class="footer"><small> Generated on Thu Aug 9 2012 19:49:08 for ViennaCL - The Vienna Computing Library by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.7.6.1 </small></address> </body> </html>
deps/boost/doc/html/boost_asio/reference/ip__icmp/type.html
laborautonomo/poedit
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>ip::icmp::type</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="../../../boost_asio.html" title="Boost.Asio"> <link rel="up" href="../ip__icmp.html" title="ip::icmp"> <link rel="prev" href="socket.html" title="ip::icmp::socket"> <link rel="next" href="v4.html" title="ip::icmp::v4"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr> <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../boost.png"></td> <td align="center"><a href="../../../../../index.html">Home</a></td> <td align="center"><a href="../../../../../libs/libraries.htm">Libraries</a></td> <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td> <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td> <td align="center"><a href="../../../../../more/index.htm">More</a></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="socket.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../ip__icmp.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="v4.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h4 class="title"> <a name="boost_asio.reference.ip__icmp.type"></a><a class="link" href="type.html" title="ip::icmp::type">ip::icmp::type</a> </h4></div></div></div> <p> <a class="indexterm" name="idp87921880"></a> Obtain an identifier for the type of the protocol. </p> <pre class="programlisting"><span class="keyword">int</span> <span class="identifier">type</span><span class="special">()</span> <span class="keyword">const</span><span class="special">;</span> </pre> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2003-2013 Christopher M. Kohlhoff<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="socket.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../ip__icmp.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="v4.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
build/master/Khill/Lavacharts/Traits/VerticalAxisTrait.html
kevinkhill/lavacharts-api
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="robots" content="index, follow, all" /> <title>Khill\Lavacharts\Traits\VerticalAxisTrait | Lavacharts API</title> <link rel="stylesheet" type="text/css" href="../../../css/bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="../../../css/bootstrap-theme.min.css"> <link rel="stylesheet" type="text/css" href="../../../css/sami.css"> <script src="../../../js/jquery-1.11.1.min.js"></script> <script src="../../../js/bootstrap.min.js"></script> <script src="../../../js/typeahead.min.js"></script> <script src="../../../sami.js"></script> <meta name="MobileOptimized" content="width"> <meta name="HandheldFriendly" content="true"> <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1"> <link rel="icon" href="../../../images/favicon.ico" type="image/x-icon"> </head> <body id="class" data-name="class:Khill_Lavacharts_Traits_VerticalAxisTrait" data-root-path="../../../"> <div id="content"> <div id="left-column"> <div id="control-panel"> <form id="search-form" action="../../../search.html" method="GET"> <span class="glyphicon glyphicon-search"></span> <input name="search" class="typeahead form-control" type="search" placeholder="Search"> </form> </div> <div id="api-tree"></div> </div> <div id="right-column"> <nav id="site-nav" class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-elements"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="../../../index.html"> <img src="../../../images/lava-logo.gif" /> </a> </div> <div class="collapse navbar-collapse" id="navbar-elements"> <ul class="nav navbar-nav"> <li><a href="../../../classes.html">Classes</a></li> <li><a href="../../../namespaces.html">Namespaces</a></li> <li><a href="../../../interfaces.html">Interfaces</a></li> <li><a href="../../../traits.html">Traits</a></li> <li><a href="../../../doc-index.html">Index</a></li> <li><a href="../../../search.html">Search</a></li> </ul> </div> </div> </nav> <div class="namespace-breadcrumbs"> <ol class="breadcrumb"> <li><span class="label label-default">trait</span></li> <li><a href="../../../Khill.html">Khill</a></li> <li><a href="../../../Khill/Lavacharts.html">Lavacharts</a></li> <li><a href="../../../Khill/Lavacharts/Traits.html">Traits</a></li> <li>VerticalAxisTrait</li> </ol> </div> <div id="page-content"> <div class="page-header"> <h1>VerticalAxisTrait</h1> </div> <p> trait <strong>VerticalAxisTrait</strong> (<a href="https://github.com/khill/lavacharts/blob/master/src/Traits/VerticalAxisTrait.php">View source</a>) </p> <h2>Methods</h2> <div class="container-fluid underlined"> <div class="row"> <div class="col-md-2 type"> <a href="../../../Khill/Lavacharts/Charts/Chart.html"><abbr title="Khill\Lavacharts\Charts\Chart">Chart</abbr></a> </div> <div class="col-md-8 type"> <a href="#method_vAxis">vAxis</a>( array $verticalAxisConfig) <p>An object with members to configure various vertical axis elements.</p> </div> <div class="col-md-2"></div> </div> </div> <h2>Details</h2> <div id="method-details"> <div class="method-item"> <h3 id="method_vAxis"> <div class="location">at line 18</div> <code> <a href="../../../Khill/Lavacharts/Charts/Chart.html"><abbr title="Khill\Lavacharts\Charts\Chart">Chart</abbr></a> <strong>vAxis</strong>( array $verticalAxisConfig)</code> </h3> <div class="details"> <div class="method-description"> <p>An object with members to configure various vertical axis elements.</p> <p>To specify properties of this property, create a new VerticalAxis object, set the values then pass it to this function or to the constructor.</p> </div> <div class="tags"> <h4>Parameters</h4> <table class="table table-condensed"> <tr> <td> array</td> <td>$verticalAxisConfig</td> <td> </td> </tr> </table> <h4>Return Value</h4> <table class="table table-condensed"> <tr> <td> <a href="../../../Khill/Lavacharts/Charts/Chart.html"><abbr title="Khill\Lavacharts\Charts\Chart">Chart</abbr></a></td> <td> </td> </tr> </table> </div> </div> </div> </div> </div> <div id="footer"> Generated by <a href="http://sami.sensiolabs.org/">Sami, the API Documentation Generator</a>. </div> </div> </div> </body> </html>
playerframework/Web.Html5/html/accessibility.html
bondarenkod/pf-arm-deploy-error
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width"> <title>HTML5 Player Framework - Accessibility Example</title> <link rel="stylesheet" href="../css/playerframework.min.css"> <link rel="stylesheet" href="../css/style.css"> <script src="../js/playerframework.min.js"></script> </head> <body> <h1>HTML5 Player Framework</h1> <h2>Accessibility Example</h2> <div id="myVideoContainer" class="pf-container"></div> <script> var myPlayer = new PlayerFramework.Player("myVideoContainer", { mediaPluginFallbackOrder: [ "VideoElementMediaPlugin", "SilverlightMediaPlugin" ], //mediaPluginFallbackOrder: [ "SilverlightMediaPlugin", "VideoElementMediaPlugin" ], //mediaPluginFallbackOrder: [ "HyperlinkMediaPlugin" ], width: "480px", height: "320px", pluginOptions: { // Override the default access keys. ControlStripPlugin: { accessKeys: { toggleKey: "0", playKey: "1", muteKey: "2", fullBrowserKey: "3" } }, ChapterTrackControlPlugin: { accessKeys: { skipBackKey: "4", skipForwardKey: "5" } }, TrackSelectorControlPlugin: { accessKeys: { trackSelectorKey: "6" } }, PlaylistControlPlugin: { accessKeys: { toggleKey: "7", arrowLeftKey: "8", arrowRightKey: "9" } } }, playlist: [ // A playlist to test all of the access keys... { title: "Real PC Pride", sources: [ { src: "http://smf.blob.core.windows.net/samples/videos/RealPCPride.mp4", type: 'video/mp4; codecs="avc1.42E01E, mp4a.40.2"' }, { src: "http://smf.blob.core.windows.net/samples/videos/RealPCPride.ogg", type: 'video/ogg; codecs="theora, vorbis"' } ], textTracks: [ { label: "English", src: "http://smf.blob.core.windows.net/samples/videos/RealPCPride.en.captions.xml", kind: "captions" }, { label: "Spanish", src: "http://smf.blob.core.windows.net/samples/videos/RealPCPride.es.captions.xml", kind: "captions" } ], chapters: [ new PlayerFramework.TextTrackCue( { startTime: 10 }), new PlayerFramework.TextTrackCue( { startTime: 20 }), new PlayerFramework.TextTrackCue( { startTime: 30 }) ] }, { title: "Big Buck Bunny", sources: [ { src: "http://streams.smooth.vertigo.com/BigBuckBunny_30sec/bigbuck.ism/manifest", type: "text/xml" }, { src: "http://smf.blob.core.windows.net/samples/videos/bigbuck.mp4", type: 'video/mp4; codecs="avc1.42E01E, mp4a.40.2"' }, { src: "http://smf.blob.core.windows.net/samples/videos/bigbuck.webm", type: 'video/webm; codecs="vp8, vorbis"' }, { src: "http://smf.blob.core.windows.net/samples/videos/bigbuck.ogv", type: 'video/ogg; codecs="theora, vorbis"' } ] }, { title: "DFXP Test", sources: [ { src: "http://smf.blob.core.windows.net/samples/videos/dfxptest.mp4", type: 'video/mp4; codecs="avc1.42E01E, mp4a.40.2"' }, { src: "http://smf.blob.core.windows.net/samples/videos/dfxptest.ogv", type: 'video/ogg; codecs="theora, vorbis"' } ] } ] }); </script> </body> </html>
tags/Java-SE/index.html
jianglilinx/jianglilinx.github.io
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Tags: Java SE | iPopker&#39;s Blog | 放我去写代码</title> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <meta name="theme-color" content="#3F51B5"> <meta name="keywords" content="Java"> <meta name="description" content="放我去写代码"> <meta name="keywords" content="Java"> <meta property="og:type" content="website"> <meta property="og:title" content="iPopker&#39;s Blog"> <meta property="og:url" content="http://ipopker.com/tags/Java-SE/index.html"> <meta property="og:site_name" content="iPopker&#39;s Blog"> <meta property="og:description" content="放我去写代码"> <meta property="og:locale" content="zh-CN"> <meta name="twitter:card" content="summary"> <meta name="twitter:title" content="iPopker&#39;s Blog"> <meta name="twitter:description" content="放我去写代码"> <link rel="alternate" type="application/atom+xml" title="iPopker&#39;s Blog" href="/atom.xml"> <link rel="shortcut icon" href="/favicon.ico"> <link rel="stylesheet" href="//unpkg.com/hexo-theme-material-indigo@latest/css/style.css"> <script>window.lazyScripts=[]</script> <!-- custom head --> </head> <body> <div id="loading" class="active"></div> <aside id="menu" > <div class="inner flex-row-vertical"> <a href="javascript:;" class="header-icon waves-effect waves-circle waves-light" id="menu-off"> <i class="icon icon-lg icon-close"></i> </a> <div class="brand-wrap" style="background-image:url(/img/brand.jpg)"> <div class="brand"> <a href="/" class="avatar waves-effect waves-circle waves-light"> <img src="/img/avatar.jpg"> </a> <hgroup class="introduce"> <h5 class="nickname">iPopker</h5> <a href="mailto:j172045149@163.com" title="j172045149@163.com" class="mail">j172045149@163.com</a> </hgroup> </div> </div> <div class="scroll-wrap flex-col"> <ul class="nav"> <li class="waves-block waves-effect"> <a href="/" > <i class="icon icon-lg icon-home"></i> 主页 </a> </li> <li class="waves-block waves-effect"> <a href="/archives" > <i class="icon icon-lg icon-archives"></i> Archives </a> </li> <li class="waves-block waves-effect active"> <a href="/tags" > <i class="icon icon-lg icon-tags"></i> Tags </a> </li> <li class="waves-block waves-effect"> <a href="https://github.com/Popker" target="_blank" > <i class="icon icon-lg icon-github"></i> Github </a> </li> </ul> </div> </div> </aside> <main id="main"> <header class="top-header" id="header"> <div class="flex-row"> <a href="javascript:;" class="header-icon waves-effect waves-circle waves-light on" id="menu-toggle"> <i class="icon icon-lg icon-navicon"></i> </a> <div class="flex-col header-title ellipsis">Tags: Java SE</div> <div class="search-wrap" id="search-wrap"> <a href="javascript:;" class="header-icon waves-effect waves-circle waves-light" id="back"> <i class="icon icon-lg icon-chevron-left"></i> </a> <input type="text" id="key" class="search-input" autocomplete="off" placeholder="输入感兴趣的关键字"> <a href="javascript:;" class="header-icon waves-effect waves-circle waves-light" id="search"> <i class="icon icon-lg icon-search"></i> </a> </div> <a href="javascript:;" class="header-icon waves-effect waves-circle waves-light" id="menuShare"> <i class="icon icon-lg icon-share-alt"></i> </a> </div> </header> <header class="content-header tags-header"> <div class="container fade-scale"> <h1 class="title">Tags: Java SE</h1> <h5 class="subtitle"> </h5> </div> <div class="tabs-bar container"> <nav class="tags-list"> <a href="/tags" style="-webkit-order:-1;order:-1" class="tags-list-item waves-effect waves-button waves-light ">全部</a> <a href="/tags/Java-SE/" style="-webkit-order:0;order:0" class="tags-list-item waves-effect waves-button waves-light active">Java SE</a> <a href="/tags/Linux/" style="-webkit-order:1;order:1" class="tags-list-item waves-effect waves-button waves-light">Linux</a> <a href="/tags/操作系统/" style="-webkit-order:2;order:2" class="tags-list-item waves-effect waves-button waves-light">操作系统</a> <a href="/tags/MySQL/" style="-webkit-order:3;order:3" class="tags-list-item waves-effect waves-button waves-light">MySQL</a> <a href="/tags/安全/" style="-webkit-order:4;order:4" class="tags-list-item waves-effect waves-button waves-light">安全</a> <a href="/tags/kafka/" style="-webkit-order:5;order:5" class="tags-list-item waves-effect waves-button waves-light">kafka</a> <a href="/tags/分布式理论基础/" style="-webkit-order:6;order:6" class="tags-list-item waves-effect waves-button waves-light">分布式理论基础</a> </nav> <!-- PC show more--> <div class="tags-list-more"> <a href="javascript:;" onclick="BLOG.tabBar(this)" class="action tags-list-item waves-effect waves-circle waves-light"><i class="icon icon-ellipsis-h"></i></a> </div> </div> </header> <div class="container body-wrap fade"> <div class="waterfall"> <div class="waterfall-item"> <article class="article-card archive-article"> <div class="post-meta"> <time class="post-time" title="2018-09-04 16:16:32" datetime="2018-09-04T08:16:32.000Z" itemprop="datePublished">2018-09-04</time> </div> <h3 class="post-title" itemprop="name"> <a class="post-title-link" href="/2018/09/04/Java基础-OIO的使用/">Java 网络编程基础(一)- IO</a> </h3> <div class="post-footer"> <ul class="article-tag-list"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/Java-SE/">Java SE</a></li></ul> </div> </article> </div> </div> </div> <footer class="footer"> <div class="top"> <p> <span id="busuanzi_container_site_uv" style='display:none'> 站点总访客数:<span id="busuanzi_value_site_uv"></span> </span> <span id="busuanzi_container_site_pv" style='display:none'> 站点总访问量:<span id="busuanzi_value_site_pv"></span> </span> </p> <p> <span><a href="/atom.xml" target="_blank" class="rss" title="rss"><i class="icon icon-lg icon-rss"></i></a></span> <span>博客内容遵循 <a rel="license" href="https://creativecommons.org/licenses/by-nc-sa/4.0/deed.zh">知识共享 署名 - 非商业性 - 相同方式共享 4.0 国际协议</a></span> </p> </div> <div class="bottom"> <p><span>iPopker &copy; 2017 - 2018</span> <span> Power by <a href="http://hexo.io/" target="_blank">Hexo</a> Theme <a href="https://github.com/yscoder/hexo-theme-indigo" target="_blank">indigo</a> </span> </p> </div> </footer> </main> <div class="mask" id="mask"></div> <a href="javascript:;" id="gotop" class="waves-effect waves-circle waves-light"><span class="icon icon-lg icon-chevron-up"></span></a> <div class="global-share" id="globalShare"> <ul class="reset share-icons"> <li> <a class="weibo share-sns" target="_blank" href="http://service.weibo.com/share/share.php?url=http://ipopker.com/tags/Java-SE/&title=iPopker's Blog&pic=http://ipopker.com/img/avatar.jpg" data-title="微博"> <i class="icon icon-weibo"></i> </a> </li> <li> <a class="weixin share-sns wxFab" href="javascript:;" data-title="微信"> <i class="icon icon-weixin"></i> </a> </li> <li> <a class="qq share-sns" target="_blank" href="http://connect.qq.com/widget/shareqq/index.html?url=http://ipopker.com/tags/Java-SE/&title=iPopker's Blog&source=放我去写代码" data-title=" QQ"> <i class="icon icon-qq"></i> </a> </li> <li> <a class="facebook share-sns" target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=http://ipopker.com/tags/Java-SE/" data-title=" Facebook"> <i class="icon icon-facebook"></i> </a> </li> <li> <a class="twitter share-sns" target="_blank" href="https://twitter.com/intent/tweet?text=iPopker's Blog&url=http://ipopker.com/tags/Java-SE/&via=http://ipopker.com" data-title=" Twitter"> <i class="icon icon-twitter"></i> </a> </li> <li> <a class="google share-sns" target="_blank" href="https://plus.google.com/share?url=http://ipopker.com/tags/Java-SE/" data-title=" Google+"> <i class="icon icon-google-plus"></i> </a> </li> </ul> </div> <div class="page-modal wx-share" id="wxShare"> <a class="close" href="javascript:;"><i class="icon icon-close"></i></a> <p>扫一扫,分享到微信</p> <img src="//api.qrserver.com/v1/create-qr-code/?data=http://ipopker.com/tags/Java-SE/" alt="微信分享二维码"> </div> <script src="//cdn.bootcss.com/node-waves/0.7.4/waves.min.js"></script> <script> var BLOG = { ROOT: '/', SHARE: true, REWARD: false }; </script> <script src="//unpkg.com/hexo-theme-material-indigo@latest/js/main.min.js"></script> <div class="search-panel" id="search-panel"> <ul class="search-result" id="search-result"></ul> </div> <template id="search-tpl"> <li class="item"> <a href="{path}" class="waves-block waves-effect"> <div class="title ellipsis" title="{title}">{title}</div> <div class="flex-row flex-middle"> <div class="tags ellipsis"> {tags} </div> <time class="flex-col time">{date}</time> </div> </a> </li> </template> <script src="//unpkg.com/hexo-theme-material-indigo@latest/js/search.min.js" async></script> <script async src="//dn-lbstatics.qbox.me/busuanzi/2.3/busuanzi.pure.mini.js"></script> </body> </html>
markup/modules/product/product-main.html
mik639/shopgadgets
<section block="product-main"> <div elem="row"> <div elem="column"> {{> product/image-slider}} </div> <div elem="column"> {{> breadcrumps/breadcrumps product.breadcrumps}} <h1>Беспроводная автозарядка Magic BOX</h1> <div elem="info"> <div elem="delivery"> <div block="delivery-link"><span>Доставка по России</span> <div elem="hops"> <div class="format"> <strong>Способы доставки</strong> <ul> <li>Доставка по Санкт-Петербургу осуществляется курьером (стоимость доставки по СПб составляет 200 руб). </li> <li>Доставка по России осуществляется "Почтой России" с наложенным платежом (оплата заказа осуществляется при получении заказа на Почте). </li> </ul> </div> </div> </div> </div> <div elem="price-block"> <span elem="oldprice">3 900 <span class="rub">&#8399;</span></span> <span elem="price" mod="with_old">2 900 <span class="rub">&#8399;</span></span> </div> <div elem="controls"> <div elem="controls-select"> Цвет: {{> elements/select product.colorSelect}} </div> <div elem="controls-count"> Количество: {{> elements/count}} </div> </div> <div elem="btn"> <div elem="btn-col"> <a href="#add-product" block="btn" mod="yellow, large" mix="block:modal-link">+ <i class="cart-btn__icon"></i> В корзину</a> </div> <div elem="btn-col"> <a href="#one-click" block="btn" mod="light-blue, large">Купить в один клик</a> </div> </div> <div elem="gift"> {{> elements/block-gift product.gift}} </div> </div> </div> </div> </section>
oldposts/275.html
codelifeliwan/codelifeliwan.github.io
<!doctype html> <!--[if IE 6]> <html id="ie6" lang="zh-CN"> <![endif]--> <!--[if IE 7]> <html id="ie7" lang="zh-CN"> <![endif]--> <!--[if IE 8]> <html id="ie8" lang="zh-CN"> <![endif]--> <!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!--> <html lang="zh-CN"> <!--<![endif]--> <head> <link rel="stylesheet" type="text/css" media="all" href="stylesheets/style.css"> <link rel="stylesheet" id="codebox-css" href="stylesheets/codebox.css" type="text/css" media="screen"> </head> <body class="attachment single single-attachment postid-275 attachmentid-275 attachment-bmp content-sidebar"> <div id="page" class="hfeed"> <header id="branding" role="banner"> <hgroup> <h1 id="site-title"><span><a href="http://codelifeliwan.github.io/" title="Code_Life_LiWan" rel="home">Code_Life_LiWan</a></span></h1> <h2 id="site-description">My heart will go on and on…</h2> </hgroup> <!-- #access --> </header> <!-- #branding --> <div id="main" class="clearfix"> <div id="primary"> <div id="content" role="main"> <!-- #nav-single --> <article id="post-275" class="post-275 attachment type-attachment status-inherit hentry"> <header class="entry-header"> <h1 class="entry-title">图片2</h1> <div class="entry-meta"> <span class="meta-prep meta-prep-entry-date">Published </span> <span class="entry-date"><abbr class="published" title="下午 6:49">9 九月, 2012</abbr></span> at <a href="http://codelifeliwan.github.io/wp-content/uploads/2012/09/图片2.bmp" title="Link to full-size image"> × </a> in <a href="http://codelifeliwan.github.io/?attachment_id=275" title="Return to 图片2" rel="gallery">图片2</a> </div> <!-- .entry-meta --> </header> <!-- .entry-header --> <div class="entry-content"> <div class="entry-content"> <div class="entry-attachment"> <div class="attachment"> <a href="http://codelifeliwan.github.io/?attachment_id=1001" title="图片2" rel="attachment"><img width="1" height="1" src="uploads/2012/09/图片2.bmp" class="attachment-848x1024" alt="图片2"></a> </div> <!-- .attachment --> </div> <!-- .entry-attachment --> <div class="entry-description"> </div> <!-- .entry-description --> </div> </div> <!-- .entry-content --> <!-- .entry-meta --> </article> <!-- #post-275 --> <!-- #comments --> </div> <!-- #content --> </div> <!-- #primary --> </div> <!-- #main --> <!-- #colophon --> </div> <!-- #page --> <!-- JiaThis Button BEGIN --> <!-- JiaThis Button END --> </body> </html>
public/modules/core/views/header.client.view.html
voodoo-rific/voodoo2.0
<div class="container" data-ng-controller="HeaderController"> <div class="navbar-header"> <button class="navbar-toggle" type="button" data-ng-click="toggleCollapsibleMenu()"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a href="/#!/" class="navbar-brand">Project Voodoo</a> </div> <nav class="collapse navbar-collapse" collapse="!isCollapsed" role="navigation"> <ul class="nav navbar-nav" data-ng-if="menu.shouldRender(authentication.user);"> <li data-ng-repeat="item in menu.items | orderBy: 'position'" data-ng-if="item.shouldRender(authentication.user);" ng-switch="item.menuItemType" ui-route="{{item.uiRoute}}" class="{{item.menuItemClass}}" ng-class="{active: ($uiRoute)}" dropdown="item.menuItemType === 'dropdown'"> <a ng-switch-when="dropdown" class="dropdown-toggle" dropdown-toggle> <span data-ng-bind="item.title"></span> <b class="caret"></b> </a> <ul ng-switch-when="dropdown" class="dropdown-menu"> <li data-ng-repeat="subitem in item.items | orderBy: 'position'" data-ng-if="subitem.shouldRender(authentication.user);" ui-route="{{subitem.uiRoute}}" ng-class="{active: $uiRoute}"> <a href="/#!/{{subitem.link}}" data-ng-bind="subitem.title"></a> </li> </ul> <a ng-switch-default href="/#!/{{item.link}}" data-ng-bind="item.title"></a> </li> </ul> <ul class="nav navbar-nav navbar-right" data-ng-hide="authentication.user"> <li ui-route="/signup" ng-class="{active: $uiRoute}"> <a href="/#!/signup">Sign Up</a> </li> <li class="divider-vertical"></li> <li ui-route="/signin" ng-class="{active: $uiRoute}"> <a href="/#!/signin">Sign In</a> </li> </ul> <ul class="nav navbar-nav navbar-right" data-ng-show="authentication.user"> <li class="dropdown" dropdown> <a href="#" class="dropdown-toggle" data-toggle="dropdown" dropdown-toggle> <span data-ng-bind="authentication.user.displayName"></span> <b class="caret"></b> </a> <ul class="dropdown-menu"> <li> <a href="/#!/settings/profile">Edit Profile</a> </li> <li> <a href="/#!/settings/accounts">Manage Social Accounts</a> </li> <li data-ng-show="authentication.user.provider === 'local'"> <a href="/#!/settings/password">Change Password</a> </li> <li class="divider"></li> <li> <a href="/auth/signout">Signout</a> </li> </ul> </li> </ul> </nav> </div>
lib/assets/css/css_compiled/@{photonImagePath}plugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/modernizr.custom.js.html
user-tony/photon-rails
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Login Page - Photon Admin Panel Theme</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0"> <link rel="shortcut icon" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/favicon.ico"/> <link rel="apple-touch-icon" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/iosicon.png"/> <link rel="stylesheet" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/css/css_compiled/photon-min.css?v1.1" media="all"/> <link rel="stylesheet" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/css/css_compiled/photon-min-part2.css?v1.1" media="all"/> <link rel="stylesheet" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/css/css_compiled/photon-responsive-min.css?v1.1" media="all"/> <!--[if IE]> <link rel="stylesheet" type="text/css" href="css/css_compiled/ie-only-min.css?v1.1" /> <![endif]--> <!--[if lt IE 9]> <link rel="stylesheet" type="text/css" href="css/css_compiled/ie8-only-min.css?v1.1" /> <script type="text/javascript" src="js/plugins/excanvas.js"></script> <script type="text/javascript" src="js/plugins/html5shiv.js"></script> <script type="text/javascript" src="js/plugins/respond.min.js"></script> <script type="text/javascript" src="js/plugins/fixFontIcons.js"></script> <![endif]--> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/jquery-ui.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/bootstrap/bootstrap.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/modernizr.custom.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/jquery.pnotify.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/less-1.3.1.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/xbreadcrumbs.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/jquery.maskedinput-1.3.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/jquery.autotab-1.1b.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/charCount.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/jquery.textareaCounter.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/elrte.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/elrte.en.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/select2.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/jquery-picklist.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/jquery.validate.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/additional-methods.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/jquery.form.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/jquery.metadata.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/jquery.mockjax.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/jquery.uniform.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/jquery.tagsinput.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/jquery.rating.pack.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/farbtastic.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/jquery.timeentry.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/jquery.dataTables.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/jquery.jstree.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/dataTables.bootstrap.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/jquery.mousewheel.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/jquery.mCustomScrollbar.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/jquery.flot.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/jquery.flot.stack.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/jquery.flot.pie.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/jquery.flot.resize.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/raphael.2.1.0.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/justgage.1.0.1.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/jquery.qrcode.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/jquery.clock.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/jquery.countdown.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/jquery.jqtweet.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/jquery.cookie.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/bootstrap-fileupload.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/prettify/prettify.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/bootstrapSwitch.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/plugins/mfupload.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/js/common.js"></script> </head> <body class="body-login"> <div class="nav-fixed-topright" style="visibility: hidden"> <ul class="nav nav-user-menu"> <li class="user-sub-menu-container"> <a href="javascript:;"> <i class="user-icon"></i><span class="nav-user-selection">Theme Options</span><i class="icon-menu-arrow"></i> </a> <ul class="nav user-sub-menu"> <li class="light"> <a href="javascript:;"> <i class='icon-photon stop'></i>Light Version </a> </li> <li class="dark"> <a href="javascript:;"> <i class='icon-photon stop'></i>Dark Version </a> </li> </ul> </li> <li> <a href="javascript:;"> <i class="icon-photon mail"></i> </a> </li> <li> <a href="javascript:;"> <i class="icon-photon comment_alt2_stroke"></i> <div class="notification-count">12</div> </a> </li> </ul> </div> <script> $(function(){ setTimeout(function(){ $('.nav-fixed-topright').removeAttr('style'); }, 300); $(window).scroll(function(){ if($('.breadcrumb-container').length){ var scrollState = $(window).scrollTop(); if (scrollState > 0) $('.nav-fixed-topright').addClass('nav-released'); else $('.nav-fixed-topright').removeClass('nav-released') } }); $('.user-sub-menu-container').on('click', function(){ $(this).toggleClass('active-user-menu'); }); $('.user-sub-menu .light').on('click', function(){ if ($('body').is('.light-version')) return; $('body').addClass('light-version'); setTimeout(function() { $.cookie('themeColor', 'light', { expires: 7, path: '/' }); }, 500); }); $('.user-sub-menu .dark').on('click', function(){ if ($('body').is('.light-version')) { $('body').removeClass('light-version'); $.cookie('themeColor', 'dark', { expires: 7, path: '/' }); } }); }); </script> <div class="container-login"> <div class="form-centering-wrapper"> <div class="form-window-login"> <div class="form-window-login-logo"> <div class="login-logo"> <img src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/images/photon/js/bootstrap/js/bootstrap/js/plugins/images/photon/login-logo@2x.png" alt="Photon UI"/> </div> <h2 class="login-title">Welcome to Photon UI!</h2> <div class="login-member">Not a Member?&nbsp;<a href="modernizr.custom.js.html#">Sign Up &#187;</a> <a href="modernizr.custom.js.html#" class="btn btn-facebook"><i class="icon-fb"></i>Login with Facebook<i class="icon-fb-arrow"></i></a> </div> <div class="login-or">Or</div> <div class="login-input-area"> <form method="POST" action="dashboard.php"> <span class="help-block">Login With Your Photon Account</span> <input type="text" name="email" placeholder="Email"> <input type="password" name="password" placeholder="Password"> <button type="submit" class="btn btn-large btn-success btn-login">Login</button> </form> <a href="modernizr.custom.js.html#" class="forgot-pass">Forgot Your Password?</a> </div> </div> </div> </div> </div> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-1936460-27']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> </body> </html>
people/rr738hl8.html
slowe/panelshows
<html> <head> <title>Emo Philips's panel show appearances</title> <script type="text/javascript" src="../common.js"></script> <link rel="stylesheet" media="all" href="../style.css" type="text/css"/> <script type="text/javascript" src="../people.js"></script> <!--#include virtual="head.txt" --> </head> <body> <!--#include virtual="nav.txt" --> <div class="page"> <h1>Emo Philips's panel show appearances</h1> <p>Emo Philips (born 1956-02-07<sup><a href="https://en.wikipedia.org/wiki/Emo_Philips">[ref]</a></sup>) has appeared in <span class="total">1</span> episodes between 2006-2006. <a href="http://www.imdb.com/name/nm0680073">Emo Philips on IMDB</a>. <a href="https://en.wikipedia.org/wiki/Emo_Philips">Emo Philips on Wikipedia</a>. <a href="http://www.chortle.co.uk/comics/e/33657/">Emo Philips on Chortle</a>.</p> <div class="performerholder"> <table class="performer"> <tr style="vertical-align:bottom;"> <td><div style="height:100px;" class="performances male" title="1"></div><span class="year">2006</span></td> </tr> </table> </div> <ol class="episodes"> <li><strong>2006-07-07</strong> / <a href="../shows/8-out-of-10-cats.html">8 Out of 10 Cats</a></li> </ol> </div> </body> </html>
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/fb323592dc8dec099060c4816b8041890084a0215f1745b77e5bd6360af48344.html
simonmysun/praxis
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>18 --> 19</title> <link href="./../../assets/style.css" rel="stylesheet"> </head> <body> <h2>You have to be fast</h2> <a href="./01eb569ac5bad89631db395ec605b041658dab0e02951ade0bfb02a1cbb0e31a.html">Teleport</a> <hr> <a href="./../../about.md">About</a> (Spoilers! ) <script src="./../../assets/md5.js"></script> <script> window.currentLevel = 7; </script> <script src="./../../assets/script.js"></script> </body> </html>
CSS/01. CSS-Overview/Ticket/index.html
iliyaYanev/Telerik-Academy
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Ticket</title> <meta name="description" content="" /> <meta name="author" content="Iliya Yanev" /> <meta name="viewport" content="width=device-width; initial-scale=1.0" /> <link href="styles/style.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="wrapper"> <table> <thead> <tr> <th colspan="2" class="grey_text">Ticket ID: 84621</th> </tr> </thead> <tbody> <tr> <td class="white_text">Name:</td> <td><img src="imgs/circle.svg" alt="greendot"/><a href="#">Ivan Ivanov</a></td> </tr> <tr > <td>&nbsp;</td> <td class="red_text">No Active support</td> </tr> <tr> <td class="white_text">Email:</td> <td><a href="#">Ivannn@gmail.bg</a></td> </tr> <tr> <td class="white_text">Response Time:</td> <td class="grey_text">30hours, 20minutes left</td> </tr> <tr> <td class="white_text">Last Action:</td> <td><span class="grey_text"> Never been locked </span></td> </tr> <tr> <td>&nbsp;</td> <td><a href="#">Link to public post</a></td> </tr> <tr> <td class="white_text">Status:</td> <td class="orange_text">Not answered</td> </tr> </tbody> </table> </div> </body> </html>
static/test.html
appfromscratch/module-core
<html> <body> <h1>This is my Test File</h1> </body> </html>
app/templates/tokens.html
muce/va
{% extends "base.html" %} {% block title %}Vinyl Alert{% endblock %} {% block page_content %} {%- if current_user.is_authenticated() %} <div class="row"> <div class="large-12 columns"> <h2>MatchMaker Tokens</h2> <hr/> </div> </div> <div class="row"> <div class="large-12 columns"> <p> <table> {% for k, v in mm_items: %} <tr><td><b>{{ k }}:&nbsp;</b></td><td>{{ v }}</td></tr> {% endfor %} </table> </p> </div> </div> {% else %} <h3>Guest - Unauthorised. Please Register or Login</h3> {% endif %} {% endblock %}
html_sanitized/AlternativestoCUDA.html
knotman90/MSc-Thesis
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <HTML> <HEAD> <TITLE>Accelerating the new SCIARA-fv3 numerical model by different GPGPU strategies</TITLE> <META NAME="author" CONTENT="Davide Spataro"> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=utf-8"> <LINK REL="Start" HREF="index.html"> <LINK REL="Contents" HREF="toc.html"> <LINK REL="Prev" HREF="NvidiaVisualProfiler.html"> <LINK REL="Next" HREF="Introduction3.html"> <link rel="stylesheet" href="github-pandoc.css"> <link rel="stylesheet" href="http://cdn.jsdelivr.net/highlight.js/9.1.0/styles/default.min.css"> <script src="http://cdn.jsdelivr.net/highlight.js/9.1.0/highlight.min.js"></script> <script>hljs.initHighlightingOnLoad();</script> </HEAD> <BODY> <A HREF="toc.html">Contents</A> <A HREF="NvidiaVisualProfiler.html">Previous</A> <A HREF="Introduction3.html">Next</A> <HR NOSHADE> <H1 id="alternatives-to-cuda"><A NAME="6">Alternatives to CUDA</A></H1> <HR NOSHADE> <A HREF="toc.html">Contents</A> <A HREF="NvidiaVisualProfiler.html">Previous</A> <A HREF="Introduction3.html">Next</A> </BODY> </HTML>
_site/github/markdown.html
zhuxu1/zhuxu1.github.io
<!DOCTYPE html> <html> <head> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- CSS --> <link rel="stylesheet" href="https://zx4android.com/css/main.css"> <link rel="canonical" href="https://zhuxu1.github.iohttps://zx4android.com/github/markdown.html"> <link rel="alternate" type="application/rss+xml" title="Zhuxu's Blog" href="https://zhuxu1.github.iohttps://zx4android.com/feed.xml"> <!-- Google font --> <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Noto Sans"> <!-- font awesome --> <link rel="stylesheet" href="/css/font-awesome/css/font-awesome.min.css"> </head> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-75034651-1', 'auto'); ga('send', 'pageview'); </script> </head> <body> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Jekyll 教程</title> <meta name="description" content="Heading"> </head> <div class="wrapper"> <header class="post-header"> <center><div class="post-title" itemprop="name headline">Jekyll 教程</div> <div class="post-meta"><i class="fa fa-calendar-o"></i> <time datetime="29 Mar 2016" itemprop="datePublished">Mar 29 2016</time> &nbsp;&nbsp;•&nbsp;&nbsp;<i class="fa fa-user-secret"></i> <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">Benjamin</span> <br> <i class="fa fa-eye"></i> <span id="busuanzi_value_page_pv"><i class="fa fa-spinner fa-pulse"></i></span>˚C</span> </div> <div class="post-tags"> <a class="post-tags-item" href="https://zhuxu1.github.iohttps://zx4android.com/tags/">github</a> </div> </center> </header> <article class="post" itemscope itemtype="http://schema.org/BlogPosting"> <div class="post-content"> <center> <p>A brief introduction about Markdown Grammar. </p> </center> <h2>Directory</h2> </div> <div id="category"></div> <div class="post-content" itemprop="articleBody"> <h2 id="heading">Heading</h2> <p>Heading is really simple in Markdown, you can use <code class="highlighter-rouge">#</code> or <code class="highlighter-rouge">=</code> or <code class="highlighter-rouge">-</code>.</p> <p>Like this:</p> <p><code class="highlighter-rouge"># H1. Heading</code></p> <h1 id="h1-heading">H1. Heading</h1> <p><code class="highlighter-rouge">## H2. Heading</code></p> <h2 id="h2-heading">H2. Heading</h2> <p><code class="highlighter-rouge">### H3. Heading</code></p> <h3 id="h3-heading">H3. Heading</h3> <p><code class="highlighter-rouge">#### H4. Heading</code></p> <h4 id="h4-heading">H4. Heading</h4> <p><code class="highlighter-rouge">##### H5. Heading</code></p> <h5 id="h5-heading">H5. Heading</h5> <p><code class="highlighter-rouge">###### H6. Heading</code></p> <h6 id="h6-heading">H6. Heading</h6> <p>And like this:</p> <figure class="highlight"><pre><code class="language-md" data-lang="md">Heading ======</code></pre></figure> <h1 id="heading-1">Heading</h1> <figure class="highlight"><pre><code class="language-md" data-lang="md">Heading <span class="p">-------</span></code></pre></figure> <h2 id="heading-2">Heading</h2> <p>See? Really easy.</p> <h2 id="font">Font</h2> <p>There are three kinds of font in Markdown.</p> <h3 id="italic">Italic:</h3> <p><code class="highlighter-rouge">*Italic*</code></p> <p><em>Italic</em></p> <p><code class="highlighter-rouge">_Italic_</code></p> <p><em>Italic</em></p> <h3 id="bold">Bold:</h3> <p><code class="highlighter-rouge">**Bold**</code></p> <p><strong>Bold</strong></p> <p><code class="highlighter-rouge">__Bold__</code></p> <p><strong>Bold</strong></p> <h3 id="italic--bold">Italic &amp; Bold:</h3> <p><code class="highlighter-rouge">***Italic &amp; Bold***</code></p> <p><strong><em>Italic &amp; Bold</em></strong></p> <p><code class="highlighter-rouge">___Italic &amp; Bold___</code></p> <p><strong><em>Italic &amp; Bold</em></strong></p> <p>You can also do this:</p> <p><code class="highlighter-rouge">**Markdown is _fun_**</code></p> <p><strong>Markdown is <em>fun</em></strong></p> <h2 id="list">List</h2> <h3 id="ordered-list">Ordered list:</h3> <p><code class="highlighter-rouge">1. 2. 3. </code></p> <ol> <li>First</li> <li>Second</li> <li>Third</li> </ol> <h3 id="unordered-list">Unordered list:</h3> <p>There are three ways to make an unordered list:</p> <p><code class="highlighter-rouge">* AAA</code></p> <ul> <li>AAA</li> <li>BBB</li> <li>CCC</li> </ul> <p><code class="highlighter-rouge">- AAA</code></p> <ul> <li>AAA</li> <li>BBB</li> <li>CCC</li> </ul> <p><code class="highlighter-rouge">+ AAA</code></p> <ul> <li>AAA</li> <li>BBB</li> <li>CCC</li> </ul> <h2 id="block-quote">Block quote</h2> <p><code class="highlighter-rouge">&gt; War is Peace</code></p> <p><code class="highlighter-rouge">&gt; Freedom is Slavery</code></p> <p><code class="highlighter-rouge">&gt; Ignorance is Strength</code></p> <blockquote> <p>War is Peace</p> </blockquote> <blockquote> <p>Freedom is Slavery</p> </blockquote> <blockquote> <p>Ignorance is Strength</p> </blockquote> <p>You can also do this:</p> <p><code class="highlighter-rouge">&gt; * War is Peace</code></p> <p><code class="highlighter-rouge">&gt; * Freedom is Slavery</code></p> <p><code class="highlighter-rouge">&gt; * Ignorance is Stength</code></p> <blockquote> <ul> <li>War is Peace</li> </ul> </blockquote> <blockquote> <ul> <li>Freedom is Slavery</li> </ul> </blockquote> <blockquote> <ul> <li>Ignorance is Stength</li> </ul> </blockquote> <h2 id="link">Link</h2> <h3 id="simple-link">Simple link</h3> <p><code class="highlighter-rouge">&lt;http://itisbenjamin.github.io&gt;</code></p> <p><a href="http://itisbenjamin.github.io">http://itisbenjamin.github.io</a></p> <p>You can also do this when you insert an email address.</p> <h3 id="link-1">Link</h3> <p>You can add your link just behind your words:</p> <p><code class="highlighter-rouge">[Ben](www.itisbenjamin.github.io)</code></p> <p><a href="www.itisbenjamin.github.io">Ben</a></p> <p>And you can also do it like this:</p> <p><code class="highlighter-rouge">[about this link][1]</code></p> <p>Then put this line at anywhere you want in your post:</p> <p><code class="highlighter-rouge">[1]: link address</code></p> <h3 id="link-description">Link description</h3> <p>Add the link description behind the link address like this:</p> <p><code class="highlighter-rouge">[Ben](www.itisbenjamin.github.io "Ben")</code></p> <p><a href="www.itisbenjamin.github.io" title="Ben">Ben</a></p> <h2 id="image">Image</h2> <p><code class="highlighter-rouge">![Codes](/img/code.png)</code></p> <p><img src="/img/code.png" alt="Codes" /></p> <p>How to write the images’ descriptions are the same way as how you do it in links:</p> <p><code class="highlighter-rouge">![Codes](/img/code.png "Codes")</code></p> <p><img src="/img/code.png" alt="Codes" title="Codes" /></p> <h2 id="code">Code</h2> <p>You can use <code>``</code> to show your codes:</p> <p><code class="highlighter-rouge">`.default`</code></p> <p><code class="highlighter-rouge">.default</code></p> <p>If you wanna show a piece of codes, use 4 spaces or 1 tab.</p> <figure class="highlight"><pre><code class="language-html" data-lang="html"><span class="nt">&lt;div</span> <span class="na">class=</span><span class="s">"post-header-container&gt; &lt;div class="</span><span class="na">scrim</span> <span class="err">"</span><span class="nt">&gt;</span> <span class="nt">&lt;header</span> <span class="na">class=</span><span class="s">"post-header"</span><span class="nt">&gt;</span> <span class="nt">&lt;h1</span> <span class="na">class=</span><span class="s">"title"</span><span class="nt">&gt;</span>Jekyll 教程<span class="nt">&lt;/h1&gt;</span> <span class="nt">&lt;p</span> <span class="na">class=</span><span class="s">"info"</span><span class="nt">&gt;</span>by <span class="nt">&lt;strong&gt;</span>Benjamin<span class="nt">&lt;/strong&gt;&lt;/p&gt;</span> <span class="nt">&lt;/header&gt;</span> <span class="nt">&lt;/div&gt;</span> <span class="nt">&lt;/div&gt;</span></code></pre></figure> <h2 id="others">Others</h2> <h3 id="breaker">Breaker</h3> <p><code class="highlighter-rouge">---</code></p> <hr /> <p><code class="highlighter-rouge">***</code></p> <hr /> <p><code class="highlighter-rouge">- - - -</code></p> <hr /> <p>They all show a breaker.</p> <h2 id="footnote">Footnote</h2> <p><code class="highlighter-rouge">Something needs a footnote[^1].</code></p> <p><code class="highlighter-rouge">[^1]: This is a footnote.</code></p> <p>Something needs a footnote<sup id="fnref:1"><a href="#fn:1" class="footnote">1</a></sup>.</p> <p>Then this footnote will show at the end of this post.</p> <h2 id="delete">Delete</h2> <p><code class="highlighter-rouge">~~There is no tree waiting for me.~~</code></p> <p><del>There is no tree waiting for me.</del></p> <h2 id="table">Table</h2> <h3 id="a-simple-way">A simple way</h3> <p><code class="highlighter-rouge">A | B | C | D </code></p> <p><code class="highlighter-rouge">----- | ----- | ----- | -----</code></p> <p><code class="highlighter-rouge">a | b | c | d</code></p> <table> <thead> <tr> <th>A</th> <th>B</th> <th>C</th> <th>D</th> </tr> </thead> <tbody> <tr> <td>a</td> <td>b</td> <td>c</td> <td>d</td> </tr> </tbody> </table> <h3 id="make-words-at-left-center-or-right">Make words at left, center or right</h3> <p><code class="highlighter-rouge">left | center | center | right</code></p> <p><code class="highlighter-rouge">:-------- | :----------: | :----------: | -----:</code></p> <p><code class="highlighter-rouge">a | b | c | d</code></p> <table> <thead> <tr> <th style="text-align: left">left</th> <th style="text-align: center">center</th> <th style="text-align: center">center</th> <th style="text-align: right">right</th> </tr> </thead> <tbody> <tr> <td style="text-align: left">a</td> <td style="text-align: center">b</td> <td style="text-align: center">c</td> <td style="text-align: right">d</td> </tr> </tbody> </table> <div class="footnotes"> <ol> <li id="fn:1"> <p>This is a footnote. <a href="#fnref:1" class="reversefootnote">&#8617;</a></p> </li> </ol> </div> </div> <div> <div class="eof"></div> </div> <div class="share"> <!-- <p>Share this post with: </p> <a href="https://twitter.com/intent/tweet?text=Jekyll 教程@zhuxu1&amp;url=https://zhuxu1.github.iohttps://zx4android.com/github/markdown.html" class="twitter-share"> <span class="fa-stack fa-lg"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-twitter fa-stack-1x fa-inverse"></i> </span> </a> <a href="https://www.facebook.com/sharer/sharer.php?u=https://zhuxu1.github.iohttps://zx4android.com/github/markdown.html" class="facebook-share"> <span class="fa-stack fa-lg"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-facebook fa-stack-1x fa-inverse"></i> </span> </a> <a href="https://plus.google.com/share?url=https://zhuxu1.github.iohttps://zx4android.com/github/markdown.html" class="googleplus-share"> <span class="fa-stack fa-lg"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-google-plus fa-stack-1x fa-inverse"></i> </span> </a> !--> <!-- JiaThis Button BEGIN --> <!-- UY BEGIN --> <div id="uyan_frame"></div> <script type="text/javascript" src="http://v2.uyan.cc/code/uyan.js"></script> <!-- UY END --> <div class="jiathis_style"> <a class="jiathis_button_qzone"></a> <a class="jiathis_button_tsina"></a> <a class="jiathis_button_weixin"></a> <a class="jiathis_button_tieba"></a> <a class="jiathis_button_cqq"></a> <a class="jiathis_button_copy"></a> <a href="http://www.jiathis.com/share" class="jiathis jiathis_txt jiathis_separator jtico jtico_jiathis" target="_blank"></a> <a class="jiathis_counter_style"></a> </div> <script type="text/javascript" > var jiathis_config={ summary:"", shortUrl:true, hideMore:false } </script> <script type="text/javascript" src="http://v3.jiathis.com/code/jia.js" charset="utf-8"></script> <!-- JiaThis Button END --> </div> <div id="disqus_thread"></div> <script type="text/javascript"> /* * * CONFIGURATION VARIABLES * * */ var disqus_shortname = "zhuxu1"; var disqus_identifier = "/github/markdown"; var disqus_url = "https://zhuxu1.github.io/github/markdown.html"; (function() { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); })(); </script> </div> </article> </div> </body> <foot> <footer class="site-footer"> <div class="wrapper"> <center> <p><a class="link" href="https://zx4android.com/archive/">文章</a> / <a class="link" href="https://zx4android.com/category/">类别</a> / <a class="link" href="https://zx4android.com/tags/">标签</a> / <a class="link" href="https://zx4android.com/about/">关于</a> / <a class="link" href="https://zx4android.com/contact/">X</a> </p> <span><script>document.write(new Date().getFullYear());</script></span> <span>&copy;</span> <a class="link" href="https://zx4android.com">FIXME</a> <br> <span>Theme &copy; <a class="link" href="http://weibo.com/fixxz" target="_blank"> 新浪微博</a> | Git : </span> <iframe style="margin-left: 2px; margin-bottom:-5px;" frameborder="0" scrolling="0" width="91px" height="20px" src="https://ghbtns.com/github-btn.html?user=zhuxu1&repo=zhuxu1.github.io&type=star&count=true" > </iframe> </center> </div> </footer> <foot> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Derictory --> <script src="http://code.jquery.com/jquery-1.7.2.min.js"></script> <script src="http://yandex.st/highlightjs/6.2/highlight.min.js"></script> <!-- Hit analytics --> <script async src="https://dn-lbstatics.qbox.me/busuanzi/2.3/busuanzi.pure.mini.js"></script> <!-- Directory --> <script src="https://zx4android.com/js/main.js"></script> </foot> </foot> </html>
app/css/contact.css
anddal/ELH
.contactContent{ margin-top: 70px; padding-left: 5px; padding-right: 5px; } .contactImg{ max-width: 100%; height: auto; } .contactContent address > p{ margin-bottom: 1px; }
_site/2017/12/03/dmm-english.html
haltaro/haltaro.github.io
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>DMM体験レッスン:2.Article discussion</title> <meta name="description" content="帰国してから英語力が落ちまくっているので,オンライン英会話を再開することにした.とにかく選択肢が多いので,無料体験をはしごして決める.昨日に引き続き,オンライン英会話最大手のDMM英会話で,Daily newsを体験した.今回もセルビア在住の先生に対応してもらったが,とても親切で,英語での議論に慣れている印象を受けた."> <meta name="author" content="haltaro"> <meta name="copyright" content="&copy; haltaro 2019"> <!-- External libraries --> <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"> <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/styles/zenburn.min.css"> <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/lightbox2/2.7.1/css/lightbox.css"> <!-- Mathjax --> <script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <!-- BotUI --> <link rel="stylesheet" href="/css/botui.min.css" > <link rel="stylesheet" href="/css/botui-theme-default.css" > <!-- Favicon and other icons (made with http://www.favicon-generator.org/) --> <!-- <link rel="shortcut icon" href="/assets/icons/favicon.ico" type="image/x-icon"> <link rel="icon" href="/assets/icons/favicon.ico" type="image/x-icon"> <link rel="apple-touch-icon" sizes="57x57" href="/assets/icons/apple-icon-57x57.png"> <link rel="apple-touch-icon" sizes="60x60" href="/assets/icons/apple-icon-60x60.png"> <link rel="apple-touch-icon" sizes="72x72" href="/assets/icons/apple-icon-72x72.png"> <link rel="apple-touch-icon" sizes="76x76" href="/assets/icons/apple-icon-76x76.png"> <link rel="apple-touch-icon" sizes="114x114" href="/assets/icons/apple-icon-114x114.png"> <link rel="apple-touch-icon" sizes="120x120" href="/assets/icons/apple-icon-120x120.png"> <link rel="apple-touch-icon" sizes="144x144" href="/assets/icons/apple-icon-144x144.png"> <link rel="apple-touch-icon" sizes="152x152" href="/assets/icons/apple-icon-152x152.png"> <link rel="apple-touch-icon" sizes="180x180" href="/assets/icons/apple-icon-180x180.png"> <link rel="icon" type="image/png" sizes="192x192" href="/assets/icons/android-icon-192x192.png"> <link rel="icon" type="image/png" sizes="32x32" href="/assets/icons/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="96x96" href="/assets/icons/favicon-96x96.png"> <link rel="icon" type="image/png" sizes="16x16" href="/assets/icons/favicon-16x16.png"> --> <link rel="icon" href="/assets/logo.png"> <link rel="apple-touch-icon" href="/assets/logo.png"> <link rel="manifest" href="/assets/icons/manifest.json"> <meta name="msapplication-TileColor" content="#ffffff"> <meta name="msapplication-TileImage" content="/assets/icons/ms-icon-144x144.png"> <meta name="theme-color" content="#ffffff"> <!-- Facebook OGP cards --> <meta property="og:description" content="帰国してから英語力が落ちまくっているので,オンライン英会話を再開することにした.とにかく選択肢が多いので,無料体験をはしごして決める.昨日に引き続き,オンライン英会話最大手のDMM英会話で,Daily newsを体験した.今回もセルビア在住の先生に対応してもらったが,とても親切で,英語での議論に慣れている印象を受けた." /> <meta property="og:url" content="http://0.0.0.0:4000" /> <meta property="og:site_name" content="Memotaro" /> <meta property="og:title" content="DMM体験レッスン:2.Article discussion" /> <meta property="og:type" content="website" /> <meta property="og:image" content="http://0.0.0.0:4000/assets/2017-08-03-english.jpg" /> <meta property="og:image:type" content="image/png" /> <meta property="og:image:width" content="612" /> <meta property="og:image:height" content="605" /> <!-- Twitter: card tags --> <meta name="twitter:card" content="summary"> <meta name="twitter:title" content="DMM体験レッスン:2.Article discussion"> <meta name="twitter:description" content="帰国してから英語力が落ちまくっているので,オンライン英会話を再開することにした.とにかく選択肢が多いので,無料体験をはしごして決める.昨日に引き続き,オンライン英会話最大手のDMM英会話で,Daily newsを体験した.今回もセルビア在住の先生に対応してもらったが,とても親切で,英語での議論に慣れている印象を受けた."> <meta name="twitter:image" content="http://0.0.0.0:4000/assets/2017-08-03-english.jpg"> <meta name="twitter:url" content="http://0.0.0.0:4000"> <!-- Site styles --> <link rel="stylesheet" href="/css/main.css"> <link rel="canonical" href="http://0.0.0.0:4000/2017/12/03/dmm-english"> <link rel="alternate" type="application/rss+xml" title="Memotaro" href="http://0.0.0.0:4000/feed.xml" /> </head> <body> <header class="navigation" role="banner"> <div class="navigation-wrapper"> <a href="/" class="logo"> <img src="/assets/logo.png" alt="Memotaro"> </a> <a href="javascript:void(0)" class="navigation-menu-button" id="js-mobile-menu"> <i class="fa fa-bars"></i> </a> <nav role="navigation"> <ul id="js-navigation-menu" class="navigation-menu show"> <li class="nav-link"><a href="/about/">About</a> <li class="nav-link"><a href="/categories/">Categories</a> <li class="nav-link"><a href="/projects/">Projects</a> <li class="nav-link"><a href="/search/">Search</a> </ul> </nav> </div> </header> <div class="page-content"> <div class="post"> <div class="post-header-container has-cover" style="background-image: url(/assets/2017-08-03-english.jpg);"> <div class="scrim has-cover"> <header class="post-header"> <h1 class="title">DMM体験レッスン:2.Article discussion</h1> <!--<p class="info">by <strong></strong></p>--> </header> </div> </div> <div class="wrapper"> <section class="post-meta"> <div class="post-date">December 3, 2017</div> <div class="post-categories"> in <a href="/categories/#english">English</a> </div> </section> <article class="post-content"> <p>帰国してから英語力が落ちまくっているので,オンライン英会話を再開することにした.とにかく選択肢が多いので,無料体験をはしごして決める.昨日に引き続き,オンライン英会話最大手の<a href="http://eikaiwa.dmm.com/">DMM英会話</a>で,<a href="https://app.eikaiwa.dmm.com/daily-news">Daily news</a>を体験した.今回もセルビア在住の先生に対応してもらったが,とても親切で,英語での議論に慣れている印象を受けた.</p> <h1 id="dmm英会話とは">DMM英会話とは</h1> <p>オンライン英会話の最大手.同じく大手の<a href="https://www.rarejob.com">Reajob</a>との違いは,講師の出身国の多様性.DMM英会話では,フィリピンだけでなく,セルビアやボスニア・ヘルツェゴビナ等出身の先生も在籍している.</p> <p>2017年12月2日時点の<a href="http://eikaiwa.dmm.com/plan/">料金プラン</a>は以下.</p> <table> <thead> <tr> <th style="text-align: left">プラン</th> <th style="text-align: left">料金[円/月]</th> </tr> </thead> <tbody> <tr> <td style="text-align: left">スタンダード(毎日25分)</td> <td style="text-align: left">5,500</td> </tr> <tr> <td style="text-align: left">プラスネイティブ(毎日25分)</td> <td style="text-align: left">15,800</td> </tr> </tbody> </table> <p>他にも毎日2レッスン(計50分)や3レッスン(計75分)のプランがある.</p> <h1 id="予習">予習</h1> <p><a href="https://app.eikaiwa.dmm.com/daily-news">Daily news</a>を受講すると決めていたので,一回記事を音読した.</p> <h1 id="講義内容">講義内容</h1> <ul> <li>自己紹介.</li> <li>Daily news discussion. <ul> <li>Vocabularyを先生に続けて読む.</li> <li>Articleを先生に続けて読む.</li> <li>Questionsに回答.</li> <li>Discussion.</li> </ul> </li> </ul> <h1 id="先生からのフィードバック">先生からのフィードバック</h1> <p>特に問題ないとのこと.</p> <h1 id="学んだこと">学んだこと</h1> <ul> <li><a href="https://ejje.weblio.jp/content/dictatorship"><em>dictatorship</em></a>:独裁制.</li> </ul> <h1 id="感想">感想</h1> <p>今回も先生のレベルが高かった.北朝鮮のインターネット政策に関する話題だったが,芯の通った考えをお持ちで,会話していてとても楽しかった.このレベルの授業を毎日受けられるのであれば,DMM英会話で間違いないと思った.</p> </article> <section class="rss"> <p class="rss-subscribe text"><strong>Subscribe <a href="/feed.xml">via RSS</a></strong></p> </section> <!-- <section class="share"> <span>Share: </span> </section> --> <section class="disqus"> <div id="disqus_thread"></div> <script type="text/javascript"> var disqus_shortname = 'memotaro-haltaro'; /* * * DON'T EDIT BELOW THIS LINE * * */ (function() { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); })(); </script> <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> <a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a> </section> </div> </div> </div> <footer class="site-footer"> <div class="wrapper"> <h3 class="footer-heading">Memotaro</h3> <div class="site-navigation"> <p><strong>Site Map</strong></p> <ul class="pages"> <li class="nav-link"><a href="/about/">About</a> <li class="nav-link"><a href="/categories/">Categories</a> <li class="nav-link"><a href="/projects/">Projects</a> <li class="nav-link"><a href="/search/">Search</a> </ul> </div> <div class="site-contact"> <p><strong>Contact</strong></p> <ul class="social-media-list"> <li> <a href="mailto:mail.to.haltaro[at]gmail.com"> <i class="fa fa-envelope-o"></i> <span class="username">mail.to.haltaro[at]gmail.com</span> </a> </li> <li> <a href="https://github.com/haltaro" title="Fork me on GitHub"> <i class="fa fa-github"></i> <span class="username">github.com/haltaro</span> </a> </li> <li> <a href="https://qiita.com/haltaro" title="Follow me on Qiita"> <i class="fa fa-search"></i> <span class="username">qiita.com/haltaro</span> </a> </li> <li> <a href="https://kaggle.com/haltaro" title="Follow me on Kaggle"> <i class="fa fa-space-shuttle"></i> <span class="username">kaggle.com/haltaro</span> </a> </li> <li> <a href="https://atcoder.jp/users/haltaro" title="Compete with me on AtCoder"> <i class="fa fa-horse-head"></i> <span class="username">atcoder.jp/users/haltaro</span> </a> </li> </ul> </div> <div class="site-signature"> <p class="rss-subscribe text"><strong>Subscribe <a href="/feed.xml">via RSS</a></strong></p> <p class="text">I'm haltaro, a data scientist at an advertising agency in Tokyo, Japan. I love machine learning, marketing science, network engineering and shiba-inu:)</p> </div> </div> </footer> <!-- Scripts --> <script src="//code.jquery.com/jquery-1.11.2.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.5/highlight.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/lightbox2/2.7.1/js/lightbox.min.js"></script> <script type="text/javascript"> $(document).ready(function() { // Default syntax highlighting hljs.initHighlightingOnLoad(); // Header var menuToggle = $('#js-mobile-menu').unbind(); $('#js-navigation-menu').removeClass("show"); menuToggle.on('click', function(e) { e.preventDefault(); $('#js-navigation-menu').slideToggle(function(){ if($('#js-navigation-menu').is(':hidden')) { $('#js-navigation-menu').removeAttr('style'); } }); }); }); </script> </body> </html>
modules/core/client/css/core.css
Bubblbook/bubblbookprod
.content { margin-top: 50px; } .undecorated-link:hover { text-decoration: none; } [ng\:cloak], [ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak { display: none !important; } .header-profile-image { opacity: 0.8; height: 28px; width: 28px; border-radius: 50%; margin-right: 5px; } .open .header-profile-image, a:hover .header-profile-image { opacity: 1; } .user-header-dropdown-toggle { padding-top: 11px !important; padding-bottom: 11px !important; } .user-primary-account { font-size: 30px; top: 10px; right: 10px; position: absolute; } .error-text { display: none; } .has-error .help-block.error-text { display: block; } .has-error .help-inline.error-text { display: inline; } .margin-top-05{ margin-top:.5em; } .margin-top-3 { margin-top:3em; } .margin-right { margin-right:1em; } .radius0{ border-radius:0 !important; } .welcome { font-weight: 700; }
docs/libsys/BookTest.html
binhonglee/LibrarySystem
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_131) on Mon Jun 05 21:49:32 MST 2017 --> <title>BookTest (LibrarySystem - BinHong Lee)</title> <meta name="date" content="2017-06-05"> <link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style"> <script type="text/javascript" src="../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="BookTest (LibrarySystem - BinHong Lee)"; } } catch(err) { } //--> var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":9,"i6":10,"i7":10}; var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../libsys/package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../index-files/index-1.html">Index</a></li> <li><a href="../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../libsys/BookFactoryTest.html" title="class in libsys"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../libsys/EditBookDialog.html" title="class in libsys"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../index.html?libsys/BookTest.html" target="_top">Frames</a></li> <li><a href="BookTest.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">libsys</div> <h2 title="Class BookTest" class="title">Class BookTest</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>junit.framework.Assert</li> <li> <ul class="inheritance"> <li>junit.framework.TestCase</li> <li> <ul class="inheritance"> <li>libsys.BookTest</li> </ul> </li> </ul> </li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Implemented Interfaces:</dt> <dd>junit.framework.Test</dd> </dl> <hr> <br> <pre>public class <span class="typeNameLabel">BookTest</span> extends junit.framework.TestCase</pre> <div class="block">Test Book related operations</div> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- =========== FIELD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="field.summary"> <!-- --> </a> <h3>Field Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation"> <caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Field and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>private <a href="../libsys/Book.html" title="class in libsys">Book</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../libsys/BookTest.html#book1">book1</a></span></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>private <a href="../libsys/Book.html" title="class in libsys">Book</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../libsys/BookTest.html#book2">book2</a></span></code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../libsys/BookTest.html#BookTest-java.lang.String-">BookTest</a></span>(java.lang.String&nbsp;testName)</code> <div class="block">Test Book related operations</div> </td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code>private void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../libsys/BookTest.html#constructorTest--">constructorTest</a></span>()</code> <div class="block">Test the functionality for all different types of constructor</div> </td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>private void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../libsys/BookTest.html#rentTest--">rentTest</a></span>()</code> <div class="block">Test the rent(int[]) function functionality</div> </td> </tr> <tr id="i2" class="altColor"> <td class="colFirst"><code>private void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../libsys/BookTest.html#returnTest--">returnTest</a></span>()</code> <div class="block">Test the returned() function functionality</div> </td> </tr> <tr id="i3" class="rowColor"> <td class="colFirst"><code>private void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../libsys/BookTest.html#setTitlesTest--">setTitlesTest</a></span>()</code> <div class="block">Test the setTitles(String) functionality</div> </td> </tr> <tr id="i4" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../libsys/BookTest.html#setUp--">setUp</a></span>()</code> <div class="block">Set up before testing</div> </td> </tr> <tr id="i5" class="rowColor"> <td class="colFirst"><code>static junit.framework.Test</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../libsys/BookTest.html#suite--">suite</a></span>()</code>&nbsp;</td> </tr> <tr id="i6" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../libsys/BookTest.html#testApp--">testApp</a></span>()</code> <div class="block">Run all tests</div> </td> </tr> <tr id="i7" class="rowColor"> <td class="colFirst"><code>private void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../libsys/BookTest.html#valueTest--">valueTest</a></span>()</code> <div class="block">Test if the values are accurate</div> </td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.junit.framework.TestCase"> <!-- --> </a> <h3>Methods inherited from class&nbsp;junit.framework.TestCase</h3> <code>countTestCases, createResult, getName, run, run, runBare, runTest, setName, tearDown, toString</code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.junit.framework.Assert"> <!-- --> </a> <h3>Methods inherited from class&nbsp;junit.framework.Assert</h3> <code>assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertFalse, assertFalse, assertNotNull, assertNotNull, assertNotSame, assertNotSame, assertNull, assertNull, assertSame, assertSame, assertTrue, assertTrue, fail, fail</code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ FIELD DETAIL =========== --> <ul class="blockList"> <li class="blockList"><a name="field.detail"> <!-- --> </a> <h3>Field Detail</h3> <a name="book1"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>book1</h4> <pre>private&nbsp;<a href="../libsys/Book.html" title="class in libsys">Book</a> book1</pre> </li> </ul> <a name="book2"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>book2</h4> <pre>private&nbsp;<a href="../libsys/Book.html" title="class in libsys">Book</a> book2</pre> </li> </ul> </li> </ul> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="BookTest-java.lang.String-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>BookTest</h4> <pre>public&nbsp;BookTest(java.lang.String&nbsp;testName)</pre> <div class="block">Test Book related operations</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>testName</code> - name of the test case</dd> </dl> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="constructorTest--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>constructorTest</h4> <pre>private&nbsp;void&nbsp;constructorTest()</pre> <div class="block">Test the functionality for all different types of constructor</div> </li> </ul> <a name="rentTest--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>rentTest</h4> <pre>private&nbsp;void&nbsp;rentTest()</pre> <div class="block">Test the rent(int[]) function functionality</div> </li> </ul> <a name="returnTest--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>returnTest</h4> <pre>private&nbsp;void&nbsp;returnTest()</pre> <div class="block">Test the returned() function functionality</div> </li> </ul> <a name="setTitlesTest--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setTitlesTest</h4> <pre>private&nbsp;void&nbsp;setTitlesTest()</pre> <div class="block">Test the setTitles(String) functionality</div> </li> </ul> <a name="setUp--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setUp</h4> <pre>public&nbsp;void&nbsp;setUp() throws java.lang.Exception</pre> <div class="block">Set up before testing</div> <dl> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> <dd><code>setUp</code>&nbsp;in class&nbsp;<code>junit.framework.TestCase</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.Exception</code> - Exception</dd> </dl> </li> </ul> <a name="suite--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>suite</h4> <pre>public static&nbsp;junit.framework.Test&nbsp;suite()</pre> <dl> <dt><span class="returnLabel">Returns:</span></dt> <dd>suite of tests being tested</dd> </dl> </li> </ul> <a name="testApp--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>testApp</h4> <pre>public&nbsp;void&nbsp;testApp()</pre> <div class="block">Run all tests</div> </li> </ul> <a name="valueTest--"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>valueTest</h4> <pre>private&nbsp;void&nbsp;valueTest()</pre> <div class="block">Test if the values are accurate</div> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../libsys/package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../index-files/index-1.html">Index</a></li> <li><a href="../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../libsys/BookFactoryTest.html" title="class in libsys"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../libsys/EditBookDialog.html" title="class in libsys"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../index.html?libsys/BookTest.html" target="_top">Frames</a></li> <li><a href="BookTest.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
api/source-class-Assetic.Filter.CssMinFilter.html
Tecnocreaciones/VzlaGovernmentTemplateDeveloperSeed
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="generator" content="ApiGen 2.8.0" /> <meta name="robots" content="noindex" /> <title>File vendor/kriswallsmith/assetic/src/Assetic/Filter/CssMinFilter.php | seip</title> <script type="text/javascript" src="resources/combined.js?784181472"></script> <script type="text/javascript" src="elementlist.js?3927760630"></script> <link rel="stylesheet" type="text/css" media="all" href="resources/style.css?3505392360" /> </head> <body> <div id="left"> <div id="menu"> <a href="index.html" title="Overview"><span>Overview</span></a> <div id="groups"> <h3>Namespaces</h3> <ul> <li><a href="namespace-Acme.html">Acme<span></span></a> <ul> <li><a href="namespace-Acme.DemoBundle.html">DemoBundle<span></span></a> <ul> <li><a href="namespace-Acme.DemoBundle.Command.html">Command</a> </li> <li><a href="namespace-Acme.DemoBundle.Controller.html">Controller</a> </li> <li><a href="namespace-Acme.DemoBundle.DependencyInjection.html">DependencyInjection</a> </li> <li><a href="namespace-Acme.DemoBundle.EventListener.html">EventListener</a> </li> <li><a href="namespace-Acme.DemoBundle.Form.html">Form</a> </li> <li><a href="namespace-Acme.DemoBundle.Proxy.html">Proxy<span></span></a> <ul> <li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.html">__CG__<span></span></a> <ul> <li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.Symfony.html">Symfony<span></span></a> <ul> <li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.Symfony.Component.html">Component<span></span></a> <ul> <li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.Symfony.Component.Security.html">Security<span></span></a> <ul> <li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.Symfony.Component.Security.Acl.html">Acl<span></span></a> <ul> <li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.Symfony.Component.Security.Acl.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.Symfony.Component.Security.Acl.Tests.Domain.html">Domain</a> </li> </ul></li></ul></li> <li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.Symfony.Component.Security.Core.html">Core<span></span></a> <ul> <li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.Symfony.Component.Security.Core.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Acme.DemoBundle.Proxy.__CG__.Symfony.Component.Security.Core.Tests.Util.html">Util</a> </li> </ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li> <li><a href="namespace-Acme.DemoBundle.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Acme.DemoBundle.Tests.Controller.html">Controller</a> </li> </ul></li> <li><a href="namespace-Acme.DemoBundle.Twig.html">Twig<span></span></a> <ul> <li><a href="namespace-Acme.DemoBundle.Twig.Extension.html">Extension</a> </li> </ul></li></ul></li></ul></li> <li><a href="namespace-Alpha.html">Alpha</a> </li> <li><a href="namespace-Apc.html">Apc<span></span></a> <ul> <li><a href="namespace-Apc.NamespaceCollision.html">NamespaceCollision<span></span></a> <ul> <li><a href="namespace-Apc.NamespaceCollision.A.html">A<span></span></a> <ul> <li><a href="namespace-Apc.NamespaceCollision.A.B.html">B</a> </li> </ul></li></ul></li> <li><a href="namespace-Apc.Namespaced.html">Namespaced</a> </li> </ul></li> <li class="active"><a href="namespace-Assetic.html">Assetic<span></span></a> <ul> <li><a href="namespace-Assetic.Asset.html">Asset<span></span></a> <ul> <li><a href="namespace-Assetic.Asset.Iterator.html">Iterator</a> </li> </ul></li> <li><a href="namespace-Assetic.Cache.html">Cache</a> </li> <li><a href="namespace-Assetic.Exception.html">Exception</a> </li> <li><a href="namespace-Assetic.Extension.html">Extension<span></span></a> <ul> <li><a href="namespace-Assetic.Extension.Twig.html">Twig</a> </li> </ul></li> <li><a href="namespace-Assetic.Factory.html">Factory<span></span></a> <ul> <li><a href="namespace-Assetic.Factory.Loader.html">Loader</a> </li> <li><a href="namespace-Assetic.Factory.Resource.html">Resource</a> </li> <li><a href="namespace-Assetic.Factory.Worker.html">Worker</a> </li> </ul></li> <li class="active"><a href="namespace-Assetic.Filter.html">Filter<span></span></a> <ul> <li><a href="namespace-Assetic.Filter.GoogleClosure.html">GoogleClosure</a> </li> <li><a href="namespace-Assetic.Filter.Sass.html">Sass</a> </li> <li><a href="namespace-Assetic.Filter.Yui.html">Yui</a> </li> </ul></li> <li><a href="namespace-Assetic.Util.html">Util</a> </li> </ul></li> <li><a href="namespace-Bazinga.html">Bazinga<span></span></a> <ul> <li><a href="namespace-Bazinga.Bundle.html">Bundle<span></span></a> <ul> <li><a href="namespace-Bazinga.Bundle.JsTranslationBundle.html">JsTranslationBundle<span></span></a> <ul> <li><a href="namespace-Bazinga.Bundle.JsTranslationBundle.Command.html">Command</a> </li> <li><a href="namespace-Bazinga.Bundle.JsTranslationBundle.Controller.html">Controller</a> </li> <li><a href="namespace-Bazinga.Bundle.JsTranslationBundle.DependencyInjection.html">DependencyInjection<span></span></a> <ul> <li><a href="namespace-Bazinga.Bundle.JsTranslationBundle.DependencyInjection.Compiler.html">Compiler</a> </li> </ul></li> <li><a href="namespace-Bazinga.Bundle.JsTranslationBundle.Dumper.html">Dumper</a> </li> <li><a href="namespace-Bazinga.Bundle.JsTranslationBundle.Finder.html">Finder</a> </li> <li><a href="namespace-Bazinga.Bundle.JsTranslationBundle.Tests.html">Tests</a> </li> </ul></li></ul></li> <li><a href="namespace-Bazinga.JsTranslationBundle.html">JsTranslationBundle<span></span></a> <ul> <li><a href="namespace-Bazinga.JsTranslationBundle.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Bazinga.JsTranslationBundle.Tests.Controller.html">Controller</a> </li> <li><a href="namespace-Bazinga.JsTranslationBundle.Tests.Finder.html">Finder</a> </li> </ul></li></ul></li></ul></li> <li><a href="namespace-Beta.html">Beta</a> </li> <li><a href="namespace-Blameable.html">Blameable<span></span></a> <ul> <li><a href="namespace-Blameable.Fixture.html">Fixture<span></span></a> <ul> <li><a href="namespace-Blameable.Fixture.Document.html">Document</a> </li> <li><a href="namespace-Blameable.Fixture.Entity.html">Entity</a> </li> </ul></li></ul></li> <li><a href="namespace-ClassesWithParents.html">ClassesWithParents</a> </li> <li><a href="namespace-ClassLoaderTest.html">ClassLoaderTest</a> </li> <li><a href="namespace-ClassMap.html">ClassMap</a> </li> <li><a href="namespace-Composer.html">Composer<span></span></a> <ul> <li><a href="namespace-Composer.Autoload.html">Autoload</a> </li> </ul></li> <li><a href="namespace-Container14.html">Container14</a> </li> <li><a href="namespace-Doctrine.html">Doctrine<span></span></a> <ul> <li><a href="namespace-Doctrine.Bundle.html">Bundle<span></span></a> <ul> <li><a href="namespace-Doctrine.Bundle.DoctrineBundle.html">DoctrineBundle<span></span></a> <ul> <li><a href="namespace-Doctrine.Bundle.DoctrineBundle.Command.html">Command<span></span></a> <ul> <li><a href="namespace-Doctrine.Bundle.DoctrineBundle.Command.Proxy.html">Proxy</a> </li> </ul></li> <li><a href="namespace-Doctrine.Bundle.DoctrineBundle.Controller.html">Controller</a> </li> <li><a href="namespace-Doctrine.Bundle.DoctrineBundle.DataCollector.html">DataCollector</a> </li> <li><a href="namespace-Doctrine.Bundle.DoctrineBundle.DependencyInjection.html">DependencyInjection</a> </li> <li><a href="namespace-Doctrine.Bundle.DoctrineBundle.Mapping.html">Mapping</a> </li> <li><a href="namespace-Doctrine.Bundle.DoctrineBundle.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Doctrine.Bundle.DoctrineBundle.Tests.DependencyInjection.html">DependencyInjection</a> </li> </ul></li> <li><a href="namespace-Doctrine.Bundle.DoctrineBundle.Twig.html">Twig</a> </li> </ul></li> <li><a href="namespace-Doctrine.Bundle.FixturesBundle.html">FixturesBundle<span></span></a> <ul> <li><a href="namespace-Doctrine.Bundle.FixturesBundle.Command.html">Command</a> </li> </ul></li></ul></li> <li><a href="namespace-Doctrine.Common.html">Common<span></span></a> <ul> <li><a href="namespace-Doctrine.Common.Annotations.html">Annotations<span></span></a> <ul> <li><a href="namespace-Doctrine.Common.Annotations.Annotation.html">Annotation</a> </li> </ul></li> <li><a href="namespace-Doctrine.Common.Cache.html">Cache</a> </li> <li><a href="namespace-Doctrine.Common.Collections.html">Collections<span></span></a> <ul> <li><a href="namespace-Doctrine.Common.Collections.Expr.html">Expr</a> </li> </ul></li> <li><a href="namespace-Doctrine.Common.DataFixtures.html">DataFixtures<span></span></a> <ul> <li><a href="namespace-Doctrine.Common.DataFixtures.Event.html">Event<span></span></a> <ul> <li><a href="namespace-Doctrine.Common.DataFixtures.Event.Listener.html">Listener</a> </li> </ul></li> <li><a href="namespace-Doctrine.Common.DataFixtures.Exception.html">Exception</a> </li> <li><a href="namespace-Doctrine.Common.DataFixtures.Executor.html">Executor</a> </li> <li><a href="namespace-Doctrine.Common.DataFixtures.Purger.html">Purger</a> </li> </ul></li> <li><a href="namespace-Doctrine.Common.Inflector.html">Inflector</a> </li> <li><a href="namespace-Doctrine.Common.Lexer.html">Lexer</a> </li> <li><a href="namespace-Doctrine.Common.Persistence.html">Persistence<span></span></a> <ul> <li><a href="namespace-Doctrine.Common.Persistence.Event.html">Event</a> </li> <li><a href="namespace-Doctrine.Common.Persistence.Mapping.html">Mapping<span></span></a> <ul> <li><a href="namespace-Doctrine.Common.Persistence.Mapping.Driver.html">Driver</a> </li> </ul></li></ul></li> <li><a href="namespace-Doctrine.Common.Proxy.html">Proxy<span></span></a> <ul> <li><a href="namespace-Doctrine.Common.Proxy.Exception.html">Exception</a> </li> </ul></li> <li><a href="namespace-Doctrine.Common.Reflection.html">Reflection</a> </li> <li><a href="namespace-Doctrine.Common.Util.html">Util</a> </li> </ul></li> <li><a href="namespace-Doctrine.DBAL.html">DBAL<span></span></a> <ul> <li><a href="namespace-Doctrine.DBAL.Cache.html">Cache</a> </li> <li><a href="namespace-Doctrine.DBAL.Connections.html">Connections</a> </li> <li><a href="namespace-Doctrine.DBAL.Driver.html">Driver<span></span></a> <ul> <li><a href="namespace-Doctrine.DBAL.Driver.DrizzlePDOMySql.html">DrizzlePDOMySql</a> </li> <li><a href="namespace-Doctrine.DBAL.Driver.IBMDB2.html">IBMDB2</a> </li> <li><a href="namespace-Doctrine.DBAL.Driver.Mysqli.html">Mysqli</a> </li> <li><a href="namespace-Doctrine.DBAL.Driver.OCI8.html">OCI8</a> </li> <li><a href="namespace-Doctrine.DBAL.Driver.PDOIbm.html">PDOIbm</a> </li> <li><a href="namespace-Doctrine.DBAL.Driver.PDOMySql.html">PDOMySql</a> </li> <li><a href="namespace-Doctrine.DBAL.Driver.PDOOracle.html">PDOOracle</a> </li> <li><a href="namespace-Doctrine.DBAL.Driver.PDOPgSql.html">PDOPgSql</a> </li> <li><a href="namespace-Doctrine.DBAL.Driver.PDOSqlite.html">PDOSqlite</a> </li> <li><a href="namespace-Doctrine.DBAL.Driver.PDOSqlsrv.html">PDOSqlsrv</a> </li> <li><a href="namespace-Doctrine.DBAL.Driver.SQLSrv.html">SQLSrv</a> </li> </ul></li> <li><a href="namespace-Doctrine.DBAL.Event.html">Event<span></span></a> <ul> <li><a href="namespace-Doctrine.DBAL.Event.Listeners.html">Listeners</a> </li> </ul></li> <li><a href="namespace-Doctrine.DBAL.Id.html">Id</a> </li> <li><a href="namespace-Doctrine.DBAL.Logging.html">Logging</a> </li> <li><a href="namespace-Doctrine.DBAL.Platforms.html">Platforms<span></span></a> <ul> <li><a href="namespace-Doctrine.DBAL.Platforms.Keywords.html">Keywords</a> </li> </ul></li> <li><a href="namespace-Doctrine.DBAL.Portability.html">Portability</a> </li> <li><a href="namespace-Doctrine.DBAL.Query.html">Query<span></span></a> <ul> <li><a href="namespace-Doctrine.DBAL.Query.Expression.html">Expression</a> </li> </ul></li> <li><a href="namespace-Doctrine.DBAL.Schema.html">Schema<span></span></a> <ul> <li><a href="namespace-Doctrine.DBAL.Schema.Synchronizer.html">Synchronizer</a> </li> <li><a href="namespace-Doctrine.DBAL.Schema.Visitor.html">Visitor</a> </li> </ul></li> <li><a href="namespace-Doctrine.DBAL.Sharding.html">Sharding<span></span></a> <ul> <li><a href="namespace-Doctrine.DBAL.Sharding.ShardChoser.html">ShardChoser</a> </li> <li><a href="namespace-Doctrine.DBAL.Sharding.SQLAzure.html">SQLAzure<span></span></a> <ul> <li><a href="namespace-Doctrine.DBAL.Sharding.SQLAzure.Schema.html">Schema</a> </li> </ul></li></ul></li> <li><a href="namespace-Doctrine.DBAL.Tools.html">Tools<span></span></a> <ul> <li><a href="namespace-Doctrine.DBAL.Tools.Console.html">Console<span></span></a> <ul> <li><a href="namespace-Doctrine.DBAL.Tools.Console.Command.html">Command</a> </li> <li><a href="namespace-Doctrine.DBAL.Tools.Console.Helper.html">Helper</a> </li> </ul></li></ul></li> <li><a href="namespace-Doctrine.DBAL.Types.html">Types</a> </li> </ul></li> <li><a href="namespace-Doctrine.ORM.html">ORM<span></span></a> <ul> <li><a href="namespace-Doctrine.ORM.Decorator.html">Decorator</a> </li> <li><a href="namespace-Doctrine.ORM.Event.html">Event</a> </li> <li><a href="namespace-Doctrine.ORM.Id.html">Id</a> </li> <li><a href="namespace-Doctrine.ORM.Internal.html">Internal<span></span></a> <ul> <li><a href="namespace-Doctrine.ORM.Internal.Hydration.html">Hydration</a> </li> </ul></li> <li><a href="namespace-Doctrine.ORM.Mapping.html">Mapping<span></span></a> <ul> <li><a href="namespace-Doctrine.ORM.Mapping.Builder.html">Builder</a> </li> <li><a href="namespace-Doctrine.ORM.Mapping.Driver.html">Driver</a> </li> </ul></li> <li><a href="namespace-Doctrine.ORM.Persisters.html">Persisters</a> </li> <li><a href="namespace-Doctrine.ORM.Proxy.html">Proxy</a> </li> <li><a href="namespace-Doctrine.ORM.Query.html">Query<span></span></a> <ul> <li><a href="namespace-Doctrine.ORM.Query.AST.html">AST<span></span></a> <ul> <li><a href="namespace-Doctrine.ORM.Query.AST.Functions.html">Functions</a> </li> </ul></li> <li><a href="namespace-Doctrine.ORM.Query.Exec.html">Exec</a> </li> <li><a href="namespace-Doctrine.ORM.Query.Expr.html">Expr</a> </li> <li><a href="namespace-Doctrine.ORM.Query.Filter.html">Filter</a> </li> </ul></li> <li><a href="namespace-Doctrine.ORM.Repository.html">Repository</a> </li> <li><a href="namespace-Doctrine.ORM.Tools.html">Tools<span></span></a> <ul> <li><a href="namespace-Doctrine.ORM.Tools.Console.html">Console<span></span></a> <ul> <li><a href="namespace-Doctrine.ORM.Tools.Console.Command.html">Command<span></span></a> <ul> <li><a href="namespace-Doctrine.ORM.Tools.Console.Command.ClearCache.html">ClearCache</a> </li> <li><a href="namespace-Doctrine.ORM.Tools.Console.Command.SchemaTool.html">SchemaTool</a> </li> </ul></li> <li><a href="namespace-Doctrine.ORM.Tools.Console.Helper.html">Helper</a> </li> </ul></li> <li><a href="namespace-Doctrine.ORM.Tools.Event.html">Event</a> </li> <li><a href="namespace-Doctrine.ORM.Tools.Export.html">Export<span></span></a> <ul> <li><a href="namespace-Doctrine.ORM.Tools.Export.Driver.html">Driver</a> </li> </ul></li> <li><a href="namespace-Doctrine.ORM.Tools.Pagination.html">Pagination</a> </li> </ul></li></ul></li> <li><a href="namespace-Doctrine.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Doctrine.Tests.Common.html">Common<span></span></a> <ul> <li><a href="namespace-Doctrine.Tests.Common.Annotations.html">Annotations<span></span></a> <ul> <li><a href="namespace-Doctrine.Tests.Common.Annotations.Bar.html">Bar</a> </li> <li><a href="namespace-Doctrine.Tests.Common.Annotations.Fixtures.html">Fixtures<span></span></a> <ul> <li><a href="namespace-Doctrine.Tests.Common.Annotations.Fixtures.Annotation.html">Annotation</a> </li> </ul></li> <li><a href="namespace-Doctrine.Tests.Common.Annotations.Foo.html">Foo</a> </li> <li><a href="namespace-Doctrine.Tests.Common.Annotations.FooBar.html">FooBar</a> </li> <li><a href="namespace-Doctrine.Tests.Common.Annotations.Ticket.html">Ticket<span></span></a> <ul> <li><a href="namespace-Doctrine.Tests.Common.Annotations.Ticket.Doctrine.html">Doctrine<span></span></a> <ul> <li><a href="namespace-Doctrine.Tests.Common.Annotations.Ticket.Doctrine.ORM.html">ORM<span></span></a> <ul> <li><a href="namespace-Doctrine.Tests.Common.Annotations.Ticket.Doctrine.ORM.Mapping.html">Mapping</a> </li> </ul></li></ul></li></ul></li></ul></li> <li><a href="namespace-Doctrine.Tests.Common.Cache.html">Cache</a> </li> <li><a href="namespace-Doctrine.Tests.Common.Collections.html">Collections</a> </li> <li><a href="namespace-Doctrine.Tests.Common.DataFixtures.html">DataFixtures<span></span></a> <ul> <li><a href="namespace-Doctrine.Tests.Common.DataFixtures.Executor.html">Executor</a> </li> <li><a href="namespace-Doctrine.Tests.Common.DataFixtures.TestEntity.html">TestEntity</a> </li> <li><a href="namespace-Doctrine.Tests.Common.DataFixtures.TestFixtures.html">TestFixtures</a> </li> </ul></li> <li><a href="namespace-Doctrine.Tests.Common.Inflector.html">Inflector</a> </li> <li><a href="namespace-Doctrine.Tests.Common.Persistence.html">Persistence<span></span></a> <ul> <li><a href="namespace-Doctrine.Tests.Common.Persistence.Mapping.html">Mapping</a> </li> </ul></li> <li><a href="namespace-Doctrine.Tests.Common.Proxy.html">Proxy</a> </li> <li><a href="namespace-Doctrine.Tests.Common.Reflection.html">Reflection<span></span></a> <ul> <li><a href="namespace-Doctrine.Tests.Common.Reflection.Dummies.html">Dummies</a> </li> </ul></li> <li><a href="namespace-Doctrine.Tests.Common.Util.html">Util</a> </li> </ul></li></ul></li></ul></li> <li><a href="namespace-Entity.html">Entity<span></span></a> <ul> <li><a href="namespace-Entity.Repository.html">Repository</a> </li> </ul></li> <li><a href="namespace-Fixtures.html">Fixtures<span></span></a> <ul> <li><a href="namespace-Fixtures.Bundles.html">Bundles<span></span></a> <ul> <li><a href="namespace-Fixtures.Bundles.AnnotationsBundle.html">AnnotationsBundle<span></span></a> <ul> <li><a href="namespace-Fixtures.Bundles.AnnotationsBundle.Entity.html">Entity</a> </li> </ul></li> <li><a href="namespace-Fixtures.Bundles.Vendor.html">Vendor<span></span></a> <ul> <li><a href="namespace-Fixtures.Bundles.Vendor.AnnotationsBundle.html">AnnotationsBundle<span></span></a> <ul> <li><a href="namespace-Fixtures.Bundles.Vendor.AnnotationsBundle.Entity.html">Entity</a> </li> </ul></li></ul></li> <li><a href="namespace-Fixtures.Bundles.XmlBundle.html">XmlBundle<span></span></a> <ul> <li><a href="namespace-Fixtures.Bundles.XmlBundle.Entity.html">Entity</a> </li> </ul></li> <li><a href="namespace-Fixtures.Bundles.YamlBundle.html">YamlBundle<span></span></a> <ul> <li><a href="namespace-Fixtures.Bundles.YamlBundle.Entity.html">Entity</a> </li> </ul></li></ul></li></ul></li> <li><a href="namespace-Foo.html">Foo<span></span></a> <ul> <li><a href="namespace-Foo.Bar.html">Bar</a> </li> </ul></li> <li><a href="namespace-FOS.html">FOS<span></span></a> <ul> <li><a href="namespace-FOS.RestBundle.html">RestBundle<span></span></a> <ul> <li><a href="namespace-FOS.RestBundle.Controller.html">Controller<span></span></a> <ul> <li><a href="namespace-FOS.RestBundle.Controller.Annotations.html">Annotations</a> </li> </ul></li> <li><a href="namespace-FOS.RestBundle.Decoder.html">Decoder</a> </li> <li><a href="namespace-FOS.RestBundle.DependencyInjection.html">DependencyInjection<span></span></a> <ul> <li><a href="namespace-FOS.RestBundle.DependencyInjection.Compiler.html">Compiler</a> </li> </ul></li> <li><a href="namespace-FOS.RestBundle.EventListener.html">EventListener</a> </li> <li><a href="namespace-FOS.RestBundle.Examples.html">Examples</a> </li> <li><a href="namespace-FOS.RestBundle.Form.html">Form<span></span></a> <ul> <li><a href="namespace-FOS.RestBundle.Form.Extension.html">Extension</a> </li> </ul></li> <li><a href="namespace-FOS.RestBundle.Normalizer.html">Normalizer<span></span></a> <ul> <li><a href="namespace-FOS.RestBundle.Normalizer.Exception.html">Exception</a> </li> </ul></li> <li><a href="namespace-FOS.RestBundle.Request.html">Request</a> </li> <li><a href="namespace-FOS.RestBundle.Response.html">Response<span></span></a> <ul> <li><a href="namespace-FOS.RestBundle.Response.AllowedMethodsLoader.html">AllowedMethodsLoader</a> </li> </ul></li> <li><a href="namespace-FOS.RestBundle.Routing.html">Routing<span></span></a> <ul> <li><a href="namespace-FOS.RestBundle.Routing.Loader.html">Loader<span></span></a> <ul> <li><a href="namespace-FOS.RestBundle.Routing.Loader.Reader.html">Reader</a> </li> </ul></li></ul></li> <li><a href="namespace-FOS.RestBundle.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-FOS.RestBundle.Tests.Controller.html">Controller<span></span></a> <ul> <li><a href="namespace-FOS.RestBundle.Tests.Controller.Annotations.html">Annotations</a> </li> </ul></li> <li><a href="namespace-FOS.RestBundle.Tests.Decoder.html">Decoder</a> </li> <li><a href="namespace-FOS.RestBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a> <ul> <li><a href="namespace-FOS.RestBundle.Tests.DependencyInjection.Compiler.html">Compiler</a> </li> </ul></li> <li><a href="namespace-FOS.RestBundle.Tests.EventListener.html">EventListener</a> </li> <li><a href="namespace-FOS.RestBundle.Tests.Fixtures.html">Fixtures<span></span></a> <ul> <li><a href="namespace-FOS.RestBundle.Tests.Fixtures.Controller.html">Controller</a> </li> </ul></li> <li><a href="namespace-FOS.RestBundle.Tests.Normalizer.html">Normalizer</a> </li> <li><a href="namespace-FOS.RestBundle.Tests.Request.html">Request</a> </li> <li><a href="namespace-FOS.RestBundle.Tests.Routing.html">Routing<span></span></a> <ul> <li><a href="namespace-FOS.RestBundle.Tests.Routing.Loader.html">Loader</a> </li> </ul></li> <li><a href="namespace-FOS.RestBundle.Tests.Util.html">Util</a> </li> <li><a href="namespace-FOS.RestBundle.Tests.View.html">View</a> </li> </ul></li> <li><a href="namespace-FOS.RestBundle.Util.html">Util<span></span></a> <ul> <li><a href="namespace-FOS.RestBundle.Util.Inflector.html">Inflector</a> </li> </ul></li> <li><a href="namespace-FOS.RestBundle.View.html">View</a> </li> </ul></li> <li><a href="namespace-FOS.UserBundle.html">UserBundle<span></span></a> <ul> <li><a href="namespace-FOS.UserBundle.Command.html">Command</a> </li> <li><a href="namespace-FOS.UserBundle.Controller.html">Controller</a> </li> <li><a href="namespace-FOS.UserBundle.CouchDocument.html">CouchDocument</a> </li> <li><a href="namespace-FOS.UserBundle.DependencyInjection.html">DependencyInjection<span></span></a> <ul> <li><a href="namespace-FOS.UserBundle.DependencyInjection.Compiler.html">Compiler</a> </li> </ul></li> <li><a href="namespace-FOS.UserBundle.Doctrine.html">Doctrine</a> </li> <li><a href="namespace-FOS.UserBundle.Document.html">Document</a> </li> <li><a href="namespace-FOS.UserBundle.Entity.html">Entity</a> </li> <li><a href="namespace-FOS.UserBundle.Form.html">Form<span></span></a> <ul> <li><a href="namespace-FOS.UserBundle.Form.DataTransformer.html">DataTransformer</a> </li> <li><a href="namespace-FOS.UserBundle.Form.Handler.html">Handler</a> </li> <li><a href="namespace-FOS.UserBundle.Form.Model.html">Model</a> </li> <li><a href="namespace-FOS.UserBundle.Form.Type.html">Type</a> </li> </ul></li> <li><a href="namespace-FOS.UserBundle.Mailer.html">Mailer</a> </li> <li><a href="namespace-FOS.UserBundle.Model.html">Model</a> </li> <li><a href="namespace-FOS.UserBundle.Propel.html">Propel</a> </li> <li><a href="namespace-FOS.UserBundle.Security.html">Security</a> </li> <li><a href="namespace-FOS.UserBundle.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-FOS.UserBundle.Tests.DependencyInjection.html">DependencyInjection</a> </li> <li><a href="namespace-FOS.UserBundle.Tests.Doctrine.html">Doctrine</a> </li> <li><a href="namespace-FOS.UserBundle.Tests.Model.html">Model</a> </li> <li><a href="namespace-FOS.UserBundle.Tests.Security.html">Security</a> </li> <li><a href="namespace-FOS.UserBundle.Tests.Util.html">Util</a> </li> </ul></li> <li><a href="namespace-FOS.UserBundle.Util.html">Util</a> </li> <li><a href="namespace-FOS.UserBundle.Validator.html">Validator</a> </li> </ul></li></ul></li> <li><a href="namespace-Gedmo.html">Gedmo<span></span></a> <ul> <li><a href="namespace-Gedmo.Blameable.html">Blameable<span></span></a> <ul> <li><a href="namespace-Gedmo.Blameable.Mapping.html">Mapping<span></span></a> <ul> <li><a href="namespace-Gedmo.Blameable.Mapping.Driver.html">Driver</a> </li> <li><a href="namespace-Gedmo.Blameable.Mapping.Event.html">Event<span></span></a> <ul> <li><a href="namespace-Gedmo.Blameable.Mapping.Event.Adapter.html">Adapter</a> </li> </ul></li></ul></li> <li><a href="namespace-Gedmo.Blameable.Traits.html">Traits</a> </li> </ul></li> <li><a href="namespace-Gedmo.Exception.html">Exception</a> </li> <li><a href="namespace-Gedmo.IpTraceable.html">IpTraceable<span></span></a> <ul> <li><a href="namespace-Gedmo.IpTraceable.Mapping.html">Mapping<span></span></a> <ul> <li><a href="namespace-Gedmo.IpTraceable.Mapping.Driver.html">Driver</a> </li> <li><a href="namespace-Gedmo.IpTraceable.Mapping.Event.html">Event<span></span></a> <ul> <li><a href="namespace-Gedmo.IpTraceable.Mapping.Event.Adapter.html">Adapter</a> </li> </ul></li></ul></li> <li><a href="namespace-Gedmo.IpTraceable.Traits.html">Traits</a> </li> </ul></li> <li><a href="namespace-Gedmo.Loggable.html">Loggable<span></span></a> <ul> <li><a href="namespace-Gedmo.Loggable.Document.html">Document<span></span></a> <ul> <li><a href="namespace-Gedmo.Loggable.Document.MappedSuperclass.html">MappedSuperclass</a> </li> <li><a href="namespace-Gedmo.Loggable.Document.Repository.html">Repository</a> </li> </ul></li> <li><a href="namespace-Gedmo.Loggable.Entity.html">Entity<span></span></a> <ul> <li><a href="namespace-Gedmo.Loggable.Entity.MappedSuperclass.html">MappedSuperclass</a> </li> <li><a href="namespace-Gedmo.Loggable.Entity.Repository.html">Repository</a> </li> </ul></li> <li><a href="namespace-Gedmo.Loggable.Mapping.html">Mapping<span></span></a> <ul> <li><a href="namespace-Gedmo.Loggable.Mapping.Driver.html">Driver</a> </li> <li><a href="namespace-Gedmo.Loggable.Mapping.Event.html">Event<span></span></a> <ul> <li><a href="namespace-Gedmo.Loggable.Mapping.Event.Adapter.html">Adapter</a> </li> </ul></li></ul></li></ul></li> <li><a href="namespace-Gedmo.Mapping.html">Mapping<span></span></a> <ul> <li><a href="namespace-Gedmo.Mapping.Annotation.html">Annotation</a> </li> <li><a href="namespace-Gedmo.Mapping.Driver.html">Driver</a> </li> <li><a href="namespace-Gedmo.Mapping.Event.html">Event<span></span></a> <ul> <li><a href="namespace-Gedmo.Mapping.Event.Adapter.html">Adapter</a> </li> </ul></li> <li><a href="namespace-Gedmo.Mapping.Mock.html">Mock<span></span></a> <ul> <li><a href="namespace-Gedmo.Mapping.Mock.Extension.html">Extension<span></span></a> <ul> <li><a href="namespace-Gedmo.Mapping.Mock.Extension.Encoder.html">Encoder<span></span></a> <ul> <li><a href="namespace-Gedmo.Mapping.Mock.Extension.Encoder.Mapping.html">Mapping<span></span></a> <ul> <li><a href="namespace-Gedmo.Mapping.Mock.Extension.Encoder.Mapping.Driver.html">Driver</a> </li> <li><a href="namespace-Gedmo.Mapping.Mock.Extension.Encoder.Mapping.Event.html">Event<span></span></a> <ul> <li><a href="namespace-Gedmo.Mapping.Mock.Extension.Encoder.Mapping.Event.Adapter.html">Adapter</a> </li> </ul></li></ul></li></ul></li></ul></li> <li><a href="namespace-Gedmo.Mapping.Mock.Mapping.html">Mapping<span></span></a> <ul> <li><a href="namespace-Gedmo.Mapping.Mock.Mapping.Event.html">Event<span></span></a> <ul> <li><a href="namespace-Gedmo.Mapping.Mock.Mapping.Event.Adapter.html">Adapter</a> </li> </ul></li></ul></li></ul></li> <li><a href="namespace-Gedmo.Mapping.Xml.html">Xml</a> </li> </ul></li> <li><a href="namespace-Gedmo.ReferenceIntegrity.html">ReferenceIntegrity<span></span></a> <ul> <li><a href="namespace-Gedmo.ReferenceIntegrity.Mapping.html">Mapping<span></span></a> <ul> <li><a href="namespace-Gedmo.ReferenceIntegrity.Mapping.Driver.html">Driver</a> </li> </ul></li></ul></li> <li><a href="namespace-Gedmo.References.html">References<span></span></a> <ul> <li><a href="namespace-Gedmo.References.Mapping.html">Mapping<span></span></a> <ul> <li><a href="namespace-Gedmo.References.Mapping.Driver.html">Driver</a> </li> <li><a href="namespace-Gedmo.References.Mapping.Event.html">Event<span></span></a> <ul> <li><a href="namespace-Gedmo.References.Mapping.Event.Adapter.html">Adapter</a> </li> </ul></li></ul></li></ul></li> <li><a href="namespace-Gedmo.Sluggable.html">Sluggable<span></span></a> <ul> <li><a href="namespace-Gedmo.Sluggable.Handler.html">Handler</a> </li> <li><a href="namespace-Gedmo.Sluggable.Mapping.html">Mapping<span></span></a> <ul> <li><a href="namespace-Gedmo.Sluggable.Mapping.Driver.html">Driver</a> </li> <li><a href="namespace-Gedmo.Sluggable.Mapping.Event.html">Event<span></span></a> <ul> <li><a href="namespace-Gedmo.Sluggable.Mapping.Event.Adapter.html">Adapter</a> </li> </ul></li></ul></li> <li><a href="namespace-Gedmo.Sluggable.Util.html">Util</a> </li> </ul></li> <li><a href="namespace-Gedmo.SoftDeleteable.html">SoftDeleteable<span></span></a> <ul> <li><a href="namespace-Gedmo.SoftDeleteable.Filter.html">Filter<span></span></a> <ul> <li><a href="namespace-Gedmo.SoftDeleteable.Filter.ODM.html">ODM</a> </li> </ul></li> <li><a href="namespace-Gedmo.SoftDeleteable.Mapping.html">Mapping<span></span></a> <ul> <li><a href="namespace-Gedmo.SoftDeleteable.Mapping.Driver.html">Driver</a> </li> <li><a href="namespace-Gedmo.SoftDeleteable.Mapping.Event.html">Event<span></span></a> <ul> <li><a href="namespace-Gedmo.SoftDeleteable.Mapping.Event.Adapter.html">Adapter</a> </li> </ul></li></ul></li> <li><a href="namespace-Gedmo.SoftDeleteable.Query.html">Query<span></span></a> <ul> <li><a href="namespace-Gedmo.SoftDeleteable.Query.TreeWalker.html">TreeWalker<span></span></a> <ul> <li><a href="namespace-Gedmo.SoftDeleteable.Query.TreeWalker.Exec.html">Exec</a> </li> </ul></li></ul></li> <li><a href="namespace-Gedmo.SoftDeleteable.Traits.html">Traits</a> </li> </ul></li> <li><a href="namespace-Gedmo.Sortable.html">Sortable<span></span></a> <ul> <li><a href="namespace-Gedmo.Sortable.Entity.html">Entity<span></span></a> <ul> <li><a href="namespace-Gedmo.Sortable.Entity.Repository.html">Repository</a> </li> </ul></li> <li><a href="namespace-Gedmo.Sortable.Mapping.html">Mapping<span></span></a> <ul> <li><a href="namespace-Gedmo.Sortable.Mapping.Driver.html">Driver</a> </li> <li><a href="namespace-Gedmo.Sortable.Mapping.Event.html">Event<span></span></a> <ul> <li><a href="namespace-Gedmo.Sortable.Mapping.Event.Adapter.html">Adapter</a> </li> </ul></li></ul></li></ul></li> <li><a href="namespace-Gedmo.Timestampable.html">Timestampable<span></span></a> <ul> <li><a href="namespace-Gedmo.Timestampable.Mapping.html">Mapping<span></span></a> <ul> <li><a href="namespace-Gedmo.Timestampable.Mapping.Driver.html">Driver</a> </li> <li><a href="namespace-Gedmo.Timestampable.Mapping.Event.html">Event<span></span></a> <ul> <li><a href="namespace-Gedmo.Timestampable.Mapping.Event.Adapter.html">Adapter</a> </li> </ul></li></ul></li> <li><a href="namespace-Gedmo.Timestampable.Traits.html">Traits</a> </li> </ul></li> <li><a href="namespace-Gedmo.Tool.html">Tool<span></span></a> <ul> <li><a href="namespace-Gedmo.Tool.Logging.html">Logging<span></span></a> <ul> <li><a href="namespace-Gedmo.Tool.Logging.DBAL.html">DBAL</a> </li> </ul></li> <li><a href="namespace-Gedmo.Tool.Wrapper.html">Wrapper</a> </li> </ul></li> <li><a href="namespace-Gedmo.Translatable.html">Translatable<span></span></a> <ul> <li><a href="namespace-Gedmo.Translatable.Document.html">Document<span></span></a> <ul> <li><a href="namespace-Gedmo.Translatable.Document.MappedSuperclass.html">MappedSuperclass</a> </li> <li><a href="namespace-Gedmo.Translatable.Document.Repository.html">Repository</a> </li> </ul></li> <li><a href="namespace-Gedmo.Translatable.Entity.html">Entity<span></span></a> <ul> <li><a href="namespace-Gedmo.Translatable.Entity.MappedSuperclass.html">MappedSuperclass</a> </li> <li><a href="namespace-Gedmo.Translatable.Entity.Repository.html">Repository</a> </li> </ul></li> <li><a href="namespace-Gedmo.Translatable.Hydrator.html">Hydrator<span></span></a> <ul> <li><a href="namespace-Gedmo.Translatable.Hydrator.ORM.html">ORM</a> </li> </ul></li> <li><a href="namespace-Gedmo.Translatable.Mapping.html">Mapping<span></span></a> <ul> <li><a href="namespace-Gedmo.Translatable.Mapping.Driver.html">Driver</a> </li> <li><a href="namespace-Gedmo.Translatable.Mapping.Event.html">Event<span></span></a> <ul> <li><a href="namespace-Gedmo.Translatable.Mapping.Event.Adapter.html">Adapter</a> </li> </ul></li></ul></li> <li><a href="namespace-Gedmo.Translatable.Query.html">Query<span></span></a> <ul> <li><a href="namespace-Gedmo.Translatable.Query.TreeWalker.html">TreeWalker</a> </li> </ul></li></ul></li> <li><a href="namespace-Gedmo.Translator.html">Translator<span></span></a> <ul> <li><a href="namespace-Gedmo.Translator.Document.html">Document</a> </li> <li><a href="namespace-Gedmo.Translator.Entity.html">Entity</a> </li> </ul></li> <li><a href="namespace-Gedmo.Tree.html">Tree<span></span></a> <ul> <li><a href="namespace-Gedmo.Tree.Document.html">Document<span></span></a> <ul> <li><a href="namespace-Gedmo.Tree.Document.MongoDB.html">MongoDB<span></span></a> <ul> <li><a href="namespace-Gedmo.Tree.Document.MongoDB.Repository.html">Repository</a> </li> </ul></li></ul></li> <li><a href="namespace-Gedmo.Tree.Entity.html">Entity<span></span></a> <ul> <li><a href="namespace-Gedmo.Tree.Entity.MappedSuperclass.html">MappedSuperclass</a> </li> <li><a href="namespace-Gedmo.Tree.Entity.Repository.html">Repository</a> </li> </ul></li> <li><a href="namespace-Gedmo.Tree.Mapping.html">Mapping<span></span></a> <ul> <li><a href="namespace-Gedmo.Tree.Mapping.Driver.html">Driver</a> </li> <li><a href="namespace-Gedmo.Tree.Mapping.Event.html">Event<span></span></a> <ul> <li><a href="namespace-Gedmo.Tree.Mapping.Event.Adapter.html">Adapter</a> </li> </ul></li></ul></li> <li><a href="namespace-Gedmo.Tree.Strategy.html">Strategy<span></span></a> <ul> <li><a href="namespace-Gedmo.Tree.Strategy.ODM.html">ODM<span></span></a> <ul> <li><a href="namespace-Gedmo.Tree.Strategy.ODM.MongoDB.html">MongoDB</a> </li> </ul></li> <li><a href="namespace-Gedmo.Tree.Strategy.ORM.html">ORM</a> </li> </ul></li></ul></li> <li><a href="namespace-Gedmo.Uploadable.html">Uploadable<span></span></a> <ul> <li><a href="namespace-Gedmo.Uploadable.Event.html">Event</a> </li> <li><a href="namespace-Gedmo.Uploadable.FileInfo.html">FileInfo</a> </li> <li><a href="namespace-Gedmo.Uploadable.FilenameGenerator.html">FilenameGenerator</a> </li> <li><a href="namespace-Gedmo.Uploadable.Mapping.html">Mapping<span></span></a> <ul> <li><a href="namespace-Gedmo.Uploadable.Mapping.Driver.html">Driver</a> </li> </ul></li> <li><a href="namespace-Gedmo.Uploadable.MimeType.html">MimeType</a> </li> <li><a href="namespace-Gedmo.Uploadable.Stub.html">Stub</a> </li> </ul></li></ul></li> <li><a href="namespace-Incenteev.html">Incenteev<span></span></a> <ul> <li><a href="namespace-Incenteev.ParameterHandler.html">ParameterHandler<span></span></a> <ul> <li><a href="namespace-Incenteev.ParameterHandler.Tests.html">Tests</a> </li> </ul></li></ul></li> <li><a href="namespace-IpTraceable.html">IpTraceable<span></span></a> <ul> <li><a href="namespace-IpTraceable.Fixture.html">Fixture<span></span></a> <ul> <li><a href="namespace-IpTraceable.Fixture.Document.html">Document</a> </li> </ul></li></ul></li> <li><a href="namespace-JMS.html">JMS<span></span></a> <ul> <li><a href="namespace-JMS.Parser.html">Parser<span></span></a> <ul> <li><a href="namespace-JMS.Parser.Tests.html">Tests</a> </li> </ul></li> <li><a href="namespace-JMS.Serializer.html">Serializer<span></span></a> <ul> <li><a href="namespace-JMS.Serializer.Annotation.html">Annotation</a> </li> <li><a href="namespace-JMS.Serializer.Builder.html">Builder</a> </li> <li><a href="namespace-JMS.Serializer.Construction.html">Construction</a> </li> <li><a href="namespace-JMS.Serializer.EventDispatcher.html">EventDispatcher<span></span></a> <ul> <li><a href="namespace-JMS.Serializer.EventDispatcher.Subscriber.html">Subscriber</a> </li> </ul></li> <li><a href="namespace-JMS.Serializer.Exception.html">Exception</a> </li> <li><a href="namespace-JMS.Serializer.Exclusion.html">Exclusion</a> </li> <li><a href="namespace-JMS.Serializer.Handler.html">Handler</a> </li> <li><a href="namespace-JMS.Serializer.Metadata.html">Metadata<span></span></a> <ul> <li><a href="namespace-JMS.Serializer.Metadata.Driver.html">Driver</a> </li> </ul></li> <li><a href="namespace-JMS.Serializer.Naming.html">Naming</a> </li> <li><a href="namespace-JMS.Serializer.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-JMS.Serializer.Tests.Exclusion.html">Exclusion</a> </li> <li><a href="namespace-JMS.Serializer.Tests.Fixtures.html">Fixtures<span></span></a> <ul> <li><a href="namespace-JMS.Serializer.Tests.Fixtures.Discriminator.html">Discriminator</a> </li> <li><a href="namespace-JMS.Serializer.Tests.Fixtures.Doctrine.html">Doctrine</a> </li> <li><a href="namespace-JMS.Serializer.Tests.Fixtures.DoctrinePHPCR.html">DoctrinePHPCR</a> </li> </ul></li> <li><a href="namespace-JMS.Serializer.Tests.Handler.html">Handler</a> </li> <li><a href="namespace-JMS.Serializer.Tests.Metadata.html">Metadata<span></span></a> <ul> <li><a href="namespace-JMS.Serializer.Tests.Metadata.Driver.html">Driver</a> </li> </ul></li> <li><a href="namespace-JMS.Serializer.Tests.Serializer.html">Serializer<span></span></a> <ul> <li><a href="namespace-JMS.Serializer.Tests.Serializer.EventDispatcher.html">EventDispatcher<span></span></a> <ul> <li><a href="namespace-JMS.Serializer.Tests.Serializer.EventDispatcher.Subscriber.html">Subscriber</a> </li> </ul></li> <li><a href="namespace-JMS.Serializer.Tests.Serializer.Naming.html">Naming</a> </li> </ul></li> <li><a href="namespace-JMS.Serializer.Tests.Twig.html">Twig</a> </li> </ul></li> <li><a href="namespace-JMS.Serializer.Twig.html">Twig</a> </li> <li><a href="namespace-JMS.Serializer.Util.html">Util</a> </li> </ul></li> <li><a href="namespace-JMS.SerializerBundle.html">SerializerBundle<span></span></a> <ul> <li><a href="namespace-JMS.SerializerBundle.DependencyInjection.html">DependencyInjection<span></span></a> <ul> <li><a href="namespace-JMS.SerializerBundle.DependencyInjection.Compiler.html">Compiler</a> </li> </ul></li> <li><a href="namespace-JMS.SerializerBundle.Serializer.html">Serializer</a> </li> <li><a href="namespace-JMS.SerializerBundle.Templating.html">Templating</a> </li> <li><a href="namespace-JMS.SerializerBundle.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-JMS.SerializerBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a> <ul> <li><a href="namespace-JMS.SerializerBundle.Tests.DependencyInjection.Fixture.html">Fixture</a> </li> </ul></li></ul></li></ul></li> <li><a href="namespace-JMS.TranslationBundle.html">TranslationBundle<span></span></a> <ul> <li><a href="namespace-JMS.TranslationBundle.Annotation.html">Annotation</a> </li> <li><a href="namespace-JMS.TranslationBundle.Command.html">Command</a> </li> <li><a href="namespace-JMS.TranslationBundle.Controller.html">Controller</a> </li> <li><a href="namespace-JMS.TranslationBundle.DependencyInjection.html">DependencyInjection<span></span></a> <ul> <li><a href="namespace-JMS.TranslationBundle.DependencyInjection.Compiler.html">Compiler</a> </li> </ul></li> <li><a href="namespace-JMS.TranslationBundle.Exception.html">Exception</a> </li> <li><a href="namespace-JMS.TranslationBundle.Logger.html">Logger</a> </li> <li><a href="namespace-JMS.TranslationBundle.Model.html">Model</a> </li> <li><a href="namespace-JMS.TranslationBundle.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-JMS.TranslationBundle.Tests.Functional.html">Functional<span></span></a> <ul> <li><a href="namespace-JMS.TranslationBundle.Tests.Functional.TestBundle.html">TestBundle<span></span></a> <ul> <li><a href="namespace-JMS.TranslationBundle.Tests.Functional.TestBundle.Controller.html">Controller</a> </li> </ul></li></ul></li> <li><a href="namespace-JMS.TranslationBundle.Tests.Model.html">Model</a> </li> <li><a href="namespace-JMS.TranslationBundle.Tests.Translation.html">Translation<span></span></a> <ul> <li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Comparison.html">Comparison</a> </li> <li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Dumper.html">Dumper</a> </li> <li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Extractor.html">Extractor<span></span></a> <ul> <li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Extractor.File.html">File<span></span></a> <ul> <li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Extractor.File.Fixture.html">Fixture</a> </li> </ul></li> <li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Extractor.Fixture.html">Fixture<span></span></a> <ul> <li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Extractor.Fixture.SimpleTest.html">SimpleTest<span></span></a> <ul> <li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Extractor.Fixture.SimpleTest.Controller.html">Controller</a> </li> <li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Extractor.Fixture.SimpleTest.Form.html">Form</a> </li> </ul></li></ul></li></ul></li> <li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Loader.html">Loader<span></span></a> <ul> <li><a href="namespace-JMS.TranslationBundle.Tests.Translation.Loader.Symfony.html">Symfony</a> </li> </ul></li></ul></li> <li><a href="namespace-JMS.TranslationBundle.Tests.Twig.html">Twig</a> </li> </ul></li> <li><a href="namespace-JMS.TranslationBundle.Translation.html">Translation<span></span></a> <ul> <li><a href="namespace-JMS.TranslationBundle.Translation.Comparison.html">Comparison</a> </li> <li><a href="namespace-JMS.TranslationBundle.Translation.Dumper.html">Dumper</a> </li> <li><a href="namespace-JMS.TranslationBundle.Translation.Extractor.html">Extractor<span></span></a> <ul> <li><a href="namespace-JMS.TranslationBundle.Translation.Extractor.File.html">File</a> </li> </ul></li> <li><a href="namespace-JMS.TranslationBundle.Translation.Loader.html">Loader<span></span></a> <ul> <li><a href="namespace-JMS.TranslationBundle.Translation.Loader.Symfony.html">Symfony</a> </li> </ul></li></ul></li> <li><a href="namespace-JMS.TranslationBundle.Twig.html">Twig</a> </li> <li><a href="namespace-JMS.TranslationBundle.Util.html">Util</a> </li> </ul></li></ul></li> <li><a href="namespace-Knp.html">Knp<span></span></a> <ul> <li><a href="namespace-Knp.Bundle.html">Bundle<span></span></a> <ul> <li><a href="namespace-Knp.Bundle.MenuBundle.html">MenuBundle<span></span></a> <ul> <li><a href="namespace-Knp.Bundle.MenuBundle.DependencyInjection.html">DependencyInjection<span></span></a> <ul> <li><a href="namespace-Knp.Bundle.MenuBundle.DependencyInjection.Compiler.html">Compiler</a> </li> </ul></li> <li><a href="namespace-Knp.Bundle.MenuBundle.EventListener.html">EventListener</a> </li> <li><a href="namespace-Knp.Bundle.MenuBundle.Provider.html">Provider</a> </li> <li><a href="namespace-Knp.Bundle.MenuBundle.Renderer.html">Renderer</a> </li> <li><a href="namespace-Knp.Bundle.MenuBundle.Templating.html">Templating<span></span></a> <ul> <li><a href="namespace-Knp.Bundle.MenuBundle.Templating.Helper.html">Helper</a> </li> </ul></li> <li><a href="namespace-Knp.Bundle.MenuBundle.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Knp.Bundle.MenuBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a> <ul> <li><a href="namespace-Knp.Bundle.MenuBundle.Tests.DependencyInjection.Compiler.html">Compiler</a> </li> </ul></li> <li><a href="namespace-Knp.Bundle.MenuBundle.Tests.EventListener.html">EventListener</a> </li> <li><a href="namespace-Knp.Bundle.MenuBundle.Tests.Provider.html">Provider</a> </li> <li><a href="namespace-Knp.Bundle.MenuBundle.Tests.Renderer.html">Renderer</a> </li> <li><a href="namespace-Knp.Bundle.MenuBundle.Tests.Stubs.html">Stubs<span></span></a> <ul> <li><a href="namespace-Knp.Bundle.MenuBundle.Tests.Stubs.Child.html">Child<span></span></a> <ul> <li><a href="namespace-Knp.Bundle.MenuBundle.Tests.Stubs.Child.Menu.html">Menu</a> </li> </ul></li> <li><a href="namespace-Knp.Bundle.MenuBundle.Tests.Stubs.Menu.html">Menu</a> </li> </ul></li> <li><a href="namespace-Knp.Bundle.MenuBundle.Tests.Templating.html">Templating</a> </li> </ul></li></ul></li></ul></li> <li><a href="namespace-Knp.Menu.html">Menu<span></span></a> <ul> <li><a href="namespace-Knp.Menu.Factory.html">Factory</a> </li> <li><a href="namespace-Knp.Menu.Integration.html">Integration<span></span></a> <ul> <li><a href="namespace-Knp.Menu.Integration.Silex.html">Silex</a> </li> <li><a href="namespace-Knp.Menu.Integration.Symfony.html">Symfony</a> </li> </ul></li> <li><a href="namespace-Knp.Menu.Iterator.html">Iterator</a> </li> <li><a href="namespace-Knp.Menu.Loader.html">Loader</a> </li> <li><a href="namespace-Knp.Menu.Matcher.html">Matcher<span></span></a> <ul> <li><a href="namespace-Knp.Menu.Matcher.Voter.html">Voter</a> </li> </ul></li> <li><a href="namespace-Knp.Menu.Provider.html">Provider</a> </li> <li><a href="namespace-Knp.Menu.Renderer.html">Renderer</a> </li> <li><a href="namespace-Knp.Menu.Silex.html">Silex<span></span></a> <ul> <li><a href="namespace-Knp.Menu.Silex.Voter.html">Voter</a> </li> </ul></li> <li><a href="namespace-Knp.Menu.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Knp.Menu.Tests.Factory.html">Factory</a> </li> <li><a href="namespace-Knp.Menu.Tests.Integration.html">Integration<span></span></a> <ul> <li><a href="namespace-Knp.Menu.Tests.Integration.Silex.html">Silex</a> </li> </ul></li> <li><a href="namespace-Knp.Menu.Tests.Iterator.html">Iterator</a> </li> <li><a href="namespace-Knp.Menu.Tests.Loader.html">Loader</a> </li> <li><a href="namespace-Knp.Menu.Tests.Matcher.html">Matcher<span></span></a> <ul> <li><a href="namespace-Knp.Menu.Tests.Matcher.Voter.html">Voter</a> </li> </ul></li> <li><a href="namespace-Knp.Menu.Tests.Provider.html">Provider</a> </li> <li><a href="namespace-Knp.Menu.Tests.Renderer.html">Renderer</a> </li> <li><a href="namespace-Knp.Menu.Tests.Silex.html">Silex</a> </li> <li><a href="namespace-Knp.Menu.Tests.Twig.html">Twig</a> </li> <li><a href="namespace-Knp.Menu.Tests.Util.html">Util</a> </li> </ul></li> <li><a href="namespace-Knp.Menu.Twig.html">Twig</a> </li> <li><a href="namespace-Knp.Menu.Util.html">Util</a> </li> </ul></li></ul></li> <li><a href="namespace-Loggable.html">Loggable<span></span></a> <ul> <li><a href="namespace-Loggable.Fixture.html">Fixture<span></span></a> <ul> <li><a href="namespace-Loggable.Fixture.Document.html">Document<span></span></a> <ul> <li><a href="namespace-Loggable.Fixture.Document.Log.html">Log</a> </li> </ul></li> <li><a href="namespace-Loggable.Fixture.Entity.html">Entity<span></span></a> <ul> <li><a href="namespace-Loggable.Fixture.Entity.Log.html">Log</a> </li> </ul></li></ul></li></ul></li> <li><a href="namespace-Lunetics.html">Lunetics<span></span></a> <ul> <li><a href="namespace-Lunetics.LocaleBundle.html">LocaleBundle<span></span></a> <ul> <li><a href="namespace-Lunetics.LocaleBundle.Controller.html">Controller</a> </li> <li><a href="namespace-Lunetics.LocaleBundle.Cookie.html">Cookie</a> </li> <li><a href="namespace-Lunetics.LocaleBundle.DependencyInjection.html">DependencyInjection<span></span></a> <ul> <li><a href="namespace-Lunetics.LocaleBundle.DependencyInjection.Compiler.html">Compiler</a> </li> </ul></li> <li><a href="namespace-Lunetics.LocaleBundle.Event.html">Event</a> </li> <li><a href="namespace-Lunetics.LocaleBundle.EventListener.html">EventListener</a> </li> <li><a href="namespace-Lunetics.LocaleBundle.Form.html">Form<span></span></a> <ul> <li><a href="namespace-Lunetics.LocaleBundle.Form.Extension.html">Extension<span></span></a> <ul> <li><a href="namespace-Lunetics.LocaleBundle.Form.Extension.ChoiceList.html">ChoiceList</a> </li> <li><a href="namespace-Lunetics.LocaleBundle.Form.Extension.Type.html">Type</a> </li> </ul></li></ul></li> <li><a href="namespace-Lunetics.LocaleBundle.LocaleGuesser.html">LocaleGuesser</a> </li> <li><a href="namespace-Lunetics.LocaleBundle.LocaleInformation.html">LocaleInformation</a> </li> <li><a href="namespace-Lunetics.LocaleBundle.Matcher.html">Matcher</a> </li> <li><a href="namespace-Lunetics.LocaleBundle.Session.html">Session</a> </li> <li><a href="namespace-Lunetics.LocaleBundle.Switcher.html">Switcher</a> </li> <li><a href="namespace-Lunetics.LocaleBundle.Templating.html">Templating<span></span></a> <ul> <li><a href="namespace-Lunetics.LocaleBundle.Templating.Helper.html">Helper</a> </li> </ul></li> <li><a href="namespace-Lunetics.LocaleBundle.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Lunetics.LocaleBundle.Tests.Controller.html">Controller</a> </li> <li><a href="namespace-Lunetics.LocaleBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a> <ul> <li><a href="namespace-Lunetics.LocaleBundle.Tests.DependencyInjection.Compiler.html">Compiler</a> </li> </ul></li> <li><a href="namespace-Lunetics.LocaleBundle.Tests.Event.html">Event</a> </li> <li><a href="namespace-Lunetics.LocaleBundle.Tests.EventListener.html">EventListener</a> </li> <li><a href="namespace-Lunetics.LocaleBundle.Tests.Form.html">Form<span></span></a> <ul> <li><a href="namespace-Lunetics.LocaleBundle.Tests.Form.Extension.html">Extension<span></span></a> <ul> <li><a href="namespace-Lunetics.LocaleBundle.Tests.Form.Extension.ChoiceList.html">ChoiceList</a> </li> <li><a href="namespace-Lunetics.LocaleBundle.Tests.Form.Extension.Type.html">Type</a> </li> </ul></li></ul></li> <li><a href="namespace-Lunetics.LocaleBundle.Tests.LocaleGuesser.html">LocaleGuesser</a> </li> <li><a href="namespace-Lunetics.LocaleBundle.Tests.LocaleInformation.html">LocaleInformation</a> </li> <li><a href="namespace-Lunetics.LocaleBundle.Tests.Templating.html">Templating<span></span></a> <ul> <li><a href="namespace-Lunetics.LocaleBundle.Tests.Templating.Helper.html">Helper</a> </li> </ul></li> <li><a href="namespace-Lunetics.LocaleBundle.Tests.Twig.html">Twig<span></span></a> <ul> <li><a href="namespace-Lunetics.LocaleBundle.Tests.Twig.Extension.html">Extension</a> </li> </ul></li> <li><a href="namespace-Lunetics.LocaleBundle.Tests.Validator.html">Validator</a> </li> </ul></li> <li><a href="namespace-Lunetics.LocaleBundle.Twig.html">Twig<span></span></a> <ul> <li><a href="namespace-Lunetics.LocaleBundle.Twig.Extension.html">Extension</a> </li> </ul></li> <li><a href="namespace-Lunetics.LocaleBundle.Validator.html">Validator</a> </li> </ul></li></ul></li> <li><a href="namespace-Mapping.html">Mapping<span></span></a> <ul> <li><a href="namespace-Mapping.Fixture.html">Fixture<span></span></a> <ul> <li><a href="namespace-Mapping.Fixture.Compatibility.html">Compatibility</a> </li> <li><a href="namespace-Mapping.Fixture.Document.html">Document</a> </li> <li><a href="namespace-Mapping.Fixture.Unmapped.html">Unmapped</a> </li> <li><a href="namespace-Mapping.Fixture.Xml.html">Xml</a> </li> <li><a href="namespace-Mapping.Fixture.Yaml.html">Yaml</a> </li> </ul></li></ul></li> <li><a href="namespace-Metadata.html">Metadata<span></span></a> <ul> <li><a href="namespace-Metadata.Cache.html">Cache</a> </li> <li><a href="namespace-Metadata.Driver.html">Driver</a> </li> <li><a href="namespace-Metadata.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Metadata.Tests.Cache.html">Cache</a> </li> <li><a href="namespace-Metadata.Tests.Driver.html">Driver<span></span></a> <ul> <li><a href="namespace-Metadata.Tests.Driver.Fixture.html">Fixture<span></span></a> <ul> <li><a href="namespace-Metadata.Tests.Driver.Fixture.A.html">A</a> </li> <li><a href="namespace-Metadata.Tests.Driver.Fixture.B.html">B</a> </li> <li><a href="namespace-Metadata.Tests.Driver.Fixture.C.html">C<span></span></a> <ul> <li><a href="namespace-Metadata.Tests.Driver.Fixture.C.SubDir.html">SubDir</a> </li> </ul></li> <li><a href="namespace-Metadata.Tests.Driver.Fixture.T.html">T</a> </li> </ul></li></ul></li> <li><a href="namespace-Metadata.Tests.Fixtures.html">Fixtures<span></span></a> <ul> <li><a href="namespace-Metadata.Tests.Fixtures.ComplexHierarchy.html">ComplexHierarchy</a> </li> </ul></li></ul></li></ul></li> <li><a href="namespace-Monolog.html">Monolog<span></span></a> <ul> <li><a href="namespace-Monolog.Formatter.html">Formatter</a> </li> <li><a href="namespace-Monolog.Handler.html">Handler<span></span></a> <ul> <li><a href="namespace-Monolog.Handler.FingersCrossed.html">FingersCrossed</a> </li> <li><a href="namespace-Monolog.Handler.SyslogUdp.html">SyslogUdp</a> </li> </ul></li> <li><a href="namespace-Monolog.Processor.html">Processor</a> </li> </ul></li> <li><a href="namespace-MyProject.html">MyProject<span></span></a> <ul> <li><a href="namespace-MyProject.Proxies.html">Proxies<span></span></a> <ul> <li><a href="namespace-MyProject.Proxies.__CG__.html">__CG__<span></span></a> <ul> <li><a href="namespace-MyProject.Proxies.__CG__.Doctrine.html">Doctrine<span></span></a> <ul> <li><a href="namespace-MyProject.Proxies.__CG__.Doctrine.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-MyProject.Proxies.__CG__.Doctrine.Tests.Common.html">Common<span></span></a> <ul> <li><a href="namespace-MyProject.Proxies.__CG__.Doctrine.Tests.Common.Util.html">Util</a> </li> </ul></li></ul></li></ul></li> <li><a href="namespace-MyProject.Proxies.__CG__.OtherProject.html">OtherProject<span></span></a> <ul> <li><a href="namespace-MyProject.Proxies.__CG__.OtherProject.Proxies.html">Proxies<span></span></a> <ul> <li><a href="namespace-MyProject.Proxies.__CG__.OtherProject.Proxies.__CG__.html">__CG__<span></span></a> <ul> <li><a href="namespace-MyProject.Proxies.__CG__.OtherProject.Proxies.__CG__.Doctrine.html">Doctrine<span></span></a> <ul> <li><a href="namespace-MyProject.Proxies.__CG__.OtherProject.Proxies.__CG__.Doctrine.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-MyProject.Proxies.__CG__.OtherProject.Proxies.__CG__.Doctrine.Tests.Common.html">Common<span></span></a> <ul> <li><a href="namespace-MyProject.Proxies.__CG__.OtherProject.Proxies.__CG__.Doctrine.Tests.Common.Util.html">Util</a> </li> </ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li> <li><a href="namespace-NamespaceCollision.html">NamespaceCollision<span></span></a> <ul> <li><a href="namespace-NamespaceCollision.A.html">A<span></span></a> <ul> <li><a href="namespace-NamespaceCollision.A.B.html">B</a> </li> </ul></li> <li><a href="namespace-NamespaceCollision.C.html">C<span></span></a> <ul> <li><a href="namespace-NamespaceCollision.C.B.html">B</a> </li> </ul></li></ul></li> <li><a href="namespace-Namespaced.html">Namespaced</a> </li> <li><a href="namespace-Namespaced2.html">Namespaced2</a> </li> <li><a href="namespace-Negotiation.html">Negotiation<span></span></a> <ul> <li><a href="namespace-Negotiation.Tests.html">Tests</a> </li> </ul></li> <li><a href="namespace-None.html">None</a> </li> <li><a href="namespace-Pequiven.html">Pequiven<span></span></a> <ul> <li><a href="namespace-Pequiven.SEIPBundle.html">SEIPBundle<span></span></a> <ul> <li><a href="namespace-Pequiven.SEIPBundle.Controller.html">Controller</a> </li> <li><a href="namespace-Pequiven.SEIPBundle.DataFixtures.html">DataFixtures</a> </li> <li><a href="namespace-Pequiven.SEIPBundle.DependencyInjection.html">DependencyInjection</a> </li> <li><a href="namespace-Pequiven.SEIPBundle.Entity.html">Entity</a> </li> <li><a href="namespace-Pequiven.SEIPBundle.EventListener.html">EventListener</a> </li> <li><a href="namespace-Pequiven.SEIPBundle.Form.html">Form<span></span></a> <ul> <li><a href="namespace-Pequiven.SEIPBundle.Form.Type.html">Type</a> </li> </ul></li> <li><a href="namespace-Pequiven.SEIPBundle.Menu.html">Menu<span></span></a> <ul> <li><a href="namespace-Pequiven.SEIPBundle.Menu.Template.html">Template<span></span></a> <ul> <li><a href="namespace-Pequiven.SEIPBundle.Menu.Template.Developer.html">Developer</a> </li> </ul></li></ul></li> <li><a href="namespace-Pequiven.SEIPBundle.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Pequiven.SEIPBundle.Tests.Controller.html">Controller</a> </li> </ul></li></ul></li></ul></li> <li><a href="namespace-PHP.html">PHP</a> </li> <li><a href="namespace-PhpCollection.html">PhpCollection<span></span></a> <ul> <li><a href="namespace-PhpCollection.Tests.html">Tests</a> </li> </ul></li> <li><a href="namespace-PhpOption.html">PhpOption<span></span></a> <ul> <li><a href="namespace-PhpOption.Tests.html">Tests</a> </li> </ul></li> <li><a href="namespace-Proxies.html">Proxies<span></span></a> <ul> <li><a href="namespace-Proxies.__CG__.html">__CG__<span></span></a> <ul> <li><a href="namespace-Proxies.__CG__.Pequiven.html">Pequiven<span></span></a> <ul> <li><a href="namespace-Proxies.__CG__.Pequiven.SEIPBundle.html">SEIPBundle<span></span></a> <ul> <li><a href="namespace-Proxies.__CG__.Pequiven.SEIPBundle.Entity.html">Entity</a> </li> </ul></li></ul></li></ul></li></ul></li> <li><a href="namespace-Psr.html">Psr<span></span></a> <ul> <li><a href="namespace-Psr.Log.html">Log<span></span></a> <ul> <li><a href="namespace-Psr.Log.Test.html">Test</a> </li> </ul></li></ul></li> <li><a href="namespace-ReferenceIntegrity.html">ReferenceIntegrity<span></span></a> <ul> <li><a href="namespace-ReferenceIntegrity.Fixture.html">Fixture<span></span></a> <ul> <li><a href="namespace-ReferenceIntegrity.Fixture.Document.html">Document<span></span></a> <ul> <li><a href="namespace-ReferenceIntegrity.Fixture.Document.ManyNullify.html">ManyNullify</a> </li> <li><a href="namespace-ReferenceIntegrity.Fixture.Document.ManyRestrict.html">ManyRestrict</a> </li> <li><a href="namespace-ReferenceIntegrity.Fixture.Document.OneNullify.html">OneNullify</a> </li> <li><a href="namespace-ReferenceIntegrity.Fixture.Document.OneRestrict.html">OneRestrict</a> </li> </ul></li></ul></li></ul></li> <li><a href="namespace-References.html">References<span></span></a> <ul> <li><a href="namespace-References.Fixture.html">Fixture<span></span></a> <ul> <li><a href="namespace-References.Fixture.ODM.html">ODM<span></span></a> <ul> <li><a href="namespace-References.Fixture.ODM.MongoDB.html">MongoDB</a> </li> </ul></li> <li><a href="namespace-References.Fixture.ORM.html">ORM</a> </li> </ul></li></ul></li> <li><a href="namespace-Sensio.html">Sensio<span></span></a> <ul> <li><a href="namespace-Sensio.Bundle.html">Bundle<span></span></a> <ul> <li><a href="namespace-Sensio.Bundle.DistributionBundle.html">DistributionBundle<span></span></a> <ul> <li><a href="namespace-Sensio.Bundle.DistributionBundle.Composer.html">Composer</a> </li> <li><a href="namespace-Sensio.Bundle.DistributionBundle.Configurator.html">Configurator<span></span></a> <ul> <li><a href="namespace-Sensio.Bundle.DistributionBundle.Configurator.Form.html">Form</a> </li> <li><a href="namespace-Sensio.Bundle.DistributionBundle.Configurator.Step.html">Step</a> </li> </ul></li> <li><a href="namespace-Sensio.Bundle.DistributionBundle.Controller.html">Controller</a> </li> <li><a href="namespace-Sensio.Bundle.DistributionBundle.DependencyInjection.html">DependencyInjection</a> </li> </ul></li> <li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.html">FrameworkExtraBundle<span></span></a> <ul> <li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Configuration.html">Configuration</a> </li> <li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.DependencyInjection.html">DependencyInjection<span></span></a> <ul> <li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.DependencyInjection.Compiler.html">Compiler</a> </li> </ul></li> <li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.EventListener.html">EventListener</a> </li> <li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Request.html">Request<span></span></a> <ul> <li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Request.ParamConverter.html">ParamConverter</a> </li> </ul></li> <li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Routing.html">Routing</a> </li> <li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Security.html">Security</a> </li> <li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Templating.html">Templating</a> </li> <li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Configuration.html">Configuration</a> </li> <li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.EventListener.html">EventListener<span></span></a> <ul> <li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.EventListener.Fixture.html">Fixture</a> </li> </ul></li> <li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Request.html">Request<span></span></a> <ul> <li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Request.ParamConverter.html">ParamConverter</a> </li> </ul></li> <li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Routing.html">Routing</a> </li> <li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.html">Templating<span></span></a> <ul> <li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.Fixture.html">Fixture<span></span></a> <ul> <li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.Fixture.BarBundle.html">BarBundle<span></span></a> <ul> <li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.Fixture.BarBundle.Controller.html">Controller</a> </li> </ul></li> <li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.Fixture.FooBarBundle.html">FooBarBundle<span></span></a> <ul> <li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.Fixture.FooBarBundle.Controller.html">Controller</a> </li> </ul></li> <li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.Fixture.FooBundle.html">FooBundle<span></span></a> <ul> <li><a href="namespace-Sensio.Bundle.FrameworkExtraBundle.Tests.Templating.Fixture.FooBundle.Controller.html">Controller</a> </li> </ul></li></ul></li></ul></li></ul></li></ul></li> <li><a href="namespace-Sensio.Bundle.GeneratorBundle.html">GeneratorBundle<span></span></a> <ul> <li><a href="namespace-Sensio.Bundle.GeneratorBundle.Command.html">Command<span></span></a> <ul> <li><a href="namespace-Sensio.Bundle.GeneratorBundle.Command.Helper.html">Helper</a> </li> </ul></li> <li><a href="namespace-Sensio.Bundle.GeneratorBundle.Generator.html">Generator</a> </li> <li><a href="namespace-Sensio.Bundle.GeneratorBundle.Manipulator.html">Manipulator</a> </li> <li><a href="namespace-Sensio.Bundle.GeneratorBundle.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Sensio.Bundle.GeneratorBundle.Tests.Command.html">Command</a> </li> <li><a href="namespace-Sensio.Bundle.GeneratorBundle.Tests.Generator.html">Generator</a> </li> </ul></li></ul></li></ul></li></ul></li> <li><a href="namespace-Sluggable.html">Sluggable<span></span></a> <ul> <li><a href="namespace-Sluggable.Fixture.html">Fixture<span></span></a> <ul> <li><a href="namespace-Sluggable.Fixture.Doctrine.html">Doctrine</a> </li> <li><a href="namespace-Sluggable.Fixture.Document.html">Document<span></span></a> <ul> <li><a href="namespace-Sluggable.Fixture.Document.Handler.html">Handler</a> </li> </ul></li> <li><a href="namespace-Sluggable.Fixture.Handler.html">Handler<span></span></a> <ul> <li><a href="namespace-Sluggable.Fixture.Handler.People.html">People</a> </li> </ul></li> <li><a href="namespace-Sluggable.Fixture.Inheritance.html">Inheritance</a> </li> <li><a href="namespace-Sluggable.Fixture.Inheritance2.html">Inheritance2</a> </li> <li><a href="namespace-Sluggable.Fixture.Issue104.html">Issue104</a> </li> <li><a href="namespace-Sluggable.Fixture.Issue116.html">Issue116</a> </li> <li><a href="namespace-Sluggable.Fixture.Issue131.html">Issue131</a> </li> <li><a href="namespace-Sluggable.Fixture.Issue449.html">Issue449</a> </li> <li><a href="namespace-Sluggable.Fixture.Issue633.html">Issue633</a> </li> <li><a href="namespace-Sluggable.Fixture.Issue827.html">Issue827</a> </li> <li><a href="namespace-Sluggable.Fixture.Issue939.html">Issue939</a> </li> <li><a href="namespace-Sluggable.Fixture.MappedSuperclass.html">MappedSuperclass</a> </li> </ul></li></ul></li> <li><a href="namespace-SoftDeleteable.html">SoftDeleteable<span></span></a> <ul> <li><a href="namespace-SoftDeleteable.Fixture.html">Fixture<span></span></a> <ul> <li><a href="namespace-SoftDeleteable.Fixture.Document.html">Document</a> </li> <li><a href="namespace-SoftDeleteable.Fixture.Entity.html">Entity</a> </li> </ul></li></ul></li> <li><a href="namespace-Sortable.html">Sortable<span></span></a> <ul> <li><a href="namespace-Sortable.Fixture.html">Fixture<span></span></a> <ul> <li><a href="namespace-Sortable.Fixture.Transport.html">Transport</a> </li> </ul></li></ul></li> <li><a href="namespace-Stof.html">Stof<span></span></a> <ul> <li><a href="namespace-Stof.DoctrineExtensionsBundle.html">DoctrineExtensionsBundle<span></span></a> <ul> <li><a href="namespace-Stof.DoctrineExtensionsBundle.DependencyInjection.html">DependencyInjection<span></span></a> <ul> <li><a href="namespace-Stof.DoctrineExtensionsBundle.DependencyInjection.Compiler.html">Compiler</a> </li> </ul></li> <li><a href="namespace-Stof.DoctrineExtensionsBundle.EventListener.html">EventListener</a> </li> <li><a href="namespace-Stof.DoctrineExtensionsBundle.Uploadable.html">Uploadable</a> </li> </ul></li></ul></li> <li><a href="namespace-Symfony.html">Symfony<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.html">Bridge<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.Doctrine.html">Doctrine<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.Doctrine.CacheWarmer.html">CacheWarmer</a> </li> <li><a href="namespace-Symfony.Bridge.Doctrine.DataCollector.html">DataCollector</a> </li> <li><a href="namespace-Symfony.Bridge.Doctrine.DataFixtures.html">DataFixtures</a> </li> <li><a href="namespace-Symfony.Bridge.Doctrine.DependencyInjection.html">DependencyInjection<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.Doctrine.DependencyInjection.CompilerPass.html">CompilerPass</a> </li> <li><a href="namespace-Symfony.Bridge.Doctrine.DependencyInjection.Security.html">Security<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.Doctrine.DependencyInjection.Security.UserProvider.html">UserProvider</a> </li> </ul></li></ul></li> <li><a href="namespace-Symfony.Bridge.Doctrine.ExpressionLanguage.html">ExpressionLanguage</a> </li> <li><a href="namespace-Symfony.Bridge.Doctrine.Form.html">Form<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.Doctrine.Form.ChoiceList.html">ChoiceList</a> </li> <li><a href="namespace-Symfony.Bridge.Doctrine.Form.DataTransformer.html">DataTransformer</a> </li> <li><a href="namespace-Symfony.Bridge.Doctrine.Form.EventListener.html">EventListener</a> </li> <li><a href="namespace-Symfony.Bridge.Doctrine.Form.Type.html">Type</a> </li> </ul></li> <li><a href="namespace-Symfony.Bridge.Doctrine.HttpFoundation.html">HttpFoundation</a> </li> <li><a href="namespace-Symfony.Bridge.Doctrine.Logger.html">Logger</a> </li> <li><a href="namespace-Symfony.Bridge.Doctrine.Security.html">Security<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.Doctrine.Security.RememberMe.html">RememberMe</a> </li> <li><a href="namespace-Symfony.Bridge.Doctrine.Security.User.html">User</a> </li> </ul></li> <li><a href="namespace-Symfony.Bridge.Doctrine.Test.html">Test</a> </li> <li><a href="namespace-Symfony.Bridge.Doctrine.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.Doctrine.Tests.DataCollector.html">DataCollector</a> </li> <li><a href="namespace-Symfony.Bridge.Doctrine.Tests.DataFixtures.html">DataFixtures</a> </li> <li><a href="namespace-Symfony.Bridge.Doctrine.Tests.DependencyInjection.html">DependencyInjection<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.Doctrine.Tests.DependencyInjection.CompilerPass.html">CompilerPass</a> </li> </ul></li> <li><a href="namespace-Symfony.Bridge.Doctrine.Tests.ExpressionLanguage.html">ExpressionLanguage</a> </li> <li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Fixtures.html">Fixtures</a> </li> <li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Form.html">Form<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Form.ChoiceList.html">ChoiceList</a> </li> <li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Form.DataTransformer.html">DataTransformer</a> </li> <li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Form.Type.html">Type</a> </li> </ul></li> <li><a href="namespace-Symfony.Bridge.Doctrine.Tests.HttpFoundation.html">HttpFoundation</a> </li> <li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Logger.html">Logger</a> </li> <li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Security.html">Security<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Security.User.html">User</a> </li> </ul></li> <li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Validator.html">Validator<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.Doctrine.Tests.Validator.Constraints.html">Constraints</a> </li> </ul></li></ul></li> <li><a href="namespace-Symfony.Bridge.Doctrine.Validator.html">Validator<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.Doctrine.Validator.Constraints.html">Constraints</a> </li> </ul></li></ul></li> <li><a href="namespace-Symfony.Bridge.Monolog.html">Monolog<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.Monolog.Formatter.html">Formatter</a> </li> <li><a href="namespace-Symfony.Bridge.Monolog.Handler.html">Handler</a> </li> <li><a href="namespace-Symfony.Bridge.Monolog.Processor.html">Processor</a> </li> <li><a href="namespace-Symfony.Bridge.Monolog.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.Monolog.Tests.Handler.html">Handler</a> </li> <li><a href="namespace-Symfony.Bridge.Monolog.Tests.Processor.html">Processor</a> </li> </ul></li></ul></li> <li><a href="namespace-Symfony.Bridge.Propel1.html">Propel1<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.Propel1.DataCollector.html">DataCollector</a> </li> <li><a href="namespace-Symfony.Bridge.Propel1.DependencyInjection.html">DependencyInjection<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.Propel1.DependencyInjection.Security.html">Security<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.Propel1.DependencyInjection.Security.UserProvider.html">UserProvider</a> </li> </ul></li></ul></li> <li><a href="namespace-Symfony.Bridge.Propel1.Form.html">Form<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.Propel1.Form.ChoiceList.html">ChoiceList</a> </li> <li><a href="namespace-Symfony.Bridge.Propel1.Form.DataTransformer.html">DataTransformer</a> </li> <li><a href="namespace-Symfony.Bridge.Propel1.Form.EventListener.html">EventListener</a> </li> <li><a href="namespace-Symfony.Bridge.Propel1.Form.Type.html">Type</a> </li> </ul></li> <li><a href="namespace-Symfony.Bridge.Propel1.Logger.html">Logger</a> </li> <li><a href="namespace-Symfony.Bridge.Propel1.Security.html">Security<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.Propel1.Security.User.html">User</a> </li> </ul></li> <li><a href="namespace-Symfony.Bridge.Propel1.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.Propel1.Tests.DataCollector.html">DataCollector</a> </li> <li><a href="namespace-Symfony.Bridge.Propel1.Tests.Fixtures.html">Fixtures</a> </li> <li><a href="namespace-Symfony.Bridge.Propel1.Tests.Form.html">Form<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.Propel1.Tests.Form.ChoiceList.html">ChoiceList</a> </li> <li><a href="namespace-Symfony.Bridge.Propel1.Tests.Form.DataTransformer.html">DataTransformer</a> </li> </ul></li></ul></li></ul></li> <li><a href="namespace-Symfony.Bridge.ProxyManager.html">ProxyManager<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.ProxyManager.LazyProxy.html">LazyProxy<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.ProxyManager.LazyProxy.Instantiator.html">Instantiator</a> </li> <li><a href="namespace-Symfony.Bridge.ProxyManager.LazyProxy.PhpDumper.html">PhpDumper</a> </li> </ul></li> <li><a href="namespace-Symfony.Bridge.ProxyManager.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.ProxyManager.Tests.LazyProxy.html">LazyProxy<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.ProxyManager.Tests.LazyProxy.Dumper.html">Dumper</a> </li> <li><a href="namespace-Symfony.Bridge.ProxyManager.Tests.LazyProxy.Instantiator.html">Instantiator</a> </li> <li><a href="namespace-Symfony.Bridge.ProxyManager.Tests.LazyProxy.PhpDumper.html">PhpDumper</a> </li> </ul></li></ul></li></ul></li> <li><a href="namespace-Symfony.Bridge.Twig.html">Twig<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.Twig.Extension.html">Extension</a> </li> <li><a href="namespace-Symfony.Bridge.Twig.Form.html">Form</a> </li> <li><a href="namespace-Symfony.Bridge.Twig.Node.html">Node</a> </li> <li><a href="namespace-Symfony.Bridge.Twig.NodeVisitor.html">NodeVisitor</a> </li> <li><a href="namespace-Symfony.Bridge.Twig.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.Twig.Tests.Extension.html">Extension<span></span></a> <ul> <li><a href="namespace-Symfony.Bridge.Twig.Tests.Extension.Fixtures.html">Fixtures</a> </li> </ul></li> <li><a href="namespace-Symfony.Bridge.Twig.Tests.Node.html">Node</a> </li> <li><a href="namespace-Symfony.Bridge.Twig.Tests.NodeVisitor.html">NodeVisitor</a> </li> <li><a href="namespace-Symfony.Bridge.Twig.Tests.TokenParser.html">TokenParser</a> </li> <li><a href="namespace-Symfony.Bridge.Twig.Tests.Translation.html">Translation</a> </li> </ul></li> <li><a href="namespace-Symfony.Bridge.Twig.TokenParser.html">TokenParser</a> </li> <li><a href="namespace-Symfony.Bridge.Twig.Translation.html">Translation</a> </li> </ul></li></ul></li> <li><a href="namespace-Symfony.Bundle.html">Bundle<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.AsseticBundle.html">AsseticBundle<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.AsseticBundle.CacheWarmer.html">CacheWarmer</a> </li> <li><a href="namespace-Symfony.Bundle.AsseticBundle.Command.html">Command</a> </li> <li><a href="namespace-Symfony.Bundle.AsseticBundle.Config.html">Config</a> </li> <li><a href="namespace-Symfony.Bundle.AsseticBundle.Controller.html">Controller</a> </li> <li><a href="namespace-Symfony.Bundle.AsseticBundle.DependencyInjection.html">DependencyInjection<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.AsseticBundle.DependencyInjection.Compiler.html">Compiler</a> </li> </ul></li> <li><a href="namespace-Symfony.Bundle.AsseticBundle.EventListener.html">EventListener</a> </li> <li><a href="namespace-Symfony.Bundle.AsseticBundle.Exception.html">Exception</a> </li> <li><a href="namespace-Symfony.Bundle.AsseticBundle.Factory.html">Factory<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.AsseticBundle.Factory.Loader.html">Loader</a> </li> <li><a href="namespace-Symfony.Bundle.AsseticBundle.Factory.Resource.html">Resource</a> </li> <li><a href="namespace-Symfony.Bundle.AsseticBundle.Factory.Worker.html">Worker</a> </li> </ul></li> <li><a href="namespace-Symfony.Bundle.AsseticBundle.Routing.html">Routing</a> </li> <li><a href="namespace-Symfony.Bundle.AsseticBundle.Templating.html">Templating</a> </li> <li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.CacheWarmer.html">CacheWarmer</a> </li> <li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.Command.html">Command</a> </li> <li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.Controller.html">Controller</a> </li> <li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.DependencyInjection.html">DependencyInjection</a> </li> <li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.Factory.html">Factory<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.Factory.Resource.html">Resource</a> </li> </ul></li> <li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.Templating.html">Templating</a> </li> <li><a href="namespace-Symfony.Bundle.AsseticBundle.Tests.TestBundle.html">TestBundle</a> </li> </ul></li> <li><a href="namespace-Symfony.Bundle.AsseticBundle.Twig.html">Twig</a> </li> </ul></li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.html">FrameworkBundle<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.CacheWarmer.html">CacheWarmer</a> </li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Command.html">Command</a> </li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Console.html">Console<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Console.Descriptor.html">Descriptor</a> </li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Console.Helper.html">Helper</a> </li> </ul></li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Controller.html">Controller</a> </li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.DataCollector.html">DataCollector</a> </li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.DependencyInjection.html">DependencyInjection<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.DependencyInjection.Compiler.html">Compiler</a> </li> </ul></li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.EventListener.html">EventListener</a> </li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Fragment.html">Fragment</a> </li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.HttpCache.html">HttpCache</a> </li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Routing.html">Routing</a> </li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Templating.html">Templating<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Templating.Asset.html">Asset</a> </li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Templating.Helper.html">Helper</a> </li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Templating.Loader.html">Loader</a> </li> </ul></li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Test.html">Test</a> </li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.CacheWarmer.html">CacheWarmer</a> </li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Console.html">Console<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Console.Descriptor.html">Descriptor</a> </li> </ul></li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Controller.html">Controller</a> </li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.DependencyInjection.Compiler.html">Compiler</a> </li> </ul></li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Fixtures.html">Fixtures<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Fixtures.BaseBundle.html">BaseBundle</a> </li> </ul></li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Fragment.html">Fragment</a> </li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Functional.html">Functional<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Functional.app.html">app</a> </li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Functional.Bundle.html">Bundle<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Functional.Bundle.TestBundle.html">TestBundle<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Functional.Bundle.TestBundle.Controller.html">Controller</a> </li> </ul></li></ul></li></ul></li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Routing.html">Routing</a> </li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Templating.html">Templating<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Templating.Helper.html">Helper<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Templating.Helper.Fixtures.html">Fixtures</a> </li> </ul></li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Templating.Loader.html">Loader</a> </li> </ul></li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Translation.html">Translation</a> </li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Tests.Validator.html">Validator</a> </li> </ul></li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Translation.html">Translation</a> </li> <li><a href="namespace-Symfony.Bundle.FrameworkBundle.Validator.html">Validator</a> </li> </ul></li> <li><a href="namespace-Symfony.Bundle.MonologBundle.html">MonologBundle<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.MonologBundle.DependencyInjection.html">DependencyInjection<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.MonologBundle.DependencyInjection.Compiler.html">Compiler</a> </li> </ul></li> <li><a href="namespace-Symfony.Bundle.MonologBundle.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.MonologBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.MonologBundle.Tests.DependencyInjection.Compiler.html">Compiler</a> </li> </ul></li></ul></li></ul></li> <li><a href="namespace-Symfony.Bundle.SecurityBundle.html">SecurityBundle<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.SecurityBundle.Command.html">Command</a> </li> <li><a href="namespace-Symfony.Bundle.SecurityBundle.DataCollector.html">DataCollector</a> </li> <li><a href="namespace-Symfony.Bundle.SecurityBundle.DependencyInjection.html">DependencyInjection<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.SecurityBundle.DependencyInjection.Compiler.html">Compiler</a> </li> <li><a href="namespace-Symfony.Bundle.SecurityBundle.DependencyInjection.Security.html">Security<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.SecurityBundle.DependencyInjection.Security.Factory.html">Factory</a> </li> <li><a href="namespace-Symfony.Bundle.SecurityBundle.DependencyInjection.Security.UserProvider.html">UserProvider</a> </li> </ul></li></ul></li> <li><a href="namespace-Symfony.Bundle.SecurityBundle.EventListener.html">EventListener</a> </li> <li><a href="namespace-Symfony.Bundle.SecurityBundle.Security.html">Security</a> </li> <li><a href="namespace-Symfony.Bundle.SecurityBundle.Templating.html">Templating<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.SecurityBundle.Templating.Helper.html">Helper</a> </li> </ul></li> <li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.DependencyInjection.Security.html">Security<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.DependencyInjection.Security.Factory.html">Factory</a> </li> </ul></li></ul></li> <li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.html">Functional<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.app.html">app</a> </li> <li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.html">Bundle<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.CsrfFormLoginBundle.html">CsrfFormLoginBundle<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.CsrfFormLoginBundle.Controller.html">Controller</a> </li> <li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.CsrfFormLoginBundle.Form.html">Form</a> </li> </ul></li> <li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.FormLoginBundle.html">FormLoginBundle<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.FormLoginBundle.Controller.html">Controller</a> </li> <li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.FormLoginBundle.DependencyInjection.html">DependencyInjection</a> </li> <li><a href="namespace-Symfony.Bundle.SecurityBundle.Tests.Functional.Bundle.FormLoginBundle.Security.html">Security</a> </li> </ul></li></ul></li></ul></li></ul></li> <li><a href="namespace-Symfony.Bundle.SecurityBundle.Twig.html">Twig<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.SecurityBundle.Twig.Extension.html">Extension</a> </li> </ul></li></ul></li> <li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.html">SwiftmailerBundle<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.Command.html">Command</a> </li> <li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.DataCollector.html">DataCollector</a> </li> <li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.DependencyInjection.html">DependencyInjection<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.DependencyInjection.Compiler.html">Compiler</a> </li> </ul></li> <li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.EventListener.html">EventListener</a> </li> <li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.SwiftmailerBundle.Tests.DependencyInjection.html">DependencyInjection</a> </li> </ul></li></ul></li> <li><a href="namespace-Symfony.Bundle.TwigBundle.html">TwigBundle<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.TwigBundle.CacheWarmer.html">CacheWarmer</a> </li> <li><a href="namespace-Symfony.Bundle.TwigBundle.Command.html">Command</a> </li> <li><a href="namespace-Symfony.Bundle.TwigBundle.Controller.html">Controller</a> </li> <li><a href="namespace-Symfony.Bundle.TwigBundle.Debug.html">Debug</a> </li> <li><a href="namespace-Symfony.Bundle.TwigBundle.DependencyInjection.html">DependencyInjection<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.TwigBundle.DependencyInjection.Compiler.html">Compiler</a> </li> </ul></li> <li><a href="namespace-Symfony.Bundle.TwigBundle.Extension.html">Extension</a> </li> <li><a href="namespace-Symfony.Bundle.TwigBundle.Loader.html">Loader</a> </li> <li><a href="namespace-Symfony.Bundle.TwigBundle.Node.html">Node</a> </li> <li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.Controller.html">Controller</a> </li> <li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.DependencyInjection.html">DependencyInjection<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.DependencyInjection.Compiler.html">Compiler</a> </li> </ul></li> <li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.Loader.html">Loader</a> </li> <li><a href="namespace-Symfony.Bundle.TwigBundle.Tests.TokenParser.html">TokenParser</a> </li> </ul></li> <li><a href="namespace-Symfony.Bundle.TwigBundle.TokenParser.html">TokenParser</a> </li> </ul></li> <li><a href="namespace-Symfony.Bundle.WebProfilerBundle.html">WebProfilerBundle<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Controller.html">Controller</a> </li> <li><a href="namespace-Symfony.Bundle.WebProfilerBundle.DependencyInjection.html">DependencyInjection</a> </li> <li><a href="namespace-Symfony.Bundle.WebProfilerBundle.EventListener.html">EventListener</a> </li> <li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Profiler.html">Profiler</a> </li> <li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Tests.Controller.html">Controller</a> </li> <li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Tests.DependencyInjection.html">DependencyInjection</a> </li> <li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Tests.EventListener.html">EventListener</a> </li> <li><a href="namespace-Symfony.Bundle.WebProfilerBundle.Tests.Profiler.html">Profiler</a> </li> </ul></li></ul></li></ul></li> <li><a href="namespace-Symfony.Component.html">Component<span></span></a> <ul> <li><a href="namespace-Symfony.Component.BrowserKit.html">BrowserKit<span></span></a> <ul> <li><a href="namespace-Symfony.Component.BrowserKit.Tests.html">Tests</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.ClassLoader.html">ClassLoader<span></span></a> <ul> <li><a href="namespace-Symfony.Component.ClassLoader.Tests.html">Tests</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Config.html">Config<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Config.Definition.html">Definition<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Config.Definition.Builder.html">Builder</a> </li> <li><a href="namespace-Symfony.Component.Config.Definition.Dumper.html">Dumper</a> </li> <li><a href="namespace-Symfony.Component.Config.Definition.Exception.html">Exception</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Config.Exception.html">Exception</a> </li> <li><a href="namespace-Symfony.Component.Config.Loader.html">Loader</a> </li> <li><a href="namespace-Symfony.Component.Config.Resource.html">Resource</a> </li> <li><a href="namespace-Symfony.Component.Config.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Config.Tests.Definition.html">Definition<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Config.Tests.Definition.Builder.html">Builder</a> </li> <li><a href="namespace-Symfony.Component.Config.Tests.Definition.Dumper.html">Dumper</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Config.Tests.Fixtures.html">Fixtures<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Config.Tests.Fixtures.Configuration.html">Configuration</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Config.Tests.Loader.html">Loader</a> </li> <li><a href="namespace-Symfony.Component.Config.Tests.Resource.html">Resource</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Config.Util.html">Util</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Console.html">Console<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Console.Command.html">Command</a> </li> <li><a href="namespace-Symfony.Component.Console.Descriptor.html">Descriptor</a> </li> <li><a href="namespace-Symfony.Component.Console.Event.html">Event</a> </li> <li><a href="namespace-Symfony.Component.Console.Formatter.html">Formatter</a> </li> <li><a href="namespace-Symfony.Component.Console.Helper.html">Helper</a> </li> <li><a href="namespace-Symfony.Component.Console.Input.html">Input</a> </li> <li><a href="namespace-Symfony.Component.Console.Output.html">Output</a> </li> <li><a href="namespace-Symfony.Component.Console.Tester.html">Tester</a> </li> <li><a href="namespace-Symfony.Component.Console.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Console.Tests.Command.html">Command</a> </li> <li><a href="namespace-Symfony.Component.Console.Tests.Descriptor.html">Descriptor</a> </li> <li><a href="namespace-Symfony.Component.Console.Tests.Fixtures.html">Fixtures</a> </li> <li><a href="namespace-Symfony.Component.Console.Tests.Formatter.html">Formatter</a> </li> <li><a href="namespace-Symfony.Component.Console.Tests.Helper.html">Helper</a> </li> <li><a href="namespace-Symfony.Component.Console.Tests.Input.html">Input</a> </li> <li><a href="namespace-Symfony.Component.Console.Tests.Output.html">Output</a> </li> <li><a href="namespace-Symfony.Component.Console.Tests.Tester.html">Tester</a> </li> </ul></li></ul></li> <li><a href="namespace-Symfony.Component.CssSelector.html">CssSelector<span></span></a> <ul> <li><a href="namespace-Symfony.Component.CssSelector.Exception.html">Exception</a> </li> <li><a href="namespace-Symfony.Component.CssSelector.Node.html">Node</a> </li> <li><a href="namespace-Symfony.Component.CssSelector.Parser.html">Parser<span></span></a> <ul> <li><a href="namespace-Symfony.Component.CssSelector.Parser.Handler.html">Handler</a> </li> <li><a href="namespace-Symfony.Component.CssSelector.Parser.Shortcut.html">Shortcut</a> </li> <li><a href="namespace-Symfony.Component.CssSelector.Parser.Tokenizer.html">Tokenizer</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.CssSelector.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Component.CssSelector.Tests.Node.html">Node</a> </li> <li><a href="namespace-Symfony.Component.CssSelector.Tests.Parser.html">Parser<span></span></a> <ul> <li><a href="namespace-Symfony.Component.CssSelector.Tests.Parser.Handler.html">Handler</a> </li> <li><a href="namespace-Symfony.Component.CssSelector.Tests.Parser.Shortcut.html">Shortcut</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.CssSelector.Tests.XPath.html">XPath</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.CssSelector.XPath.html">XPath<span></span></a> <ul> <li><a href="namespace-Symfony.Component.CssSelector.XPath.Extension.html">Extension</a> </li> </ul></li></ul></li> <li><a href="namespace-Symfony.Component.Debug.html">Debug<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Debug.Exception.html">Exception</a> </li> <li><a href="namespace-Symfony.Component.Debug.FatalErrorHandler.html">FatalErrorHandler</a> </li> <li><a href="namespace-Symfony.Component.Debug.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Debug.Tests.Exception.html">Exception</a> </li> <li><a href="namespace-Symfony.Component.Debug.Tests.FatalErrorHandler.html">FatalErrorHandler</a> </li> <li><a href="namespace-Symfony.Component.Debug.Tests.Fixtures.html">Fixtures</a> </li> </ul></li></ul></li> <li><a href="namespace-Symfony.Component.DependencyInjection.html">DependencyInjection<span></span></a> <ul> <li><a href="namespace-Symfony.Component.DependencyInjection.Compiler.html">Compiler</a> </li> <li><a href="namespace-Symfony.Component.DependencyInjection.Dump.html">Dump</a> </li> <li><a href="namespace-Symfony.Component.DependencyInjection.Dumper.html">Dumper</a> </li> <li><a href="namespace-Symfony.Component.DependencyInjection.Exception.html">Exception</a> </li> <li><a href="namespace-Symfony.Component.DependencyInjection.Extension.html">Extension</a> </li> <li><a href="namespace-Symfony.Component.DependencyInjection.LazyProxy.html">LazyProxy<span></span></a> <ul> <li><a href="namespace-Symfony.Component.DependencyInjection.LazyProxy.Instantiator.html">Instantiator</a> </li> <li><a href="namespace-Symfony.Component.DependencyInjection.LazyProxy.PhpDumper.html">PhpDumper</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.DependencyInjection.Loader.html">Loader</a> </li> <li><a href="namespace-Symfony.Component.DependencyInjection.ParameterBag.html">ParameterBag</a> </li> <li><a href="namespace-Symfony.Component.DependencyInjection.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Component.DependencyInjection.Tests.Compiler.html">Compiler</a> </li> <li><a href="namespace-Symfony.Component.DependencyInjection.Tests.Dumper.html">Dumper</a> </li> <li><a href="namespace-Symfony.Component.DependencyInjection.Tests.Extension.html">Extension</a> </li> <li><a href="namespace-Symfony.Component.DependencyInjection.Tests.LazyProxy.html">LazyProxy<span></span></a> <ul> <li><a href="namespace-Symfony.Component.DependencyInjection.Tests.LazyProxy.Instantiator.html">Instantiator</a> </li> <li><a href="namespace-Symfony.Component.DependencyInjection.Tests.LazyProxy.PhpDumper.html">PhpDumper</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.DependencyInjection.Tests.Loader.html">Loader</a> </li> <li><a href="namespace-Symfony.Component.DependencyInjection.Tests.ParameterBag.html">ParameterBag</a> </li> </ul></li></ul></li> <li><a href="namespace-Symfony.Component.DomCrawler.html">DomCrawler<span></span></a> <ul> <li><a href="namespace-Symfony.Component.DomCrawler.Field.html">Field</a> </li> <li><a href="namespace-Symfony.Component.DomCrawler.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Component.DomCrawler.Tests.Field.html">Field</a> </li> </ul></li></ul></li> <li><a href="namespace-Symfony.Component.EventDispatcher.html">EventDispatcher<span></span></a> <ul> <li><a href="namespace-Symfony.Component.EventDispatcher.Debug.html">Debug</a> </li> <li><a href="namespace-Symfony.Component.EventDispatcher.Tests.html">Tests</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.ExpressionLanguage.html">ExpressionLanguage<span></span></a> <ul> <li><a href="namespace-Symfony.Component.ExpressionLanguage.Node.html">Node</a> </li> <li><a href="namespace-Symfony.Component.ExpressionLanguage.ParserCache.html">ParserCache</a> </li> <li><a href="namespace-Symfony.Component.ExpressionLanguage.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Component.ExpressionLanguage.Tests.Node.html">Node</a> </li> </ul></li></ul></li> <li><a href="namespace-Symfony.Component.Filesystem.html">Filesystem<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Filesystem.Exception.html">Exception</a> </li> <li><a href="namespace-Symfony.Component.Filesystem.Tests.html">Tests</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Finder.html">Finder<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Finder.Adapter.html">Adapter</a> </li> <li><a href="namespace-Symfony.Component.Finder.Comparator.html">Comparator</a> </li> <li><a href="namespace-Symfony.Component.Finder.Exception.html">Exception</a> </li> <li><a href="namespace-Symfony.Component.Finder.Expression.html">Expression</a> </li> <li><a href="namespace-Symfony.Component.Finder.Iterator.html">Iterator</a> </li> <li><a href="namespace-Symfony.Component.Finder.Shell.html">Shell</a> </li> <li><a href="namespace-Symfony.Component.Finder.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Finder.Tests.Comparator.html">Comparator</a> </li> <li><a href="namespace-Symfony.Component.Finder.Tests.Expression.html">Expression</a> </li> <li><a href="namespace-Symfony.Component.Finder.Tests.FakeAdapter.html">FakeAdapter</a> </li> <li><a href="namespace-Symfony.Component.Finder.Tests.Iterator.html">Iterator</a> </li> </ul></li></ul></li> <li><a href="namespace-Symfony.Component.Form.html">Form<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Form.Exception.html">Exception</a> </li> <li><a href="namespace-Symfony.Component.Form.Extension.html">Extension<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Form.Extension.Core.html">Core<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Form.Extension.Core.ChoiceList.html">ChoiceList</a> </li> <li><a href="namespace-Symfony.Component.Form.Extension.Core.DataMapper.html">DataMapper</a> </li> <li><a href="namespace-Symfony.Component.Form.Extension.Core.DataTransformer.html">DataTransformer</a> </li> <li><a href="namespace-Symfony.Component.Form.Extension.Core.EventListener.html">EventListener</a> </li> <li><a href="namespace-Symfony.Component.Form.Extension.Core.Type.html">Type</a> </li> <li><a href="namespace-Symfony.Component.Form.Extension.Core.View.html">View</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Form.Extension.Csrf.html">Csrf<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Form.Extension.Csrf.EventListener.html">EventListener</a> </li> <li><a href="namespace-Symfony.Component.Form.Extension.Csrf.Type.html">Type</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Form.Extension.DataCollector.html">DataCollector<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Form.Extension.DataCollector.EventListener.html">EventListener</a> </li> <li><a href="namespace-Symfony.Component.Form.Extension.DataCollector.Proxy.html">Proxy</a> </li> <li><a href="namespace-Symfony.Component.Form.Extension.DataCollector.Type.html">Type</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Form.Extension.DependencyInjection.html">DependencyInjection</a> </li> <li><a href="namespace-Symfony.Component.Form.Extension.HttpFoundation.html">HttpFoundation<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Form.Extension.HttpFoundation.Type.html">Type</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Form.Extension.Templating.html">Templating</a> </li> <li><a href="namespace-Symfony.Component.Form.Extension.Validator.html">Validator<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Form.Extension.Validator.Constraints.html">Constraints</a> </li> <li><a href="namespace-Symfony.Component.Form.Extension.Validator.EventListener.html">EventListener</a> </li> <li><a href="namespace-Symfony.Component.Form.Extension.Validator.Type.html">Type</a> </li> <li><a href="namespace-Symfony.Component.Form.Extension.Validator.Util.html">Util</a> </li> <li><a href="namespace-Symfony.Component.Form.Extension.Validator.ViolationMapper.html">ViolationMapper</a> </li> </ul></li></ul></li> <li><a href="namespace-Symfony.Component.Form.Guess.html">Guess</a> </li> <li><a href="namespace-Symfony.Component.Form.Test.html">Test</a> </li> <li><a href="namespace-Symfony.Component.Form.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Form.Tests.Extension.html">Extension<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.html">Core<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.ChoiceList.html">ChoiceList</a> </li> <li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.DataMapper.html">DataMapper</a> </li> <li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.DataTransformer.html">DataTransformer</a> </li> <li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.EventListener.html">EventListener</a> </li> <li><a href="namespace-Symfony.Component.Form.Tests.Extension.Core.Type.html">Type</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Form.Tests.Extension.Csrf.html">Csrf<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Form.Tests.Extension.Csrf.CsrfProvider.html">CsrfProvider</a> </li> <li><a href="namespace-Symfony.Component.Form.Tests.Extension.Csrf.EventListener.html">EventListener</a> </li> <li><a href="namespace-Symfony.Component.Form.Tests.Extension.Csrf.Type.html">Type</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Form.Tests.Extension.DataCollector.html">DataCollector<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Form.Tests.Extension.DataCollector.Type.html">Type</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Form.Tests.Extension.HttpFoundation.html">HttpFoundation<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Form.Tests.Extension.HttpFoundation.EventListener.html">EventListener</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.html">Validator<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.Constraints.html">Constraints</a> </li> <li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.EventListener.html">EventListener</a> </li> <li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.Type.html">Type</a> </li> <li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.Util.html">Util</a> </li> <li><a href="namespace-Symfony.Component.Form.Tests.Extension.Validator.ViolationMapper.html">ViolationMapper</a> </li> </ul></li></ul></li> <li><a href="namespace-Symfony.Component.Form.Tests.Fixtures.html">Fixtures</a> </li> <li><a href="namespace-Symfony.Component.Form.Tests.Guess.html">Guess</a> </li> <li><a href="namespace-Symfony.Component.Form.Tests.Util.html">Util</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Form.Util.html">Util</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.HttpFoundation.html">HttpFoundation<span></span></a> <ul> <li><a href="namespace-Symfony.Component.HttpFoundation.File.html">File<span></span></a> <ul> <li><a href="namespace-Symfony.Component.HttpFoundation.File.Exception.html">Exception</a> </li> <li><a href="namespace-Symfony.Component.HttpFoundation.File.MimeType.html">MimeType</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.HttpFoundation.Session.html">Session<span></span></a> <ul> <li><a href="namespace-Symfony.Component.HttpFoundation.Session.Attribute.html">Attribute</a> </li> <li><a href="namespace-Symfony.Component.HttpFoundation.Session.Flash.html">Flash</a> </li> <li><a href="namespace-Symfony.Component.HttpFoundation.Session.Storage.html">Storage<span></span></a> <ul> <li><a href="namespace-Symfony.Component.HttpFoundation.Session.Storage.Handler.html">Handler</a> </li> <li><a href="namespace-Symfony.Component.HttpFoundation.Session.Storage.Proxy.html">Proxy</a> </li> </ul></li></ul></li> <li><a href="namespace-Symfony.Component.HttpFoundation.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Component.HttpFoundation.Tests.File.html">File<span></span></a> <ul> <li><a href="namespace-Symfony.Component.HttpFoundation.Tests.File.MimeType.html">MimeType</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.html">Session<span></span></a> <ul> <li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.Attribute.html">Attribute</a> </li> <li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.Flash.html">Flash</a> </li> <li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.Storage.html">Storage<span></span></a> <ul> <li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.Storage.Handler.html">Handler</a> </li> <li><a href="namespace-Symfony.Component.HttpFoundation.Tests.Session.Storage.Proxy.html">Proxy</a> </li> </ul></li></ul></li></ul></li></ul></li> <li><a href="namespace-Symfony.Component.HttpKernel.html">HttpKernel<span></span></a> <ul> <li><a href="namespace-Symfony.Component.HttpKernel.Bundle.html">Bundle</a> </li> <li><a href="namespace-Symfony.Component.HttpKernel.CacheClearer.html">CacheClearer</a> </li> <li><a href="namespace-Symfony.Component.HttpKernel.CacheWarmer.html">CacheWarmer</a> </li> <li><a href="namespace-Symfony.Component.HttpKernel.Config.html">Config</a> </li> <li><a href="namespace-Symfony.Component.HttpKernel.Controller.html">Controller</a> </li> <li><a href="namespace-Symfony.Component.HttpKernel.DataCollector.html">DataCollector<span></span></a> <ul> <li><a href="namespace-Symfony.Component.HttpKernel.DataCollector.Util.html">Util</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.HttpKernel.Debug.html">Debug</a> </li> <li><a href="namespace-Symfony.Component.HttpKernel.DependencyInjection.html">DependencyInjection</a> </li> <li><a href="namespace-Symfony.Component.HttpKernel.Event.html">Event</a> </li> <li><a href="namespace-Symfony.Component.HttpKernel.EventListener.html">EventListener</a> </li> <li><a href="namespace-Symfony.Component.HttpKernel.Exception.html">Exception</a> </li> <li><a href="namespace-Symfony.Component.HttpKernel.Fragment.html">Fragment</a> </li> <li><a href="namespace-Symfony.Component.HttpKernel.HttpCache.html">HttpCache</a> </li> <li><a href="namespace-Symfony.Component.HttpKernel.Log.html">Log</a> </li> <li><a href="namespace-Symfony.Component.HttpKernel.Profiler.html">Profiler</a> </li> <li><a href="namespace-Symfony.Component.HttpKernel.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Component.HttpKernel.Tests.Bundle.html">Bundle</a> </li> <li><a href="namespace-Symfony.Component.HttpKernel.Tests.CacheClearer.html">CacheClearer</a> </li> <li><a href="namespace-Symfony.Component.HttpKernel.Tests.CacheWarmer.html">CacheWarmer</a> </li> <li><a href="namespace-Symfony.Component.HttpKernel.Tests.Config.html">Config</a> </li> <li><a href="namespace-Symfony.Component.HttpKernel.Tests.Controller.html">Controller</a> </li> <li><a href="namespace-Symfony.Component.HttpKernel.Tests.DataCollector.html">DataCollector</a> </li> <li><a href="namespace-Symfony.Component.HttpKernel.Tests.Debug.html">Debug</a> </li> <li><a href="namespace-Symfony.Component.HttpKernel.Tests.DependencyInjection.html">DependencyInjection</a> </li> <li><a href="namespace-Symfony.Component.HttpKernel.Tests.EventListener.html">EventListener</a> </li> <li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.html">Fixtures<span></span></a> <ul> <li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionAbsentBundle.html">ExtensionAbsentBundle</a> </li> <li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionLoadedBundle.html">ExtensionLoadedBundle<span></span></a> <ul> <li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionLoadedBundle.DependencyInjection.html">DependencyInjection</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionPresentBundle.html">ExtensionPresentBundle<span></span></a> <ul> <li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionPresentBundle.Command.html">Command</a> </li> <li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fixtures.ExtensionPresentBundle.DependencyInjection.html">DependencyInjection</a> </li> </ul></li></ul></li> <li><a href="namespace-Symfony.Component.HttpKernel.Tests.Fragment.html">Fragment</a> </li> <li><a href="namespace-Symfony.Component.HttpKernel.Tests.HttpCache.html">HttpCache</a> </li> <li><a href="namespace-Symfony.Component.HttpKernel.Tests.Profiler.html">Profiler<span></span></a> <ul> <li><a href="namespace-Symfony.Component.HttpKernel.Tests.Profiler.Mock.html">Mock</a> </li> </ul></li></ul></li></ul></li> <li><a href="namespace-Symfony.Component.Icu.html">Icu<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Icu.Tests.html">Tests</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Intl.html">Intl<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Intl.Collator.html">Collator</a> </li> <li><a href="namespace-Symfony.Component.Intl.DateFormatter.html">DateFormatter<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Intl.DateFormatter.DateFormat.html">DateFormat</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Intl.Exception.html">Exception</a> </li> <li><a href="namespace-Symfony.Component.Intl.Globals.html">Globals</a> </li> <li><a href="namespace-Symfony.Component.Intl.Locale.html">Locale</a> </li> <li><a href="namespace-Symfony.Component.Intl.NumberFormatter.html">NumberFormatter</a> </li> <li><a href="namespace-Symfony.Component.Intl.ResourceBundle.html">ResourceBundle<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Compiler.html">Compiler</a> </li> <li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Reader.html">Reader</a> </li> <li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Transformer.html">Transformer<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Transformer.Rule.html">Rule</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Util.html">Util</a> </li> <li><a href="namespace-Symfony.Component.Intl.ResourceBundle.Writer.html">Writer</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Intl.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Intl.Tests.Collator.html">Collator<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Intl.Tests.Collator.Verification.html">Verification</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Intl.Tests.DateFormatter.html">DateFormatter<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Intl.Tests.DateFormatter.Verification.html">Verification</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Intl.Tests.Globals.html">Globals<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Intl.Tests.Globals.Verification.html">Verification</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Intl.Tests.Locale.html">Locale<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Intl.Tests.Locale.Verification.html">Verification</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Intl.Tests.NumberFormatter.html">NumberFormatter<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Intl.Tests.NumberFormatter.Verification.html">Verification</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Intl.Tests.ResourceBundle.html">ResourceBundle<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Intl.Tests.ResourceBundle.Reader.html">Reader</a> </li> <li><a href="namespace-Symfony.Component.Intl.Tests.ResourceBundle.Util.html">Util</a> </li> <li><a href="namespace-Symfony.Component.Intl.Tests.ResourceBundle.Writer.html">Writer</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Intl.Tests.Util.html">Util</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Intl.Util.html">Util</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Locale.html">Locale<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Locale.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Locale.Tests.Stub.html">Stub</a> </li> </ul></li></ul></li> <li><a href="namespace-Symfony.Component.OptionsResolver.html">OptionsResolver<span></span></a> <ul> <li><a href="namespace-Symfony.Component.OptionsResolver.Exception.html">Exception</a> </li> <li><a href="namespace-Symfony.Component.OptionsResolver.Tests.html">Tests</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Process.html">Process<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Process.Exception.html">Exception</a> </li> <li><a href="namespace-Symfony.Component.Process.Tests.html">Tests</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.PropertyAccess.html">PropertyAccess<span></span></a> <ul> <li><a href="namespace-Symfony.Component.PropertyAccess.Exception.html">Exception</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Routing.html">Routing<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Routing.Annotation.html">Annotation</a> </li> <li><a href="namespace-Symfony.Component.Routing.Exception.html">Exception</a> </li> <li><a href="namespace-Symfony.Component.Routing.Generator.html">Generator<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Routing.Generator.Dumper.html">Dumper</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Routing.Loader.html">Loader</a> </li> <li><a href="namespace-Symfony.Component.Routing.Matcher.html">Matcher<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Routing.Matcher.Dumper.html">Dumper</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Routing.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Routing.Tests.Annotation.html">Annotation</a> </li> <li><a href="namespace-Symfony.Component.Routing.Tests.Fixtures.html">Fixtures<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Routing.Tests.Fixtures.AnnotatedClasses.html">AnnotatedClasses</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Routing.Tests.Generator.html">Generator<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Routing.Tests.Generator.Dumper.html">Dumper</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Routing.Tests.Loader.html">Loader</a> </li> <li><a href="namespace-Symfony.Component.Routing.Tests.Matcher.html">Matcher<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Routing.Tests.Matcher.Dumper.html">Dumper</a> </li> </ul></li></ul></li></ul></li> <li><a href="namespace-Symfony.Component.Security.html">Security<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Security.Acl.html">Acl<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Security.Acl.Dbal.html">Dbal</a> </li> <li><a href="namespace-Symfony.Component.Security.Acl.Domain.html">Domain</a> </li> <li><a href="namespace-Symfony.Component.Security.Acl.Exception.html">Exception</a> </li> <li><a href="namespace-Symfony.Component.Security.Acl.Model.html">Model</a> </li> <li><a href="namespace-Symfony.Component.Security.Acl.Permission.html">Permission</a> </li> <li><a href="namespace-Symfony.Component.Security.Acl.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Security.Acl.Tests.Dbal.html">Dbal</a> </li> <li><a href="namespace-Symfony.Component.Security.Acl.Tests.Domain.html">Domain</a> </li> <li><a href="namespace-Symfony.Component.Security.Acl.Tests.Permission.html">Permission</a> </li> <li><a href="namespace-Symfony.Component.Security.Acl.Tests.Voter.html">Voter</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Security.Acl.Voter.html">Voter</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Security.Core.html">Core<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Security.Core.Authentication.html">Authentication<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Security.Core.Authentication.Provider.html">Provider</a> </li> <li><a href="namespace-Symfony.Component.Security.Core.Authentication.RememberMe.html">RememberMe</a> </li> <li><a href="namespace-Symfony.Component.Security.Core.Authentication.Token.html">Token</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Security.Core.Authorization.html">Authorization<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Security.Core.Authorization.Voter.html">Voter</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Security.Core.Encoder.html">Encoder</a> </li> <li><a href="namespace-Symfony.Component.Security.Core.Event.html">Event</a> </li> <li><a href="namespace-Symfony.Component.Security.Core.Exception.html">Exception</a> </li> <li><a href="namespace-Symfony.Component.Security.Core.Role.html">Role</a> </li> <li><a href="namespace-Symfony.Component.Security.Core.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Security.Core.Tests.Authentication.html">Authentication<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Security.Core.Tests.Authentication.Provider.html">Provider</a> </li> <li><a href="namespace-Symfony.Component.Security.Core.Tests.Authentication.RememberMe.html">RememberMe</a> </li> <li><a href="namespace-Symfony.Component.Security.Core.Tests.Authentication.Token.html">Token</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Security.Core.Tests.Authorization.html">Authorization<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Security.Core.Tests.Authorization.Voter.html">Voter</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Security.Core.Tests.Encoder.html">Encoder</a> </li> <li><a href="namespace-Symfony.Component.Security.Core.Tests.Role.html">Role</a> </li> <li><a href="namespace-Symfony.Component.Security.Core.Tests.User.html">User</a> </li> <li><a href="namespace-Symfony.Component.Security.Core.Tests.Util.html">Util</a> </li> <li><a href="namespace-Symfony.Component.Security.Core.Tests.Validator.html">Validator<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Security.Core.Tests.Validator.Constraints.html">Constraints</a> </li> </ul></li></ul></li> <li><a href="namespace-Symfony.Component.Security.Core.User.html">User</a> </li> <li><a href="namespace-Symfony.Component.Security.Core.Util.html">Util</a> </li> <li><a href="namespace-Symfony.Component.Security.Core.Validator.html">Validator<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Security.Core.Validator.Constraints.html">Constraints</a> </li> </ul></li></ul></li> <li><a href="namespace-Symfony.Component.Security.Csrf.html">Csrf<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Security.Csrf.Exception.html">Exception</a> </li> <li><a href="namespace-Symfony.Component.Security.Csrf.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Security.Csrf.Tests.TokenGenerator.html">TokenGenerator</a> </li> <li><a href="namespace-Symfony.Component.Security.Csrf.Tests.TokenStorage.html">TokenStorage</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Security.Csrf.TokenGenerator.html">TokenGenerator</a> </li> <li><a href="namespace-Symfony.Component.Security.Csrf.TokenStorage.html">TokenStorage</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Security.Http.html">Http<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Security.Http.Authentication.html">Authentication</a> </li> <li><a href="namespace-Symfony.Component.Security.Http.Authorization.html">Authorization</a> </li> <li><a href="namespace-Symfony.Component.Security.Http.EntryPoint.html">EntryPoint</a> </li> <li><a href="namespace-Symfony.Component.Security.Http.Event.html">Event</a> </li> <li><a href="namespace-Symfony.Component.Security.Http.Firewall.html">Firewall</a> </li> <li><a href="namespace-Symfony.Component.Security.Http.Logout.html">Logout</a> </li> <li><a href="namespace-Symfony.Component.Security.Http.RememberMe.html">RememberMe</a> </li> <li><a href="namespace-Symfony.Component.Security.Http.Session.html">Session</a> </li> <li><a href="namespace-Symfony.Component.Security.Http.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Security.Http.Tests.Authentication.html">Authentication</a> </li> <li><a href="namespace-Symfony.Component.Security.Http.Tests.EntryPoint.html">EntryPoint</a> </li> <li><a href="namespace-Symfony.Component.Security.Http.Tests.Firewall.html">Firewall</a> </li> <li><a href="namespace-Symfony.Component.Security.Http.Tests.Logout.html">Logout</a> </li> <li><a href="namespace-Symfony.Component.Security.Http.Tests.RememberMe.html">RememberMe</a> </li> <li><a href="namespace-Symfony.Component.Security.Http.Tests.Session.html">Session</a> </li> </ul></li></ul></li> <li><a href="namespace-Symfony.Component.Security.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Security.Tests.Core.html">Core<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Security.Tests.Core.Authentication.html">Authentication<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Security.Tests.Core.Authentication.Token.html">Token</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Security.Tests.Core.User.html">User</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Security.Tests.Http.html">Http<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Security.Tests.Http.Firewall.html">Firewall</a> </li> </ul></li></ul></li></ul></li> <li><a href="namespace-Symfony.Component.Serializer.html">Serializer<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Serializer.Encoder.html">Encoder</a> </li> <li><a href="namespace-Symfony.Component.Serializer.Exception.html">Exception</a> </li> <li><a href="namespace-Symfony.Component.Serializer.Normalizer.html">Normalizer</a> </li> <li><a href="namespace-Symfony.Component.Serializer.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Serializer.Tests.Encoder.html">Encoder</a> </li> <li><a href="namespace-Symfony.Component.Serializer.Tests.Fixtures.html">Fixtures</a> </li> <li><a href="namespace-Symfony.Component.Serializer.Tests.Normalizer.html">Normalizer</a> </li> </ul></li></ul></li> <li><a href="namespace-Symfony.Component.Stopwatch.html">Stopwatch</a> </li> <li><a href="namespace-Symfony.Component.Templating.html">Templating<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Templating.Asset.html">Asset</a> </li> <li><a href="namespace-Symfony.Component.Templating.Helper.html">Helper</a> </li> <li><a href="namespace-Symfony.Component.Templating.Loader.html">Loader</a> </li> <li><a href="namespace-Symfony.Component.Templating.Storage.html">Storage</a> </li> <li><a href="namespace-Symfony.Component.Templating.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Templating.Tests.Fixtures.html">Fixtures</a> </li> <li><a href="namespace-Symfony.Component.Templating.Tests.Helper.html">Helper</a> </li> <li><a href="namespace-Symfony.Component.Templating.Tests.Loader.html">Loader</a> </li> <li><a href="namespace-Symfony.Component.Templating.Tests.Storage.html">Storage</a> </li> </ul></li></ul></li> <li><a href="namespace-Symfony.Component.Translation.html">Translation<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Translation.Catalogue.html">Catalogue</a> </li> <li><a href="namespace-Symfony.Component.Translation.Dumper.html">Dumper</a> </li> <li><a href="namespace-Symfony.Component.Translation.Exception.html">Exception</a> </li> <li><a href="namespace-Symfony.Component.Translation.Extractor.html">Extractor</a> </li> <li><a href="namespace-Symfony.Component.Translation.Loader.html">Loader</a> </li> <li><a href="namespace-Symfony.Component.Translation.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Translation.Tests.Catalogue.html">Catalogue</a> </li> <li><a href="namespace-Symfony.Component.Translation.Tests.Dumper.html">Dumper</a> </li> <li><a href="namespace-Symfony.Component.Translation.Tests.Loader.html">Loader</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Translation.Writer.html">Writer</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Validator.html">Validator<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Validator.Constraints.html">Constraints</a> </li> <li><a href="namespace-Symfony.Component.Validator.Exception.html">Exception</a> </li> <li><a href="namespace-Symfony.Component.Validator.Mapping.html">Mapping<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Validator.Mapping.Cache.html">Cache</a> </li> <li><a href="namespace-Symfony.Component.Validator.Mapping.Loader.html">Loader</a> </li> </ul></li> <li><a href="namespace-Symfony.Component.Validator.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Validator.Tests.Constraints.html">Constraints</a> </li> <li><a href="namespace-Symfony.Component.Validator.Tests.Fixtures.html">Fixtures</a> </li> <li><a href="namespace-Symfony.Component.Validator.Tests.Mapping.html">Mapping<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Validator.Tests.Mapping.Cache.html">Cache</a> </li> <li><a href="namespace-Symfony.Component.Validator.Tests.Mapping.Loader.html">Loader</a> </li> </ul></li></ul></li></ul></li> <li><a href="namespace-Symfony.Component.Yaml.html">Yaml<span></span></a> <ul> <li><a href="namespace-Symfony.Component.Yaml.Exception.html">Exception</a> </li> <li><a href="namespace-Symfony.Component.Yaml.Tests.html">Tests</a> </li> </ul></li></ul></li></ul></li> <li><a href="namespace-Tecnocreaciones.html">Tecnocreaciones<span></span></a> <ul> <li><a href="namespace-Tecnocreaciones.Bundle.html">Bundle<span></span></a> <ul> <li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.html">AjaxFOSUserBundle<span></span></a> <ul> <li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.Controller.html">Controller</a> </li> <li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.DependencyInjection.html">DependencyInjection<span></span></a> <ul> <li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.DependencyInjection.Compiler.html">Compiler</a> </li> </ul></li> <li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.Event.html">Event</a> </li> <li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.EventListener.html">EventListener</a> </li> <li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.Handler.html">Handler</a> </li> <li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Tecnocreaciones.Bundle.AjaxFOSUserBundle.Tests.Controller.html">Controller</a> </li> </ul></li></ul></li> <li><a href="namespace-Tecnocreaciones.Bundle.InstallBundle.html">InstallBundle<span></span></a> <ul> <li><a href="namespace-Tecnocreaciones.Bundle.InstallBundle.Command.html">Command</a> </li> <li><a href="namespace-Tecnocreaciones.Bundle.InstallBundle.DependencyInjection.html">DependencyInjection</a> </li> <li><a href="namespace-Tecnocreaciones.Bundle.InstallBundle.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Tecnocreaciones.Bundle.InstallBundle.Tests.Controller.html">Controller</a> </li> </ul></li></ul></li> <li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.html">TemplateBundle<span></span></a> <ul> <li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Controller.html">Controller</a> </li> <li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.DependencyInjection.html">DependencyInjection</a> </li> <li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Menu.html">Menu<span></span></a> <ul> <li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Menu.Template.html">Template<span></span></a> <ul> <li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Menu.Template.Developer.html">Developer</a> </li> </ul></li></ul></li> <li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Tecnocreaciones.Bundle.TemplateBundle.Tests.Controller.html">Controller</a> </li> </ul></li></ul></li></ul></li> <li><a href="namespace-Tecnocreaciones.Vzla.html">Vzla<span></span></a> <ul> <li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.html">GovernmentBundle<span></span></a> <ul> <li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.DependencyInjection.html">DependencyInjection</a> </li> <li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Form.html">Form<span></span></a> <ul> <li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Form.Type.html">Type</a> </li> </ul></li> <li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Menu.html">Menu<span></span></a> <ul> <li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Menu.Template.html">Template<span></span></a> <ul> <li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Menu.Template.Developer.html">Developer</a> </li> </ul></li></ul></li> <li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Model.html">Model</a> </li> <li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Tests.html">Tests<span></span></a> <ul> <li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Tests.Controller.html">Controller</a> </li> </ul></li> <li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Twig.html">Twig<span></span></a> <ul> <li><a href="namespace-Tecnocreaciones.Vzla.GovernmentBundle.Twig.Extension.html">Extension</a> </li> </ul></li></ul></li></ul></li></ul></li> <li><a href="namespace-TestBundle.html">TestBundle<span></span></a> <ul> <li><a href="namespace-TestBundle.Fabpot.html">Fabpot<span></span></a> <ul> <li><a href="namespace-TestBundle.Fabpot.FooBundle.html">FooBundle<span></span></a> <ul> <li><a href="namespace-TestBundle.Fabpot.FooBundle.Controller.html">Controller</a> </li> </ul></li></ul></li> <li><a href="namespace-TestBundle.FooBundle.html">FooBundle<span></span></a> <ul> <li><a href="namespace-TestBundle.FooBundle.Controller.html">Controller<span></span></a> <ul> <li><a href="namespace-TestBundle.FooBundle.Controller.Sub.html">Sub</a> </li> <li><a href="namespace-TestBundle.FooBundle.Controller.Test.html">Test</a> </li> </ul></li></ul></li> <li><a href="namespace-TestBundle.Sensio.html">Sensio<span></span></a> <ul> <li><a href="namespace-TestBundle.Sensio.Cms.html">Cms<span></span></a> <ul> <li><a href="namespace-TestBundle.Sensio.Cms.FooBundle.html">FooBundle<span></span></a> <ul> <li><a href="namespace-TestBundle.Sensio.Cms.FooBundle.Controller.html">Controller</a> </li> </ul></li></ul></li> <li><a href="namespace-TestBundle.Sensio.FooBundle.html">FooBundle<span></span></a> <ul> <li><a href="namespace-TestBundle.Sensio.FooBundle.Controller.html">Controller</a> </li> </ul></li></ul></li></ul></li> <li><a href="namespace-TestFixtures.html">TestFixtures</a> </li> <li><a href="namespace-Timestampable.html">Timestampable<span></span></a> <ul> <li><a href="namespace-Timestampable.Fixture.html">Fixture<span></span></a> <ul> <li><a href="namespace-Timestampable.Fixture.Document.html">Document</a> </li> </ul></li></ul></li> <li><a href="namespace-Tool.html">Tool</a> </li> <li><a href="namespace-Translatable.html">Translatable<span></span></a> <ul> <li><a href="namespace-Translatable.Fixture.html">Fixture<span></span></a> <ul> <li><a href="namespace-Translatable.Fixture.Document.html">Document<span></span></a> <ul> <li><a href="namespace-Translatable.Fixture.Document.Personal.html">Personal</a> </li> </ul></li> <li><a href="namespace-Translatable.Fixture.Issue114.html">Issue114</a> </li> <li><a href="namespace-Translatable.Fixture.Issue138.html">Issue138</a> </li> <li><a href="namespace-Translatable.Fixture.Issue165.html">Issue165</a> </li> <li><a href="namespace-Translatable.Fixture.Issue173.html">Issue173</a> </li> <li><a href="namespace-Translatable.Fixture.Issue75.html">Issue75</a> </li> <li><a href="namespace-Translatable.Fixture.Issue922.html">Issue922</a> </li> <li><a href="namespace-Translatable.Fixture.Personal.html">Personal</a> </li> <li><a href="namespace-Translatable.Fixture.Template.html">Template</a> </li> <li><a href="namespace-Translatable.Fixture.Type.html">Type</a> </li> </ul></li></ul></li> <li><a href="namespace-Translator.html">Translator<span></span></a> <ul> <li><a href="namespace-Translator.Fixture.html">Fixture</a> </li> </ul></li> <li><a href="namespace-Tree.html">Tree<span></span></a> <ul> <li><a href="namespace-Tree.Fixture.html">Fixture<span></span></a> <ul> <li><a href="namespace-Tree.Fixture.Closure.html">Closure</a> </li> <li><a href="namespace-Tree.Fixture.Document.html">Document</a> </li> <li><a href="namespace-Tree.Fixture.Genealogy.html">Genealogy</a> </li> <li><a href="namespace-Tree.Fixture.Mock.html">Mock</a> </li> <li><a href="namespace-Tree.Fixture.Repository.html">Repository</a> </li> <li><a href="namespace-Tree.Fixture.Transport.html">Transport</a> </li> </ul></li></ul></li> <li><a href="namespace-Uploadable.html">Uploadable<span></span></a> <ul> <li><a href="namespace-Uploadable.Fixture.html">Fixture<span></span></a> <ul> <li><a href="namespace-Uploadable.Fixture.Entity.html">Entity</a> </li> </ul></li></ul></li> <li><a href="namespace-Wrapper.html">Wrapper<span></span></a> <ul> <li><a href="namespace-Wrapper.Fixture.html">Fixture<span></span></a> <ul> <li><a href="namespace-Wrapper.Fixture.Document.html">Document</a> </li> <li><a href="namespace-Wrapper.Fixture.Entity.html">Entity</a> </li> </ul></li></ul></li> </ul> </div> <hr /> <div id="elements"> <h3>Classes</h3> <ul> <li><a href="class-Assetic.Filter.BaseCssFilter.html">BaseCssFilter</a></li> <li><a href="class-Assetic.Filter.BaseNodeFilter.html">BaseNodeFilter</a></li> <li><a href="class-Assetic.Filter.BaseProcessFilter.html">BaseProcessFilter</a></li> <li><a href="class-Assetic.Filter.CallablesFilter.html">CallablesFilter</a></li> <li><a href="class-Assetic.Filter.CoffeeScriptFilter.html">CoffeeScriptFilter</a></li> <li><a href="class-Assetic.Filter.CompassFilter.html">CompassFilter</a></li> <li><a href="class-Assetic.Filter.CssEmbedFilter.html">CssEmbedFilter</a></li> <li><a href="class-Assetic.Filter.CssImportFilter.html">CssImportFilter</a></li> <li class="active"><a href="class-Assetic.Filter.CssMinFilter.html">CssMinFilter</a></li> <li><a href="class-Assetic.Filter.CssRewriteFilter.html">CssRewriteFilter</a></li> <li><a href="class-Assetic.Filter.DartFilter.html">DartFilter</a></li> <li><a href="class-Assetic.Filter.EmberPrecompileFilter.html">EmberPrecompileFilter</a></li> <li><a href="class-Assetic.Filter.FilterCollection.html">FilterCollection</a></li> <li><a href="class-Assetic.Filter.GssFilter.html">GssFilter</a></li> <li><a href="class-Assetic.Filter.HandlebarsFilter.html">HandlebarsFilter</a></li> <li><a href="class-Assetic.Filter.JpegoptimFilter.html">JpegoptimFilter</a></li> <li><a href="class-Assetic.Filter.JpegtranFilter.html">JpegtranFilter</a></li> <li><a href="class-Assetic.Filter.JSMinFilter.html">JSMinFilter</a></li> <li><a href="class-Assetic.Filter.JSMinPlusFilter.html">JSMinPlusFilter</a></li> <li><a href="class-Assetic.Filter.LessFilter.html">LessFilter</a></li> <li><a href="class-Assetic.Filter.LessphpFilter.html">LessphpFilter</a></li> <li><a href="class-Assetic.Filter.OptiPngFilter.html">OptiPngFilter</a></li> <li><a href="class-Assetic.Filter.PackagerFilter.html">PackagerFilter</a></li> <li><a href="class-Assetic.Filter.PackerFilter.html">PackerFilter</a></li> <li><a href="class-Assetic.Filter.PhpCssEmbedFilter.html">PhpCssEmbedFilter</a></li> <li><a href="class-Assetic.Filter.PngoutFilter.html">PngoutFilter</a></li> <li><a href="class-Assetic.Filter.RooleFilter.html">RooleFilter</a></li> <li><a href="class-Assetic.Filter.ScssphpFilter.html">ScssphpFilter</a></li> <li><a href="class-Assetic.Filter.SprocketsFilter.html">SprocketsFilter</a></li> <li><a href="class-Assetic.Filter.StylusFilter.html">StylusFilter</a></li> <li><a href="class-Assetic.Filter.TypeScriptFilter.html">TypeScriptFilter</a></li> <li><a href="class-Assetic.Filter.UglifyCssFilter.html">UglifyCssFilter</a></li> <li><a href="class-Assetic.Filter.UglifyJs2Filter.html">UglifyJs2Filter</a></li> <li><a href="class-Assetic.Filter.UglifyJsFilter.html">UglifyJsFilter</a></li> </ul> <h3>Interfaces</h3> <ul> <li><a href="class-Assetic.Filter.DependencyExtractorInterface.html">DependencyExtractorInterface</a></li> <li><a href="class-Assetic.Filter.FilterInterface.html">FilterInterface</a></li> <li><a href="class-Assetic.Filter.HashableInterface.html">HashableInterface</a></li> </ul> </div> </div> </div> <div id="splitter"></div> <div id="right"> <div id="rightInner"> <form id="search"> <input type="hidden" name="cx" value="" /> <input type="hidden" name="ie" value="UTF-8" /> <input type="text" name="q" class="text" /> <input type="submit" value="Search" /> </form> <div id="navigation"> <ul> <li> <a href="index.html" title="Overview"><span>Overview</span></a> </li> <li> <a href="namespace-Assetic.Filter.html" title="Summary of Assetic\Filter"><span>Namespace</span></a> </li> <li> <a href="class-Assetic.Filter.CssMinFilter.html" title="Summary of Assetic\Filter\CssMinFilter"><span>Class</span></a> </li> </ul> <ul> <li> <a href="tree.html" title="Tree view of classes, interfaces, traits and exceptions"><span>Tree</span></a> </li> </ul> <ul> </ul> </div> <pre><code><span id="1" class="l"><a class="l" href="#1"> 1: </a><span class="xlang">&lt;?php</span> </span><span id="2" class="l"><a class="l" href="#2"> 2: </a> </span><span id="3" class="l"><a class="l" href="#3"> 3: </a><span class="php-comment">/* </span></span><span id="4" class="l"><a class="l" href="#4"> 4: </a><span class="php-comment"> * This file is part of the Assetic package, an OpenSky project. </span></span><span id="5" class="l"><a class="l" href="#5"> 5: </a><span class="php-comment"> * </span></span><span id="6" class="l"><a class="l" href="#6"> 6: </a><span class="php-comment"> * (c) 2010-2013 OpenSky Project Inc </span></span><span id="7" class="l"><a class="l" href="#7"> 7: </a><span class="php-comment"> * </span></span><span id="8" class="l"><a class="l" href="#8"> 8: </a><span class="php-comment"> * For the full copyright and license information, please view the LICENSE </span></span><span id="9" class="l"><a class="l" href="#9"> 9: </a><span class="php-comment"> * file that was distributed with this source code. </span></span><span id="10" class="l"><a class="l" href="#10">10: </a><span class="php-comment"> */</span> </span><span id="11" class="l"><a class="l" href="#11">11: </a> </span><span id="12" class="l"><a class="l" href="#12">12: </a><span class="php-keyword1">namespace</span> Assetic\Filter; </span><span id="13" class="l"><a class="l" href="#13">13: </a> </span><span id="14" class="l"><a class="l" href="#14">14: </a><span class="php-keyword1">use</span> Assetic\Asset\AssetInterface; </span><span id="15" class="l"><a class="l" href="#15">15: </a> </span><span id="16" class="l"><a class="l" href="#16">16: </a><span class="php-comment">/** </span></span><span id="17" class="l"><a class="l" href="#17">17: </a><span class="php-comment"> * Filters assets through CssMin. </span></span><span id="18" class="l"><a class="l" href="#18">18: </a><span class="php-comment"> * </span></span><span id="19" class="l"><a class="l" href="#19">19: </a><span class="php-comment"> * @link http://code.google.com/p/cssmin </span></span><span id="20" class="l"><a class="l" href="#20">20: </a><span class="php-comment"> * @author Kris Wallsmith &lt;kris.wallsmith@gmail.com&gt; </span></span><span id="21" class="l"><a class="l" href="#21">21: </a><span class="php-comment"> */</span> </span><span id="22" class="l"><a class="l" href="#22">22: </a><span class="php-keyword1">class</span> <a id="CssMinFilter" href="#CssMinFilter">CssMinFilter</a> <span class="php-keyword1">implements</span> FilterInterface </span><span id="23" class="l"><a class="l" href="#23">23: </a>{ </span><span id="24" class="l"><a class="l" href="#24">24: </a> <span class="php-keyword1">private</span> <span class="php-var"><a id="$filters" href="#$filters">$filters</a></span>; </span><span id="25" class="l"><a class="l" href="#25">25: </a> <span class="php-keyword1">private</span> <span class="php-var"><a id="$plugins" href="#$plugins">$plugins</a></span>; </span><span id="26" class="l"><a class="l" href="#26">26: </a> </span><span id="27" class="l"><a class="l" href="#27">27: </a> <span class="php-keyword1">public</span> <span class="php-keyword1">function</span> <a id="___construct" href="#___construct">__construct</a>() </span><span id="28" class="l"><a class="l" href="#28">28: </a> { </span><span id="29" class="l"><a class="l" href="#29">29: </a> <span class="php-var">$this</span>-&gt;filters = <span class="php-keyword1">array</span>(); </span><span id="30" class="l"><a class="l" href="#30">30: </a> <span class="php-var">$this</span>-&gt;plugins = <span class="php-keyword1">array</span>(); </span><span id="31" class="l"><a class="l" href="#31">31: </a> } </span><span id="32" class="l"><a class="l" href="#32">32: </a> </span><span id="33" class="l"><a class="l" href="#33">33: </a> <span class="php-keyword1">public</span> <span class="php-keyword1">function</span> <a id="_setFilters" href="#_setFilters">setFilters</a>(<span class="php-keyword1">array</span> <span class="php-var">$filters</span>) </span><span id="34" class="l"><a class="l" href="#34">34: </a> { </span><span id="35" class="l"><a class="l" href="#35">35: </a> <span class="php-var">$this</span>-&gt;filters = <span class="php-var">$filters</span>; </span><span id="36" class="l"><a class="l" href="#36">36: </a> } </span><span id="37" class="l"><a class="l" href="#37">37: </a> </span><span id="38" class="l"><a class="l" href="#38">38: </a> <span class="php-keyword1">public</span> <span class="php-keyword1">function</span> <a id="_setFilter" href="#_setFilter">setFilter</a>(<span class="php-var">$name</span>, <span class="php-var">$value</span>) </span><span id="39" class="l"><a class="l" href="#39">39: </a> { </span><span id="40" class="l"><a class="l" href="#40">40: </a> <span class="php-var">$this</span>-&gt;filters[<span class="php-var">$name</span>] = <span class="php-var">$value</span>; </span><span id="41" class="l"><a class="l" href="#41">41: </a> } </span><span id="42" class="l"><a class="l" href="#42">42: </a> </span><span id="43" class="l"><a class="l" href="#43">43: </a> <span class="php-keyword1">public</span> <span class="php-keyword1">function</span> <a id="_setPlugins" href="#_setPlugins">setPlugins</a>(<span class="php-keyword1">array</span> <span class="php-var">$plugins</span>) </span><span id="44" class="l"><a class="l" href="#44">44: </a> { </span><span id="45" class="l"><a class="l" href="#45">45: </a> <span class="php-var">$this</span>-&gt;plugins = <span class="php-var">$plugins</span>; </span><span id="46" class="l"><a class="l" href="#46">46: </a> } </span><span id="47" class="l"><a class="l" href="#47">47: </a> </span><span id="48" class="l"><a class="l" href="#48">48: </a> <span class="php-keyword1">public</span> <span class="php-keyword1">function</span> <a id="_setPlugin" href="#_setPlugin">setPlugin</a>(<span class="php-var">$name</span>, <span class="php-var">$value</span>) </span><span id="49" class="l"><a class="l" href="#49">49: </a> { </span><span id="50" class="l"><a class="l" href="#50">50: </a> <span class="php-var">$this</span>-&gt;plugins[<span class="php-var">$name</span>] = <span class="php-var">$value</span>; </span><span id="51" class="l"><a class="l" href="#51">51: </a> } </span><span id="52" class="l"><a class="l" href="#52">52: </a> </span><span id="53" class="l"><a class="l" href="#53">53: </a> <span class="php-keyword1">public</span> <span class="php-keyword1">function</span> <a id="_filterLoad" href="#_filterLoad">filterLoad</a>(AssetInterface <span class="php-var">$asset</span>) </span><span id="54" class="l"><a class="l" href="#54">54: </a> { </span><span id="55" class="l"><a class="l" href="#55">55: </a> } </span><span id="56" class="l"><a class="l" href="#56">56: </a> </span><span id="57" class="l"><a class="l" href="#57">57: </a> <span class="php-keyword1">public</span> <span class="php-keyword1">function</span> <a id="_filterDump" href="#_filterDump">filterDump</a>(AssetInterface <span class="php-var">$asset</span>) </span><span id="58" class="l"><a class="l" href="#58">58: </a> { </span><span id="59" class="l"><a class="l" href="#59">59: </a> <span class="php-var">$filters</span> = <span class="php-var">$this</span>-&gt;filters; </span><span id="60" class="l"><a class="l" href="#60">60: </a> <span class="php-var">$plugins</span> = <span class="php-var">$this</span>-&gt;plugins; </span><span id="61" class="l"><a class="l" href="#61">61: </a> </span><span id="62" class="l"><a class="l" href="#62">62: </a> <span class="php-keyword1">if</span> (<span class="php-keyword1">isset</span>(<span class="php-var">$filters</span>[<span class="php-quote">'ImportImports'</span>]) &amp;&amp; <span class="php-keyword1">true</span> === <span class="php-var">$filters</span>[<span class="php-quote">'ImportImports'</span>]) { </span><span id="63" class="l"><a class="l" href="#63">63: </a> <span class="php-var">$root</span> = <span class="php-var">$asset</span>-&gt;getSourceRoot(); </span><span id="64" class="l"><a class="l" href="#64">64: </a> <span class="php-var">$path</span> = <span class="php-var">$asset</span>-&gt;getSourcePath(); </span><span id="65" class="l"><a class="l" href="#65">65: </a> <span class="php-keyword1">if</span> (<span class="php-var">$root</span> &amp;&amp; <span class="php-var">$path</span>) { </span><span id="66" class="l"><a class="l" href="#66">66: </a> <span class="php-var">$filters</span>[<span class="php-quote">'ImportImports'</span>] = <span class="php-keyword1">array</span>(<span class="php-quote">'BasePath'</span> =&gt; <span class="php-keyword2">dirname</span>(<span class="php-var">$root</span>.<span class="php-quote">'/'</span>.<span class="php-var">$path</span>)); </span><span id="67" class="l"><a class="l" href="#67">67: </a> } <span class="php-keyword1">else</span> { </span><span id="68" class="l"><a class="l" href="#68">68: </a> <span class="php-keyword1">unset</span>(<span class="php-var">$filters</span>[<span class="php-quote">'ImportImports'</span>]); </span><span id="69" class="l"><a class="l" href="#69">69: </a> } </span><span id="70" class="l"><a class="l" href="#70">70: </a> } </span><span id="71" class="l"><a class="l" href="#71">71: </a> </span><span id="72" class="l"><a class="l" href="#72">72: </a> <span class="php-var">$asset</span>-&gt;setContent(\CssMin::minify(<span class="php-var">$asset</span>-&gt;getContent(), <span class="php-var">$filters</span>, <span class="php-var">$plugins</span>)); </span><span id="73" class="l"><a class="l" href="#73">73: </a> } </span><span id="74" class="l"><a class="l" href="#74">74: </a>} </span><span id="75" class="l"><a class="l" href="#75">75: </a></span></code></pre> <div id="footer"> seip API documentation generated by <a href="http://apigen.org">ApiGen 2.8.0</a> </div> </div> </div> </body> </html>
machine-learning/tensorflow/tensorflow-js-demo-0/index.html
vivaxy/course
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" /> <meta name="description" content="Tensorflow.js" /> <meta name="keywords" content="vivaxy,samples,github,demo,playground,test,Tensorflow.js,machine-learning,tensorflow,tensorflow-js-demo-0,sample,demos" /> <meta name="author" content="vivaxy" /> <link type="image/png" rel="shortcut icon" href="/vivaxy.icon.png" /> <link type="text/css" rel="stylesheet" href="index.css" /> <title>Tensorflow.js Demo 0</title> </head> <body> <div id="label-container">👋</div> <script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@1.3.1/dist/tf.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/@teachablemachine/image@0.8/dist/teachablemachine-image.min.js"></script> <script type="module" src="index.js"></script> <script type="text/javascript" charset="utf-8" src="/ba.js"></script> </body> </html>
public/topics/index.html
Zhiqiangcao/website_czq
<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="generator" content="Hugo 0.26" /> <title>Topics &middot; 高等统计初学者</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/pure/1.0.0/pure-min.css"> <!--[if lte IE 8]> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/pure/1.0.0/grids-responsive-old-ie-min.css"> <![endif]--> <!--[if gt IE 8]><!--> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/pure/1.0.0/grids-responsive-min.css"> <!--<![endif]--> <!--[if lte IE 8]> <link rel="stylesheet" href="/css/side-menu-old-ie.css"> <![endif]--> <!--[if gt IE 8]><!--> <link rel="stylesheet" href="/css/side-menu.css"> <!--<![endif]--> <link rel="stylesheet" href="/css/blackburn.css"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> <link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet" type="text/css"> <link rel="alternate" type="application/rss+xml" title="高等统计初学者" href="/topics/index.xml" /> <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon" /> </head> <body> <div id="layout"> <a href="#menu" id="menuLink" class="menu-link"> <span></span> </a> <div id="menu"> <div class="pure-menu"> <ul class="pure-menu-list"> <li class="pure-menu-item"> <a class="pure-menu-link" href="/about/">关于</a> </li> <li class="pure-menu-item"> <a class="pure-menu-link" href="/post/">博客</a> </li> <li class="pure-menu-item"> <a class="pure-menu-link" href="/en/vitae/">简历</a> </li> <li class="pure-menu-item"> <a class="pure-menu-link" href="/">主页</a> </li> </ul> </div> <div class="pure-menu social"> <ul class="pure-menu-list"> <li class="pure-menu-item"> <a class="pure-menu-link" href="/topics/index.xml"><i class="fa fa-rss fa-fw"></i>RSS</a> </li> <li class="pure-menu-item"> <a class="pure-menu-link" href="https://linkedin.com/in/zhiqiang-cao-745546105" target="_blank"><i class="fa fa-linkedin-square fa-fw"></i>LinkedIn</a> </li> <li class="pure-menu-item"> <a class="pure-menu-link" href="https://github.com/Zhiqiangcao" target="_blank"><i class="fa fa-github-square fa-fw"></i>GitHub</a> </li> </ul> </div> <div> <div class="small-print"> <small>&copy; 2013-2019. All rights reserved.</small> </div> <div class="small-print"> <small>Built with&nbsp;<a href="https://gohugo.io/" target="_blank">Hugo</a></small> <small>Theme&nbsp;<a href="https://github.com/yoshiharuyamashita/blackburn" target="_blank">Blackburn</a></small> </div> </div> </div> <div id="main"> <div class="header"> <h1>Topics</h1> </div> <div class="content"> <ul> </ul> </div> </div> </div> <script src="/js/ui.js"></script> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-105880936-1', 'auto'); ga('send', 'pageview'); </script> </body> </html>
postgresql/html/sql-createdomain.html
jenmwang/portfolio_site_2013
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE >CREATE DOMAIN</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK REV="MADE" HREF="mailto:pgsql-docs@postgresql.org"><LINK REL="HOME" TITLE="PostgreSQL 9.0.10 Documentation" HREF="index.html"><LINK REL="UP" TITLE="SQL Commands" HREF="sql-commands.html"><LINK REL="PREVIOUS" TITLE="CREATE DATABASE" HREF="sql-createdatabase.html"><LINK REL="NEXT" TITLE="CREATE FOREIGN DATA WRAPPER" HREF="sql-createforeigndatawrapper.html"><LINK REL="STYLESHEET" TYPE="text/css" HREF="stylesheet.css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1"><META NAME="creation" CONTENT="2012-09-19T22:08:45"></HEAD ><BODY CLASS="REFENTRY" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="5" ALIGN="center" VALIGN="bottom" ><A HREF="index.html" >PostgreSQL 9.0.10 Documentation</A ></TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="top" ><A TITLE="CREATE DATABASE" HREF="sql-createdatabase.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="10%" ALIGN="left" VALIGN="top" ><A HREF="sql-commands.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="60%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="20%" ALIGN="right" VALIGN="top" ><A TITLE="CREATE FOREIGN DATA WRAPPER" HREF="sql-createforeigndatawrapper.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><H1 ><A NAME="SQL-CREATEDOMAIN" ></A >CREATE DOMAIN</H1 ><DIV CLASS="REFNAMEDIV" ><A NAME="AEN59945" ></A ><H2 >Name</H2 >CREATE DOMAIN&nbsp;--&nbsp;define a new domain</DIV ><DIV CLASS="REFSYNOPSISDIV" ><A NAME="AEN59950" ></A ><H2 >Synopsis</H2 ><PRE CLASS="SYNOPSIS" >CREATE DOMAIN <TT CLASS="REPLACEABLE" ><I >name</I ></TT > [ AS ] <TT CLASS="REPLACEABLE" ><I >data_type</I ></TT > [ DEFAULT <TT CLASS="REPLACEABLE" ><I >expression</I ></TT > ] [ <TT CLASS="REPLACEABLE" ><I >constraint</I ></TT > [ ... ] ] <SPAN CLASS="phrase" ><SPAN CLASS="PHRASE" >where <TT CLASS="REPLACEABLE" ><I >constraint</I ></TT > is:</SPAN ></SPAN > [ CONSTRAINT <TT CLASS="REPLACEABLE" ><I >constraint_name</I ></TT > ] { NOT NULL | NULL | CHECK (<TT CLASS="REPLACEABLE" ><I >expression</I ></TT >) }</PRE ></DIV ><DIV CLASS="REFSECT1" ><A NAME="AEN59960" ></A ><H2 >Description</H2 ><P > <TT CLASS="COMMAND" >CREATE DOMAIN</TT > creates a new domain. A domain is essentially a data type with optional constraints (restrictions on the allowed set of values). The user who defines a domain becomes its owner. </P ><P > If a schema name is given (for example, <TT CLASS="LITERAL" >CREATE DOMAIN myschema.mydomain ...</TT >) then the domain is created in the specified schema. Otherwise it is created in the current schema. The domain name must be unique among the types and domains existing in its schema. </P ><P > Domains are useful for abstracting common constraints on fields into a single location for maintenance. For example, several tables might contain email address columns, all requiring the same CHECK constraint to verify the address syntax. Define a domain rather than setting up each table's constraint individually. </P ></DIV ><DIV CLASS="REFSECT1" ><A NAME="AEN59967" ></A ><H2 >Parameters</H2 ><P ></P ><DIV CLASS="VARIABLELIST" ><DL ><DT ><TT CLASS="REPLACEABLE" ><I >name</I ></TT ></DT ><DD ><P > The name (optionally schema-qualified) of a domain to be created. </P ></DD ><DT ><TT CLASS="REPLACEABLE" ><I >data_type</I ></TT ></DT ><DD ><P > The underlying data type of the domain. This can include array specifiers. </P ></DD ><DT ><TT CLASS="LITERAL" >DEFAULT <TT CLASS="REPLACEABLE" ><I >expression</I ></TT ></TT ></DT ><DD ><P > The <TT CLASS="LITERAL" >DEFAULT</TT > clause specifies a default value for columns of the domain data type. The value is any variable-free expression (but subqueries are not allowed). The data type of the default expression must match the data type of the domain. If no default value is specified, then the default value is the null value. </P ><P > The default expression will be used in any insert operation that does not specify a value for the column. If a default value is defined for a particular column, it overrides any default associated with the domain. In turn, the domain default overrides any default value associated with the underlying data type. </P ></DD ><DT ><TT CLASS="LITERAL" >CONSTRAINT <TT CLASS="REPLACEABLE" ><I >constraint_name</I ></TT ></TT ></DT ><DD ><P > An optional name for a constraint. If not specified, the system generates a name. </P ></DD ><DT ><TT CLASS="LITERAL" >NOT NULL</TT ></DT ><DD ><P > Values of this domain are normally prevented from being null. However, it is still possible for a domain with this constraint to take a null value if it is assigned a matching domain type that has become null, e.g. via a LEFT OUTER JOIN, or <TT CLASS="COMMAND" >INSERT INTO tab (domcol) VALUES ((SELECT domcol FROM tab WHERE false))</TT >. </P ></DD ><DT ><TT CLASS="LITERAL" >NULL</TT ></DT ><DD ><P > Values of this domain are allowed to be null. This is the default. </P ><P > This clause is only intended for compatibility with nonstandard SQL databases. Its use is discouraged in new applications. </P ></DD ><DT ><TT CLASS="LITERAL" >CHECK (<TT CLASS="REPLACEABLE" ><I >expression</I ></TT >)</TT ></DT ><DD ><P > <TT CLASS="LITERAL" >CHECK</TT > clauses specify integrity constraints or tests which values of the domain must satisfy. Each constraint must be an expression producing a Boolean result. It should use the key word <TT CLASS="LITERAL" >VALUE</TT > to refer to the value being tested. </P ><P > Currently, <TT CLASS="LITERAL" >CHECK</TT > expressions cannot contain subqueries nor refer to variables other than <TT CLASS="LITERAL" >VALUE</TT >. </P ></DD ></DL ></DIV ></DIV ><DIV CLASS="REFSECT1" ><A NAME="AEN60017" ></A ><H2 >Examples</H2 ><P > This example creates the <TT CLASS="TYPE" >us_postal_code</TT > data type and then uses the type in a table definition. A regular expression test is used to verify that the value looks like a valid US postal code: </P><PRE CLASS="PROGRAMLISTING" >CREATE DOMAIN us_postal_code AS TEXT CHECK( VALUE ~ '^\\d{5}$' OR VALUE ~ '^\\d{5}-\\d{4}$' ); CREATE TABLE us_snail_addy ( address_id SERIAL PRIMARY KEY, street1 TEXT NOT NULL, street2 TEXT, street3 TEXT, city TEXT NOT NULL, postal us_postal_code NOT NULL );</PRE ><P> </P ></DIV ><DIV CLASS="REFSECT1" ><A NAME="SQL-CREATEDOMAIN-COMPATIBILITY" ></A ><H2 >Compatibility</H2 ><P > The command <TT CLASS="COMMAND" >CREATE DOMAIN</TT > conforms to the SQL standard. </P ></DIV ><DIV CLASS="REFSECT1" ><A NAME="SQL-CREATEDOMAIN-SEE-ALSO" ></A ><H2 >See Also</H2 ><A HREF="sql-alterdomain.html" >ALTER DOMAIN</A >, <A HREF="sql-dropdomain.html" >DROP DOMAIN</A ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="sql-createdatabase.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="sql-createforeigndatawrapper.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >CREATE DATABASE</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="sql-commands.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >CREATE FOREIGN DATA WRAPPER</TD ></TR ></TABLE ></DIV ></BODY ></HTML >
Reports/so/soltech.xamarin.forms.1.0.24/SolTech.Xamarin.Forms.WinPhone-wp8.html
kuhlenh/port-to-core
<!DOCTYPE html> <html xmlns:msxsl="urn:schemas-microsoft-com:xslt"> <head> <meta content="en-us" http-equiv="Content-Language" /> <meta content="text/html; charset=utf-16" http-equiv="Content-Type" /> <title _locid="PortabilityAnalysis0">.NET Portability Report</title> <style> /* Body style, for the entire document */ body { background: #F3F3F4; color: #1E1E1F; font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; padding: 0; margin: 0; } /* Header1 style, used for the main title */ h1 { padding: 10px 0px 10px 10px; font-size: 21pt; background-color: #E2E2E2; border-bottom: 1px #C1C1C2 solid; color: #201F20; margin: 0; font-weight: normal; } /* Header2 style, used for "Overview" and other sections */ h2 { font-size: 18pt; font-weight: normal; padding: 15px 0 5px 0; margin: 0; } /* Header3 style, used for sub-sections, such as project name */ h3 { font-weight: normal; font-size: 15pt; margin: 0; padding: 15px 0 5px 0; background-color: transparent; } h4 { font-weight: normal; font-size: 12pt; margin: 0; padding: 0 0 0 0; background-color: transparent; } /* Color all hyperlinks one color */ a { color: #1382CE; } /* Paragraph text (for longer informational messages) */ p { font-size: 10pt; } /* Table styles */ table { border-spacing: 0 0; border-collapse: collapse; font-size: 10pt; } table th { background: #E7E7E8; text-align: left; text-decoration: none; font-weight: normal; padding: 3px 6px 3px 6px; } table td { vertical-align: top; padding: 3px 6px 5px 5px; margin: 0px; border: 1px solid #E7E7E8; background: #F7F7F8; } .NoBreakingChanges { color: darkgreen; font-weight:bold; } .FewBreakingChanges { color: orange; font-weight:bold; } .ManyBreakingChanges { color: red; font-weight:bold; } .BreakDetails { margin-left: 30px; } .CompatMessage { font-style: italic; font-size: 10pt; } .GoodMessage { color: darkgreen; } /* Local link is a style for hyperlinks that link to file:/// content, there are lots so color them as 'normal' text until the user mouse overs */ .localLink { color: #1E1E1F; background: #EEEEED; text-decoration: none; } .localLink:hover { color: #1382CE; background: #FFFF99; text-decoration: none; } /* Center text, used in the over views cells that contain message level counts */ .textCentered { text-align: center; } /* The message cells in message tables should take up all avaliable space */ .messageCell { width: 100%; } /* Padding around the content after the h1 */ #content { padding: 0px 12px 12px 12px; } /* The overview table expands to width, with a max width of 97% */ #overview table { width: auto; max-width: 75%; } /* The messages tables are always 97% width */ #messages table { width: 97%; } /* All Icons */ .IconSuccessEncoded, .IconInfoEncoded, .IconWarningEncoded, .IconErrorEncoded { min-width: 18px; min-height: 18px; background-repeat: no-repeat; background-position: center; } /* Success icon encoded */ .IconSuccessEncoded { /* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ /* [---XsltValidateInternal-Base64EncodedImage:IconSuccess#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABPElEQVR4Xp1Tv0vDUBi8FqeA4NpBcBLcWnQSApncOnTo4FSnjP0DsnXpH5CxiwbHDg4Zuj4oOEXiJgiC4FDcCkLWmIMc1Pfw+eMgQ77v3Xf3Pe51YKGqqisAEwCR1TIAsiAIblSo6xrdHeJR85Xle3mdmCQKb0PsfqyxxzM8K15HZADl/H5+sHpZwYfxyRjTs+kWwKBx8yoHd2mRiuzF8mkJniWH/13u3Fjrs/EdhsdDFHGB/DLXEJBDLh1MWPAhPo1BLB4WX5yQywHR+m3tVe/t97D52CB/ziG0nIgD/qDuYg8WuCcVZ2YGwlJ3YDugkpR/VNcAEx6GEKhERSr71FuO4YCM4XBdwKvecjIlkSnsO0Hyp/GxSeJAdzBKzpOtnPwyyiPdAZhpZptT04tU+zk7s8czeges//s5C5+CwqrR4/gw+AAAAABJRU5ErkJggg==); } /* Information icon encoded */ .IconInfoEncoded { /* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ /* [---XsltValidateInternal-Base64EncodedImage:IconInformation#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABHElEQVR4Xs2TsUoDQRRF7wwoziokjZUKadInhdhukR9YP8DMX1hYW+QvdsXa/QHBbcXC7W0CamWTQnclFutceIQJwwaWNLlwm5k5d94M76mmaeCrrmsLYOocY12FcxZFUeozCqKqqgYA8uevv1H6VuPxcwlfk5N92KHBxfFeCSAxxswlYAW/Xr989x/mv9gkhtyMDhcAxgzRsp7flj8B/HF1RsMXq+NZMkopaHe7lbKxQUEIGbKsYNoGn969060hZBkQex/W8oRQwsQaW2o3Ago2SVcJUzAgY3N0lTCZZm+zPS8HB51gMmS1DEYyOz9acKO1D8JWTlafKIMxdhvlfdyT94Vv5h7P8Ky7nQzACmhvKq3zk3PjW9asz9D/1oigecsioooAAAAASUVORK5CYII=); } /* Warning icon encoded */ .IconWarningEncoded { /* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ /* [---XsltValidateInternal-Base64EncodedImage:IconWarning#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAx0lEQVR4XpWSMQ7CMAxFf4xAyBMLCxMrO8dhaBcuwdCJS3RJBw7SA/QGTCxdWJgiQYWKXJWKIXHIlyw5lqr34tQgEOdcBsCOx5yZK3hCCKdYXneQkh4pEfqzLfu+wVDSyyzFoJjfz9NB+pAF+eizx2Vruts0k15mPgvS6GYvpVtQhB61IB/dk6AF6fS4Ben0uIX5odtFe8Q/eW1KvFeH4e8khT6+gm5B+t3juyDt7n0jpe+CANTd+oTUjN/U3yVaABnSUjFz/gFq44JaVSCXeQAAAABJRU5ErkJggg==); } /* Error icon encoded */ .IconErrorEncoded { /* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ /* [---XsltValidateInternal-Base64EncodedImage:IconError#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABQElEQVR4XqWTvUoEQRCE6wYPZUA80AfwAQz23uCMjA7MDRQEIzPBVEyNTQUFIw00vcQTTMzuAh/AxEQQT8HF/3G/oGGnEUGuoNnd6qoZuqltyKEsyzVJq5I6rnUp6SjGeGhESikzzlc1eL7opfuVbrqbU1Zw9NCgtQMaZpY0eNnaaL2fHusvTK5vKu7sjSS1Y4y3QUA6K3e3Mau5UFDyMP7tYF9o8cAHZv68vipoIJg971PZIZ5HiwdvYGGvFVFHmGmZ2MxwmQYPXubPl9Up0tfoMQGetXd6mRbvhBw+boZ6WF7Mbv1+GsHRk0fQmPAH1GfmZirbCfDJ61tw3Px8/8pZsPAG4jlVhcPgZ7adwNWBB68lkRQWFiTgFlbnLY3DGGM7izIJIyT/jjIvEJw6fdJTc6krDzh6aMwMP9bvDH4ADSsa9uSWVJkAAAAASUVORK5CYII=); } </style> </head> <body> <h1 _locid="PortabilityReport">.NET Portability Report</h1> <div id="content"> <div id="submissionId" style="font-size:8pt;"> <p> <i> Submission Id&nbsp; 55ebde76-527e-4733-8988-7d1bdbd0c1f4 </i> </p> </div> <h2 _locid="SummaryTitle"> <a name="Portability Summary"></a>Portability Summary </h2> <div id="summary"> <table> <tbody> <tr> <th>Assembly</th> <th>ASP.NET 5,Version=v1.0</th> <th>Windows,Version=v8.1</th> <th>.NET Framework,Version=v4.6</th> <th>Windows Phone,Version=v8.1</th> </tr> <tr> <td><strong><a href="#Soltech.Xamarin.Forms.WinPhone">Soltech.Xamarin.Forms.WinPhone</a></strong></td> <td class="text-center">71.57 %</td> <td class="text-center">71.57 %</td> <td class="text-center">95.10 %</td> <td class="text-center">71.57 %</td> </tr> </tbody> </table> </div> <div id="details"> <a name="Soltech.Xamarin.Forms.WinPhone"><h3>Soltech.Xamarin.Forms.WinPhone</h3></a> <table> <tbody> <tr> <th>Target type</th> <th>ASP.NET 5,Version=v1.0</th> <th>Windows,Version=v8.1</th> <th>.NET Framework,Version=v4.6</th> <th>Windows Phone,Version=v8.1</th> <th>Recommended changes</th> </tr> <tr> <td>System.Windows.Controls.ContentControl</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Content(System.Object)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Controls.Grid</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Controls.Panel</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Children</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Controls.PasswordBox</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_MaxLength(System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Controls.Primitives.ToggleButton</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">add_Checked(System.Windows.RoutedEventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_Checked(System.Windows.RoutedEventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_IsChecked(System.Nullable{System.Boolean})</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Controls.RadioButton</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Controls.TextBox</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_MaxLength(System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.Controls.UIElementCollection</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.FrameworkElement</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Tag</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Tag(System.Object)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.PresentationFrameworkCollection`1</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Add(`0)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Count</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Item(System.Int32)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">GetEnumerator</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.RoutedEventArgs</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.RoutedEventHandler</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Object,System.IntPtr)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Windows.UIElement</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> </tbody> </table> <p> <a href="#Portability Summary">Back to Summary</a> </p> </div> </div> </body> </html>
ocr_extracted/W28656_text/page66.html
datamade/elpc_bakken
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>W28656_text</title> <link rel="stylesheet" type="text/css" href="style.css" /> </head> <body> <div style="margin-left: auto; margin-right: auto; width: 800px; overflow: hidden;"> <div style="float: left;"> <a href="page65.html">&laquo;</a> </div> <div style="float: right;"> </div> </div> <hr/> <div style="position: absolute; margin-left: 165px; margin-top: 192px;"> <p class="styleSans697.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">HORIZONTAL SECTION PLAT CONTINENTAL RESOURCES INC. <br/>SECTION 1, T155N, R98W WILLIAMS COUNTY, NORTH DAKOTA <br/>I <br/>, SCALE , 1’ = 1000 <br/>ALL CORNERS SHOWN ON THIS PLAT WERE FOUND IN THE FIELD DISTANCES TO ALL OTHERS ARE CALCULATED. ALL BEAR/NOS SHOWN ARE ASSUMED. <br/>BROS! [NO/NEERIZVG' [1V6 <br/>BOX .357 BOWMAN, ND. 58623 <br/>PHONE: 707—523—3340 FAX: 701—523—5243 <br/>PROJECT NO. 12-40 <br/> </p> </div> </body> </html>