path
stringlengths
5
312
repo_name
stringlengths
5
116
content
stringlengths
2
1.04M
public/tags/natural-language-processing/page/1/index.html
yanfei-wu/yanfei-wu.github.io
<!DOCTYPE html><html><head><title>/tags/natural-language-processing/</title><link rel="canonical" href="/tags/natural-language-processing/"/><meta http-equiv="content-type" content="text/html; charset=utf-8" /><meta http-equiv="refresh" content="0; url=/tags/natural-language-processing/" /></head></html>
_layouts/page.html
tlbdk/tlbdk.github.io
--- layout: default --- <article class="post" id="page_{{ page.menu_title | downcase}}"> <header class="post-header"> <h1 class="post-title">{{ page.title }}</h1> </header> <div class="post-content"> {{ content }} </div> </article>
tests/IMS/public/app/admin/user-list.html
misterdavemeister/meanio
<div class="container"><table class="table"><tr ng-repeat="user in users"><td ng-show="user.isAdmin()">{{ user.firstName + ' ' + user.lastName }}</td><td ng-show="!user.isAdmin()"><a href="/admin/user/{{user._id}}">{{ user.firstName + ' ' + user.lastName }}</a></td></tr></table></div>
public-hacks/index-d3.html
nikmeiser/omphaloskepsis
<!DOCTYPE html PUBLIC "-//IETF//DTD HTML 2.0//EN"> <HTML> <HEAD> <script type="text/javascript" src="bower_components/d3/d3.min.js" charset="utf-8"></script> <script type="text/javascript" src="js/omphaloskepsis.js" charset="utf-8"></script> <TITLE> A Small Hello </TITLE> </HEAD> <BODY> <H1>Hi</H1> <div id="datatable"></div> <div id="test"></div> <script> d3.json('https://omphaloskepsis-c9-nikmeiser.c9.io/api/civic/').get(function(err, data) { console.log(data);   console.log(data.demographics.Results.medianIncome); var peopleTable = tabulate(data.demographics, ["field", "value"]); }) function tabulate(data, columns) { var table = d3.select("#datatable").append("table"), thead = table.append("thead"), tbody = table.append("tbody"); // append the header row thead.append("tr") .selectAll("th") .data(columns) .enter() .append("th") .text(function(column) { return column; }); // create a row for each object in the data var rows = tbody.selectAll("tr") .data(data) .enter() .append("tr"); // create a cell in each row for each column var cells = rows.selectAll("td") .data(function(row) { return columns.map(function(column) { return {column: column, value: row[column]}; }); }) .enter() .append("td") .text(function(d) { return d.value; }); return table; } </script> </BODY> </HTML>
clean/Linux-x86_64-4.05.0-2.0.1/released/8.5.1/continuations/8.7.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>continuations: 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.5.1 / continuations - 8.7.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> continuations <small> 8.7.0 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2021-10-15 03:37:57 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-10-15 03:37:57 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-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.5.1 Formal proof management system num 0 The Num library for arbitrary-precision integer and rational arithmetic ocaml 4.05.0 The OCaml compiler (virtual package) ocaml-base-compiler 4.05.0 Official 4.05.0 release ocaml-config 1 OCaml Switch Configuration # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;[email protected]&quot; homepage: &quot;https://github.com/coq-contribs/continuations&quot; license: &quot;Unknown&quot; build: [make &quot;-j%{jobs}%&quot;] install: [make &quot;install&quot;] remove: [&quot;rm&quot; &quot;-R&quot; &quot;%{lib}%/coq/user-contrib/Continuations&quot;] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.7&quot; &amp; &lt; &quot;8.8~&quot;} ] tags: [ &quot;keyword: exceptions&quot; &quot;keyword: monads&quot; &quot;keyword: continuations&quot; &quot;keyword: cps&quot; &quot;category: Computer Science/Semantics and Compilation/Semantics&quot; &quot;category: Miscellaneous/Extracted Programs/Combinatorics&quot; ] authors: [ &quot;Jean-François Monin&quot; ] bug-reports: &quot;https://github.com/coq-contribs/continuations/issues&quot; dev-repo: &quot;git+https://github.com/coq-contribs/continuations.git&quot; synopsis: &quot;A toolkit to reason with programs raising exceptions&quot; description: &quot;&quot;&quot; We show a way of developing correct functionnal programs raising exceptions. This is made possible using a Continuation Passing Style translation, see the contribution &quot;exceptions&quot; from P. Casteran at Bordeaux. Things are made easier and more modular using some general definitions.&quot;&quot;&quot; flags: light-uninstall url { src: &quot;https://github.com/coq-contribs/continuations/archive/v8.7.0.tar.gz&quot; checksum: &quot;md5=1a6170334b8f2b0dbd73386952cb2d83&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-continuations.8.7.0 coq.8.5.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.5.1). The following dependencies couldn&#39;t be met: - coq-continuations -&gt; coq &gt;= 8.7 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-continuations.8.7.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>
doc/edu/cmu/cs/stage3/alice/core/question/math/class-use/ATan.html
ai-ku/langvis
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_29) on Sun Dec 11 02:02:02 EET 2011 --> <TITLE> Uses of Class edu.cmu.cs.stage3.alice.core.question.math.ATan </TITLE> <META NAME="date" CONTENT="2011-12-11"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class edu.cmu.cs.stage3.alice.core.question.math.ATan"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../../edu/cmu/cs/stage3/alice/core/question/math/ATan.html" title="class in edu.cmu.cs.stage3.alice.core.question.math"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../../../index.html?edu/cmu/cs/stage3/alice/core/question/math//class-useATan.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="ATan.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>edu.cmu.cs.stage3.alice.core.question.math.ATan</B></H2> </CENTER> No usage of edu.cmu.cs.stage3.alice.core.question.math.ATan <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../../edu/cmu/cs/stage3/alice/core/question/math/ATan.html" title="class in edu.cmu.cs.stage3.alice.core.question.math"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../../../index.html?edu/cmu/cs/stage3/alice/core/question/math//class-useATan.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="ATan.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
ocr_extracted/W26906_text/page28.html
datamade/elpc_bakken
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>W26906_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="page27.html">&laquo;</a> </div> <div style="float: right;"> </div> </div> <hr/> <div style="position: absolute; margin-left: 0px; margin-top: 0px;"> <p class="styleSans792.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p> </div> <div style="position: absolute; margin-left: 81px; margin-top: 27px;"> <p class="styleSans2.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p> </div> <div style="position: absolute; margin-left: 135px; margin-top: 0px;"> <p class="styleSans238.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"> <br/>Oneok Rockies Midstream <br/>Capitol 7 , ’\ grazVennejo _ f Bonita , 7 7H: ' ' ‘4‘; Evans l 7 1'3 7 1‘ \ “ Sunighl Biersmdt sumo Mam Torreys Cameim Lindsey Eolus 94 a _ -1 24M~W Massive Grays aim Misswri i Beiview <br/>Snowmass ‘ 01m Pikes Nd .c LaPiata <br/> <br/> <br/>Gas Ca ture Plan - Fort Berthold 152-93-19C-18-6H & Fort Berthold 152-93-19048-7H - Ouray Pad <br/> <br/>Install additional compression (Elmtree), gas lant upgrades Em atE Onsite power generation utilizing natural gas generators, <br/>Liquids capturing technology, or Vapor Recovery Units m Approx. 40-70% once flow operations stabilize <br/> <br/>10/29/1014 </p> </div> </body> </html>
page1.html
eleido/HTML_with_CSS
<!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/html; charset=utf-8" /> <title>Penguin Books</title> <!-- XHTML comment --> <link rel="stylesheet" href="style.css" type="text/css" /> <style type="text/css"> /* develop internal CSS and then move it to external file */ /* This rule applies to the main container. Some of the attributes could be inherited by the nested page divisions*/ </style> </head> <body> <div id="pageContent"> <div id="header">Collecting Old Books</div> <div id="navi"> <a href="Page1.html">One</a> | <a href="Page2.html">Two</a> | <a href="Page3.html">Three</a> </div> <div id="sidebar"> <h2>Contact us:</h2> <a>[email protected]</a> </div> <div id="content"> <h1>Penguin Books</h1> <img src="penbkslarge.jpg" alt="text" width="200" height="200"/> <!--<span class="initcap">O</span>--> <div id="intro"> <p class="firstP">Originally published in the United Kingdom, Penguin Books was concieved of by Sir Allen Lane in 1935 as a more literary alternative to the paperbacks that were sold to the general public at that time.</p></div> <p>Penguin paperbacks were sold for sixpence in Woolworth's and other stores, as well as in train stations through vending machines called Penguinators. Penguin's immediate success was evidence that well written,</p> <p>good quality paperback books marketed to the general public was a commercially viable scheme. It was an idea that radically changed the book publishing industry. </p> <br></br><br></br><br></br> <p>Penguin video:</p> <table> <tr> <td> <iframe width="250" height="150" src="http://www.youtube.com/embed/XYMmri2gEzo" frameborder="0" allowfullscreen></iframe> </td> </tr> </table> </div> <div id="footer">Penguin Books assoc.</div> </div> </body> </html>
docs/DevelopmentGuide.html
NETHINKS/opennms-docker-env
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=edge"><![endif]--> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="Asciidoctor 1.5.4"> <meta name="author" content="Michael Batz"> <title>NETHINKS Docker Environment for OpenNMS - Developers Guide</title> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic%7CNoto+Serif:400,400italic,700,700italic%7CDroid+Sans+Mono:400,700"> <style> /* Asciidoctor default stylesheet | MIT License | http://asciidoctor.org */ /* Remove comment around @import statement below when using as a custom stylesheet */ /*@import "https://fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic%7CNoto+Serif:400,400italic,700,700italic%7CDroid+Sans+Mono:400,700";*/ article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block} audio,canvas,video{display:inline-block} audio:not([controls]){display:none;height:0} [hidden],template{display:none} script{display:none!important} html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%} body{margin:0} a{background:transparent} a:focus{outline:thin dotted} a:active,a:hover{outline:0} h1{font-size:2em;margin:.67em 0} abbr[title]{border-bottom:1px dotted} b,strong{font-weight:bold} dfn{font-style:italic} hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0} mark{background:#ff0;color:#000} code,kbd,pre,samp{font-family:monospace;font-size:1em} pre{white-space:pre-wrap} q{quotes:"\201C" "\201D" "\2018" "\2019"} small{font-size:80%} sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline} sup{top:-.5em} sub{bottom:-.25em} img{border:0} svg:not(:root){overflow:hidden} figure{margin:0} fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em} legend{border:0;padding:0} button,input,select,textarea{font-family:inherit;font-size:100%;margin:0} button,input{line-height:normal} button,select{text-transform:none} button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer} button[disabled],html input[disabled]{cursor:default} input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0} input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box} input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none} button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0} textarea{overflow:auto;vertical-align:top} table{border-collapse:collapse;border-spacing:0} *,*:before,*:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box} html,body{font-size:100%} body{background:#fff;color:rgba(0,0,0,.8);padding:0;margin:0;font-family:"Noto Serif","DejaVu Serif",serif;font-weight:400;font-style:normal;line-height:1;position:relative;cursor:auto} a:hover{cursor:pointer} img,object,embed{max-width:100%;height:auto} object,embed{height:100%} img{-ms-interpolation-mode:bicubic} .left{float:left!important} .right{float:right!important} .text-left{text-align:left!important} .text-right{text-align:right!important} .text-center{text-align:center!important} .text-justify{text-align:justify!important} .hide{display:none} body{-webkit-font-smoothing:antialiased} img,object,svg{display:inline-block;vertical-align:middle} textarea{height:auto;min-height:50px} select{width:100%} .center{margin-left:auto;margin-right:auto} .spread{width:100%} p.lead,.paragraph.lead>p,#preamble>.sectionbody>.paragraph:first-of-type p{font-size:1.21875em;line-height:1.6} .subheader,.admonitionblock td.content>.title,.audioblock>.title,.exampleblock>.title,.imageblock>.title,.listingblock>.title,.literalblock>.title,.stemblock>.title,.openblock>.title,.paragraph>.title,.quoteblock>.title,table.tableblock>.title,.verseblock>.title,.videoblock>.title,.dlist>.title,.olist>.title,.ulist>.title,.qlist>.title,.hdlist>.title{line-height:1.45;color:#7a2518;font-weight:400;margin-top:0;margin-bottom:.25em} div,dl,dt,dd,ul,ol,li,h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6,pre,form,p,blockquote,th,td{margin:0;padding:0;direction:ltr} a{color:#2156a5;text-decoration:underline;line-height:inherit} a:hover,a:focus{color:#1d4b8f} a img{border:none} p{font-family:inherit;font-weight:400;font-size:1em;line-height:1.6;margin-bottom:1.25em;text-rendering:optimizeLegibility} p aside{font-size:.875em;line-height:1.35;font-style:italic} h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6{font-family:"Open Sans","DejaVu Sans",sans-serif;font-weight:300;font-style:normal;color:#ba3925;text-rendering:optimizeLegibility;margin-top:1em;margin-bottom:.5em;line-height:1.0125em} h1 small,h2 small,h3 small,#toctitle small,.sidebarblock>.content>.title small,h4 small,h5 small,h6 small{font-size:60%;color:#e99b8f;line-height:0} h1{font-size:2.125em} h2{font-size:1.6875em} h3,#toctitle,.sidebarblock>.content>.title{font-size:1.375em} h4,h5{font-size:1.125em} h6{font-size:1em} hr{border:solid #ddddd8;border-width:1px 0 0;clear:both;margin:1.25em 0 1.1875em;height:0} em,i{font-style:italic;line-height:inherit} strong,b{font-weight:bold;line-height:inherit} small{font-size:60%;line-height:inherit} code{font-family:"Droid Sans Mono","DejaVu Sans Mono",monospace;font-weight:400;color:rgba(0,0,0,.9)} ul,ol,dl{font-size:1em;line-height:1.6;margin-bottom:1.25em;list-style-position:outside;font-family:inherit} ul,ol,ul.no-bullet,ol.no-bullet{margin-left:1.5em} ul li ul,ul li ol{margin-left:1.25em;margin-bottom:0;font-size:1em} ul.square li ul,ul.circle li ul,ul.disc li ul{list-style:inherit} ul.square{list-style-type:square} ul.circle{list-style-type:circle} ul.disc{list-style-type:disc} ul.no-bullet{list-style:none} ol li ul,ol li ol{margin-left:1.25em;margin-bottom:0} dl dt{margin-bottom:.3125em;font-weight:bold} dl dd{margin-bottom:1.25em} abbr,acronym{text-transform:uppercase;font-size:90%;color:rgba(0,0,0,.8);border-bottom:1px dotted #ddd;cursor:help} abbr{text-transform:none} blockquote{margin:0 0 1.25em;padding:.5625em 1.25em 0 1.1875em;border-left:1px solid #ddd} blockquote cite{display:block;font-size:.9375em;color:rgba(0,0,0,.6)} blockquote cite:before{content:"\2014 \0020"} blockquote cite a,blockquote cite a:visited{color:rgba(0,0,0,.6)} blockquote,blockquote p{line-height:1.6;color:rgba(0,0,0,.85)} @media only screen and (min-width:768px){h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6{line-height:1.2} h1{font-size:2.75em} h2{font-size:2.3125em} h3,#toctitle,.sidebarblock>.content>.title{font-size:1.6875em} h4{font-size:1.4375em}} table{background:#fff;margin-bottom:1.25em;border:solid 1px #dedede} table thead,table tfoot{background:#f7f8f7;font-weight:bold} table thead tr th,table thead tr td,table tfoot tr th,table tfoot tr td{padding:.5em .625em .625em;font-size:inherit;color:rgba(0,0,0,.8);text-align:left} table tr th,table tr td{padding:.5625em .625em;font-size:inherit;color:rgba(0,0,0,.8)} table tr.even,table tr.alt,table tr:nth-of-type(even){background:#f8f8f7} table thead tr th,table tfoot tr th,table tbody tr td,table tr td,table tfoot tr td{display:table-cell;line-height:1.6} body{tab-size:4} h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6{line-height:1.2;word-spacing:-.05em} h1 strong,h2 strong,h3 strong,#toctitle strong,.sidebarblock>.content>.title strong,h4 strong,h5 strong,h6 strong{font-weight:400} .clearfix:before,.clearfix:after,.float-group:before,.float-group:after{content:" ";display:table} .clearfix:after,.float-group:after{clear:both} *:not(pre)>code{font-size:.9375em;font-style:normal!important;letter-spacing:0;padding:.1em .5ex;word-spacing:-.15em;background-color:#f7f7f8;-webkit-border-radius:4px;border-radius:4px;line-height:1.45;text-rendering:optimizeSpeed} pre,pre>code{line-height:1.45;color:rgba(0,0,0,.9);font-family:"Droid Sans Mono","DejaVu Sans Mono",monospace;font-weight:400;text-rendering:optimizeSpeed} .keyseq{color:rgba(51,51,51,.8)} kbd{font-family:"Droid Sans Mono","DejaVu Sans Mono",monospace;display:inline-block;color:rgba(0,0,0,.8);font-size:.65em;line-height:1.45;background-color:#f7f7f7;border:1px solid #ccc;-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,.2),0 0 0 .1em white inset;box-shadow:0 1px 0 rgba(0,0,0,.2),0 0 0 .1em #fff inset;margin:0 .15em;padding:.2em .5em;vertical-align:middle;position:relative;top:-.1em;white-space:nowrap} .keyseq kbd:first-child{margin-left:0} .keyseq kbd:last-child{margin-right:0} .menuseq,.menu{color:rgba(0,0,0,.8)} b.button:before,b.button:after{position:relative;top:-1px;font-weight:400} b.button:before{content:"[";padding:0 3px 0 2px} b.button:after{content:"]";padding:0 2px 0 3px} p a>code:hover{color:rgba(0,0,0,.9)} #header,#content,#footnotes,#footer{width:100%;margin-left:auto;margin-right:auto;margin-top:0;margin-bottom:0;max-width:62.5em;*zoom:1;position:relative;padding-left:.9375em;padding-right:.9375em} #header:before,#header:after,#content:before,#content:after,#footnotes:before,#footnotes:after,#footer:before,#footer:after{content:" ";display:table} #header:after,#content:after,#footnotes:after,#footer:after{clear:both} #content{margin-top:1.25em} #content:before{content:none} #header>h1:first-child{color:rgba(0,0,0,.85);margin-top:2.25rem;margin-bottom:0} #header>h1:first-child+#toc{margin-top:8px;border-top:1px solid #ddddd8} #header>h1:only-child,body.toc2 #header>h1:nth-last-child(2){border-bottom:1px solid #ddddd8;padding-bottom:8px} #header .details{border-bottom:1px solid #ddddd8;line-height:1.45;padding-top:.25em;padding-bottom:.25em;padding-left:.25em;color:rgba(0,0,0,.6);display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-flow:row wrap;-webkit-flex-flow:row wrap;flex-flow:row wrap} #header .details span:first-child{margin-left:-.125em} #header .details span.email a{color:rgba(0,0,0,.85)} #header .details br{display:none} #header .details br+span:before{content:"\00a0\2013\00a0"} #header .details br+span.author:before{content:"\00a0\22c5\00a0";color:rgba(0,0,0,.85)} #header .details br+span#revremark:before{content:"\00a0|\00a0"} #header #revnumber{text-transform:capitalize} #header #revnumber:after{content:"\00a0"} #content>h1:first-child:not([class]){color:rgba(0,0,0,.85);border-bottom:1px solid #ddddd8;padding-bottom:8px;margin-top:0;padding-top:1rem;margin-bottom:1.25rem} #toc{border-bottom:1px solid #efefed;padding-bottom:.5em} #toc>ul{margin-left:.125em} #toc ul.sectlevel0>li>a{font-style:italic} #toc ul.sectlevel0 ul.sectlevel1{margin:.5em 0} #toc ul{font-family:"Open Sans","DejaVu Sans",sans-serif;list-style-type:none} #toc li{line-height:1.3334;margin-top:.3334em} #toc a{text-decoration:none} #toc a:active{text-decoration:underline} #toctitle{color:#7a2518;font-size:1.2em} @media only screen and (min-width:768px){#toctitle{font-size:1.375em} body.toc2{padding-left:15em;padding-right:0} #toc.toc2{margin-top:0!important;background-color:#f8f8f7;position:fixed;width:15em;left:0;top:0;border-right:1px solid #efefed;border-top-width:0!important;border-bottom-width:0!important;z-index:1000;padding:1.25em 1em;height:100%;overflow:auto} #toc.toc2 #toctitle{margin-top:0;margin-bottom:.8rem;font-size:1.2em} #toc.toc2>ul{font-size:.9em;margin-bottom:0} #toc.toc2 ul ul{margin-left:0;padding-left:1em} #toc.toc2 ul.sectlevel0 ul.sectlevel1{padding-left:0;margin-top:.5em;margin-bottom:.5em} body.toc2.toc-right{padding-left:0;padding-right:15em} body.toc2.toc-right #toc.toc2{border-right-width:0;border-left:1px solid #efefed;left:auto;right:0}} @media only screen and (min-width:1280px){body.toc2{padding-left:20em;padding-right:0} #toc.toc2{width:20em} #toc.toc2 #toctitle{font-size:1.375em} #toc.toc2>ul{font-size:.95em} #toc.toc2 ul ul{padding-left:1.25em} body.toc2.toc-right{padding-left:0;padding-right:20em}} #content #toc{border-style:solid;border-width:1px;border-color:#e0e0dc;margin-bottom:1.25em;padding:1.25em;background:#f8f8f7;-webkit-border-radius:4px;border-radius:4px} #content #toc>:first-child{margin-top:0} #content #toc>:last-child{margin-bottom:0} #footer{max-width:100%;background-color:rgba(0,0,0,.8);padding:1.25em} #footer-text{color:rgba(255,255,255,.8);line-height:1.44} .sect1{padding-bottom:.625em} @media only screen and (min-width:768px){.sect1{padding-bottom:1.25em}} .sect1+.sect1{border-top:1px solid #efefed} #content h1>a.anchor,h2>a.anchor,h3>a.anchor,#toctitle>a.anchor,.sidebarblock>.content>.title>a.anchor,h4>a.anchor,h5>a.anchor,h6>a.anchor{position:absolute;z-index:1001;width:1.5ex;margin-left:-1.5ex;display:block;text-decoration:none!important;visibility:hidden;text-align:center;font-weight:400} #content h1>a.anchor:before,h2>a.anchor:before,h3>a.anchor:before,#toctitle>a.anchor:before,.sidebarblock>.content>.title>a.anchor:before,h4>a.anchor:before,h5>a.anchor:before,h6>a.anchor:before{content:"\00A7";font-size:.85em;display:block;padding-top:.1em} #content h1:hover>a.anchor,#content h1>a.anchor:hover,h2:hover>a.anchor,h2>a.anchor:hover,h3:hover>a.anchor,#toctitle:hover>a.anchor,.sidebarblock>.content>.title:hover>a.anchor,h3>a.anchor:hover,#toctitle>a.anchor:hover,.sidebarblock>.content>.title>a.anchor:hover,h4:hover>a.anchor,h4>a.anchor:hover,h5:hover>a.anchor,h5>a.anchor:hover,h6:hover>a.anchor,h6>a.anchor:hover{visibility:visible} #content h1>a.link,h2>a.link,h3>a.link,#toctitle>a.link,.sidebarblock>.content>.title>a.link,h4>a.link,h5>a.link,h6>a.link{color:#ba3925;text-decoration:none} #content h1>a.link:hover,h2>a.link:hover,h3>a.link:hover,#toctitle>a.link:hover,.sidebarblock>.content>.title>a.link:hover,h4>a.link:hover,h5>a.link:hover,h6>a.link:hover{color:#a53221} .audioblock,.imageblock,.literalblock,.listingblock,.stemblock,.videoblock{margin-bottom:1.25em} .admonitionblock td.content>.title,.audioblock>.title,.exampleblock>.title,.imageblock>.title,.listingblock>.title,.literalblock>.title,.stemblock>.title,.openblock>.title,.paragraph>.title,.quoteblock>.title,table.tableblock>.title,.verseblock>.title,.videoblock>.title,.dlist>.title,.olist>.title,.ulist>.title,.qlist>.title,.hdlist>.title{text-rendering:optimizeLegibility;text-align:left;font-family:"Noto Serif","DejaVu Serif",serif;font-size:1rem;font-style:italic} table.tableblock>caption.title{white-space:nowrap;overflow:visible;max-width:0} .paragraph.lead>p,#preamble>.sectionbody>.paragraph:first-of-type p{color:rgba(0,0,0,.85)} table.tableblock #preamble>.sectionbody>.paragraph:first-of-type p{font-size:inherit} .admonitionblock>table{border-collapse:separate;border:0;background:none;width:100%} .admonitionblock>table td.icon{text-align:center;width:80px} .admonitionblock>table td.icon img{max-width:none} .admonitionblock>table td.icon .title{font-weight:bold;font-family:"Open Sans","DejaVu Sans",sans-serif;text-transform:uppercase} .admonitionblock>table td.content{padding-left:1.125em;padding-right:1.25em;border-left:1px solid #ddddd8;color:rgba(0,0,0,.6)} .admonitionblock>table td.content>:last-child>:last-child{margin-bottom:0} .exampleblock>.content{border-style:solid;border-width:1px;border-color:#e6e6e6;margin-bottom:1.25em;padding:1.25em;background:#fff;-webkit-border-radius:4px;border-radius:4px} .exampleblock>.content>:first-child{margin-top:0} .exampleblock>.content>:last-child{margin-bottom:0} .sidebarblock{border-style:solid;border-width:1px;border-color:#e0e0dc;margin-bottom:1.25em;padding:1.25em;background:#f8f8f7;-webkit-border-radius:4px;border-radius:4px} .sidebarblock>:first-child{margin-top:0} .sidebarblock>:last-child{margin-bottom:0} .sidebarblock>.content>.title{color:#7a2518;margin-top:0;text-align:center} .exampleblock>.content>:last-child>:last-child,.exampleblock>.content .olist>ol>li:last-child>:last-child,.exampleblock>.content .ulist>ul>li:last-child>:last-child,.exampleblock>.content .qlist>ol>li:last-child>:last-child,.sidebarblock>.content>:last-child>:last-child,.sidebarblock>.content .olist>ol>li:last-child>:last-child,.sidebarblock>.content .ulist>ul>li:last-child>:last-child,.sidebarblock>.content .qlist>ol>li:last-child>:last-child{margin-bottom:0} .literalblock pre,.listingblock pre:not(.highlight),.listingblock pre[class="highlight"],.listingblock pre[class^="highlight "],.listingblock pre.CodeRay,.listingblock pre.prettyprint{background:#f7f7f8} .sidebarblock .literalblock pre,.sidebarblock .listingblock pre:not(.highlight),.sidebarblock .listingblock pre[class="highlight"],.sidebarblock .listingblock pre[class^="highlight "],.sidebarblock .listingblock pre.CodeRay,.sidebarblock .listingblock pre.prettyprint{background:#f2f1f1} .literalblock pre,.literalblock pre[class],.listingblock pre,.listingblock pre[class]{-webkit-border-radius:4px;border-radius:4px;word-wrap:break-word;padding:1em;font-size:.8125em} .literalblock pre.nowrap,.literalblock pre[class].nowrap,.listingblock pre.nowrap,.listingblock pre[class].nowrap{overflow-x:auto;white-space:pre;word-wrap:normal} @media only screen and (min-width:768px){.literalblock pre,.literalblock pre[class],.listingblock pre,.listingblock pre[class]{font-size:.90625em}} @media only screen and (min-width:1280px){.literalblock pre,.literalblock pre[class],.listingblock pre,.listingblock pre[class]{font-size:1em}} .literalblock.output pre{color:#f7f7f8;background-color:rgba(0,0,0,.9)} .listingblock pre.highlightjs{padding:0} .listingblock pre.highlightjs>code{padding:1em;-webkit-border-radius:4px;border-radius:4px} .listingblock pre.prettyprint{border-width:0} .listingblock>.content{position:relative} .listingblock code[data-lang]:before{display:none;content:attr(data-lang);position:absolute;font-size:.75em;top:.425rem;right:.5rem;line-height:1;text-transform:uppercase;color:#999} .listingblock:hover code[data-lang]:before{display:block} .listingblock.terminal pre .command:before{content:attr(data-prompt);padding-right:.5em;color:#999} .listingblock.terminal pre .command:not([data-prompt]):before{content:"$"} table.pyhltable{border-collapse:separate;border:0;margin-bottom:0;background:none} table.pyhltable td{vertical-align:top;padding-top:0;padding-bottom:0;line-height:1.45} table.pyhltable td.code{padding-left:.75em;padding-right:0} pre.pygments .lineno,table.pyhltable td:not(.code){color:#999;padding-left:0;padding-right:.5em;border-right:1px solid #ddddd8} pre.pygments .lineno{display:inline-block;margin-right:.25em} table.pyhltable .linenodiv{background:none!important;padding-right:0!important} .quoteblock{margin:0 1em 1.25em 1.5em;display:table} .quoteblock>.title{margin-left:-1.5em;margin-bottom:.75em} .quoteblock blockquote,.quoteblock blockquote p{color:rgba(0,0,0,.85);font-size:1.15rem;line-height:1.75;word-spacing:.1em;letter-spacing:0;font-style:italic;text-align:justify} .quoteblock blockquote{margin:0;padding:0;border:0} .quoteblock blockquote:before{content:"\201c";float:left;font-size:2.75em;font-weight:bold;line-height:.6em;margin-left:-.6em;color:#7a2518;text-shadow:0 1px 2px rgba(0,0,0,.1)} .quoteblock blockquote>.paragraph:last-child p{margin-bottom:0} .quoteblock .attribution{margin-top:.5em;margin-right:.5ex;text-align:right} .quoteblock .quoteblock{margin-left:0;margin-right:0;padding:.5em 0;border-left:3px solid rgba(0,0,0,.6)} .quoteblock .quoteblock blockquote{padding:0 0 0 .75em} .quoteblock .quoteblock blockquote:before{display:none} .verseblock{margin:0 1em 1.25em 1em} .verseblock pre{font-family:"Open Sans","DejaVu Sans",sans;font-size:1.15rem;color:rgba(0,0,0,.85);font-weight:300;text-rendering:optimizeLegibility} .verseblock pre strong{font-weight:400} .verseblock .attribution{margin-top:1.25rem;margin-left:.5ex} .quoteblock .attribution,.verseblock .attribution{font-size:.9375em;line-height:1.45;font-style:italic} .quoteblock .attribution br,.verseblock .attribution br{display:none} .quoteblock .attribution cite,.verseblock .attribution cite{display:block;letter-spacing:-.025em;color:rgba(0,0,0,.6)} .quoteblock.abstract{margin:0 0 1.25em 0;display:block} .quoteblock.abstract blockquote,.quoteblock.abstract blockquote p{text-align:left;word-spacing:0} .quoteblock.abstract blockquote:before,.quoteblock.abstract blockquote p:first-of-type:before{display:none} table.tableblock{max-width:100%;border-collapse:separate} table.tableblock td>.paragraph:last-child p>p:last-child,table.tableblock th>p:last-child,table.tableblock td>p:last-child{margin-bottom:0} table.tableblock,th.tableblock,td.tableblock{border:0 solid #dedede} table.grid-all th.tableblock,table.grid-all td.tableblock{border-width:0 1px 1px 0} table.grid-all tfoot>tr>th.tableblock,table.grid-all tfoot>tr>td.tableblock{border-width:1px 1px 0 0} table.grid-cols th.tableblock,table.grid-cols td.tableblock{border-width:0 1px 0 0} table.grid-all *>tr>.tableblock:last-child,table.grid-cols *>tr>.tableblock:last-child{border-right-width:0} table.grid-rows th.tableblock,table.grid-rows td.tableblock{border-width:0 0 1px 0} table.grid-all tbody>tr:last-child>th.tableblock,table.grid-all tbody>tr:last-child>td.tableblock,table.grid-all thead:last-child>tr>th.tableblock,table.grid-rows tbody>tr:last-child>th.tableblock,table.grid-rows tbody>tr:last-child>td.tableblock,table.grid-rows thead:last-child>tr>th.tableblock{border-bottom-width:0} table.grid-rows tfoot>tr>th.tableblock,table.grid-rows tfoot>tr>td.tableblock{border-width:1px 0 0 0} table.frame-all{border-width:1px} table.frame-sides{border-width:0 1px} table.frame-topbot{border-width:1px 0} th.halign-left,td.halign-left{text-align:left} th.halign-right,td.halign-right{text-align:right} th.halign-center,td.halign-center{text-align:center} th.valign-top,td.valign-top{vertical-align:top} th.valign-bottom,td.valign-bottom{vertical-align:bottom} th.valign-middle,td.valign-middle{vertical-align:middle} table thead th,table tfoot th{font-weight:bold} tbody tr th{display:table-cell;line-height:1.6;background:#f7f8f7} tbody tr th,tbody tr th p,tfoot tr th,tfoot tr th p{color:rgba(0,0,0,.8);font-weight:bold} p.tableblock>code:only-child{background:none;padding:0} p.tableblock{font-size:1em} td>div.verse{white-space:pre} ol{margin-left:1.75em} ul li ol{margin-left:1.5em} dl dd{margin-left:1.125em} dl dd:last-child,dl dd:last-child>:last-child{margin-bottom:0} ol>li p,ul>li p,ul dd,ol dd,.olist .olist,.ulist .ulist,.ulist .olist,.olist .ulist{margin-bottom:.625em} ul.unstyled,ol.unnumbered,ul.checklist,ul.none{list-style-type:none} ul.unstyled,ol.unnumbered,ul.checklist{margin-left:.625em} ul.checklist li>p:first-child>.fa-square-o:first-child,ul.checklist li>p:first-child>.fa-check-square-o:first-child{width:1em;font-size:.85em} ul.checklist li>p:first-child>input[type="checkbox"]:first-child{width:1em;position:relative;top:1px} ul.inline{margin:0 auto .625em auto;margin-left:-1.375em;margin-right:0;padding:0;list-style:none;overflow:hidden} ul.inline>li{list-style:none;float:left;margin-left:1.375em;display:block} ul.inline>li>*{display:block} .unstyled dl dt{font-weight:400;font-style:normal} ol.arabic{list-style-type:decimal} ol.decimal{list-style-type:decimal-leading-zero} ol.loweralpha{list-style-type:lower-alpha} ol.upperalpha{list-style-type:upper-alpha} ol.lowerroman{list-style-type:lower-roman} ol.upperroman{list-style-type:upper-roman} ol.lowergreek{list-style-type:lower-greek} .hdlist>table,.colist>table{border:0;background:none} .hdlist>table>tbody>tr,.colist>table>tbody>tr{background:none} td.hdlist1,td.hdlist2{vertical-align:top;padding:0 .625em} td.hdlist1{font-weight:bold;padding-bottom:1.25em} .literalblock+.colist,.listingblock+.colist{margin-top:-.5em} .colist>table tr>td:first-of-type{padding:0 .75em;line-height:1} .colist>table tr>td:last-of-type{padding:.25em 0} .thumb,.th{line-height:0;display:inline-block;border:solid 4px #fff;-webkit-box-shadow:0 0 0 1px #ddd;box-shadow:0 0 0 1px #ddd} .imageblock.left,.imageblock[style*="float: left"]{margin:.25em .625em 1.25em 0} .imageblock.right,.imageblock[style*="float: right"]{margin:.25em 0 1.25em .625em} .imageblock>.title{margin-bottom:0} .imageblock.thumb,.imageblock.th{border-width:6px} .imageblock.thumb>.title,.imageblock.th>.title{padding:0 .125em} .image.left,.image.right{margin-top:.25em;margin-bottom:.25em;display:inline-block;line-height:0} .image.left{margin-right:.625em} .image.right{margin-left:.625em} a.image{text-decoration:none;display:inline-block} a.image object{pointer-events:none} sup.footnote,sup.footnoteref{font-size:.875em;position:static;vertical-align:super} sup.footnote a,sup.footnoteref a{text-decoration:none} sup.footnote a:active,sup.footnoteref a:active{text-decoration:underline} #footnotes{padding-top:.75em;padding-bottom:.75em;margin-bottom:.625em} #footnotes hr{width:20%;min-width:6.25em;margin:-.25em 0 .75em 0;border-width:1px 0 0 0} #footnotes .footnote{padding:0 .375em 0 .225em;line-height:1.3334;font-size:.875em;margin-left:1.2em;text-indent:-1.05em;margin-bottom:.2em} #footnotes .footnote a:first-of-type{font-weight:bold;text-decoration:none} #footnotes .footnote:last-of-type{margin-bottom:0} #content #footnotes{margin-top:-.625em;margin-bottom:0;padding:.75em 0} .gist .file-data>table{border:0;background:#fff;width:100%;margin-bottom:0} .gist .file-data>table td.line-data{width:99%} div.unbreakable{page-break-inside:avoid} .big{font-size:larger} .small{font-size:smaller} .underline{text-decoration:underline} .overline{text-decoration:overline} .line-through{text-decoration:line-through} .aqua{color:#00bfbf} .aqua-background{background-color:#00fafa} .black{color:#000} .black-background{background-color:#000} .blue{color:#0000bf} .blue-background{background-color:#0000fa} .fuchsia{color:#bf00bf} .fuchsia-background{background-color:#fa00fa} .gray{color:#606060} .gray-background{background-color:#7d7d7d} .green{color:#006000} .green-background{background-color:#007d00} .lime{color:#00bf00} .lime-background{background-color:#00fa00} .maroon{color:#600000} .maroon-background{background-color:#7d0000} .navy{color:#000060} .navy-background{background-color:#00007d} .olive{color:#606000} .olive-background{background-color:#7d7d00} .purple{color:#600060} .purple-background{background-color:#7d007d} .red{color:#bf0000} .red-background{background-color:#fa0000} .silver{color:#909090} .silver-background{background-color:#bcbcbc} .teal{color:#006060} .teal-background{background-color:#007d7d} .white{color:#bfbfbf} .white-background{background-color:#fafafa} .yellow{color:#bfbf00} .yellow-background{background-color:#fafa00} span.icon>.fa{cursor:default} .admonitionblock td.icon [class^="fa icon-"]{font-size:2.5em;text-shadow:1px 1px 2px rgba(0,0,0,.5);cursor:default} .admonitionblock td.icon .icon-note:before{content:"\f05a";color:#19407c} .admonitionblock td.icon .icon-tip:before{content:"\f0eb";text-shadow:1px 1px 2px rgba(155,155,0,.8);color:#111} .admonitionblock td.icon .icon-warning:before{content:"\f071";color:#bf6900} .admonitionblock td.icon .icon-caution:before{content:"\f06d";color:#bf3400} .admonitionblock td.icon .icon-important:before{content:"\f06a";color:#bf0000} .conum[data-value]{display:inline-block;color:#fff!important;background-color:rgba(0,0,0,.8);-webkit-border-radius:100px;border-radius:100px;text-align:center;font-size:.75em;width:1.67em;height:1.67em;line-height:1.67em;font-family:"Open Sans","DejaVu Sans",sans-serif;font-style:normal;font-weight:bold} .conum[data-value] *{color:#fff!important} .conum[data-value]+b{display:none} .conum[data-value]:after{content:attr(data-value)} pre .conum[data-value]{position:relative;top:-.125em} b.conum *{color:inherit!important} .conum:not([data-value]):empty{display:none} dt,th.tableblock,td.content,div.footnote{text-rendering:optimizeLegibility} h1,h2,p,td.content,span.alt{letter-spacing:-.01em} p strong,td.content strong,div.footnote strong{letter-spacing:-.005em} p,blockquote,dt,td.content,span.alt{font-size:1.0625rem} p{margin-bottom:1.25rem} .sidebarblock p,.sidebarblock dt,.sidebarblock td.content,p.tableblock{font-size:1em} .exampleblock>.content{background-color:#fffef7;border-color:#e0e0dc;-webkit-box-shadow:0 1px 4px #e0e0dc;box-shadow:0 1px 4px #e0e0dc} .print-only{display:none!important} @media print{@page{margin:1.25cm .75cm} *{-webkit-box-shadow:none!important;box-shadow:none!important;text-shadow:none!important} a{color:inherit!important;text-decoration:underline!important} a.bare,a[href^="#"],a[href^="mailto:"]{text-decoration:none!important} a[href^="http:"]:not(.bare):after,a[href^="https:"]:not(.bare):after{content:"(" attr(href) ")";display:inline-block;font-size:.875em;padding-left:.25em} abbr[title]:after{content:" (" attr(title) ")"} pre,blockquote,tr,img,object,svg{page-break-inside:avoid} thead{display:table-header-group} svg{max-width:100%} p,blockquote,dt,td.content{font-size:1em;orphans:3;widows:3} h2,h3,#toctitle,.sidebarblock>.content>.title{page-break-after:avoid} #toc,.sidebarblock,.exampleblock>.content{background:none!important} #toc{border-bottom:1px solid #ddddd8!important;padding-bottom:0!important} .sect1{padding-bottom:0!important} .sect1+.sect1{border:0!important} #header>h1:first-child{margin-top:1.25rem} body.book #header{text-align:center} body.book #header>h1:first-child{border:0!important;margin:2.5em 0 1em 0} body.book #header .details{border:0!important;display:block;padding:0!important} body.book #header .details span:first-child{margin-left:0!important} body.book #header .details br{display:block} body.book #header .details br+span:before{content:none!important} body.book #toc{border:0!important;text-align:left!important;padding:0!important;margin:0!important} body.book #toc,body.book #preamble,body.book h1.sect0,body.book .sect1>h2{page-break-before:always} .listingblock code[data-lang]:before{display:block} #footer{background:none!important;padding:0 .9375em} #footer-text{color:rgba(0,0,0,.6)!important;font-size:.9em} .hide-on-print{display:none!important} .print-only{display:block!important} .hide-for-print{display:none!important} .show-for-print{display:inherit!important}} </style> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css"> <style> .listingblock .pygments .hll { background-color: #ffffcc } .listingblock .pygments { background: #f8f8f8; } .listingblock .pygments .tok-c { color: #408080; font-style: italic } /* Comment */ .listingblock .pygments .tok-err { border: 1px solid #FF0000 } /* Error */ .listingblock .pygments .tok-k { color: #008000; font-weight: bold } /* Keyword */ .listingblock .pygments .tok-o { color: #666666 } /* Operator */ .listingblock .pygments .tok-ch { color: #408080; font-style: italic } /* Comment.Hashbang */ .listingblock .pygments .tok-cm { color: #408080; font-style: italic } /* Comment.Multiline */ .listingblock .pygments .tok-cp { color: #BC7A00 } /* Comment.Preproc */ .listingblock .pygments .tok-cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */ .listingblock .pygments .tok-c1 { color: #408080; font-style: italic } /* Comment.Single */ .listingblock .pygments .tok-cs { color: #408080; font-style: italic } /* Comment.Special */ .listingblock .pygments .tok-gd { color: #A00000 } /* Generic.Deleted */ .listingblock .pygments .tok-ge { font-style: italic } /* Generic.Emph */ .listingblock .pygments .tok-gr { color: #FF0000 } /* Generic.Error */ .listingblock .pygments .tok-gh { color: #000080; font-weight: bold } /* Generic.Heading */ .listingblock .pygments .tok-gi { color: #00A000 } /* Generic.Inserted */ .listingblock .pygments .tok-go { color: #888888 } /* Generic.Output */ .listingblock .pygments .tok-gp { color: #000080; font-weight: bold } /* Generic.Prompt */ .listingblock .pygments .tok-gs { font-weight: bold } /* Generic.Strong */ .listingblock .pygments .tok-gu { color: #800080; font-weight: bold } /* Generic.Subheading */ .listingblock .pygments .tok-gt { color: #0044DD } /* Generic.Traceback */ .listingblock .pygments .tok-kc { color: #008000; font-weight: bold } /* Keyword.Constant */ .listingblock .pygments .tok-kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ .listingblock .pygments .tok-kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ .listingblock .pygments .tok-kp { color: #008000 } /* Keyword.Pseudo */ .listingblock .pygments .tok-kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ .listingblock .pygments .tok-kt { color: #B00040 } /* Keyword.Type */ .listingblock .pygments .tok-m { color: #666666 } /* Literal.Number */ .listingblock .pygments .tok-s { color: #BA2121 } /* Literal.String */ .listingblock .pygments .tok-na { color: #7D9029 } /* Name.Attribute */ .listingblock .pygments .tok-nb { color: #008000 } /* Name.Builtin */ .listingblock .pygments .tok-nc { color: #0000FF; font-weight: bold } /* Name.Class */ .listingblock .pygments .tok-no { color: #880000 } /* Name.Constant */ .listingblock .pygments .tok-nd { color: #AA22FF } /* Name.Decorator */ .listingblock .pygments .tok-ni { color: #999999; font-weight: bold } /* Name.Entity */ .listingblock .pygments .tok-ne { color: #D2413A; font-weight: bold } /* Name.Exception */ .listingblock .pygments .tok-nf { color: #0000FF } /* Name.Function */ .listingblock .pygments .tok-nl { color: #A0A000 } /* Name.Label */ .listingblock .pygments .tok-nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ .listingblock .pygments .tok-nt { color: #008000; font-weight: bold } /* Name.Tag */ .listingblock .pygments .tok-nv { color: #19177C } /* Name.Variable */ .listingblock .pygments .tok-ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ .listingblock .pygments .tok-w { color: #bbbbbb } /* Text.Whitespace */ .listingblock .pygments .tok-mb { color: #666666 } /* Literal.Number.Bin */ .listingblock .pygments .tok-mf { color: #666666 } /* Literal.Number.Float */ .listingblock .pygments .tok-mh { color: #666666 } /* Literal.Number.Hex */ .listingblock .pygments .tok-mi { color: #666666 } /* Literal.Number.Integer */ .listingblock .pygments .tok-mo { color: #666666 } /* Literal.Number.Oct */ .listingblock .pygments .tok-sb { color: #BA2121 } /* Literal.String.Backtick */ .listingblock .pygments .tok-sc { color: #BA2121 } /* Literal.String.Char */ .listingblock .pygments .tok-sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ .listingblock .pygments .tok-s2 { color: #BA2121 } /* Literal.String.Double */ .listingblock .pygments .tok-se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ .listingblock .pygments .tok-sh { color: #BA2121 } /* Literal.String.Heredoc */ .listingblock .pygments .tok-si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ .listingblock .pygments .tok-sx { color: #008000 } /* Literal.String.Other */ .listingblock .pygments .tok-sr { color: #BB6688 } /* Literal.String.Regex */ .listingblock .pygments .tok-s1 { color: #BA2121 } /* Literal.String.Single */ .listingblock .pygments .tok-ss { color: #19177C } /* Literal.String.Symbol */ .listingblock .pygments .tok-bp { color: #008000 } /* Name.Builtin.Pseudo */ .listingblock .pygments .tok-vc { color: #19177C } /* Name.Variable.Class */ .listingblock .pygments .tok-vg { color: #19177C } /* Name.Variable.Global */ .listingblock .pygments .tok-vi { color: #19177C } /* Name.Variable.Instance */ .listingblock .pygments .tok-il { color: #666666 } /* Literal.Number.Integer.Long */ </style> </head> <body class="article toc2 toc-left"> <div id="header"> <h1>NETHINKS Docker Environment for OpenNMS - Developers Guide</h1> <div class="details"> <span id="author" class="author">Michael Batz</span><br> <span id="email" class="email"><a href="mailto:[email protected]">[email protected]</a></span><br> </div> <div id="toc" class="toc2"> <div id="toctitle">Table of Contents</div> <ul class="sectlevel1"> <li><a href="#_docker_images">Docker Images</a> <ul class="sectlevel2"> <li><a href="#_design_of_images">Design of Images</a></li> <li><a href="#_environment_variables">Environment variables</a></li> <li><a href="#_data_handling">Data Handling</a></li> <li><a href="#_tagging_of_images">Tagging of Images</a></li> <li><a href="#_building_of_images">Building of Images</a></li> </ul> </li> <li><a href="#_version_schema_of_the_docker_environment">Version Schema of the Docker Environment</a></li> </ul> </div> </div> <div id="content"> <div class="sect1"> <h2 id="_docker_images">Docker Images</h2> <div class="sectionbody"> <div class="sect2"> <h3 id="_design_of_images">Design of Images</h3> <div class="paragraph"> <p>Each Docker Image for the environment is built on the latest Centos release and contains the following scripts in <em>/opt/containerscripts</em>, that manages the container:</p> </div> <div class="dlist"> <dl> <dt class="hdlist1"><strong>run.sh</strong></dt> <dd> <p>This script will be executed, when the container starts.</p> </dd> <dt class="hdlist1"><strong>init.sh</strong></dt> <dd> <p>Will initialize the environment on the container&#8217;s first start.</p> </dd> <dt class="hdlist1"><strong>prestart.sh</strong></dt> <dd> <p>This script will be executed before the software in the container is started.</p> </dd> <dt class="hdlist1"><strong>export.sh</strong></dt> <dd> <p>Script for exporting data to <em>/data/export/&lt;container&gt;</em></p> </dd> <dt class="hdlist1"><strong>import.sh</strong></dt> <dd> <p>Can be used for importing data.</p> </dd> <dt class="hdlist1"><strong>support.sh</strong></dt> <dd> <p>Creates support data for the container.</p> </dd> </dl> </div> <div class="paragraph"> <p>All scripts must be present in each container. If a script is not needed, it should be empty.</p> </div> </div> <div class="sect2"> <h3 id="_environment_variables">Environment variables</h3> <div class="paragraph"> <p>There are two types of environment variables, that should be used to define settings. Variables starting with 'CONF_' will be applied on every startup of the container. Variables starting with 'INIT_' will be applied only on the container&#8217;s first start.</p> </div> </div> <div class="sect2"> <h3 id="_data_handling">Data Handling</h3> <div class="paragraph"> <p>All data, that is managed by the container, should be stored in <em>/data/container</em>. Import of data should only be done on the container&#8217;s first start from <em>/data/init</em> within the container. Export of data is done by executing the export.sh script to <em>/data/export</em>.</p> </div> </div> <div class="sect2"> <h3 id="_tagging_of_images">Tagging of Images</h3> <div class="paragraph"> <p>Each image should be tagged using the following format:</p> </div> <div class="listingblock"> <div class="content"> <pre class="pygments highlight"><code>&lt;software version&gt;-&lt;build number&gt; example: 18.0.4-1</code></pre> </div> </div> <div class="paragraph"> <p>The first part contains the version of the software packed in the container. The second part contains the build number of the Docker Image. It starts with "1" and increases for each build. So, it is possible to build mulitple Docker Images for the same software version, for example to fix bugs in the image itself.</p> </div> </div> <div class="sect2"> <h3 id="_building_of_images">Building of Images</h3> <div class="paragraph"> <p>All images can be built by using the test environment in the <em>env_test</em> directory with <em>docker-compose</em>:</p> </div> <div class="listingblock"> <div class="content"> <pre class="pygments highlight"><code data-lang="bash"><span class="tok-nb">cd</span> env_test docker-compose build</code></pre> </div> </div> </div> </div> </div> <div class="sect1"> <h2 id="_version_schema_of_the_docker_environment">Version Schema of the Docker Environment</h2> <div class="sectionbody"> <div class="paragraph"> <p>The Docker Environment itself has a version in the following format:</p> </div> <div class="listingblock"> <div class="content"> <pre class="pygments highlight"><code>&lt;meridian/horizon&gt;-&lt;major version&gt;.&lt;minor version&gt;.&lt;bugfix release&gt; example: horizon-1.0.0</code></pre> </div> </div> <div class="paragraph"> <p>The first part of the version string defines whether it is an environment for OpenNMS Horizon or Meridian. After that, major, minor and bugfix release number of the environment follows.</p> </div> <div class="paragraph"> <p>A change in the major version also contains a major version change of OpenNMS, which means the migration of configuration files, etc. A minor version change also contains a minor version change of OpenNMS. A change in the bugfix release number only contains bugfixes (changes in build numbers), which should not mean any migration of data.</p> </div> </div> </div> </div> <div id="footer"> <div id="footer-text"> Last updated 2017-05-22 16:07:35 CEST </div> </div> </body> </html>
2011-12/2011-12-14--/index.html
limitist-log/limitist-log.github.io
<html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <div style="text-align: center; height: 75px; padding:1px; text-transform:capitalize; background-color:#42a5f5; color:white"> <h1 style="margin-bottom:-10px; "><a style="text-decoration: none; color:white;"href="/">Single Template - page</a></h1> </div> <div style="margin:25px;"> <h1>출근하다가 문득 &#39;법인이 자아를 확장하는 법&#39;같은 걸 써보고 싶어졌다.</h1> <div style="color:grey; font-size:16px;">Wednesday, Dec 14, 2011</div> <div style="color:grey; font-size:16px;"></div> <div style="font-size:18px;"><p>애플, 구글, IBM, 피존, 네이버, 현대, 삼성, 엔론, IDEO, 유한킴벌리 등등...</p>&#13; <p>단순히 '매출'을 올리는 것을 넘어,<br />법인(또는 기업)도 뭔가 '자아'같은 걸 가지고 싶어하는 것 같고<br />그 방법도 각양각색.</p>&#13; <p>그걸 CI나 BI라는 용어로 만들어 전문분야로 승격시키고<br />'시장'을 만드려는 노력은 계속 있어왔으나...</p>&#13; <p>사실 법인이 가졌던 강렬한 자아는 거의 대부분<br />그 회사의 Top으로 부터 온 것이 아니었나 라는 의심이 들면서<br />이래저래 궁금해졌다.</p>&#13; <p>재벌 아들로 태어나 사고만 치고 다니다가 아버지가 떠난 후<br />자기만의 회사를 만들고자하는 열망으로 구축된 IBM의 CI라등가...<br />(이 열망이 결국 CI라는 전문분야를 만들었고, <del>디자이너 사이에서</del> 전설적인 인물인 폴 랜드를 탄생시켰다고...)</p>&#13; <p>또라이 수준의 집착쟁이 CEO덕분에 극상의 제품 퀄리티를 유지하면서<br />고객을 똥으로 대함으로써 고객을 '추종자'로 바꾸어버린 애플<br />(다시 말하자면, 애플이 고분고분하고 친고객적인 회사였다면 지금과 같은 자아를 가지진 못했으리라)</p>&#13; <p>혁신적인 기업문화(...)로 어느 때보다 강력한 자아를 가지게 된 피죤<br />(그 강한 자아를 이기지 못하고 망해버리겠지 망해버려야지)</p>&#13; <p>결과물보다 결과물을 도출하는 과정이 더 멋있는 회사 (결과물은 글쎄)<br />'수평적이고 창의적인 기업문화' <del>처럼 보이는 것</del>의 힘을 증명하는 회사<br />그걸로 방송을 타면서 몸값을 한없이 불리는 회사<br />'천재'는 아니어도 '수재'쯤 되는 사람들이 모여<br />'수재들의 콜라보레이션 파워를 보라'라고 말하는 듯한 IDEO.<br />(그러나 잭슨 홍이 아시아 클라이언트를 데려오지 못해서 잘렸다는 글을 읽고는 다소 충격을 받은게 사실)</p>&#13; <p>모나지 않은 성격에 옷도 깔끔하게 잘 입고 정치에 대해 무색무미무취로 일관하면서 절묘하게 중립을 지키며 인기는 많으나 누군가와 깊이 사귀지 않고 남녀 선배 후배 모두에게 잘해주며 돈도 적지 않게 있어서 후배들과 저녁을 먹으면서 더치 페이따위는 하지 않고 뭘 물어봐도 신기할 정도로 다 잘 대답해주고 모르는 것도 애써 찾아서 알려주는 감동적이진 않지만 끈적하고 부담스럽지도 않은 호감가는 수준의 친절을 베풀어주는 선배 or 오빠자리를 차지한 네이버 (써놓고보니 치즈인더트랩의 남자 주인공같네?)</p>&#13; <p>등등</p> </div> </div> <div style="height:35px;"></div> <div style=" position:fixed; color: white; height:35px; background-color:#757575; bottom:0px; text-align:center; width:99%"> <p style="margin:10px; "><a style="color: white; " target="_blank" href="http://www.giraffeacademy.com/">Giraffe Academy</a> - Hugo Theme</p> </div> </body> </html>
public/Windows 10 x64 (19041.572)/_DEVICE_NODE_IOMMU_EXTENSION.html
epikcraw/ggool
<html><body> <h4>Windows 10 x64 (19041.572)</h4><br> <h2>_DEVICE_NODE_IOMMU_EXTENSION</h2> <font face="arial">Symbol nt!_DEVICE_NODE_IOMMU_EXTENSION not found.<br> </font></body></html>
utils/pmd-bin-5.2.2/docs/pmd-core/apidocs/net/sourceforge/pmd/lang/xpath/class-use/MatchesFunction.html
byronka/xenos
<!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_65) on Wed Dec 03 19:50:47 CET 2014 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Uses of Class net.sourceforge.pmd.lang.xpath.MatchesFunction (PMD Core 5.2.2 API)</title> <meta name="date" content="2014-12-03"> <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 net.sourceforge.pmd.lang.xpath.MatchesFunction (PMD Core 5.2.2 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="../../../../../../net/sourceforge/pmd/lang/xpath/MatchesFunction.html" title="class in net.sourceforge.pmd.lang.xpath">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?net/sourceforge/pmd/lang/xpath/class-use/MatchesFunction.html" target="_top">Frames</a></li> <li><a href="MatchesFunction.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 net.sourceforge.pmd.lang.xpath.MatchesFunction" class="title">Uses of Class<br>net.sourceforge.pmd.lang.xpath.MatchesFunction</h2> </div> <div class="classUseContainer">No usage of net.sourceforge.pmd.lang.xpath.MatchesFunction</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="../../../../../../net/sourceforge/pmd/lang/xpath/MatchesFunction.html" title="class in net.sourceforge.pmd.lang.xpath">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?net/sourceforge/pmd/lang/xpath/class-use/MatchesFunction.html" target="_top">Frames</a></li> <li><a href="MatchesFunction.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; 2002&#x2013;2014 <a href="http://pmd.sourceforge.net/">InfoEther</a>. All rights reserved.</small></p> </body> </html>
archives/2013/index.html
Lchiffon/lchiffon.github.io
<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black"> <meta name="google-site-verification" content="UA-66633229-1" /> <title>2013</title> <meta name="author" content="Chiffon Lang"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <meta property="og:site_name" content="七风阁"/> <meta property="og:image" content="undefined"/> <link href="/apple-touch-icon-precomposed.png" sizes="180x180" rel="apple-touch-icon-precomposed"> <link rel="alternate" href="/atom.xml" title="七风阁" type="application/atom+xml"> <link rel="stylesheet" href="//cdn.bootcss.com/bootstrap/3.3.6/css/bootstrap.min.css"> <link rel="stylesheet" href="//cdn.bootcss.com/font-awesome/4.5.0/css/font-awesome.min.css"> <link rel="stylesheet" href="/css/m.min.css"> <link rel="icon" type="image/x-icon" href="/favicon.ico"> </head> <body> <a id="top"></a> <div id='wx_pic' style='display:none;'><img src='/wx_share.png'/></div> <div id="main"> <div class="back"> <a href="/" class="black-color"><i class="fa fa-times" aria-hidden="true"></i></a> </div> <div class="behind"> <div class="description"> &nbsp;不写R包的分析师不是好全栈 </div> </div> <div class="container"> <nav class="navigator"><nav class="navbar navbar-default navbar-fixed-top"> <div class="nav-container"> <ul class="nav navbar-nav navbar-left"> <li class="navbar-header"> <a href="/" class="navbar-brand">CHIFFON</a> </li> <li class="dropdown"> <a href="javascript:void(0);" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"> <i class="fa fa-tags fa-lg"></i> </span></a> <ul class="dropdown-content"> <li><a href="/categories/tect/">技术学习</a></li><li><a href="/categories/jspy/">JsPy&Others</a></li><li><a href="/categories/others/">杂七杂八</a></li><li><a href="/categories/R/">R</a></li><li><a href="/categories/slides/">幻灯片保存</a></li> </ul> </li> </ul> <div id="site_search" class=""> <input type="text" id="local-search-input" name="q" placeholder="search" class="form-control"/> </div> <div id="local-search-result"></div> <ul class="nav navbar-nav navbar-right"> <li class="dropdown"> <a href="javascript:void(0);" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false"> <i class="fa fa-link fa-lg"></i> </a> <ul class="dropdown-content"> <li> <a href="/link/index.html"> 友情链接 </a> </li> <li> <a href="https://github.com/lchiffon/"> Github </a> </li> <li> <a href="http://weibo.com/u/1625159840"> 微博 </a> </li> <li> <a href="https://www.zhihu.com/people/chiffon-lang/activities"> 知乎 </a> </li> <li> <a href="/rss2.xml"> rss </a> </li> <li> <a href="/about/index.html"> 关于我 </a> </li> <li> <a href="/coffee/index.html"> 请我喝杯咖啡 </a> </li> </ul> </li> <li class="archives"><a href="/archives"> <i class="fa fa-archive fa-lg"></i> </a></li> </ul> </div> </nav></nav> <h1 class="archive-title "> <i class="fa fa-archive"></i> 2013 </h1> <div class="archive-num"> There are 1 articles in total </div> <div class="archive"> </ul></section> <section data-link="year-2013" class="section-year"> <h2>2013</h2> <ul class="archive-list"> <div class="archive-item"> <div class="archive-time"> 03-07 </div> <div class="archive-detail"> <a href="/2013/03/07/demo-post.html" class="archive-link"> Demo post </a> </div> </div> <hr> </div> </div> </div> <a id="rocket" href="#top" class=""></a> <script type="text/javascript" src="/js/totop.js?v=1.0.0" async=""></script> <footer class="page-footer"><div class="clearfix"> </div> <div class="right-foot container"> <div class="firstrow"> <a href="#top" target="_self"> <i class="fa fa-arrow-right"></i> </a> © Chiffon 2014-2017 </div> <div class="secondrow"> <a href="https://github.com/gaoryrt/hexo-theme-pln"> Theme Pln </a> </div> </div> <div class="clearfix"> </div> </footer> <script src="//cdn.bootcss.com/jquery/2.2.1/jquery.min.js"></script> <script src="/js/search.js"></script> <script type="text/javascript"> // disqus scripts // dropdown scripts $(".dropdown").click(function(event) { var current = $(this); event.stopPropagation(); $(current).children(".dropdown-content")[($(current).children(".dropdown-content").hasClass("open"))?'removeClass':'addClass']("open") }); $(document).click(function(){ $(".dropdown-content").removeClass("open"); }) var path = "/search.xml"; searchFunc(path, 'local-search-input', 'local-search-result'); (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','https://www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-66633229-1', 'auto'); ga('send', 'pageview'); </script> </body> </html>
pubopin/news_opin/templates/news_opin/hot_news.html
build2last/NCspider
{% extends "navbar.html" %} {% block title %} News Recommend {% endblock %} {% block content %} <div class="container"> <div class="row-fluid"> <div class="col-md-12 column"> <blockquote> <h3> 新浪新闻推荐 </h3> <p>最多互动</p> </blockquote> <table class="table table-hover table-striped"> <thead> <tr> <th>标题</th> <th>互动数</th> <th>类别</th> <th>发布时间</th> </tr> </thead> {% if hot_sina_news %} <tbody> {% for News in hot_sina_news %} <tr> <td><a href="{{ News.news_url }}">{{ News.title }}</a></td> <td><a href="comment/sina/cmt/?comment_id={{ News.news_id }}&title={{ News.title }}">{{ News.comments_number}}</a></td> <td>{{ News.category }}</td> <td><a href="{{ News.comments_url }}">{{ News.put_time }}</a></td> </tr> {% endfor %} </tbody> {% endif %} </table> </div> </div> <div class="row-fluid"> <div class="col-md-12 column"> <blockquote> <h3> 搜狐新闻推荐 </h3> <p>最多互动</p> </blockquote> <table class="table table-hover table-striped"> <thead> <tr> <th>标题</th> <th>互动数</th> <th>发布时间</th> </tr> </thead> {% if hot_sohu_news %} <tbody> {% for News in hot_sohu_news %} <tr> <td><a href="{{ News.news_url }}">{{ News.title }}</a></td> <td><a href="comment/sohu/cmt/?comment_id={{ News.news_id }}&title={{ News.title }}">{{ News.comments_number}}</td> <td>{{ News.put_time }}</td> </tr> {% endfor %} </tbody> {% endif %} </table> </div> </div> <div class="row clearfix"> <div class="col-md-12 column"> <blockquote> <h3> 腾讯新闻推荐 </h3> <p>最多互动</p> </blockquote> <table class="table table-hover table-striped"> <thead> <tr> <th>标题</th> <th>互动数</th> <th>发布时间</th> </tr> </thead> {% if hot_tencent_news %} <tbody> {% for News in hot_tencent_news %} <tr> <td><a href="{{ News.news_url }}">{{ News.title }}</a></td> <td><a href="{{ News.comments_url }}">{{ News.comments_number}}</td> <td>{{ News.put_time }}</td> </tr> {% endfor %} </tbody> {% endif %} </table> </div> </div> </div> {% endblock content %}
hashapp/static/css/hash.css
dedishchev/gethash
#input_box { margin-top: 15%; } #input_text_box { margin-top: 5%; } #hash_text_button { width: 150px !important; } .result_div { margin-top: 20px; display: inline-block; text-align: center; } #progress_text { position: absolute; display: block; width: 100%; color: black; }
docsets/ATG 2007.1.docset/Contents/Resources/Documents/atg/commerce/inventory/MissingInventoryItemException.html
Smolations/more-dash-docsets
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.4.2_05) on Fri Dec 23 12:54:45 EST 2005 --> <TITLE> MissingInventoryItemException (ATG Java API) </TITLE> <META NAME="keywords" CONTENT="atg.commerce.inventory.MissingInventoryItemException class"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { parent.document.title="MissingInventoryItemException (ATG Java API)"; } </SCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../atg/commerce/inventory/InventoryException.html" title="class in atg.commerce.inventory"><B>PREV CLASS</B></A>&nbsp; &nbsp;NEXT CLASS</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="MissingInventoryItemException.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#field_summary">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#methods_inherited_from_class_atg.core.exception.ContainerException">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;<A HREF="#field_detail">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;METHOD</FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> atg.commerce.inventory</FONT> <BR> Class MissingInventoryItemException</H2> <PRE> java.lang.Object <IMG SRC="../../../resources/inherit.gif" ALT="extended by">java.lang.Throwable <IMG SRC="../../../resources/inherit.gif" ALT="extended by">java.lang.Exception <IMG SRC="../../../resources/inherit.gif" ALT="extended by"><A HREF="../../../atg/core/exception/ContainerException.html" title="class in atg.core.exception">atg.core.exception.ContainerException</A> <IMG SRC="../../../resources/inherit.gif" ALT="extended by"><A HREF="../../../atg/commerce/CommerceException.html" title="class in atg.commerce">atg.commerce.CommerceException</A> <IMG SRC="../../../resources/inherit.gif" ALT="extended by"><A HREF="../../../atg/commerce/inventory/InventoryException.html" title="class in atg.commerce.inventory">atg.commerce.inventory.InventoryException</A> <IMG SRC="../../../resources/inherit.gif" ALT="extended by"><B>atg.commerce.inventory.MissingInventoryItemException</B> </PRE> <DL> <DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../atg/core/exception/ContainableException.html" title="interface in atg.core.exception">ContainableException</A>, java.io.Serializable</DD> </DL> <HR> <DL> <DT>public class <B>MissingInventoryItemException</B><DT>extends <A HREF="../../../atg/commerce/inventory/InventoryException.html" title="class in atg.commerce.inventory">InventoryException</A></DL> <P> This exception gets thrown if there is no inventory information for some given sku. <P> <P> <DL> <DT><B>See Also:</B><DD><A HREF="../../../serialized-form.html#atg.commerce.inventory.MissingInventoryItemException">Serialized Form</A></DL> <HR> <P> <!-- ======== NESTED CLASS SUMMARY ======== --> <!-- =========== FIELD SUMMARY =========== --> <A NAME="field_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=2><FONT SIZE="+2"> <B>Field Summary</B></FONT></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;java.lang.String</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../atg/commerce/inventory/MissingInventoryItemException.html#CLASS_VERSION">CLASS_VERSION</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <!-- ======== CONSTRUCTOR SUMMARY ======== --> <A NAME="constructor_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=2><FONT SIZE="+2"> <B>Constructor Summary</B></FONT></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../atg/commerce/inventory/MissingInventoryItemException.html#MissingInventoryItemException()">MissingInventoryItemException</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Constructs a new MissingInventoryItemException.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../atg/commerce/inventory/MissingInventoryItemException.html#MissingInventoryItemException(java.lang.String)">MissingInventoryItemException</A></B>(java.lang.String&nbsp;pStr)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Constructs a new MissingInventoryItemException with the given explanation.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../atg/commerce/inventory/MissingInventoryItemException.html#MissingInventoryItemException(java.lang.String, java.lang.Throwable)">MissingInventoryItemException</A></B>(java.lang.String&nbsp;pStr, java.lang.Throwable&nbsp;pSourceException)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Constructs a new MissingInventoryItemException with the given explanation.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../atg/commerce/inventory/MissingInventoryItemException.html#MissingInventoryItemException(java.lang.Throwable)">MissingInventoryItemException</A></B>(java.lang.Throwable&nbsp;pSourceException)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Constructs a new MissingInventoryItemException.</TD> </TR> </TABLE> &nbsp; <!-- ========== METHOD SUMMARY =========== --> <A NAME="methods_inherited_from_class_atg.core.exception.ContainerException"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TD><B>Methods inherited from class atg.core.exception.<A HREF="../../../atg/core/exception/ContainerException.html" title="class in atg.core.exception">ContainerException</A></B></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><A HREF="../../../atg/core/exception/ContainerException.html#getSourceException()">getSourceException</A>, <A HREF="../../../atg/core/exception/ContainerException.html#printStackTrace(boolean)">printStackTrace</A>, <A HREF="../../../atg/core/exception/ContainerException.html#printStackTrace(java.io.PrintStream, boolean)">printStackTrace</A>, <A HREF="../../../atg/core/exception/ContainerException.html#printStackTrace(java.io.PrintWriter)">printStackTrace</A>, <A HREF="../../../atg/core/exception/ContainerException.html#printStackTrace(java.io.PrintWriter, boolean)">printStackTrace</A>, <A HREF="../../../atg/core/exception/ContainerException.html#setSourceException(java.lang.Throwable)">setSourceException</A>, <A HREF="../../../atg/core/exception/ContainerException.html#toString()">toString</A>, <A HREF="../../../atg/core/exception/ContainerException.html#toString(boolean)">toString</A></CODE></TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Throwable"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TD><B>Methods inherited from class java.lang.Throwable</B></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, setStackTrace</CODE></TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TD><B>Methods inherited from class java.lang.Object</B></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</CODE></TD> </TR> </TABLE> &nbsp; <P> <!-- ============ FIELD DETAIL =========== --> <A NAME="field_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=1><FONT SIZE="+2"> <B>Field Detail</B></FONT></TD> </TR> </TABLE> <A NAME="CLASS_VERSION"><!-- --></A><H3> CLASS_VERSION</H3> <PRE> public static java.lang.String <B>CLASS_VERSION</B></PRE> <DL> <DL> </DL> </DL> <!-- ========= CONSTRUCTOR DETAIL ======== --> <A NAME="constructor_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=1><FONT SIZE="+2"> <B>Constructor Detail</B></FONT></TD> </TR> </TABLE> <A NAME="MissingInventoryItemException()"><!-- --></A><H3> MissingInventoryItemException</H3> <PRE> public <B>MissingInventoryItemException</B>()</PRE> <DL> <DD>Constructs a new MissingInventoryItemException. <P> </DL> <HR> <A NAME="MissingInventoryItemException(java.lang.String)"><!-- --></A><H3> MissingInventoryItemException</H3> <PRE> public <B>MissingInventoryItemException</B>(java.lang.String&nbsp;pStr)</PRE> <DL> <DD>Constructs a new MissingInventoryItemException with the given explanation. <P> </DL> <HR> <A NAME="MissingInventoryItemException(java.lang.Throwable)"><!-- --></A><H3> MissingInventoryItemException</H3> <PRE> public <B>MissingInventoryItemException</B>(java.lang.Throwable&nbsp;pSourceException)</PRE> <DL> <DD>Constructs a new MissingInventoryItemException. <P> <DT><B>Parameters:</B><DD><CODE>pSourceException</CODE> - the initial exception which was the root cause of the problem</DL> <HR> <A NAME="MissingInventoryItemException(java.lang.String, java.lang.Throwable)"><!-- --></A><H3> MissingInventoryItemException</H3> <PRE> public <B>MissingInventoryItemException</B>(java.lang.String&nbsp;pStr, java.lang.Throwable&nbsp;pSourceException)</PRE> <DL> <DD>Constructs a new MissingInventoryItemException with the given explanation. <P> <DT><B>Parameters:</B><DD><CODE>pSourceException</CODE> - the initial exception which was the root cause of the problem</DL> <!-- ============ METHOD DETAIL ========== --> <!-- ========= END OF CLASS DATA ========= --> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../atg/commerce/inventory/InventoryException.html" title="class in atg.commerce.inventory"><B>PREV CLASS</B></A>&nbsp; &nbsp;NEXT CLASS</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="MissingInventoryItemException.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#field_summary">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#methods_inherited_from_class_atg.core.exception.ContainerException">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;<A HREF="#field_detail">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;METHOD</FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
html/234567156783.html
GoC-Spending/data-corporations
<!DOCTYPE html> <!--[if lt IE 9]><html class="no-js lt-ie9" lang="en" dir="ltr"><![endif]--> <!--[if gt IE 8]><!--> <html class="no-js" lang="en" dir="ltr"> <!--<![endif]--> <!-- Usage: /eic/site/ccc-rec.nsf/tpl-eng/template-1col.html?Open&id=3 (optional: ?Open&page=filename.html&id=x) --> <!-- Created: ; Product Code: 536; Server: stratnotes2.ic.gc.ca --> <head> <!-- Title begins / Début du titre --> <title> WAPOSE Emergency Services Inc - Complete profile - Canadian Company Capabilities - Industries and Business - Industry Canada </title> <!-- Title ends / Fin du titre --> <!-- Meta-data begins / Début des métadonnées --> <meta charset="utf-8" /> <meta name="dcterms.language" title="ISO639-2" content="eng" /> <meta name="dcterms.title" content="" /> <meta name="description" content="" /> <meta name="dcterms.description" content="" /> <meta name="dcterms.type" content="report, data set" /> <meta name="dcterms.subject" content="businesses, industry" /> <meta name="dcterms.subject" content="businesses, industry" /> <meta name="dcterms.issued" title="W3CDTF" content="" /> <meta name="dcterms.modified" title="W3CDTF" content="" /> <meta name="keywords" content="" /> <meta name="dcterms.creator" content="" /> <meta name="author" content="" /> <meta name="dcterms.created" title="W3CDTF" content="" /> <meta name="dcterms.publisher" content="" /> <meta name="dcterms.audience" title="icaudience" content="" /> <meta name="dcterms.spatial" title="ISO3166-1" content="" /> <meta name="dcterms.spatial" title="gcgeonames" content="" /> <meta name="dcterms.format" content="HTML" /> <meta name="dcterms.identifier" title="ICsiteProduct" content="536" /> <!-- EPI-11240 --> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- MCG-202 --> <meta content="width=device-width,initial-scale=1" name="viewport"> <!-- EPI-11567 --> <meta name = "format-detection" content = "telephone=no"> <!-- EPI-12603 --> <meta name="robots" content="noarchive"> <!-- EPI-11190 - Webtrends --> <script> var startTime = new Date(); startTime = startTime.getTime(); </script> <!--[if gte IE 9 | !IE ]><!--> <link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="icon" type="image/x-icon"> <link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/wet-boew.min.css"> <!--<![endif]--> <link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/theme.min.css"> <!--[if lt IE 9]> <link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="shortcut icon" /> <link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/ie8-wet-boew.min.css" /> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew.min.js"></script> <![endif]--> <!--[if lte IE 9]> <![endif]--> <noscript><link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/noscript.min.css" /></noscript> <!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER --> <script>dataLayer1 = [];</script> <!-- End Google Tag Manager --> <!-- EPI-11235 --> <link rel="stylesheet" href="/eic/home.nsf/css/add_WET_4-0_Canada_Apps.css"> <link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"> <link href="/app/ccc/srch/css/print.css" media="print" rel="stylesheet" type="text/css" /> </head> <body class="home" vocab="http://schema.org/" typeof="WebPage"> <!-- EPIC HEADER BEGIN --> <!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER --> <noscript><iframe title="Google Tag Manager" src="//www.googletagmanager.com/ns.html?id=GTM-TLGQ9K" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer1'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer1','GTM-TLGQ9K');</script> <!-- End Google Tag Manager --> <!-- EPI-12801 --> <span typeof="Organization"><meta property="legalName" content="Department_of_Industry"></span> <ul id="wb-tphp"> <li class="wb-slc"> <a class="wb-sl" href="#wb-cont">Skip to main content</a> </li> <li class="wb-slc visible-sm visible-md visible-lg"> <a class="wb-sl" href="#wb-info">Skip to "About this site"</a> </li> </ul> <header role="banner"> <div id="wb-bnr" class="container"> <section id="wb-lng" class="visible-md visible-lg text-right"> <h2 class="wb-inv">Language selection</h2> <div class="row"> <div class="col-md-12"> <ul class="list-inline mrgn-bttm-0"> <li><a href="nvgt.do?V_TOKEN=1492329731335&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=50005&V_SEARCH.docsStart=50004&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn/rgstr.sec?_flId?_flxKy=e1s1&amp;estblmntNo=234567041301&amp;profileId=61&amp;_evId=bck&amp;lang=eng&amp;V_SEARCH.showStricts=false&amp;prtl=1&amp;_flId?_flId?_flxKy=e1s1" title="Français" lang="fr">Français</a></li> </ul> </div> </div> </section> <div class="row"> <div class="brand col-xs-8 col-sm-9 col-md-6"> <a href="http://www.canada.ca/en/index.html"><object type="image/svg+xml" tabindex="-1" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/sig-blk-en.svg"></object><span class="wb-inv"> Government of Canada</span></a> </div> <section class="wb-mb-links col-xs-4 col-sm-3 visible-sm visible-xs" id="wb-glb-mn"> <h2>Search and menus</h2> <ul class="list-inline text-right chvrn"> <li><a href="#mb-pnl" title="Search and menus" aria-controls="mb-pnl" class="overlay-lnk" role="button"><span class="glyphicon glyphicon-search"><span class="glyphicon glyphicon-th-list"><span class="wb-inv">Search and menus</span></span></span></a></li> </ul> <div id="mb-pnl"></div> </section> <!-- Site Search Removed --> </div> </div> <nav role="navigation" id="wb-sm" class="wb-menu visible-md visible-lg" data-trgt="mb-pnl" data-ajax-fetch="//cdn.canada.ca/gcweb-cdn-dev/sitemenu/sitemenu-en.html" typeof="SiteNavigationElement"> <h2 class="wb-inv">Topics menu</h2> <div class="container nvbar"> <div class="row"> <ul class="list-inline menu"> <li><a href="https://www.canada.ca/en/services/jobs.html">Jobs</a></li> <li><a href="http://www.cic.gc.ca/english/index.asp">Immigration</a></li> <li><a href="https://travel.gc.ca/">Travel</a></li> <li><a href="https://www.canada.ca/en/services/business.html">Business</a></li> <li><a href="https://www.canada.ca/en/services/benefits.html">Benefits</a></li> <li><a href="http://healthycanadians.gc.ca/index-eng.php">Health</a></li> <li><a href="https://www.canada.ca/en/services/taxes.html">Taxes</a></li> <li><a href="https://www.canada.ca/en/services.html">More services</a></li> </ul> </div> </div> </nav> <!-- EPIC BODY BEGIN --> <nav role="navigation" id="wb-bc" class="" property="breadcrumb"> <h2 class="wb-inv">You are here:</h2> <div class="container"> <div class="row"> <ol class="breadcrumb"> <li><a href="/eic/site/icgc.nsf/eng/home" title="Home">Home</a></li> <li><a href="/eic/site/icgc.nsf/eng/h_07063.html" title="Industries and Business">Industries and Business</a></li> <li><a href="/eic/site/ccc-rec.nsf/tpl-eng/../eng/home" >Canadian Company Capabilities</a></li> </ol> </div> </div> </nav> </header> <main id="wb-cont" role="main" property="mainContentOfPage" class="container"> <!-- End Header --> <!-- Begin Body --> <!-- Begin Body Title --> <!-- End Body Title --> <!-- Begin Body Head --> <!-- End Body Head --> <!-- Begin Body Content --> <br> <!-- Complete Profile --> <!-- Company Information above tabbed area--> <input id="showMore" type="hidden" value='more'/> <input id="showLess" type="hidden" value='less'/> <h1 id="wb-cont"> Company profile - Canadian Company Capabilities </h1> <div class="profileInfo hidden-print"> <ul class="list-inline"> <li><a href="cccSrch.do?lang=eng&profileId=&prtl=1&key.hitsPerPage=25&searchPage=%252Fapp%252Fccc%252Fsrch%252FcccBscSrch.do%253Flang%253Deng%2526amp%253Bprtl%253D1%2526amp%253Btagid%253D&V_SEARCH.scopeCategory=CCC.Root&V_SEARCH.depth=1&V_SEARCH.showStricts=false&V_SEARCH.sortSpec=title+asc&amp;rstBtn.x=" class="btn btn-link">New Search</a>&nbsp;|</li> <li><form name="searchForm" method="post" action="/app/ccc/srch/bscSrch.do"> <input type="hidden" name="lang" value="eng" /> <input type="hidden" name="profileId" value="" /> <input type="hidden" name="prtl" value="1" /> <input type="hidden" name="searchPage" value="%2Fapp%2Fccc%2Fsrch%2FcccBscSrch.do%3Flang%3Deng%26amp%3Bprtl%3D1%26amp%3Btagid%3D" /> <input type="hidden" name="V_SEARCH.scopeCategory" value="CCC.Root" /> <input type="hidden" name="V_SEARCH.depth" value="1" /> <input type="hidden" name="V_SEARCH.showStricts" value="false" /> <input id="repeatSearchBtn" class="btn btn-link" type="submit" value="Return to search results" /> </form></li> <li>|&nbsp;<a href="nvgt.do?V_SEARCH.docsStart=50003&amp;V_DOCUMENT.docRank=50004&amp;V_SEARCH.docsCount=3&amp;lang=eng&amp;prtl=1&amp;sbPrtl=&amp;profile=cmpltPrfl&amp;V_TOKEN=1492329740209&amp;V_SEARCH.command=navigate&amp;V_SEARCH.resultsJSP=%2fprfl.do&amp;estblmntNo=234567004451&amp;profileId=&amp;key.newSearchLabel=">Previous Company</a></li> <li>|&nbsp;<a href="nvgt.do?V_SEARCH.docsStart=50005&amp;V_DOCUMENT.docRank=50006&amp;V_SEARCH.docsCount=3&amp;lang=eng&amp;prtl=1&amp;sbPrtl=&amp;profile=cmpltPrfl&amp;V_TOKEN=1492329740209&amp;V_SEARCH.command=navigate&amp;V_SEARCH.resultsJSP=%2fprfl.do&amp;estblmntNo=234567123157&amp;profileId=&amp;key.newSearchLabel=">Next Company</a></li> </ul> </div> <details> <summary>Third-Party Information Liability Disclaimer</summary> <p>Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.</p> </details> <h2> WAPOSE Emergency Services Inc </h2> <div class="row"> <div class="col-md-5"> <h2 class="h5 mrgn-bttm-0">Legal/Operating Name:</h2> <p>WAPOSE Emergency Services Inc</p> <div class="mrgn-tp-md"></div> <p class="mrgn-bttm-0" ><a href="http://www.wapose.ca" target="_blank" title="Website URL">http://www.wapose.ca</a></p> <p><a href="mailto:[email protected]" title="[email protected]">[email protected]</a></p> </div> <div class="col-md-4 mrgn-sm-sm"> <h2 class="h5 mrgn-bttm-0">Mailing Address:</h2> <address class="mrgn-bttm-md"> PO Box 5414 Stn Main<br/> FORT MCMURRAY, Alberta<br/> T9H 3G4 <br/> </address> <h2 class="h5 mrgn-bttm-0">Location Address:</h2> <address class="mrgn-bttm-md"> 431 Mackenzie Blvd <br/> FORT MCMURRAY, Alberta<br/> T9H 4C5 <br/> </address> <p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>: (780) 714-6654 </p> <p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>: (866) 715-4456</p> <p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>: (708) 715-1139</p> </div> <div class="col-md-3 mrgn-tp-md"> </div> </div> <div class="row mrgn-tp-md mrgn-bttm-md"> <div class="col-md-12"> <h2 class="wb-inv">Company Profile</h2> <br> Emergency Medical Services - Fire Rescue Services - Occupational Health Services - All levels of medical care and the quickest mobilization times. Complete management of all fire rescue site requirements. Full service occupational health testing in the Fort McMurray area. <br> </div> </div> <!-- <div class="wb-tabs ignore-session update-hash wb-eqht-off print-active"> --> <div class="wb-tabs ignore-session"> <div class="tabpanels"> <details id="details-panel1"> <summary> Full profile </summary> <!-- Tab 1 --> <h2 class="wb-invisible"> Full profile </h2> <!-- Contact Information --> <h3 class="page-header"> Contact information </h3> <section class="container-fluid"> <div class="row mrgn-tp-lg"> <div class="col-md-3"> <strong> Drew Parker </strong></div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Title: </strong> </div> <div class="col-md-7"> <!--if client gender is not null or empty we use gender based job title--> Manager </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Area of Responsibility: </strong> </div> <div class="col-md-7"> Administrative Services. </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Telephone: </strong> </div> <div class="col-md-7"> (403) 570-8501 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Facsimile: </strong> </div> <div class="col-md-7"> (403) 715-1139 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Email: </strong> </div> <div class="col-md-7"> [email protected] </div> </div> </section> <p class="mrgn-tp-lg text-right small hidden-print"> <a href="#wb-cont">top of page</a> </p> <!-- Company Description --> <h3 class="page-header"> Company description </h3> <section class="container-fluid"> <div class="row"> <div class="col-md-5"> <strong> Country of Ownership: </strong> </div> <div class="col-md-7"> Canada &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Year Established: </strong> </div> <div class="col-md-7"> 2004 </div> </div> <div class="row"> <div class="col-md-5"> <strong> Exporting: </strong> </div> <div class="col-md-7"> No &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Industry (NAICS): </strong> </div> <div class="col-md-7"> 621911 - Ambulance (except Air Ambulance) Services </div> </div> <div class="row"> <div class="col-md-5"> <strong> Alternate Industries (NAICS): </strong> </div> <div class="col-md-7"> 621990 - All Other Ambulatory Health Care Services<br> 624230 - Emergency and Other Relief Services<br> </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Business Activity: </strong> </div> <div class="col-md-7"> Services &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Total Sales ($CDN): </strong> </div> <div class="col-md-7"> $5,000,000 to $9,999,999&nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Number of Employees: </strong> </div> <div class="col-md-7"> 50&nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Aboriginal Firm: </strong> </div> <div class="col-md-7"> Registered Aboriginal Business under the Procurement Strategy for Aboriginal Business (PSAB)<br/> </div> </div> </section> <!-- Products / Services / Licensing --> <h3 class="page-header"> Product / Service / Licensing </h3> <section class="container-fluid"> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Service Name: </strong> </div> <div class="col-md-9"> medical safety training fire services <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-12"> Emergency Medical Services - Fire Rescue Services - Occupational Health Services - All levels of medical care and the quickest mobilization times. Complete management of all fire rescue site requirements. Full service occupational health testing in the Fort McMurray area. <br> <br> </div> </div> </section> <p class="mrgn-tp-lg text-right small hidden-print"> <a href="#wb-cont">top of page</a> </p> <!-- Technology Profile --> <h3 class="page-header"> Technology profile </h3> <section class="container-fluid"> Medical personnel and Medical mobile treatment centers health clinics drug testing </section> <!-- Market Profile --> <h3 class="page-header"> Market profile </h3> <section class="container-fluid"> <h4> Alliances: </h4> <ul> <li> Financial</li> <li>Sales/Marketing</li> </ul> <h4> Industry sector market interests: </h4> <ul> <li>Mining/Petroleum/Gas</li> </ul> </section> <p class="mrgn-tp-lg text-right small hidden-print"> <a href="#wb-cont">top of page</a> </p> <!-- Sector Information --> <h3 class="page-header"> Sector information </h3> <section class="container-fluid"> <h4> Distribution of employees: </h4> 10% admin 90% field </section> <details class="mrgn-tp-md mrgn-bttm-md"> <summary> Third-Party Information Liability Disclaimer </summary> <p> Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements. </p> </details> </details> <details id="details-panel2"> <summary> Contacts </summary> <h2 class="wb-invisible"> Contact information </h2> <!-- Contact Information --> <section class="container-fluid"> <div class="row mrgn-tp-lg"> <div class="col-md-3"> <strong> Drew Parker </strong></div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Title: </strong> </div> <div class="col-md-7"> <!--if client gender is not null or empty we use gender based job title--> Manager </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Area of Responsibility: </strong> </div> <div class="col-md-7"> Administrative Services. </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Telephone: </strong> </div> <div class="col-md-7"> (403) 570-8501 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Facsimile: </strong> </div> <div class="col-md-7"> (403) 715-1139 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Email: </strong> </div> <div class="col-md-7"> [email protected] </div> </div> </section> </details> <details id="details-panel3"> <summary> Description </summary> <h2 class="wb-invisible"> Company description </h2> <section class="container-fluid"> <div class="row"> <div class="col-md-5"> <strong> Country of Ownership: </strong> </div> <div class="col-md-7"> Canada &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Year Established: </strong> </div> <div class="col-md-7"> 2004 </div> </div> <div class="row"> <div class="col-md-5"> <strong> Exporting: </strong> </div> <div class="col-md-7"> No &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Industry (NAICS): </strong> </div> <div class="col-md-7"> 621911 - Ambulance (except Air Ambulance) Services </div> </div> <div class="row"> <div class="col-md-5"> <strong> Alternate Industries (NAICS): </strong> </div> <div class="col-md-7"> 621990 - All Other Ambulatory Health Care Services<br> 624230 - Emergency and Other Relief Services<br> </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Business Activity: </strong> </div> <div class="col-md-7"> Services &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Total Sales ($CDN): </strong> </div> <div class="col-md-7"> $5,000,000 to $9,999,999&nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Number of Employees: </strong> </div> <div class="col-md-7"> 50&nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Aboriginal Firm: </strong> </div> <div class="col-md-7"> Registered Aboriginal Business under the Procurement Strategy for Aboriginal Business (PSAB)<br/> </div> </div> </section> </details> <details id="details-panel4"> <summary> Products, services and licensing </summary> <h2 class="wb-invisible"> Product / Service / Licensing </h2> <section class="container-fluid"> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Service Name: </strong> </div> <div class="col-md-9"> medical safety training fire services <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-12"> Emergency Medical Services - Fire Rescue Services - Occupational Health Services - All levels of medical care and the quickest mobilization times. Complete management of all fire rescue site requirements. Full service occupational health testing in the Fort McMurray area. <br> <br> </div> </div> </section> </details> <details id="details-panel5"> <summary> Technology </summary> <h2 class="wb-invisible"> Technology profile </h2> <section class="container-fluid"> Medical personnel and Medical mobile treatment centers health clinics drug testing </section> </details> <details id="details-panel6"> <summary> Market </summary> <h2 class="wb-invisible"> Market profile </h2> <section class="container-fluid"> <h4> Alliances: </h4> <ul> <li> Financial</li> <li>Sales/Marketing</li> </ul> <h4> Industry sector market interests: </h4> <ul> <li>Mining/Petroleum/Gas</li> </ul> </section> </details> <details id="details-panel7"> <summary> Sector </summary> <h2 class="wb-invisible"> Sector information </h2> <section class="container-fluid"> <h4> Distribution of employees: </h4> 10% admin 90% field </section> </details> </div> </div> <div class="row"> <div class="col-md-12 text-right"> Last Update Date 2015-07-14 </div> </div> <!-- - Artifact ID: CBW - IMBS - CCC Search WAR - Group ID: ca.gc.ic.strategis.imbs.ccc.search - Version: 3.26 - Built-By: bamboo - Build Timestamp: 2017-03-02T21:29:28Z --> <!-- End Body Content --> <!-- Begin Body Foot --> <!-- End Body Foot --> <!-- END MAIN TABLE --> <!-- End body --> <!-- Begin footer --> <div class="row pagedetails"> <div class="col-sm-5 col-xs-12 datemod"> <dl id="wb-dtmd"> <dt class=" hidden-print">Date Modified:</dt> <dd class=" hidden-print"> <span><time>2017-03-02</time></span> </dd> </dl> </div> <div class="clear visible-xs"></div> <div class="col-sm-4 col-xs-6"> </div> <div class="col-sm-3 col-xs-6 text-right"> </div> <div class="clear visible-xs"></div> </div> </main> <footer role="contentinfo" id="wb-info"> <nav role="navigation" class="container wb-navcurr"> <h2 class="wb-inv">About government</h2> <!-- EPIC FOOTER BEGIN --> <!-- EPI-11638 Contact us --> <ul class="list-unstyled colcount-sm-2 colcount-md-3"> <li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07026.html#pageid=E048-H00000&amp;from=Industries">Contact us</a></li> <li><a href="https://www.canada.ca/en/government/dept.html">Departments and agencies</a></li> <li><a href="https://www.canada.ca/en/government/publicservice.html">Public service and military</a></li> <li><a href="https://www.canada.ca/en/news.html">News</a></li> <li><a href="https://www.canada.ca/en/government/system/laws.html">Treaties, laws and regulations</a></li> <li><a href="https://www.canada.ca/en/transparency/reporting.html">Government-wide reporting</a></li> <li><a href="http://pm.gc.ca/eng">Prime Minister</a></li> <li><a href="https://www.canada.ca/en/government/system.html">How government works</a></li> <li><a href="http://open.canada.ca/en/">Open government</a></li> </ul> </nav> <div class="brand"> <div class="container"> <div class="row"> <nav class="col-md-10 ftr-urlt-lnk"> <h2 class="wb-inv">About this site</h2> <ul> <li><a href="https://www.canada.ca/en/social.html">Social media</a></li> <li><a href="https://www.canada.ca/en/mobile.html">Mobile applications</a></li> <li><a href="http://www1.canada.ca/en/newsite.html">About Canada.ca</a></li> <li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html">Terms and conditions</a></li> <li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html#p1">Privacy</a></li> </ul> </nav> <div class="col-xs-6 visible-sm visible-xs tofpg"> <a href="#wb-cont">Top of Page <span class="glyphicon glyphicon-chevron-up"></span></a> </div> <div class="col-xs-6 col-md-2 text-right"> <object type="image/svg+xml" tabindex="-1" role="img" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/wmms-blk.svg" aria-label="Symbol of the Government of Canada"></object> </div> </div> </div> </div> </footer> <!--[if gte IE 9 | !IE ]><!--> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/wet-boew.min.js"></script> <!--<![endif]--> <!--[if lt IE 9]> <script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew2.min.js"></script> <![endif]--> <script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/theme.min.js"></script> <!-- EPI-10519 --> <span class="wb-sessto" data-wb-sessto='{"inactivity": 1800000, "reactionTime": 180000, "sessionalive": 1800000, "logouturl": "/app/ccc/srch/cccSrch.do?lang=eng&prtl=1"}'></span> <script src="/eic/home.nsf/js/jQuery.externalOpensInNewWindow.js"></script> <!-- EPI-11190 - Webtrends --> <script src="/eic/home.nsf/js/webtrends.js"></script> <script>var endTime = new Date();</script> <noscript> <div><img alt="" id="DCSIMG" width="1" height="1" src="//wt-sdc.ic.gc.ca/dcs6v67hwe0ei7wsv8g9fv50d_3k6i/njs.gif?dcsuri=/nojavascript&amp;WT.js=No&amp;WT.tv=9.4.0&amp;dcssip=www.ic.gc.ca"/></div> </noscript> <!-- /Webtrends --> <!-- JS deps --> <script src="/eic/home.nsf/js/jquery.imagesloaded.js"></script> <!-- EPI-11262 - Util JS --> <script src="/eic/home.nsf/js/_WET_4-0_utils_canada.min.js"></script> <!-- EPI-11383 --> <script src="/eic/home.nsf/js/jQuery.icValidationErrors.js"></script> <span style="display:none;" id='app-info' data-project-groupid='' data-project-artifactid='' data-project-version='' data-project-build-timestamp='' data-issue-tracking='' data-scm-sha1='' data-scm-sha1-abbrev='' data-scm-branch='' data-scm-commit-date=''></span> </body></html> <!-- End Footer --> <!-- - Artifact ID: CBW - IMBS - CCC Search WAR - Group ID: ca.gc.ic.strategis.imbs.ccc.search - Version: 3.26 - Built-By: bamboo - Build Timestamp: 2017-03-02T21:29:28Z -->
doc/api/files/usr/lib/ruby/gems/1_8/gems/actionpack-3_0_0_beta4/lib/action_controller/metal/responder_rb.html
ecoulthard/summitsearch
<?xml version="1.0" encoding="iso-8859-1"?> <!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" xml:lang="en" lang="en"> <head> <title>File: responder.rb</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <meta http-equiv="Content-Script-Type" content="text/javascript" /> <link rel="stylesheet" href="../../../../../../../../../../.././rdoc-style.css" type="text/css" media="screen" /> <script type="text/javascript"> // <![CDATA[ function popupCode( url ) { window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400") } 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 codeblocks hidden by default document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" ) // ]]> </script> </head> <body> <div id="fileHeader"> <h1>responder.rb</h1> <table class="header-table"> <tr class="top-aligned-row"> <td><strong>Path:</strong></td> <td>/usr/lib/ruby/gems/1.8/gems/actionpack-3.0.0.beta4/lib/action_controller/metal/responder.rb </td> </tr> <tr class="top-aligned-row"> <td><strong>Last Update:</strong></td> <td>Sun Jun 20 17:19:14 -0600 2010</td> </tr> </table> </div> <!-- banner header --> <div id="bodyContent"> <div id="contextContent"> <div id="requires-list"> <h3 class="section-bar">Required files</h3> <div class="name-list"> active_support/json&nbsp;&nbsp; </div> </div> </div> </div> <!-- if includes --> <div id="section"> <!-- if method_list --> </div> <div id="validator-badges"> <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p> </div> </body> </html>
lucene/lib/lucene-4.6.1/docs/analyzers-common/org/apache/lucene/analysis/payloads/class-use/DelimitedPayloadTokenFilterFactory.html
OrlandoLee/ForYou
<!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.6.0_27) on Thu Jan 23 20:12:12 EST 2014 --> <meta http-equiv="Content-Type" content="text/html" charset="utf-8"> <title>Uses of Class org.apache.lucene.analysis.payloads.DelimitedPayloadTokenFilterFactory (Lucene 4.6.1 API)</title> <meta name="date" content="2014-01-23"> <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.apache.lucene.analysis.payloads.DelimitedPayloadTokenFilterFactory (Lucene 4.6.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/apache/lucene/analysis/payloads/DelimitedPayloadTokenFilterFactory.html" title="class in org.apache.lucene.analysis.payloads">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="../../../../../../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/apache/lucene/analysis/payloads//class-useDelimitedPayloadTokenFilterFactory.html" target="_top">FRAMES</a></li> <li><a href="DelimitedPayloadTokenFilterFactory.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.apache.lucene.analysis.payloads.DelimitedPayloadTokenFilterFactory" class="title">Uses of Class<br>org.apache.lucene.analysis.payloads.DelimitedPayloadTokenFilterFactory</h2> </div> <div class="classUseContainer">No usage of org.apache.lucene.analysis.payloads.DelimitedPayloadTokenFilterFactory</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/apache/lucene/analysis/payloads/DelimitedPayloadTokenFilterFactory.html" title="class in org.apache.lucene.analysis.payloads">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="../../../../../../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/apache/lucene/analysis/payloads//class-useDelimitedPayloadTokenFilterFactory.html" target="_top">FRAMES</a></li> <li><a href="DelimitedPayloadTokenFilterFactory.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> <i>Copyright &copy; 2000-2014 Apache Software Foundation. All Rights Reserved.</i> <script src='../../../../../../prettify.js' type='text/javascript'></script> <script type='text/javascript'> (function(){ var oldonload = window.onload; if (typeof oldonload != 'function') { window.onload = prettyPrint; } else { window.onload = function() { oldonload(); prettyPrint(); } } })(); </script> </small></p> </body> </html>
class_cubby_flow_1_1_triangle3_1_1_builder-members.html
utilForever/CubbyFlow
<!-- 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="X-UA-Compatible" content="IE=edge"> <!-- For Mobile Devices --> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.13"/> <script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script> <title>CubbyFlow: Member List</title> <!--<link href="tabs.css" rel="stylesheet" type="text/css"/>--> <script type="text/javascript" src="dynsections.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="customdoxygen.css" rel="stylesheet" type="text/css"/> <link href='https://fonts.googleapis.com/css?family=Roboto+Slab' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> <link href="jquery.smartmenus.bootstrap.css" rel="stylesheet"> <script type="text/javascript" src="jquery.smartmenus.js"></script> <!-- SmartMenus jQuery Bootstrap Addon --> <script type="text/javascript" src="jquery.smartmenus.bootstrap.js"></script> <!-- SmartMenus jQuery plugin --> </head> <body> <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div class="navbar-header"> <a class="navbar-brand">CubbyFlow v0.71</a> </div> </div> </nav> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div class="content" id="content"> <div class="container"> <div class="row"> <div class="col-sm-12 panel " style="padding-bottom: 15px;"> <div style="margin-bottom: 15px;"> <!-- 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> <!-- 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 id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="namespace_cubby_flow.html">CubbyFlow</a></li><li class="navelem"><a class="el" href="class_cubby_flow_1_1_triangle3.html">Triangle3</a></li><li class="navelem"><a class="el" href="class_cubby_flow_1_1_triangle3_1_1_builder.html">Builder</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">CubbyFlow::Triangle3::Builder Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="class_cubby_flow_1_1_triangle3_1_1_builder.html">CubbyFlow::Triangle3::Builder</a>, including all inherited members.</p> <table class="directory"> <tr class="even"><td class="entry"><a class="el" href="class_cubby_flow_1_1_triangle3_1_1_builder.html#a7007e9f80ea90201b88bb961f8102695">Build</a>() const</td><td class="entry"><a class="el" href="class_cubby_flow_1_1_triangle3_1_1_builder.html">CubbyFlow::Triangle3::Builder</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="class_cubby_flow_1_1_surface_builder_base.html#ab4c1d0b1e377e42c9e7485e9454989b9">m_isNormalFlipped</a></td><td class="entry"><a class="el" href="class_cubby_flow_1_1_surface_builder_base.html">CubbyFlow::SurfaceBuilderBase&lt; N, DerivedBuilder &gt;</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_cubby_flow_1_1_surface_builder_base.html#a1aa7248607e2ac86a4d5ae2169c64f83">m_transform</a></td><td class="entry"><a class="el" href="class_cubby_flow_1_1_surface_builder_base.html">CubbyFlow::SurfaceBuilderBase&lt; N, DerivedBuilder &gt;</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr><td class="entry"><a class="el" href="class_cubby_flow_1_1_triangle3_1_1_builder.html#ad1152c52dd15b7c6767978435c1bcc7e">MakeShared</a>() const</td><td class="entry"><a class="el" href="class_cubby_flow_1_1_triangle3_1_1_builder.html">CubbyFlow::Triangle3::Builder</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_cubby_flow_1_1_surface_builder_base.html#a6c4868aec95bd7dc5381250f2f95e7d9">WithIsNormalFlipped</a>(bool isNormalFlipped)</td><td class="entry"><a class="el" href="class_cubby_flow_1_1_surface_builder_base.html">CubbyFlow::SurfaceBuilderBase&lt; N, DerivedBuilder &gt;</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="class_cubby_flow_1_1_triangle3_1_1_builder.html#a647a5956c27cbeccfa60de8b0fdfb126">WithNormals</a>(const std::array&lt; Vector3D, 3 &gt; &amp;_normals)</td><td class="entry"><a class="el" href="class_cubby_flow_1_1_triangle3_1_1_builder.html">CubbyFlow::Triangle3::Builder</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_cubby_flow_1_1_surface_builder_base.html#a113d7cfbdec045d24fa2d5d2814bd099">WithOrientation</a>(const Orientation&lt; N &gt; &amp;orientation)</td><td class="entry"><a class="el" href="class_cubby_flow_1_1_surface_builder_base.html">CubbyFlow::SurfaceBuilderBase&lt; N, DerivedBuilder &gt;</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="class_cubby_flow_1_1_triangle3_1_1_builder.html#a5c123bdc5ac35463de2df6bf961342ad">WithPoints</a>(const std::array&lt; Vector3D, 3 &gt; &amp;_points)</td><td class="entry"><a class="el" href="class_cubby_flow_1_1_triangle3_1_1_builder.html">CubbyFlow::Triangle3::Builder</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_cubby_flow_1_1_surface_builder_base.html#a256db32f06bf1544d4dbe4e4104d35d6">WithTransform</a>(const Transform&lt; N &gt; &amp;transform)</td><td class="entry"><a class="el" href="class_cubby_flow_1_1_surface_builder_base.html">CubbyFlow::SurfaceBuilderBase&lt; N, DerivedBuilder &gt;</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="class_cubby_flow_1_1_surface_builder_base.html#a6e71c723246987897256ffbe4e1abc3b">WithTranslation</a>(const Vector&lt; double, N &gt; &amp;translation)</td><td class="entry"><a class="el" href="class_cubby_flow_1_1_surface_builder_base.html">CubbyFlow::SurfaceBuilderBase&lt; N, DerivedBuilder &gt;</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_cubby_flow_1_1_triangle3_1_1_builder.html#ab5da8ccb1325ec0476abf79dc92ad425">WithUVs</a>(const std::array&lt; Vector2D, 3 &gt; &amp;_uvs)</td><td class="entry"><a class="el" href="class_cubby_flow_1_1_triangle3_1_1_builder.html">CubbyFlow::Triangle3::Builder</a></td><td class="entry"></td></tr> </table></div><!-- contents --> <!-- HTML footer for doxygen 1.8.8--> <!-- start footer part --> </div> </div> </div> </div> </div> <hr class="footer"/><address class="footer"><small> Generated on Thu Jul 15 2021 02:18:16 for CubbyFlow by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.13 </small></address> </body> <script type="text/javascript" src="doxy-boot.js"></script> </html>
_includes/main_nav.html
WebDevBootcamp/WebDevBootcamp.github.io
<div id="services" class="services {% if include.extended %}extended{% endif %}"> <div class="container"> <div class="row"> <div class="col-md-2 col-md-offset-2 col-xs-5 col-xs-offset-1 text-center"> <div class="service-item"> <a href="{{ site.url }}/students"><i class="service-icon fa fa-users"></i></a> <h4>The Students</h4> {% if include.extended %} <p>Graduates and future developers</p> {% endif %} </div> </div> <div class="col-md-2 col-xs-5 text-center"> <div class="service-item"> <a href="{{ site.url }}/resources"><i class="service-icon fa fa-cutlery"></i></a> <h4>Web Resources</h4> {% if include.extended %} <p>Free tutorials and tools </p> {% endif %} </div> </div> <div class="col-md-2 col-md-offset-0 col-xs-5 col-xs-offset-1 text-center"> <div class="service-item"> <a href="{{ site.url }}/course"><i class="service-icon fa fa-list"></i></a> <h4>Course Curriculum</h4> {% if include.extended %} <p>What the course covers</p> {% endif %} </div> </div> <div class="col-md-2 col-xs-5 text-center"> <div class="service-item"> <a href="{{ site.url }}/"><i class="service-icon fa fa-rocket"></i></a> <h4>Latest</h4> {% if include.extended %} <p>News and blog posts</p> {% endif %} </div> </div> <!-- <div class="col-md-2 text-center"> <div class="service-item"> <i class="service-icon fa fa-shield"></i> <h4>The Instructors</h4> <p>Planning a time travel trip to the middle ages? Preserve the space time continuum by blending in with period accurate armor and weapons.</p> </div> </div> --> </div> </div> </div>
html/pdf/W28591.pdf.html
datamade/elpc_bakken
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> <HTML> <HEAD> <TITLE>Form1H.xls</TITLE> <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <META name="generator" content="pdftohtml 0.40"> <META name="author" content="theilman"> <META name="date" content="2015-04-14T08:53:22+00:00"> </HEAD> <FRAMESET cols="100,*"> <FRAME name="links" src="W28591.pdf_ind.html"> <FRAME name="contents" src="W28591.pdfs.html"> </FRAMESET> </HTML>
javadoc/3.2/org/robolectric/res/XmlLoader.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 (1.8.0_102-google-v7) on Wed Jan 11 15:17:54 PST 2017 --> <title>XmlLoader</title> <meta name="date" content="2017-01-11"> <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="XmlLoader"; } } catch(err) { } //--> var methods = {"i0":10,"i1":10,"i2":6}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract 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="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><a href="../../../org/robolectric/res/XmlBlockLoader.html" title="class in org.robolectric.res"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../org/robolectric/res/XmlLoader.XmlContext.html" title="class in org.robolectric.res"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?org/robolectric/res/XmlLoader.html" target="_top">Frames</a></li> <li><a href="XmlLoader.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><a href="#nested.class.summary">Nested</a>&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.robolectric.res</div> <h2 title="Class XmlLoader" class="title">Class XmlLoader</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>org.robolectric.res.XmlLoader</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>Direct Known Subclasses:</dt> <dd><a href="../../../org/robolectric/res/OpaqueFileLoader.html" title="class in org.robolectric.res">OpaqueFileLoader</a>, <a href="../../../org/robolectric/res/XmlBlockLoader.html" title="class in org.robolectric.res">XmlBlockLoader</a>, <a href="../../../org/robolectric/res/XpathResourceXmlLoader.html" title="class in org.robolectric.res">XpathResourceXmlLoader</a></dd> </dl> <hr> <br> <pre>public abstract class <span class="typeNameLabel">XmlLoader</span> extends java.lang.Object</pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== NESTED CLASS SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="nested.class.summary"> <!-- --> </a> <h3>Nested Class Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Nested Class Summary table, listing nested classes, and an explanation"> <caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>static class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/robolectric/res/XmlLoader.XmlContext.html" title="class in org.robolectric.res">XmlLoader.XmlContext</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="../../../org/robolectric/res/XmlLoader.html#XmlLoader--">XmlLoader</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="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract 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>org.w3c.dom.Document</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/robolectric/res/XmlLoader.html#parse-org.robolectric.res.FsFile-">parse</a></span>(<a href="../../../org/robolectric/res/FsFile.html" title="interface in org.robolectric.res">FsFile</a>&nbsp;xmlFile)</code>&nbsp;</td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/robolectric/res/XmlLoader.html#processResourceXml-org.robolectric.res.FsFile-com.ximpleware.VTDNav-java.lang.String-">processResourceXml</a></span>(<a href="../../../org/robolectric/res/FsFile.html" title="interface in org.robolectric.res">FsFile</a>&nbsp;xmlFile, com.ximpleware.VTDNav&nbsp;vtdNav, java.lang.String&nbsp;packageName)</code>&nbsp;</td> </tr> <tr id="i2" class="altColor"> <td class="colFirst"><code>protected abstract void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/robolectric/res/XmlLoader.html#processResourceXml-org.robolectric.res.FsFile-org.robolectric.res.XpathResourceXmlLoader.XmlNode-org.robolectric.res.XmlLoader.XmlContext-">processResourceXml</a></span>(<a href="../../../org/robolectric/res/FsFile.html" title="interface in org.robolectric.res">FsFile</a>&nbsp;xmlFile, <a href="../../../org/robolectric/res/XpathResourceXmlLoader.XmlNode.html" title="class in org.robolectric.res">XpathResourceXmlLoader.XmlNode</a>&nbsp;xmlNode, <a href="../../../org/robolectric/res/XmlLoader.XmlContext.html" title="class in org.robolectric.res">XmlLoader.XmlContext</a>&nbsp;xmlContext)</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.Object</h3> <code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</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="XmlLoader--"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>XmlLoader</h4> <pre>public&nbsp;XmlLoader()</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="parse-org.robolectric.res.FsFile-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>parse</h4> <pre>public&nbsp;org.w3c.dom.Document&nbsp;parse(<a href="../../../org/robolectric/res/FsFile.html" title="interface in org.robolectric.res">FsFile</a>&nbsp;xmlFile)</pre> </li> </ul> <a name="processResourceXml-org.robolectric.res.FsFile-com.ximpleware.VTDNav-java.lang.String-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>processResourceXml</h4> <pre>protected&nbsp;void&nbsp;processResourceXml(<a href="../../../org/robolectric/res/FsFile.html" title="interface in org.robolectric.res">FsFile</a>&nbsp;xmlFile, com.ximpleware.VTDNav&nbsp;vtdNav, java.lang.String&nbsp;packageName)</pre> </li> </ul> <a name="processResourceXml-org.robolectric.res.FsFile-org.robolectric.res.XpathResourceXmlLoader.XmlNode-org.robolectric.res.XmlLoader.XmlContext-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>processResourceXml</h4> <pre>protected abstract&nbsp;void&nbsp;processResourceXml(<a href="../../../org/robolectric/res/FsFile.html" title="interface in org.robolectric.res">FsFile</a>&nbsp;xmlFile, <a href="../../../org/robolectric/res/XpathResourceXmlLoader.XmlNode.html" title="class in org.robolectric.res">XpathResourceXmlLoader.XmlNode</a>&nbsp;xmlNode, <a href="../../../org/robolectric/res/XmlLoader.XmlContext.html" title="class in org.robolectric.res">XmlLoader.XmlContext</a>&nbsp;xmlContext)</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="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><a href="../../../org/robolectric/res/XmlBlockLoader.html" title="class in org.robolectric.res"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../org/robolectric/res/XmlLoader.XmlContext.html" title="class in org.robolectric.res"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?org/robolectric/res/XmlLoader.html" target="_top">Frames</a></li> <li><a href="XmlLoader.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><a href="#nested.class.summary">Nested</a>&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 ======= --> </body> </html>
external/libxml++-2.37.1/docs/reference/html/functions_0x68.html
alexandrustaetu/natural_editor
<!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.3.1"/> <title>libxml++: Class Members</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="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 style="padding-left: 0.5em;"> <div id="projectname">libxml++ &#160;<span id="projectnumber">2.37.1</span> </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.3.1 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;Pages</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li> <li class="current"><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <div id="navrow3" class="tabs2"> <ul class="tablist"> <li class="current"><a href="functions.html"><span>All</span></a></li> <li><a href="functions_func.html"><span>Functions</span></a></li> <li><a href="functions_vars.html"><span>Variables</span></a></li> <li><a href="functions_type.html"><span>Typedefs</span></a></li> <li><a href="functions_enum.html"><span>Enumerations</span></a></li> <li><a href="functions_eval.html"><span>Enumerator</span></a></li> </ul> </div> <div id="navrow4" class="tabs3"> <ul class="tablist"> <li><a href="functions.html#index_a"><span>a</span></a></li> <li><a href="functions_0x63.html#index_c"><span>c</span></a></li> <li><a href="functions_0x64.html#index_d"><span>d</span></a></li> <li><a href="functions_0x65.html#index_e"><span>e</span></a></li> <li><a href="functions_0x66.html#index_f"><span>f</span></a></li> <li><a href="functions_0x67.html#index_g"><span>g</span></a></li> <li class="current"><a href="functions_0x68.html#index_h"><span>h</span></a></li> <li><a href="functions_0x69.html#index_i"><span>i</span></a></li> <li><a href="functions_0x6b.html#index_k"><span>k</span></a></li> <li><a href="functions_0x6c.html#index_l"><span>l</span></a></li> <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li> <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li> <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li> <li><a href="functions_0x70.html#index_p"><span>p</span></a></li> <li><a href="functions_0x72.html#index_r"><span>r</span></a></li> <li><a href="functions_0x73.html#index_s"><span>s</span></a></li> <li><a href="functions_0x74.html#index_t"><span>t</span></a></li> <li><a href="functions_0x76.html#index_v"><span>v</span></a></li> <li><a href="functions_0x77.html#index_w"><span>w</span></a></li> <li><a href="functions_0x78.html#index_x"><span>x</span></a></li> <li><a href="functions_0x7e.html#index_0x7e"><span>~</span></a></li> </ul> </div> </div><!-- top --> <div class="contents"> <div class="textblock">Here is a list of all class members with links to the classes they belong to:</div> <h3><a class="anchor" id="index_h"></a>- h -</h3><ul> <li>handleException() : <a class="el" href="classxmlpp_1_1Parser.html#a860e1cff3da52a4bbb0b17a06475399f">xmlpp::Parser</a> , <a class="el" href="classxmlpp_1_1Validator.html#a4d02cc2d687f0bd28e3c777ebbc7c458">xmlpp::Validator</a> </li> <li>has_attributes() : <a class="el" href="classxmlpp_1_1TextReader.html#a1c59719f3e914090405b8b8fbeef2487">xmlpp::TextReader</a> </li> <li>has_child_text() : <a class="el" href="classxmlpp_1_1Element.html#a40d1299122bd9921fcb544ca1236aa95">xmlpp::Element</a> </li> <li>has_value() : <a class="el" href="classxmlpp_1_1TextReader.html#a16cd0ff7a5db226f388ee1ca9bf7f9e8">xmlpp::TextReader</a> </li> </ul> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Mon Sep 16 2013 11:27:49 for libxml++ by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.3.1 </small></address> </body> </html>
wsgi/templates/themes/water/portfolio.html
andela-rekemezie/Online-Portfolio-Manager
{% extends "base-layout.html" %} {% block header %} {% if session['signed'] %} <link rel="stylesheet" href="{{ url_for('static', filename='css/bootstrap-editable.css') }}"> {% endif %} {% endblock %} {% block content %} <div class="page-header"> {% if session['signed'] %} <a href="#" data-url="/edit_fullname" data-type="text" id="fullname" data-title="Username edit" data-pk="{{ user.id }}"> <h1>{{ user.fullname }}</h1></a> {% else %} <h1>{{ user.fullname }}</h1> {% endif %} {% if session['signed'] %} <a href="#" data-url="/edit_tagline" data-type="text" id="tagline" data-title="user tagline" data-pk="{{ user.id }}">{{ user.tagline }}</a> {% else %} {{ user.tagline }} {% endif %} </div> <div class="col-sm-4" style="border-right-style: solid;"> {% if session['signed'] %} <a href="javascript:uploadAvatar('{{ user.id }}')" ><img class="img-responsive img-rounded" id="avatar" src="{{ user.avatar }}" alt="Avatar of user"></a> {% else %} <img class="img-responsive img-rounded" src="{{ user.avatar }}" id="avatar" alt="Avatar of user"> {% endif %} <div class="justify"> {% if session['signed'] %} <a href="#" data-url="/edit_biography" data-type="text" id="biography" data-title="user tagline" data-pk="{{ user.id }}">{{ user.biography }}</a> {% else %} {{ user.biography }} {% endif %} </div> </div> <div class="col-sm-8"> <div class="row"> <div class="col-sm-12"> <div class="navbar-left"></div> <form class="navbar-form navbar-right" role="search"> <button type="button" class="btn btn-primary btn-sm btn-success" data-toggle="modal" data-target="#porto_form" id="portoform-btnadd"> Add </button> <div class="form-group"> <input type="text" class="form-control" placeholder="Search"> </div> <button class="btn-default" type="submit"><span class="glyphicon glyphicon-search"></span> </button> </form> </div> </div> <div class="container"> <ul class="list-group"> {% if user.portfolio %} Please add your portfolio! {% endif %} {% for portoform in user.portfolio %} <li class="list-group-item"> <div class="row"> <div class="col-sm-5"> <a href="javascript:editPortfolioForm('{{ portoform.id }}');"><span class="glyphicon glyphicon-edit"></span></a> <a href="javascript:deletePortfolio('{{ portoform.id }}');"><span class="glyphicon glyphicon-remove"></span></a> <strong> {{ portoform.title }} </strong> <p> {{ portoform.description }} </p> </div> <div class="col-sm-7"> {% for tag in portoform.tags.split(',') %} <span class="badge badge-important pull-right">{{ tag }}</span> {% endfor %} </div> </div> </li> {% endfor %} </ul> </div> </div> </div> <!-- row --> <div class="modal fade" id="porto_form" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close" aria-hidden="true"><span aria-hidden="true">&times;</span></button> <h4 class="modal-title" id="myModalLabel">Portfolio</h4> </div> <div class="modal-body"> <div class="row"> <div class="col-sm-1"></div> <div class="col-sm-10"> <form action="" class="form-horizontal" method="POST" id="portform"> {{ portoform.portfolio_id }} {{ portoform.hidden_tag() }} <div class="form-group"> {{ portoform.title.label }} {{ portoform.title(placeholder="Add title", id="title", class="form-control") }} <p class="help-block" id="title_errors">{{ portoform.title.errors[0] }}</p> </div> <div class="form-group"> {{ portoform.description.label }} {{ portoform.description(class="form-control", id="description", placeholder="Add a description for your title") }} <p class="help-block" id="description_errors">{{ portoform.description.errors[0] }}</p> </div> <div class="form-group"> {{ portoform.tags.label }} {{ portoform.tags(placeholder="Add your skill sets", id="tags", class="form-control", **{'data-role':"tagsinput"}) }} <p class="help-block" id="tags_errors">{{ portoform.description.errors[0] }}</p> </div> </div> <div class="col-sm-1"></div> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> <button type="submit" id="portform_btnsave" class="btn btn-primary">Save</button> </div> </div> </div> </div><!-- THE END OF PORTFOLIO MODAL --> <div class="modal fade" id="avatar_modal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button> <h4 class="modal-title" id="myModalLabel">Avatar upload modal</h4> </div> <div class="modal-body"> <form action="" id="upload-file" method="POST" enctype="multipart/form-data"> <input type="hidden" id="avatar_user_id" name="avatar_user_id"/> <span class="btn btn-success fileinput-button"> <i class="glyphicon glyphicon-plus"></i> <span>Add Avatar...</span> <input name="file" type="file"> </span> <button id="upload-file-btn" type="button" class="btn btn-primary">Upload</button> </form> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button> </div> </div> </div> </div> <!--End of upload modal --> {% endblock %} {% block footer %} <script> $(document).ready(function () { }); $('#portform_btnsave').click(function (e) { e.preventDefault(); $.ajax({ url: "{{ url_for('portfolio_add_update') }}", method: 'POST', data: $('#portform').serialize(), success: function (data, textStatus) { var errors = $.parseJSON(data); $('#description_errors').text(''); $('#title_errors').text(''); $('#tags_errors').text(''); if (errors.iserror) { if (errors.title != undefined) $('#title_errors').text(errors.title[0]); if (errors.description != undefined) $('#description_errors').text(errors.description[0]); if (errors.tags != undefined) $('#tags_errors').text(errors.tags[0]); } else if (errors.savedsuccess) { $('#porto_form').modal('hide'); location.reload(); } } }); }); function editPortfolioForm(id) { $('#portofolio_id').val(id); $.getJSON('/get_portofolio/' + id) .done(function (data) { $('#portofolio_id').val(data.id); $('#title').val(data.title); $('#description').val(data.description); $('#tags').tagsinput('removeAll'); $('#tags').tagsinput('add', data.tags); $('#porto_form').modal('show'); }).error(function (data, textstatus, xhr) { console.log(data, textstatus, xhr) }) } function deletePortfolio(id) { bootbox.confirm('<strong>Delete Information</strong> <p>Are you sure you want to delete your profile?</p>', function (result) { if (result) { $.getJSON('/delete_portfolio/' + id) .done(function (data) { location.reload(); }) .error(function (data, statusText) { console.log(statusText); console.log("data: " + data.status + "textStatus " + statusText) }) } }) } </script> {% if session['signed'] %} <script src="{{ url_for('static', filename='js/bootstrap-editable.min.js') }}"></script> <script> $('#fullname').editable({ placement: 'right', error: function () {} }); $('#tagline').editable({ placement: 'right', error: function () {} }); $('#biography').editable({ placement: 'right', error: function () {} }); function uploadAvatar(id) { $('#avatar_user_id').val(id); $('#avatar_modal').modal('show'); } $('#upload-file-btn').click(function () { var form_data = new FormData(document.forms.namedItem('upload-file')); form_data.append('avatar_user_id', $('#avatar_user_id').val()); alert($('#upload-file')); $.ajax({ url: '/user_avatar_upload', data: form_data, method: 'POST', contentType: false, processData: false, cache: false, success: function (data) { $('#avatar_modal').modal('hide'); $('#avatar').attr('src', data); }, error: function (error) { console.log($('#upload-file').val()); console.log('error: '+ error.status, $('#avatar-file').val()); } }) }); </script> {% endif %} {% endblock %}
demo/stylesheet.css
gilbox/infinite-slider
html, body { padding: 0; margin: 0; } header { padding: 0 0 0 20px; } .infinite-slider-window { position: relative; max-width: 100%; width: 100%; overflow: hidden; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .infinite-slider-container { position: relative; margin: auto; z-index: 1; overflow: visible; } .infinite-slider-container, .infinite-slider-boundary { height: 410px; } @media all and (max-width: 1000px) { .infinite-slider-container, .infinite-slider-boundary { height: 320px; } } @media all and (max-width: 600px) { .infinite-slider-container, .infinite-slider-boundary { height: 220px; } } .boundary-inside .infinite-slider-boundary { position: absolute; z-index: 2; width: 410px; border: 1px solid rgba(255, 0, 0, 0.7); } .infinite-slider-container { width: 410px; } @media all and (max-width: 1000px) { .infinite-slider-container { width: 320px; } } @media all and (max-width: 600px) { .infinite-slider-container { width: 220px; } } .infinite-slider-content { position: absolute; z-index: 1; width: 100%; } .infinite-slider-content .slide { position: absolute; display: block; top: 0; left: 0; width: 390px; height: 390px; overflow: hidden; opacity: .2; -moz-transform: scale(0.85); -webkit-transform: scale(0.85); transform: scale(0.85); transition: opacity 2s, border 0.5s, transform .5s; -webkit-transition: opacity 2s, border 0.5s, -webkit-transform .5s; border: 10px solid transparent; border-radius: 200px; } .allow-click .infinite-slider-content .slide { opacity: .5; transition: opacity .5s, border 0.5s, transform .5s; -webkit-transition: opacity .5ss, border 0.5s, -webkit-transform .5s; } .infinite-slider-content .slide.closest { opacity: 1; transition: opacity .5s, border 0.5s, transform .5s; -webkit-transition: opacity .5s, border 0.5s, -webkit-transform .5s; -moz-transform: scale(1); -webkit-transform: scale(1); transform: scale(1); } .infinite-slider-content .slide.snapped { border: 10px solid rgba(255, 0, 0, 0.5); } .infinite-slider-content .slide img { height: 100%; } @media all and (max-width: 1000px) { .infinite-slider-content .slide { width: 300px; height: 300px; } } @media all and (max-width: 600px) { .infinite-slider-content .slide { width: 200px; height: 200px; } }
docs/enums/destinytalentnodestate.html
alexanderwe/the-traveler
<!doctype html> <html class="default no-js"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>DestinyTalentNodeState | The Traveler</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="../assets/css/main.css"> </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">The Traveler</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="destinytalentnodestate.html">DestinyTalentNodeState</a> </li> </ul> <h1>Enumeration DestinyTalentNodeState</h1> </div> </div> </header> <div class="container container-main"> <div class="row"> <div class="col-8 col-content"> <section class="tsd-panel-group tsd-index-group"> <h2>Index</h2> <section class="tsd-panel tsd-index-panel"> <div class="tsd-index-content"> <section class="tsd-index-section tsd-is-external"> <h3>Enumeration members</h3> <ul class="tsd-index-list"> <li class="tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"><a href="destinytalentnodestate.html#canupgrade" class="tsd-kind-icon">Can<wbr>Upgrade</a></li> <li class="tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"><a href="destinytalentnodestate.html#complete" class="tsd-kind-icon">Complete</a></li> <li class="tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"><a href="destinytalentnodestate.html#creationonly" class="tsd-kind-icon">Creation<wbr>Only</a></li> <li class="tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"><a href="destinytalentnodestate.html#hidden" class="tsd-kind-icon">Hidden</a></li> <li class="tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"><a href="destinytalentnodestate.html#invalid" class="tsd-kind-icon">Invalid</a></li> <li class="tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"><a href="destinytalentnodestate.html#mustswap" class="tsd-kind-icon">Must<wbr>Swap</a></li> <li class="tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"><a href="destinytalentnodestate.html#nogridlevel" class="tsd-kind-icon">No<wbr>Grid<wbr>Level</a></li> <li class="tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"><a href="destinytalentnodestate.html#nomaterial" class="tsd-kind-icon">No<wbr>Material</a></li> <li class="tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"><a href="destinytalentnodestate.html#nopoints" class="tsd-kind-icon">No<wbr>Points</a></li> <li class="tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"><a href="destinytalentnodestate.html#noprerequisites" class="tsd-kind-icon">No<wbr>Prerequisites</a></li> <li class="tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"><a href="destinytalentnodestate.html#nosteps" class="tsd-kind-icon">No<wbr>Steps</a></li> <li class="tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"><a href="destinytalentnodestate.html#nounlock" class="tsd-kind-icon">No<wbr>Unlock</a></li> <li class="tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"><a href="destinytalentnodestate.html#swappinglocked" class="tsd-kind-icon">Swapping<wbr>Locked</a></li> <li class="tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"><a href="destinytalentnodestate.html#unknown" class="tsd-kind-icon">Unknown</a></li> </ul> </section> </div> </section> </section> <section class="tsd-panel-group tsd-member-group tsd-is-external"> <h2>Enumeration members</h2> <section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a name="canupgrade" class="tsd-anchor"></a> <h3>Can<wbr>Upgrade</h3> <div class="tsd-signature tsd-kind-icon">Can<wbr>Upgrade<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> =&nbsp;1</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/alexanderwe/the-traveler/blob/bfd7db0/src/type-definitions/destiny2/interfaces.ts#L10300">type-definitions/destiny2/interfaces.ts:10300</a></li> </ul> </aside> </section> <section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a name="complete" class="tsd-anchor"></a> <h3>Complete</h3> <div class="tsd-signature tsd-kind-icon">Complete<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> =&nbsp;10</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/alexanderwe/the-traveler/blob/bfd7db0/src/type-definitions/destiny2/interfaces.ts#L10309">type-definitions/destiny2/interfaces.ts:10309</a></li> </ul> </aside> </section> <section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a name="creationonly" class="tsd-anchor"></a> <h3>Creation<wbr>Only</h3> <div class="tsd-signature tsd-kind-icon">Creation<wbr>Only<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> =&nbsp;12</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/alexanderwe/the-traveler/blob/bfd7db0/src/type-definitions/destiny2/interfaces.ts#L10311">type-definitions/destiny2/interfaces.ts:10311</a></li> </ul> </aside> </section> <section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a name="hidden" class="tsd-anchor"></a> <h3>Hidden</h3> <div class="tsd-signature tsd-kind-icon">Hidden<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> =&nbsp;13</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/alexanderwe/the-traveler/blob/bfd7db0/src/type-definitions/destiny2/interfaces.ts#L10312">type-definitions/destiny2/interfaces.ts:10312</a></li> </ul> </aside> </section> <section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a name="invalid" class="tsd-anchor"></a> <h3>Invalid</h3> <div class="tsd-signature tsd-kind-icon">Invalid<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> =&nbsp;0</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/alexanderwe/the-traveler/blob/bfd7db0/src/type-definitions/destiny2/interfaces.ts#L10299">type-definitions/destiny2/interfaces.ts:10299</a></li> </ul> </aside> </section> <section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a name="mustswap" class="tsd-anchor"></a> <h3>Must<wbr>Swap</h3> <div class="tsd-signature tsd-kind-icon">Must<wbr>Swap<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> =&nbsp;9</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/alexanderwe/the-traveler/blob/bfd7db0/src/type-definitions/destiny2/interfaces.ts#L10308">type-definitions/destiny2/interfaces.ts:10308</a></li> </ul> </aside> </section> <section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a name="nogridlevel" class="tsd-anchor"></a> <h3>No<wbr>Grid<wbr>Level</h3> <div class="tsd-signature tsd-kind-icon">No<wbr>Grid<wbr>Level<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> =&nbsp;7</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/alexanderwe/the-traveler/blob/bfd7db0/src/type-definitions/destiny2/interfaces.ts#L10306">type-definitions/destiny2/interfaces.ts:10306</a></li> </ul> </aside> </section> <section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a name="nomaterial" class="tsd-anchor"></a> <h3>No<wbr>Material</h3> <div class="tsd-signature tsd-kind-icon">No<wbr>Material<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> =&nbsp;6</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/alexanderwe/the-traveler/blob/bfd7db0/src/type-definitions/destiny2/interfaces.ts#L10305">type-definitions/destiny2/interfaces.ts:10305</a></li> </ul> </aside> </section> <section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a name="nopoints" class="tsd-anchor"></a> <h3>No<wbr>Points</h3> <div class="tsd-signature tsd-kind-icon">No<wbr>Points<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> =&nbsp;2</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/alexanderwe/the-traveler/blob/bfd7db0/src/type-definitions/destiny2/interfaces.ts#L10301">type-definitions/destiny2/interfaces.ts:10301</a></li> </ul> </aside> </section> <section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a name="noprerequisites" class="tsd-anchor"></a> <h3>No<wbr>Prerequisites</h3> <div class="tsd-signature tsd-kind-icon">No<wbr>Prerequisites<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> =&nbsp;3</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/alexanderwe/the-traveler/blob/bfd7db0/src/type-definitions/destiny2/interfaces.ts#L10302">type-definitions/destiny2/interfaces.ts:10302</a></li> </ul> </aside> </section> <section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a name="nosteps" class="tsd-anchor"></a> <h3>No<wbr>Steps</h3> <div class="tsd-signature tsd-kind-icon">No<wbr>Steps<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> =&nbsp;4</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/alexanderwe/the-traveler/blob/bfd7db0/src/type-definitions/destiny2/interfaces.ts#L10303">type-definitions/destiny2/interfaces.ts:10303</a></li> </ul> </aside> </section> <section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a name="nounlock" class="tsd-anchor"></a> <h3>No<wbr>Unlock</h3> <div class="tsd-signature tsd-kind-icon">No<wbr>Unlock<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> =&nbsp;5</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/alexanderwe/the-traveler/blob/bfd7db0/src/type-definitions/destiny2/interfaces.ts#L10304">type-definitions/destiny2/interfaces.ts:10304</a></li> </ul> </aside> </section> <section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a name="swappinglocked" class="tsd-anchor"></a> <h3>Swapping<wbr>Locked</h3> <div class="tsd-signature tsd-kind-icon">Swapping<wbr>Locked<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> =&nbsp;8</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/alexanderwe/the-traveler/blob/bfd7db0/src/type-definitions/destiny2/interfaces.ts#L10307">type-definitions/destiny2/interfaces.ts:10307</a></li> </ul> </aside> </section> <section class="tsd-panel tsd-member tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a name="unknown" class="tsd-anchor"></a> <h3>Unknown</h3> <div class="tsd-signature tsd-kind-icon">Unknown<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol"> =&nbsp;11</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/alexanderwe/the-traveler/blob/bfd7db0/src/type-definitions/destiny2/interfaces.ts#L10310">type-definitions/destiny2/interfaces.ts:10310</a></li> </ul> </aside> </section> </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> </ul> </nav> <nav class="tsd-navigation secondary menu-sticky"> <ul class="before-current"> </ul> <ul class="current"> <li class="current tsd-kind-enum tsd-is-external"> <a href="destinytalentnodestate.html" class="tsd-kind-icon">Destiny<wbr>Talent<wbr>Node<wbr>State</a> <ul> <li class=" tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a href="destinytalentnodestate.html#canupgrade" class="tsd-kind-icon">Can<wbr>Upgrade</a> </li> <li class=" tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a href="destinytalentnodestate.html#complete" class="tsd-kind-icon">Complete</a> </li> <li class=" tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a href="destinytalentnodestate.html#creationonly" class="tsd-kind-icon">Creation<wbr>Only</a> </li> <li class=" tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a href="destinytalentnodestate.html#hidden" class="tsd-kind-icon">Hidden</a> </li> <li class=" tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a href="destinytalentnodestate.html#invalid" class="tsd-kind-icon">Invalid</a> </li> <li class=" tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a href="destinytalentnodestate.html#mustswap" class="tsd-kind-icon">Must<wbr>Swap</a> </li> <li class=" tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a href="destinytalentnodestate.html#nogridlevel" class="tsd-kind-icon">No<wbr>Grid<wbr>Level</a> </li> <li class=" tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a href="destinytalentnodestate.html#nomaterial" class="tsd-kind-icon">No<wbr>Material</a> </li> <li class=" tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a href="destinytalentnodestate.html#nopoints" class="tsd-kind-icon">No<wbr>Points</a> </li> <li class=" tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a href="destinytalentnodestate.html#noprerequisites" class="tsd-kind-icon">No<wbr>Prerequisites</a> </li> <li class=" tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a href="destinytalentnodestate.html#nosteps" class="tsd-kind-icon">No<wbr>Steps</a> </li> <li class=" tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a href="destinytalentnodestate.html#nounlock" class="tsd-kind-icon">No<wbr>Unlock</a> </li> <li class=" tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a href="destinytalentnodestate.html#swappinglocked" class="tsd-kind-icon">Swapping<wbr>Locked</a> </li> <li class=" tsd-kind-enum-member tsd-parent-kind-enum tsd-is-external"> <a href="destinytalentnodestate.html#unknown" class="tsd-kind-icon">Unknown</a> </li> </ul> </li> </ul> <ul class="after-current"> </ul> </nav> </div> </div> </div> <footer> <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="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>
examples/routeReload/index.html
QuinntyneBrown/ngX
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Component LifeCycle</title> </head> <body data-ng-app="app"> <app-header></app-header> <div data-ng-view=""> </div> <script src="../../node_modules/angular/angular.min.js"></script> <script src="../../node_modules/angular-route/angular-route.min.js"></script> <script src="../../dist/ngX.js"></script> <script> angular.module("app", ["ngX"]) .config(["$routeProvider", function ($routeProvider) { $routeProvider.when("/", { componentName: "listDetailComponent", componentTemplateUrl: "/examples/routeReload/listDetail.component.html" }); $routeProvider.when("/listDetail", { componentName: "listDetailComponent", componentTemplateUrl: "/examples/routeReload/listDetail.component.html" }); }]); function ListDetailComponent($location, $scope) { var self = this; self.loadedDateTime = Date.now(); self._routeUpdateTime = Date.now(); Object.defineProperty(self, "routeUpdateTime", { get: function () { return self._routeUpdateTime; }, set: function (value) { self._routeUpdateTime = value; } }); $scope.$on("$routeUpdate", function() { self.routeUpdateTime = Date.now(); }); return self; } ngX.Component({ component: ListDetailComponent, providers:["$location","$scope"] }); ngX.Component({ selector: "app-header", template: [ "<div>", "<a href='#/listDetail?id=1'>1</a>", "<a href='#/listDetail?id=2'>2</a>", "<a href='#/listDetail?id=3'>3</a>", "</div>" ].join(" ") }); </script> </body> </html>
doc/x11_dl/glx/constant.GLX_COLOR_INDEX_BIT.html
mcanders/bevy
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `GLX_COLOR_INDEX_BIT` constant in crate `x11_dl`."> <meta name="keywords" content="rust, rustlang, rust-lang, GLX_COLOR_INDEX_BIT"> <title>x11_dl::glx::GLX_COLOR_INDEX_BIT - Rust</title> <link rel="stylesheet" type="text/css" href="../../main.css"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <section class="sidebar"> <p class='location'><a href='../index.html'>x11_dl</a>::<wbr><a href='index.html'>glx</a></p><script>window.sidebarCurrent = {name: 'GLX_COLOR_INDEX_BIT', ty: 'constant', relpath: ''};</script><script defer src="sidebar-items.js"></script> </section> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press 'S' to search, '?' for more options..." type="search"> </div> </form> </nav> <section id='main' class="content constant"> <h1 class='fqn'><span class='in-band'><a href='../index.html'>x11_dl</a>::<wbr><a href='index.html'>glx</a>::<wbr><a class='constant' href=''>GLX_COLOR_INDEX_BIT</a></span><span class='out-of-band'><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-2358' class='srclink' href='../../src/x11_dl/glx.rs.html#139' title='goto source code'>[src]</a></span></h1> <pre class='rust const'>pub const GLX_COLOR_INDEX_BIT: <a class='type' href='../../libc/types/os/arch/c95/type.c_int.html' title='libc::types::os::arch::c95::c_int'>c_int</a><code> = </code><code>0x0002</code></pre></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <div id="help" class="hidden"> <div class="shortcuts"> <h1>Keyboard shortcuts</h1> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> </dl> </div> <div class="infos"> <h1>Search tricks</h1> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>typedef</code> (or <code>tdef</code>). </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code>) </p> </div> </div> <script> window.rootPath = "../../"; window.currentCrate = "x11_dl"; window.playgroundUrl = ""; </script> <script src="../../jquery.js"></script> <script src="../../main.js"></script> <script async src="../../search-index.js"></script> </body> </html>
BOOST/boost_1_61_0/libs/test/doc/html/boost/unit_test/data/xrange.html
calvinfarias/IC2015-2
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Function xrange</title> <link rel="stylesheet" href="../../../boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.76.1"> <link rel="home" href="../../../index.html" title="Boost.Test"> <link rel="up" href="../../../header/boost/test/data/monomorphic/generators/xrange_hpp.html" title="Header &lt;boost/test/data/monomorphic/generators/xrange.hpp&gt;"> <link rel="prev" href="monomorphic/xrange_t.html" title="Class template xrange_t"> <link rel="next" href="../../../header/boost/test/data/monomorphic/grid_hpp.html" title="Header &lt;boost/test/data/monomorphic/grid.hpp&gt;"> </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="monomorphic/xrange_t.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../header/boost/test/data/monomorphic/generators/xrange_hpp.html"><img src="../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../../../header/boost/test/data/monomorphic/grid_hpp.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.unit_test.data.xrange"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Function xrange</span></h2> <p>boost::unit_test::data::xrange &#8212; Creates a range (sequence) dataset. </p> </div> <h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2> <div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: &lt;<a class="link" href="../../../header/boost/test/data/monomorphic/generators/xrange_hpp.html" title="Header &lt;boost/test/data/monomorphic/generators/xrange.hpp&gt;">boost/test/data/monomorphic/generators/xrange.hpp</a>&gt; </span> <span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> SampleType<span class="special">,</span> <span class="keyword">typename</span> Params<span class="special">&gt;</span> <a class="link" href="monomorphic/generated_by.html" title="Class template generated_by">monomorphic::generated_by</a><span class="special">&lt;</span> <a class="link" href="monomorphic/xrange_t.html" title="Class template xrange_t">monomorphic::xrange_t</a><span class="special">&lt;</span> <span class="identifier">SampleType</span> <span class="special">&gt;</span> <span class="special">&gt;</span> <span class="identifier">xrange</span><span class="special">(</span><span class="identifier">Params</span> <span class="keyword">const</span> <span class="special">&amp;</span> params<span class="special">)</span><span class="special">;</span> <span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> SampleType<span class="special">&gt;</span> <a class="link" href="monomorphic/generated_by.html" title="Class template generated_by">monomorphic::generated_by</a><span class="special">&lt;</span> <a class="link" href="monomorphic/xrange_t.html" title="Class template xrange_t">monomorphic::xrange_t</a><span class="special">&lt;</span> <span class="identifier">SampleType</span> <span class="special">&gt;</span> <span class="special">&gt;</span> <span class="identifier">xrange</span><span class="special">(</span><span class="identifier">SampleType</span> <span class="keyword">const</span> <span class="special">&amp;</span> end_val<span class="special">)</span><span class="special">;</span> <span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> SampleType<span class="special">,</span> <span class="keyword">typename</span> Params<span class="special">&gt;</span> <span class="identifier">enable_if_c</span><span class="special">&lt;</span> <a class="link" href="../../nfp/is_named_param_pack.html" title="Struct template is_named_param_pack">nfp::is_named_param_pack</a><span class="special">&lt;</span> <span class="identifier">Params</span> <span class="special">&gt;</span><span class="special">::</span><span class="identifier">value</span><span class="special">,</span> <a class="link" href="monomorphic/generated_by.html" title="Class template generated_by">monomorphic::generated_by</a><span class="special">&lt;</span> <a class="link" href="monomorphic/xrange_t.html" title="Class template xrange_t">monomorphic::xrange_t</a><span class="special">&lt;</span> <span class="identifier">SampleType</span> <span class="special">&gt;</span> <span class="special">&gt;</span> <span class="special">&gt;</span><span class="special">::</span><span class="identifier">type</span> <span class="identifier">xrange</span><span class="special">(</span><span class="identifier">SampleType</span> <span class="keyword">const</span> <span class="special">&amp;</span> end_val<span class="special">,</span> <span class="identifier">Params</span> <span class="keyword">const</span> <span class="special">&amp;</span> params<span class="special">)</span><span class="special">;</span> <span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> SampleType<span class="special">&gt;</span> <a class="link" href="monomorphic/generated_by.html" title="Class template generated_by">monomorphic::generated_by</a><span class="special">&lt;</span> <a class="link" href="monomorphic/xrange_t.html" title="Class template xrange_t">monomorphic::xrange_t</a><span class="special">&lt;</span> <span class="identifier">SampleType</span> <span class="special">&gt;</span> <span class="special">&gt;</span> <span class="identifier">xrange</span><span class="special">(</span><span class="identifier">SampleType</span> <span class="keyword">const</span> <span class="special">&amp;</span> begin_val<span class="special">,</span> <span class="identifier">SampleType</span> <span class="keyword">const</span> <span class="special">&amp;</span> end_val<span class="special">)</span><span class="special">;</span> <span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> SampleType<span class="special">,</span> <span class="keyword">typename</span> StepType<span class="special">&gt;</span> <a class="link" href="monomorphic/generated_by.html" title="Class template generated_by">monomorphic::generated_by</a><span class="special">&lt;</span> <a class="link" href="monomorphic/xrange_t.html" title="Class template xrange_t">monomorphic::xrange_t</a><span class="special">&lt;</span> <span class="identifier">SampleType</span> <span class="special">&gt;</span> <span class="special">&gt;</span> <span class="identifier">xrange</span><span class="special">(</span><span class="identifier">SampleType</span> <span class="keyword">const</span> <span class="special">&amp;</span> begin_val<span class="special">,</span> <span class="identifier">SampleType</span> <span class="keyword">const</span> <span class="special">&amp;</span> end_val<span class="special">,</span> <span class="identifier">StepType</span> <span class="keyword">const</span> <span class="special">&amp;</span> step_val<span class="special">)</span><span class="special">;</span></pre></div> <div class="refsect1"> <a name="idp26974320"></a><h2>Description</h2> <p>The following overloads are available: </p> <pre class="programlisting"> <span class="keyword">auto</span> <span class="identifier">d</span> <span class="special">=</span> <span class="identifier">xrange</span><span class="special">(</span><span class="special">)</span><span class="special">;</span> <span class="keyword">auto</span> <span class="identifier">d</span> <span class="special">=</span> <span class="identifier">xrange</span><span class="special">(</span><span class="identifier">end_val</span><span class="special">)</span><span class="special">;</span> <span class="keyword">auto</span> <span class="identifier">d</span> <span class="special">=</span> <span class="identifier">xrange</span><span class="special">(</span><span class="identifier">end_val</span><span class="special">,</span> <span class="identifier">param</span><span class="special">)</span><span class="special">;</span> <span class="keyword">auto</span> <span class="identifier">d</span> <span class="special">=</span> <span class="identifier">xrange</span><span class="special">(</span><span class="identifier">begin_val</span><span class="special">,</span> <span class="identifier">end_val</span><span class="special">)</span><span class="special">;</span> <span class="keyword">auto</span> <span class="identifier">d</span> <span class="special">=</span> <span class="identifier">xrange</span><span class="special">(</span><span class="identifier">begin_val</span><span class="special">,</span> <span class="identifier">end_val</span><span class="special">,</span> <span class="identifier">step_val</span><span class="special">)</span><span class="special">;</span> <span class="keyword">auto</span> <span class="identifier">d</span> <span class="special">=</span> <span class="identifier">xrange</span><span class="special">(</span><span class="identifier">param</span><span class="special">)</span><span class="special">;</span> </pre> <div class="itemizedlist"><ul class="itemizedlist" type="disc"> <li class="listitem"><p><code class="computeroutput">begin_val</code> indicates the start of the sequence (default to 0).</p></li> <li class="listitem"><p><code class="computeroutput">end_val</code> is the end of the sequence. If ommited, the dataset has infinite size.<br> </p></li> <li class="listitem"><p><code class="computeroutput">step_val</code> is the step between two consecutive elements of the sequence, and defaults to 1.<br> </p></li> <li class="listitem"> <p><code class="computeroutput">param</code> is the named parameters that describe the sequence. The following parameters are accepted:</p> <div class="itemizedlist"><ul class="itemizedlist" type="circle"> <li class="listitem"><p><code class="computeroutput">begin:</code> same meaning <code class="computeroutput">begin_val</code> </p></li> <li class="listitem"><p><code class="computeroutput">end:</code> same meaning as <code class="computeroutput">end_val</code> </p></li> <li class="listitem"><p><code class="computeroutput">step:</code> same meaning as <code class="computeroutput">step_val</code> </p></li> </ul></div> <p> </p> </li> </ul></div> <p> </p> <p>The returned value is an object that implements the dataset API.</p> <div class="note"><table border="0" summary="Note"> <tr> <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="../../../../../../../doc/src/images/note.png"></td> <th align="left">Note</th> </tr> <tr><td align="left" valign="top"><p>the step size cannot be null, and it should be positive if <code class="computeroutput">begin_val</code> &lt; <code class="computeroutput">end_val</code>, negative otherwise. </p></td></tr> </table></div> <p> </p> </div> </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; 2001-2016 Boost.Test contributors<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="monomorphic/xrange_t.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../header/boost/test/data/monomorphic/generators/xrange_hpp.html"><img src="../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../../../header/boost/test/data/monomorphic/grid_hpp.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
html/234567037790.html
GoC-Spending/data-corporations
<!DOCTYPE html> <!--[if lt IE 9]><html class="no-js lt-ie9" lang="en" dir="ltr"><![endif]--> <!--[if gt IE 8]><!--> <html class="no-js" lang="en" dir="ltr"> <!--<![endif]--> <!-- Usage: /eic/site/ccc-rec.nsf/tpl-eng/template-1col.html?Open&id=3 (optional: ?Open&page=filename.html&id=x) --> <!-- Created: ; Product Code: 536; Server: stratnotes2.ic.gc.ca --> <head> <!-- Title begins / Début du titre --> <title> Yugo-Tech Conversion Gas Systems Inc. - Complete profile - Canadian Company Capabilities - Industries and Business - Industry Canada </title> <!-- Title ends / Fin du titre --> <!-- Meta-data begins / Début des métadonnées --> <meta charset="utf-8" /> <meta name="dcterms.language" title="ISO639-2" content="eng" /> <meta name="dcterms.title" content="" /> <meta name="description" content="" /> <meta name="dcterms.description" content="" /> <meta name="dcterms.type" content="report, data set" /> <meta name="dcterms.subject" content="businesses, industry" /> <meta name="dcterms.subject" content="businesses, industry" /> <meta name="dcterms.issued" title="W3CDTF" content="" /> <meta name="dcterms.modified" title="W3CDTF" content="" /> <meta name="keywords" content="" /> <meta name="dcterms.creator" content="" /> <meta name="author" content="" /> <meta name="dcterms.created" title="W3CDTF" content="" /> <meta name="dcterms.publisher" content="" /> <meta name="dcterms.audience" title="icaudience" content="" /> <meta name="dcterms.spatial" title="ISO3166-1" content="" /> <meta name="dcterms.spatial" title="gcgeonames" content="" /> <meta name="dcterms.format" content="HTML" /> <meta name="dcterms.identifier" title="ICsiteProduct" content="536" /> <!-- EPI-11240 --> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- MCG-202 --> <meta content="width=device-width,initial-scale=1" name="viewport"> <!-- EPI-11567 --> <meta name = "format-detection" content = "telephone=no"> <!-- EPI-12603 --> <meta name="robots" content="noarchive"> <!-- EPI-11190 - Webtrends --> <script> var startTime = new Date(); startTime = startTime.getTime(); </script> <!--[if gte IE 9 | !IE ]><!--> <link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="icon" type="image/x-icon"> <link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/wet-boew.min.css"> <!--<![endif]--> <link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/theme.min.css"> <!--[if lt IE 9]> <link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="shortcut icon" /> <link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/ie8-wet-boew.min.css" /> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew.min.js"></script> <![endif]--> <!--[if lte IE 9]> <![endif]--> <noscript><link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/noscript.min.css" /></noscript> <!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER --> <script>dataLayer1 = [];</script> <!-- End Google Tag Manager --> <!-- EPI-11235 --> <link rel="stylesheet" href="/eic/home.nsf/css/add_WET_4-0_Canada_Apps.css"> <link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"> <link href="/app/ccc/srch/css/print.css" media="print" rel="stylesheet" type="text/css" /> </head> <body class="home" vocab="http://schema.org/" typeof="WebPage"> <!-- EPIC HEADER BEGIN --> <!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER --> <noscript><iframe title="Google Tag Manager" src="//www.googletagmanager.com/ns.html?id=GTM-TLGQ9K" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer1'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer1','GTM-TLGQ9K');</script> <!-- End Google Tag Manager --> <!-- EPI-12801 --> <span typeof="Organization"><meta property="legalName" content="Department_of_Industry"></span> <ul id="wb-tphp"> <li class="wb-slc"> <a class="wb-sl" href="#wb-cont">Skip to main content</a> </li> <li class="wb-slc visible-sm visible-md visible-lg"> <a class="wb-sl" href="#wb-info">Skip to "About this site"</a> </li> </ul> <header role="banner"> <div id="wb-bnr" class="container"> <section id="wb-lng" class="visible-md visible-lg text-right"> <h2 class="wb-inv">Language selection</h2> <div class="row"> <div class="col-md-12"> <ul class="list-inline mrgn-bttm-0"> <li><a href="nvgt.do?V_TOKEN=1492331806077&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=51519&V_SEARCH.docsStart=51518&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn/rgstr.sec?_flId?_flxKy=e1s1&amp;estblmntNo=234567041301&amp;profileId=61&amp;_evId=bck'A=0&amp;lang=eng&amp;V_SEARCH.showStricts=false&amp;prtl=1&amp;_flId?_flId?_flxKy=e1s1" title="Français" lang="fr">Français</a></li> </ul> </div> </div> </section> <div class="row"> <div class="brand col-xs-8 col-sm-9 col-md-6"> <a href="http://www.canada.ca/en/index.html"><object type="image/svg+xml" tabindex="-1" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/sig-blk-en.svg"></object><span class="wb-inv"> Government of Canada</span></a> </div> <section class="wb-mb-links col-xs-4 col-sm-3 visible-sm visible-xs" id="wb-glb-mn"> <h2>Search and menus</h2> <ul class="list-inline text-right chvrn"> <li><a href="#mb-pnl" title="Search and menus" aria-controls="mb-pnl" class="overlay-lnk" role="button"><span class="glyphicon glyphicon-search"><span class="glyphicon glyphicon-th-list"><span class="wb-inv">Search and menus</span></span></span></a></li> </ul> <div id="mb-pnl"></div> </section> <!-- Site Search Removed --> </div> </div> <nav role="navigation" id="wb-sm" class="wb-menu visible-md visible-lg" data-trgt="mb-pnl" data-ajax-fetch="//cdn.canada.ca/gcweb-cdn-dev/sitemenu/sitemenu-en.html" typeof="SiteNavigationElement"> <h2 class="wb-inv">Topics menu</h2> <div class="container nvbar"> <div class="row"> <ul class="list-inline menu"> <li><a href="https://www.canada.ca/en/services/jobs.html">Jobs</a></li> <li><a href="http://www.cic.gc.ca/english/index.asp">Immigration</a></li> <li><a href="https://travel.gc.ca/">Travel</a></li> <li><a href="https://www.canada.ca/en/services/business.html">Business</a></li> <li><a href="https://www.canada.ca/en/services/benefits.html">Benefits</a></li> <li><a href="http://healthycanadians.gc.ca/index-eng.php">Health</a></li> <li><a href="https://www.canada.ca/en/services/taxes.html">Taxes</a></li> <li><a href="https://www.canada.ca/en/services.html">More services</a></li> </ul> </div> </div> </nav> <!-- EPIC BODY BEGIN --> <nav role="navigation" id="wb-bc" class="" property="breadcrumb"> <h2 class="wb-inv">You are here:</h2> <div class="container"> <div class="row"> <ol class="breadcrumb"> <li><a href="/eic/site/icgc.nsf/eng/home" title="Home">Home</a></li> <li><a href="/eic/site/icgc.nsf/eng/h_07063.html" title="Industries and Business">Industries and Business</a></li> <li><a href="/eic/site/ccc-rec.nsf/tpl-eng/../eng/home" >Canadian Company Capabilities</a></li> </ol> </div> </div> </nav> </header> <main id="wb-cont" role="main" property="mainContentOfPage" class="container"> <!-- End Header --> <!-- Begin Body --> <!-- Begin Body Title --> <!-- End Body Title --> <!-- Begin Body Head --> <!-- End Body Head --> <!-- Begin Body Content --> <br> <!-- Complete Profile --> <!-- Company Information above tabbed area--> <input id="showMore" type="hidden" value='more'/> <input id="showLess" type="hidden" value='less'/> <h1 id="wb-cont"> Company profile - Canadian Company Capabilities </h1> <div class="profileInfo hidden-print"> <ul class="list-inline"> <li><a href="cccSrch.do?lang=eng&profileId=&prtl=1&key.hitsPerPage=25&searchPage=%252Fapp%252Fccc%252Fsrch%252FcccBscSrch.do%253Flang%253Deng%2526amp%253Bprtl%253D1%2526amp%253Btagid%253D&V_SEARCH.scopeCategory=CCC.Root&V_SEARCH.depth=1&V_SEARCH.showStricts=false&V_SEARCH.sortSpec=title+asc&amp;rstBtn.x=" class="btn btn-link">New Search</a>&nbsp;|</li> <li><form name="searchForm" method="post" action="/app/ccc/srch/bscSrch.do"> <input type="hidden" name="lang" value="eng" /> <input type="hidden" name="profileId" value="" /> <input type="hidden" name="prtl" value="1" /> <input type="hidden" name="searchPage" value="%2Fapp%2Fccc%2Fsrch%2FcccBscSrch.do%3Flang%3Deng%26amp%3Bprtl%3D1%26amp%3Btagid%3D" /> <input type="hidden" name="V_SEARCH.scopeCategory" value="CCC.Root" /> <input type="hidden" name="V_SEARCH.depth" value="1" /> <input type="hidden" name="V_SEARCH.showStricts" value="false" /> <input id="repeatSearchBtn" class="btn btn-link" type="submit" value="Return to search results" /> </form></li> <li>|&nbsp;<a href="nvgt.do?V_SEARCH.docsStart=51517&amp;V_DOCUMENT.docRank=51518&amp;V_SEARCH.docsCount=3&amp;lang=eng&amp;prtl=1&amp;sbPrtl=&amp;profile=cmpltPrfl&amp;V_TOKEN=1492331833052&amp;V_SEARCH.command=navigate&amp;V_SEARCH.resultsJSP=%2fprfl.do&amp;estblmntNo=234567156062&amp;profileId=&amp;key.newSearchLabel=">Previous Company</a></li> <li>|&nbsp;<a href="nvgt.do?V_SEARCH.docsStart=51519&amp;V_DOCUMENT.docRank=51520&amp;V_SEARCH.docsCount=3&amp;lang=eng&amp;prtl=1&amp;sbPrtl=&amp;profile=cmpltPrfl&amp;V_TOKEN=1492331833052&amp;V_SEARCH.command=navigate&amp;V_SEARCH.resultsJSP=%2fprfl.do&amp;estblmntNo=234567043441&amp;profileId=&amp;key.newSearchLabel=">Next Company</a></li> </ul> </div> <details> <summary>Third-Party Information Liability Disclaimer</summary> <p>Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.</p> </details> <h2> Yugo-Tech Conversion Gas Systems Inc. </h2> <div class="row"> <div class="col-md-5"> <h2 class="h5 mrgn-bttm-0">Legal/Operating Name:</h2> <p>Yugo-Tech Conversion Gas Systems Inc.</p> <div class="mrgn-tp-md"></div> <p class="mrgn-bttm-0" ><a href="http://www.yugo-tech.com" target="_blank" title="Website URL">http://www.yugo-tech.com</a></p> <p><a href="mailto:[email protected]" title="[email protected]">[email protected]</a></p> </div> <div class="col-md-4 mrgn-sm-sm"> <h2 class="h5 mrgn-bttm-0">Mailing Address:</h2> <address class="mrgn-bttm-md"> 16-1050 Britannia Rd E<br/> MISSISSAUGA, Ontario<br/> L4W 4N9 <br/> </address> <h2 class="h5 mrgn-bttm-0">Location Address:</h2> <address class="mrgn-bttm-md"> 16-1050 Britannia Rd E<br/> MISSISSAUGA, Ontario<br/> L4W 4N9 <br/> </address> <p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>: (905) 670-0860 </p> <p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>: (905) 670-7586</p> </div> <div class="col-md-3 mrgn-tp-md"> </div> </div> <div class="row mrgn-tp-md mrgn-bttm-md"> <div class="col-md-12"> <h2 class="wb-inv">Company Profile</h2> <br> Yugo-Tech is a Canadian designer, manufacturer, supplier and installer of both natural gas (CNG) and propane (LPG) vehicle conversion systems. Yugo-Tech was incorporated as a company in Mississauga, Ontario, Canada in July 1987 by Mr. Joco Djurdjevic. Mr. Djurdjevic was previously with CNG Fuel Systems, which was one of the largest natural gas vehicle conversion design companies at that time. With the demise of CNG Fuel Systems in 1987, Yugo-Tech became one of the largest natural gas vehicle conversion equipment installers in Ontario. In 1995 Yugo-Tech entered into the propane conversion industry with an agreement with Superior Propane, one of the largest propane distributors in Canada. Yugo-Tech now handles all of the Superior Propane vehicle conversions in the Toronto and Southern Ontario area. Yugo-Tech works closely in conjunction with the local Gas and Propane Utilities in the development new industry products. <br> <br> <br>The following is a list of a few of the major companies using Yugo-Tech conversion systems and components in the local area: <br> <br> <br>Ontario Hydro; Canada Post; Peel Regional Police Dept.; Fed Ex Courier; City of Etobicoke; Windsor Public Utilities; Natural Gas Conversion Co. (Conn. USA); City of Regina; Contract Cable; Union Gas; Centra Gas; Gaz Metropolitan (Montreal); City of Brampton; Minnigasco (Minneapolis USA); Ontario Bus Industries; Bus Industries of America; Atripco Courier; Region of Peel. <br> <br> <br>Products <br> <br> <br>Yugo-Tech manufactures conversion systems for both natural gas (CNG) and propane (LPG) alternate fuels. Yugo-Tech manufactures a wide variety of equipment to suit the requirements of the market. For the export market, we specialize in manufacturing &quot;custom&quot; conversion systems to suit the technical requirements of the target market that will fit into the local economy of the host country. <br> <br> <br>Yugo-Tech manufactures in house electronic Computer Interface Modules (CIM) that are the only &quot;programmable&quot; modules in the industry. These modules are ideally suited for export, as they can be programmed for different types of vehicles on location, thus reducing the need for <br>excess inventory. The programmability also allows for the fine tuning of the conversion for maximum vehicle performance and minimum emissions. Yugo-Tech also manufactures many other smaller components such as switches, gauges and brackets. Yugo Tech holds patents <br>on several innovative equipment designs. <br> <br> <br>Yugo-Tech is introducing the industries first, Sequential Injection, conversion system to the market. The new conversion system is being marketed as the &quot;SEQUIN&quot; conversion, which is an acronym for SEQUential INjection. This system is fully OBD 11 compatible and therefore <br>eliminates the &quot;check engine light&quot; problems associated with the conversion systems of the past. This system offers unrivalled features with improved engine performance, reduced emissions and driveability. The system is truly an invisible conversion system, offering all the features that the vehicle manufacturers fueling system offers. Computer controlled Sequential Fuel Injection is the only appropriate method of <br>converting the new generation vehicles with their constant upgrading and refinements of the engine diagnostic systems. <br> <br> <br>Yugo-Tech has designed and developed a conversion system for two-stroke engines for use on &quot;Autorickshaws&quot; and motorcycles. This conversion system is aimed mainly at the markets in the Far East where the two-stroke engines are used in abundance to power Autorickshaws and motorcycles. These vehicles make up the majority of the vehicles in these markets and therefore generate the majority of <br>the air pollution. <br> <br> <br>Current Geographic Marketing Activity <br> <br> <br>At the present time Yugo-Tech exports to the Unites States in limited quantities. We are set up and represented in India, Pakistan, China, Bangladesh, Egypt and are developing representation in Indonesia and Thailand. At the present time we are involved in Pilot Projects in <br>both Pakistan and India. <br> <br> <br>Geographic Marketing Properties/Marketing Strategy <br> <br> <br>For the international export market, Yugo-Tech will design and develop custom conversion systems to suit the technical requirements of the target market vehicles that will be affordable to the economics of the host country market. This will allow the use of appropriate conversion technology to reduce the harmful tailpipe emissions and reduce vehicle-operating costs at a cost that will promote the use of alternate fuels <br>and conversion systems. <br> <br> <br>In North America, Yugo-Tech is promoting the use of the Sequential Injection conversion system. Yugo-Tech feels this system is so advanced that it will be the only technical approach that will allow the conversion of new vehicles as we enter into the next century. <br> <br> <br>Technology Showcase <br> <br> <br>&quot;SEQUIN&quot; <br> <br> <br>YUGO-TECH&#39;S THIRD GENERATION NATURAL GAS CONVERSION SYSTEM <br> <br> <br>The name SEQUIN is an acronym for &quot;SEQUential INjection&quot;. The SEQUIN conversion system is Yugo-Tech&#39;s Third Generation Vehicle Conversion System, and as the name indicates, is a Sequential Natural Gas or Propane Injection Conversion System. This system was design and developed by Yugo-Tech to meet the ever increasing demands of the modern engines that are equipped with computer controlled fuel <br>injection and on-board diagnostics. The stringent demands from these new vehicles can no longer be satisfied by the old traditional &quot;fumigation&quot; technology conversion systems. To meet the new mandatory emission requirements, the modern sophisticated engines of today, demand precise fueling that only electronically controlled fuel injection can deliver. <br> <br> <br>The SEQUIN Conversion System is a computer controlled, sequential natural gas or Propane injection system that is compatible with the North American OBD II diagnostics systems as well as the &quot;enhanced diagnostics&quot; introduced in all 1998 vehicles. The SEQUIN Conversion System is designed to be expandable, allowing it to address not only the sophisticated vehicles of today, but the future vehicles of tomorrow. <br> <br> <br>The SEQUIN Natural Gas Conversion System is designed to be a &quot;dual&quot; fuel, aftermarket conversion system, allowing the expanded use of natural gas or Propane for vehicles. Vehicle manufacturers have traditionally marketed only &quot;dedicated&quot; alternate fueled vehicles. The use of dedicated, natural gas vehicles at present, does not allow for vehicle user flexibility, due to the lack of the natural gas refueling infrastructure . Until there <br>are adequate natural gas retail refueling stations to overcome this dilemma, the &quot;dual&quot; fuel conversion concept is the only practical choice for the consumer and the only choice that will expand the natural gas vehicle industry. <br> <br> <br>The SEQUIN Alternate Fuel Conversion System is a full sequential injection system that operates, utilizing the vehicle manufacturers computer logic. The alternate fuel injectors are driven from the manufacturer&#39;s injector driver&#39;s signals, within the computer. Yugo-Tech has developed a <br>computer interface module that modifies the manufacturer&#39;s injector driver signals to compensate for the different properties of the alternate fuel as related to gasoline. This provides the precise alternate fuel delivery and also allows the manufacturers diagnostics to diagnose its own system/s and sensors without affecting the alternate fuel injection system. This approach eliminates the traditional &quot;reverse engineering&quot; that was the <br>norm with the &quot;fumigation&quot; style systems and prevents the dash warnings for emission violations. Because the injectors are driven by the OEM computer and the computer monitors all of the on board sensors, the SEQUIN is naturally closed loop. <br> <br> <br>Future development of the SEQUIN Conversion System will provide &quot;smart&quot; electronics that will allow the system to self learn from the vehicles on board sensors. This will greatly enhance the systems performance and ease the installation and adjustments by the installers. The SEQUIN Natural Gas Injection Conversion System is truly the aftermarket conversion system that will allow the alternate fuel conversion <br>industry to grow and to move into the next century. <br> <br><br> </div> </div> <!-- <div class="wb-tabs ignore-session update-hash wb-eqht-off print-active"> --> <div class="wb-tabs ignore-session"> <div class="tabpanels"> <details id="details-panel1"> <summary> Full profile </summary> <!-- Tab 1 --> <h2 class="wb-invisible"> Full profile </h2> <!-- Contact Information --> <h3 class="page-header"> Contact information </h3> <section class="container-fluid"> <div class="row mrgn-tp-lg"> <div class="col-md-3"> <strong> Brian Clark </strong></div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Title: </strong> </div> <div class="col-md-7"> <!--if client gender is not null or empty we use gender based job title--> Manager </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Area of Responsibility: </strong> </div> <div class="col-md-7"> Management Executive. </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Telephone: </strong> </div> <div class="col-md-7"> (905) 670-0860 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Facsimile: </strong> </div> <div class="col-md-7"> (905) 670-7586 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Email: </strong> </div> <div class="col-md-7"> [email protected] </div> </div> <div class="row mrgn-tp-lg"> <div class="col-md-3"> <strong> Joco Djurdjevic </strong></div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Title: </strong> </div> <div class="col-md-7"> <!--if client gender is not null or empty we use gender based job title--> President </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Area of Responsibility: </strong> </div> <div class="col-md-7"> Management Executive. </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Telephone: </strong> </div> <div class="col-md-7"> (905) 670-0860 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Facsimile: </strong> </div> <div class="col-md-7"> (905) 670-7586 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Email: </strong> </div> <div class="col-md-7"> [email protected] </div> </div> </section> <p class="mrgn-tp-lg text-right small hidden-print"> <a href="#wb-cont">top of page</a> </p> <!-- Company Description --> <h3 class="page-header"> Company description </h3> <section class="container-fluid"> <div class="row"> <div class="col-md-5"> <strong> Country of Ownership: </strong> </div> <div class="col-md-7"> Canada &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Exporting: </strong> </div> <div class="col-md-7"> Yes &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Industry (NAICS): </strong> </div> <div class="col-md-7"> 541620 - Environmental Consulting Services </div> </div> <div class="row"> <div class="col-md-5"> <strong> Alternate Industries (NAICS): </strong> </div> <div class="col-md-7"> 336310 - Motor Vehicle Gasoline Engine and Engine Parts Manufacturing<br> 811119 - Other Automotive Mechanical and Electrical Repair and Maintenance<br> </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Business Activity: </strong> </div> <div class="col-md-7"> Services &nbsp; </div> </div> </section> <!-- Products / Services / Licensing --> <h3 class="page-header"> Product / Service / Licensing </h3> <section class="container-fluid"> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Product Name: </strong> </div> <div class="col-md-9"> Environmental Products and Services <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Product Name: </strong> </div> <div class="col-md-9"> Yugo-Tech natural gas injection conversion system. <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-12"> A popular Egyptian motorcycle using an early design two-stroke engine emits typical two-stroke oil plumed exhaust causing significant air <br> quality reduction is Cairo. <br> <br> Yugo-Tech designed and developed a natural gas injection conversion system to convert these vehicles to eliminate the <br> offensive and harmful exhaust smoke. <br> <br> <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Product Name: </strong> </div> <div class="col-md-9"> Yugo-Tech is developing a totally new concept vehicle as an alternative to the present three wheeled Autorickshaw in Asia <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-12"> In study after study the three-wheeled Autorickshaws have been identified as the major contributor to mobile air pollution where used. There are millions of these vehicles throughout Asia and they are used by the general public as economical mini taxis. Yugo-Tech is developing a totally new concept vehicle as an alternative to these vehicles. The new vehicle is called the ECO-Rider and is equipped with a four-stroke engine designed to operate on Natural Gas (CNG) or Propane (LPG) depending on the availability of local fuels to provide exceptionally clean operation. The ECO-Rider is a four-wheeled vehicle for improved safety and comfort. The ECO-Rider offers four-wheel independent suspension, a modern braking system and easy entry and exit. For detailed information contact Yugo-Tech directly.<br> <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Product Name: </strong> </div> <div class="col-md-9"> Yugo-Tech is experienced in vehicle emission viability studies and developing and implementing vehicle emission standards and test programs. <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-12"> Densely populated cities in developing countries traditionally suffer from the effects of mobile generated pollution. In an effort to decrease this pollution, many cities or countries have initiated alternate fuel programs that have not been successful in reducing the pollution. The lack of appropriate equipment standards and the lack of mandatory emission testing have led to poor quality conversion components being used and unsatisfactory emission results. Yugo-Tech is experienced in conducting viability studies and the implementation of appropriate emission test programs. Yugo-Tech offers complete turnkey emission programs from the studies to the supply and installation of the test equipment.<br> <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Product Name: </strong> </div> <div class="col-md-9"> Modifying the vehicles to operate on clean alternate fuels such as natural gas (CNG) or propane (LPG). <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-12"> Yugo-Tech is a Canadian designer, manufacturer, supplier and installer of natural gas (CNG) and propane (LPG) vehicle conversion systems. For the domestic market, Yugo-Tech specializes in state of the art electronic closed-loop conversion systems that are OBD 11 compatible. For the export market, Yugo-Tech specializes in &quot;custom&quot; conversion systems to provide the appropriate technology for specific target market vehicles at a price that will fit into the local, host country market economy. Conversion to natural gas or propane allows the vehicles to operate much cleaner and also more economically. This allows for improved air quality at the same time as reducing the operating costs for the owner/operator. Conversion to alternate fuels also can result in the reduction of gasoline imports for particular markets.<br> <br> </div> </div> </section> <p class="mrgn-tp-lg text-right small hidden-print"> <a href="#wb-cont">top of page</a> </p> <!-- Technology Profile --> <!-- Market Profile --> <h3 class="page-header"> Market profile </h3> <section class="container-fluid"> <h4> Industry sector market interests: </h4> <ul> <li>Environment</li> <li>Transportation</li> </ul> <h4> Geographic markets: </h4> <h5> Export experience: </h5> <ul> <li>Bangladesh</li> <li>China</li> <li>Egypt</li> <li>India</li> <li>Indonesia</li> <li>Iran, Islamic Republic of</li> <li>Pakistan</li> <li>Russian Federation</li> <li>United States</li> </ul> </section> <p class="mrgn-tp-lg text-right small hidden-print"> <a href="#wb-cont">top of page</a> </p> <!-- Sector Information --> <details class="mrgn-tp-md mrgn-bttm-md"> <summary> Third-Party Information Liability Disclaimer </summary> <p> Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements. </p> </details> </details> <details id="details-panel2"> <summary> Contacts </summary> <h2 class="wb-invisible"> Contact information </h2> <!-- Contact Information --> <section class="container-fluid"> <div class="row mrgn-tp-lg"> <div class="col-md-3"> <strong> Brian Clark </strong></div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Title: </strong> </div> <div class="col-md-7"> <!--if client gender is not null or empty we use gender based job title--> Manager </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Area of Responsibility: </strong> </div> <div class="col-md-7"> Management Executive. </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Telephone: </strong> </div> <div class="col-md-7"> (905) 670-0860 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Facsimile: </strong> </div> <div class="col-md-7"> (905) 670-7586 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Email: </strong> </div> <div class="col-md-7"> [email protected] </div> </div> <div class="row mrgn-tp-lg"> <div class="col-md-3"> <strong> Joco Djurdjevic </strong></div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Title: </strong> </div> <div class="col-md-7"> <!--if client gender is not null or empty we use gender based job title--> President </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Area of Responsibility: </strong> </div> <div class="col-md-7"> Management Executive. </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Telephone: </strong> </div> <div class="col-md-7"> (905) 670-0860 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Facsimile: </strong> </div> <div class="col-md-7"> (905) 670-7586 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Email: </strong> </div> <div class="col-md-7"> [email protected] </div> </div> </section> </details> <details id="details-panel3"> <summary> Description </summary> <h2 class="wb-invisible"> Company description </h2> <section class="container-fluid"> <div class="row"> <div class="col-md-5"> <strong> Country of Ownership: </strong> </div> <div class="col-md-7"> Canada &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Exporting: </strong> </div> <div class="col-md-7"> Yes &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Industry (NAICS): </strong> </div> <div class="col-md-7"> 541620 - Environmental Consulting Services </div> </div> <div class="row"> <div class="col-md-5"> <strong> Alternate Industries (NAICS): </strong> </div> <div class="col-md-7"> 336310 - Motor Vehicle Gasoline Engine and Engine Parts Manufacturing<br> 811119 - Other Automotive Mechanical and Electrical Repair and Maintenance<br> </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Business Activity: </strong> </div> <div class="col-md-7"> Services &nbsp; </div> </div> </section> </details> <details id="details-panel4"> <summary> Products, services and licensing </summary> <h2 class="wb-invisible"> Product / Service / Licensing </h2> <section class="container-fluid"> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Product Name: </strong> </div> <div class="col-md-9"> Environmental Products and Services <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Product Name: </strong> </div> <div class="col-md-9"> Yugo-Tech natural gas injection conversion system. <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-12"> A popular Egyptian motorcycle using an early design two-stroke engine emits typical two-stroke oil plumed exhaust causing significant air <br> quality reduction is Cairo. <br> <br> Yugo-Tech designed and developed a natural gas injection conversion system to convert these vehicles to eliminate the <br> offensive and harmful exhaust smoke. <br> <br> <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Product Name: </strong> </div> <div class="col-md-9"> Yugo-Tech is developing a totally new concept vehicle as an alternative to the present three wheeled Autorickshaw in Asia <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-12"> In study after study the three-wheeled Autorickshaws have been identified as the major contributor to mobile air pollution where used. There are millions of these vehicles throughout Asia and they are used by the general public as economical mini taxis. Yugo-Tech is developing a totally new concept vehicle as an alternative to these vehicles. The new vehicle is called the ECO-Rider and is equipped with a four-stroke engine designed to operate on Natural Gas (CNG) or Propane (LPG) depending on the availability of local fuels to provide exceptionally clean operation. The ECO-Rider is a four-wheeled vehicle for improved safety and comfort. The ECO-Rider offers four-wheel independent suspension, a modern braking system and easy entry and exit. For detailed information contact Yugo-Tech directly.<br> <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Product Name: </strong> </div> <div class="col-md-9"> Yugo-Tech is experienced in vehicle emission viability studies and developing and implementing vehicle emission standards and test programs. <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-12"> Densely populated cities in developing countries traditionally suffer from the effects of mobile generated pollution. In an effort to decrease this pollution, many cities or countries have initiated alternate fuel programs that have not been successful in reducing the pollution. The lack of appropriate equipment standards and the lack of mandatory emission testing have led to poor quality conversion components being used and unsatisfactory emission results. Yugo-Tech is experienced in conducting viability studies and the implementation of appropriate emission test programs. Yugo-Tech offers complete turnkey emission programs from the studies to the supply and installation of the test equipment.<br> <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Product Name: </strong> </div> <div class="col-md-9"> Modifying the vehicles to operate on clean alternate fuels such as natural gas (CNG) or propane (LPG). <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-12"> Yugo-Tech is a Canadian designer, manufacturer, supplier and installer of natural gas (CNG) and propane (LPG) vehicle conversion systems. For the domestic market, Yugo-Tech specializes in state of the art electronic closed-loop conversion systems that are OBD 11 compatible. For the export market, Yugo-Tech specializes in &quot;custom&quot; conversion systems to provide the appropriate technology for specific target market vehicles at a price that will fit into the local, host country market economy. Conversion to natural gas or propane allows the vehicles to operate much cleaner and also more economically. This allows for improved air quality at the same time as reducing the operating costs for the owner/operator. Conversion to alternate fuels also can result in the reduction of gasoline imports for particular markets.<br> <br> </div> </div> </section> </details> <details id="details-panel6"> <summary> Market </summary> <h2 class="wb-invisible"> Market profile </h2> <section class="container-fluid"> <h4> Industry sector market interests: </h4> <ul> <li>Environment</li> <li>Transportation</li> </ul> <h4> Geographic markets: </h4> <h5> Export experience: </h5> <ul> <li>Bangladesh</li> <li>China</li> <li>Egypt</li> <li>India</li> <li>Indonesia</li> <li>Iran, Islamic Republic of</li> <li>Pakistan</li> <li>Russian Federation</li> <li>United States</li> </ul> </section> </details> </div> </div> <div class="row"> <div class="col-md-12 text-right"> Last Update Date 2014-09-29 </div> </div> <!-- - Artifact ID: CBW - IMBS - CCC Search WAR - Group ID: ca.gc.ic.strategis.imbs.ccc.search - Version: 3.26 - Built-By: bamboo - Build Timestamp: 2017-03-02T21:29:28Z --> <!-- End Body Content --> <!-- Begin Body Foot --> <!-- End Body Foot --> <!-- END MAIN TABLE --> <!-- End body --> <!-- Begin footer --> <div class="row pagedetails"> <div class="col-sm-5 col-xs-12 datemod"> <dl id="wb-dtmd"> <dt class=" hidden-print">Date Modified:</dt> <dd class=" hidden-print"> <span><time>2017-03-02</time></span> </dd> </dl> </div> <div class="clear visible-xs"></div> <div class="col-sm-4 col-xs-6"> </div> <div class="col-sm-3 col-xs-6 text-right"> </div> <div class="clear visible-xs"></div> </div> </main> <footer role="contentinfo" id="wb-info"> <nav role="navigation" class="container wb-navcurr"> <h2 class="wb-inv">About government</h2> <!-- EPIC FOOTER BEGIN --> <!-- EPI-11638 Contact us --> <ul class="list-unstyled colcount-sm-2 colcount-md-3"> <li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07026.html#pageid=E048-H00000&amp;from=Industries">Contact us</a></li> <li><a href="https://www.canada.ca/en/government/dept.html">Departments and agencies</a></li> <li><a href="https://www.canada.ca/en/government/publicservice.html">Public service and military</a></li> <li><a href="https://www.canada.ca/en/news.html">News</a></li> <li><a href="https://www.canada.ca/en/government/system/laws.html">Treaties, laws and regulations</a></li> <li><a href="https://www.canada.ca/en/transparency/reporting.html">Government-wide reporting</a></li> <li><a href="http://pm.gc.ca/eng">Prime Minister</a></li> <li><a href="https://www.canada.ca/en/government/system.html">How government works</a></li> <li><a href="http://open.canada.ca/en/">Open government</a></li> </ul> </nav> <div class="brand"> <div class="container"> <div class="row"> <nav class="col-md-10 ftr-urlt-lnk"> <h2 class="wb-inv">About this site</h2> <ul> <li><a href="https://www.canada.ca/en/social.html">Social media</a></li> <li><a href="https://www.canada.ca/en/mobile.html">Mobile applications</a></li> <li><a href="http://www1.canada.ca/en/newsite.html">About Canada.ca</a></li> <li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html">Terms and conditions</a></li> <li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html#p1">Privacy</a></li> </ul> </nav> <div class="col-xs-6 visible-sm visible-xs tofpg"> <a href="#wb-cont">Top of Page <span class="glyphicon glyphicon-chevron-up"></span></a> </div> <div class="col-xs-6 col-md-2 text-right"> <object type="image/svg+xml" tabindex="-1" role="img" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/wmms-blk.svg" aria-label="Symbol of the Government of Canada"></object> </div> </div> </div> </div> </footer> <!--[if gte IE 9 | !IE ]><!--> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/wet-boew.min.js"></script> <!--<![endif]--> <!--[if lt IE 9]> <script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew2.min.js"></script> <![endif]--> <script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/theme.min.js"></script> <!-- EPI-10519 --> <span class="wb-sessto" data-wb-sessto='{"inactivity": 1800000, "reactionTime": 180000, "sessionalive": 1800000, "logouturl": "/app/ccc/srch/cccSrch.do?lang=eng&prtl=1"}'></span> <script src="/eic/home.nsf/js/jQuery.externalOpensInNewWindow.js"></script> <!-- EPI-11190 - Webtrends --> <script src="/eic/home.nsf/js/webtrends.js"></script> <script>var endTime = new Date();</script> <noscript> <div><img alt="" id="DCSIMG" width="1" height="1" src="//wt-sdc.ic.gc.ca/dcs6v67hwe0ei7wsv8g9fv50d_3k6i/njs.gif?dcsuri=/nojavascript&amp;WT.js=No&amp;WT.tv=9.4.0&amp;dcssip=www.ic.gc.ca"/></div> </noscript> <!-- /Webtrends --> <!-- JS deps --> <script src="/eic/home.nsf/js/jquery.imagesloaded.js"></script> <!-- EPI-11262 - Util JS --> <script src="/eic/home.nsf/js/_WET_4-0_utils_canada.min.js"></script> <!-- EPI-11383 --> <script src="/eic/home.nsf/js/jQuery.icValidationErrors.js"></script> <span style="display:none;" id='app-info' data-project-groupid='' data-project-artifactid='' data-project-version='' data-project-build-timestamp='' data-issue-tracking='' data-scm-sha1='' data-scm-sha1-abbrev='' data-scm-branch='' data-scm-commit-date=''></span> </body></html> <!-- End Footer --> <!-- - Artifact ID: CBW - IMBS - CCC Search WAR - Group ID: ca.gc.ic.strategis.imbs.ccc.search - Version: 3.26 - Built-By: bamboo - Build Timestamp: 2017-03-02T21:29:28Z -->
app/template/buttons.html
skasriel/collab
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <link rel="shortcut icon" href="images/favicon.png" type="image/png"> <title>Bracket Responsive Bootstrap3 Admin</title> <link href="css/style.default.css" rel="stylesheet"> <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> <!--[if lt IE 9]> <script src="js/html5shiv.js"></script> <script src="js/respond.min.js"></script> <![endif]--> </head> <body> <!-- Preloader --> <div id="preloader"> <div id="status"><i class="fa fa-spinner fa-spin"></i></div> </div> <section> <div class="leftpanel"> <div class="logopanel"> <h1><span>[</span> bracket <span>]</span></h1> </div><!-- logopanel --> <div class="leftpanelinner"> <!-- This is only visible to small devices --> <div class="visible-xs hidden-sm hidden-md hidden-lg"> <div class="media userlogged"> <img alt="" src="images/photos/loggeduser.png" class="media-object"> <div class="media-body"> <h4>John Doe</h4> <span>"Life is so..."</span> </div> </div> <h5 class="sidebartitle actitle">Account</h5> <ul class="nav nav-pills nav-stacked nav-bracket mb30"> <li><a href="profile.html"><i class="fa fa-user"></i> <span>Profile</span></a></li> <li><a href=""><i class="fa fa-cog"></i> <span>Account Settings</span></a></li> <li><a href=""><i class="fa fa-question-circle"></i> <span>Help</span></a></li> <li><a href="signout.html"><i class="fa fa-sign-out"></i> <span>Sign Out</span></a></li> </ul> </div> <h5 class="sidebartitle">Navigation</h5> <ul class="nav nav-pills nav-stacked nav-bracket"> <li><a href="index.html"><i class="fa fa-home"></i> <span>Dashboard</span></a></li> <li><a href="email.html"><span class="pull-right badge badge-success">2</span><i class="fa fa-envelope-o"></i> <span>Email</span></a></li> <li class="nav-parent"><a href=""><i class="fa fa-edit"></i> <span>Forms</span></a> <ul class="children"> <li><a href="general-forms.html"><i class="fa fa-caret-right"></i> General Forms</a></li> <li><a href="form-layouts.html"><i class="fa fa-caret-right"></i> Form Layouts</a></li> <li><a href="form-validation.html"><i class="fa fa-caret-right"></i> Form Validation</a></li> <li><a href="form-wizards.html"><i class="fa fa-caret-right"></i> Form Wizards</a></li> <li><a href="wysiwyg.html"><span class="pull-right badge badge-danger">updated</span><i class="fa fa-caret-right"></i> Text Editor</a></li> <li><a href="code-editor.html"><span class="pull-right badge badge-info">new</span><i class="fa fa-caret-right"></i> Code Editor</a></li> </ul> </li> <li class="nav-parent nav-active active"><a href=""><i class="fa fa-suitcase"></i> <span>UI Elements</span></a> <ul class="children" style="display: block"> <li class="active"><a href="buttons.html"><i class="fa fa-caret-right"></i> Buttons</a></li> <li><a href="icons.html"><i class="fa fa-caret-right"></i> Icons</a></li> <li><a href="typography.html"><i class="fa fa-caret-right"></i> Typography</a></li> <li><a href="alerts.html"><i class="fa fa-caret-right"></i> Alerts &amp; Notifications</a></li> <li><a href="modals.html"><span class="pull-right badge badge-info">new</span><i class="fa fa-caret-right"></i> Modals</a></li> <li><a href="tabs-accordions.html"><i class="fa fa-caret-right"></i> Tabs &amp; Accordions</a></li> <li><a href="sliders.html"><i class="fa fa-caret-right"></i> Sliders</a></li> <li><a href="graphs.html"><i class="fa fa-caret-right"></i> Graphs &amp; Charts</a></li> <li><a href="widgets.html"><span class="pull-right badge badge-danger">updated</span><i class="fa fa-caret-right"></i> Panels &amp; Widgets</a></li> <li><a href="extras.html"><i class="fa fa-caret-right"></i> Extras</a></li> </ul> </li> <li><a href="tables.html"><i class="fa fa-th-list"></i> <span>Tables</span></a></li> <li><a href="maps.html"><i class="fa fa-map-marker"></i> <span>Maps</span></a></li> <li class="nav-parent"><a href=""><i class="fa fa-file-text"></i> <span>Pages</span></a> <ul class="children"> <li><a href="calendar.html"><i class="fa fa-caret-right"></i> Calendar</a></li> <li><a href="media-manager.html"><i class="fa fa-caret-right"></i> Media Manager</a></li> <li><a href="timeline.html"><i class="fa fa-caret-right"></i> Timeline</a></li> <li><a href="blog-list.html"><i class="fa fa-caret-right"></i> Blog List</a></li> <li><a href="blog-single.html"><i class="fa fa-caret-right"></i> Blog Single</a></li> <li><a href="people-directory.html"><i class="fa fa-caret-right"></i> People Directory</a></li> <li><a href="profile.html"><i class="fa fa-caret-right"></i> Profile</a></li> <li><a href="invoice.html"><i class="fa fa-caret-right"></i> Invoice</a></li> <li><a href="search-results.html"><i class="fa fa-caret-right"></i> Search Results</a></li> <li><a href="blank.html"><i class="fa fa-caret-right"></i> Blank Page</a></li> <li><a href="notfound.html"><i class="fa fa-caret-right"></i> 404 Page</a></li> <li><a href="locked.html"><i class="fa fa-caret-right"></i> Locked Screen</a></li> <li><a href="signin.html"><i class="fa fa-caret-right"></i> Sign In</a></li> <li><a href="signup.html"><i class="fa fa-caret-right"></i> Sign Up</a></li> </ul> </li> <li class="nav-parent"><a href="layouts.html"><i class="fa fa-laptop"></i> <span>Skins &amp; Layouts</span></a> <ul class="children"> <li><a href="layouts.html"><i class="fa fa-caret-right"></i> General Layouts</a></li> <li><a href="horizontal-menu.html"><i class="fa fa-caret-right"></i> Top Menu</a></li> <li><a href="horizontal-menu2.html"><i class="fa fa-caret-right"></i> Top Menu w/ Sidebar</a></li> <li><a href="fixed-width.html"><i class="fa fa-caret-right"></i> Fixed Width Page</a></li> <li><a href="fixed-width2.html"><span class="pull-right badge badge-info">new</span><i class="fa fa-caret-right"></i> Fixed Width w/ Menu</a></li> </ul> </li> </ul> <div class="infosummary"> <h5 class="sidebartitle">Information Summary</h5> <ul> <li> <div class="datainfo"> <span class="text-muted">Daily Traffic</span> <h4>630, 201</h4> </div> <div id="sidebar-chart" class="chart"></div> </li> <li> <div class="datainfo"> <span class="text-muted">Average Users</span> <h4>1, 332, 801</h4> </div> <div id="sidebar-chart2" class="chart"></div> </li> <li> <div class="datainfo"> <span class="text-muted">Disk Usage</span> <h4>82.2%</h4> </div> <div id="sidebar-chart3" class="chart"></div> </li> <li> <div class="datainfo"> <span class="text-muted">CPU Usage</span> <h4>140.05 - 32</h4> </div> <div id="sidebar-chart4" class="chart"></div> </li> <li> <div class="datainfo"> <span class="text-muted">Memory Usage</span> <h4>32.2%</h4> </div> <div id="sidebar-chart5" class="chart"></div> </li> </ul> </div><!-- infosummary --> </div><!-- leftpanelinner --> </div><!-- leftpanel --> <div class="mainpanel"> <div class="headerbar"> <a class="menutoggle"><i class="fa fa-bars"></i></a> <form class="searchform" action="index.html" method="post"> <input type="text" class="form-control" name="keyword" placeholder="Search here..." /> </form> <div class="header-right"> <ul class="headermenu"> <li> <div class="btn-group"> <button class="btn btn-default dropdown-toggle tp-icon" data-toggle="dropdown"> <i class="glyphicon glyphicon-user"></i> <span class="badge">2</span> </button> <div class="dropdown-menu dropdown-menu-head pull-right"> <h5 class="title">2 Newly Registered Users</h5> <ul class="dropdown-list user-list"> <li class="new"> <div class="thumb"><a href=""><img src="images/photos/user1.png" alt="" /></a></div> <div class="desc"> <h5><a href="">Draniem Daamul (@draniem)</a> <span class="badge badge-success">new</span></h5> </div> </li> <li class="new"> <div class="thumb"><a href=""><img src="images/photos/user2.png" alt="" /></a></div> <div class="desc"> <h5><a href="">Zaham Sindilmaca (@zaham)</a> <span class="badge badge-success">new</span></h5> </div> </li> <li> <div class="thumb"><a href=""><img src="images/photos/user3.png" alt="" /></a></div> <div class="desc"> <h5><a href="">Weno Carasbong (@wenocar)</a></h5> </div> </li> <li> <div class="thumb"><a href=""><img src="images/photos/user4.png" alt="" /></a></div> <div class="desc"> <h5><a href="">Nusja Nawancali (@nusja)</a></h5> </div> </li> <li> <div class="thumb"><a href=""><img src="images/photos/user5.png" alt="" /></a></div> <div class="desc"> <h5><a href="">Lane Kitmari (@lane_kitmare)</a></h5> </div> </li> <li class="new"><a href="">See All Users</a></li> </ul> </div> </div> </li> <li> <div class="btn-group"> <button class="btn btn-default dropdown-toggle tp-icon" data-toggle="dropdown"> <i class="glyphicon glyphicon-envelope"></i> <span class="badge">1</span> </button> <div class="dropdown-menu dropdown-menu-head pull-right"> <h5 class="title">You Have 1 New Message</h5> <ul class="dropdown-list gen-list"> <li class="new"> <a href=""> <span class="thumb"><img src="images/photos/user1.png" alt="" /></span> <span class="desc"> <span class="name">Draniem Daamul <span class="badge badge-success">new</span></span> <span class="msg">Lorem ipsum dolor sit amet...</span> </span> </a> </li> <li> <a href=""> <span class="thumb"><img src="images/photos/user2.png" alt="" /></span> <span class="desc"> <span class="name">Nusja Nawancali</span> <span class="msg">Lorem ipsum dolor sit amet...</span> </span> </a> </li> <li> <a href=""> <span class="thumb"><img src="images/photos/user3.png" alt="" /></span> <span class="desc"> <span class="name">Weno Carasbong</span> <span class="msg">Lorem ipsum dolor sit amet...</span> </span> </a> </li> <li> <a href=""> <span class="thumb"><img src="images/photos/user4.png" alt="" /></span> <span class="desc"> <span class="name">Zaham Sindilmaca</span> <span class="msg">Lorem ipsum dolor sit amet...</span> </span> </a> </li> <li> <a href=""> <span class="thumb"><img src="images/photos/user5.png" alt="" /></span> <span class="desc"> <span class="name">Veno Leongal</span> <span class="msg">Lorem ipsum dolor sit amet...</span> </span> </a> </li> <li class="new"><a href="">Read All Messages</a></li> </ul> </div> </div> </li> <li> <div class="btn-group"> <button class="btn btn-default dropdown-toggle tp-icon" data-toggle="dropdown"> <i class="glyphicon glyphicon-globe"></i> <span class="badge">5</span> </button> <div class="dropdown-menu dropdown-menu-head pull-right"> <h5 class="title">You Have 5 New Notifications</h5> <ul class="dropdown-list gen-list"> <li class="new"> <a href=""> <span class="thumb"><img src="images/photos/user4.png" alt="" /></span> <span class="desc"> <span class="name">Zaham Sindilmaca <span class="badge badge-success">new</span></span> <span class="msg">is now following you</span> </span> </a> </li> <li class="new"> <a href=""> <span class="thumb"><img src="images/photos/user5.png" alt="" /></span> <span class="desc"> <span class="name">Weno Carasbong <span class="badge badge-success">new</span></span> <span class="msg">is now following you</span> </span> </a> </li> <li class="new"> <a href=""> <span class="thumb"><img src="images/photos/user3.png" alt="" /></span> <span class="desc"> <span class="name">Veno Leongal <span class="badge badge-success">new</span></span> <span class="msg">likes your recent status</span> </span> </a> </li> <li class="new"> <a href=""> <span class="thumb"><img src="images/photos/user3.png" alt="" /></span> <span class="desc"> <span class="name">Nusja Nawancali <span class="badge badge-success">new</span></span> <span class="msg">downloaded your work</span> </span> </a> </li> <li class="new"> <a href=""> <span class="thumb"><img src="images/photos/user3.png" alt="" /></span> <span class="desc"> <span class="name">Nusja Nawancali <span class="badge badge-success">new</span></span> <span class="msg">send you 2 messages</span> </span> </a> </li> <li class="new"><a href="">See All Notifications</a></li> </ul> </div> </div> </li> <li> <div class="btn-group"> <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"> <img src="images/photos/loggeduser.png" alt="" /> John Doe <span class="caret"></span> </button> <ul class="dropdown-menu dropdown-menu-usermenu pull-right"> <li><a href="profile.html"><i class="glyphicon glyphicon-user"></i> My Profile</a></li> <li><a href="#"><i class="glyphicon glyphicon-cog"></i> Account Settings</a></li> <li><a href="#"><i class="glyphicon glyphicon-question-sign"></i> Help</a></li> <li><a href="signin.html"><i class="glyphicon glyphicon-log-out"></i> Log Out</a></li> </ul> </div> </li> <li> <button id="chatview" class="btn btn-default tp-icon chat-icon"> <i class="glyphicon glyphicon-comment"></i> </button> </li> </ul> </div><!-- header-right --> </div><!-- headerbar --> <div class="pageheader"> <h2><i class="fa fa-hand-o-up"></i> Buttons <span>Subtitle goes here...</span></h2> <div class="breadcrumb-wrapper"> <span class="label">You are here:</span> <ol class="breadcrumb"> <li><a href="index.html">Bracket</a></li> <li><a href="buttons.html">UI Elements</a></li> <li class="active">Buttons</li> </ol> </div> </div> <div class="contentpanel"> <div class="panel panel-default"> <div class="panel-heading"> <div class="panel-btns"> <a href="" class="panel-close">&times;</a> <a href="" class="minimize">&minus;</a> </div> <h4 class="panel-title">Basic Styles</h4> </div> <div class="panel-body"> <div class="row"> <div class="col-md-4"> <h5 class="subtitle">Built-in Buttons</h5> <p>Use any of the available button classes to quickly create a styled button.</p> <br /> <div class="btn-demo"> <a class="btn btn-default">.btn-default</a> <a class="btn btn-primary">.btn-primary</a> <a class="btn btn-success">.btn-success</a> <a class="btn btn-warning">.btn-warning</a> <a class="btn btn-danger">.btn-danger</a> <a class="btn btn-info">.btn-info</a> <a class="btn btn-white">.btn-white</a> </div> </div> <div class="col-md-4"> <h5 class="subtitle">Custom Buttons</h5> <p>Use any of the available custom button classes to add a custom styled button to your pages.</p> <br /> <div class="btn-demo"> <a class="btn btn-brown">.btn-brown</a> <a class="btn btn-black">.btn-black</a> <a class="btn btn-pink">.btn-pink</a> <a class="btn btn-darkblue">.btn-darkblue</a> <a class="btn btn-orange">.btn-orange</a> <a class="btn btn-maroon">.btn-maroon</a> <a class="btn btn-lightblue">.btn-lightblue</a> </div> </div> <div class="col-md-4"> <h5 class="subtitle">Alternative Styles</h5> <p>This is an alternative styled buttons. You can use this by adding <code>-alt</code> to any of the button classes like <code>.btn-primary-alt</code></p> <br /> <div class="btn-demo"> <a class="btn btn-default-alt">Default</a> <a class="btn btn-primary-alt">Primary</a> <a class="btn btn-success-alt">Success</a> <a class="btn btn-warning-alt">Warning</a> <a class="btn btn-danger-alt">.Danger</a> <a class="btn btn-info-alt">Info</a> </div> </div> </div> </div><!-- panel-body --> </div><!-- panel --> <div class="row"> <div class="col-md-6"> <div class="panel panel-default"> <div class="panel-heading"> <div class="panel-btns"> <a href="" class="panel-close">&times;</a> <a href="" class="minimize">&minus;</a> </div> <h4 class="panel-title">Button Sizes</h4> </div> <div class="panel-body"> <p>Fancy larger or smaller buttons? Add <code>.btn-lg</code>, <code>.btn-sm</code>, or <code>.btn-xs</code> for additional sizes.</p> <br /> <p> <button class="btn btn-default btn-lg">Large Button</button>&nbsp; <button class="btn btn-primary btn-lg">Large Button</button> </p> <p> <button class="btn btn-default">Default Button</button>&nbsp; <button class="btn btn-primary">Default Button</button> </p> <p> <button class="btn btn-default btn-sm">Small Button</button>&nbsp; <button class="btn btn-primary btn-sm">Small Button</button> </p> <p> <button class="btn btn-default btn-xs">Extra Small Button</button>&nbsp; <button class="btn btn-primary btn-xs">Extra Small Button</button> </p> </div><!-- panel-body --> </div><!-- panel --> </div><!-- col-md-4 --> <div class="col-md-6"> <div class="panel panel-default"> <div class="panel-heading"> <div class="panel-btns"> <a href="" class="panel-close">&times;</a> <a href="" class="minimize">&minus;</a> </div> <h4 class="panel-title">Button Blocks</h4> </div> <div class="panel-body"> <p>Create block level buttons - those that span the full width of a parent - by adding <code>.btn-block</code>.</p> <br /> <p><button class="btn btn-default btn-lg btn-block">Block Level Button</button></p> <p><button class="btn btn-primary btn-block">Block Level Button</button></p> <p><button class="btn btn-white btn-sm btn-block">Block Level Button</button></p> </div><!-- panel-body --> </div><!-- panel --> </div><!-- col-md-4 --> </div><!-- row --> <div class="panel panel-default"> <div class="panel-heading"> <div class="panel-btns"> <a href="" class="panel-close">&times;</a> <a href="" class="minimize">&minus;</a> </div> <h4 class="panel-title">Button Groups</h4> <p>Group a series of buttons together on a single line with the button group. </p> </div> <div class="panel-body"> <div class="row"> <div class="col-md-4"> <p>Wrap a series of buttons with <code>.btn</code> in <code>.btn-group</code>.</p> <div class="btn-group"> <button type="button" class="btn btn-default">Left</button> <button type="button" class="btn btn-default">Middle</button> <button type="button" class="btn btn-default">Right</button> </div> <div class="btn-group"> <button type="button" class="btn btn-primary">Left</button> <button type="button" class="btn btn-primary">Middle</button> <button type="button" class="btn btn-primary">Right</button> </div> </div><!-- col-md-4 --> <div class="col-md-4"> <p>Combine sets of <code>btn-group</code> into a <code>btn-toolbar</code> for more complex components.</p> <div class="btn-toolbar"> <div class="btn-group"> <button type="button" class="btn btn-default">1</button> <button type="button" class="btn btn-default">2</button> <button type="button" class="btn btn-default">3</button> </div> <div class="btn-group"> <button type="button" class="btn btn-primary">Next</button> <button type="button" class="btn btn-primary">Last</button> </div> </div><!-- btn-toolbar --> </div><!-- col-md-4 --> <div class="col-md-4"> <p>Place a <code>.btn-group</code> within another <code>.btn-group</code> when you want dropdown menus mixed with a series of buttons.</p> <div class="btn-group"> <button type="button" class="btn btn-default">1</button> <button type="button" class="btn btn-default">2</button> <div class="btn-group"> <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"> Dropdown <span class="caret"></span> </button> <ul class="dropdown-menu"> <li><a href="#">Dropdown link</a></li> <li><a href="#">Dropdown link</a></li> </ul> </div> </div><!-- btn-group --> </div><!-- col-md-4 --> </div> </div><!-- panel-body --> </div><!-- panel --> <div class="panel panel-default"> <div class="panel-heading"> <div class="panel-btns"> <a href="" class="panel-close">&times;</a> <a href="" class="minimize">&minus;</a> </div> <h4 class="panel-title">Button Dropdowns</h4> <p>Use any button to trigger a dropdown menu by placing it within a .btn-group and providing the proper menu markup.</p> </div><!-- panel-heading --> <div class="panel-body"> <div class="row"> <div class="col-md-4"> <h5 class="subtitle">Single Button Dropdowns</h5> <p>Turn a button into a dropdown toggle with some basic markup changes.</p> <br /> <div class="btn-group mr5"> <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"> Action <span class="caret"></span> </button> <ul class="dropdown-menu" role="menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div><!-- btn-group --> <div class="btn-group mr5"> <button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown"> Action <span class="caret"></span> </button> <ul class="dropdown-menu" role="menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div><!-- btn-group --> <div class="btn-group mr5"> <button type="button" class="btn btn-success dropdown-toggle" data-toggle="dropdown"> Action <span class="caret"></span> </button> <ul class="dropdown-menu" role="menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div><!-- btn-group --> <div class="btn-group mr5"> <button type="button" class="btn btn-warning dropdown-toggle" data-toggle="dropdown"> Action <span class="caret"></span> </button> <ul class="dropdown-menu" role="menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div><!-- btn-group --> <div class="btn-group mr5"> <button type="button" class="btn btn-danger dropdown-toggle" data-toggle="dropdown"> Action <span class="caret"></span> </button> <ul class="dropdown-menu" role="menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div><!-- btn-group --> <div class="btn-group"> <button type="button" class="btn btn-white dropdown-toggle" data-toggle="dropdown"> Action <span class="caret"></span> </button> <ul class="dropdown-menu" role="menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div><!-- btn-group --> </div><!-- col-md-4 --> <div class="col-md-4"> <h5 class="subtitle">Split Button Dropdowns</h5> <p>Similarly, create split button dropdowns with the same markup changes, only with a separate button.</p> <br /> <div class="btn-group mr5"> <button type="button" class="btn btn-default">Action</button> <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"> <span class="caret"></span> <span class="sr-only">Toggle Dropdown</span> </button> <ul class="dropdown-menu" role="menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div><!-- btn-group --> <div class="btn-group mr5"> <button type="button" class="btn btn-primary">Action</button> <button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown"> <span class="caret"></span> <span class="sr-only">Toggle Dropdown</span> </button> <ul class="dropdown-menu" role="menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div><!-- btn-group --> <div class="btn-group mr5"> <button type="button" class="btn btn-success">Action</button> <button type="button" class="btn btn-success dropdown-toggle" data-toggle="dropdown"> <span class="caret"></span> <span class="sr-only">Toggle Dropdown</span> </button> <ul class="dropdown-menu" role="menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div><!-- btn-group --> <div class="btn-group mr5"> <button type="button" class="btn btn-warning">Action</button> <button type="button" class="btn btn-warning dropdown-toggle" data-toggle="dropdown"> <span class="caret"></span> <span class="sr-only">Toggle Dropdown</span> </button> <ul class="dropdown-menu" role="menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div><!-- btn-group --> <div class="btn-group mr5"> <button type="button" class="btn btn-danger">Action</button> <button type="button" class="btn btn-danger dropdown-toggle" data-toggle="dropdown"> <span class="caret"></span> <span class="sr-only">Toggle Dropdown</span> </button> <ul class="dropdown-menu" role="menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div><!-- btn-group --> <div class="btn-group"> <button type="button" class="btn btn-white">Action</button> <button type="button" class="btn btn-white dropdown-toggle" data-toggle="dropdown"> <span class="caret"></span> <span class="sr-only">Toggle Dropdown</span> </button> <ul class="dropdown-menu" role="menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div><!-- btn-group --> </div><!-- col-md-4 --> <div class="col-md-4"> <h5 class="subtitle">Dropdown Sizing</h5> <p>Button dropdowns work with buttons of all sizes.</p> <br /> <div class="btn-group mr5"> <button type="button" class="btn btn-lg btn-default">Action</button> <button type="button" class="btn btn-lg btn-default dropdown-toggle" data-toggle="dropdown"> <span class="caret"></span> <span class="sr-only">Toggle Dropdown</span> </button> <ul class="dropdown-menu" role="menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div><!-- btn-group --> <div class="btn-group mr5"> <button type="button" class="btn btn-white">Action</button> <button type="button" class="btn btn-white dropdown-toggle" data-toggle="dropdown"> <span class="caret"></span> <span class="sr-only">Toggle Dropdown</span> </button> <ul class="dropdown-menu" role="menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div><!-- btn-group --> <div class="btn-group"> <button type="button" class="btn btn-xs btn-primary">Action</button> <button type="button" class="btn btn-xs btn-primary dropdown-toggle" data-toggle="dropdown"> <span class="caret"></span> <span class="sr-only">Toggle Dropdown</span> </button> <ul class="dropdown-menu" role="menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div><!-- btn-group --> </div><!-- col-md-4 --> </div><!-- row --> </div><!-- panel-body --> </div><!-- panel --> </div><!-- contentpanel --> </div><!-- mainpanel --> <div class="rightpanel"> <!-- Nav tabs --> <ul class="nav nav-tabs nav-justified"> <li class="active"><a href="#rp-alluser" data-toggle="tab"><i class="fa fa-users"></i></a></li> <li><a href="#rp-favorites" data-toggle="tab"><i class="fa fa-heart"></i></a></li> <li><a href="#rp-history" data-toggle="tab"><i class="fa fa-clock-o"></i></a></li> <li><a href="#rp-settings" data-toggle="tab"><i class="fa fa-gear"></i></a></li> </ul> <!-- Tab panes --> <div class="tab-content"> <div class="tab-pane active" id="rp-alluser"> <h5 class="sidebartitle">Online Users</h5> <ul class="chatuserlist"> <li class="online"> <div class="media"> <a href="#" class="pull-left media-thumb"> <img alt="" src="images/photos/userprofile.png" class="media-object"> </a> <div class="media-body"> <strong>Eileen Sideways</strong> <small>Los Angeles, CA</small> </div> </div><!-- media --> </li> <li class="online"> <div class="media"> <a href="#" class="pull-left media-thumb"> <img alt="" src="images/photos/user1.png" class="media-object"> </a> <div class="media-body"> <span class="pull-right badge badge-danger">2</span> <strong>Zaham Sindilmaca</strong> <small>San Francisco, CA</small> </div> </div><!-- media --> </li> <li class="online"> <div class="media"> <a href="#" class="pull-left media-thumb"> <img alt="" src="images/photos/user2.png" class="media-object"> </a> <div class="media-body"> <strong>Nusja Nawancali</strong> <small>Bangkok, Thailand</small> </div> </div><!-- media --> </li> <li class="online"> <div class="media"> <a href="#" class="pull-left media-thumb"> <img alt="" src="images/photos/user3.png" class="media-object"> </a> <div class="media-body"> <strong>Renov Leongal</strong> <small>Cebu City, Philippines</small> </div> </div><!-- media --> </li> <li class="online"> <div class="media"> <a href="#" class="pull-left media-thumb"> <img alt="" src="images/photos/user4.png" class="media-object"> </a> <div class="media-body"> <strong>Weno Carasbong</strong> <small>Tokyo, Japan</small> </div> </div><!-- media --> </li> </ul> <div class="mb30"></div> <h5 class="sidebartitle">Offline Users</h5> <ul class="chatuserlist"> <li> <div class="media"> <a href="#" class="pull-left media-thumb"> <img alt="" src="images/photos/user5.png" class="media-object"> </a> <div class="media-body"> <strong>Eileen Sideways</strong> <small>Los Angeles, CA</small> </div> </div><!-- media --> </li> <li> <div class="media"> <a href="#" class="pull-left media-thumb"> <img alt="" src="images/photos/user2.png" class="media-object"> </a> <div class="media-body"> <strong>Zaham Sindilmaca</strong> <small>San Francisco, CA</small> </div> </div><!-- media --> </li> <li> <div class="media"> <a href="#" class="pull-left media-thumb"> <img alt="" src="images/photos/user3.png" class="media-object"> </a> <div class="media-body"> <strong>Nusja Nawancali</strong> <small>Bangkok, Thailand</small> </div> </div><!-- media --> </li> <li> <div class="media"> <a href="#" class="pull-left media-thumb"> <img alt="" src="images/photos/user4.png" class="media-object"> </a> <div class="media-body"> <strong>Renov Leongal</strong> <small>Cebu City, Philippines</small> </div> </div><!-- media --> </li> <li> <div class="media"> <a href="#" class="pull-left media-thumb"> <img alt="" src="images/photos/user5.png" class="media-object"> </a> <div class="media-body"> <strong>Weno Carasbong</strong> <small>Tokyo, Japan</small> </div> </div><!-- media --> </li> <li> <div class="media"> <a href="#" class="pull-left media-thumb"> <img alt="" src="images/photos/user4.png" class="media-object"> </a> <div class="media-body"> <strong>Renov Leongal</strong> <small>Cebu City, Philippines</small> </div> </div><!-- media --> </li> <li> <div class="media"> <a href="#" class="pull-left media-thumb"> <img alt="" src="images/photos/user5.png" class="media-object"> </a> <div class="media-body"> <strong>Weno Carasbong</strong> <small>Tokyo, Japan</small> </div> </div><!-- media --> </li> </ul> </div> <div class="tab-pane" id="rp-favorites"> <h5 class="sidebartitle">Favorites</h5> <ul class="chatuserlist"> <li class="online"> <div class="media"> <a href="#" class="pull-left media-thumb"> <img alt="" src="images/photos/user2.png" class="media-object"> </a> <div class="media-body"> <strong>Eileen Sideways</strong> <small>Los Angeles, CA</small> </div> </div><!-- media --> </li> <li> <div class="media"> <a href="#" class="pull-left media-thumb"> <img alt="" src="images/photos/user1.png" class="media-object"> </a> <div class="media-body"> <strong>Zaham Sindilmaca</strong> <small>San Francisco, CA</small> </div> </div><!-- media --> </li> <li> <div class="media"> <a href="#" class="pull-left media-thumb"> <img alt="" src="images/photos/user3.png" class="media-object"> </a> <div class="media-body"> <strong>Nusja Nawancali</strong> <small>Bangkok, Thailand</small> </div> </div><!-- media --> </li> <li class="online"> <div class="media"> <a href="#" class="pull-left media-thumb"> <img alt="" src="images/photos/user4.png" class="media-object"> </a> <div class="media-body"> <strong>Renov Leongal</strong> <small>Cebu City, Philippines</small> </div> </div><!-- media --> </li> <li class="online"> <div class="media"> <a href="#" class="pull-left media-thumb"> <img alt="" src="images/photos/user5.png" class="media-object"> </a> <div class="media-body"> <strong>Weno Carasbong</strong> <small>Tokyo, Japan</small> </div> </div><!-- media --> </li> </ul> </div> <div class="tab-pane" id="rp-history"> <h5 class="sidebartitle">History</h5> <ul class="chatuserlist"> <li class="online"> <div class="media"> <a href="#" class="pull-left media-thumb"> <img alt="" src="images/photos/user4.png" class="media-object"> </a> <div class="media-body"> <strong>Eileen Sideways</strong> <small>Hi hello, ctc?... would you mind if I go to your...</small> </div> </div><!-- media --> </li> <li> <div class="media"> <a href="#" class="pull-left media-thumb"> <img alt="" src="images/photos/user2.png" class="media-object"> </a> <div class="media-body"> <strong>Zaham Sindilmaca</strong> <small>This is to inform you that your product that we...</small> </div> </div><!-- media --> </li> <li> <div class="media"> <a href="#" class="pull-left media-thumb"> <img alt="" src="images/photos/user3.png" class="media-object"> </a> <div class="media-body"> <strong>Nusja Nawancali</strong> <small>Are you willing to have a long term relat...</small> </div> </div><!-- media --> </li> </ul> </div> <div class="tab-pane pane-settings" id="rp-settings"> <h5 class="sidebartitle mb20">Settings</h5> <div class="form-group"> <label class="col-xs-8 control-label">Show Offline Users</label> <div class="col-xs-4 control-label"> <div class="toggle toggle-success"></div> </div> </div> <div class="form-group"> <label class="col-xs-8 control-label">Enable History</label> <div class="col-xs-4 control-label"> <div class="toggle toggle-success"></div> </div> </div> <div class="form-group"> <label class="col-xs-8 control-label">Show Full Name</label> <div class="col-xs-4 control-label"> <div class="toggle-chat1 toggle-success"></div> </div> </div> <div class="form-group"> <label class="col-xs-8 control-label">Show Location</label> <div class="col-xs-4 control-label"> <div class="toggle toggle-success"></div> </div> </div> </div><!-- tab-pane --> </div><!-- tab-content --> </div><!-- rightpanel --> </section> <script src="js/jquery-1.10.2.min.js"></script> <script src="js/jquery-migrate-1.2.1.min.js"></script> <script src="js/bootstrap.min.js"></script> <script src="js/modernizr.min.js"></script> <script src="js/jquery.sparkline.min.js"></script> <script src="js/toggles.min.js"></script> <script src="js/retina.min.js"></script> <script src="js/jquery.cookies.js"></script> <script src="js/custom.js"></script> </body> </html>
public/Windows 10 x64 (18363.628)/_RTL_BITMAP.html
epikcraw/ggool
<html><body> <h4>Windows 10 x64 (18363.628)</h4><br> <h2>_RTL_BITMAP</h2> <font face="arial"> +0x000 SizeOfBitMap : Uint4B<br> +0x008 Buffer : Ptr64 Uint4B<br> </font></body></html>
public/css/bp/grid.css
raul/happywiki
/* -------------------------------------------------------------- grid.css * Sets up an easy-to-use grid of 24 columns. By default, the grid is 950px wide, with 24 columns spanning 30px, and a 10px margin between columns. If you need fewer or more columns, namespaces or semantic element names, use the compressor script (lib/compress.rb) Note: Changes made in this file will not be applied when using the compressor: make changes in lib/blueprint/grid.css.rb -------------------------------------------------------------- */ /* A container should group all your columns. */ .container { width: 950px; margin: 0 auto; } /* Use this class on any .span / container to see the grid. */ .showgrid { background: url(/css/bp/grid.png); } /* Columns -------------------------------------------------------------- */ /* Sets up basic grid floating and margin. */ .column, div.span-1, div.span-2, div.span-3, div.span-4, div.span-5, div.span-6, div.span-7, div.span-8, div.span-9, div.span-10, div.span-11, div.span-12, div.span-13, div.span-14, div.span-15, div.span-16, div.span-17, div.span-18, div.span-19, div.span-20, div.span-21, div.span-22, div.span-23, div.span-24 { float: left; margin-right: 10px; } /* The last column in a row needs this class. */ .last, div.last { margin-right: 0; } /* Use these classes to set the width of a column. */ .span-1 { width: 30px; } .span-2 { width: 70px; } .span-3 { width: 110px; } .span-4 { width: 150px; } .span-5 { width: 190px; } .span-6 { width: 230px; } .span-7 { width: 270px; } .span-8 { width: 310px; } .span-9 { width: 350px; } .span-10 { width: 390px; } .span-11 { width: 430px; } .span-12 { width: 470px; } .span-13 { width: 510px; } .span-14 { width: 550px; } .span-15 { width: 590px; } .span-16 { width: 630px; } .span-17 { width: 670px; } .span-18 { width: 710px; } .span-19 { width: 750px; } .span-20 { width: 790px; } .span-21 { width: 830px; } .span-22 { width: 870px; } .span-23 { width: 910px; } .span-24 { width: 950px; margin: 0; } /* Add these to a column to append empty cols. */ .append-1 { padding-right: 40px; } .append-2 { padding-right: 80px; } .append-3 { padding-right: 120px; } .append-4 { padding-right: 160px; } .append-5 { padding-right: 200px; } .append-6 { padding-right: 240px; } .append-7 { padding-right: 280px; } .append-8 { padding-right: 320px; } .append-9 { padding-right: 360px; } .append-10 { padding-right: 400px; } .append-11 { padding-right: 440px; } .append-12 { padding-right: 480px; } .append-13 { padding-right: 520px; } .append-14 { padding-right: 560px; } .append-15 { padding-right: 600px; } .append-16 { padding-right: 640px; } .append-17 { padding-right: 680px; } .append-18 { padding-right: 720px; } .append-19 { padding-right: 760px; } .append-20 { padding-right: 800px; } .append-21 { padding-right: 840px; } .append-22 { padding-right: 880px; } .append-23 { padding-right: 920px; } /* Add these to a column to prepend empty cols. */ .prepend-1 { padding-left: 40px; } .prepend-2 { padding-left: 80px; } .prepend-3 { padding-left: 120px; } .prepend-4 { padding-left: 160px; } .prepend-5 { padding-left: 200px; } .prepend-6 { padding-left: 240px; } .prepend-7 { padding-left: 280px; } .prepend-8 { padding-left: 320px; } .prepend-9 { padding-left: 360px; } .prepend-10 { padding-left: 400px; } .prepend-11 { padding-left: 440px; } .prepend-12 { padding-left: 480px; } .prepend-13 { padding-left: 520px; } .prepend-14 { padding-left: 560px; } .prepend-15 { padding-left: 600px; } .prepend-16 { padding-left: 640px; } .prepend-17 { padding-left: 680px; } .prepend-18 { padding-left: 720px; } .prepend-19 { padding-left: 760px; } .prepend-20 { padding-left: 800px; } .prepend-21 { padding-left: 840px; } .prepend-22 { padding-left: 880px; } .prepend-23 { padding-left: 920px; } /* Border on right hand side of a column. */ .border { padding-right: 4px; margin-right: 5px; border-right: 1px solid #eee; } /* Border with more whitespace, spans one column. */ .colborder { padding-right: 24px; margin-right: 25px; border-right: 1px solid #eee; } /* Use these classes on an element to push it into the next column, or to pull it into the previous column. */ .pull-1 { margin-left: -40px; } .pull-2 { margin-left: -80px; } .pull-3 { margin-left: -120px; } .pull-4 { margin-left: -160px; } .pull-5 { margin-left: -200px; } .pull-1, .pull-2, .pull-3, .pull-4, .pull-5 { float:left; position:relative; } .push-1 { margin: 0 -40px 1.5em 40px; } .push-2 { margin: 0 -80px 1.5em 80px; } .push-3 { margin: 0 -120px 1.5em 120px; } .push-4 { margin: 0 -160px 1.5em 160px; } .push-5 { margin: 0 -200px 1.5em 200px; } .push-1, .push-2, .push-3, .push-4, .push-5 { float: right; position:relative; } /* Misc classes and elements -------------------------------------------------------------- */ /* In case you need to add a gutter above/below an element */ .prepend-top { margin-top:1.5em; } .append-bottom { margin-bottom:1.5em; } /* Use a .box to create a padded box inside a column. */ .box { padding: 1.5em; margin-bottom: 1.5em; background: #E5ECF9; } /* Use this to create a horizontal ruler across a column. */ hr { background: #ddd; color: #ddd; clear: both; float: none; width: 100%; height: .1em; margin: 0 0 1.45em; border: none; } hr.space { background: #fff; color: #fff; } /* Clearing floats without extra markup Based on How To Clear Floats Without Structural Markup by PiE [http://www.positioniseverything.net/easyclearing.html] */ .clearfix:after, .container:after { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; overflow:hidden; } .clearfix, .container {display: block;} /* Regular clearing apply to column that should drop below previous ones. */ .clear { clear:both; }
src/CSE/ReservacionesBundle/Resources/public/css/contenedor.css
jesusst4/CSEReservaciones
/* To change this license header, choose License Headers in Project Properties. To change this template file, choose Tools | Templates and open the template in the editor. */ /* Created on : 19/06/2014, 10:48:30 AM Author : jsoto */ .divContenedor{ width: 1000px; height: auto; margin: auto; margin-bottom: 50px; } .divContenedorLogin{ width: 400px; height: auto; margin: auto; margin-bottom: 50px; margin-top: 50px; } .titulo{ margin-top: 20px; font-family: sans-serif; font-size: 22px; } .table{ margin-top: 20px; font-family: sans-serif; /*border-top: 1px solid #5eb5e0;*/ border-collapse: collapse; width: 100%; margin-bottom: 1em; float: left; } .table tr { border: 0; } .table tr>td:first-child,tr>th:first-child { padding-left: 1.25em; } .table tr>td:last-child,tr>th:last-child { padding-right: 1.25em; } .table td,th { line-height: 1.5em; padding: 0.5em 0.6em; text-align: left; vertical-align: top; } .table th { background-color: #efefef; color: #666666; line-height: 1.7em; padding: 0.2em 0.6em; } .table thead th { width:1000px; white-space:nowrap; font-weight: bold; background:lightskyblue; padding-left:2px; font: caption; color:#ffffff; /*color: red;*/ } .table th a { display: block; text-decoration: none; } .table th a:link,th a:visited { color: #666666; } .table th a:hover,th a:focus { color: #333333; } .txt{ border:2px groove ; font-family:sans-serif; font-size:14px; width: 250px; height: 20px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; } label { font-family:sans-serif; font-size:14px; margin-right: 8px; } form div { padding: 7px; } form div label{display: block; float: left; height: 20px; width: 150px;color: grey; font-weight: bold;} select:focus, textarea:focus{background-color: #FFFDD4;} h2{ font-family: sans-serif; font-size: 20px; margin-bottom: 10px; margin-top: 10px; color: black; } a{ text-decoration: none; font-family: sans-serif; font-size: 14px; color: blue; } .btn{ /* float: right; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; font-family: sans-serif; font-size: 14px; color: #ffffff; width: auto; height: 30px; margin-top: 7px;*/ padding: 2px 5px 2px 5px; font-size: 14px; color: #FFF; border: 2px solid blue; background-color: blue; -moz-border-radius: 10px 10px 10px 10px; -webkit-border-radius: 10px 10px 10px 10px; cursor: pointer; float: right; margin-top: -5px; } .btnBuscar{ padding: 2px 5px 2px 5px; font-size: 14px; color: #FFF; border: 2px solid blue; background-color: blue; -moz-border-radius: 10px 10px 10px 10px; -webkit-border-radius: 10px 10px 10px 10px; cursor: pointer; float: right; margin-top: -5px; font-family: sans-serif; font-size: 14px; width: auto; height: 25px; /*margin-right: 500px;*/ } .txtTotal{ border:2px solid lightsteelblue; font-family:sans-serif; font-size:14px; width: 250px; height: 20px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; background-color: lightsteelblue; border-color: steelblue; } .btnTotal{ -moz-border-radius: 10px 10px 10px 10px; -webkit-border-radius: 10px 10px 10px 10px; float: right; margin-right: 20px; border: 2px solid blue; background-color: blue; font-family: sans-serif; font-size: 14px; color: #ffffff; width: auto; padding: 2px 5px 2px 5px; cursor: pointer; margin-top: -10px; } /*CALENDARIO*/ .tcalInput { background: url('/bundles/csereservaciones/img_calendario/calendar.png') 100% 50% no-repeat; padding-right: 20px; cursor: pointer; } #tcal { position: absolute; visibility: hidden; z-index: 100; width:22%; background:#fbfbfb; margin-top: 2px; padding: 0 2px 2px 2px; border:1px solid #e5e5e5; font-size:12px; background:#fbfbfb; -moz-box-shadow:inset 1px 1px 2px rgba(200,200,200,0.2); -webkit-box-shadow:inset 1px 1px 2px rgba(200,200,200,0.2); box-shadow:inset 1px 1px 2px rgba(200,200,200,0.2); -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='silver')"; filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='silver'); } #tcalControls { border-collapse: collapse; border: 0; width: 100%; } #tcalControls td { border-collapse: collapse; border: 0; padding: 0; width: 16px; background-position: 50% 50%; background-repeat: no-repeat; cursor: pointer; } #tcalControls th { border-collapse: collapse; border: 0; padding: 0; height: 10px; line-height: 25px; font-size: 10px; text-align: center; font-family: Tahoma, Geneva, sans-serif; font-weight: bold; white-space: nowrap; } #tcalPrevYear { background-image: url('/bundles/csereservaciones/img_calendario/prev_year.gif'); } #tcalPrevMonth { background-image: url('/bundles/csereservaciones/img_calendario/prev_mon.gif'); } #tcalNextMonth { background-image: url('/bundles/csereservaciones/img_calendario/next_mon.gif'); } #tcalNextYear { background-image: url('/bundles/csereservaciones/img_calendario/next_year.gif'); } #tcalGrid { border-collapse: collapse; border: 1px solid silver; width: 100%; } #tcalGrid th { border: 1px solid silver; border-collapse: collapse; padding: 3px 0; text-align: center; font-family: Tahoma, Geneva, sans-serif; font-size: 10px; background-color: cadetblue; color: white; } #tcalGrid td { border: 0; border-collapse: collapse; padding: 2px 0; text-align: center; font-family: Tahoma, Geneva, sans-serif; width: 14%; font-size: 11px; cursor: pointer; } #tcalGrid td.tcalOtherMonth { color: cadetblue; } #tcalGrid td.tcalWeekend { background-color:lightgreen; } #tcalGrid td.tcalToday { border: 1px solid green; } #tcalGrid td.tcalSelected { background-color:forestgreen; } .precioTable{ width: 100px; } ul{ font-size: 14px; font-family: sans-serif; color: red; } .divContenidoIzq { width: 470px; height: auto; float: left; overflow: hidden; } .divContenidoDer { width: 500px; height: auto; float: right; overflow: hidden; } .divContIzqPeq { width: 190px; height: 26px; float: left; text-align: right; padding-right: 10px; margin-top: 20px; } .divContDerPeq { width: 290px; height: 30px; float: left; text-align: left; padding-left: 10px; margin-top: 20px; } .label{ display: block; float: left; width: 150px; color: grey; font-weight: bold; text-align: right; } .labelTotal{ display: block; color: black; font-weight: bold; font-size: 20px; } .labelShow{ color: black; font-size: 16px; font-family: sans-serif; text-align: left; /*margin-right: 20px;*/ } .labelNegr{ font-family:sans-serif; font-size:16px; margin-right: 8px; text-align: right; } .imagen1{ margin-top: 15px; width: 250px; height: 160px; margin-left: 20px; float: left; } /*Parrafos*/ .divParrafoDer { margin-top: 15px; /*background-color:#FF0;/*amarillo*/ text-align: justify; width: 700px; margin-bottom: 20px; overflow: auto; float: right; font-family: Arial; font-size: 16px; font-style: normal; font-weight: normal; font-variant: normal; } .divParrafoIzq { /*background-color:#FF0;/*amarillo*/ text-align: justify; width: 700px; margin-bottom: 20px; overflow: auto; float: left; font-family: Arial; font-size: 16px; font-style: normal; font-weight: normal; font-variant: normal; }
categories/技术向/page/2/index.html
mengrenzi/mengrenzi.github.io
<!DOCTYPE html> <html lang="zh-CN"> <head> <!-- hexo-inject:begin --><!-- hexo-inject:end --><meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="theme-color" content="#202020" /> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="keywords" content="undefined" /> <meta name="description" content="仁梓小舍,null" /> <link rel="icon" type="image/x-icon" href="/img/logo.png"> <title> Category: 技术向 [ 仁梓小舍 ] </title> <!-- stylesheets list from config.yml --> <link rel="stylesheet" href="//cdn.bootcss.com/pure/1.0.0/pure-min.css"> <link rel="stylesheet" href="/css/microb.css"> <link rel="stylesheet" href="/css/prism.css" type="text/css"><!-- hexo-inject:begin --><!-- hexo-inject:end --></head> <body> <!-- hexo-inject:begin --><!-- hexo-inject:end --><nav class="home-menu pure-menu pure-menu-horizontal pure-menu-fixed"> <ul class="pure-menu-list float-r clearfix"> <li class="pure-menu-item pure-menu-has-children pure-menu-allow-hover"> <a id="menu-main" class="pure-menu-link" href="javascript:;"> <img class="menu-icon" src="/img/logo.png" alt="MENU"> </a> <ul class="pure-menu-children"> <li class="pure-menu-item"><a href="/" class="pure-menu-link"> 文章</a></li> <li class="pure-menu-item"><a href="/about" class="pure-menu-link"> 关于</a></li> <li class="pure-menu-item"><a href="/archives" class="pure-menu-link"> 归档</a></li> </ul> </li> </ul> <a class="pure-menu-heading" href="/"> <h1 class="title"> 仁梓小舍 </h1> <!-- <span>null</span> --> </a> <!-- --> </nav> <div class="container" id="content-outer"> <div class="inner" id="content-inner"> <div id="category"> <h1>技术向</h1> <div class="category-item"> <a href="/2017/12/07/区块链基础/"> 区块链基础知识 </a> <time datetime="2017-12-07T12:43:59.000Z"> 2017-12-07 </time> </div> <div class="category-item"> <a href="/2017/12/06/区块链技术入门资料/"> 区块链技术资料索引 </a> <time datetime="2017-12-06T14:24:54.000Z"> 2017-12-06 </time> </div> <div class="category-item"> <a href="/2017/06/17/linearalegebra/"> Essence of Linear Alegebra </a> <time datetime="2017-06-17T05:31:25.000Z"> 2017-06-17 </time> </div> <div class="category-item"> <a href="/2017/06/15/Mathjax与LaTex公式简介/"> Mathjax与LaTex公式简介 </a> <time datetime="2017-06-15T05:41:51.000Z"> 2017-06-15 </time> </div> <div class="category-item"> <a href="/2017/06/15/Hexo添加MathJax支持/"> Hexo添加 MathJax 支持 </a> <time datetime="2017-06-15T04:42:02.000Z"> 2017-06-15 </time> </div> <div class="category-item"> <a href="/2017/06/06/experiment2-IT/"> IT项目管理 Project 2007 实验报告二 </a> <time datetime="2017-06-06T01:48:15.000Z"> 2017-06-06 </time> </div> <div class="category-item"> <a href="/2017/06/05/ITmanagementExperiment1/"> IT项目管理 Project 2007 实验报告一 </a> <time datetime="2017-06-05T13:54:39.000Z"> 2017-06-05 </time> </div> <div class="category-item"> <a href="/2017/05/23/代码重构/"> 代码重构 </a> <time datetime="2017-05-23T08:20:45.000Z"> 2017-05-23 </time> </div> <div class="category-item"> <a href="/2017/05/23/EquivalencePartitioning/"> Equivalence Partitioning </a> <time datetime="2017-05-23T07:01:17.000Z"> 2017-05-23 </time> </div> <div class="category-item"> <a href="/2017/05/22/Hexo常用命令/"> Hexo常用命令 </a> <time datetime="2017-05-22T15:46:53.000Z"> 2017-05-22 </time> </div> </div> <a class="extend prev" rel="prev" href="/categories/技术向/">Prev</a><a class="page-number" href="/categories/技术向/">1</a><span class="page-number current">2</span><a class="page-number" href="/categories/技术向/page/3/">3</a><a class="extend next" rel="next" href="/categories/技术向/page/3/">Next</a> </div> <nav class="page-nav text-center"> <a class="extend prev" rel="prev" href="/categories/技术向/">&lt;</a><a class="page-number" href="/categories/技术向/">1</a><span class="page-number current">2</span><a class="page-number" href="/categories/技术向/page/3/">3</a><a class="extend next" rel="next" href="/categories/技术向/page/3/">&gt;</a> </nav> </div> <footer class="footer text-center"> <div id="bottom-inner"> <a href="http://hexo.io" target="_blank" class="footer-link">Hexo</a> <a href="https://github.com/microacup/hexo-theme-micorb" target="_blank" class="footer-link">Theme microb</a> </div> </footer> <!-- <script> var titleTime,originTitle=document.title;document.addEventListener("visibilitychange",function(){document.hidden?(document.title="[闷声发大财中...] "+originTitle,clearTimeout(titleTime)):(document.title="[+1s] "+originTitle,titleTime=setTimeout(function(){document.title=originTitle},2e3))}); </script> --> <script> (function (window, document) { window.requestAnimationFrame = (function () { return window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || window.oRequestAnimationFrame || window.msRequestAnimationFrame || function (callback) { setTimeout(callback, 1000 / 60); } })(); function init() { addMenuEvent(); } init(); function addMenuEvent() { var menu = document.getElementById('menu-main-post'); if (menu) { var toc = document.getElementById('toc'); menu.title = toc ? '目录' : '回到顶部'; menu.onclick = function () { if (toc) { if (toc.style.display == 'block') { toc.style.display = 'none'; } else { toc.style.display = 'block'; } } else { returnTop(); } }; } } var timer = null; function returnTop() { cancelAnimationFrame(timer); timer = requestAnimationFrame(function fn() { var oTop = document.body.scrollTop || document.documentElement.scrollTop; if (oTop > 0) { document.body.scrollTop = document.documentElement.scrollTop = oTop - 50; timer = requestAnimationFrame(fn); } else { cancelAnimationFrame(timer); } }); } })(window, document); </script><!-- hexo-inject:begin --><!-- hexo-inject:end --> </body> </html>
index.html
riston/qshot
<!DOCTYPE html > <html> <head> <meta charset="utf-8"> <title>QShot</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <body > <div id="main-container"></div> </body> </html>
_src/css/check.css
elbitdigital/rotasul
/* Check */ .Check { display: block; position: relative; padding-left: 30px; margin-bottom: 15px; cursor: pointer; /*font-size: 18px;*/ /*background-color: #cecece;*/ /*max-width: 50%;*/ } /* Check input */ .Check input { position: absolute; z-index: -1; opacity: 0; } /* Check indicator (input display [square or circle]) */ .Check-indicator { position: absolute; top: 2px; left: 0; height: 20px; width: 20px; background: #bdbdbd; } /* Check indicator for radio input */ .Check--radio .Check-indicator { border-radius: 50%; } /* Check indicator hover / focus */ .Check:hover input ~ .Check-indicator, .Check input:focus ~ .Check-indicator { background: #ccc; } /* Checked input */ .Check input:checked ~ .Check-indicator { background: #ffa000; } /* Checked input and focused */ .Check:hover input:not([disabled]):checked ~ .Check-indicator, .Check input:checked:focus ~ .Check-indicator { background: #ff8f00; } /* Check indicator after */ .Check-indicator:after { content: ''; position: absolute; display: none; } /* Check input checked indicator */ .Check input:checked ~ .Check-indicator:after { display: block; } /* Check radio input checked indicator */ .Check--radio .Check-indicator:after { left: 7px; top: 7px; height: 6px; width: 6px; border-radius: 50%; background: #fff; }
docs/picturepark-sdk-v1-angular/api/classes/userrolenotificationrecipient.html
Picturepark/Picturepark.SDK.TypeScript
<!doctype html> <html class="default no-js"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>UserRoleNotificationRecipient | @picturepark/sdk-v1-angular API</title> <meta name="description" content="Documentation for @picturepark/sdk-v1-angular API"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="../assets/css/main.css"> </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.json" 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">@picturepark/sdk-v1-angular API</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="userrolenotificationrecipient.html">UserRoleNotificationRecipient</a> </li> </ul> <h1>Class UserRoleNotificationRecipient</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> <a href="notificationrecipientbase.html" class="tsd-signature-type">NotificationRecipientBase</a> <ul class="tsd-hierarchy"> <li> <span class="target">UserRoleNotificationRecipient</span> </li> </ul> </li> </ul> </section> <section class="tsd-panel"> <h3>Implements</h3> <ul class="tsd-hierarchy"> <li><a href="../interfaces/inotificationrecipientbase.html" class="tsd-signature-type">INotificationRecipientBase</a></li> <li><a href="../interfaces/iuserrolenotificationrecipient.html" class="tsd-signature-type">IUserRoleNotificationRecipient</a></li> </ul> </section> <section class="tsd-panel-group tsd-index-group"> <h2>Index</h2> <section class="tsd-panel tsd-index-panel"> <div class="tsd-index-content"> <section class="tsd-index-section tsd-is-external"> <h3>Constructors</h3> <ul class="tsd-index-list"> <li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external"><a href="userrolenotificationrecipient.html#constructor" class="tsd-kind-icon">constructor</a></li> </ul> </section> <section class="tsd-index-section tsd-is-external"> <h3>Properties</h3> <ul class="tsd-index-list"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected tsd-is-external"><a href="userrolenotificationrecipient.html#_discriminator" class="tsd-kind-icon">_discriminator</a></li> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="userrolenotificationrecipient.html#userroleid" class="tsd-kind-icon">user<wbr>Role<wbr>Id</a></li> </ul> </section> <section class="tsd-index-section tsd-is-external"> <h3>Methods</h3> <ul class="tsd-index-list"> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-external"><a href="userrolenotificationrecipient.html#init" class="tsd-kind-icon">init</a></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-external"><a href="userrolenotificationrecipient.html#tojson" class="tsd-kind-icon">toJSON</a></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static tsd-is-external"><a href="userrolenotificationrecipient.html#fromjs" class="tsd-kind-icon">fromJS</a></li> </ul> </section> </div> </section> </section> <section class="tsd-panel-group tsd-member-group tsd-is-external"> <h2>Constructors</h2> <section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external"> <a name="constructor" class="tsd-anchor"></a> <h3>constructor</h3> <ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external"> <li class="tsd-signature tsd-kind-icon">new <wbr>User<wbr>Role<wbr>Notification<wbr>Recipient<span class="tsd-signature-symbol">(</span>data<span class="tsd-signature-symbol">?: </span><a href="../interfaces/iuserrolenotificationrecipient.html" class="tsd-signature-type">IUserRoleNotificationRecipient</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="userrolenotificationrecipient.html" class="tsd-signature-type">UserRoleNotificationRecipient</a></li> </ul> <ul class="tsd-descriptions"> <li class="tsd-description"> <aside class="tsd-sources"> <p>Overrides <a href="notificationrecipientbase.html">NotificationRecipientBase</a>.<a href="notificationrecipientbase.html#constructor">constructor</a></p> <ul> <li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L52088">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:52088</a></li> </ul> </aside> <h4 class="tsd-parameters-title">Parameters</h4> <ul class="tsd-parameters"> <li> <h5><span class="tsd-flag ts-flagOptional">Optional</span> data: <a href="../interfaces/iuserrolenotificationrecipient.html" class="tsd-signature-type">IUserRoleNotificationRecipient</a></h5> </li> </ul> <h4 class="tsd-returns-title">Returns <a href="userrolenotificationrecipient.html" class="tsd-signature-type">UserRoleNotificationRecipient</a></h4> </li> </ul> </section> </section> <section class="tsd-panel-group tsd-member-group tsd-is-external"> <h2>Properties</h2> <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected tsd-is-external"> <a name="_discriminator" class="tsd-anchor"></a> <h3><span class="tsd-flag ts-flagProtected">Protected</span> _discriminator</h3> <div class="tsd-signature tsd-kind-icon">_discriminator<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div> <aside class="tsd-sources"> <p>Inherited from <a href="notificationrecipientbase.html">NotificationRecipientBase</a>.<a href="notificationrecipientbase.html#_discriminator">_discriminator</a></p> <ul> <li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L52000">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:52000</a></li> </ul> </aside> </section> <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external"> <a name="userroleid" class="tsd-anchor"></a> <h3>user<wbr>Role<wbr>Id</h3> <div class="tsd-signature tsd-kind-icon">user<wbr>Role<wbr>Id<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div> <aside class="tsd-sources"> <p>Implementation of <a href="../interfaces/iuserrolenotificationrecipient.html">IUserRoleNotificationRecipient</a>.<a href="../interfaces/iuserrolenotificationrecipient.html#userroleid">userRoleId</a></p> <ul> <li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L52088">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:52088</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>User role ID.</p> </div> </div> </section> </section> <section class="tsd-panel-group tsd-member-group tsd-is-external"> <h2>Methods</h2> <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-external"> <a name="init" class="tsd-anchor"></a> <h3>init</h3> <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-external"> <li class="tsd-signature tsd-kind-icon">init<span class="tsd-signature-symbol">(</span>_data<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li> </ul> <ul class="tsd-descriptions"> <li class="tsd-description"> <aside class="tsd-sources"> <p>Overrides <a href="notificationrecipientbase.html">NotificationRecipientBase</a>.<a href="notificationrecipientbase.html#init">init</a></p> <ul> <li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L52095">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:52095</a></li> </ul> </aside> <h4 class="tsd-parameters-title">Parameters</h4> <ul class="tsd-parameters"> <li> <h5><span class="tsd-flag ts-flagOptional">Optional</span> _data: <span class="tsd-signature-type">any</span></h5> </li> </ul> <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4> </li> </ul> </section> <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-external"> <a name="tojson" class="tsd-anchor"></a> <h3>toJSON</h3> <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-external"> <li class="tsd-signature tsd-kind-icon">toJSON<span class="tsd-signature-symbol">(</span>data<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span></li> </ul> <ul class="tsd-descriptions"> <li class="tsd-description"> <aside class="tsd-sources"> <p>Overrides <a href="notificationrecipientbase.html">NotificationRecipientBase</a>.<a href="notificationrecipientbase.html#tojson">toJSON</a></p> <ul> <li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L52109">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:52109</a></li> </ul> </aside> <h4 class="tsd-parameters-title">Parameters</h4> <ul class="tsd-parameters"> <li> <h5><span class="tsd-flag ts-flagOptional">Optional</span> data: <span class="tsd-signature-type">any</span></h5> </li> </ul> <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span></h4> </li> </ul> </section> <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static tsd-is-external"> <a name="fromjs" class="tsd-anchor"></a> <h3><span class="tsd-flag ts-flagStatic">Static</span> fromJS</h3> <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static tsd-is-external"> <li class="tsd-signature tsd-kind-icon">fromJS<span class="tsd-signature-symbol">(</span>data<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="userrolenotificationrecipient.html" class="tsd-signature-type">UserRoleNotificationRecipient</a></li> </ul> <ul class="tsd-descriptions"> <li class="tsd-description"> <aside class="tsd-sources"> <p>Overrides <a href="notificationrecipientbase.html">NotificationRecipientBase</a>.<a href="notificationrecipientbase.html#fromjs">fromJS</a></p> <ul> <li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L52102">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:52102</a></li> </ul> </aside> <h4 class="tsd-parameters-title">Parameters</h4> <ul class="tsd-parameters"> <li> <h5>data: <span class="tsd-signature-type">any</span></h5> </li> </ul> <h4 class="tsd-returns-title">Returns <a href="userrolenotificationrecipient.html" class="tsd-signature-type">UserRoleNotificationRecipient</a></h4> </li> </ul> </section> </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> </ul> </nav> <nav class="tsd-navigation secondary menu-sticky"> <ul class="before-current"> </ul> <ul class="current"> <li class="current tsd-kind-class tsd-is-external"> <a href="userrolenotificationrecipient.html" class="tsd-kind-icon">User<wbr>Role<wbr>Notification<wbr>Recipient</a> <ul> <li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite tsd-is-external"> <a href="userrolenotificationrecipient.html#constructor" class="tsd-kind-icon">constructor</a> </li> <li class=" tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected tsd-is-external"> <a href="userrolenotificationrecipient.html#_discriminator" class="tsd-kind-icon">_discriminator</a> </li> <li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external"> <a href="userrolenotificationrecipient.html#userroleid" class="tsd-kind-icon">user<wbr>Role<wbr>Id</a> </li> <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-external"> <a href="userrolenotificationrecipient.html#init" class="tsd-kind-icon">init</a> </li> <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-external"> <a href="userrolenotificationrecipient.html#tojson" class="tsd-kind-icon">toJSON</a> </li> <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-static tsd-is-external"> <a href="userrolenotificationrecipient.html#fromjs" class="tsd-kind-icon">fromJS</a> </li> </ul> </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"> </div> </div> </footer> <div class="container tsd-generator"> <p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p> </div> <div class="overlay"></div> <script src="../assets/js/main.js"></script> </body> </html>
public/themes/foundation6-default/css/main.css
greymass/reprint-starter
.steem-powered-svg { max-width: 100px; margin: 0em auto; -webkit-animation: scale-up 1s ease-in-out both; animation: scale-up 1s ease-in-out both; } #circle1, #circle2, #circle3 { opacity: 0; } #circle1 { -webkit-animation: fade-in-1 1s ease-in-out both; animation: fade-in-1 1s ease-in-out both; } #circle2 { -webkit-animation: fade-in-2 1s ease-in-out both; animation: fade-in-2 1s ease-in-out both; } #circle3 { -webkit-animation: fade-in-3 1s ease-in-out both; animation: fade-in-3 1s ease-in-out both; } @-webkit-keyframes fade-in-1 { 0% { opacity: 0; -webkit-transform: translate(0px, 4px); transform: translate(0px, 4px); } 100% { opacity: 1; -webkit-transform: translate(0px, 3px); transform: translate(0px, 3px); } } @keyframes fade-in-1 { 0% { opacity: 0; -webkit-transform: translate(0px, 4px); transform: translate(0px, 4px); } 100% { opacity: 1; -webkit-transform: translate(0px, 3px); transform: translate(0px, 3px); } } @-webkit-keyframes fade-in-2 { 0% { opacity: 0; -webkit-transform: translate(8px, 1px); transform: translate(8px, 1px); } 100% { opacity: 1; -webkit-transform: translate(8px, 0px); transform: translate(8px, 0px); } } @keyframes fade-in-2 { 0% { opacity: 0; -webkit-transform: translate(8px, 1px); transform: translate(8px, 1px); } 100% { opacity: 1; -webkit-transform: translate(8px, 0px); transform: translate(8px, 0px); } } @-webkit-keyframes fade-in-3 { 0% { opacity: 0; -webkit-transform: translate(18px, 4px); transform: translate(18px, 4px); } 100% { opacity: 1; -webkit-transform: translate(18px, 3px); transform: translate(18px, 3px); } } @keyframes fade-in-3 { 0% { opacity: 0; -webkit-transform: translate(18px, 4px); transform: translate(18px, 4px); } 100% { opacity: 1; -webkit-transform: translate(18px, 3px); transform: translate(18px, 3px); } } @-webkit-keyframes scale-up { 0% { -webkit-transform: scale(0.97); transform: scale(0.97); } 100% { -webkit-transform: scale(1); transform: scale(1); } } @keyframes scale-up { 0% { -webkit-transform: scale(0.97); transform: scale(0.97); } 100% { -webkit-transform: scale(1); transform: scale(1); } } .footer { text-align: center; color: #1A5099; } .footer p, .footer a { font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; } .footer__link { color: #4BA2F2; -webkit-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .footer__link:hover, .footer__link:focus { color: #FF0064; } .footer { text-align: center; color: #fff; background-color: #041a37; padding: 3em 0; } .footer p, .footer a { font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; margin-bottom: 0; font-size: 15px; } .footer__link { color: #83c1fa; -webkit-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .footer__link:hover, .footer__link:focus { color: #FF0064; } .main-content { z-index: 1; background-color: #fff; box-shadow: 0px 23px 15px 15px rgba(0, 0, 0, 0.15); } .no-touchevents .footer { padding: 3em 0 1em; } .no-touchevents .main-content { margin-bottom: 250px; } .no-touchevents .footer { width: 100%; height: 250px; position: fixed; left: 0; bottom: 0; z-index: -100; } .header { padding: 4em 0 2.5em; background-color: #fff; } .header img { margin-bottom: 2em; } .header a h1 { color: #121212; -webkit-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } .header a h1:hover { color: #FF0064; } .header a:hover h1 { color: #FF0064; } .header__links { margin: 2em auto 1em; } .header__link { text-transform: uppercase; letter-spacing: 2px; font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; padding: 1em; font-size: 16px; color: #909AA1; } .header__link--selected { color: #121212; } .header__profile-pic { width: 100px; height: auto; -webkit-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } .header__profile-pic:hover, .header__profile-pic:focus { -webkit-transform: scale(1.05); transform: scale(1.05); } @-webkit-keyframes fade-in { 0% { opacity: 0; filter: alpha(opacity=0); } 100% { opacity: 1; filter: alpha(opacity=100); } } @keyframes fade-in { 0% { opacity: 0; filter: alpha(opacity=0); } 100% { opacity: 1; filter: alpha(opacity=100); } } body { opacity: 0; filter: alpha(opacity=0); -webkit-animation: fade-in 1s ease-in-out both; animation: fade-in 1s ease-in-out both; font-family: Georgia, Times, "Times New Roman", serif; background-color: #fff; } h1, h2, h3, h4, h5, h6, p, .post-summary-footer, ol, ul, li, blockquote, pre, a { width: 92%; max-width: 560px; margin: 0 auto; } h1 { font-family: Georgia, Times, "Times New Roman", serif; font-size: 32px; font-style: normal; font-variant: normal; font-weight: 500; line-height: 32px; } h3 { font-family: Georgia, Times, "Times New Roman", serif; font-size: 28px; font-style: normal; font-variant: normal; font-weight: 500; line-height: 15.4px; } p { font-family: Georgia, Times, "Times New Roman", serif; font-size: 18px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 26px; } a { font-family: Georgia, Times, "Times New Roman", serif; color: #909AA1; -webkit-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } a:hover, a:focus { color: #FF0064; } li { font-family: Georgia, Times, "Times New Roman", serif; font-size: 18px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 24px; margin-bottom: 10px; } blockquote { font-family: Georgia, Times, "Times New Roman", serif; font-size: 22px; font-style: italic; font-variant: normal; font-weight: 400; line-height: 30px; margin: 32px auto; text-align: left; } pre { font-family: Georgia, Times, "Times New Roman", serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 18.5714px; background: #333; white-space: pre; word-wrap: break-word; overflow: auto; margin: 2em auto; padding: 1em; border-radius: 5px; } code, kbd { font-family: Consolas,Liberation Mono,Courier,monospace; color: #fff; background-color: transparent; padding: 1em; } code { border: none; padding: .125rem .3125rem .0625rem; } h5.text-center { text-align: center; } .metadata { display: inline-block; padding: 0 2px; font-size: 15px; color: #121212; font-weight: bold; } .metadata__tags { font-family: "HelveticaNeueBold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "HelveticaNeue", "Helvetica Neue", 'TeXGyreHerosBold', "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif; font-weight: 600; font-stretch: normal; } /****** Homepage *******/ article { margin-bottom: 6em; } h5, h6 { color: #909AA1; font-size: 16px; } h6 { font-family: Georgia, Times, "Times New Roman", serif; margin-bottom: 0px; font-size: 15px; } h5 a { color: #909AA1; font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; font-size: 15px; } h5 { margin-bottom: 16px; } h2 { line-height: 38px; margin-bottom: 16px; } h2 a { color: #121212; font-size: 32px; } .continue-reading { display: block; font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; } .btn-upvote { height: 1.12rem; width: 1.12rem; position: relative; top: 3px; } .blogpost .post-summary-footer { margin-top: 4em; } .post-summary-footer { margin-top: 2em; font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; color: #909AA1; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 1.5em; text-align: center; } .post-summary-footer__btn-upvote { -webkit-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; stroke: #909AA1; fill: none; } .post-summary-footer__btn-upvote:hover, .post-summary-footer__btn-upvote:focus { stroke: #FF0064; -webkit-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .post-summary-footer__btn-upvote:hover path, .post-summary-footer__btn-upvote:focus path { fill: #FF0064; } .post-summary-footer__btn-upvote path { fill: #909AA1; } .post-summary-footer__btn-votes { fill: #909AA1; } .post-summary-footer__btn-comments { fill: #909AA1; } p { margin-bottom: 1em; } article p, article pre { text-align: left; } aside { margin-bottom: 4em; } aside li { list-style: none; } aside ul { margin-bottom: 2em; } aside h5 { font-family: "HelveticaNeueBold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "HelveticaNeue", "Helvetica Neue", 'TeXGyreHerosBold', "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif; font-weight: 600; font-stretch: normal; margin-bottom: 0.5em; } .article-content { text-align: left; } .article-content h5.text-center { text-align: center; } .article-content img { margin-bottom: 20px; } .article-content p { margin: 1em auto; } .article-content p { margin-bottom: 20px; } .article-content p + img, .article-content ol + img, .article-content ul + img { margin-top: 1em; } .article-content img + p, .article-content img + h1, .article-content img + h2, .article-content img + h3, .article-content img + h4, .article-content img + h5, .article-content img + h6 { margin-top: 24px; } .article-content h2, .article-content h3, .article-content h4, .article-content h5, .article-content h6 { margin-top: 42px; margin-bottom: 8px; } .article-content h1, .article-content h2, .article-content h3 { margin-bottom: 16px; } .article-content h1, .article-content h2, .article-content h3, .article-content h4, .article-content h5, .article-content h6 { font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; font-weight: normal; } .article-content h1 + p, .article-content h2 + p, .article-content h3 + p, .article-content h4 + p, .article-content h5 + p, .article-content h6 + p { margin-top: 0; } .article-content h4, .article-content h5, .article-content h6 { font-weight: bold; color: #121212; } .article-content h1 { font-size: 42px; line-height: 46px; } .article-content h2 { font-size: 36px; line-height: 42px; } .article-content h3 { font-size: 28px; line-height: 32px; } .article-content h4 { font-size: 24px; line-height: 28px; } .article-content h5 { font-size: 20px; line-height: 24px; } .article-content h6 { font-size: 18px; line-height: 24px; } .article-content ul, .article-content ol { margin-bottom: 24px; } .article-content li { text-align: left; } .article-content a { text-align: left; color: #4F99E8; width: 92%; max-width: 560px; margin: 1em auto; display: block; font-size: 18px; } .article-content a:hover, .article-content a:focus { color: #1A5099; } .article-content p a, .article-content h1 a, .article-content h2 a, .article-content h3 a, .article-content h4 a, .article-content h5 a, .article-content h6 a, .article-content li a, .article-content span a { display: inline; } .article-content .customizable-links { list-style: none; padding-left: 0; } .article-content .customizable-links li { margin-left: 0; } h1.blog-post-title, h2.blog-post-title { text-align: center; font-size: 42px; line-height: 44px; margin: 32px auto 16px; font-family: Georgia, Times, "Times New Roman", serif; font-weight: normal; color: #121212; -webkit-transition: 0.3s all ease-in-out; transition: 0.3s all ease-in-out; } a:hover h1.blog-post-title, a:focus h1.blog-post-title, a:hover h2.blog-post-title, a:focus h2.blog-post-title { color: #FF0064; } /*# sourceMappingURL=main.css.map */
clean/Linux-x86_64-4.08.1-2.0.5/released/8.8.0/hammer/1.3.2+8.11.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.8.0 / hammer - 1.3.2+8.11</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.3.2+8.11 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2021-11-06 23:39:54 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-11-06 23:39:54 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.08.1 The OCaml compiler (virtual package) ocaml-base-compiler 4.08.1 Official release 4.08.1 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;[email protected]&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;-j%{jobs}%&quot; &quot;plugin&quot;] install: [ [make &quot;install-plugin&quot;] [make &quot;test-plugin&quot;] {with-test} ] depends: [ &quot;ocaml&quot; { &gt;= &quot;4.08&quot; } &quot;coq&quot; {&gt;= &quot;8.11&quot; &amp; &lt; &quot;8.12~&quot;} (&quot;conf-g++&quot; {build} | &quot;conf-clang&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.Plugin&quot; &quot;date:2021-10-01&quot; ] authors: [ &quot;Lukasz Czajka &lt;[email protected]&gt;&quot; &quot;Cezary Kaliszyk &lt;[email protected]&gt;&quot; ] url { src: &quot;https://github.com/lukaszcz/coqhammer/archive/v1.3.2-coq8.11.tar.gz&quot; checksum: &quot;sha512=0429b17d0d118ea85aa9be1c15cd205527b8ea4d7ea3e92dcaf7deb52d039dd9a3c6941f0a289c718c62ae6545dce68464ffb2d46196c0093d2960f1def83168&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.3.2+8.11 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-hammer -&gt; coq-hammer-tactics = 1.3.2+8.11 -&gt; coq &gt;= 8.11 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.3.2+8.11</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>
bin/java/doc/haxe/at/dotpoint/math/vector/IMatrix44.html
ScrambledRK/Thnx
<!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 Sun Oct 25 11:10:56 CET 2015 --> <title>IMatrix44</title> <meta name="date" content="2015-10-25"> <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="IMatrix44"; } } catch(err) { } //--> var methods = {"i0":6,"i1":6}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract 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="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><a href="../../../../../haxe/at/dotpoint/math/vector/IMatrix33.html" title="interface in haxe.at.dotpoint.math.vector"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../haxe/at/dotpoint/math/vector/IQuaternion.html" title="interface in haxe.at.dotpoint.math.vector"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?haxe/at/dotpoint/math/vector/IMatrix44.html" target="_top">Frames</a></li> <li><a href="IMatrix44.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>Constr&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>Constr&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">haxe.at.dotpoint.math.vector</div> <h2 title="Interface IMatrix44" class="title">Interface IMatrix44</h2> </div> <div class="contentContainer"> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Superinterfaces:</dt> <dd>haxe.lang.IHxObject, <a href="../../../../../haxe/at/dotpoint/math/vector/IMatrix33.html" title="interface in haxe.at.dotpoint.math.vector">IMatrix33</a></dd> </dl> <dl> <dt>All Known Implementing Classes:</dt> <dd><a href="../../../../../haxe/at/dotpoint/math/vector/Matrix44.html" title="class in haxe.at.dotpoint.math.vector">Matrix44</a>, <a href="../../../../../haxe/at/dotpoint/spatial/transform/TransformationMatrix.html" title="class in haxe.at.dotpoint.spatial.transform">TransformationMatrix</a></dd> </dl> <hr> <br> <pre>public interface <span class="typeNameLabel">IMatrix44</span> extends haxe.lang.IHxObject, <a href="../../../../../haxe/at/dotpoint/math/vector/IMatrix33.html" title="interface in haxe.at.dotpoint.math.vector">IMatrix33</a></pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ========== 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="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract 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>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../haxe/at/dotpoint/math/vector/IMatrix44.html#inverse--">inverse</a></span>()</code>&nbsp;</td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../haxe/at/dotpoint/math/vector/IMatrix44.html#set44-haxe.at.dotpoint.math.vector.IMatrix44-">set44</a></span>(<a href="../../../../../haxe/at/dotpoint/math/vector/IMatrix44.html" title="interface in haxe.at.dotpoint.math.vector">IMatrix44</a>&nbsp;m)</code>&nbsp;</td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.haxe.at.dotpoint.math.vector.IMatrix33"> <!-- --> </a> <h3>Methods inherited from interface&nbsp;haxe.at.dotpoint.math.vector.<a href="../../../../../haxe/at/dotpoint/math/vector/IMatrix33.html" title="interface in haxe.at.dotpoint.math.vector">IMatrix33</a></h3> <code><a href="../../../../../haxe/at/dotpoint/math/vector/IMatrix33.html#determinant--">determinant</a>, <a href="../../../../../haxe/at/dotpoint/math/vector/IMatrix33.html#getArray-haxe.root.Array-">getArray</a>, <a href="../../../../../haxe/at/dotpoint/math/vector/IMatrix33.html#set33-haxe.at.dotpoint.math.vector.IMatrix33-">set33</a>, <a href="../../../../../haxe/at/dotpoint/math/vector/IMatrix33.html#setArray-haxe.root.Array-">setArray</a>, <a href="../../../../../haxe/at/dotpoint/math/vector/IMatrix33.html#toIdentity--">toIdentity</a>, <a href="../../../../../haxe/at/dotpoint/math/vector/IMatrix33.html#transpose--">transpose</a></code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.haxe.lang.IHxObject"> <!-- --> </a> <h3>Methods inherited from interface&nbsp;haxe.lang.IHxObject</h3> <code>__hx_deleteField, __hx_getField_f, __hx_getField, __hx_getFields, __hx_invokeField, __hx_lookupField_f, __hx_lookupField, __hx_lookupSetField_f, __hx_lookupSetField, __hx_setField_f, __hx_setField</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="set44-haxe.at.dotpoint.math.vector.IMatrix44-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>set44</h4> <pre>void&nbsp;set44(<a href="../../../../../haxe/at/dotpoint/math/vector/IMatrix44.html" title="interface in haxe.at.dotpoint.math.vector">IMatrix44</a>&nbsp;m)</pre> </li> </ul> <a name="inverse--"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>inverse</h4> <pre>void&nbsp;inverse()</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="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><a href="../../../../../haxe/at/dotpoint/math/vector/IMatrix33.html" title="interface in haxe.at.dotpoint.math.vector"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../haxe/at/dotpoint/math/vector/IQuaternion.html" title="interface in haxe.at.dotpoint.math.vector"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?haxe/at/dotpoint/math/vector/IMatrix44.html" target="_top">Frames</a></li> <li><a href="IMatrix44.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>Constr&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>Constr&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>
share/harrison11.html
uher/uher.github.io
<!DOCTYPE html> <html> <head> <title>Push Notification codelab</title> <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 http-equiv="X-Frame-Options" content="allow"> <link rel="canonical" href="http://buzzmusiqtaste.us-west-2.elasticbeanstalk.com/"/> <meta property="fb:app_id" content="1487753808219605"> <meta property="article:author" content="['BuzzMusiq-1041188772583316', 'andy.her.71']"> <meta property="article:publisher" content="http://www.buzzmusiq.com/"> <meta property="fb:app_id" content="1487753808219605"> <meta property="og:url" content="https://uher.github.io/share/harrison11.html"> <meta property="og:site_name" content="Buzzmusiq"> <meta property="og:description" content="What type of person are you? Let me guess from what you listen to."> <meta property="og:title" content="Gukhyeon Gyeong wants to smoke with you."> <meta property="og:image" content="https://s3-us-west-2.amazonaws.com/buzzmusiqtaste/res/result/thumb11.png"> <meta property="og:image:width" content="250"> <meta property="og:image:height" content="250"> <meta property="og:type" content="video"> <meta property="og:video:url" content="https://s3-us-west-2.amazonaws.com/buzzmusiqtaste/res/result/image11_486x255.swf"> <meta property="og:video:secure_url" content="https://s3-us-west-2.amazonaws.com/buzzmusiqtaste/res/result/image11_486x255.swf"> <meta property="og:video:type" content="application/x-shockwave-flash"> <meta property="og:video:width" content="486"> <meta property="og:video:height" content="255"> <link rel="manifest" href="manifest.json"> </head> <body> <script> window.fbAsyncInit = function() { FB.init({ appId : '1487753808219605', xfbml : true, version : 'v2.6' }); }; (function(d, s, id){ var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) { return; } js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/sdk.js"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); </script> <script> (function() { console.log('this is run...'); if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|BB|PlayBook|IEMobile|Windows Phone|Kindle|Silk|Opera Mini/i.test(navigator.userAgent)) { $('#fbm-m').hidden = false; $('#fbm-d').hidden = true; } else { $('#fbm-m').hidden = true; $('#fbm-d').hidden = false; } }) </script> <h1>Share Test</h1> <div class="container"> <div class="fb-share-button" data-layout="button" data-size="large" data-mobile-iframe="true"><a class="fb-xfbml-parse-ignore" target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fdevelopers.facebook.com%2Fdocs%2Fplugins%2F&amp;src=sdkpreparse">Share</a></div> </div> <div id="shareBtn" class="btn btn-success clearfix">Share</div> <!-- Load Facebook SDK for JavaScript --> <div id="fb-root"></div> <script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.5"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));</script> <script> document.getElementById('shareBtn').onclick = function() { FB.ui({ method: 'share', }, function(response){}); } </script> <div class="fb-comments" data-href="https://uher.github.io/" data-width="100%" data-numposts="5"></div> <script> (function() { console.log('this is run...'); if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|BB|PlayBook|IEMobile|Windows Phone|Kindle|Silk|Opera Mini/i.test(navigator.userAgent)) { $('#fbm-m').hidden = false; $('#fbm-d').hidden = true; } else { $('#fbm-m').hidden = true; $('#fbm-d').hidden = false; } }) </script> </body> </html>
drivers/mux/html/dexterind-nxtchuck_8h_source.html
chsrobotc/2013-robotc
<HTML> <HEAD> <TITLE>3rd Party ROBOTC Drivers</TITLE> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="doxygen.css" rel="stylesheet" type="text/css"/> </HEAD> <BODY bgcolor="#ffffff" link="#000000" vlink="#000000"> <table width="100%" bgcolor="navy" cellspacing=0 cellpadding=1 border=0> <tr><td><table width="100%" bgcolor="#EEEEDD" cellspacing=0 cellpadding=3 border=0> <tr> <td width="33%" align="left"> <img src="images/LOGO_NXT.gif" width=266 height=44 border="0" alt="Mindstorms"></td> <td><b><font size="+3" color="navy">3rd Party ROBOTC Drivers</font></b></td> <td align="right"> <img src="images/logo.png" width=44 height=44 border="0" alt="RobotC"></td> </tr> <tr bgcolor="#cccc99" align="right"> <td colspan=3> <font face="arial" size="-1"> [<a href=main.html>Home</a>] [<a target=_top href="https://sourceforge.net/projects/rdpartyrobotcdr/">Download</a>] [<a target=_top href="http://apps.sourceforge.net/mantisbt/rdpartyrobotcdr/my_view_page.php">Submit a bug/suggestion</a>] [<a target=_top href="http://www.robotc.net/forums/">ROBOTC Forums</a>] [<a target=_top href="http://botbench.com">Blog</a>] [<a target=_top href="http://sourceforge.net/donate/index.php?group_id=257238">Support this project</a>]</font> </td> </tr> </table></td></tr> </table> <!-- Generated by Doxygen 1.7.2 --> <div class="header"> <div class="headertitle"> <h1>dexterind-nxtchuck.h</h1> </div> </div> <div class="contents"> <a href="dexterind-nxtchuck_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*!@addtogroup Dexter_Industries</span> <a name="l00002"></a>00002 <span class="comment">* @{</span> <a name="l00003"></a>00003 <span class="comment">* @defgroup NXTCHUCK NXTChuck Sensor</span> <a name="l00004"></a>00004 <span class="comment">* Dexter Industries NXTChuck Sensor driver</span> <a name="l00005"></a>00005 <span class="comment">* @{</span> <a name="l00006"></a>00006 <span class="comment">*/</span> <a name="l00007"></a>00007 <span class="comment">/*</span> <a name="l00008"></a>00008 <span class="comment"> * $Id: dexterind-nxtchuck.h 112 2012-10-04 17:44:38Z xander $</span> <a name="l00009"></a>00009 <span class="comment"> */</span> <a name="l00010"></a>00010 <a name="l00011"></a>00011 <span class="preprocessor">#ifndef __NXTCHUCK_H__</span> <a name="l00012"></a>00012 <span class="preprocessor"></span><span class="preprocessor">#define __NXTCHUCK_H__</span> <a name="l00013"></a>00013 <span class="preprocessor"></span><span class="comment">/** \file dexterind-nxtchuck.h</span> <a name="l00014"></a>00014 <span class="comment"> * \brief Dexter Industries NXTChuck Sensor driver</span> <a name="l00015"></a>00015 <span class="comment"> *</span> <a name="l00016"></a>00016 <span class="comment"> * dexterind-nxtchuck.h provides an API for the Dexter Industries NXTChuck Sensor.</span> <a name="l00017"></a>00017 <span class="comment"> *</span> <a name="l00018"></a>00018 <span class="comment"> * Changelog:</span> <a name="l00019"></a>00019 <span class="comment"> * - 0.1: Initial release</span> <a name="l00020"></a>00020 <span class="comment"> *</span> <a name="l00021"></a>00021 <span class="comment"> * Credits:</span> <a name="l00022"></a>00022 <span class="comment"> * - Big thanks to Dexter Industries for providing me with the hardware necessary to write and test this.</span> <a name="l00023"></a>00023 <span class="comment"> *</span> <a name="l00024"></a>00024 <span class="comment"> * License: You may use this code as you wish, provided you give credit where its due.</span> <a name="l00025"></a>00025 <span class="comment"> *</span> <a name="l00026"></a>00026 <span class="comment"> * THIS CODE WILL ONLY WORK WITH ROBOTC VERSION 3.54 AND HIGHER.</span> <a name="l00027"></a>00027 <span class="comment"> * \author Xander Soldaat (xander_at_botbench.com)</span> <a name="l00028"></a>00028 <span class="comment"> * \date 02 November 2012</span> <a name="l00029"></a>00029 <span class="comment"> * \version 0.1</span> <a name="l00030"></a>00030 <span class="comment"> * \example dexterind-nxtchuck-test1.c</span> <a name="l00031"></a>00031 <span class="comment"> */</span> <a name="l00032"></a>00032 <a name="l00033"></a>00033 <span class="preprocessor">#pragma systemFile</span> <a name="l00034"></a>00034 <span class="preprocessor"></span> <a name="l00035"></a>00035 <span class="preprocessor">#ifndef __COMMON_H__</span> <a name="l00036"></a>00036 <span class="preprocessor"></span><span class="preprocessor">#include &quot;<a class="code" href="common_8h.html" title="Commonly used functions used by drivers.">common.h</a>&quot;</span> <a name="l00037"></a>00037 <span class="preprocessor">#endif</span> <a name="l00038"></a>00038 <span class="preprocessor"></span> <a name="l00039"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#ga868545de00c8a2cab5b51c3c32178c19">00039</a> <span class="preprocessor">#define NXTCHUCK_COM_ERROR 0</span> <a name="l00040"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#ga31e8d28723b9e486a3858bb345d03622">00040</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_COM_SUCCESS 1</span> <a name="l00041"></a>00041 <span class="preprocessor"></span> <a name="l00042"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#ga33b0a41cd83100cfdc42bc534d47e0f5">00042</a> <span class="preprocessor">#define NXTCHUCK_I2C_ADDRESS 0xA4</span> <a name="l00043"></a>00043 <span class="preprocessor"></span> <a name="l00044"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#gadfa14694b133a4c3cfdcb4e80548903e">00044</a> <span class="preprocessor">#define NXTCHUCK_DEVICE_UNKNOWN 1</span> <a name="l00045"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#gac062f27792058c4f9e388932f0744cda">00045</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_DEVICE_NUNCHUK 2</span> <a name="l00046"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#gac87c4f01df118eb5fb8b3252b5182e02">00046</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_DEVICE_CLASSIC_CONTROLLER 3</span> <a name="l00047"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#ga767945595eed8b20843588e26ca89670">00047</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_DEVICE_GH_GUITAR 4</span> <a name="l00048"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#ga90f0d95861a568f347cbd8d4d4cf697d">00048</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_DEVICE_GH_DRUMS 5</span> <a name="l00049"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#ga0406afc8f5a03beda51cb4c1d67472f7">00049</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_DEVICE_DJH_TURNTABLE 6</span> <a name="l00050"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#gac0826fa67ab319717d431f1f1f957f52">00050</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_DEVICE_BALANCE_BOARD 7</span> <a name="l00051"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#ga90d74a8ebe8dd12732a582b9390b657b">00051</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_DEVICE_MOTION_PLUS_ACTIVE 8</span> <a name="l00052"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#ga152f75104ab7482a79338b7207874e28">00052</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_DEVICE_MOTION_PLUS_ACTIVE_N_PT 9</span> <a name="l00053"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#ga343be2246da67d91812526b5cf9c9873">00053</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_DEVICE_MOTION_PLUS_ACTIVE_CC_PT 10</span> <a name="l00054"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#gaac3d73cae8c6f223aeacd4a66803d18c">00054</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_DEVICE_MOTION_PLUS_INACTIVE 11</span> <a name="l00055"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#gabb1f7de8dd66f531e699931fb0ace5f8">00055</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_DEVICE_MOTION_PLUS_NL_ACTIVE 12</span> <a name="l00056"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#ga7b0b917c48dd97c4823d6c80094688c4">00056</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_DEVICE_MOTION_PLUS_NL_N_PT 13</span> <a name="l00057"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#ga755c0565b786126ca21fe4a504ba2170">00057</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_DEVICE_MOTION_PLUS_NL_CC_PT 14</span> <a name="l00058"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#ga818e442b60c6c0226e252ab4afecb0eb">00058</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_DEVICE_NUNCHUK_BLACK 15</span> <a name="l00059"></a>00059 <span class="preprocessor"></span> <a name="l00060"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#ga0db481094e42ec52acef7ea369fec78f">00060</a> <span class="preprocessor">#define NXTCHUCK_N_BTN_Z 0x01</span> <a name="l00061"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#gabf57486ae72c2255ae1870b5f1b6d2d3">00061</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_N_BTN_C 0x02</span> <a name="l00062"></a>00062 <span class="preprocessor"></span> <a name="l00063"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#gad0a04982202449af8b35fccc3388d7e5">00063</a> <span class="preprocessor">#define NXTCHUCK_CC_BTN_RT 0x0002 // Right shoulder button</span> <a name="l00064"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#ga9c48c4368a4519495ed768ce1dd2b54d">00064</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_CC_BTN_P 0x0004 // Start button</span> <a name="l00065"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#gae87e9ee4f20c42e5f296827b08f69208">00065</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_CC_BTN_H 0x0008 // Home button</span> <a name="l00066"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#ga1586fe17dce7340e0b2374dc38e06cb3">00066</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_CC_BTN_M 0x0010 // Select button</span> <a name="l00067"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#ga2e68a6268d949d5bebe54c5a688ba293">00067</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_CC_BTN_LT 0x0020 // Left Shoulder button</span> <a name="l00068"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#gaf9935a7d30f2ebeb442a403cf1a17557">00068</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_CC_BTN_DD 0x0040 // d-pad down</span> <a name="l00069"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#gad0e67c5290b53525437db9005acefd69">00069</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_CC_BTN_DR 0x0080 // d-pad right</span> <a name="l00070"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#gade1d4765de012f6b24581ef4f3f8225f">00070</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_CC_BTN_DU 0x0100 // d-pad up</span> <a name="l00071"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#gac3e7e295b742d51958d4fc52754ecc80">00071</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_CC_BTN_DL 0x0200 // d-pad left</span> <a name="l00072"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#ga303bc585a2e2be5b2f1379ed36380393">00072</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_CC_BTN_ZR 0x0400 // Right-Z button</span> <a name="l00073"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#ga18688c1612146737edb1238d228cad62">00073</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_CC_BTN_X 0x0800 // x button</span> <a name="l00074"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#gac62af2bf82e90f0d87345e50c5d90631">00074</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_CC_BTN_A 0x1000 // a button</span> <a name="l00075"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#gab16f06d45d67248b1a3358687d13ac22">00075</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_CC_BTN_Y 0x2000 // y button</span> <a name="l00076"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#ga10574eabab0f5905a30bb98efa349e99">00076</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_CC_BTN_B 0x4000 // b button</span> <a name="l00077"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#ga012e8e7af66150e4b944c2698e37e31e">00077</a> <span class="preprocessor"></span><span class="preprocessor">#define NXTCHUCK_CC_BTN_ZL 0x8000 // Left-Z button</span> <a name="l00078"></a>00078 <span class="preprocessor"></span> <a name="l00079"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#ga5a169244d76717a9303d2c6f7bf10770">00079</a> <a class="code" href="group__common.html#gaa172ef131853460e5b9f5c6db81d30f4">tByteArray</a> <a class="code" href="group___n_x_t_c_h_u_c_k.html#ga5a169244d76717a9303d2c6f7bf10770">NXTCHUCK_I2CRequest</a>; <span class="comment">/*!&lt; Array to hold I2C command data */</span> <a name="l00080"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">00080</a> <a class="code" href="group__common.html#gaa172ef131853460e5b9f5c6db81d30f4">tByteArray</a> <a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">NXTCHUCK_I2CReply</a>; <span class="comment">/*!&lt; Array to hold I2C reply data */</span> <a name="l00081"></a>00081 <a name="l00082"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#gad9e05a633482cf59f2ab2d4976d64bb1">00082</a> <span class="keywordtype">bool</span> <a class="code" href="group___n_x_t_c_h_u_c_k.html#gad9e05a633482cf59f2ab2d4976d64bb1">NXTCHUCKinitialised</a>[] = {<span class="keyword">false</span>, <span class="keyword">false</span>, <span class="keyword">false</span>, <span class="keyword">false</span>}; <span class="comment">/*!&lt; Has the NXTChuck been initialised yet? */</span> <a name="l00083"></a>00083 <a name="l00084"></a><a class="code" href="structt_nunchuck.html">00084</a> <span class="keyword">typedef</span> <span class="keyword">struct</span> <a name="l00085"></a>00085 { <a name="l00086"></a><a class="code" href="structt_nunchuck.html#a52c92ae81f8d5f16d15422fb3838fe27">00086</a> ubyte <a class="code" href="structt_nunchuck.html#a52c92ae81f8d5f16d15422fb3838fe27">ident</a>; <a name="l00087"></a><a class="code" href="structt_nunchuck.html#aec86757fae7769579f06ae433a0a5d44">00087</a> ubyte <a class="code" href="structt_nunchuck.html#aec86757fae7769579f06ae433a0a5d44">stickX</a>; <a name="l00088"></a><a class="code" href="structt_nunchuck.html#a91804e03b8050dbb60a0097eda903f57">00088</a> ubyte <a class="code" href="structt_nunchuck.html#a91804e03b8050dbb60a0097eda903f57">stickY</a>; <a name="l00089"></a><a class="code" href="structt_nunchuck.html#aeb96883d9be554e3130dd8a074dd1181">00089</a> <span class="keywordtype">int</span> <a class="code" href="structt_nunchuck.html#aeb96883d9be554e3130dd8a074dd1181">accelX</a>; <a name="l00090"></a><a class="code" href="structt_nunchuck.html#aa79b1c1093bc17ca66f39fa286fb8c16">00090</a> <span class="keywordtype">int</span> <a class="code" href="structt_nunchuck.html#aa79b1c1093bc17ca66f39fa286fb8c16">accelY</a>; <a name="l00091"></a><a class="code" href="structt_nunchuck.html#ac1d83c37ada1e57ee781a2e8eea0472a">00091</a> <span class="keywordtype">int</span> <a class="code" href="structt_nunchuck.html#ac1d83c37ada1e57ee781a2e8eea0472a">accelZ</a>; <a name="l00092"></a><a class="code" href="structt_nunchuck.html#a739999c8e3c48d0a6a60783b778c4a6b">00092</a> <span class="keywordtype">bool</span> <a class="code" href="structt_nunchuck.html#a739999c8e3c48d0a6a60783b778c4a6b">buttonC</a>; <a name="l00093"></a><a class="code" href="structt_nunchuck.html#ad21c5419fe7bae1473d6b2a153a89a2e">00093</a> <span class="keywordtype">bool</span> <a class="code" href="structt_nunchuck.html#ad21c5419fe7bae1473d6b2a153a89a2e">buttonZ</a>; <a name="l00094"></a><a class="code" href="structt_nunchuck.html#acfe810cf5fd316d47ead62fa49987852">00094</a> ubyte <a class="code" href="structt_nunchuck.html#acfe810cf5fd316d47ead62fa49987852">buttons</a>; <a name="l00095"></a>00095 } <a class="code" href="structt_nunchuck.html">tNunchuck</a>; <a name="l00096"></a>00096 <a name="l00097"></a>00097 <a name="l00098"></a><a class="code" href="structt_classic_ctrl.html">00098</a> <span class="keyword">typedef</span> <span class="keyword">struct</span> <a name="l00099"></a>00099 { <a name="l00100"></a><a class="code" href="structt_classic_ctrl.html#a9b14fccdc6066b2e7e3a5deea31b7567">00100</a> byte <a class="code" href="structt_classic_ctrl.html#a9b14fccdc6066b2e7e3a5deea31b7567">stickLX</a>; <a name="l00101"></a><a class="code" href="structt_classic_ctrl.html#ab96192459caf58af8ba8ed4d7367b4ee">00101</a> byte <a class="code" href="structt_classic_ctrl.html#ab96192459caf58af8ba8ed4d7367b4ee">stickLY</a>; <a name="l00102"></a><a class="code" href="structt_classic_ctrl.html#a2677c7490918757766a0f7b801602278">00102</a> byte <a class="code" href="structt_classic_ctrl.html#a2677c7490918757766a0f7b801602278">stickRX</a>; <a name="l00103"></a><a class="code" href="structt_classic_ctrl.html#a39a37e31fa3e3fae864ce87bcdb5ff71">00103</a> byte <a class="code" href="structt_classic_ctrl.html#a39a37e31fa3e3fae864ce87bcdb5ff71">stickRY</a>; <a name="l00104"></a><a class="code" href="structt_classic_ctrl.html#a212e8e42339fc291fd4406046df4f34a">00104</a> byte <a class="code" href="structt_classic_ctrl.html#a212e8e42339fc291fd4406046df4f34a">triggerR</a>; <a name="l00105"></a><a class="code" href="structt_classic_ctrl.html#a07c1c7c15c0af0dd74ce953e121efae5">00105</a> byte <a class="code" href="structt_classic_ctrl.html#a07c1c7c15c0af0dd74ce953e121efae5">triggerL</a>; <a name="l00106"></a><a class="code" href="structt_classic_ctrl.html#a8b6b2540b59302ca57e29f788de1c5cc">00106</a> <span class="keywordtype">bool</span> <a class="code" href="structt_classic_ctrl.html#a8b6b2540b59302ca57e29f788de1c5cc">buttonTriggerR</a>; <a name="l00107"></a><a class="code" href="structt_classic_ctrl.html#a9c7f8c6a2b4a93c605ba1083e98d1197">00107</a> <span class="keywordtype">bool</span> <a class="code" href="structt_classic_ctrl.html#a9c7f8c6a2b4a93c605ba1083e98d1197">buttonTriggerL</a>; <a name="l00108"></a><a class="code" href="structt_classic_ctrl.html#a6f435816b6dba2536203fe937c5a7905">00108</a> <span class="keywordtype">bool</span> <a class="code" href="structt_classic_ctrl.html#a6f435816b6dba2536203fe937c5a7905">buttonDPadU</a>; <a name="l00109"></a><a class="code" href="structt_classic_ctrl.html#a1ac9574aa7f0abb76f9ca882437aa661">00109</a> <span class="keywordtype">bool</span> <a class="code" href="structt_classic_ctrl.html#a1ac9574aa7f0abb76f9ca882437aa661">buttonDPadD</a>; <a name="l00110"></a><a class="code" href="structt_classic_ctrl.html#a35a67166ed212a30cbcb025c9a33488b">00110</a> <span class="keywordtype">bool</span> <a class="code" href="structt_classic_ctrl.html#a35a67166ed212a30cbcb025c9a33488b">buttonDPadL</a>; <a name="l00111"></a><a class="code" href="structt_classic_ctrl.html#abeb7d81a3d8ea072dbd803d84a36e7ad">00111</a> <span class="keywordtype">bool</span> <a class="code" href="structt_classic_ctrl.html#abeb7d81a3d8ea072dbd803d84a36e7ad">buttonDPadR</a>; <a name="l00112"></a><a class="code" href="structt_classic_ctrl.html#a4b81f62849de94e99031a75408ed1c5b">00112</a> <span class="keywordtype">bool</span> <a class="code" href="structt_classic_ctrl.html#a4b81f62849de94e99031a75408ed1c5b">buttonX</a>; <a name="l00113"></a><a class="code" href="structt_classic_ctrl.html#a88fccb9b936b98239e4c80bb45a7f2e4">00113</a> <span class="keywordtype">bool</span> <a class="code" href="structt_classic_ctrl.html#a88fccb9b936b98239e4c80bb45a7f2e4">buttonA</a>; <a name="l00114"></a><a class="code" href="structt_classic_ctrl.html#a0a2aeff8c72c86f513929868343e5f60">00114</a> <span class="keywordtype">bool</span> <a class="code" href="structt_classic_ctrl.html#a0a2aeff8c72c86f513929868343e5f60">buttonY</a>; <a name="l00115"></a><a class="code" href="structt_classic_ctrl.html#a47d83cca9ce8707970aa544ef790997f">00115</a> <span class="keywordtype">bool</span> <a class="code" href="structt_classic_ctrl.html#a47d83cca9ce8707970aa544ef790997f">buttonB</a>; <a name="l00116"></a><a class="code" href="structt_classic_ctrl.html#a3fa408e11ec1e44f7a065534b7e9abb0">00116</a> <span class="keywordtype">bool</span> <a class="code" href="structt_classic_ctrl.html#a3fa408e11ec1e44f7a065534b7e9abb0">buttonHome</a>; <a name="l00117"></a><a class="code" href="structt_classic_ctrl.html#ab530dc092a31cd6d174466ceb1eecec7">00117</a> <span class="keywordtype">bool</span> <a class="code" href="structt_classic_ctrl.html#ab530dc092a31cd6d174466ceb1eecec7">buttonSelect</a>; <a name="l00118"></a><a class="code" href="structt_classic_ctrl.html#a2cc9a3c8872f8aef02b6fa418fa3e263">00118</a> <span class="keywordtype">bool</span> <a class="code" href="structt_classic_ctrl.html#a2cc9a3c8872f8aef02b6fa418fa3e263">buttonStart</a>; <a name="l00119"></a><a class="code" href="structt_classic_ctrl.html#a24d6092213684644ceb9531b28e30cd3">00119</a> <span class="keywordtype">bool</span> <a class="code" href="structt_classic_ctrl.html#a24d6092213684644ceb9531b28e30cd3">buttonZL</a>; <a name="l00120"></a><a class="code" href="structt_classic_ctrl.html#a77ee770acba58304cbed503cfe706a87">00120</a> <span class="keywordtype">bool</span> <a class="code" href="structt_classic_ctrl.html#a77ee770acba58304cbed503cfe706a87">buttonZR</a>; <a name="l00121"></a><a class="code" href="structt_classic_ctrl.html#ad8caf068f1c5cc96e1ee744e8dea493d">00121</a> <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> <a class="code" href="structt_classic_ctrl.html#ad8caf068f1c5cc96e1ee744e8dea493d">buttons</a>; <a name="l00122"></a>00122 } <a class="code" href="structt_classic_ctrl.html">tClassicCtrl</a>; <a name="l00123"></a>00123 <a name="l00124"></a>00124 <a name="l00125"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#ga19e0f41c4a1b6fef7d038897a48a71a6">00125</a> ubyte <a class="code" href="group___n_x_t_c_h_u_c_k.html#ga19e0f41c4a1b6fef7d038897a48a71a6">NXTChuckIdentLookup</a>[][] = { <a name="l00126"></a>00126 {0x00,0x00,0xA4,0x20,0x00,0x00}, <span class="comment">// Nunchuk</span> <a name="l00127"></a>00127 {0x00,0x00,0xA4,0x20,0x01,0x01}, <span class="comment">// Classic Controller</span> <a name="l00128"></a>00128 {0x00,0x00,0xA4,0x20,0x01,0x03}, <span class="comment">// GH3 or GHWT Guitar</span> <a name="l00129"></a>00129 {0x01,0x00,0xA4,0x20,0x01,0x03}, <span class="comment">// Guitar Hero World Tour Drums</span> <a name="l00130"></a>00130 {0x03,0x00,0xA4,0x20,0x01,0x03}, <span class="comment">// DJ Hero Turntable</span> <a name="l00131"></a>00131 {0x00,0x00,0xA4,0x20,0x04,0x02}, <span class="comment">// Wii Balance Board</span> <a name="l00132"></a>00132 {0x00,0x00,0xA4,0x20,0x04,0x05}, <span class="comment">// Activated Wii Motion Plus</span> <a name="l00133"></a>00133 {0x00,0x00,0xA4,0x20,0x05,0x05}, <span class="comment">// Activated Wii Motion Plus in Nunchuck passthrought mode</span> <a name="l00134"></a>00134 {0x00,0x00,0xA4,0x20,0x07,0x05}, <span class="comment">// Activated Wii Motion Plus in Classic Controller passthrought mode</span> <a name="l00135"></a>00135 {0x00,0x00,0xA6,0x20,0x00,0x05}, <span class="comment">// Inactive Wii Motion Plus</span> <a name="l00136"></a>00136 {0x00,0x00,0xA6,0x20,0x04,0x05}, <span class="comment">// No-longer active Wii Motion Plus</span> <a name="l00137"></a>00137 {0x00,0x00,0xA6,0x20,0x05,0x05}, <span class="comment">// No-longer nunchuk-passthrough Wii Motion Plus</span> <a name="l00138"></a>00138 {0x00,0x00,0xA6,0x20,0x07,0x05}, <span class="comment">// No-longer classic-passthrough Wii Motion Plus</span> <a name="l00139"></a>00139 {0xFF,0x00,0xA4,0x20,0x00,0x00} <span class="comment">// Seems to the ID of a black nunchuck</span> <a name="l00140"></a>00140 }; <a name="l00141"></a>00141 <a name="l00142"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#gaf0f9c1a79b322f4e6a1513fe742f6e38">00142</a> ubyte <a class="code" href="group___n_x_t_c_h_u_c_k.html#gaf0f9c1a79b322f4e6a1513fe742f6e38">_NXTChuckDataInit1</a>[] = {3, 0xA4, 0xF0, 0x55}; <span class="comment">/*!&lt; First of two arrays written to the extension to initialize */</span> <a name="l00143"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#ga2ae1e63a60bbd730947b2b74b540c9fa">00143</a> ubyte <a class="code" href="group___n_x_t_c_h_u_c_k.html#ga2ae1e63a60bbd730947b2b74b540c9fa">_NXTChuckDataInit2</a>[] = {3, 0xA4, 0xFB, 0x00}; <span class="comment">/*!&lt; Second of two arrays written to the extension to initialize */</span> <a name="l00144"></a>00144 <span class="comment"></span> <a name="l00145"></a>00145 <span class="comment">/**</span> <a name="l00146"></a>00146 <span class="comment"> * It&#39;s a nunchuck, innit? Initialise the nunchuck sensor.</span> <a name="l00147"></a>00147 <span class="comment"> *</span> <a name="l00148"></a>00148 <span class="comment"> * Please note that this is an internal function and should not called directly.</span> <a name="l00149"></a>00149 <span class="comment"> * @param link the NXTChuck port number</span> <a name="l00150"></a>00150 <span class="comment"> * @return true if no error occured, false if it did</span> <a name="l00151"></a>00151 <span class="comment"> */</span> <a name="l00152"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#ga4e27c0e1d759013fdb41c31635d9e937">00152</a> <span class="keywordtype">bool</span> <a class="code" href="group___n_x_t_c_h_u_c_k.html#ga4e27c0e1d759013fdb41c31635d9e937">_NXTChuckInit</a>(tSensors link){ <a name="l00153"></a>00153 writeDebugStreamLine(<span class="stringliteral">&quot;initialising&quot;</span>); <a name="l00154"></a>00154 memcpy(<a class="code" href="group___n_x_t_c_h_u_c_k.html#ga5a169244d76717a9303d2c6f7bf10770">NXTCHUCK_I2CRequest</a>, <a class="code" href="group___n_x_t_c_h_u_c_k.html#gaf0f9c1a79b322f4e6a1513fe742f6e38">_NXTChuckDataInit1</a>, <span class="keyword">sizeof</span>(<a class="code" href="group___n_x_t_c_h_u_c_k.html#gaf0f9c1a79b322f4e6a1513fe742f6e38">_NXTChuckDataInit1</a>)); <a name="l00155"></a>00155 <span class="keywordflow">if</span> (!<a class="code" href="group__common.html#gad02e06f83b264ee6fc7df41eb4712080">writeI2C</a>(link, <a class="code" href="group___n_x_t_c_h_u_c_k.html#ga5a169244d76717a9303d2c6f7bf10770">NXTCHUCK_I2CRequest</a>)) <a name="l00156"></a>00156 <span class="keywordflow">return</span> <span class="keyword">false</span>; <a name="l00157"></a>00157 <a name="l00158"></a>00158 memcpy(<a class="code" href="group___n_x_t_c_h_u_c_k.html#ga5a169244d76717a9303d2c6f7bf10770">NXTCHUCK_I2CRequest</a>, <a class="code" href="group___n_x_t_c_h_u_c_k.html#ga2ae1e63a60bbd730947b2b74b540c9fa">_NXTChuckDataInit2</a>, <span class="keyword">sizeof</span>(<a class="code" href="group___n_x_t_c_h_u_c_k.html#ga2ae1e63a60bbd730947b2b74b540c9fa">_NXTChuckDataInit2</a>)); <a name="l00159"></a>00159 <span class="keywordflow">return</span> <a class="code" href="group__common.html#gad02e06f83b264ee6fc7df41eb4712080">writeI2C</a>(link, <a class="code" href="group___n_x_t_c_h_u_c_k.html#ga5a169244d76717a9303d2c6f7bf10770">NXTCHUCK_I2CRequest</a>); <a name="l00160"></a>00160 } <a name="l00161"></a>00161 <span class="comment"></span> <a name="l00162"></a>00162 <span class="comment">/**</span> <a name="l00163"></a>00163 <span class="comment"> * Read 6 bytes from the nunchuck and return it.</span> <a name="l00164"></a>00164 <span class="comment"> *</span> <a name="l00165"></a>00165 <span class="comment"> * Please note this is an internal function and should not be used directly.</span> <a name="l00166"></a>00166 <span class="comment"> * @param link the nunchuck port number</span> <a name="l00167"></a>00167 <span class="comment"> * @param _reg the register to read</span> <a name="l00168"></a>00168 <span class="comment"> * @param data the tByteArray to hold the returned data</span> <a name="l00169"></a>00169 <span class="comment"> * @return true if no error occured, false if it did</span> <a name="l00170"></a>00170 <span class="comment"> */</span> <a name="l00171"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#gad95cda163b90b57e7439f877f2680a6d">00171</a> <span class="keywordtype">bool</span> <a class="code" href="group___n_x_t_c_h_u_c_k.html#gad95cda163b90b57e7439f877f2680a6d">__NXTChuckReadRaw</a>(tSensors link, ubyte _reg, <a class="code" href="group__common.html#gaa172ef131853460e5b9f5c6db81d30f4">tByteArray</a> &amp;data){ <a name="l00172"></a>00172 <span class="keywordflow">if</span> (!<a class="code" href="group___n_x_t_c_h_u_c_k.html#gad9e05a633482cf59f2ab2d4976d64bb1">NXTCHUCKinitialised</a>[link]) <a name="l00173"></a>00173 { <a name="l00174"></a>00174 <span class="keywordflow">if</span> (!<a class="code" href="group___n_x_t_c_h_u_c_k.html#ga4e27c0e1d759013fdb41c31635d9e937">_NXTChuckInit</a>(link)) <a name="l00175"></a>00175 <span class="keywordflow">return</span> <span class="keyword">false</span>; <a name="l00176"></a>00176 <a name="l00177"></a>00177 <a class="code" href="group___n_x_t_c_h_u_c_k.html#gad9e05a633482cf59f2ab2d4976d64bb1">NXTCHUCKinitialised</a>[link] = <span class="keyword">true</span>; <a name="l00178"></a>00178 } <a name="l00179"></a>00179 <a name="l00180"></a>00180 <a class="code" href="group___n_x_t_c_h_u_c_k.html#ga5a169244d76717a9303d2c6f7bf10770">NXTCHUCK_I2CRequest</a>[0] = 2; <a name="l00181"></a>00181 <a class="code" href="group___n_x_t_c_h_u_c_k.html#ga5a169244d76717a9303d2c6f7bf10770">NXTCHUCK_I2CRequest</a>[1] = <a class="code" href="group___n_x_t_c_h_u_c_k.html#ga33b0a41cd83100cfdc42bc534d47e0f5">NXTCHUCK_I2C_ADDRESS</a>; <a name="l00182"></a>00182 <a class="code" href="group___n_x_t_c_h_u_c_k.html#ga5a169244d76717a9303d2c6f7bf10770">NXTCHUCK_I2CRequest</a>[2] = _reg; <a name="l00183"></a>00183 <a name="l00184"></a>00184 <span class="keywordflow">if</span> (!<a class="code" href="group__common.html#gad02e06f83b264ee6fc7df41eb4712080">writeI2C</a>(link, <a class="code" href="group___n_x_t_c_h_u_c_k.html#ga5a169244d76717a9303d2c6f7bf10770">NXTCHUCK_I2CRequest</a>)) <a name="l00185"></a>00185 <span class="keywordflow">return</span> <span class="keyword">false</span>; <a name="l00186"></a>00186 <a name="l00187"></a>00187 <a class="code" href="group___n_x_t_c_h_u_c_k.html#ga5a169244d76717a9303d2c6f7bf10770">NXTCHUCK_I2CRequest</a>[0] = 1; <a name="l00188"></a>00188 <a class="code" href="group___n_x_t_c_h_u_c_k.html#ga5a169244d76717a9303d2c6f7bf10770">NXTCHUCK_I2CRequest</a>[1] = <a class="code" href="group___n_x_t_c_h_u_c_k.html#ga33b0a41cd83100cfdc42bc534d47e0f5">NXTCHUCK_I2C_ADDRESS</a>; <a name="l00189"></a>00189 <a name="l00190"></a>00190 <span class="keywordflow">return</span> <a class="code" href="group__common.html#gad02e06f83b264ee6fc7df41eb4712080">writeI2C</a>(link, <a class="code" href="group___n_x_t_c_h_u_c_k.html#ga5a169244d76717a9303d2c6f7bf10770">NXTCHUCK_I2CRequest</a>, data, 6); <a name="l00191"></a>00191 } <a name="l00192"></a>00192 <a name="l00193"></a>00193 <span class="comment"></span> <a name="l00194"></a>00194 <span class="comment">/**</span> <a name="l00195"></a>00195 <span class="comment"> * Identify the type of nunchuck sensor connected to the NXT.</span> <a name="l00196"></a>00196 <span class="comment"> * @param link the nunchuck port number</span> <a name="l00197"></a>00197 <span class="comment"> * @param nunchuck the tNunchuck that holds the nunchuck related data.</span> <a name="l00198"></a>00198 <span class="comment"> * @return true if no error occured, false if it did</span> <a name="l00199"></a>00199 <span class="comment"> */</span> <a name="l00200"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#ga7e7456a1ff24dfebe5e3fde04cc2fa71">00200</a> <span class="keywordtype">bool</span> <a class="code" href="group___n_x_t_c_h_u_c_k.html#ga7e7456a1ff24dfebe5e3fde04cc2fa71">NXTChuckreadIdent</a>(tSensors link, <a class="code" href="structt_nunchuck.html">tNunchuck</a> &amp;nunchuck){ <a name="l00201"></a>00201 <span class="keywordflow">if</span>(<a class="code" href="group___n_x_t_c_h_u_c_k.html#gad95cda163b90b57e7439f877f2680a6d">__NXTChuckReadRaw</a>(link, 0xFA, <a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">NXTCHUCK_I2CReply</a>)){ <a name="l00202"></a>00202 <a name="l00203"></a>00203 <span class="preprocessor">#ifdef __NUNHUCK__DEBUG__</span> <a name="l00204"></a>00204 <span class="preprocessor"></span> <span class="keywordflow">for</span> (<span class="keywordtype">int</span> i = 0; i &lt; 6; i++) <a name="l00205"></a>00205 { <a name="l00206"></a>00206 writeDebugStream(<span class="stringliteral">&quot;0x%02X &quot;</span>, <a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">NXTCHUCK_I2CReply</a>[i]); <a name="l00207"></a>00207 } <a name="l00208"></a>00208 <a name="l00209"></a>00209 writeDebugStreamLine(<span class="stringliteral">&quot; &quot;</span>); <a name="l00210"></a>00210 <span class="preprocessor">#endif // __NUNHUCK__DEBUG__</span> <a name="l00211"></a>00211 <span class="preprocessor"></span> <a name="l00212"></a>00212 <span class="keywordflow">for</span>(byte i = 0; i &lt; 14; i++){ <a name="l00213"></a>00213 <a name="l00214"></a>00214 <span class="preprocessor">#ifdef __NUNHUCK__DEBUG__</span> <a name="l00215"></a>00215 <span class="preprocessor"></span> writeDebugStream(<span class="stringliteral">&quot;Comparing: &quot;</span>); <a name="l00216"></a>00216 <span class="keywordflow">for</span> (<span class="keywordtype">int</span> j = 0; j &lt; 6; j++) <a name="l00217"></a>00217 { <a name="l00218"></a>00218 writeDebugStream(<span class="stringliteral">&quot;0x%02X &quot;</span>, <a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">NXTCHUCK_I2CReply</a>[j]); <a name="l00219"></a>00219 } <a name="l00220"></a>00220 writeDebugStream(<span class="stringliteral">&quot; and &quot;</span>); <a name="l00221"></a>00221 <span class="keywordflow">for</span> (<span class="keywordtype">int</span> j = 0; j &lt; 6; j++) <a name="l00222"></a>00222 { <a name="l00223"></a>00223 writeDebugStream(<span class="stringliteral">&quot;0x%02X &quot;</span>, <a class="code" href="group___n_x_t_c_h_u_c_k.html#ga19e0f41c4a1b6fef7d038897a48a71a6">NXTChuckIdentLookup</a>[i][j]); <a name="l00224"></a>00224 } <a name="l00225"></a>00225 writeDebugStreamLine(<span class="stringliteral">&quot;: %d&quot;</span>, memcmp(&amp;<a class="code" href="group___n_x_t_c_h_u_c_k.html#ga19e0f41c4a1b6fef7d038897a48a71a6">NXTChuckIdentLookup</a>[i][0], &amp;<a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">NXTCHUCK_I2CReply</a>[0], 6)); <a name="l00226"></a>00226 <span class="preprocessor">#endif // __NUNHUCK__DEBUG__</span> <a name="l00227"></a>00227 <span class="preprocessor"></span> <a name="l00228"></a>00228 <span class="keywordflow">if</span> (memcmp(&amp;<a class="code" href="group___n_x_t_c_h_u_c_k.html#ga19e0f41c4a1b6fef7d038897a48a71a6">NXTChuckIdentLookup</a>[i][0], &amp;<a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">NXTCHUCK_I2CReply</a>[0], 6) == 0) <a name="l00229"></a>00229 { <a name="l00230"></a>00230 nunchuck.<a class="code" href="structt_nunchuck.html#a52c92ae81f8d5f16d15422fb3838fe27">ident</a> = i + 2; <a name="l00231"></a>00231 <span class="keywordflow">return</span> <span class="keyword">true</span>; <a name="l00232"></a>00232 } <a name="l00233"></a>00233 } <a name="l00234"></a>00234 nunchuck.<a class="code" href="structt_nunchuck.html#a52c92ae81f8d5f16d15422fb3838fe27">ident</a> = <a class="code" href="group___n_x_t_c_h_u_c_k.html#gadfa14694b133a4c3cfdcb4e80548903e">NXTCHUCK_DEVICE_UNKNOWN</a>; <a name="l00235"></a>00235 <span class="keywordflow">return</span> <span class="keyword">true</span>; <a name="l00236"></a>00236 } <a name="l00237"></a>00237 <span class="keywordflow">return</span> <span class="keyword">false</span>; <span class="comment">// Communication error</span> <a name="l00238"></a>00238 } <a name="l00239"></a>00239 <a name="l00240"></a>00240 <span class="comment"></span> <a name="l00241"></a>00241 <span class="comment">/**</span> <a name="l00242"></a>00242 <span class="comment"> * Read the data from the nunchuck.</span> <a name="l00243"></a>00243 <span class="comment"> * @param link the nunchuck port number</span> <a name="l00244"></a>00244 <span class="comment"> * @param nunchuck the tNunchuck that holds the nunchuck related data.</span> <a name="l00245"></a>00245 <span class="comment"> * @return true if no error occured, false if it did</span> <a name="l00246"></a>00246 <span class="comment"> */</span> <a name="l00247"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#ga763586a19d4de3dcd3e74c43ec15f82d">00247</a> <span class="keywordtype">bool</span> <a class="code" href="group___n_x_t_c_h_u_c_k.html#ga763586a19d4de3dcd3e74c43ec15f82d">NXTChuckreadSensor</a>(tSensors link, <a class="code" href="structt_nunchuck.html">tNunchuck</a> &amp;nunchuck){ <a name="l00248"></a>00248 <span class="keywordflow">if</span>(<a class="code" href="group___n_x_t_c_h_u_c_k.html#gad95cda163b90b57e7439f877f2680a6d">__NXTChuckReadRaw</a>(link, 0x00, <a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">NXTCHUCK_I2CReply</a>)) <a name="l00249"></a>00249 { <a name="l00250"></a>00250 nunchuck.<a class="code" href="structt_nunchuck.html#aec86757fae7769579f06ae433a0a5d44">stickX</a> = <a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">NXTCHUCK_I2CReply</a>[0]; <a name="l00251"></a>00251 nunchuck.<a class="code" href="structt_nunchuck.html#a91804e03b8050dbb60a0097eda903f57">stickY</a> = <a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">NXTCHUCK_I2CReply</a>[1]; <a name="l00252"></a>00252 <a name="l00253"></a>00253 nunchuck.<a class="code" href="structt_nunchuck.html#aeb96883d9be554e3130dd8a074dd1181">accelX</a> = (<a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">NXTCHUCK_I2CReply</a>[2] &lt;&lt; 2) | ((<a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">NXTCHUCK_I2CReply</a>[5] &gt;&gt; 2) &amp; 0x03); <a name="l00254"></a>00254 nunchuck.<a class="code" href="structt_nunchuck.html#aa79b1c1093bc17ca66f39fa286fb8c16">accelY</a> = (<a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">NXTCHUCK_I2CReply</a>[3] &lt;&lt; 2) | ((<a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">NXTCHUCK_I2CReply</a>[5] &gt;&gt; 4) &amp; 0x03); <a name="l00255"></a>00255 nunchuck.<a class="code" href="structt_nunchuck.html#ac1d83c37ada1e57ee781a2e8eea0472a">accelZ</a> = (<a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">NXTCHUCK_I2CReply</a>[4] &lt;&lt; 2) | ((<a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">NXTCHUCK_I2CReply</a>[5] &gt;&gt; 6) &amp; 0x03); <a name="l00256"></a>00256 <a name="l00257"></a>00257 nunchuck.<a class="code" href="structt_nunchuck.html#acfe810cf5fd316d47ead62fa49987852">buttons</a> = (~<a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">NXTCHUCK_I2CReply</a>[5]) &amp; 0x03; <a name="l00258"></a>00258 nunchuck.<a class="code" href="structt_nunchuck.html#a739999c8e3c48d0a6a60783b778c4a6b">buttonC</a> = (nunchuck.<a class="code" href="structt_nunchuck.html#acfe810cf5fd316d47ead62fa49987852">buttons</a> &amp; <a class="code" href="group___n_x_t_c_h_u_c_k.html#gabf57486ae72c2255ae1870b5f1b6d2d3">NXTCHUCK_N_BTN_C</a>) ? <span class="keyword">true</span> : <span class="keyword">false</span>; <a name="l00259"></a>00259 nunchuck.<a class="code" href="structt_nunchuck.html#ad21c5419fe7bae1473d6b2a153a89a2e">buttonZ</a> = (nunchuck.<a class="code" href="structt_nunchuck.html#acfe810cf5fd316d47ead62fa49987852">buttons</a> &amp; <a class="code" href="group___n_x_t_c_h_u_c_k.html#ga0db481094e42ec52acef7ea369fec78f">NXTCHUCK_N_BTN_Z</a>) ? <span class="keyword">true</span> : <span class="keyword">false</span>; <a name="l00260"></a>00260 <a name="l00261"></a>00261 <span class="keywordflow">return</span> <span class="keyword">true</span>; <span class="comment">// Return success</span> <a name="l00262"></a>00262 } <a name="l00263"></a>00263 <span class="keywordflow">return</span> <span class="keyword">false</span>; <span class="comment">// Return error</span> <a name="l00264"></a>00264 } <a name="l00265"></a>00265 <a name="l00266"></a>00266 <span class="comment"></span> <a name="l00267"></a>00267 <span class="comment">/**</span> <a name="l00268"></a>00268 <span class="comment"> * Read the data from the classic controller.</span> <a name="l00269"></a>00269 <span class="comment"> * @param link the nunchuck port number</span> <a name="l00270"></a>00270 <span class="comment"> * @param controller the tClassicCtrl that holds the Classic Controller related data.</span> <a name="l00271"></a>00271 <span class="comment"> * @return true if no error occured, false if it did</span> <a name="l00272"></a>00272 <span class="comment"> */</span> <a name="l00273"></a><a class="code" href="group___n_x_t_c_h_u_c_k.html#ga9b4d2dc377ab2effae7e0db8a93fc6d6">00273</a> <span class="keywordtype">bool</span> <a class="code" href="group___n_x_t_c_h_u_c_k.html#ga9b4d2dc377ab2effae7e0db8a93fc6d6">NXTChuckReadClassicController</a>(tSensors link, <a class="code" href="structt_classic_ctrl.html">tClassicCtrl</a> &amp;controller){ <a name="l00274"></a>00274 <span class="keywordflow">if</span>(<a class="code" href="group___n_x_t_c_h_u_c_k.html#gad95cda163b90b57e7439f877f2680a6d">__NXTChuckReadRaw</a>(link, 0x00, <a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">NXTCHUCK_I2CReply</a>)) <a name="l00275"></a>00275 { <a name="l00276"></a>00276 controller.<a class="code" href="structt_classic_ctrl.html#a9b14fccdc6066b2e7e3a5deea31b7567">stickLX</a> = <a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">NXTCHUCK_I2CReply</a>[0] &amp; 0x3F; <span class="comment">// Unpack the data into usable values</span> <a name="l00277"></a>00277 controller.<a class="code" href="structt_classic_ctrl.html#ab96192459caf58af8ba8ed4d7367b4ee">stickLY</a> = <a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">NXTCHUCK_I2CReply</a>[1] &amp; 0x3F; <a name="l00278"></a>00278 controller.<a class="code" href="structt_classic_ctrl.html#a07c1c7c15c0af0dd74ce953e121efae5">triggerL</a> = ((<a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">NXTCHUCK_I2CReply</a>[2] &gt;&gt; 2) &amp; 0x18) | ((<a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">NXTCHUCK_I2CReply</a>[3] &gt;&gt; 5) &amp; 0x07); <a name="l00279"></a>00279 <a name="l00280"></a>00280 controller.<a class="code" href="structt_classic_ctrl.html#a2677c7490918757766a0f7b801602278">stickRX</a> = ((<a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">NXTCHUCK_I2CReply</a>[0] &gt;&gt; 3) &amp; 0x18) | ((<a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">NXTCHUCK_I2CReply</a>[1] &gt;&gt; 5) &amp; 0x06) | ((<a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">NXTCHUCK_I2CReply</a>[2] &gt;&gt; 7) &amp; 0x01); <a name="l00281"></a>00281 controller.<a class="code" href="structt_classic_ctrl.html#a39a37e31fa3e3fae864ce87bcdb5ff71">stickRY</a> = <a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">NXTCHUCK_I2CReply</a>[2] &amp; 0x1F; <a name="l00282"></a>00282 controller.<a class="code" href="structt_classic_ctrl.html#a212e8e42339fc291fd4406046df4f34a">triggerR</a> = <a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">NXTCHUCK_I2CReply</a>[3] &amp; 0x1F; <a name="l00283"></a>00283 <a name="l00284"></a>00284 controller.<a class="code" href="structt_classic_ctrl.html#ad8caf068f1c5cc96e1ee744e8dea493d">buttons</a> = ~(<a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">NXTCHUCK_I2CReply</a>[4] | (<a class="code" href="group___n_x_t_c_h_u_c_k.html#gaacae0addfc9b80bc34eb4dbf669586a4">NXTCHUCK_I2CReply</a>[5] &lt;&lt; 8)) &amp; 0xFFFE; <a name="l00285"></a>00285 <a name="l00286"></a>00286 controller.<a class="code" href="structt_classic_ctrl.html#a8b6b2540b59302ca57e29f788de1c5cc">buttonTriggerR</a> = (controller.<a class="code" href="structt_classic_ctrl.html#ad8caf068f1c5cc96e1ee744e8dea493d">buttons</a> &amp; <a class="code" href="group___n_x_t_c_h_u_c_k.html#gad0a04982202449af8b35fccc3388d7e5">NXTCHUCK_CC_BTN_RT</a>) ? <span class="keyword">true</span> : <span class="keyword">false</span>; <a name="l00287"></a>00287 controller.<a class="code" href="structt_classic_ctrl.html#a9c7f8c6a2b4a93c605ba1083e98d1197">buttonTriggerL</a> = (controller.<a class="code" href="structt_classic_ctrl.html#ad8caf068f1c5cc96e1ee744e8dea493d">buttons</a> &amp; <a class="code" href="group___n_x_t_c_h_u_c_k.html#ga2e68a6268d949d5bebe54c5a688ba293">NXTCHUCK_CC_BTN_LT</a>) ? <span class="keyword">true</span> : <span class="keyword">false</span>; <a name="l00288"></a>00288 <a name="l00289"></a>00289 controller.<a class="code" href="structt_classic_ctrl.html#a6f435816b6dba2536203fe937c5a7905">buttonDPadU</a> = (controller.<a class="code" href="structt_classic_ctrl.html#ad8caf068f1c5cc96e1ee744e8dea493d">buttons</a> &amp; <a class="code" href="group___n_x_t_c_h_u_c_k.html#gade1d4765de012f6b24581ef4f3f8225f">NXTCHUCK_CC_BTN_DU</a>) ? <span class="keyword">true</span> : <span class="keyword">false</span>; <a name="l00290"></a>00290 controller.<a class="code" href="structt_classic_ctrl.html#a1ac9574aa7f0abb76f9ca882437aa661">buttonDPadD</a> = (controller.<a class="code" href="structt_classic_ctrl.html#ad8caf068f1c5cc96e1ee744e8dea493d">buttons</a> &amp; <a class="code" href="group___n_x_t_c_h_u_c_k.html#gaf9935a7d30f2ebeb442a403cf1a17557">NXTCHUCK_CC_BTN_DD</a>) ? <span class="keyword">true</span> : <span class="keyword">false</span>; <a name="l00291"></a>00291 controller.<a class="code" href="structt_classic_ctrl.html#a35a67166ed212a30cbcb025c9a33488b">buttonDPadL</a> = (controller.<a class="code" href="structt_classic_ctrl.html#ad8caf068f1c5cc96e1ee744e8dea493d">buttons</a> &amp; <a class="code" href="group___n_x_t_c_h_u_c_k.html#gac3e7e295b742d51958d4fc52754ecc80">NXTCHUCK_CC_BTN_DL</a>) ? <span class="keyword">true</span> : <span class="keyword">false</span>; <a name="l00292"></a>00292 controller.<a class="code" href="structt_classic_ctrl.html#abeb7d81a3d8ea072dbd803d84a36e7ad">buttonDPadR</a> = (controller.<a class="code" href="structt_classic_ctrl.html#ad8caf068f1c5cc96e1ee744e8dea493d">buttons</a> &amp; <a class="code" href="group___n_x_t_c_h_u_c_k.html#gad0e67c5290b53525437db9005acefd69">NXTCHUCK_CC_BTN_DR</a>) ? <span class="keyword">true</span> : <span class="keyword">false</span>; <a name="l00293"></a>00293 <a name="l00294"></a>00294 controller.<a class="code" href="structt_classic_ctrl.html#a4b81f62849de94e99031a75408ed1c5b">buttonX</a> = (controller.<a class="code" href="structt_classic_ctrl.html#ad8caf068f1c5cc96e1ee744e8dea493d">buttons</a> &amp; <a class="code" href="group___n_x_t_c_h_u_c_k.html#ga18688c1612146737edb1238d228cad62">NXTCHUCK_CC_BTN_X</a>) ? <span class="keyword">true</span> : <span class="keyword">false</span>; <a name="l00295"></a>00295 controller.<a class="code" href="structt_classic_ctrl.html#a88fccb9b936b98239e4c80bb45a7f2e4">buttonA</a> = (controller.<a class="code" href="structt_classic_ctrl.html#ad8caf068f1c5cc96e1ee744e8dea493d">buttons</a> &amp; <a class="code" href="group___n_x_t_c_h_u_c_k.html#gac62af2bf82e90f0d87345e50c5d90631">NXTCHUCK_CC_BTN_A</a>) ? <span class="keyword">true</span> : <span class="keyword">false</span>; <a name="l00296"></a>00296 controller.<a class="code" href="structt_classic_ctrl.html#a0a2aeff8c72c86f513929868343e5f60">buttonY</a> = (controller.<a class="code" href="structt_classic_ctrl.html#ad8caf068f1c5cc96e1ee744e8dea493d">buttons</a> &amp; <a class="code" href="group___n_x_t_c_h_u_c_k.html#gab16f06d45d67248b1a3358687d13ac22">NXTCHUCK_CC_BTN_Y</a>) ? <span class="keyword">true</span> : <span class="keyword">false</span>; <a name="l00297"></a>00297 controller.<a class="code" href="structt_classic_ctrl.html#a47d83cca9ce8707970aa544ef790997f">buttonB</a> = (controller.<a class="code" href="structt_classic_ctrl.html#ad8caf068f1c5cc96e1ee744e8dea493d">buttons</a> &amp; <a class="code" href="group___n_x_t_c_h_u_c_k.html#ga10574eabab0f5905a30bb98efa349e99">NXTCHUCK_CC_BTN_B</a>) ? <span class="keyword">true</span> : <span class="keyword">false</span>; <a name="l00298"></a>00298 <a name="l00299"></a>00299 controller.<a class="code" href="structt_classic_ctrl.html#a3fa408e11ec1e44f7a065534b7e9abb0">buttonHome</a> = (controller.<a class="code" href="structt_classic_ctrl.html#ad8caf068f1c5cc96e1ee744e8dea493d">buttons</a> &amp; <a class="code" href="group___n_x_t_c_h_u_c_k.html#gae87e9ee4f20c42e5f296827b08f69208">NXTCHUCK_CC_BTN_H</a>) ? <span class="keyword">true</span> : <span class="keyword">false</span>; <a name="l00300"></a>00300 controller.<a class="code" href="structt_classic_ctrl.html#ab530dc092a31cd6d174466ceb1eecec7">buttonSelect</a> = (controller.<a class="code" href="structt_classic_ctrl.html#ad8caf068f1c5cc96e1ee744e8dea493d">buttons</a> &amp; <a class="code" href="group___n_x_t_c_h_u_c_k.html#gad0a04982202449af8b35fccc3388d7e5">NXTCHUCK_CC_BTN_RT</a>) ? <span class="keyword">true</span> : <span class="keyword">false</span>; <a name="l00301"></a>00301 controller.<a class="code" href="structt_classic_ctrl.html#a2cc9a3c8872f8aef02b6fa418fa3e263">buttonStart</a> = (controller.<a class="code" href="structt_classic_ctrl.html#ad8caf068f1c5cc96e1ee744e8dea493d">buttons</a> &amp; <a class="code" href="group___n_x_t_c_h_u_c_k.html#ga9c48c4368a4519495ed768ce1dd2b54d">NXTCHUCK_CC_BTN_P</a>) ? <span class="keyword">true</span> : <span class="keyword">false</span>; <a name="l00302"></a>00302 <a name="l00303"></a>00303 controller.<a class="code" href="structt_classic_ctrl.html#a24d6092213684644ceb9531b28e30cd3">buttonZL</a> = (controller.<a class="code" href="structt_classic_ctrl.html#ad8caf068f1c5cc96e1ee744e8dea493d">buttons</a> &amp; <a class="code" href="group___n_x_t_c_h_u_c_k.html#gad0a04982202449af8b35fccc3388d7e5">NXTCHUCK_CC_BTN_RT</a>) ? <span class="keyword">true</span> : <span class="keyword">false</span>; <a name="l00304"></a>00304 controller.<a class="code" href="structt_classic_ctrl.html#a77ee770acba58304cbed503cfe706a87">buttonZR</a> = (controller.<a class="code" href="structt_classic_ctrl.html#ad8caf068f1c5cc96e1ee744e8dea493d">buttons</a> &amp; <a class="code" href="group___n_x_t_c_h_u_c_k.html#gad0a04982202449af8b35fccc3388d7e5">NXTCHUCK_CC_BTN_RT</a>) ? <span class="keyword">true</span> : <span class="keyword">false</span>; <a name="l00305"></a>00305 <a name="l00306"></a>00306 <span class="keywordflow">return</span> <span class="keyword">true</span>; <a name="l00307"></a>00307 } <a name="l00308"></a>00308 <span class="keywordflow">return</span> <span class="keyword">false</span>; <a name="l00309"></a>00309 } <a name="l00310"></a>00310 <a name="l00311"></a>00311 <a name="l00312"></a>00312 <span class="preprocessor">#endif // __NXTCHUCK_H__</span> <a name="l00313"></a>00313 <span class="preprocessor"></span> <a name="l00314"></a>00314 <span class="comment">/*</span> <a name="l00315"></a>00315 <span class="comment"> * $Id: dexterind-nxtchuck.h 112 2012-10-04 17:44:38Z xander $</span> <a name="l00316"></a>00316 <span class="comment"> */</span> <a name="l00317"></a>00317 <span class="comment">/* @} */</span> <a name="l00318"></a>00318 <span class="comment">/* @} */</span> </pre></div></div> </div> <hr class="footer"/><address class="footer"><small>Generated on Fri Nov 2 2012 17:45:51 for ROBOTC Drivers by&#160; <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.2 </small></address> </body> </html>
xbarapp.com/public/docs/plugins/Dev/Tutorial/ansi.sh.html
matryer/bitbar
<!doctype html> <html lang='en' style='background: #111;'> <head> <meta charset='utf-8' /> <meta name='viewport' content='width=device-width' /> <meta http-equiv='X-UA-Compatible' content='ie=edge'> <title>Show ANSI colors in your macOS menu bar</title> <link rel='stylesheet' href='/public/css/xbar.css?cb=08%20Mar%2021%2015%3a22%20GMT'> <link rel='preconnect' href='https://fonts.gstatic.com'> <link rel='preconnect' href='https://fonts.googleapis.com'> <link rel='stylesheet' href='https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@500&display=swap'> <meta name='description' content='Example of how to use ANSI color codes - install xbar for free to get started.'> <meta name='author' content='Kent Karlsson'> <meta name='keywords' content='macos,menubar,xbar,bitbar'> <meta itemprop='image' content='http://i.imgur.com/kGVgf6y.png'> <meta itemprop='name' content='Show ANSI colors in your macOS menu bar'> <meta itemprop='description' content='Example of how to use ANSI color codes - install xbar for free to get started.'> <meta name='twitter:card' content='summary_large_image'> <meta name='twitter:title' content='Show ANSI colors in your macOS menu bar'> <meta name='twitter:description' content='Example of how to use ANSI color codes - install xbar for free to get started.'> <meta name='twitter:image' content='http://i.imgur.com/kGVgf6y.png'> <meta name='twitter:creator' content='matryer'> <meta property='og:title' content='Show ANSI colors in your macOS menu bar'> <meta property='og:description' content='Example of how to use ANSI color codes - install xbar for free to get started.'> <meta property='og:url' content='https://xbarapp.com/plugins/Dev/Tutorial/ansi.sh.html'> <meta property='og:site_name' content='xbar lets you put anything into your macOS menu bar'> <meta property='og:type' content='article'> <meta property='og:image' content='http://i.imgur.com/kGVgf6y.png'> <link rel='apple-touch-icon' sizes='180x180' href='http://i.imgur.com/kGVgf6y.png'> <link rel='icon' type='image/png' sizes='32x32' href='http://i.imgur.com/kGVgf6y.png'> <link rel='shortcut icon' href='http://i.imgur.com/kGVgf6y.png'> <meta name='msapplication-TileColor' content='#ffffff'> <meta name='msapplication-config' content='/public/browserconfig.xml'> <meta name='theme-color' content='#ffffff'> <style> .code-background { background: rgb(255,255,255); background: linear-gradient(to right, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%); } .plugin-app-link { margin-left: -32px; } </style> </head> <body> <header class='flex flex-col'> <div class='container mx-auto'> <div class='flex items-center space-x-8 p-8 text-white'> <a href='/' class='inline-block py-2 text-2xl flex items-center space-x-2 font-bold'> <img alt='xbar logo: a circle with three dots inside it' src='/public/img/xbar-2048.png' style='width:48px;height:48px;' /> <span>xbar</span> </a> <div class='flex-grow'></div> <div> <a target='github' href='https://github.com/sponsors/matryer' class='text-white px-4 py-2 whitespace-nowrap' ><span class='mr-1'>💜</span> Sponsor</a> </div> <div class='hidden md:block'> <a target='github' href='/dl' class='rounded bg-white text-gray-800 hover:text-black px-4 py-2 shadow hover:shadow-lg whitespace-nowrap' >Coming soon</a> </div> </div> </div> </header> <div id='menubar' class='text-white whitespace-nowrap overflow-hidden flex flex-wrap justify-end items-center text-right'> <a href='/docs/plugins/AWS.html' > AWS </a> <a href='/docs/plugins/Cryptocurrency.html' > Cryptocurrency </a> <a class='rounded selected' href='/docs/plugins/Dev.html' > Dev </a> <a href='/docs/plugins/E-Commerce.html' > E-Commerce </a> <a href='/docs/plugins/Email.html' > Email </a> <a href='/docs/plugins/Environment.html' > Environment </a> <a href='/docs/plugins/Finance.html' > Finance </a> <a href='/docs/plugins/Games.html' > Games </a> <a href='/docs/plugins/IoT.html' > IoT </a> <a href='/docs/plugins/Lifestyle.html' > Lifestyle </a> <a href='/docs/plugins/Music.html' > Music </a> <a href='/docs/plugins/Network.html' > Network </a> <a href='/docs/plugins/Politics.html' > Politics </a> <a href='/docs/plugins/Science.html' > Science </a> <a href='/docs/plugins/Sports.html' > Sports </a> <a href='/docs/plugins/System.html' > System </a> <a href='/docs/plugins/Time.html' > Time </a> <a href='/docs/plugins/Tools.html' > Tools </a> <a href='/docs/plugins/Travel.html' > Travel </a> <a href='/docs/plugins/Weather.html' > Weather </a> <a href='/docs/plugins/Web.html' > Web </a> </div> <div class='container mx-auto flex flex-wrap space-x-8 justify-start items-start mt-16'> <div class='flex flex-col justify-start'> <div class='px-8 py-2 max-w-3xl'> <h1 class='fancy-font text-white text-6xl'>Show ANSI colors</h1> </div> <div class='p-8 text-sm'> <div class='flex space-x-4 pb-8'> <div class='tiny-photo'> <a href='/docs/contributors/vogonistic.html' > <img class='rounded shadow primary' src='https://avatars.githubusercontent.com/u/159568?v=4'> </a> </div> <div> <a href='/docs/contributors/vogonistic.html' class='light-background rounded-sm shadow-md px-4 py-2 text-white' style='text-decoration: none;' > Kent Karlsson (<code style='color:white;'>@vogonistic</code> on GitHub) </a> </div> </div> <p class='my-8 text-white opacity-75 text-lg max-w-lg'> Example of how to use ANSI color codes </p> <div class='plugin-app-link hidden md:flex items-end p-8 m-8 mb-16 bg-black bg-opacity-25 rounded-lg shadow max-w-md'> <div> <a href='xbar://app.xbarapp.com/openPlugin?path=Dev%2fTutorial%2fansi.sh' class='rounded bg-white text-gray-800 hover:text-black px-4 py-2 shadow hover:shadow-lg whitespace-nowrap' ><span class='mr-1'>🖥</span> Open in xbar app</a> </div> <div class='opacity-50 text-sm text-white ml-3'>Requires <a target='github' href='/dl' class='underline'>xbar app</a></div> </div> </div> </div> <div class='flex flex-col justify-center mb-16' > <img class='max-w-md w-full' src='http://i.imgur.com/kGVgf6y.png' alt='Image preview of Show ANSI colors plugin.' onerror='this.onerror=null;this.src="/public/img/xbar-2048.png";' /> </div> </div> <div class='code-background text-white p-8 pb-24'> <div class='container mx-auto'> <div class='flex flex-wrap py-8 space-x-4 justify-end'> <div> <h2 class='md:text-2xl text-bold'> <code>ansi.sh</code> </h2> </div> <div class='flex-grow'></div> <div> <a class='text-sm text-white hover:text-black hover:bg-white px-4 py-2 rounded' target='github' href='https://github.com/matryer/bitbar-plugins/edit/master/Dev/Tutorial/ansi.sh'>Edit</a> </div> <div> <a class='text-sm text-gray-700 bg-white hover:bg-gray-100 active:text-black px-4 py-2 rounded' target='github' href='https://github.com/matryer/bitbar-plugins/blob/master/Dev/Tutorial/ansi.sh'>Open on GitHub</a> </div> </div> <div> <pre class='text-sm whitespace-pre-wrap'><code class='break-all '>#!/bin/bash # &lt;bitbar.title&gt;Show ANSI colors&lt;/bitbar.title&gt; # &lt;bitbar.version&gt;v1.0&lt;/bitbar.version&gt; # &lt;bitbar.author&gt;Kent Karlsson&lt;/bitbar.author&gt; # &lt;bitbar.author.github&gt;vogonistic&lt;/bitbar.author.github&gt; # &lt;bitbar.desc&gt;Example of how to use ANSI color codes&lt;/bitbar.desc&gt; # &lt;bitbar.image&gt;http://i.imgur.com/kGVgf6y.png&lt;/bitbar.image&gt; # &lt;bitbar.abouturl&gt;https://github.com/matryer/bitbar-plugins/blob/master/Tutorial/ansi.sh&lt;/bitbar.abouturl&gt; echo -e &#34;\033[34mA\033[32mN\033[31mS\033[33mI\033[0m | ansi=true&#34; echo &#34;---&#34; T=&#39;gYw&#39; # The test text echo -e &#34; 40m 41m 42m 43m\ 44m 45m 46m 47m | ansi=true font=courier trim=false&#34;; for FGs in &#39; m&#39; &#39; 1m&#39; &#39; 30m&#39; &#39;1;30m&#39; &#39; 31m&#39; &#39;1;31m&#39; &#39; 32m&#39; \ &#39;1;32m&#39; &#39; 33m&#39; &#39;1;33m&#39; &#39; 34m&#39; &#39;1;34m&#39; &#39; 35m&#39; &#39;1;35m&#39; \ &#39; 36m&#39; &#39;1;36m&#39; &#39; 37m&#39; &#39;1;37m&#39;; do FG=${FGs// /} echo -en &#34; $FGs \033[$FG $T &#34; for BG in 40m 41m 42m 43m 44m 45m 46m 47m; do echo -en &#34;$EINS \033[$FG\033[$BG $T \033[0m&#34;; done echo &#34; | ansi=true font=courier trim=false&#34;; done echo &#34;---&#34; echo &#34;Open color codes in browser… | href=http://misc.flogisoft.com/bash/tip_colors_and_formatting#colors&#34; echo &#34;Refresh | refresh=true&#34; </code></pre> </div> </div> </div> <footer class='container mx-auto text-white text-lg opacity-75 mt-8'> <div class='text-center p-16'> <p> <div> <a target='github' class='underline hover:text-white' href='https://github.com/matryer/xbar'>GitHub project</a> • <a target='github' class='underline hover:text-white' href='https://github.com/matryer/xbar#writing-plugins'>Writing plugins guide</a> </div> <div class='mt-8'> Copyright &copy;2021 Mat Ryer + contributors • <a target='twitter' class='underline hover:text-white' href='https://twitter.com/matryer'>@matryer</a> </div> <div class='opacity-50 mt-2'> Last updated on 08 Mar 21 15:22 GMT </div> </p> </div> </footer> </body> </html>
docs/ref/searchmain.js.html
sukuba/js-py-document-search
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8" /> <title>searchMain.js js-py-document-search</title> <link rel="stylesheet" href="../thema.css" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> </head> <body> <div id="head"> <header> <h1>js-py-document-search</h1> <h2>searchMain.js</h2> </header> <nav> <span><a href="../index.html">.. 上の階層へ</a></span> <span><a href="./index.html">. リファレンスの見出しへ</a></span> </nav> </div> <main> <section> <h3>検索用のJavaScript本体</h3> <details> <summary>説明</summary> <p> 検索プログラムが使用する。 <code><a href="search.html.html">search.html</a></code>から直接呼び出される。 </p> </details> </section> </main> <footer> <span><a href="../index.html">.. 上の階層へ</a></span> <span><a href="./index.html">. リファレンスの見出しへ</a></span> <span><a href="https://github.com/sukuba/js-py-document-search" target="_blank">sources are available at github. </a></span> </footer> </body> </html>
test.html
TheKidCoder/SocketBroker
<!DOCTYPE html> <meta charset="utf-8" /> <title>WebSocket Test</title> <script language="javascript" type="text/javascript"> var wsUri = "ws://0.0.0.0:8080"; var output; function init() { output = document.getElementById("output"); msg = document.getElementById('msg'); document.getElementById('submit').addEventListener('click', function(e){ e.preventDefault() doSend(msg.value); msg.value = ''; msg.focus(); }); testWebSocket(); } function testWebSocket() { websocket = new WebSocket(wsUri); websocket.onopen = function(evt) { onOpen(evt) }; websocket.onclose = function(evt) { onClose(evt) }; websocket.onmessage = function(evt) { onMessage(evt) }; websocket.onerror = function(evt) { onError(evt) }; } function onOpen(evt) { writeToScreen("CONNECTED"); doSend("WebSocket rocks"); } function onClose(evt) { writeToScreen("DISCONNECTED"); } function onMessage(evt) { writeToScreen('<span style="color: blue;">RESPONSE: ' + evt.data+'</span>'); } function onError(evt) { writeToScreen('<span style="color: red;">ERROR:</span> ' + evt.data); } function doSend(message) { writeToScreen("SENT: " + message); websocket.send(message); } function writeToScreen(message) { var pre = document.createElement("p"); pre.style.wordWrap = "break-word"; pre.innerHTML = message; output.appendChild(pre); } window.addEventListener("load", init, false); </script> <h2>WebSocket Test</h2> <input id="msg" /><a href="#" id="submit">submit</a> <div id="output"></div>
AWS_CloudFormation_Template_Reference.docset/Contents/Resources/Documents/aws-properties-s3-bucket-replicationconfiguration-rules-destination.html
pdhodgkinson/AWSCloudFormationTemplateReference-dash-docset
<!DOCTYPE html> <html> <head> <link href="css/awsdocs.css" rel="stylesheet" type="text/css"> <script type="text/javascript" src="js/jquery.min.js"></script> <script type="text/javascript" src="js/awsdocs.min.js"></script> <meta charset="utf-8"> </head> <body> <div id="content" style="padding: 10px 30px;"> <h1 class="topictitle" id="aws-properties-s3-bucket-replicationconfiguration-rules-destination">Amazon S3 Bucket ReplicationDestination</h1><p><code class="code">Destination</code> is a property of the <a href="aws-properties-s3-bucket-replicationconfiguration-rules.html">ReplicationRule</a> property that specifies which Amazon Simple Storage Service (Amazon S3) bucket to store replicated objects and their storage class. </p><h2 id="w2ab1c21c10d204c13d118b5">Syntax</h2><div id="JSON" name="JSON" class="section langfilter"> <h3 id="aws-properties-s3-bucket-replicationconfiguration-rules-destination-syntax.json">JSON</h3> <pre class="programlisting"><div class="code-btn-container"><div class="btn-copy-code" title="Copy"></div><div class="btn-dark-theme" title="Dark theme" title-dark="Dark theme" title-light="Light theme"></div></div><code class="nohighlight">{ &quot;<a href="aws-properties-s3-bucket-replicationconfiguration-rules-destination.html#cfn-s3-bucket-replicationdestination-accesscontroltranslation">AccessControlTranslation</a>&quot; : <a href="aws-properties-s3-bucket-accesscontroltranslation.html">AccessControlTranslation</a>, &quot;<a href="aws-properties-s3-bucket-replicationconfiguration-rules-destination.html#cfn-s3-bucket-replicationdestination-account">Account</a>&quot; : <em class="replaceable"><code>String</code></em>, &quot;<a href="aws-properties-s3-bucket-replicationconfiguration-rules-destination.html#cfn-s3-bucket-replicationconfiguration-rules-destination-bucket">Bucket</a>&quot; : <em class="replaceable"><code>String</code></em>, &quot;<a href="aws-properties-s3-bucket-replicationconfiguration-rules-destination.html#cfn-s3-bucket-replicationdestination-encryptionconfiguration">EncryptionConfiguration</a>&quot; : <a href="aws-properties-s3-bucket-encryptionconfiguration.html">EncryptionConfiguration</a>, &quot;<a href="aws-properties-s3-bucket-replicationconfiguration-rules-destination.html#cfn-s3-bucket-replicationconfiguration-rules-destination-storageclass">StorageClass</a>&quot; : <em class="replaceable"><code>String</code></em> }</code></pre> </div><div id="YAML" name="YAML" class="section langfilter"> <h3 id="aws-properties-s3-bucket-replicationconfiguration-rules-destination-syntax.yaml">YAML</h3> <pre class="programlisting"><div class="code-btn-container"><div class="btn-copy-code" title="Copy"></div><div class="btn-dark-theme" title="Dark theme" title-dark="Dark theme" title-light="Light theme"></div></div><code class="nohighlight"><a href="aws-properties-s3-bucket-replicationconfiguration-rules-destination.html#cfn-s3-bucket-replicationdestination-accesscontroltranslation">AccessControlTranslation</a>: <a href="aws-properties-s3-bucket-accesscontroltranslation.html">AccessControlTranslation</a> <a href="aws-properties-s3-bucket-replicationconfiguration-rules-destination.html#cfn-s3-bucket-replicationdestination-account">Account</a>: <em class="replaceable"><code>String</code></em> <a href="aws-properties-s3-bucket-replicationconfiguration-rules-destination.html#cfn-s3-bucket-replicationconfiguration-rules-destination-bucket">Bucket</a>: <em class="replaceable"><code>String</code></em> <a href="aws-properties-s3-bucket-replicationconfiguration-rules-destination.html#cfn-s3-bucket-replicationdestination-encryptionconfiguration">EncryptionConfiguration</a>: <a href="aws-properties-s3-bucket-encryptionconfiguration.html">EncryptionConfiguration</a> <a href="aws-properties-s3-bucket-replicationconfiguration-rules-destination.html#cfn-s3-bucket-replicationconfiguration-rules-destination-storageclass">StorageClass</a>: <em class="replaceable"><code>String</code></em> </code></pre> </div><h2 id="w2ab1c21c10d204c13d118b7">Properties</h2><div class="variablelist"> <dl> <dt><a id="cfn-s3-bucket-replicationdestination-accesscontroltranslation"></a><span class="term"><code class="code">AccessControlTranslation</code></span></dt> <dd> <p>Specify this only in a cross-account scenario (where source and destination bucket owners are not the same), and you want to change replica ownership to the AWS account that owns the destination bucket. If this is not specified in the replication configuration, the replicas are owned by same AWS account that owns the source object. </p> <p><em>Required</em>: No </p> <p>Type: <a href="aws-properties-s3-bucket-accesscontroltranslation.html">AccessControlTranslation</a></p> </dd> <dt><a id="cfn-s3-bucket-replicationdestination-account"></a><span class="term"><code class="code">Account</code></span></dt> <dd> <p>Destination bucket owner account ID. In a cross-account scenario, if you direct Amazon S3 to change replica ownership to the AWS account that owns the destination bucket by specifying the <code class="code">AccessControlTranslation</code> property, this is the account ID of the destination bucket owner. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/crr-change-owner.html">Cross-Region Replication Additional Configuration: Change Replica Owner</a> in the <em>Amazon Simple Storage Service Developer Guide</em>. </p> <p>Conditional: If you specify the <code class="code">AccessControlTranslation</code> property, the <code class="code">Account</code> property is required. </p> <p><em>Required</em>: No </p> <p><em>Type</em>: String </p> </dd> <dt><a id="cfn-s3-bucket-replicationconfiguration-rules-destination-bucket"></a><span class="term"><code class="code">Bucket</code></span></dt> <dd> <p>The Amazon resource name (ARN) of an S3 bucket where Amazon S3 stores replicated objects. This destination bucket must be in a different region than your source bucket. </p> <p>If you have multiple rules in your replication configuration, specify the same destination bucket for all of the rules. </p> <p><em>Required</em>: Yes </p> <p><em>Type</em>: String </p> </dd> <dt><a id="cfn-s3-bucket-replicationdestination-encryptionconfiguration"></a><span class="term"><code class="code">EncryptionConfiguration</code></span></dt> <dd> <p>Specifies encryption-related information.</p> <p><em>Required</em>: No </p> <p>Type: <a href="aws-properties-s3-bucket-encryptionconfiguration.html">EncryptionConfiguration</a></p> </dd> <dt><a id="cfn-s3-bucket-replicationconfiguration-rules-destination-storageclass"></a><span class="term"><code class="code">StorageClass</code></span></dt> <dd> <p>The storage class to use when replicating objects, such as standard or reduced redundancy. By default, Amazon S3 uses the storage class of the source object to create object replica. For valid values, see the <code class="code">StorageClass</code> element of the <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTreplication.html">PUT Bucket replication</a> action in the <em>Amazon Simple Storage Service API Reference</em>. </p> <p><em>Required</em>: No </p> <p><em>Type</em>: String </p> </dd> </dl> </div></div> </body> </html>
assets/css/style.css
adrianowead/nodejs-chat
*{ margin: 0; padding: 0; } a{ text-decoration: none; color: #fff; } #overlay{ width: 640px; height: 430px; position: absolute; z-index: 1; left: 0; top: 0; } #bg{ width: 640px; height: 430px; position: absolute; left: 0; top: 0; background: #000; opacity: .5 } #frm{ position: absolute; left: 190px; top: 150px; z-index: 2; width: 200px; } #frm a{ float: left; margin-top: 10px; border-radius: 5px; background: #E02929; padding: 5px 15px; text-align: center; } #frm input{ border: none; width: 100%; padding: 5px; text-align: center; border-radius: 5px; } #dados{ padding-top: 10px; padding-left: 10px; overflow: hidden; } #dados input{ border-radius: 5px; border: none; padding: 5px; width: 150px; clear: both; display: block; float: none; } #dados a{ margin-left: 0; margin-top: 15px; border-radius: 5px; background: #3D38BB; display: block; float: left; padding: 5px 10px; clear: both; }
_layouts/app.html
Code4SA/cpt-noise
--- layout: default --- <nav class="navbar navbar-default navbar-static-top"> <div class="container"> <div class="navbar-header"> <a class="navbar-brand" href="http://code4sa.org"> <img src="/img/code4sa_logo_web.png" alt="Code for South Africa"></a> </a> </div> <div id="navbar" class="navbar-collapse collapse"> <ul class="nav navbar-nav navbar-right"> <li><a class="twitter" href="https://twitter.com/@Code4SA"><i class="fa fa-twitter fa-2x"></i></a></li> </ul> </div><!--/.nav-collapse --> </div> </nav> {{ content }} <footer class="footer"> <div class="container"> <div class="row"> <div class="col-sm-2 col-xs-6"> <a href="http://code4sa.org" target="_blank"> <img class="logo" src="/img/code4sa_logo_white.png"> </a> </div> <div class="col-sm-2 col-xs-6"> <a href="http://opendemocracy.org.za" target="_blank"> <img class="logo" src="/img/odac-logo.png"> </a> </div> <div class="col-sm-2 col-xs-12"> <p> <a href="https://github.com/Code4SA/cpt-noise">Fork me on GitHub</a> </p> </div> </div> </div> </footer>
data science/machine_learning_for_the_web/chapter_4/movie/8220.html
xianjunzhengbackup/code
<HTML><HEAD> <TITLE>Review for Nothing to Lose (1997)</TITLE> <LINK REL="STYLESHEET" TYPE="text/css" HREF="/ramr.css"> </HEAD> <BODY BGCOLOR="#FFFFFF" TEXT="#000000"> <H1 ALIGN="CENTER" CLASS="title"><A HREF="/Title?0119807">Nothing to Lose (1997)</A></H1><H3 ALIGN=CENTER>reviewed by<BR><A HREF="/ReviewsBy?Steve+Rhodes">Steve Rhodes</A></H3><HR WIDTH="40%" SIZE="4"> <PRE> NOTHING TO LOSE A film review by Steve Rhodes Copyright 1997 Steve Rhodes</PRE> <PRE>RATING (0 TO ****): ** 1/2</PRE> <P> Sometimes an audience can work against you. For the press screening of the comedy NOTHING TO LOSE, the studio and the hosting radio station had given out more tickets than seats. And the vast majority of those fortunate enough to find a place acted like card carrying members of the Martin Lawrence fan club. Lawrence, from A THIN LINE BETWEEN LOVE AND HATE and the HOUSE PARTY series, has a happy demeanor to go with his fast and sometimes foul mouth. He's quite a likable star so I can understand part of his attraction.</P> <P> When Lawrence, playing robber Terrence Paul Davidson, said two words, any two words, the audience went into pandemonium. Since I thought the first part was only sporadically funny, I felt strangely isolated. As pleased as I was that the audience was having such a great time, I found the audience's riotous attitude off-putting since I thought most of the initial gags in the movie only barely worked.</P> <P> Perhaps the biggest surprise for me was that writer and director Steve Oedekerk (ACE VENTURA: WHEN NATURE CALLS) eventually won me over by sheer audacity. The broadly written comedy in NOTHING TO LOSE takes many risks and some of them pay off beautifully. And then again, some sink like a stone.</P> <P> Tim Robbins, who had many fewer fans at my screening, was much funnier than Lawrence. Although most people associate him with his more serious parts, as in THE SHAWSHANK REDEMPTION, he has a wide comedic pedigree from the hilarious (BULL DURHAM) to the comedically- challenged (HOWARD THE DUCK). In NOTHING TO LOSE he has the delayed reaction down pat. After a pregnant pause, he delivers his lines with great deadpan humor.</P> <P> In NOTHING TO LOSE Robbins plays rich advertising executive Nick Beam, who works out of a palatial suite of offices in Los Angeles. The story starts simply but lovingly with him and his wife, Ann (played by Kelly Preston from CITIZEN RUTH), engaged in make-believe while sitting on their bed. She would make up a lie that she was having an affair, and he would have to try to keep a straight face, and then they would switch sides. The chemistry and love between them seems genuine from the first scene. They call each other on the phone during their hectic work schedules just to flirt with all the passion of two new lovers. In short, a perfect marriage.</P> <P> Nick comes home early one day to find his lecherous boss, Philip Barrow (Michael McKean), whose office contains arguably the funniest fertility statue ever, having sex with his wife. Rather than speak up, Nick slips out the door in a state of utter devastation. His drives 16 MPH on the freeway and in town oblivious to the world he no longer cares about. When Terrence hops in Nick's car to rob him, Nick looks at him with a vacant stare and declares, "Boy, you picked the wrong guy, on the wrong day." Nick starts his sport utility vehicle on a kamikaze mission. When he fails at getting them both killed, he heads for the Arizona desert, turning the robber into a crying hostage.</P> <P> Slowly the two leads begin the inevitable bonding process which culminates with Nick's concocting a scheme to steal money from his boss's safe as a way to get back at his boss for ruining his life.</P> <P> Not content with having Lawrence play a robber, the writer had to design a Norman Rockwell family for him and let us in on his secret. The reason he has turned to a life of crime is that people will not hire him. Although he has the skills to make it in the computer industry, people will not give him a chance because he is black and inexperienced. We are even shown a stack of rejection letters. Why can't a robber in a comedy just be a robber? (Still, it does make for one joke that people in the computer field will appreciate. Terrence wants to know exactly what kind of computers they have in Nick's office. "NT?" Terrence asks. Looking like someone who has just wasted their money on the wrong designer shoes, Nick sheepishly replies, "No, just Windows.")</P> <P> Along the way to their big crime, Terrence and Nick run into two lowlife criminals named Rig (John C. McGinley) and Charlie (Giancarlo Esposito), whose purpose is to supply a plot device to complicate the big burglary.</P> <P> Of the movie's farcical scenes that work, two stand out. In one, Terrence and Nick steal two flashlights from a hardware store and use the owner as a focus group of one to evaluate the fright factor of various ways of holding people up. In another, the guard watching the boss's office does a late night John Travolta-style dance number that our two would-be robbers worry will never end.</P> <P> NOTHING TO LOSE's name says it all. Not a great comedy, but one worth trying.</P> <P> NOTHING TO LOSE runs a fast 1:37. It is rated R for profanity and sex. Although we were shocked to see a large part of our audience under 9 and many under 6, kids under 13 have no business being there. For teenagers, the show should be fine. I give the picture thumbs up and ** 1/2.</P> <PRE><HR>**** = A must see film. *** = Excellent show. Look for it. ** = Average movie. Kind of enjoyable. * = Poor show. Don't waste your money. 0 = Totally and painfully unbearable picture.</PRE> <PRE>REVIEW WRITTEN ON: July 10, 1997</PRE> <P>Opinions expressed are mine and not meant to reflect my employer's.</P> <HR><P CLASS=flush><SMALL>The review above was posted to the <A HREF="news:rec.arts.movies.reviews">rec.arts.movies.reviews</A> newsgroup (<A HREF="news:de.rec.film.kritiken">de.rec.film.kritiken</A> for German reviews).<BR> The Internet Movie Database accepts no responsibility for the contents of the review and has no editorial control. Unless stated otherwise, the copyright belongs to the author.<BR> Please direct comments/criticisms of the review to relevant newsgroups.<BR> Broken URLs inthe reviews are the responsibility of the author.<BR> The formatting of the review is likely to differ from the original due to ASCII to HTML conversion. </SMALL></P> <P ALIGN=CENTER>Related links: <A HREF="/Reviews/">index of all rec.arts.movies.reviews reviews</A></P> </P></BODY></HTML>
data science/machine_learning_for_the_web/chapter_4/movie/10286.html
xianjunzhengbackup/code
<HTML><HEAD> <TITLE>Review for Scream 2 (1997)</TITLE> <LINK REL="STYLESHEET" TYPE="text/css" HREF="/ramr.css"> </HEAD> <BODY BGCOLOR="#FFFFFF" TEXT="#000000"> <H1 ALIGN="CENTER" CLASS="title"><A HREF="/Title?0120082">Scream 2 (1997)</A></H1><H3 ALIGN=CENTER>reviewed by<BR><A HREF="/ReviewsBy?Bert+Gene">Bert Gene</A></H3><HR WIDTH="40%" SIZE="4"> <PRE>Scream 2 (1997) </PRE> <P>tag line: "Someone (could it be the producers?) has taken their love for Sequels too far" </P> <P>The much over-hyped Scream 2--directed by horror-veteran Wes Cavern (first known for his Halloween films) and written by the industry's latest hip screenwriter Kevin Smith---exemplifies the latest tastelessness and greed of Hollywood franchise movie-making in unrelenting pursuit of the ole mighty dollar by hitting its Gen-X viewers over the head with its bag of tired plot twists and hollow characters. For a couple of film makers known for having a track record for "getting it" in terms of knowing what the audience expects, Scream 2 shows that Cavern and Smith do NOT definitely "get it" this time around. </P> <P>This "must see sequel" begins with the sneak preview of "Stab" with Maureen McCormick (Jada Pinkett of Facts of Life) and Phil Stevens (Cuba Gooding Jr.of Jerry Maguire) bitching about how long the damn line is. At one point, smart-mouth Jada does well to sum up the mood of most of the viewers, "I don't wanna see some dumbass white movie about some dumbass white girl being chased by some dumbass killer." For me personally, I don't wanna see a dumbass movie of any dumbass nationality period! </P> <P>They finally get inside the theater where we constantly cut to scenes of "Stab" which is just a poor excuse to use clips from the original movie Scream. This is just a lame gimmick for the studios to save a buck, last seen in Back to the Future Part 2 where they used numerous footage from the original movie. </P> <P>However, one difference is that they unsuccessfully attempted to disguise this trick through today's technological advancement in visual effects. What they do is they CGI the new faces over the original actors face. For instance, Tori Spelling (of Melrose Place) is morphed over Neve Campbell (of Party of Five) in the role of Sidney for the movie "Stab." Last time I checked CGI is pretty expensive...what was Miramax thinking? Did they watch too many Robert Zemeckis flicks?...this explains the the Back to the Future Part 2 influence. </P> <P>The smarter thing to do would've been the old fashion method...hire NEW ACTORS to play the roles! But again why would Tori Spelling be stupid enough to accept a part in this sequel when she was the main butt of jokes in the original. Tori would be the last to wanna play some dumbass white girl in this movie. No wonder they had to CGI Tori for this film. </P> <P>Not only does this CGI scheme backfire the studio's plan to save money, but it also just plain insults the audience's intelligence...what idiot would not notice the horrible cheesy CGI effects?! Everyone knows Tori does not look that grotesque on the big screen. Last time I've check, Tori was a blond bombshell, not some sagging bleached brunnette. </P> <P>Anyways back to the story...if there is one. Returning in the sequel are the survivors of the first original horrid horror film: hapless idiot Sidney (Neve Campbell), superbitch reporter Gale (Courtney Love), video-geek Randy (Jamie Kennedy), OJ wannabe Cotton (Liev Taylor) and asinine security guard Dewey (David Arquette). </P> <P>Also joining them are a crop new stabbing victims up for Ghostface's picking. They are Sarah Jessica Gellar (Buffy the Vampire Slayer), Jerry O'Connel (Stand By Me, Star Trek), Elise Neal (A Different World), and Laurie Metcalf (Roseanne). These characters are never really developed and just are brainless cattle that add to the sequels higher bodycount. </P> <P>And for the plot? Well, being too stupid to take a relaxing trip to Europe, Sidney and the rest of them decide to go to college where there's nothing more like calculus homework to soothe one from the emotional trauma of being almost butchered the previous year. </P> <P>As soon as the copy cat killer makes its presence known on campus, the movie shoves its copy cat script of the original up the audience's naive ass. Instead of a bunch of superficial high schoolers, the movie sets its havoc amongst superficial sorority gals and fraternity brats whose lives are already complicated enough with big problems such as finding kegs, eating pizza, and getting laid. (Lots of change between high school and college hey?) These characters get so much of the audience's sympathy that when one is killed by Spookface, yawns from the audience fill the theater with a great sense of loss (...of attention that is). </P> <P>Moreover, the sequel constantly backfires on itself by the way it continues to unintentionally remind the audience of how awful the movie is. In particular, at one point we watch a scene with a bunch of uptight film students discussing how awful sequels are compared to its predecessor. Was the writer and director too oblivious to see this inside joke that we the audience chuckled at? Why in the hell would you keep reminding an audience that's watching a sequel that sequels suck? That's like Taco Bell telling its customers to their face that the burritos they're eating will give them diarrhea. </P> <P>To avoid being castrated by the latest Scream fanatic, I won't reveal details of who gets killed and what happens. You'll just have to waste the 7 bucks yourself to find out. </P> <P>One thing I can tell is that you don't have to be a psychic to figure that there's gonna be a part 3 sometime in the near future. </P> <P>An Idea for Kevin Smith: In "Scream 3," the killers behind the masks are a fat, four-eyes movie critic and his boney-ass bald partner, trying to discredit horror movies so they won't have to sit through anymore and then get their heads shot by Sidney so regular folks don't have to listen their bitchy and moaning critiques anymore either. </P> <P>I hope one day Kevin goes back to making witty twenty-something films instead of writing worthless horror trash. </P> <PRE>Reviewman</PRE> <HR><P CLASS=flush><SMALL>The review above was posted to the <A HREF="news:rec.arts.movies.reviews">rec.arts.movies.reviews</A> newsgroup (<A HREF="news:de.rec.film.kritiken">de.rec.film.kritiken</A> for German reviews).<BR> The Internet Movie Database accepts no responsibility for the contents of the review and has no editorial control. Unless stated otherwise, the copyright belongs to the author.<BR> Please direct comments/criticisms of the review to relevant newsgroups.<BR> Broken URLs inthe reviews are the responsibility of the author.<BR> The formatting of the review is likely to differ from the original due to ASCII to HTML conversion. </SMALL></P> <P ALIGN=CENTER>Related links: <A HREF="/Reviews/">index of all rec.arts.movies.reviews reviews</A></P> </P></BODY></HTML>
doc/jdk6_cn/javax/swing/event/MenuEvent.html
piterlin/piterlin.github.io
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0-beta2) on Mon Mar 19 19:07:28 CST 2007 --> <META http-equiv="Content-Type" content="text/html; charset=utf-8"> <TITLE> MenuEvent (Java Platform SE 6) </TITLE><script>var _hmt = _hmt || [];(function() {var hm = document.createElement("script");hm.src = "//hm.baidu.com/hm.js?dd1361ca20a10cc161e72d4bc4fef6df";var s = document.getElementsByTagName("script")[0];s.parentNode.insertBefore(hm, s);})();</script> <META NAME="date" CONTENT="2007-03-19"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="MenuEvent (Java Platform SE 6)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="跳过导航链接"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>概述</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>软件包</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>类</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/MenuEvent.html"><FONT CLASS="NavBarFont1"><B>使用</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>树</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>已过时</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>索引</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>帮助</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> <b>Java<sup><font size=-2>TM</font></sup>&nbsp;Platform<br>Standard&nbsp;Ed. 6</b></EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../javax/swing/event/MenuDragMouseListener.html" title="javax.swing.event 中的接口"><B>上一个类</B></A>&nbsp; &nbsp;<A HREF="../../../javax/swing/event/MenuKeyEvent.html" title="javax.swing.event 中的类"><B>下一个类</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?javax/swing/event/MenuEvent.html" target="_top"><B>框架</B></A> &nbsp; &nbsp;<A HREF="MenuEvent.html" target="_top"><B>无框架</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../allclasses-noframe.html"><B>所有类</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../allclasses-noframe.html"><B>所有类</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> 摘要:&nbsp;嵌套&nbsp;|&nbsp;<A HREF="#fields_inherited_from_class_java.util.EventObject">字段</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">构造方法</A>&nbsp;|&nbsp;<A HREF="#methods_inherited_from_class_java.util.EventObject">方法</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> 详细信息:&nbsp;字段&nbsp;|&nbsp;<A HREF="#constructor_detail">构造方法</A>&nbsp;|&nbsp;方法</FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> javax.swing.event</FONT> <BR> 类 MenuEvent</H2> <PRE> <A HREF="../../../java/lang/Object.html" title="java.lang 中的类">java.lang.Object</A> <IMG SRC="../../../resources/inherit.gif" ALT="继承者 "><A HREF="../../../java/util/EventObject.html" title="java.util 中的类">java.util.EventObject</A> <IMG SRC="../../../resources/inherit.gif" ALT="继承者 "><B>javax.swing.event.MenuEvent</B> </PRE> <DL> <DT><B>所有已实现的接口:</B> <DD><A HREF="../../../java/io/Serializable.html" title="java.io 中的接口">Serializable</A></DD> </DL> <HR> <DL> <DT><PRE>public class <B>MenuEvent</B><DT>extends <A HREF="../../../java/util/EventObject.html" title="java.util 中的类">EventObject</A></DL> </PRE> <P> MenuEvent 用于通知感兴趣的参与者作为事件源的菜单已经被发送、选定或取消。 <p> <strong>警告:</strong>此类的序列化对象将与以后的 Swing 版本不兼容。当前的序列化支持适用于短期存储或运行相同 Swing 版本的应用程序之间的 RMI。从 1.4 版本开始,已在 <code>java.beans</code> 包中添加了支持所有 JavaBeans<sup><font size="-2">TM</font></sup> 长期存储的功能。请参见 <A HREF="../../../java/beans/XMLEncoder.html" title="java.beans 中的类"><CODE>XMLEncoder</CODE></A>。 <P> <P> <HR> <P> <!-- =========== FIELD SUMMARY =========== --> <A NAME="field_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>字段摘要</B></FONT></TH> </TR> </TABLE> &nbsp;<A NAME="fields_inherited_from_class_java.util.EventObject"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>从类 java.util.<A HREF="../../../java/util/EventObject.html" title="java.util 中的类">EventObject</A> 继承的字段</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><A HREF="../../../java/util/EventObject.html#source">source</A></CODE></TD> </TR> </TABLE> &nbsp; <!-- ======== CONSTRUCTOR SUMMARY ======== --> <A NAME="constructor_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>构造方法摘要</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../javax/swing/event/MenuEvent.html#MenuEvent(java.lang.Object)">MenuEvent</A></B>(<A HREF="../../../java/lang/Object.html" title="java.lang 中的类">Object</A>&nbsp;source)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;构造一个 MenuEvent 对象。</TD> </TR> </TABLE> &nbsp; <!-- ========== METHOD SUMMARY =========== --> <A NAME="method_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>方法摘要</B></FONT></TH> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.util.EventObject"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>从类 java.util.<A HREF="../../../java/util/EventObject.html" title="java.util 中的类">EventObject</A> 继承的方法</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><A HREF="../../../java/util/EventObject.html#getSource()">getSource</A>, <A HREF="../../../java/util/EventObject.html#toString()">toString</A></CODE></TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>从类 java.lang.<A HREF="../../../java/lang/Object.html" title="java.lang 中的类">Object</A> 继承的方法</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><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#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></TD> </TR> </TABLE> &nbsp; <P> <!-- ========= CONSTRUCTOR DETAIL ======== --> <A NAME="constructor_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>构造方法详细信息</B></FONT></TH> </TR> </TABLE> <A NAME="MenuEvent(java.lang.Object)"><!-- --></A><H3> MenuEvent</H3> <PRE> public <B>MenuEvent</B>(<A HREF="../../../java/lang/Object.html" title="java.lang 中的类">Object</A>&nbsp;source)</PRE> <DL> <DD>构造一个 MenuEvent 对象。 <P> <DL> <DT><B>参数:</B><DD><CODE>source</CODE> - 发起事件的 Object(通常为 <code>this</code>)</DL> </DL> <!-- ========= END OF CLASS DATA ========= --> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="跳过导航链接"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>概述</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>软件包</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>类</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/MenuEvent.html"><FONT CLASS="NavBarFont1"><B>使用</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>树</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>已过时</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>索引</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>帮助</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> <b>Java<sup><font size=-2>TM</font></sup>&nbsp;Platform<br>Standard&nbsp;Ed. 6</b></EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../javax/swing/event/MenuDragMouseListener.html" title="javax.swing.event 中的接口"><B>上一个类</B></A>&nbsp; &nbsp;<A HREF="../../../javax/swing/event/MenuKeyEvent.html" title="javax.swing.event 中的类"><B>下一个类</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?javax/swing/event/MenuEvent.html" target="_top"><B>框架</B></A> &nbsp; &nbsp;<A HREF="MenuEvent.html" target="_top"><B>无框架</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../allclasses-noframe.html"><B>所有类</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../allclasses-noframe.html"><B>所有类</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> 摘要:&nbsp;嵌套&nbsp;|&nbsp;<A HREF="#fields_inherited_from_class_java.util.EventObject">字段</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">构造方法</A>&nbsp;|&nbsp;<A HREF="#methods_inherited_from_class_java.util.EventObject">方法</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> 详细信息:&nbsp;字段&nbsp;|&nbsp;<A HREF="#constructor_detail">构造方法</A>&nbsp;|&nbsp;方法</FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> <font size="-1"><a href="http://bugs.sun.com/services/bugreport/index.jsp">提交错误或意见</a><br>有关更多的 API 参考资料和开发人员文档,请参阅 <a href="http://java.sun.com/javase/6/webnotes/devdocs-vs-specs.html">Java SE 开发人员文档</a>。该文档包含更详细的、面向开发人员的描述,以及总体概述、术语定义、使用技巧和工作代码示例。 <p>版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守<a href="http://java.sun.com/javase/6/docs/legal/license.html">许可证条款</a>。另请参阅<a href="http://java.sun.com/docs/redist.html">文档重新分发政策</a>。</font> </BODY> </HTML>
people/gxssiqrh.html
slowe/panelshows
<html> <head> <title>Leucha Veneer'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>Leucha Veneer's panel show appearances</h1> <p>Leucha Veneer has appeared in <span class="total">2</span> episodes between 2012-2014. Note that these appearances may be for more than one person if multiple people have the same name.</p> <div class="performerholder"> <table class="performer"> <tr style="vertical-align:bottom;"> <td><div style="height:100px;" class="performances female" title="1"></div><span class="year">2012</span></td> <td><div style="height:0px;" class="performances female" title=""></div><span class="year">2013</span></td> <td><div style="height:100px;" class="performances female" title="1"></div><span class="year">2014</span></td> </tr> </table> </div> <ol class="episodes"> <li><strong>2014-01-30</strong> / <a href="../shows/iot.html">In Our Time</a></li> <li><strong>2012-04-12</strong> / <a href="../shows/iot.html">In Our Time</a></li> </ol> </div> </body> </html>
index.html
patrickms/HackBushwick2014
<!DOCTYPE html> <html> <head> <meta charset=utf-8 /> <title>Bushwick information kiosk</title> <script> function E(e){ return document.getElementById(e); } function getChildFrame(id){ var t = E(id); var f = t.contentWindow || t.contentDocument; if(f.document)f = f.document; return f; } //var tf = window.frames[0].contentWindow; //control.postMessage("Fuck you, too!"); function listener(event){ if ( event.origin !== "http://hackbushwick.ngrok.com" && event.origin !== "https://hackbushwick.ngrok.com" && event.origin.search("github")<0 ) return window.open(event.data,"content"); } if (window.addEventListener){ addEventListener("message", listener, false) } else { attachEvent("onmessage", listener) } </script> </head> <frameset rows="160px,*"> <frame id="control" name="control" src="https://patrickms.github.io/HackBushwick2014/control.html"> <frame id="content" name="content" src=""> </frameset> </html>
clean/Linux-x86_64-4.07.1-2.0.6/released/8.8.2/idxassoc/8.7.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>idxassoc: 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.2 / idxassoc - 8.7.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> idxassoc <small> 8.7.0 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2021-12-01 20:57:33 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-01 20:57: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.2 Formal proof management system num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.07.1 The OCaml compiler (virtual package) ocaml-base-compiler 4.07.1 Official release 4.07.1 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;[email protected]&quot; homepage: &quot;https://github.com/coq-contribs/idxassoc&quot; license: &quot;BSD with advertising clause&quot; build: [make &quot;-j%{jobs}%&quot;] install: [make &quot;install&quot;] remove: [&quot;rm&quot; &quot;-R&quot; &quot;%{lib}%/coq/user-contrib/IdxAssoc&quot;] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.7&quot; &amp; &lt; &quot;8.8~&quot;} ] tags: [ &quot;keyword: associative arrays&quot; &quot;keyword: search operator&quot; &quot;keyword: data structures&quot; &quot;category: Computer Science/Data Types and Data Structures&quot; &quot;date: April 2001&quot; ] authors: [ &quot;Dominique Quatravaux&quot; &quot;François-René Ridaux&quot; &quot;Gérald Macinenti&quot; ] bug-reports: &quot;https://github.com/coq-contribs/idxassoc/issues&quot; dev-repo: &quot;git+https://github.com/coq-contribs/idxassoc.git&quot; synopsis: &quot;Associative Arrays&quot; description: &quot;&quot;&quot; We define the associative array (key -&gt; value associations) datatype as list of couples, providing definitions of standards operations such as adding, deleting. We introduce predicates for membership of a key and of couples. Finally we define a search operator (&quot;find&quot;) which returns the value associated with a key or the &quot;none&quot; option (see file Option.v which should be part of this contribution) on failure. Lemmas we prove about these concepts were motivated by our needs at the moment we created this file. We hope they&#39;ll suit your needs too but anyway, feel free to communicate any wish or remark.&quot;&quot;&quot; flags: light-uninstall url { src: &quot;https://github.com/coq-contribs/idxassoc/archive/v8.7.0.tar.gz&quot; checksum: &quot;md5=35a56997f739b213f679dd1566fe3072&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-idxassoc.8.7.0 coq.8.8.2</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.2). The following dependencies couldn&#39;t be met: - coq-idxassoc -&gt; coq &lt; 8.8~ -&gt; ocaml &lt; 4.06.0 base of this switch (use `--unlock-base&#39; to force) 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-idxassoc.8.7.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>
static/docs/generated/module/substation/module/action/property/request/member/files/spare/summary/index.html
shenanigans/node-sublayer
<!DOCTYPE html> <html> <head> <title>substation:Action.Request#files~summary documentation</title> <link rel="stylesheet" type="text/css" href="../../../../../../../../../../index.css" /> <link rel="stylesheet" type="text/css" href="../../../../../../../../../../highlight.css" /> <script type="text/javascript" src="../../../../../../../../../../index.js"></script> </head> <body class="spare" id="component_1602"> <div id="outer"> <div id="header"> <a class="ctype" href="../../../../../../../../../../index.html">spare</a> <span></span> <span class="breadcrumbs"> <span class="delimiter">:</span><a href="../../../../../../../../index.html" class="breadcrumb module">substation</a><span class="delimiter">:</span><a href="../../../../../../index.html" class="breadcrumb module">Action</a><span class="delimiter">.</span><a href="../../../../index.html" class="breadcrumb class">Request</a><span class="delimiter">#</span><a href="../../index.html" class="breadcrumb member">files</a><span class="delimiter">~</span><a href="index.html" class="breadcrumb spare">summary</a> </span> </div> <div id="content"> <!-- basic document info --> <div id="details"> <div class="markdown"><p>When <a href="javascript:return false;">cacheFiles</a> is set, an Array of file info Objects containing Buffers is passed. This is part of an unstable feature.</p> </div> <div class="clear"></div> </div> <div class="children"> </div> </div> </div> <div id="footer"> This document was generated with <a href="https://github.com/shenanigans/node-doczar">doczar</a> at <span class="time">3:59pm</span> on <span class="date">8/11/2015</span> </div> </body> </html>
public/tags/hugo/index.html
shohan4556/me
<!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="theme" content="hugo-academic"> <meta name="generator" content="Hugo 0.28" /> <meta name="author" content="Lena Smith"> <meta name="description" content="Professor of Artificial Intelligence"> <link rel="stylesheet" href="/css/highlight.min.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha512-6MXa8B6uaO18Hid6blRMetEIoPqHf7Ux1tnyIQdpt9qI5OACx7C+O3IVTr98vwGnlcg0LOLa02i9Y1HpVhlfiw==" crossorigin="anonymous"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/academicons/1.8.1/css/academicons.min.css" integrity="sha512-NThgw3XKQ1absAahW6to7Ey42uycrVvfNfyjqcFNgCmOCQ5AR4AO0SiXrN+8ZtYeappp56lk1WtvjVmEa+VR6A==" crossorigin="anonymous"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha512-SfTiTlX6kk+qitfevl/7LibUOeJWlt9rbyDn92a1DqWOw9vWG2MFoays0sgObmWazO5BQPiFucnnEAjpAB+/Sw==" crossorigin="anonymous"> <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:400,700%7CMerriweather%7CRoboto+Mono"> <link rel="stylesheet" href="/css/hugo-academic.css"> <link rel="alternate" href="/tags/hugo/index.xml" type="application/rss+xml" title="Academic"> <link rel="feed" href="/tags/hugo/index.xml" type="application/rss+xml" title="Academic"> <link rel="icon" type="image/png" href="/img/icon.png"> <link rel="apple-touch-icon" type="image/png" href="/img/apple-touch-icon.png"> <link rel="canonical" href="/tags/hugo/"> <title>Hugo | Academic</title> </head> <body id="top" data-spy="scroll" data-target="#navbar-main" data-offset="71"> <nav class="navbar navbar-default navbar-fixed-top" id="navbar-main"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-collapse" aria-expanded="false"> <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="/">Academic</a> </div> <div class="collapse navbar-collapse"> <ul class="nav navbar-nav navbar-right"> <li class="nav-item"> <a href="/#about"> <span>Home</span> </a> </li> <li class="nav-item"> <a href="/#publications_selected"> <span>Publications</span> </a> </li> <li class="nav-item"> <a href="/#posts"> <span>Posts</span> </a> </li> <li class="nav-item"> <a href="/#projects"> <span>Projects</span> </a> </li> <li class="nav-item"> <a href="/#teaching"> <span>Teaching</span> </a> </li> <li class="nav-item"> <a href="/#contact"> <span>Contact</span> </a> </li> </ul> </div> </div> </nav> <div class="universal-wrapper"> <h1>Hugo</h1> <div> <h2><a href="/post/getting-started/">Getting started with the Academic framework for Hugo</a></h2> <div class="article-style"> Create a beautifully simple personal or academic website in under 10 minutes. </div> </div> <div> <h2><a href="/post/widgets/">Customizing the homepage with widgets</a></h2> <div class="article-style"> Enable/disable and configure widgets to customize your homepage. </div> </div> <div> <h2><a href="/post/managing-content/">Managing content</a></h2> <div class="article-style"> This is a brief guide to managing content with the Academic framework. Content can include publications, projects, talks, and news/blog articles. After you have read this guide about creating and managing content, you may also be interested to learn about <a href="/post/writing-markdown-latex/" target="_blank">writing content with Markdown, LaTeX, and Shortcodes</a>. </div> </div> </div> <footer class="site-footer"> <div class="container"> <p class="powered-by"> &copy; 2017 Your Name &middot; Powered by the <a href="https://github.com/gcushen/hugo-academic" target="_blank">Academic theme</a> for <a href="http://gohugo.io" target="_blank">Hugo</a>. <span class="pull-right" aria-hidden="true"> <a href="#" id="back_to_top"> <span class="button_icon"> <i class="fa fa-chevron-up fa-2x"></i> </span> </a> </span> </p> </div> </footer> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.4/jquery.min.js" integrity="sha512-jGsMH83oKe9asCpkOVkBnUrDDTp8wl+adkB2D+//JtlxO4SrLoJdhbOysIFQJloQFD+C4Fl1rMsQZF76JjV0eQ==" crossorigin="anonymous"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.imagesloaded/4.1.2/imagesloaded.pkgd.min.js" integrity="sha512-iHzEu7GbSc705hE2skyH6/AlTpOfBmkx7nUqTLGzPYR+C1tRaItbRlJ7hT/D3YQ9SV0fqLKzp4XY9wKulTBGTw==" crossorigin="anonymous"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.19.1/TweenMax.min.js" integrity="sha512-Z5heTz36xTemt1TbtbfXtTq5lMfYnOkXM2/eWcTTiLU01+Sw4ku1i7vScDc8fWhrP2abz9GQzgKH5NGBLoYlAw==" crossorigin="anonymous"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.19.1/plugins/ScrollToPlugin.min.js" integrity="sha512-CDeU7pRtkPX6XJtF/gcFWlEwyaX7mcAp5sO3VIu/ylsdR74wEw4wmBpD5yYTrmMAiAboi9thyBUr1vXRPA7t0Q==" crossorigin="anonymous"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha512-iztkobsvnjKfAtTNdHkGVjAYTrrtlC7mGp/54c40wowO7LhURYl3gVzzcEqGl/qKXQltJ2HwMrdLcNUdo+N/RQ==" 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="/js/hugo-academic.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/highlight.min.js"></script> <script>hljs.initHighlightingOnLoad();</script> </body> </html>
pcap/libc/types/os/common/posix01/struct.timespec.html
ebfull/ebfull.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `timespec` struct in crate `libc`."> <meta name="keywords" content="rust, rustlang, rust-lang, timespec"> <title>libc::types::os::common::posix01::timespec - Rust</title> <link rel="stylesheet" type="text/css" href="../../../../../main.css"> <link rel="shortcut icon" href="https://doc.rust-lang.org/favicon.ico"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <nav class="sidebar"> <a href='../../../../../libc/index.html'><img src='https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png' alt='' width='100'></a> <p class='location'><a href='../../../../index.html'>libc</a>::<wbr><a href='../../../index.html'>types</a>::<wbr><a href='../../index.html'>os</a>::<wbr><a href='../index.html'>common</a>::<wbr><a href='index.html'>posix01</a></p><script>window.sidebarCurrent = {name: 'timespec', ty: 'struct', relpath: ''};</script><script defer src="sidebar-items.js"></script> </nav> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content struct"> <h1 class='fqn'><span class='in-band'>Struct <a href='../../../../index.html'>libc</a>::<wbr><a href='../../../index.html'>types</a>::<wbr><a href='../../index.html'>os</a>::<wbr><a href='../index.html'>common</a>::<wbr><a href='index.html'>posix01</a>::<wbr><a class='struct' href=''>timespec</a></span><span class='out-of-band'><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-251' class='srclink' href='../../../../../src/libc/lib.rs.html#262-265' title='goto source code'>[src]</a></span></h1> <pre class='rust struct'>pub struct timespec { pub tv_sec: <a class='type' href='../../../../../libc/types/os/arch/c95/type.time_t.html' title='libc::types::os::arch::c95::time_t'>time_t</a>, pub tv_nsec: <a class='type' href='../../../../../libc/types/os/arch/c95/type.c_long.html' title='libc::types::os::arch::c95::c_long'>c_long</a>, }</pre><h2 class='fields'>Fields</h2> <table><tr class='stab '> <td id='structfield.tv_sec'><code>tv_sec</code></td><td></td></tr><tr class='stab '> <td id='structfield.tv_nsec'><code>tv_nsec</code></td><td></td></tr></table><h2 id='implementations'>Trait Implementations</h2><h3 id='derived_implementations'>Derived Implementations </h3><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html' title='core::clone::Clone'>Clone</a> for <a class='struct' href='../../../../../libc/types/os/common/posix01/struct.timespec.html' title='libc::types::os::common::posix01::timespec'>timespec</a></code></h3><div class='impl-items'><h4 id='method.clone' class='method'><code>fn <a href='https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#method.clone' class='fnname'>clone</a>(&amp;self) -&gt; <a class='struct' href='../../../../../libc/types/os/common/posix01/struct.timespec.html' title='libc::types::os::common::posix01::timespec'>timespec</a></code></h4> <h4 id='method.clone_from' class='method'><code>fn <a href='https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#method.clone_from' class='fnname'>clone_from</a>(&amp;mut self, source: &amp;Self)</code></h4> </div><h3 class='impl'><code>impl <a class='trait' href='https://doc.rust-lang.org/nightly/core/marker/trait.Copy.html' title='core::marker::Copy'>Copy</a> for <a class='struct' href='../../../../../libc/types/os/common/posix01/struct.timespec.html' title='libc::types::os::common::posix01::timespec'>timespec</a></code></h3><div class='impl-items'></div></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <aside id="help" class="hidden"> <div> <h1 class="hidden">Help</h1> <div class="shortcuts"> <h2>Keyboard Shortcuts</h2> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> </dl> </div> <div class="infos"> <h2>Search Tricks</h2> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code>) </p> </div> </div> </aside> <script> window.rootPath = "../../../../../"; window.currentCrate = "libc"; window.playgroundUrl = "https://play.rust-lang.org/"; </script> <script src="../../../../../jquery.js"></script> <script src="../../../../../main.js"></script> <script src="../../../../../playpen.js"></script> <script async src="../../../../../search-index.js"></script> </body> </html>
app/Resources/mysqlad-icons/demo.html
ivan-abdulin/mysqlad
<!doctype html> <html> <head> <meta charset="utf-8"> <title>IcoMoon Demo</title> <meta name="description" content="An Icon Font Generated By IcoMoon.io"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="demo-files/demo.css"> <link rel="stylesheet" href="style.css"></head> <body> <div class="bgc1 clearfix"> <h1 class="mhmm mvm"><span class="fgc1">Font Name:</span> mysqlad <small class="fgc1">(Glyphs:&nbsp;2)</small></h1> </div> <div class="clearfix mhl ptl"> <h1 class="mvm mtn fgc1">Grid Size: 14</h1> <div class="glyph fs1"> <div class="clearfix bshadow0 pbs"> <span class="icon-check"> </span> <span class="mls"> icon-check</span> </div> <fieldset class="fs0 size1of1 clearfix hidden-false"> <input type="text" readonly value="f00c" class="unit size1of2" /> <input type="text" maxlength="1" readonly value="&#xf00c;" class="unitRight size1of2 talign-right" /> </fieldset> <div class="fs0 bshadow0 clearfix hidden-true"> <span class="unit pvs fgc1">liga: </span> <input type="text" readonly value="" class="liga unitRight" /> </div> </div> <div class="glyph fs1"> <div class="clearfix bshadow0 pbs"> <span class="icon-close"> </span> <span class="mls"> icon-close</span> </div> <fieldset class="fs0 size1of1 clearfix hidden-false"> <input type="text" readonly value="f00d" class="unit size1of2" /> <input type="text" maxlength="1" readonly value="&#xf00d;" class="unitRight size1of2 talign-right" /> </fieldset> <div class="fs0 bshadow0 clearfix hidden-true"> <span class="unit pvs fgc1">liga: </span> <input type="text" readonly value="" class="liga unitRight" /> </div> </div> <div class="glyph fs1"> <div class="clearfix bshadow0 pbs"> <span class="icon-remove"> </span> <span class="mls"> icon-remove</span> </div> <fieldset class="fs0 size1of1 clearfix hidden-false"> <input type="text" readonly value="f00d" class="unit size1of2" /> <input type="text" maxlength="1" readonly value="&#xf00d;" class="unitRight size1of2 talign-right" /> </fieldset> <div class="fs0 bshadow0 clearfix hidden-true"> <span class="unit pvs fgc1">liga: </span> <input type="text" readonly value="" class="liga unitRight" /> </div> </div> <div class="glyph fs1"> <div class="clearfix bshadow0 pbs"> <span class="icon-times"> </span> <span class="mls"> icon-times</span> </div> <fieldset class="fs0 size1of1 clearfix hidden-false"> <input type="text" readonly value="f00d" class="unit size1of2" /> <input type="text" maxlength="1" readonly value="&#xf00d;" class="unitRight size1of2 talign-right" /> </fieldset> <div class="fs0 bshadow0 clearfix hidden-true"> <span class="unit pvs fgc1">liga: </span> <input type="text" readonly value="" class="liga unitRight" /> </div> </div> </div> <!--[if gt IE 8]><!--> <div class="mhl clearfix mbl"> <h1>Font Test Drive</h1> <label> Font Size: <input id="fontSize" type="number" class="textbox0 mbm" min="8" value="48" /> px </label> <input id="testText" type="text" class="phl size1of1 mvl" placeholder="Type some text to test..." value=""/> </label> <div id="testDrive" class="icon-">&nbsp; </div> </div> <!--<![endif]--> <div class="bgc1 clearfix"> <p class="mhl">Generated by <a href="https://icomoon.io/app">IcoMoon</a></p> </div> <script src="demo-files/demo.js"></script> </body> </html>
_posts/2007-08-23-biztalkandelementformdefault.html
tomasr/winterdom.com
--- layout: post status: publish published: true title: BizTalk and elementFormDefault author: display_name: Tomas Restrepo login: tomasr email: [email protected] url: http://winterdom.com/ author_login: tomasr author_email: [email protected] author_url: http://winterdom.com/ wordpress_id: 33 wordpress_url: http://winterdom.com/2007/08/biztalkandelementformdefault date: '2007-08-23 08:54:48 +0000' date_gmt: '2007-08-23 08:54:48 +0000' categories: - BizTalk - XML tags: [] comments: - id: 9667 author: 'BizTalk Server: Three Tips for Initiates | Bennett Adelson Technical Blog' author_email: '' author_url: http://bennettadelson.wordpress.com/2013/02/26/biztalk-server-three-tips-for-initiates/ date: '2013-02-26 16:26:53 +0000' date_gmt: '2013-02-26 16:26:53 +0000' content: "[...] If you want a full explanation you can read here and here. But all you really need to know is the answers to two [...]" --- <p><!--start_raw--> <p>Yossi Dahan commented <a href="http:&#47;&#47;www.sabratech.co.uk&#47;blogs&#47;yossidahan&#47;2007&#47;08&#47;elementformdefault-in-schemas.html">here</a> on being surprised by the implications of the elementFormDefault option in XSD schemas, and particularly in relation to BizTalk. </p> <p>I don't find the behavior surprising myself anymore, as I already was familiar with the implications of elementFormDefault. In reality, this is something that I don't particularly like about XSD, as I find that leaving it to&nbsp;"unqualified"&nbsp;can lead, as Yossi found out, to some weird looking schemas (at least for me). Mind you, regardless of this option, qualified-ness of an element can also be enabled&#47;disabled for each element individually.</p> <p>There are, however, 2 things that make this option more obscure than it should be:</p> <ol> <li>The default value defined in XSD for elementFormDefault is "unqualified". </li> <li>When you install BizTalk, now Visual Studio will have <em>2 different templates</em> for XSD schemas. The original one in Visual Studio has elementFormDefault="qualified", while the one installed by BizTalk doesn't specify elementFormDefault (thus leaving it in the default value of "unqualified"). Which one you get depends on the context in which you use the Add New Item menu in VS.</li></ol> <p>In general, I recommend always watching out for this issue and always explicitly setting elementFormDefault to the appropriate value. In my mind, that appropriate value should always be "qualified" for new schemas :-).</p> <p>Also, just for the sake of completeness, it is worth saying that, under the XSD specification, all <em>root elements</em> defined in a schema are always qualified (i.e. should be associated to the XML targetNamespace of the schema). The elementFormDefault only controls whether <em>child elements</em> are qualified or unqualified. This is why the elementFormDefault option doesn't really "drop namespaces" from the XML document instances; it merely restricts it to the root elements.</p> <div class="wlWriterSmartContent" id="0767317B-992E-4b12-91E0-4F059A8CECA8:242f7972-2c6c-4ea2-8292-b54bbc3ae7fb" contenteditable="false" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px">Technorati tags: <a href="http:&#47;&#47;technorati.com&#47;tags&#47;XSD" rel="tag">XSD</a>, <a href="http:&#47;&#47;technorati.com&#47;tags&#47;BIzTalk" rel="tag">BIzTalk</a></div><!--end_raw--></p>
clean/Linux-x86_64-4.01.0-1.2.0/unstable/8.4.5/contrib:gc/dev/2014-12-12_14-48-39.html
coq-bench/coq-bench.github.io-old
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Coq bench</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.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"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> <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="../../../../.."><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="../../..">Unstable</a></li> <li><a href=".">8.4.5 / contrib:gc dev</a></li> <li class="active"><a href="">2014-12-12 14:48:39</a></li> </ul> <ul class="nav navbar-nav navbar-right"> <li><a href="../../../../../about.html">About</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href=".">« Up</a> <h1> contrib:gc <small> dev <span class="label label-info">Not compatible with this Coq</span> </small> </h1> <p><em><script>document.write(moment("2014-12-12 14:48:39 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2014-12-12 14:48:39 UTC)</em><p> <h2>Lint</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>ruby lint.rb unstable ../unstable/packages/coq:contrib:gc/coq:contrib:gc.dev</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> <dt>Output</dt> <dd><pre>The package is valid. </pre></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 --dry-run coq:contrib:gc.dev coq.8.4.5</code></dd> <dt>Return code</dt> <dd>768</dd> <dt>Duration</dt> <dd>0 s</dd> <dt>Output</dt> <dd><pre>[NOTE] Package coq is already installed (current version is 8.4.5). The following dependencies couldn&#39;t be met: - coq:contrib:gc -&gt; coq &gt;= dev Your request can&#39;t be satisfied: - Conflicting version constraints for coq No solution found, exiting </pre></dd> </dl> <p>Dry install without Coq, to test if the problem was incompatibility with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq; opam install -y --dry-run coq:contrib:gc.dev</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>3 s</dd> <dt>Output</dt> <dd><pre>The following actions will be performed: - remove coq.8.4.5 === 1 to remove === =-=- Removing Packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Removing coq.8.4.5. [WARNING] Directory /home/bench/.opam/system/lib/coq is not empty, not removing [WARNING] Directory /home/bench/.opam/system/share/coq is not empty, not removing The following actions will be performed: - install coq.hott [required by coq:contrib:gc] - install coq:contrib:gc.dev === 2 to install === =-=- Synchronizing package archives -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= =-=- Installing packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Building coq.hott: ./configure -configdir /home/bench/.opam/system/lib/coq/config -mandir /home/bench/.opam/system/man -docdir /home/bench/.opam/system/doc -prefix /home/bench/.opam/system -usecamlp5 -camlp5dir /home/bench/.opam/system/lib/camlp5 -coqide no make -j4 make install Installing coq.hott. Building coq:contrib:gc.dev: coq_makefile -f Make -o Makefile make -j4 make install Installing coq:contrib:gc.dev. </pre></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>Duration</dt> <dd>0 s</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>
ecj19/ecj/docs/classdocs/ec/coevolve/MultiPopCoevolutionaryEvaluator.html
vaisaghvt/gameAnalyzer
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.5.0_16) on Mon Jul 13 16:45:45 EDT 2009 --> <TITLE> MultiPopCoevolutionaryEvaluator </TITLE> <META NAME="keywords" CONTENT="ec.coevolve.MultiPopCoevolutionaryEvaluator class"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { parent.document.title="MultiPopCoevolutionaryEvaluator"; } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../ec/coevolve/GroupedProblemForm.html" title="interface in ec.coevolve"><B>PREV CLASS</B></A>&nbsp; &nbsp;NEXT CLASS</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../index.html?ec/coevolve/MultiPopCoevolutionaryEvaluator.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="MultiPopCoevolutionaryEvaluator.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#field_summary">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;<A HREF="#field_detail">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> ec.coevolve</FONT> <BR> Class MultiPopCoevolutionaryEvaluator</H2> <PRE> java.lang.Object <IMG SRC="../../resources/inherit.gif" ALT="extended by "><A HREF="../../ec/Evaluator.html" title="class in ec">ec.Evaluator</A> <IMG SRC="../../resources/inherit.gif" ALT="extended by "><B>ec.coevolve.MultiPopCoevolutionaryEvaluator</B> </PRE> <DL> <DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../ec/Setup.html" title="interface in ec">Setup</A>, <A HREF="../../ec/Singleton.html" title="interface in ec">Singleton</A>, java.io.Serializable</DD> </DL> <HR> <DL> <DT><PRE>public class <B>MultiPopCoevolutionaryEvaluator</B><DT>extends <A HREF="../../ec/Evaluator.html" title="class in ec">Evaluator</A></DL> </PRE> <P> MultiPopCoevolutionaryEvaluator.java <p>MultiPopCoevolutionaryEvaluator is an Evaluator which performs <i>competitive or cooperative multi-population coevolution</i>. Competitive coevolution is where individuals' fitness is determined by testing them against individuals from other subpopulation. Cooperative coevolution is where individuals form teams together with members of other subpopulations, and the individuals' fitness is computed based on the performance of such teams. This evaluator assumes that the problem can only evaluate groups of individuals containing one individual from each subpopulation. Individuals are evaluated regardless of whether or not they've been evaluated in the past. <p>Your Problem is responsible for updating up the fitness appropriately with values usually obtained from teaming up the individual with different partners from the other subpopulations. MultiPopCoevolutionaryEvaluator expects to use Problems which adhere to the GroupedProblemForm interface, which defines a new evaluate(...) function, plus a preprocess(...) and postprocess(...) function. <p>This coevolutionary evaluator is single-threaded -- maybe we'll hack in multithreading later. It allows any number of subpopulations (implicitly, any number of individuals being evaluated together). The order of individuals in the subpopulation may be changed during the evaluation process. <p><b>Parameters</b><br> <table> <tr><td valign=top><i>base.</i><tt>subpop.X.num-rand-ind</tt><br> <font size=-1> int &gt;= 0</font></td> <td valign=top>(the number of random individuals from subpopulation X to be selected as partners for evaluating individuals in other subpopulations -- individuals are selected at random, with replacement, and they are usually different for each of the individuals in the other subpopulations) </td></tr> <tr><td valign=top><i>base.</i><tt>subpop.X.num-elites</tt><br> <font size=-1> int &gt;= 0</font></td> <td valign=top>(the number of elite individuals from subpopulation X to be selected as partners for evaluating individuals in other subpopulations) </td></tr> <tr><td valign=top><i>base.</i><tt>subpop.X.num-ind</tt><br> <font size=-1> int &gt;= 0</font></td> <td valign=top>(the number of individuals from subpopulation X in the previous generation to be selected as partners for evaluating individuals in other subpopulations -- individuals are selected, with replacement, by using SelectionMethods described next, and they are usually different for each of the individuals in the other subpopulations) </td></tr> <tr><td valign=top><i>base.</i><tt>subpop.X.select</tt><br> <font size=-1> instance of ec.SelectionMethod</font></td> <td valign=top>(the SelectionMethod used to select partners from the individuals in subpopulation X at the previous generation) </td></tr> </table> <P> <P> <DL> <DT><B>See Also:</B><DD><A HREF="../../serialized-form.html#ec.coevolve.MultiPopCoevolutionaryEvaluator">Serialized Form</A></DL> <HR> <P> <!-- =========== FIELD SUMMARY =========== --> <A NAME="field_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Field Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;int[]</CODE></FONT></TD> <TD><CODE><B><A HREF="../../ec/coevolve/MultiPopCoevolutionaryEvaluator.html#numElite">numElite</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;int[]</CODE></FONT></TD> <TD><CODE><B><A HREF="../../ec/coevolve/MultiPopCoevolutionaryEvaluator.html#numInd">numInd</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;int[]</CODE></FONT></TD> <TD><CODE><B><A HREF="../../ec/coevolve/MultiPopCoevolutionaryEvaluator.html#numRand">numRand</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;int[]</CODE></FONT></TD> <TD><CODE><B><A HREF="../../ec/coevolve/MultiPopCoevolutionaryEvaluator.html#numSelected">numSelected</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;java.lang.String</CODE></FONT></TD> <TD><CODE><B><A HREF="../../ec/coevolve/MultiPopCoevolutionaryEvaluator.html#P_NUM_ELITE">P_NUM_ELITE</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;java.lang.String</CODE></FONT></TD> <TD><CODE><B><A HREF="../../ec/coevolve/MultiPopCoevolutionaryEvaluator.html#P_NUM_IND">P_NUM_IND</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;java.lang.String</CODE></FONT></TD> <TD><CODE><B><A HREF="../../ec/coevolve/MultiPopCoevolutionaryEvaluator.html#P_NUM_RAND_IND">P_NUM_RAND_IND</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;java.lang.String</CODE></FONT></TD> <TD><CODE><B><A HREF="../../ec/coevolve/MultiPopCoevolutionaryEvaluator.html#P_SELECTIONMETHOD">P_SELECTIONMETHOD</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;java.lang.String</CODE></FONT></TD> <TD><CODE><B><A HREF="../../ec/coevolve/MultiPopCoevolutionaryEvaluator.html#P_SUBPOP">P_SUBPOP</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp;<A NAME="fields_inherited_from_class_ec.Evaluator"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Fields inherited from class ec.<A HREF="../../ec/Evaluator.html" title="class in ec">Evaluator</A></B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><A HREF="../../ec/Evaluator.html#P_IAMSLAVE">P_IAMSLAVE</A>, <A HREF="../../ec/Evaluator.html#P_MASTERPROBLEM">P_MASTERPROBLEM</A>, <A HREF="../../ec/Evaluator.html#p_problem">p_problem</A>, <A HREF="../../ec/Evaluator.html#P_PROBLEM">P_PROBLEM</A></CODE></TD> </TR> </TABLE> &nbsp; <!-- ======== CONSTRUCTOR SUMMARY ======== --> <A NAME="constructor_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Constructor Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../ec/coevolve/MultiPopCoevolutionaryEvaluator.html#MultiPopCoevolutionaryEvaluator()">MultiPopCoevolutionaryEvaluator</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <!-- ========== METHOD SUMMARY =========== --> <A NAME="method_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Method Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../ec/coevolve/MultiPopCoevolutionaryEvaluator.html#afterCoevolutionaryEvaluation(ec.EvolutionState, ec.Population, ec.coevolve.GroupedProblemForm)">afterCoevolutionaryEvaluation</A></B>(<A HREF="../../ec/EvolutionState.html" title="class in ec">EvolutionState</A>&nbsp;state, <A HREF="../../ec/Population.html" title="class in ec">Population</A>&nbsp;population, <A HREF="../../ec/coevolve/GroupedProblemForm.html" title="interface in ec.coevolve">GroupedProblemForm</A>&nbsp;prob)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../ec/coevolve/MultiPopCoevolutionaryEvaluator.html#beforeCoevolutionaryEvaluation(ec.EvolutionState, ec.Population, ec.coevolve.GroupedProblemForm)">beforeCoevolutionaryEvaluation</A></B>(<A HREF="../../ec/EvolutionState.html" title="class in ec">EvolutionState</A>&nbsp;state, <A HREF="../../ec/Population.html" title="class in ec">Population</A>&nbsp;population, <A HREF="../../ec/coevolve/GroupedProblemForm.html" title="interface in ec.coevolve">GroupedProblemForm</A>&nbsp;prob)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../ec/coevolve/MultiPopCoevolutionaryEvaluator.html#evaluatePopulation(ec.EvolutionState)">evaluatePopulation</A></B>(<A HREF="../../ec/EvolutionState.html" title="class in ec">EvolutionState</A>&nbsp;state)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Evaluates the fitness of an entire population.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;int</CODE></FONT></TD> <TD><CODE><B><A HREF="../../ec/coevolve/MultiPopCoevolutionaryEvaluator.html#getNumEliteIndividuals(int)">getNumEliteIndividuals</A></B>(int&nbsp;subpop)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;int</CODE></FONT></TD> <TD><CODE><B><A HREF="../../ec/coevolve/MultiPopCoevolutionaryEvaluator.html#getNumPartners(int)">getNumPartners</A></B>(int&nbsp;subpop)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;int</CODE></FONT></TD> <TD><CODE><B><A HREF="../../ec/coevolve/MultiPopCoevolutionaryEvaluator.html#getNumPreviousGenerationPartners(int)">getNumPreviousGenerationPartners</A></B>(int&nbsp;subpop)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;int</CODE></FONT></TD> <TD><CODE><B><A HREF="../../ec/coevolve/MultiPopCoevolutionaryEvaluator.html#getNumRandomPartners(int)">getNumRandomPartners</A></B>(int&nbsp;subpop)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../ec/coevolve/MultiPopCoevolutionaryEvaluator.html#loadElites(ec.EvolutionState, ec.Subpopulation, int)">loadElites</A></B>(<A HREF="../../ec/EvolutionState.html" title="class in ec">EvolutionState</A>&nbsp;state, <A HREF="../../ec/Subpopulation.html" title="class in ec">Subpopulation</A>&nbsp;subpop, int&nbsp;whichSubpop)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../ec/coevolve/MultiPopCoevolutionaryEvaluator.html#performCoevolutionaryEvaluation(ec.EvolutionState, ec.Population, ec.coevolve.GroupedProblemForm)">performCoevolutionaryEvaluation</A></B>(<A HREF="../../ec/EvolutionState.html" title="class in ec">EvolutionState</A>&nbsp;state, <A HREF="../../ec/Population.html" title="class in ec">Population</A>&nbsp;population, <A HREF="../../ec/coevolve/GroupedProblemForm.html" title="interface in ec.coevolve">GroupedProblemForm</A>&nbsp;prob)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B><A HREF="../../ec/coevolve/MultiPopCoevolutionaryEvaluator.html#runComplete(ec.EvolutionState)">runComplete</A></B>(<A HREF="../../ec/EvolutionState.html" title="class in ec">EvolutionState</A>&nbsp;state)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns true if an ideal individual has been found or some other run result has shortcircuited the run so that it should end prematurely right now.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../ec/coevolve/MultiPopCoevolutionaryEvaluator.html#setup(ec.EvolutionState, ec.util.Parameter)">setup</A></B>(<A HREF="../../ec/EvolutionState.html" title="class in ec">EvolutionState</A>&nbsp;state, <A HREF="../../ec/util/Parameter.html" title="class in ec.util">Parameter</A>&nbsp;base)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sets up the object by reading it from the parameters stored in <i>state</i>, built off of the parameter base <i>base</i>.</TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_ec.Evaluator"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Methods inherited from class ec.<A HREF="../../ec/Evaluator.html" title="class in ec">Evaluator</A></B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><A HREF="../../ec/Evaluator.html#closeContacts(ec.EvolutionState, int)">closeContacts</A>, <A HREF="../../ec/Evaluator.html#initializeContacts(ec.EvolutionState)">initializeContacts</A>, <A HREF="../../ec/Evaluator.html#reinitializeContacts(ec.EvolutionState)">reinitializeContacts</A></CODE></TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD> </TR> </TABLE> &nbsp; <P> <!-- ============ FIELD DETAIL =========== --> <A NAME="field_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Field Detail</B></FONT></TH> </TR> </TABLE> <A NAME="P_SUBPOP"><!-- --></A><H3> P_SUBPOP</H3> <PRE> public static final java.lang.String <B>P_SUBPOP</B></PRE> <DL> <DL> <DT><B>See Also:</B><DD><A HREF="../../constant-values.html#ec.coevolve.MultiPopCoevolutionaryEvaluator.P_SUBPOP">Constant Field Values</A></DL> </DL> <HR> <A NAME="P_NUM_RAND_IND"><!-- --></A><H3> P_NUM_RAND_IND</H3> <PRE> public static final java.lang.String <B>P_NUM_RAND_IND</B></PRE> <DL> <DL> <DT><B>See Also:</B><DD><A HREF="../../constant-values.html#ec.coevolve.MultiPopCoevolutionaryEvaluator.P_NUM_RAND_IND">Constant Field Values</A></DL> </DL> <HR> <A NAME="numRand"><!-- --></A><H3> numRand</H3> <PRE> protected int[] <B>numRand</B></PRE> <DL> <DL> </DL> </DL> <HR> <A NAME="P_NUM_ELITE"><!-- --></A><H3> P_NUM_ELITE</H3> <PRE> public static final java.lang.String <B>P_NUM_ELITE</B></PRE> <DL> <DL> <DT><B>See Also:</B><DD><A HREF="../../constant-values.html#ec.coevolve.MultiPopCoevolutionaryEvaluator.P_NUM_ELITE">Constant Field Values</A></DL> </DL> <HR> <A NAME="numElite"><!-- --></A><H3> numElite</H3> <PRE> protected int[] <B>numElite</B></PRE> <DL> <DL> </DL> </DL> <HR> <A NAME="P_NUM_IND"><!-- --></A><H3> P_NUM_IND</H3> <PRE> public static final java.lang.String <B>P_NUM_IND</B></PRE> <DL> <DL> <DT><B>See Also:</B><DD><A HREF="../../constant-values.html#ec.coevolve.MultiPopCoevolutionaryEvaluator.P_NUM_IND">Constant Field Values</A></DL> </DL> <HR> <A NAME="numInd"><!-- --></A><H3> numInd</H3> <PRE> protected int[] <B>numInd</B></PRE> <DL> <DL> </DL> </DL> <HR> <A NAME="P_SELECTIONMETHOD"><!-- --></A><H3> P_SELECTIONMETHOD</H3> <PRE> public static final java.lang.String <B>P_SELECTIONMETHOD</B></PRE> <DL> <DL> <DT><B>See Also:</B><DD><A HREF="../../constant-values.html#ec.coevolve.MultiPopCoevolutionaryEvaluator.P_SELECTIONMETHOD">Constant Field Values</A></DL> </DL> <HR> <A NAME="numSelected"><!-- --></A><H3> numSelected</H3> <PRE> protected int[] <B>numSelected</B></PRE> <DL> <DL> </DL> </DL> <!-- ========= CONSTRUCTOR DETAIL ======== --> <A NAME="constructor_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Constructor Detail</B></FONT></TH> </TR> </TABLE> <A NAME="MultiPopCoevolutionaryEvaluator()"><!-- --></A><H3> MultiPopCoevolutionaryEvaluator</H3> <PRE> public <B>MultiPopCoevolutionaryEvaluator</B>()</PRE> <DL> </DL> <!-- ============ METHOD DETAIL ========== --> <A NAME="method_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Method Detail</B></FONT></TH> </TR> </TABLE> <A NAME="getNumRandomPartners(int)"><!-- --></A><H3> getNumRandomPartners</H3> <PRE> public int <B>getNumRandomPartners</B>(int&nbsp;subpop)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="getNumEliteIndividuals(int)"><!-- --></A><H3> getNumEliteIndividuals</H3> <PRE> public int <B>getNumEliteIndividuals</B>(int&nbsp;subpop)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="getNumPreviousGenerationPartners(int)"><!-- --></A><H3> getNumPreviousGenerationPartners</H3> <PRE> public int <B>getNumPreviousGenerationPartners</B>(int&nbsp;subpop)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="getNumPartners(int)"><!-- --></A><H3> getNumPartners</H3> <PRE> public int <B>getNumPartners</B>(int&nbsp;subpop)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="setup(ec.EvolutionState, ec.util.Parameter)"><!-- --></A><H3> setup</H3> <PRE> public void <B>setup</B>(<A HREF="../../ec/EvolutionState.html" title="class in ec">EvolutionState</A>&nbsp;state, <A HREF="../../ec/util/Parameter.html" title="class in ec.util">Parameter</A>&nbsp;base)</PRE> <DL> <DD><B>Description copied from interface: <CODE><A HREF="../../ec/Setup.html#setup(ec.EvolutionState, ec.util.Parameter)">Setup</A></CODE></B></DD> <DD>Sets up the object by reading it from the parameters stored in <i>state</i>, built off of the parameter base <i>base</i>. If an ancestor implements this method, be sure to call super.setup(state,base); before you do anything else. <P> <DD><DL> <DT><B>Specified by:</B><DD><CODE><A HREF="../../ec/Setup.html#setup(ec.EvolutionState, ec.util.Parameter)">setup</A></CODE> in interface <CODE><A HREF="../../ec/Setup.html" title="interface in ec">Setup</A></CODE><DT><B>Overrides:</B><DD><CODE><A HREF="../../ec/Evaluator.html#setup(ec.EvolutionState, ec.util.Parameter)">setup</A></CODE> in class <CODE><A HREF="../../ec/Evaluator.html" title="class in ec">Evaluator</A></CODE></DL> </DD> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="runComplete(ec.EvolutionState)"><!-- --></A><H3> runComplete</H3> <PRE> public boolean <B>runComplete</B>(<A HREF="../../ec/EvolutionState.html" title="class in ec">EvolutionState</A>&nbsp;state)</PRE> <DL> <DD><B>Description copied from class: <CODE><A HREF="../../ec/Evaluator.html#runComplete(ec.EvolutionState)">Evaluator</A></CODE></B></DD> <DD>Returns true if an ideal individual has been found or some other run result has shortcircuited the run so that it should end prematurely right now. <P> <DD><DL> <DT><B>Specified by:</B><DD><CODE><A HREF="../../ec/Evaluator.html#runComplete(ec.EvolutionState)">runComplete</A></CODE> in class <CODE><A HREF="../../ec/Evaluator.html" title="class in ec">Evaluator</A></CODE></DL> </DD> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="evaluatePopulation(ec.EvolutionState)"><!-- --></A><H3> evaluatePopulation</H3> <PRE> public void <B>evaluatePopulation</B>(<A HREF="../../ec/EvolutionState.html" title="class in ec">EvolutionState</A>&nbsp;state)</PRE> <DL> <DD><B>Description copied from class: <CODE><A HREF="../../ec/Evaluator.html#evaluatePopulation(ec.EvolutionState)">Evaluator</A></CODE></B></DD> <DD>Evaluates the fitness of an entire population. You will have to determine how to handle multiple threads on your own, as this is a very domain-specific thing. <P> <DD><DL> <DT><B>Specified by:</B><DD><CODE><A HREF="../../ec/Evaluator.html#evaluatePopulation(ec.EvolutionState)">evaluatePopulation</A></CODE> in class <CODE><A HREF="../../ec/Evaluator.html" title="class in ec">Evaluator</A></CODE></DL> </DD> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="beforeCoevolutionaryEvaluation(ec.EvolutionState, ec.Population, ec.coevolve.GroupedProblemForm)"><!-- --></A><H3> beforeCoevolutionaryEvaluation</H3> <PRE> public void <B>beforeCoevolutionaryEvaluation</B>(<A HREF="../../ec/EvolutionState.html" title="class in ec">EvolutionState</A>&nbsp;state, <A HREF="../../ec/Population.html" title="class in ec">Population</A>&nbsp;population, <A HREF="../../ec/coevolve/GroupedProblemForm.html" title="interface in ec.coevolve">GroupedProblemForm</A>&nbsp;prob)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="performCoevolutionaryEvaluation(ec.EvolutionState, ec.Population, ec.coevolve.GroupedProblemForm)"><!-- --></A><H3> performCoevolutionaryEvaluation</H3> <PRE> public void <B>performCoevolutionaryEvaluation</B>(<A HREF="../../ec/EvolutionState.html" title="class in ec">EvolutionState</A>&nbsp;state, <A HREF="../../ec/Population.html" title="class in ec">Population</A>&nbsp;population, <A HREF="../../ec/coevolve/GroupedProblemForm.html" title="interface in ec.coevolve">GroupedProblemForm</A>&nbsp;prob)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="afterCoevolutionaryEvaluation(ec.EvolutionState, ec.Population, ec.coevolve.GroupedProblemForm)"><!-- --></A><H3> afterCoevolutionaryEvaluation</H3> <PRE> public void <B>afterCoevolutionaryEvaluation</B>(<A HREF="../../ec/EvolutionState.html" title="class in ec">EvolutionState</A>&nbsp;state, <A HREF="../../ec/Population.html" title="class in ec">Population</A>&nbsp;population, <A HREF="../../ec/coevolve/GroupedProblemForm.html" title="interface in ec.coevolve">GroupedProblemForm</A>&nbsp;prob)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="loadElites(ec.EvolutionState, ec.Subpopulation, int)"><!-- --></A><H3> loadElites</H3> <PRE> public void <B>loadElites</B>(<A HREF="../../ec/EvolutionState.html" title="class in ec">EvolutionState</A>&nbsp;state, <A HREF="../../ec/Subpopulation.html" title="class in ec">Subpopulation</A>&nbsp;subpop, int&nbsp;whichSubpop)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <!-- ========= END OF CLASS DATA ========= --> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../ec/coevolve/GroupedProblemForm.html" title="interface in ec.coevolve"><B>PREV CLASS</B></A>&nbsp; &nbsp;NEXT CLASS</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../index.html?ec/coevolve/MultiPopCoevolutionaryEvaluator.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="MultiPopCoevolutionaryEvaluator.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#field_summary">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;<A HREF="#field_detail">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
clean/Linux-x86_64-4.08.1-2.0.5/released/8.13.1/icharate/8.6.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>icharate: 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.13.1 / icharate - 8.6.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> icharate <small> 8.6.0 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2021-10-26 18:01:49 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-10-26 18:01:49 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-threads base base-unix base conf-findutils 1 Virtual package relying on findutils conf-gmp 3 Virtual package relying on a GMP lib system installation coq 8.13.1 Formal proof management system num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.08.1 The OCaml compiler (virtual package) ocaml-base-compiler 4.08.1 Official release 4.08.1 ocaml-config 1 OCaml Switch Configuration ocamlfind 1.9.1 A library manager for OCaml zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;[email protected]&quot; homepage: &quot;https://github.com/coq-contribs/icharate&quot; license: &quot;LGPL 2.1&quot; build: [make &quot;-j%{jobs}%&quot;] install: [make &quot;install&quot;] remove: [&quot;rm&quot; &quot;-R&quot; &quot;%{lib}%/coq/user-contrib/Icharate&quot;] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.6&quot; &amp; &lt; &quot;8.7~&quot;} ] tags: [ &quot;keyword: multimodal categorial grammars&quot; &quot;keyword: syntax/semantics interface&quot; &quot;keyword: higher-order logic&quot; &quot;keyword: meta-linguistics&quot; &quot;category: Computer Science/Formal Languages Theory and Automata&quot; &quot;date: 2003-2006&quot; ] authors: [ &quot;Houda Anoun &lt;[email protected]&gt;&quot; &quot;Pierre Casteran &lt;[email protected]&gt;&quot; ] bug-reports: &quot;https://github.com/coq-contribs/icharate/issues&quot; dev-repo: &quot;git+https://github.com/coq-contribs/icharate.git&quot; synopsis: &quot;Icharate: A logical Toolkit for Multimodal Categorial Grammars&quot; description: &quot;&quot;&quot; http://www.labri.fr/perso/anoun/Icharate The logical toolkit ICHARATE is built upon a formalization of multimodal categorial grammars in Coq proof assistant. This toolkit aims at facilitating the study of these complicated formalisms by allowing users to build interactively the syntactic derivations of different sentences, compute their semantic interpretations and also prove universal properties of entire classes of grammars using a collection of already established derived rules. Several tactics are defined to ease the interaction with users.&quot;&quot;&quot; flags: light-uninstall url { src: &quot;https://github.com/coq-contribs/icharate/archive/v8.6.0.tar.gz&quot; checksum: &quot;md5=c64866fc19d34cb8879374ce32012146&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-icharate.8.6.0 coq.8.13.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.13.1). The following dependencies couldn&#39;t be met: - coq-icharate -&gt; coq &lt; 8.7~ -&gt; ocaml &lt; 4.06.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-icharate.8.6.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>
src/index.html
stevenh77/angular-lob-app
<!doctype html> <html> <head> <meta charset="utf-8"> <title>AngularLobApp</title> <base href="/"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="icon" type="image/x-icon" href="favicon.ico"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <script src="http://cdn.auth0.com/js/lock/10.2/lock.min.js"></script> </head> <body> <app-root>Loading...</app-root> </body> </html>
doc/java/jdk7/javax/sound/midi/spi/package-use.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 (version 1.6.0_18) on Thu Dec 18 17:18:43 PST 2014 --> <title>Uses of Package javax.sound.midi.spi (Java Platform SE 7 )</title> <meta name="date" content="2014-12-18"> <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 Package javax.sound.midi.spi (Java Platform SE 7 )"; } //--> </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>Class</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 class="aboutLanguage"><em><strong>Java&trade;&nbsp;Platform<br>Standard&nbsp;Ed.&nbsp;7</strong></em></div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?javax/sound/midi/spi/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.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"> <h1 title="Uses of Package javax.sound.midi.spi" class="title">Uses of Package<br>javax.sound.midi.spi</h1> </div> <div class="contentContainer">No usage of javax.sound.midi.spi</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>Class</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 class="aboutLanguage"><em><strong>Java&trade;&nbsp;Platform<br>Standard&nbsp;Ed.&nbsp;7</strong></em></div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?javax/sound/midi/spi/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.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><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://docs.oracle.com/javase/7/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>
blog-posts/helpers.html
matt16749/matt16749.github.io
<!DOCTYPE html> <html> <head> <title>Matthew Chan| Web Developer</title> <link rel="stylesheet" type="text/css" href="./stylesheets/blog_template.css"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet"> <link href='http://fonts.googleapis.com/css?family=Lora' rel='stylesheet' type='text/css'> <link href='http://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script type="text/javascript" src="./scripts/blog_template.js"></script> </head> <body> <header> <img src="./images/myself.jpg"> <nav> <a class="font" href="../index.html">home</a> <a class="font" href="../about.html">about</a> <a class="font" href="../blog_posts.html">blog</a> <a class="font" href="../projects.html">projects</a> <a class="font" href="../resources.html">resources</a> <a class="icon" href="http://www.github.com/matt16749"><i class="fa fa-github-square fa-2x"></i></a> <a class="icon" href="http://www.linkedin.com/in/matthewchan2000"><i class="fa fa-linkedin-square fa-2x"></i></a> <a class="icon" href="mailto:[email protected]"><i class="fa fa-envelope-square fa-2x"></i></a> </nav> </header> <div class="titlename">Helpers</div> <section> <article> <h1>What are they?</h1> <p>Helpers are found within a helper directory in your app file in your web app. They are basically ruby methods/classes/modules that are not associated with anything in the database(not ORM) that you can call in your controller. The example below is a helper file. Typically you would namespace these helper methods.</p> <img src="./images/helpers.png"> <p>The image below is of a controller. Notice how you call the helper methods. You don't need to require_relative the helper file_path if you included it inside your environment.rb in your config directory</p> <img src="./images/helpercontroller.png"> </article> </section> <img id="cloud0" src="./images/cloud0.png"> <img id="cloud1" src="./images/cloud1.png"> <img id="cloud2" src="./images/cloud2.png"> </body> </html>
docs/static/css/app.2a39be6aa543e2aabb29d8e32ed58ec8.css
kulkarnivinayak/vue-spa
#app{font-family:Avenir,Helvetica,Arial,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
clean/Linux-x86_64-4.08.1-2.0.5/released/8.14.0/moment/1.2.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>moment: 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.14.0 / moment - 1.2.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> moment <small> 1.2.0 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2021-12-17 13:03:57 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-17 13:03:57 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-threads base base-unix base conf-findutils 1 Virtual package relying on findutils conf-gmp 3 Virtual package relying on a GMP lib system installation coq 8.14.0 Formal proof management system dune 2.9.1 Fast, portable, and opinionated build system ocaml 4.08.1 The OCaml compiler (virtual package) ocaml-base-compiler 4.08.1 Official release 4.08.1 ocaml-config 1 OCaml Switch Configuration ocamlfind 1.9.1 A library manager for OCaml zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;[email protected]&quot; homepage: &quot;https://github.com/clarus/coq-moment&quot; dev-repo: &quot;git+https://github.com/clarus/coq-moment.git&quot; bug-reports: &quot;https://github.com/clarus/coq-moment/issues&quot; authors: [&quot;Guillaume Claret&quot;] license: &quot;MIT&quot; build: [ [&quot;ruby&quot; &quot;pp.rb&quot;] [&quot;./configure.sh&quot;] [make &quot;-j%{jobs}%&quot;] ] install: [ [make &quot;install&quot;] ] depends: [ &quot;conf-ruby&quot; {build} &quot;coq&quot; {&gt;= &quot;8.4pl4&quot; &amp; &lt; &quot;8.14&quot;} &quot;coq-error-handlers&quot; &quot;coq-function-ninjas&quot; &quot;coq-list-string&quot; {&gt;= &quot;2.0.0&quot;} &quot;ocaml&quot; ] tags: [ &quot;date:2020-03-16&quot; &quot;keyword:date&quot; &quot;keyword:time&quot; &quot;logpath:Moment&quot; ] synopsis: &quot;Parse, manipulate and pretty-print times and dates in Coq&quot; url { src: &quot;https://github.com/clarus/coq-moment/archive/1.2.0.tar.gz&quot; checksum: &quot;sha512=eeca9af5b7a8799a35fb37f61f17b7672e8393c2019d3bb925f7929cdf0dbccd835a97e223f66017f1a53aca1df70311f58a7757327338b63b9dfe1321670977&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-moment.1.2.0 coq.8.14.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.14.0). The following dependencies couldn&#39;t be met: - coq-moment -&gt; coq &lt; 8.14 -&gt; ocaml &lt; 4.06.0 base of this switch (use `--unlock-base&#39; to force) 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-moment.1.2.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>
docs/api/PommaLabs.KVLite/AbstractCache_2/71D29B25.html
pomma89/KVLite
<!DOCTYPE html><html><head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <meta name="description"> <meta name="keywords" content="static content generator,static site generator,static site,HTML,web development,.NET,C#,Razor,Markdown,YAML"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="shortcut icon" href="/KVLite/assets/img/favicon.ico" type="image/x-icon"> <link rel="icon" href="/KVLite/assets/img/favicon.ico" type="image/x-icon"> <title>PommaLabs.KVLite - API - AbstractCache&lt;TCache, TSettings&gt;.GetItemsAsyncInternal&lt;TVal&gt;(string, CancellationToken) Method</title> <link href="/KVLite/assets/css/mermaid.css" rel="stylesheet"> <link href="/KVLite/assets/css/highlight.css" rel="stylesheet"> <link href="/KVLite/assets/css/bootstrap/bootstrap.css" rel="stylesheet"> <link href="/KVLite/assets/css/adminlte/AdminLTE.css" rel="stylesheet"> <link href="/KVLite/assets/css/theme/theme.css" rel="stylesheet"> <link href="//fonts.googleapis.com/css?family=Roboto+Mono:400,700|Roboto:400,400i,700,700i" rel="stylesheet"> <link href="/KVLite/assets/css/font-awesome.min.css" rel="stylesheet" type="text/css"> <link href="/KVLite/assets/css/override.css" rel="stylesheet"> <script src="/KVLite/assets/js/jquery-2.2.3.min.js"></script> <script src="/KVLite/assets/js/bootstrap.min.js"></script> <script src="/KVLite/assets/js/app.min.js"></script> <script src="/KVLite/assets/js/highlight.pack.js"></script> <script src="/KVLite/assets/js/jquery.slimscroll.min.js"></script> <script src="/KVLite/assets/js/jquery.sticky-kit.min.js"></script> <script src="/KVLite/assets/js/mermaid.min.js"></script> <!--[if lt IE 9]> <script src="/KVLite/assets/js/html5shiv.min.js"></script> <script src="/KVLite/assets/js/respond.min.js"></script> <![endif]--> </head> <body class="hold-transition wyam layout-boxed "> <div class="top-banner"></div> <div class="wrapper with-container"> <!-- Header --> <header class="main-header"> <a href="/KVLite/" class="logo"> <span>PommaLabs.KVLite</span> </a> <nav class="navbar navbar-static-top" role="navigation"> <!-- Sidebar toggle button--> <a href="#" class="sidebar-toggle visible-xs-block" data-toggle="offcanvas" role="button"> <span class="sr-only">Toggle side menu</span> <i class="fa fa-chevron-circle-right"></i> </a> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse"> <span class="sr-only">Toggle side menu</span> <i class="fa fa-chevron-circle-down"></i> </button> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse pull-left" id="navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="/KVLite/about">About This Project</a></li> <li><a href="/KVLite/docs">Docs</a></li> <li><a href="/KVLite/blog">Blog</a></li> <li class="active"><a href="/KVLite/api">API</a></li> </ul> </div> <!-- /.navbar-collapse --> <!-- Navbar Right Menu --> </nav> </header> <!-- Left side column. contains the logo and sidebar --> <aside class="main-sidebar "> <section class="infobar" data-spy="affix" data-offset-top="60" data-offset-bottom="200"> <div id="infobar-headings"><h6>On This Page</h6><p><a href="#Summary">Summary</a></p> <p><a href="#Syntax">Syntax</a></p> <p><a href="#TypeParameters">Type Parameters</a></p> <p><a href="#Parameters">Parameters</a></p> <p><a href="#ReturnValue">Return Value</a></p> <hr class="infobar-hidden"> </div> </section> <section class="sidebar"> <script src="/KVLite/assets/js/lunr.min.js"></script> <script src="/KVLite/assets/js/searchIndex.js"></script> <div class="sidebar-form"> <div class="input-group"> <input type="text" name="search" id="search" class="form-control" placeholder="Search Types..."> <span class="input-group-btn"> <button class="btn btn-flat"><i class="fa fa-search"></i></button> </span> </div> </div> <div id="search-results"> </div> <script> function runSearch(query){ $("#search-results").empty(); if( query.length < 2 ){ return; } var results = searchModule.search("*" + query + "*"); var listHtml = "<ul class='sidebar-menu'>"; listHtml += "<li class='header'>Type Results</li>"; if(results.length == 0 ){ listHtml += "<li>No results found</li>"; } else { for(var i = 0; i < results.length; ++i){ var res = results[i]; listHtml += "<li><a href='" + res.url + "'>" + htmlEscape(res.title) + "</a></li>"; } } listHtml += "</ul>"; $("#search-results").append(listHtml); } $(document).ready(function(){ $("#search").on('input propertychange paste', function() { runSearch($("#search").val()); }); }); function htmlEscape(html) { return document.createElement('div') .appendChild(document.createTextNode(html)) .parentNode .innerHTML; } </script> <hr> <ul class="sidebar-menu"> <li class="header">Namespace</li> <li><a href="/KVLite/api/PommaLabs.KVLite">PommaLabs<wbr>.KVLite</a></li> <li class="header">Type</li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2">AbstractCache<wbr>&lt;TCache, <wbr>TSettings&gt;<wbr></a></li> <li role="separator" class="divider"></li> <li class="header">Method Members</li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/2CA1CFE8">AddAsyncInternal<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string, <wbr>TVal, <wbr>DateTimeOffset, <wbr>TimeSpan, <wbr>IList<wbr>&lt;string&gt;<wbr>, <wbr>CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/84B9BE7F">AddInternal<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string, <wbr>TVal, <wbr>DateTimeOffset, <wbr>TimeSpan, <wbr>IList<wbr>&lt;string&gt;<wbr>)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/EE3B3B63">AddSliding<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string, <wbr>TVal, <wbr>TimeSpan, <wbr>IList<wbr>&lt;string&gt;<wbr>)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/D3C78686">AddSlidingAsync<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string, <wbr>TVal, <wbr>TimeSpan, <wbr>IList<wbr>&lt;string&gt;<wbr>, <wbr>CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/D7E2B92F">AddStatic<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string, <wbr>TVal, <wbr>IList<wbr>&lt;string&gt;<wbr>)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/D170457C">AddStaticAsync<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string, <wbr>TVal, <wbr>IList<wbr>&lt;string&gt;<wbr>, <wbr>CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/3C5F6576">AddTimed<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string, <wbr>TVal, <wbr>DateTimeOffset, <wbr>IList<wbr>&lt;string&gt;<wbr>)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/A22B7EA3">AddTimed<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string, <wbr>TVal, <wbr>TimeSpan, <wbr>IList<wbr>&lt;string&gt;<wbr>)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/58EF461A">AddTimedAsync<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string, <wbr>TVal, <wbr>DateTimeOffset, <wbr>IList<wbr>&lt;string&gt;<wbr>, <wbr>CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/9EF35CE3">AddTimedAsync<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string, <wbr>TVal, <wbr>TimeSpan, <wbr>IList<wbr>&lt;string&gt;<wbr>, <wbr>CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/810D86BD">Clear<wbr>()<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/370F185A">Clear<wbr>(string)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/1837E317">Clear<wbr>(CacheReadMode)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/73039FE4">Clear<wbr>(string, <wbr>CacheReadMode)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/1005BB61">ClearAsync<wbr>(CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/11574FF3">ClearAsync<wbr>(string, <wbr>CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/C70DE9D1">ClearAsync<wbr>(CacheReadMode, <wbr>CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/C1FCBD91">ClearAsync<wbr>(string, <wbr>CacheReadMode, <wbr>CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/6AA41555">ClearAsyncInternal<wbr>(string, <wbr>CacheReadMode, <wbr>CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/A17A3131">ClearInternal<wbr>(string, <wbr>CacheReadMode)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/49C2AF9B">Contains<wbr>(string, <wbr>string)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/4917FBA1">ContainsAsync<wbr>(string, <wbr>string, <wbr>CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/241A1FE1">Contains<wbr>Async<wbr>Internal<wbr>(string, <wbr>string, <wbr>CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/E08A22AE">ContainsInternal<wbr>(string, <wbr>string)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/E5B8EEDD">Count<wbr>()<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/B78FFE42">Count<wbr>(string)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/F4523A8A">Count<wbr>(CacheReadMode)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/F6288E01">Count<wbr>(string, <wbr>CacheReadMode)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/3B9A11BA">CountAsync<wbr>(CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/5A71B1FC">CountAsync<wbr>(string, <wbr>CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/F68AFB6C">CountAsyncInternal<wbr>(string, <wbr>CacheReadMode, <wbr>CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/E805EECF">CountInternal<wbr>(string, <wbr>CacheReadMode)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/EA08ABA2">Dispose<wbr>()<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/F9EC775F">Dispose<wbr>(bool)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/8A726553">Get<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/481DD503">GetAsync<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string, <wbr>CancellationToken, <wbr>bool)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/B573BA57">GetAsyncInternal<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string, <wbr>CancellationToken, <wbr>bool)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/350C90A7">GetCacheSizeInBytes<wbr>()<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/A53F0800">Get<wbr>Cache<wbr>Size<wbr>In<wbr>Bytes<wbr>Async<wbr>(CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/638E3C45">Get<wbr>Cache<wbr>Size<wbr>In<wbr>Bytes<wbr>Async<wbr>Internal<wbr>(CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/FD1D6927">Get<wbr>Cache<wbr>Size<wbr>In<wbr>Bytes<wbr>Internal<wbr>()<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/3B77DE4A">GetInternal<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/C9E62A98">GetItem<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/F1EC7872">GetItemAsync<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string, <wbr>CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/9230E319">GetItemAsyncInternal<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string, <wbr>CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/69818096">GetItemInternal<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/B2E6DB1B">GetItems<wbr>&lt;TVal&gt;<wbr><wbr>()<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/4ED9391E">GetItems<wbr>&lt;TVal&gt;<wbr><wbr>(string)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/01089B1E">GetItemsAsync<wbr>&lt;TVal&gt;<wbr><wbr>(CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/B897353A">GetItemsAsync<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>CancellationToken)<wbr></a></li> <li class="selected"><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/71D29B25">Get<wbr>Items<wbr>Async<wbr>Internal<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/E5AEB399">GetItemsInternal<wbr>&lt;TVal&gt;<wbr><wbr>(string)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/877357D1">GetOrAddSliding<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string, <wbr>Func<wbr>&lt;TVal&gt;<wbr>, <wbr>TimeSpan, <wbr>IList<wbr>&lt;string&gt;<wbr>)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/9B5E1115">GetOrAddSlidingAsync<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string, <wbr>Func<wbr>&lt;<wbr>Cancellation<wbr>Token, <wbr>bool, <wbr>Task<wbr>&lt;TVal&gt;<wbr>&gt;<wbr>, <wbr>TimeSpan, <wbr>IList<wbr>&lt;string&gt;<wbr>, <wbr>CancellationToken, <wbr>bool)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/09961457">GetOrAddStatic<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string, <wbr>Func<wbr>&lt;TVal&gt;<wbr>, <wbr>IList<wbr>&lt;string&gt;<wbr>)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/2C6AAD8C">GetOrAddStaticAsync<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string, <wbr>Func<wbr>&lt;<wbr>Cancellation<wbr>Token, <wbr>bool, <wbr>Task<wbr>&lt;TVal&gt;<wbr>&gt;<wbr>, <wbr>IList<wbr>&lt;string&gt;<wbr>, <wbr>CancellationToken, <wbr>bool)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/7B12B777">GetOrAddTimed<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string, <wbr>Func<wbr>&lt;TVal&gt;<wbr>, <wbr>DateTimeOffset, <wbr>IList<wbr>&lt;string&gt;<wbr>)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/6B326B84">GetOrAddTimed<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string, <wbr>Func<wbr>&lt;TVal&gt;<wbr>, <wbr>TimeSpan, <wbr>IList<wbr>&lt;string&gt;<wbr>)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/1B12E373">GetOrAddTimedAsync<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string, <wbr>Func<wbr>&lt;<wbr>Cancellation<wbr>Token, <wbr>bool, <wbr>Task<wbr>&lt;TVal&gt;<wbr>&gt;<wbr>, <wbr>DateTimeOffset, <wbr>IList<wbr>&lt;string&gt;<wbr>, <wbr>CancellationToken, <wbr>bool)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/8A62F548">GetOrAddTimedAsync<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string, <wbr>Func<wbr>&lt;<wbr>Cancellation<wbr>Token, <wbr>bool, <wbr>Task<wbr>&lt;TVal&gt;<wbr>&gt;<wbr>, <wbr>TimeSpan, <wbr>IList<wbr>&lt;string&gt;<wbr>, <wbr>CancellationToken, <wbr>bool)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/EC3D3020">LongCount<wbr>()<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/7BE878BA">LongCount<wbr>(string)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/9387680A">LongCount<wbr>(CacheReadMode)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/665DF0FB">LongCount<wbr>(string, <wbr>CacheReadMode)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/68E21466">LongCountAsync<wbr>(CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/993DCADA">LongCountAsync<wbr>(string, <wbr>CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/9F4D51B5">Peek<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/1C9D7BEF">PeekAsync<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string, <wbr>CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/B24A2BE4">PeekAsyncInternal<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string, <wbr>CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/0BEAD118">PeekInternal<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/73579922">PeekItem<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/86DD3C3F">PeekItemAsync<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string, <wbr>CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/7FD2C885">Peek<wbr>Item<wbr>Async<wbr>Internal<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string, <wbr>CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/7C7E9D91">PeekItemInternal<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>string)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/4D4CADB7">PeekItems<wbr>&lt;TVal&gt;<wbr><wbr>()<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/A527A7F9">PeekItems<wbr>&lt;TVal&gt;<wbr><wbr>(string)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/E6B02133">PeekItemsAsync<wbr>&lt;TVal&gt;<wbr><wbr>(CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/B335977E">PeekItemsAsync<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/0C426251">Peek<wbr>Items<wbr>Async<wbr>Internal<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/AABAD0CE">PeekItemsInternal<wbr>&lt;TVal&gt;<wbr><wbr>(string)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/6FFF46D2">Remove<wbr>(string, <wbr>string)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/FA9452B7">RemoveAsync<wbr>(string, <wbr>string, <wbr>CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/0B192BD1">RemoveAsyncInternal<wbr>(string, <wbr>string, <wbr>CancellationToken)<wbr></a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/D155273C">RemoveInternal<wbr>(string, <wbr>string)<wbr></a></li> <li class="header">Property Members</li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/4E954B17">CanPeek</a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/8C111D17">Clock</a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/D90698A7">Disposed</a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/AECA5DA9">LastError</a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/AE54CAEE">Log</a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/2C19EBE3">Max<wbr>Parent<wbr>Key<wbr>Count<wbr>Per<wbr>Item</a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/07180AA6">Max<wbr>Parent<wbr>Key<wbr>Tree<wbr>Depth</a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/1101BFC7">Serializer</a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/5D4AB37E">Settings</a></li> <li><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2/752B5BF3">this[string, <wbr>string]</a></li> </ul> </section> </aside> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <section class="content-header"> <h3><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2">AbstractCache<wbr>&lt;TCache, <wbr>TSettings&gt;<wbr></a>.</h3> <h1>Get<wbr>Items<wbr>Async<wbr>Internal<wbr>&lt;TVal&gt;<wbr><wbr>(string, <wbr>CancellationToken)<wbr> <small>Method</small></h1> </section> <section class="content"> <h1 id="Summary">Summary</h1> <div class="lead"> Gets all cache items or the ones in a partition, if specified. If an item is a "sliding" or "static" value, its lifetime will be increased by corresponding interval. </div> <div class="panel panel-default"> <div class="panel-body"> <dl class="dl-horizontal"> <dt>Namespace</dt> <dd><a href="/KVLite/api/PommaLabs.KVLite">PommaLabs<wbr>.KVLite</a></dd> <dt>Containing Type</dt> <dd><a href="/KVLite/api/PommaLabs.KVLite/AbstractCache_2">AbstractCache<wbr>&lt;TCache, <wbr>TSettings&gt;<wbr></a></dd> </dl> </div> </div> <h1 id="Syntax">Syntax</h1> <pre><code>protected virtual Task&lt;IList&lt;ICacheItem&lt;TVal&gt;&gt;&gt; GetItemsAsyncInternal&lt;TVal&gt;(string partition, CancellationToken cancellationToken)</code></pre> <h1 id="TypeParameters">Type Parameters</h1> <div class="box"> <div class="box-body no-padding table-responsive"> <table class="table table-striped table-hover two-cols"> <thead> <tr> <th>Name</th> <th>Description</th> </tr> </thead> <tbody><tr id="typeparam-TVal"> <td>TVal</td> <td>The type of the expected values.</td> </tr> </tbody></table> </div> </div> <h1 id="Parameters">Parameters</h1> <div class="box"> <div class="box-body no-padding table-responsive"> <table class="table table-striped table-hover three-cols"> <thead> <tr> <th>Name</th> <th>Type</th> <th>Description</th> </tr> </thead> <tbody><tr> <td>partition</td> <td>string</td> <td>The optional partition.</td> </tr> <tr> <td>cancellationToken</td> <td>CancellationToken</td> <td>An optional cancellation token.</td> </tr> </tbody></table> </div> </div> <h1 id="ReturnValue">Return Value</h1> <div class="box"> <div class="box-body no-padding table-responsive"> <table class="table table-striped table-hover two-cols"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody><tr> <td>Task<wbr>&lt;TResult&gt;<wbr></td> <td>All cache items.</td> </tr> </tbody></table> </div> </div> </section> </div> <!-- Footer --> <footer class="main-footer"> </footer> </div> <div class="wrapper bottom-wrapper"> <footer class="bottom-footer"> Generated by <a href="https://wyam.io">Wyam</a> </footer> </div> <a href="javascript:" id="return-to-top"><i class="fa fa-chevron-up"></i></a> <script> // Close the sidebar if we select an anchor link $(".main-sidebar a[href^='#']:not('.expand')").click(function(){ $(document.body).removeClass('sidebar-open'); }); $(document).load(function() { mermaid.initialize( { flowchart: { htmlLabels: false, useMaxWidth:false } }); mermaid.init(undefined, ".mermaid") $('svg').addClass('img-responsive'); $('pre code').each(function(i, block) { hljs.highlightBlock(block); }); }); hljs.initHighlightingOnLoad(); // Back to top $(window).scroll(function() { if ($(this).scrollTop() >= 200) { // If page is scrolled more than 50px $('#return-to-top').fadeIn(1000); // Fade in the arrow } else { $('#return-to-top').fadeOut(1000); // Else fade out the arrow } }); $('#return-to-top').click(function() { // When arrow is clicked $('body,html').animate({ scrollTop : 0 // Scroll to top of body }, 500); }); </script> </body></html>
src/main/resources/web-server/templates/productSearch.html
dsarlis/SAD-Spring-2016-Team4
<!DOCTYPE html SYSTEM "http://www.thymeleaf.org/dtd/xhtml1-strict-thymeleaf-spring4-4.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"> <head th:replace="header :: copy"></head> <body> <h1>Product Search</h1> <p>Enter an product number or search for an product owner containing given specified text:</p> <form action="#" th:object="${searchCriteria}" method="GET" th:action="@{/products/dosearch}" class="form-horizontal"> <!-- Product Number field --> <div class="form-group"> <label for="number" class="control-label col-xs-2">Product Number</label> <div class="col-xs-2"> <input type="text" class="form-control" id="number" th:field="*{productNumber}" style="width: 12em;" /> </div> <div class="col-xs-8">Enter a valid 9 digit number</div> </div> <!-- Product Number errors (if any) --> <div class="form-group"> <div class="control-label col-xs-2">&nbsp;</div> <div class="col-xs-2">&nbsp;</div> <div class="col-xs-8"> <span th:if="${#fields.hasErrors('productNumber')}" style="color: red; font-size: smaller" th:errors="*{productNumber}">Incorrect data</span> </div> </div> <!-- Owner name field --> <div class="form-group"> <label for="search" class="control-label col-xs-2">Product Name Search</label> <div class="col-xs-2"> <input type="text" class="form-control" id="search" th:field="*{searchText}" style="width: 12em;" /> </div> <div class="col-xs-8">Case-insensitive, supports part name matching</div> </div> <!-- Owner name errors (if any) --> <div class="form-group"> <div class="control-label col-xs-2">&nbsp;</div> <div class="col-xs-2">&nbsp;</div> <div class="col-xs-8"> <span th:if="${#fields.hasErrors('searchText')}" style="color: red; font-size: smaller" th:errors="*{searchText}"></span> </div> </div> <!-- Submit button --> <div class="form-group"> <div class="col-xs-offset-2 col-xs-10"> <button type="submit" class="btn btn-warning btn-lg">Find</button> </div> </div> </form> <div th:replace="footer :: copy"></div> </body> </html>
sample.html
yxmagithub/singlewebpagejsjquery
<!doctype html> <html> <style> html { font-family: Arial; padding: 30px; } h1 { font-size: 16px; color: darkblue; margin: 20px; } .description { font-size: 14px; font-weight: bold; margin: 20px; } .description input { background-color: lightblue; margin-top: 5px; font-size: 14px; padding: 0px 4px; width: 300px; } .description button { display: block; margin-top: 25px; margin-bottom: 30px; font-family: Arial; font-size: 14px; width: 200px; } table { border-spacing: 0px; margin: 20px; } table caption { text-align: right; margin-bottom: 5px; color: darkblue; font-size: 11px; font-style: italic; } table caption select { background-color: lightblue; font-size: 10px; padding: 1px; font-weight: bold; } table input { text-align: right; padding-right: 2px; width: 100px; } table th, table td { padding:4px; vertical-align: top; margin: 0px; min-width: 100px; } thead th { font-size: 12px; text-align: left; vertical-align: bottom; } thead th:nth-child(3),thead th:nth-child(4),thead th:nth-child(5), tbody td:nth-child(3),tbody td:nth-child(4),tbody td:nth-child(5) { text-align: right; } thead th:nth-child(2) { min-width: 250px; } tfoot th { background-color: darkblue; color: white; font-weight: normal; font-size: 12px; text-align: right; border: none; padding-right: 6px; } tfoot th:first-child { font-style: italic; } </style> <link rel="stylesheet" href="testSample.css"> </head> <body> <h1> Confirm the Accounts &amp; Amounts to be Locked</h1> <div class="description"> Enter a description for this Lock:<br> <input type="text" id="description" name="description" value=""> <button id="lockPayment">Lock Accounts &amp; Amounts</button> </div> <table border="1"> <caption> <strong> Lock Amounts are based on: &nbsp; </strong> <select id="lockType"> <option value="Current" selected>Current Year Amount Due</option> <option value="Total">Total Due for All Years</option> </select> </caption> <thead> <tr><th> Account </th> <th> Owner Name/Address</th> <th> Current Year<br>Amount Due </th> <th> Total Due<br>for All Years </th> <th> Lock Amount </th> </thead> <tbody> <tr><td> A12345 </td> <td> City of Somewhere Else <br> 122 Texas Pkwy <br> San Antonio, TX 78232-2170 <br> </td> <td id="A12345C"> $0.00 </td> <td id="A12345T"> $1,197.92 </td> <td> <input type="text" id="A12345" name="A12345" class="lockAmount" value="$0.00"> </td> </tr> <tr><td> B67890 </td> <td> Benny Hana <br> 2288 Blue Hill Rd <br> Austin, TX 73202 <br> </td> <td id="B67890C"> $234.61 </td> <td id="B67890T"> $234.61 </td> <td> <input type="text" id="B67890" name="B67890" class="lockAmount" value="$234.61"> </td> </tr> <tr><td> C00001 </td> <td> Ada Augusta <br> PO Box 1 <br> Dallas, TX 77777-0001 <br> </td> <td id="C00001C"> $501.22 </td> <td id="C00001T"> $8,486.75 </td> <td> <input type="text" id="C00001" name="C00001" class="lockAmount" value="$501.22"> </td> </tr> </tbody> <tfoot> <tr><th colspan=2> Totals: </th> <th id="currentDue"> $735.83 </th> <th id="totalDue"> $9,919.28 </th> <th id="lockAmountTotal"> $735.83 </th> </tr> </tfoot> </table> <div id="dialog-overlay"></div> <div id="dialog-box"> <div class="dialog-content"> <div id="dialog-message"></div> <a href="#" class="cbutton">Close</a> </div> </div> <!--load Library--> <script type="text/javascript" src="jquery1.4.4.min.js"></script> <!-- Load General Utility helper --> <script src="GlobalizationHandler.js" type="text/javascript" charset="utf-8"></script> <!-- Load Control Types --> <script src="InputValidator.js" type="text/javascript" charset="utf-8"></script> <script src="PopupHandler.js" type="text/javascript" charset="utf-8"></script> <script src="TableHandler.js" type="text/javascript" charset="utf-8"></script> <script src="DropDownHandler.js" type="text/javascript" charset="utf-8"></script> <script src="InputHandler.js" type="text/javascript" charset="utf-8"></script> <script src="testSample.js" type="text/javascript" charset="utf-8"></script> </body> </html>
Codec_PHP/php_snippet.html
JaimeLynSchatz/project-stash
<html> <head> <title>Modifying Elements</title> </head> <body> <p> <?php $languages = array("HTML/CSS", "JavaScript", "PHP", "Python", "Ruby"); // Write the code to remove Python here! unset($array[3]); // Write your code above this line. Don't // worry about the code below just yet; we're // using it to print the new array out for you! foreach($languages as $lang) { print "<p>$lang</p>"; } php?> </p> </body> </html>
Reports/at/atrico.lib.businesslogic.2.1.0/Atrico.Lib.BusinessLogic-net45.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; e9eb0113-7d2c-47eb-a16e-57a20566cc3a </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="#Atrico.Lib.BusinessLogic">Atrico.Lib.BusinessLogic</a></strong></td> <td class="text-center">100.00 %</td> <td class="text-center">100.00 %</td> <td class="text-center">100.00 %</td> <td class="text-center">100.00 %</td> </tr> </tbody> </table> </div> <div id="details"> </div> </div> </body> </html>
data science/machine_learning_for_the_web/chapter_4/movie/13188.html
xianjunzhengbackup/code
<HTML><HEAD> <TITLE>Review for Six Days Seven Nights (1998)</TITLE> <LINK REL="STYLESHEET" TYPE="text/css" HREF="/ramr.css"> </HEAD> <BODY BGCOLOR="#FFFFFF" TEXT="#000000"> <H1 ALIGN="CENTER" CLASS="title"><A HREF="/Title?0120828">Six Days Seven Nights (1998)</A></H1><H3 ALIGN=CENTER>reviewed by<BR><A HREF="/ReviewsBy?Tim+Voon">Tim Voon</A></H3><HR WIDTH="40%" SIZE="4"> <PRE> SIX DAYS SEVEN NIGHTS 1998 A film review by Timothy Voon Copyright 1998 Timothy Voon 1 :-) for his girl Friday</PRE> <P>Cast: Harrison Ford, Anne Heche, David Schwimmer, Jacqueline Obradors, Temuera Morrison Directors: Ivan Reitman Producers: Ivan Reitman, Roger Birnbaum, Wallis Nicita Screenplay: Michael Browning</P> <P>Harrison Ford is getting to the age where playing a male lead, requires more than just a set of good looks. The perpetually likeable Ford, has charisma, charm and likeability that will tie him over into the next century. Playing something reminiscent of the late Cary Grant in FATHER GOOSE, Ford is a bit of a scruffy, drinking pilot that crashes his plane on a deserted island, with a perky Anne Heche, fashion magazine editor on board.</P> <P>So this story has a Robinson Crusoe feel about it and the first half the movie is about survival and mostly comic, because of a good series of one liners between the Heche and Ford. Unfortunately, the final half falls into a rather round-the-mill, ‘die hard' action flick once the pirates arrive on the scene. The idea of Anne Heche, being Ford's girl Friday is quite entertaining, but is she really the right choice for a good romantic lead? There is some chemistry between Heche and Ford, but it really should have stayed more on an intellectual level, than a physical one. The passion aspect of their relationship is as solid as a half-boiled egg.</P> <P>David Schwimmer doing his usual ‘rah, rah', ‘I'm such a jerk' persona, is perfect for his role as the weak-spirited fiancée of the Heche character. So tt's not surprising that she chooses Ford over him. Although, no aspect of this movie is exceptional, overall it is well written and directed and more enjoyable than one would expect. After all, it is a product of Ivan Reitman and any admirers of his work should expect a comic side to this movie.</P> <PRE> Timothy Voon e-mail: <A HREF="mailto:[email protected]">[email protected]</A> Movie Archives <A HREF="http://us.imdb.com/M/reviews_by?Tim+Voon">http://us.imdb.com/M/reviews_by?Tim+Voon</A> Hugues Bouclier's Movies in Melbourne <A HREF="http://www.labyrinth.net.au/~bouclier/week/movies.html">http://www.labyrinth.net.au/~bouclier/week/movies.html</A></PRE> <HR><P CLASS=flush><SMALL>The review above was posted to the <A HREF="news:rec.arts.movies.reviews">rec.arts.movies.reviews</A> newsgroup (<A HREF="news:de.rec.film.kritiken">de.rec.film.kritiken</A> for German reviews).<BR> The Internet Movie Database accepts no responsibility for the contents of the review and has no editorial control. Unless stated otherwise, the copyright belongs to the author.<BR> Please direct comments/criticisms of the review to relevant newsgroups.<BR> Broken URLs inthe reviews are the responsibility of the author.<BR> The formatting of the review is likely to differ from the original due to ASCII to HTML conversion. </SMALL></P> <P ALIGN=CENTER>Related links: <A HREF="/Reviews/">index of all rec.arts.movies.reviews reviews</A></P> </P></BODY></HTML>
ocr_extracted/W29164_text/page47.html
datamade/elpc_bakken
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>W29164_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="page46.html">&laquo;</a> </div> <div style="float: right;"> </div> </div> <hr/> <div style="position: absolute; margin-left: 357px; margin-top: 302px;"> <p class="styleSans7.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">SAJVIPLE PROGRAM: </p> </div> <div style="position: absolute; margin-left: 357px; margin-top: 605px;"> <p class="styleSans7.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">LOGGING PROGRAM: WELL STATUS: COMPANY ENGINEER: <br/>VVELLSITE SUPERVISOR: </p> </div> <div style="position: absolute; margin-left: 978px; margin-top: 605px;"> <p class="styleSans8.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">No Logging Required Awaiting Completion as of January 215‘, 2015 Ryan Haddow <br/>Mark Huff, James Davis Kevin Stimson. Tim Erickson </p> </div> <div style="position: absolute; margin-left: 357px; margin-top: 1045px;"> <p class="styleSans7.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">COMPANY GEOLOGIST: </p> </div> <div style="position: absolute; margin-left: 357px; margin-top: 1155px;"> <p class="styleSans7.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">WELLSITE GEOLOGISTS: </p> </div> <div style="position: absolute; margin-left: 978px; margin-top: 1155px;"> <p class="styleSans7.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Jared Bryl, Tom Osadchuk </p> </div> <div style="position: absolute; margin-left: 1237px; margin-top: 3107px;"> <p class="styleSans3.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p> </div> <div style="position: absolute; margin-left: 962px; margin-top: 302px;"> <p class="styleSans7.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Caught: <br/>Examined: Saved: <br/>Quality: </p> </div> <div style="position: absolute; margin-left: 962px; margin-top: 1045px;"> <p class="styleSans9.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Alex Burpee </p> </div> <div style="position: absolute; margin-left: 1430px; margin-top: 302px;"> <p class="styleSans7.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">30’ 8,800’—11,660‘ 100’ 11,660’—21,183' 8,800’—21,183’ 8,800‘—21,183’ Fair/Good </p> </div> </body> </html>
zero-downtime-ansible/index.html
steinim/slides
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>Zero Downtime Deployment with Ansible</title> <meta name="description" content="Learn how to provision Linux servers with a web-proxy, a database and automate zero downtime deployment of a Java application to a load balanced environment."> <meta name="author" content="Stein Inge Morisbak"> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <link rel="stylesheet" href="../css/reveal.min.css"> <!-- <link rel="stylesheet" href="../css/theme/default.css" id="theme"> --> <!-- For syntax highlighting --> <link rel="stylesheet" href="../lib/css/zenburn.css"> <!-- BEKK Theme --> <link rel="stylesheet" href="../css/theme/bekk.css" id="theme"> <!-- If the query includes 'print-pdf', use the PDF print sheet --> <script> document.write( '<link rel="stylesheet" href="../css/print/' + ( window.location.search.match( /print-pdf/gi ) ? 'pdf' : 'paper' ) + '.css" type="text/css" media="print">' ); </script> <!--[if lt IE 9]> <script src="lib/js/html5shiv.js"></script> <![endif]--> </head> <body> <div class="reveal"> <div class="slides"> <section> <h2>Zero Downtime Deployment with Ansible</h2> </section> <section> <h2>Slides & Repo</h2> <ul> <li><a href="http://steinim.github.io/slides/zero-downtime-ansible">http://steinim.github.io/slides/zero-downtime-ansible</a></li> <li><a href="https://github.com/steinim/zero-downtime-ansible">https://github.com/steinim/zero-downtime-ansible</a></li> </ul> <aside class="notes"> </aside> </section> <section> <h2>What's a provisioning framework?</h2> <ul> <li>Automated setup of servers</li> <li>Configuration as code</li> </ul> <aside class="notes"> </aside> </section> <section> <h2>Examples</h2> <ul> <li>Create users</li> <li>Install software</li> <li>Generate and manipulate config files</li> <li>Start/stop/restart processes</li> <li>Set up dependencies between operations</li> </ul> <aside class="notes"> </aside> </section> <section> <h2>Describe what to do</h2> <pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;"> #!/bin/bash if $( command -v vim &gt;/dev/null 2&gt;&amp;1 ); then echo "vim is already installed." else apt-get install vim fi if $( grep -Fxq "filetype indent off" /etc/vim/vimrc ); then echo "set filetype indent off is already in /etc/vim/vimrc." else echo "filetype indent off" &gt;&gt; /etc/vim/vimrc # TODO: Do not continue if this fails. fi # TODO: Rollback if something fails. </code></pre> </section> <section> <h2>Describe state</h2> <pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;"> - name: ensure installed vim apt: pkg=vim state=installed - name: set filetype indent off for vim lineinfile: dest=/etc/vim/vimrc line='filetype indent off' state=present </code></pre> <aside class="notes"> </aside> </section> </section> <!-- <section> <h2>Pros</h2> <ul> <li class="fragment">In source control.</li> <li class="fragment">Less differences between environments.</li> <li class="fragment">Self documenting (it's code!).</li> <li class="fragment">Refactoring.</li> <li class="fragment">Deterministic.</li> <li class="fragment">Prevents manual steps.</li> <li class="fragment">Fast and easy to configure up a new environment.</li> <li class="fragment">Easier to test server setup.</li> </ul> <aside class="notes"> </aside> </section> <section> <h2>Cons</h2> <ul> <li class="fragment">Unfamiliar to "old school operators".</li> <li class="fragment">Operations is unfamiliar to developers.</li> <li class="fragment">Startup cost. <ul> <li >Training</li> <li>Migrating</li> </ul> </li> </ul> <aside class="notes"> </aside> </section>--> <section> <h2>Ansible</h2> <ul> <li>SSH-based</li> <li>Client only (no server)</li> <li>YAML configuration</li> <li>Push (and pull)</li> <li>Supports more than setup and provisioning:</li> <ul> <li>Application deployment</li> <li>Remote command execution</li> </ul> </ul> <aside class="notes"> </aside> </section> <section> <h2>Bring up the boxes</h2> <pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;"> vagrant up </code></pre> <aside class="notes"> </aside> </section> <section> <h2>Layout</h2> <pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;"> ├── ansible.cfg ├── hosts ├── site.yml ├── group_vars │   └── &lt;group name&gt; ├── host_vars │   └── &lt;host name&gt; ├── roles │   ├── &lt;role&gt; │   │   ├── files │   │   └── &lt;file&gt; │   │   └── templates │   │   └── &lt;template&gt;.j2 │   │   ├── handlers │   │   │   └── main.yml │   │   ├── tasks │   │   │   └── main.yml </code></pre> <aside class="notes">Explain all folders and files.</aside> </section> <section> <h2>Play!</h2> <pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;"> ansible-playbook site.yml </code></pre> <aside class="notes"> </aside> </section> <section> <h2>Facts</h2> <ul> <li>Ansible by default gathers “facts” about the machines under management.</li> <li>These facts can be accessed in Playbooks and in templates.</li> </ul> <pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;"> ansible -m setup app1.local </code></pre> <aside class="notes"> </aside> </section> <section> <h2>The task</h2> <ul> <li>An app user 'devops', with:</li> <ul> <li>Home directory: /home/devops</li> <li>ssh-key</li> </ul> <li>A PostgresSQL database.</li> <li>Nginx as a reverse proxy.</li> <li>An init script installed as a service.</li> <li>Deploy an application that uses the provisioned infrastructure.</li> </ul> <aside class="notes"> </aside> </section> <section> <img width="449" height="510" src="img/architecture.png" alt="architecture"> <aside class="notes"> </aside> </section> <section> <h2>Help!</h2> <a href="http://docs.ansible.com/list_of_all_modules.html">http://docs.ansible.com/list_of_all_modules.html</a> <aside class="notes"> </aside> </section> <section> <h2>Task1: Install and configure software</h2> <pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;"> git checkout start </code></pre> <ul> <li>Modify roles/common/tasks/apt.yml.</li> <li>Install Vim.</li> <li>Insert the line 'filetype indent off' in /etc/vim/vimrc</li> </ul> <pre> Help: <a href="http://docs.ansible.com/apt_module.html">http://docs.ansible.com/apt_module.html</a> <a href="http://docs.ansible.com/lineinfile_module.html">http://docs.ansible.com/lineinfile_module.html</a> </pre> <pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;"> git checkout task1_help </code></pre> <aside class="notes"> </aside> </section> <section> <h2>Task1: Solution</h2> <pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;"> git diff HEAD origin/task1 git checkout task1 # or keep your own solution ansible-playbook site.yml --tags apt,vim </code></pre> <pre style="font-size: 18px; margin-top: 40px;"> ProTip: Use '--tags', '--skip-tags', '--limit' and/or 'gather_facts: False'<br/>to reduce execution time.</pre> <aside class="notes"> </aside> </section> <section> <h2>Progress</h2> <ul> <li>Installed software</li> <li>Manipulated files</li> </ul> <aside class="notes"> </aside> </section> <section> <h2>Variables</h2> <ul> <li>Ansible uses variables (a lot!).</li> <li><a href="http://docs.ansible.com/playbooks_variables.html">http://docs.ansible.com/playbooks_variables.html</a> <ul> <li>Inventory</li> <li>group_vars and host_vars</li> <li>Playbook</li> <li>Facts</li> <li>Command line</li> </ul> <li>Access variables from playbooks: "{{ variable }}"</li> </ul> <aside class="notes"> </aside> </section> <section> <h2>Task2: Create an application user</h2> <ul> <li>Create roles/users/tasks/main.yml</li> <li>Home directory: /home/devops</li> <li>ssh-key</li> <li>Use variables! (group_vars)</li> </ul> <pre> Help: <a href="http://docs.ansible.com/group_module.html">http://docs.ansible.com/group_module.html</a> <a href="http://docs.ansible.com/user_module.html">http://docs.ansible.com/user_module.html</a> <a href="http://docs.ansible.com/file_module.html">http://docs.ansible.com/file_module.html</a> (copy ssh-key) <a href="http://docs.ansible.com/lineinfile_module.html">http://docs.ansible.com/lineinfile_module.html</a> (.ssh/authorized_keys) <a href="http://docs.ansible.com/playbooks_best_practices.html#group-and-host-variables">http://docs.ansible.com/playbooks_best_practices.html#group-and-host-variables</a> </pre> <pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;"> git checkout task2_help </code></pre> <aside class="notes"> </aside> </section> <section> <h2>Task2: Solution</h2> <pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;"> git diff HEAD origin/task2 git checkout task2 # or keep your own solution ansible-playbook site.yml --limit appservers --skip-tags apt,vim,java </code></pre> <pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;"> ssh [email protected] </code></pre> <aside class="notes"> </aside> </section> <section> <h2>Progress</h2> <ul> <li>Installed software</li> <li>Manipulated files</li> <li>Created a user and set up a ssh-key</li> </ul> <aside class="notes"> </aside> </section> <section> <h2>Task3: Install and configure PostgreSQL</h2> <pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;"> roles/postgresql ├── files │   ├── ACCC4CF8.asc │   └── postgresql.conf ├── handlers │   └── main.yml ├── tasks │   ├── main.yml │   └── ... └── templates └── pg_hba.conf.j2 </code></pre> <pre>Use variables (group_vars/all and/or group_vars/dbservers).</pre> <pre>Use handler to restart postgresql upon notification</pre> <pre>Template: git checkout master -- roles/postgresql/templates/pg_hba.conf.j2</pre> <pre> Help: <a href="http://docs.ansible.com/template_module.html">http://docs.ansible.com/template_module.html</a> (pg_hba.conf.j2) <a href="http://docs.ansible.com/postgresql_user_module.html">http://docs.ansible.com/postgresql_user_module.html</a> <a href="http://docs.ansible.com/postgresql_db_module.html">http://docs.ansible.com/postgresql_db_module.html</a> <a href="http://docs.ansible.com/playbooks_intro.html#handlers-running-operations-on-change">http://docs.ansible.com/playbooks_intro.html#handlers-running-operations-on-change</a> <a href="http://docs.ansible.com/playbooks_best_practices.html#group-and-host-variables">http://docs.ansible.com/playbooks_best_practices.html#group-and-host-variables</a> </pre> <aside class="notes"> </aside> </section> <section> <h2>Task3: Solution</h2> <pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;"> git diff HEAD origin/task3 git checkout task3 # or keep your own solution ansible-playbook site.yml --limit dbservers --tags pg_install </code></pre> <pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;"> $ vagrant ssh db vagrant@db:~$ psql -d devops -U devops -W devops=&gt; \q </code></pre> <aside class="notes"> </aside> </section> <section> <h2>Progress</h2> <ul> <li>Installed software</li> <li>Manipulated files</li> <li>Created a user and set up a ssh-key</li> <li>Installed and configured a database and a db user</li> </ul> <aside class="notes"> </aside> </section> <section> <h2>Task4: Deploy!</h2> <pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;"> roles/app ├── files │   └── init.sh ├── tasks │   └── main.yml └── templates └── config.properties.j2 </code></pre> <pre>NB! Use variables (./hosts).</pre> <pre>Set 'serial: 1' for appservers in site.yml.</pre> <pre> Help: <a href="http://docs.ansible.com/service_module.html">http://docs.ansible.com/service_module.html</a> </pre> <aside class="notes"> </aside> </section> <section> <h2>Task4: Solution</h2> Browse to <a href="http://app1.local:1234/">http://app1.local:1234/</a> <pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;"> git diff HEAD origin/task4 git checkout task4 # or keep your own solution ansible-playbook site.yml --limit appservers --tags deploy </code></pre> <aside class="notes"> </aside> </section> <section> <h2>What just happened?</h2> <pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;"> /home/devops ├── config.properties ├── current -&gt; /home/devops/devops_1416228023.jar ├── previous -&gt; /home/devops/devops_1416221573.jar ├── devops_1416221573.jar ├── devops_1416228023.jar └── logs ├── stderr.log └── stdout.log </code></pre> <pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;"> /etc/init.d └── devops </code></pre> <aside class="notes"> </aside> </section> <section> <h2>Progress</h2> <ul> <li>Installed software</li> <li>Manipulated files</li> <li>Created a user and set up a ssh-key</li> <li>Installed and configured a database and a db user</li> <li>Deployed an application to two appservers and enabled it as a service</li> </ul> <aside class="notes"> </aside> </section> <section> <h2>Task5: Deploy database</h2> <pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;"> roles/db ├── files │   └── migrate_db.sql └── tasks └── main.yml </code></pre> <pre> Help: <a href="http://docs.ansible.com/command_module.html">http://docs.ansible.com/command_module.html</a> </pre> <pre><code data-trim contenteditable style="font-size: 18px; margin-top: 0px;"> psql -d {{ db.name }} -q -f /tmp/migrate_db.sql sudo_user: postgres </code></pre> <aside class="notes"> </aside> </section> <section> <h2>Task5: Solution</h2> Browse to <a href="http://app1.local:1234/">http://app1.local:1234/</a> <pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;"> git diff HEAD origin/task5 git checkout task5 # or keep your own solution ansible-playbook site.yml --limit dbservers --tags deploy </code></pre> <pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;"> $ vagrant ssh db vagrant@db:~$ psql -d devops -U devops -W devops=&gt; \dt devops=&gt; select * from hello; devops=&gt; \q </code></pre> <aside class="notes"> </aside> </section> <section> <h2>Progress</h2> <ul> <li>Installed software</li> <li>Manipulated files</li> <li>Created a user and set up a ssh-key</li> <li>Installed and configured a database and a db user</li> <li>Deployed an application to two appservers and enabled it as a service</li> <li>Migrated the database schema and fetched data from it through the application</li> </ul> <aside class="notes"> </aside> </section> <section> <h2>Task6: Set up proxy</h2> <pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;"> roles/nginx ├── handlers │   └── main.yml ├── tasks │   ├── config_nginx.yml │   ├── install_nginx.yml │   └── main.yml └── templates └── devops.conf.j2 </code></pre> <pre> Help: <a href="http://wsgiarea.pocoo.org/jinja/docs/loops.html">http://wsgiarea.pocoo.org/jinja/docs/loops.html</a> </pre> <aside class="notes"> </aside> </section> <section> <h2>Task6: Solution</h2> Browse to <a href="http://proxy.local/">http://proxy.local/</a> # refresh me many times <pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;"> git diff HEAD origin/task6 git checkout task6 # or keep your own solution ansible-playbook site.yml --limit proxies --tags nginx </code></pre> <aside class="notes"> </aside> </section> <section> <h2>Progress</h2> <ul> <li>Installed software</li> <li>Manipulated files</li> <li>Created a user and set up a ssh-key</li> <li>Installed and configured a database and a db user</li> <li>Deployed an application to two appservers and enabled it as a service</li> <li>Migrated the database schema and fetched data from it through the application</li> <li>Set up a reverse proxy for automatic failover between the two appservers</li> </ul> <aside class="notes"> </aside> </section> <section> <h2>The Expand/Contract pattern</h2> <br> <table class="reveal" width="100%"> <th>Expand</th> <th>Contract</th> <tr> <td width="50%" class="fragment"> <ul> <li>Add tables</li> <li>Add columns</li> <li>Tweak indexes</li> </ul> </td> <td width="50%" class="fragment"> <ul> <li>Remove tables</li> <li>Remove columns</li> <li>Remove/add constraints</li> </ul> </td> </tr> </table> </section> <aside class="notes"> </aside> </section> <section> <img width="449" height="510" src="img/architecture.png" alt="architecture"> <aside class="notes"> </aside> </section> <section> <img width="449" height="510" src="img/pre-upgrade-db.png" alt="architecture"> <aside class="notes"> </aside> </section> <section> <img width="449" height="510" src="img/upgrade1.png" alt="architecture"> <aside class="notes"> </aside> </section> <section> <img width="449" height="510" src="img/upgrade2.png" alt="architecture"> <aside class="notes"> </aside> </section> <section> <img width="449" height="510" src="img/post-upgrade-db.png" alt="architecture"> <aside class="notes"> </aside> </section> <section> <img width="449" height="510" src="img/architecture.png" alt="architecture"> <aside class="notes"> </aside> </section> <section> <h2>Play time :-)</h2> <ul> <li>Suggestions:</li> <ul> <li>Change database table name from HELLO to MESSAGES and deploy a new version without downtime.</li> <li>Implement automated rollback.</li> </ul> </ul> <aside class="notes"> </aside> </section> <section> <h2>I have been playing :-)</h2> <pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;"> git checkout play ansible-playbook site.yml --limit appservers,dbservers --tags deploy ansible-playbook site.yml --limit appservers,dbservers --tags rollback </code></pre> <aside class="notes"> </aside> </section> <section> <h1>Thank you!</h1> <img width="252" height="235" src="img/me_bart.png" alt="Stein Inge Morisbak"> <p><a href="https://twitter.com/steinim">@steinim</a></p> <p><a href="mailto:[email protected]">[email protected]</a></p> <aside class="notes"> </aside> </section> <!-- <section> <h2>Pros</h2> <ul> <li>Very easy setup, only client.</li> <li>Easy configuration files (YAML).</li> <li>Low startup-cost.</li> <li>Able to deploy applications.</li> <li>Less abstractions.</li> </ul> <aside class="notes"> </aside> </section> <section> <h2>Cons</h2> <ul> <li>Configuration drift.</li> <li>Linux/Unix only.</li> <li>Not package-manager-agnostic.</li> <li>Less abstraction.</li> <li>Scalability.</li> <li>Small user base.</li> </ul> <aside class="notes"> </aside> </section> <section> <h1>What did we forget?</h1> </section> <section> <h1>To test!</h1> </section> <section> <h2>ServerSpec</h2> <ul> <li>RSpec</li> <li>Tests your servers' actual state</li> <li>SSH access</li> <li>No agent softwares on your servers</li> <li>Use any configuration management tool <ul> <li>The one we have talked about</li> <li>Even manual setup</li> </ul> </li> <aside class="notes"> </aside> </section> <section> <h2>What are you waiting for?</h2> <ul> <li>Describe your existing infrastructure with ServerSpec</li> <li>Use Vagrant and VirtualBox to play around in a "real" environment.</li> <li>Use a provisioning framework to make your tests go green</li> <li>Go live!</li> </ul> <aside class="notes"> </aside> </section> --> </div> </div> <script src="../lib/js/head.min.js"></script> <script src="../js/reveal.min.js"></script> <script> // Full list of configuration options available here: // https://github.com/hakimel/reveal.js#configuration Reveal.initialize({ controls: true, progress: true, history: true, center: true, width: 1100, theme: Reveal.getQueryHash().theme, // available themes are in /css/theme transition: Reveal.getQueryHash().transition || 'none', // default/cube/page/concave/zoom/linear/fade/none // Optional libraries used to extend on reveal.js dependencies: [ { src: '../lib/js/classList.js', condition: function() { return !document.body.classList; } }, { src: '../plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, { src: '../plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, { src: '../plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }, { src: '../plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } }, { src: '../plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } } // { src: '../plugin/search/search.js', async: true, condition: function() { return !!document.body.classList; } } // { src: '../plugin/remotes/remotes.js', async: true, condition: function() { return !!document.body.classList; } } ] }); </script> </body> </html>
data science/machine_learning_for_the_web/chapter_4/movie/15418.html
xianjunzhengbackup/code
<HTML><HEAD> <TITLE>Review for Money Movers (1979)</TITLE> <LINK REL="STYLESHEET" TYPE="text/css" HREF="/ramr.css"> </HEAD> <BODY BGCOLOR="#FFFFFF" TEXT="#000000"> <H1 ALIGN="CENTER" CLASS="title"><A HREF="/Title?0077944">Money Movers (1979)</A></H1><H3 ALIGN=CENTER>reviewed by<BR><A HREF="/ReviewsBy?Dragan+Antulov">Dragan Antulov</A></H3><HR WIDTH="40%" SIZE="4"> <PRE> MONEY MOVERS A Film Review Copyright Dragan Antulov 1998</PRE> <P>In the 1980s the author of this review used to be in love with the booming and blooming Australian film industry. The video stores were full of tapes with the latest Australian films, and the former Yugoslav television aired almost any miniseries that it could get - all of that usually superior to the similar Hollywood products. The first crush in that romance occurred few years earlier, when former Yugoslav television had been introducing the new Australian cinema in a weekly series of television premieres. My taste at the time was too unrefined for to appreciate their quality, so they mostly slipped out my memory. However, there was one notable exception - MONEY MOVERS, 1978 crime thriller by Bruce Beresford, the most commercial and Hollywood-like of all those movies, but also superior to many similar films made on the other side of Pacific.</P> <P>The screenplay is based on the novel by Devon Minchin, yet the beginning credits tell that the plot was based on the actual events. In any case, the authenticity of the movie is quite moot point, because writer and director Bruce Beresford throws nitty-gritty realism to our face. Security firm specialised in the transport of money and other valuables becomes the target of repeated hits by armed robbers. Its owner, Lionel Darcy (Frank Wilson) is worried because the failure to secure the transports could mean the end of his business. His worries multiply when he gets anonymous tip that the firm is going to get hit from the inside. That also worries Eric Jackson (Terence Donovan), one of Darcy's trusted employees who was planning exactly the same thing for the last five years. Those events coincide with the appearance of a new, young and seemingly inexperienced employee Leo Bassett (Tony Bonner). Darcy's suspicions and some other strange events also bring the attention of a local crime boss Jack Henderson (Charles 'Bud' Tingwell), who would also like the piece of an action.</P> <P>Good thing about cinematographies that have a relatively short pool of actors or cinematic opportunities for them is the fact that some really good artists don't hesitate playing the small roles. Here, in MONEY MOVERS, those small roles are illuminated by the great bunch of more than capable actors like Ed Deveraux, Terence Donovan or Bryan Brown. The script and good direction of Bruce Beresford allows them all to shine in a tiny hour and half of non-stop action and intrigue. The plot is really intriguing, allowing some interesting twists and surprise, although Beresford does reveal most of its cards in the beginning. Also, despite the huge amounts of pulp material - sex, violence, bad language, police corruption (in many ways than one) - its use doesn't seem to be gratuitous. By providing such naturalistic elements, Beresford draws us into the picture and allows us to forget any possible flaws of characterisation. Everything culminates in extremely violent and cathartic finale, although direction of the action scenes would be better in the hands of someone like Walter Hill or George Miller. But, despite all those shortcomings, MONEY MOVERS should be watched as refreshingly entertaining piece of underrated cinema.</P> <PRE>RATING: 8/10 (+++)</PRE> <PRE>Review written on November 19th 1998</PRE> <PRE>Dragan Antulov a.k.a. Drax Fido: 2:381/100 E-mail: <A HREF="mailto:[email protected]">[email protected]</A> <A HREF="mailto:[email protected],hr">[email protected],hr</A></PRE> <HR><P CLASS=flush><SMALL>The review above was posted to the <A HREF="news:rec.arts.movies.reviews">rec.arts.movies.reviews</A> newsgroup (<A HREF="news:de.rec.film.kritiken">de.rec.film.kritiken</A> for German reviews).<BR> The Internet Movie Database accepts no responsibility for the contents of the review and has no editorial control. Unless stated otherwise, the copyright belongs to the author.<BR> Please direct comments/criticisms of the review to relevant newsgroups.<BR> Broken URLs inthe reviews are the responsibility of the author.<BR> The formatting of the review is likely to differ from the original due to ASCII to HTML conversion. </SMALL></P> <P ALIGN=CENTER>Related links: <A HREF="/Reviews/">index of all rec.arts.movies.reviews reviews</A></P> </P></BODY></HTML>
clean/Linux-x86_64-4.03.0-2.0.5/released/8.7.0/infotheo/0.0.7.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.7.0 / infotheo - 0.0.7</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.0.7 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2022-03-04 11:22:03 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-03-04 11:22:03 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-threads base base-unix base camlp5 7.14 Preprocessor-pretty-printer of OCaml conf-findutils 1 Virtual package relying on findutils conf-perl 2 Virtual package relying on perl coq 8.7.0 Formal proof management system num 0 The Num library for arbitrary-precision integer and rational arithmetic ocaml 4.03.0 The OCaml compiler (virtual package) ocaml-base-compiler 4.03.0 Official 4.03.0 release ocaml-config 1 OCaml Switch Configuration ocamlfind 1.9.3 A library manager for OCaml # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;[email protected]&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-02-06&quot; ] url { http: &quot;https://github.com/affeldt-aist/infotheo/archive/0.0.7.tar.gz&quot; checksum: &quot;sha512=8cf6f3580a3afd3bb02197f643adb4ea24237e0ee65f1499d32ac15c3cdc775a5e093f833381ddf59f9de4bc08f032960d71e139281ac504093ec547796424e9&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.0.7 coq.8.7.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.7.0). The following dependencies couldn&#39;t be met: - coq-infotheo -&gt; coq &gt;= 8.10~ -&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-infotheo.0.0.7</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>
docs/sdk/site/api/Picturepark.SDK.V1.Contract.ResizeMode.html
Picturepark/Picturepark.SDK.DotNet
<!DOCTYPE html> <!--[if IE]><![endif]--> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>Enum ResizeMode | Picturepark.SDK.V1 API </title> <meta name="viewport" content="width=device-width"> <meta name="title" content="Enum ResizeMode | Picturepark.SDK.V1 API "> <meta name="generator" content="docfx 2.59.0.0"> <link rel="shortcut icon" href="../favicon.ico"> <link rel="stylesheet" href="../styles/docfx.vendor.css"> <link rel="stylesheet" href="../styles/docfx.css"> <link rel="stylesheet" href="../styles/main.css"> <meta property="docfx:navrel" content="../toc.html"> <meta property="docfx:tocrel" content="toc.html"> <meta property="docfx:rel" content="../"> </head> <body data-spy="scroll" data-target="#affix" data-offset="120"> <div id="wrapper"> <header> <nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar"> <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 id="logo" class="svg" src="../logo.svg" alt=""> </a> </div> <div class="collapse navbar-collapse" id="navbar"> <form class="navbar-form navbar-right" role="search" id="search"> <div class="form-group"> <input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off"> </div> </form> </div> </div> </nav> <div class="subnav navbar navbar-default"> <div class="container hide-when-search" id="breadcrumb"> <ul class="breadcrumb"> <li></li> </ul> </div> </div> </header> <div class="container body-content"> <div id="search-results"> <div class="search-list">Search Results for <span></span></div> <div class="sr-items"> <p><i class="glyphicon glyphicon-refresh index-loading"></i></p> </div> <ul id="pagination" data-first="First" data-prev="Previous" data-next="Next" data-last="Last"></ul> </div> </div> <div role="main" class="container body-content hide-when-search"> <div class="sidenav hide-when-search"> <a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a> <div class="sidetoggle collapse" id="sidetoggle"> <div id="sidetoc"></div> </div> </div> <div class="article row grid-right"> <div class="col-md-10"> <article class="content wrap" id="_content" data-uid="Picturepark.SDK.V1.Contract.ResizeMode"> <h1 id="Picturepark_SDK_V1_Contract_ResizeMode" data-uid="Picturepark.SDK.V1.Contract.ResizeMode">Enum ResizeMode </h1> <div class="markdown level0 summary"><p>Specifies how the dimensions of a ResizeAction are applied to the content</p> </div> <div class="markdown level0 conceptual"></div> <h6><strong>Namespace</strong>: System.Dynamic.ExpandoObject</h6> <h5 id="Picturepark_SDK_V1_Contract_ResizeMode_syntax">Syntax</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public enum ResizeMode</code></pre> </div> <h4 id="Picturepark_SDK_V1_Contract_ResizeMode_Fit"><a href="#collapsible-Picturepark_SDK_V1_Contract_ResizeMode_Fit" class="expander" data-toggle="collapse">Fit</a></h4> <div id="collapsible-Picturepark_SDK_V1_Contract_ResizeMode_Fit" class="collapse in"> <p> </div> <h4 id="Picturepark_SDK_V1_Contract_ResizeMode_Resize"><a href="#collapsible-Picturepark_SDK_V1_Contract_ResizeMode_Resize" class="expander" data-toggle="collapse">Resize</a></h4> <div id="collapsible-Picturepark_SDK_V1_Contract_ResizeMode_Resize" class="collapse in"> <p> </div> <h4 id="Picturepark_SDK_V1_Contract_ResizeMode_Shrink"><a href="#collapsible-Picturepark_SDK_V1_Contract_ResizeMode_Shrink" class="expander" data-toggle="collapse">Shrink</a></h4> <div id="collapsible-Picturepark_SDK_V1_Contract_ResizeMode_Shrink" class="collapse in"> <p> </div> </article> </div> <div class="contribution-panel mobile-hide"> </div> <div class="hidden-sm col-md-2" role="complementary"> <div class="sideaffix"> <nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix"> </nav> </div> </div> </div> </div> <footer> <div class="grad-bottom"></div> <div class="footer"> <div class="container"> <span class="pull-right"> <a href="#top">Back to top</a> </span> <span>Generated by <strong>DocFX</strong></span> </div> </div> </footer> </div> <script type="text/javascript" src="../styles/docfx.vendor.js"></script> <script type="text/javascript" src="../styles/docfx.js"></script> <script type="text/javascript" src="../styles/main.js"></script> </body> </html>
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/64f1d9e98a7780943819f64bbd653c392903288ba87adbee302e7a3a99ed8be5.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="./dd2a6eb619295a7bd576dfc2a4378b5351a32fb3814c84aabdd222f613be6a15.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>
db-5.3.28.NC/docs/upgrading/upgrade_3_0_func.html
iadix/iadixcoin
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <!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/html; charset=UTF-8" /> <title>function arguments</title> <link rel="stylesheet" href="gettingStarted.css" type="text/css" /> <meta name="generator" content="DocBook XSL Stylesheets V1.73.2" /> <link rel="start" href="index.html" title="Berkeley DB Upgrade Guide" /> <link rel="up" href="upgrade_3_0_toc.html" title="Chapter 14. Upgrading Berkeley DB 2.X applications to Berkeley DB 3.0" /> <link rel="prev" href="upgrade_3_0_envopen.html" title="environment open/close/unlink" /> <link rel="next" href="upgrade_3_0_dbenv.html" title="DB_ENV structure" /> </head> <body> <div xmlns="" class="navheader"> <div class="libver"> <p>Library Version 11.2.5.3</p> </div> <table width="100%" summary="Navigation header"> <tr> <th colspan="3" align="center">function arguments</th> </tr> <tr> <td width="20%" align="left"><a accesskey="p" href="upgrade_3_0_envopen.html">Prev</a> </td> <th width="60%" align="center">Chapter 14. Upgrading Berkeley DB 2.X applications to Berkeley DB 3.0</th> <td width="20%" align="right"> <a accesskey="n" href="upgrade_3_0_dbenv.html">Next</a></td> </tr> </table> <hr /> </div> <div class="sect1" lang="en" xml:lang="en"> <div class="titlepage"> <div> <div> <h2 class="title" style="clear: both"><a id="upgrade_3_0_func"></a>function arguments</h2> </div> </div> </div> <p>In Berkeley DB 3.0, there are no longer separate structures that represent each subsystem (for example, DB_LOCKTAB or DB_TXNMGR), and an overall <a href="../api_reference/C/env.html" class="olink">DB_ENV</a> environment structure. Instead there is only the <a href="../api_reference/C/env.html" class="olink">DB_ENV</a> references should be passed around by your application instead of passing around DB_LOCKTAB or DB_TXNMGR references.</p> <p>Each of the following functions:</p> <pre class="programlisting">lock_detect lock_get lock_id lock_put lock_stat lock_vec</pre> <p>should have its first argument, a reference to the DB_LOCKTAB structure, replaced with a reference to the enclosing <a href="../api_reference/C/env.html" class="olink">DB_ENV</a> structure. For example, the following line of code from a Berkeley DB 2.X application:</p> <pre class="programlisting">DB_LOCKTAB *lt; DB_LOCK lock; ret = lock_put(lt, lock);</pre> <p>should now be written as follows:</p> <pre class="programlisting">DB_ENV *dbenv; DB_LOCK *lock; ret = lock_put(dbenv, lock);</pre> <p>Similarly, all of the functions:</p> <pre class="programlisting">log_archive log_compare log_file log_flush log_get log_put log_register log_stat log_unregister</pre> <p>should have their DB_LOG argument replaced with a reference to a <a href="../api_reference/C/env.html" class="olink">DB_ENV</a> structure, and the functions:</p> <pre class="programlisting">memp_fopen memp_register memp_stat memp_sync memp_trickle</pre> <p>should have their DB_MPOOL argument replaced with a reference to a <a href="../api_reference/C/env.html" class="olink">DB_ENV</a> structure.</p> <p>You should remove all references to DB_LOCKTAB, DB_LOG, DB_MPOOL, and DB_TXNMGR structures from your application, they are no longer useful in any way. In fact, a simple way to identify all of the places that need to be upgraded is to remove all such structures and variables they declare, and then compile. You will see a warning message from your compiler in each case that needs to be upgraded.</p> </div> <div class="navfooter"> <hr /> <table width="100%" summary="Navigation footer"> <tr> <td width="40%" align="left"><a accesskey="p" href="upgrade_3_0_envopen.html">Prev</a> </td> <td width="20%" align="center"> <a accesskey="u" href="upgrade_3_0_toc.html">Up</a> </td> <td width="40%" align="right"> <a accesskey="n" href="upgrade_3_0_dbenv.html">Next</a></td> </tr> <tr> <td width="40%" align="left" valign="top">environment open/close/unlink </td> <td width="20%" align="center"> <a accesskey="h" href="index.html">Home</a> </td> <td width="40%" align="right" valign="top"> DB_ENV structure</td> </tr> </table> </div> </body> </html>
imWest.html
briegn1/weather-gridGL
<!doctype html> <html> <head> <title>Intermountain West NDFD Grids with Leaflet WebGL</title> <meta charset="utf-8"> <link rel="stylesheet" href="./stylesheets/gltest.css" /> <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css" /> <script src="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.js"></script> <script src="http://www.sumbera.com/gist/js/leaflet/canvas/L.CanvasOverlay.js"></script> <script src="./ut-data/ut_lats.json" charset="utf-8"></script> <script src="./ut-data/ut_lons.json" charset="utf-8"></script> <script src="//code.jquery.com/jquery-1.11.0.min.js"></script> <script src="./javascripts/imWest.js"></script> <!-- vertex shader --> <script id="vshader" type="x-shader/x-vertex"> attribute vec4 aVertexPosition; attribute vec4 aVertexColor; uniform mat4 uMVMatrix; varying vec4 vColor; void main() { gl_Position = uMVMatrix * aVertexPosition; vColor = aVertexColor; } </script> <!-- fragment shader --> <script id="fshader" type="x-shader/x-fragment"> precision mediump float; varying vec4 vColor; void main() { gl_FragColor = vec4(vColor[0],vColor[1],vColor[2],vColor[3]); } </script> </head> <body> <div id="map"></div> </body> </html>
src/index.html
JoDa8765/final-exam
<!doctype html> <html class="no-js" lang=""> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title></title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="apple-touch-icon" href="apple-touch-icon.png"> <!-- Place favicon.ico in the root directory --> <link rel="stylesheet" href="css/normalize.css"> <link rel="stylesheet" href="css/main.css"> <script src="js/vendor/modernizr-2.8.3.min.js"></script> </head> <body> <!--[if lt IE 8]> <p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p> <![endif]--> <!-- Add your site or application content here --> <p>Just finished my github commit:</p> <script src="https://ajax.googleapis.com/ajax/libs/jquery/{{JQUERY_VERSION}}/jquery.min.js"></script> <script>window.jQuery || document.write('<script src="js/vendor/jquery-{{JQUERY_VERSION}}.min.js"><\/script>')</script> <script src="js/plugins.js"></script> <script src="js/main.js"></script> <!-- Google Analytics: change UA-XXXXX-X to be your site's ID. --> <script> (function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]= function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date; e=o.createElement(i);r=o.getElementsByTagName(i)[0]; e.src='https://www.google-analytics.com/analytics.js'; r.parentNode.insertBefore(e,r)}(window,document,'script','ga')); ga('create','UA-XXXXX-X','auto');ga('send','pageview'); </script> </body> </html>
BOOST/boost_1_61_0/libs/asio/doc/html/boost_asio/reference/windows__basic_object_handle/implementation_type.html
calvinfarias/IC2015-2
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>windows::basic_object_handle::implementation_type</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.76.1"> <link rel="home" href="../../../boost_asio.html" title="Boost.Asio"> <link rel="up" href="../windows__basic_object_handle.html" title="windows::basic_object_handle"> <link rel="prev" href="implementation.html" title="windows::basic_object_handle::implementation"> <link rel="next" href="is_open.html" title="windows::basic_object_handle::is_open"> </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="implementation.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../windows__basic_object_handle.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="is_open.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.windows__basic_object_handle.implementation_type"></a><a class="link" href="implementation_type.html" title="windows::basic_object_handle::implementation_type">windows::basic_object_handle::implementation_type</a> </h4></div></div></div> <p> <span class="emphasis"><em>Inherited from basic_io_object.</em></span> </p> <p> <a class="indexterm" name="idp106040800"></a> The underlying implementation type of I/O object. </p> <pre class="programlisting"><span class="keyword">typedef</span> <span class="identifier">service_type</span><span class="special">::</span><span class="identifier">implementation_type</span> <span class="identifier">implementation_type</span><span class="special">;</span> </pre> <h6> <a name="boost_asio.reference.windows__basic_object_handle.implementation_type.h0"></a> <span><a name="boost_asio.reference.windows__basic_object_handle.implementation_type.requirements"></a></span><a class="link" href="implementation_type.html#boost_asio.reference.windows__basic_object_handle.implementation_type.requirements">Requirements</a> </h6> <p> <span class="emphasis"><em>Header: </em></span><code class="literal">boost/asio/windows/basic_object_handle.hpp</code> </p> <p> <span class="emphasis"><em>Convenience header: </em></span><code class="literal">boost/asio.hpp</code> </p> </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-2015 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="implementation.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../windows__basic_object_handle.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="is_open.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
partials/login.html
Epsichaos/fried-chicken
<br> <br> <div class="container"> <div class="row"> <div class="jumbotron"> <h1 class="text-center"><i class="fa fa-sign-in"></i> Login</h1> <p class="text-center"><em>You have to login to access the web service</em></p> </div> </div> <div class="row"> <div class="container"> <div class="row"> <div class="col-md-6 col-md-offset-3"> <div class="alert alert-info"> Username: root<br /> Password: toor </div> <div ng-show="error" class="alert alert-danger"><i class="fa fa-exclamation-triangle"></i> {{error}}</div> <div class="well bs-component"> <form name="form" ng-submit="login()" role="form"> <fieldset> <legend>Connexion form</legend> <div class="form-group"> <label for="username">Username</label> <i class="fa fa-user"></i> <input type="text" name="username" id="username" class="form-control" placeholder="Username" ng-model="username" required /> <span ng-show="form.username.$dirty && form.username.$error.required" class="help-block">Username is required</span> </div> <div class="form-group"> <label for="password">Password</label> <i class="fa fa-lock"></i> <input type="password" name="password" id="password" class="form-control" placeholder="Password" ng-model="password" required /> <span ng-show="form.password.$dirty && form.password.$error.required" class="help-block">Password is required</span> </div> <div class="form-group text-center"> <label for="password"> Remember me <i class="fa fa-paper-plane-o"></i> <input type="checkbox"ng-model="rememberme" name="rememberme"></label> </div> <div class="form-actions text-center"> <button type="submit" ng-disabled="form.$invalid || dataLoading" class="btn btn-primary btn-lg">Login</button> <img ng-if="dataLoading" src="data:image/gif;base64,R0lGODlhEAAQAPIAAP///wAAAMLCwkJCQgAAAGJiYoKCgpKSkiH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAADMwi63P4wyklrE2MIOggZnAdOmGYJRbExwroUmcG2LmDEwnHQLVsYOd2mBzkYDAdKa+dIAAAh+QQJCgAAACwAAAAAEAAQAAADNAi63P5OjCEgG4QMu7DmikRxQlFUYDEZIGBMRVsaqHwctXXf7WEYB4Ag1xjihkMZsiUkKhIAIfkECQoAAAAsAAAAABAAEAAAAzYIujIjK8pByJDMlFYvBoVjHA70GU7xSUJhmKtwHPAKzLO9HMaoKwJZ7Rf8AYPDDzKpZBqfvwQAIfkECQoAAAAsAAAAABAAEAAAAzMIumIlK8oyhpHsnFZfhYumCYUhDAQxRIdhHBGqRoKw0R8DYlJd8z0fMDgsGo/IpHI5TAAAIfkECQoAAAAsAAAAABAAEAAAAzIIunInK0rnZBTwGPNMgQwmdsNgXGJUlIWEuR5oWUIpz8pAEAMe6TwfwyYsGo/IpFKSAAAh+QQJCgAAACwAAAAAEAAQAAADMwi6IMKQORfjdOe82p4wGccc4CEuQradylesojEMBgsUc2G7sDX3lQGBMLAJibufbSlKAAAh+QQJCgAAACwAAAAAEAAQAAADMgi63P7wCRHZnFVdmgHu2nFwlWCI3WGc3TSWhUFGxTAUkGCbtgENBMJAEJsxgMLWzpEAACH5BAkKAAAALAAAAAAQABAAAAMyCLrc/jDKSatlQtScKdceCAjDII7HcQ4EMTCpyrCuUBjCYRgHVtqlAiB1YhiCnlsRkAAAOwAAAAAAAAAAAA==" /> </div> </fieldset> </form> </div> <!-- <div ng-show="error" class="alert alert-danger">{{error}}</div> <div class="well bs-component"> <form class="form-horizontal" name="form" role="form"> <fieldset> <legend>Connexion form</legend> <div class="form-group"> <label class="col-lg-2 control-label">Login</label> <div class="col-lg-10"> <input type="text" class="form-control" name="username" ng-model="username" placeholder="Username" required> </div> </div> <div class="form-group"> <label class="col-lg-2 control-label">Password</label> <div class="col-lg-10"> <input type="password" class="form-control" name="password" ng-model="password" placeholder="Password" required> </div> </div> <div class="form-group text-center"> <div class="col-lg-10"> <button type="submit" class="btn btn-primary">Submit</button> </div> </div> </fieldset> </form> </div> </div> --> </div> </div> <br><br> </div> </div>
QTecApp/Presentation/QTec.Hrms.Web/app/partials/telerikReportViewerTemplate.html
goldytech/QTecApp
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Telerik HTML5 Report Viewer Templates</title> </head> <body> <template id="trv-parameter"> <div class='trv-parameter-container k-content' > <div class='trv-parameter-header k-header'> <div class='trv-parameter-title'></div> </div> <div class='trv-parameter-error k-tooltip-validation k-widget'> <span class='k-icon k-warning'></span> <span class='trv-parameter-error-message'></span> </div> <div class='trv-parameter-value'></div> </div> </template> <template id="trv-parameter-editor-available-values-multiselect"> <div class="trv-parameter-editor-available-values-multiselect"> <div class="list"></div> <div class="footer"> <a class="select-all k-link" href="#">select all</a> <a class="select-none k-link" href="#">clear selection</a> </div> </div> </template> <template id="trv-parameter-editor-available-values"> <div class="trv-parameter-editor-available-values"></div> </template> <template id="trv-parameter-editor-datetime"> <input type="datetime" class="trv-parameter-editor-datetime" /> </template> <template id="trv-parameter-editor-text"> <input type="text" class="k-textbox trv-parameter-editor-text" /> </template> <template id="trv-parameter-editor-number"> <input type="number" class="k-textbox trv-parameter-editor-number"/> </template> <template id="trv-parameter-editor-boolean"> <input type="checkbox" class="trv-parameter-editor-boolean"/> </template> <template id="trv-parameter-editor-multivalue"> <div class="trv-parameter-editor-multivalue"> <textArea class="k-textbox"></textArea> </div> </template> <template id="trv-report-viewer"> <div class="trv-report-viewer" > <div class="trv-side-menu k-content" data-role="telerik_ReportViewer_SideMenu"> <ul> <li><a data-command="historyBack" title="Navigate Backward" href="#"><i class="icon-mail-reply"></i><span>Navigate Backward</span></a></li> <li><a data-command="historyForward" title="Navigate Forward" href="#"><i class="icon-mail-forward"></i><span>Navigate Forward</span></a></li> <li><a data-command="refresh" href="#" title="Refresh"><i class="icon-refresh"></i><span>Refresh</span></a></li> <li><a data-command="print" title="Print" href="#"><i class="icon-print"></i><span>Print...</span></a></li> <li> <a title="Export" href="#" data-command="export"><i class="icon-cloud-download"></i><span>Export</span></a> <ul data-command-list="export-format-list"></ul> </li> <li><a data-command="togglePrintPreview" title="Toggle Print Preview" href="#"><i class="icon-file-text"></i><span>Toggle Print Preview</span></a></li> </ul> </div> <div class="trv-content-wrapper k-content"> <div class="trv-content"> <div class="trv-document-map k-widget hidden" data-role="telerik_ReportViewer_DocumentMapArea"> <div class="trv-document-map-overlay"></div> </div> <div class="trv-parameters-area k-widget hidden" data-role="telerik_ReportViewer_ParametersArea"> <div class='trv-parameters-area-content'></div> <div class='trv-parameters-area-footer'> <button class='k-button trv-parameters-area-preview-button'>Preview</button> </div> <div class='trv-error-pane k-tooltip-validation k-widget'> <div class='trv-error-message'></div> </div> <div class="trv-parameters-area-overlay"></div> </div> <div class="trv-pages-area k-widget" data-role="telerik_ReportViewer_PagesArea"> <div class='trv-page-container'></div> <div class='trv-error-pane'> <div class="centered k-tooltip-validation k-widget"> <div class='trv-error-message'></div> </div> <div style="clear: both;"></div> </div> </div> </div> <div class="trv-nav"> <ul class="trv-menu-large" data-role="telerik_ReportViewer_MainMenu"> <li><a data-command="historyBack" title="Navigate Backward" href="#"><i class="icon-mail-reply"></i></a></li> <li><a data-command="historyForward" title="Navigate Forward" href="#"><i class="icon-mail-forward"></i></a></li> <li><a data-command="refresh" href="#" title="Refresh"><i class="icon-refresh"></i></a></li> <li><a data-command="goToFirstPage" title="First Page" href="#"><i class="icon-fast-backward"></i></a></li> <li><a data-command="goToPrevPage" title="Previous Page" href="#"><i class="icon-step-backward"></i></a></li> <li> <input data-role="telerik_ReportViewer_PageNumberInput" type="number" /> <span>&nbsp;/&nbsp;</span> <span data-role="telerik_ReportViewer_PageCountLabel"></span> </li> <li><a data-command="goToNextPage" title="Next Page" href="#"><i class="icon-step-forward"></i></a></li> <li><a data-command="goToLastPage" title="Last Page" href="#"><i class="icon-fast-forward"></i></a></li> <li><a data-command="togglePrintPreview" title="Toggle Print Preview" href="#"><i class="icon-file-text"></i></a></li> <li> <a title="Export" href="#" data-command="export"><i class="icon-cloud-download"></i></a> <ul data-command-list="export-format-list"> </ul> </li> <li><a data-command="print" title="Print" href="#"><i class="icon-print"></i></a></li> <li><a data-command="toggleDocumentMap" title="Toggle Document Map" href="#"><i class="icon-book"></i></a></li> <li><a data-command="toggleParametersArea" title="Toggle Parameters Area" href="#"><i class="icon-filter"></i></a></li> <li><a title="Zoom In" href="#" data-command="zoomIn"><i class="icon-zoom-in"></i></a></li> <li><a title="Zoom Out" href="#" data-command="zoomOut"><i class="icon-zoom-out"></i></a></li> <li><a title="Toggle FullPage/PageWidth" href="#" data-command="toggleZoomMode"><i class="icon-search"></i></a></li> </ul> <ul class="trv-menu-small" data-role="telerik_ReportViewer_MainMenu"> <li><a data-command="toggleSideMenu" title="Toggle Side Menu" href="#"><i class="icon-reorder"></i></a></li> <li> <input data-role="telerik_ReportViewer_PageNumberInput" type="number" /> <span>&nbsp;/&nbsp;</span> <span data-role="telerik_ReportViewer_PageCountLabel"></span> </li> <li><a data-command="toggleDocumentMap" title="Toggle Document Map" href="#"><i class="icon-book"></i></a></li> <li><a data-command="toggleParametersArea" title="Toggle Parameters Area" href="#"><i class="icon-filter"></i></a></li> </ul> </div> </div> </div> </template> </body> </html>
a113e02/html/classv8_1_1WeakCallbackObject.html
v8-dox/v8-dox.github.io
<!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.11"/> <title>V8 API Reference Guide for node.js v0.12.15 - v0.12.17: v8::WeakCallbackObject&lt; T, P &gt; Class Template 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="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" /> </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">V8 API Reference Guide for node.js v0.12.15 - v0.12.17 </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.11 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <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 class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> <li><a href="examples.html"><span>Examples</span></a></li> <li> <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> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <!-- 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 id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="namespacev8.html">v8</a></li><li class="navelem"><a class="el" href="classv8_1_1WeakCallbackObject.html">WeakCallbackObject</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">v8::WeakCallbackObject&lt; T, P &gt; Class Template Reference</div> </div> </div><!--header--> <div class="contents"> <hr/>The documentation for this class was generated from the following file:<ul> <li>deps/v8/include/<a class="el" href="v8_8h_source.html">v8.h</a></li> </ul> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.11 </small></address> </body> </html>
src/ical/css/anytime.css
kosmas58/compass-jquery-plugin
/***************************************************************************** * FILE: anytime.css - The Any+Time(TM) JavaScript Library (stylesheet) * * VERSION: 4.1112H * * Copyright 2008-2010 Andrew M. Andrews III (www.AMA3.com). Some Rights * Reserved. This work licensed under the Creative Commons Attribution- * Noncommercial-Share Alike 3.0 Unported License except in jurisdicitons * for which the license has been ported by Creative Commons International, * where the work is licensed under the applicable ported license instead. * For a copy of the unported license, visit * http://creativecommons.org/licenses/by-nc-sa/3.0/ * or send a letter to Creative Commons, 171 Second Street, Suite 300, * San Francisco, California, 94105, USA. For ported versions of the * license, visit http://creativecommons.org/international/ * * Alternative licensing arrangements may be made by contacting the * author at http://www.AMA3.com/contact/ * * This file provides default styling for the Any+Time JavaScript Library's * calendar widget. The styles within can be overridden to customize the * picker's appearance for a particular platform. jQuery UI styles (such * as those created by jQuery ThemeRoller) will override the styles in this * stylesheet. * * These styles have been tested (but not extensively) on Windows Vista in * Internet Explorer 8.0, Firefox 3.0, Opera 10.10 and Safari 4.0. Minor * variations in IE older versions of IE are to be expected, due to its * broken box model. Please report any other problems to the author via * the URL above. * * Any+Time is a trademark of Andrew M. Andrews III. ****************************************************************************/ /* * The following styles ascertain that the types of elements used by * our picker have reasonable styles, especially font, font-size, * list-style-type, margin and padding. */ .AnyTime-pkr * { border: 0; font: inherit; font-size: x-small; font-style: normal; font-weight: normal; list-style-type: none; margin: 0; padding: 0; white-space: nowrap; } /* * .AnyTime-win simulates a "window" that might be a popup or inline. * Styles should include background-color and border. A window should * be sized according to its contents; therefore, width and height * should NOT be specified. */ div.AnyTime-win { background-color: #F0F0F1; border: 3px solid #C0C0C0; font: normal normal normal xx-small/normal sans-serif; padding-bottom: 0.2em; -moz-border-radius: 6px; -webkit-border-radius: 6px; } /* * .AnyTime-pkr is the Date/Time picker, inserted into the page immediately * after the input (text field) to which it corresponds. The picker * attempts to size itself automatically based on its format fields; * therefore, do NOT set width or height. This is empty by default, * because .AnyTime-win styles provide consistent window appearance. */ .AnyTime-pkr { } /* * .AnyTime-cloak covers an AnyTime-pkr whenever an AnyTime-yr-selector is placed over * it. The picker cannot be accessed until the AnyTime-yr-selector has been * dismissed (possibly by clicking the AnyTime-cloak). The style usually * includes a background-color and opacity (and filter for MSIE opacity). */ .AnyTime-pkr .AnyTime-cloak { background-color: #D7D7D7; opacity: 0.7; filter: alpha(opacity = 70); } /* * .AnyTime-hdr is the title bar at the top of a "window." In addition to * the title label, the title bar for popup (non-inline) pickers also * contains .AnyTime-x-btn. */ .AnyTime-pkr .AnyTime-hdr { background-color: #D0D0D1; color: #606062; font-family: Arial, Helvetica, sans-serif; font-size: medium; font-weight: normal; height: 1em; margin: 0; padding: 0 0 0.4em 0; text-align: center; -moz-border-radius: 2px; -webkit-border-radius: 2px; } /* * .AnyTime-x-btn is a pseudo-button that, when clicked, causes the entire * picker to disappear (the picker also disappears if the user clicks * almost anywhere off of it, or presses ESC). This is designed to have, * at minumum, a border and float:right. */ .AnyTime-pkr .AnyTime-x-btn { background-color: #FCFCFF; border: 1px solid #F99; color: #FF9F9F; cursor: default; float: right; margin: 0.3em; text-align: center; width: 1.5em; -moz-border-radius: 0.4em; -webkit-border-radius: 0.4em; } /* * .AnyTime-btn is a pseudo-button for selection of a format field value. * Both height and float:left should be specified, but width is usually * left for different variations to specify (see classes .AnyTime-***-btn). */ .AnyTime-pkr .AnyTime-btn { background-color: #FCFCFE; border: 1px solid #999; color: #606062; cursor: default; float: left; font-family: Arial, Helvetica, sans-serif; height: 1.5em; margin-bottom: 1px; margin-right: 1px; padding-top: 0.1em; -moz-border-radius: 0.4em; -webkit-border-radius: 0.4em; } /* * .AnyTime-body contains everything in thee picker except the title bar. * Because the picker attempts to size itself automatically based on * its format fields, do not width or height. */ .AnyTime-pkr .AnyTime-body { padding: 0.5em; } /* * .AnyTime-date contains all content (labels and pseudo-buttons) for selecting * a date (or part thereof). It is designed to be float:left and should * have a small amount of paddding. */ .AnyTime-pkr .AnyTime-date { float: left; padding: 0 0.5em; } /* * .AnyTime-lbl headings appear before each group of pseudo-buttons for a * particular format field. Each specific label has a class, also. * Styles clear:left and height should be specified here. */ .AnyTime-pkr .AnyTime-lbl { clear: left; color: #606063; font-family: Arial, Helvetica, sans-serif; font-size: 100%; font-weight: normal; font-style: normal; height: 1.3em; margin: 0; padding: 0; text-align: center; } .AnyTime-pkr .AnyTime-lbl-yr, .AnyTime-pkr .AnyTime-lbl-mon, .AnyTime-pkr .AnyTime-lbl-dom, .AnyTime-pkr .AnyTime-lbl-hr, .AnyTime-pkr .AnyTime-lbl-min, .AnyTime-pkr .AnyTime-lbl-sec { } /* * .AnyTime-yrs contains the year-selection pseudo-buttons. * A height and width should be specified. */ .AnyTime-pkr .AnyTime-yrs { height: 2.6em; text-align: center; width: 18.6em; } /* * Following are classes for the pseudo-buttons within .AnyTime-yrs * A width should be specified for each. */ .AnyTime-pkr .AnyTime-yrs-past-btn { width: 2.7em; } .AnyTime-pkr .AnyTime-yr-prior-btn, .AnyTime-pkr .AnyTime-yr-cur-btn, .AnyTime-pkr .AnyTime-yr-next-btn { width: 3.75em; } .AnyTime-pkr .AnyTime-yrs-ahead-btn { width: 2.7em; } /* * .AnyTime-mons * .AnyTime-mons contains the month-selection pseudo-buttons. * A height and width should be specified. */ .AnyTime-pkr .AnyTime-mons { height: 4.8em; text-align: center; width: 18.8em; } /* * .AnyTime-mon-btn is for the pseudo-buttons within .AnyTime-mons * A width should be specified. * Each pseudo-button also has a class of its own. */ .AnyTime-pkr .AnyTime-mon-btn { width: 2.75em; } .AnyTime-pkr .AnyTime-mon1-btn, .AnyTime-pkr .AnyTime-mon2-btn, .AnyTime-pkr .AnyTime-mon3-btn, .AnyTime-pkr .AnyTime-mon4-btn, .AnyTime-pkr .AnyTime-mon5-btn, .AnyTime-pkr .AnyTime-mon6-btn, .AnyTime-pkr .AnyTime-mon8-btn, .AnyTime-pkr .AnyTime-mon9-btn, .AnyTime-pkr .AnyTime-mon10-btn, .AnyTime-pkr .AnyTime-mon11-btn, .AnyTime-pkr .AnyTime-mon12-btn { } .AnyTime-pkr .AnyTime-mon7-btn { clear: left; } /* * .AnyTime-dom-table is the table containing days-of-the-month. * .AnyTime-dom-head is the table heading, containing days-of-the-week labels. * tr.AnyTime-dow is the row in the heading. * td.AnyTime-dow is a column heading; each heading has its own class, also. * .AnyTime-dom-body is the table heading, containing days-of-the-week labels. * .AnyTime-wk is a table row, containing pseudo-buttons for days. * Each week has its own class (.AnyTime-wk***), also. */ .AnyTime-pkr .AnyTime-dom-table { background-color: #F0F0F1; border: 1px solid #E3E3E4; border-spacing: 1px; width: 18.6em; } .AnyTime-pkr .AnyTime-dom-head { } .AnyTime-pkr tr.AnyTime-dow { } .AnyTime-pkr th.AnyTime-dow { background-color: #C0C0C1; color: white; font-family: Arial, Helvetica, sans-serif; font-size: 95%; font-weight: normal; font-style: normal; } .AnyTime-pkr .AnyTime-dow1, .AnyTime-pkr .AnyTime-dow2, .AnyTime-pkr .AnyTime-dow3, .AnyTime-pkr .AnyTime-dow4, .AnyTime-pkr .AnyTime-dow5, .AnyTime-pkr .AnyTime-dow6, .AnyTime-pkr .AnyTime-dow7 { } .AnyTime-pkr .AnyTime-dom-body { } .AnyTime-pkr .AnyTime-wk { } .AnyTime-pkr .AnyTime-wk1, .AnyTime-pkr .AnyTime-wk2, .AnyTime-pkr .AnyTime-wk3, .AnyTime-pkr .AnyTime-wk4, .AnyTime-pkr .AnyTime-wk5, .AnyTime-pkr .AnyTime-wk6 { } /* * .AnyTime-dom-btn is a pseudo-button for a day-of-the-month. * Styles width, text-align:right and float:none should be specified. * .AnyTime-dom-btn-filled is a button containing a specific day-of-the-month. * .AnyTime-dom-btn-empty is a button for an empty cell (no day-of-the-month). * .AnyTime-dom-btn-empty-above-filled is an empty button above a filled button. * .AnyTime-dom-btn-empty-before-filled is empty, left of a filled button. * .AnyTime-dom-btn-empty-after-filled is empty, right of a filled button. * .AnyTime-dom-btn-empty-below-filled is empty, below a filled button. */ .AnyTime-pkr .AnyTime-dom-btn { float: none; height: 1.7em; text-align: right; padding: 0 0.5em 0 0; } .AnyTime-pkr .AnyTime-dom-btn-filled { } .AnyTime-pkr .AnyTime-dom-btn-empty { background-color: #F3F3F4; border: 1px solid #C0C0c1; } .AnyTime-pkr .AnyTime-dom-btn-empty-above-filled, .AnyTime-pkr .AnyTime-dom-btn-empty-before-filled, .AnyTime-pkr .AnyTime-dom-btn-empty-after-filled, .AnyTime-pkr .AnyTime-dom-btn-empty-below-filled { } /* * .AnyTime-time contains all content (labels and pseudo-buttons) for selecting * a time (or part thereof). It is designed to be float:left and should * have a small amount of paddding. */ .AnyTime-pkr .AnyTime-time { float: left; padding: 0 0 0 1em; text-align: center; } /* * .AnyTime-hrs contains two columns (.AnyTime-hrs-am and .AnyTime-hrs-pm) of * pseudo-buttons for selecting hours. It is designed to be float:left, have * a width and padding. The columns should each have width and float:left. */ .AnyTime-pkr .AnyTime-hrs { float: left; padding-left: 0.5em; padding-right: 0.5em; text-align: center; width: 7.2em; } .AnyTime-pkr .AnyTime-hrs-am, .AnyTime-pkr .AnyTime-hrs-pm { float: left; width: 3.6em; } /* * .AnyTime-hr-btn is a pseudo-button for selecting an hour. * Style should include width. * Each button also has a style of its own. */ .AnyTime-pkr .AnyTime-hr-btn { text-align: right; padding-right: 0.25em; width: 3em; } .AnyTime-pkr .AnyTime-hr0-btn, .AnyTime-pkr .AnyTime-hr1-btn, .AnyTime-pkr .AnyTime-hr2-btn, .AnyTime-pkr .AnyTime-hr3-btn, .AnyTime-pkr .AnyTime-hr4-btn, .AnyTime-pkr .AnyTime-hr5-btn, .AnyTime-pkr .AnyTime-hr6-btn, .AnyTime-pkr .AnyTime-hr7-btn, .AnyTime-pkr .AnyTime-hr8-btn, .AnyTime-pkr .AnyTime-hr9-btn, .AnyTime-pkr .AnyTime-hr10-btn, .AnyTime-pkr .AnyTime-hr11-btn, .AnyTime-pkr .AnyTime-hr12-btn, .AnyTime-pkr .AnyTime-hr13-btn, .AnyTime-pkr .AnyTime-hr14-btn, .AnyTime-pkr .AnyTime-hr15-btn, .AnyTime-pkr .AnyTime-hr16-btn, .AnyTime-pkr .AnyTime-hr17-btn, .AnyTime-pkr .AnyTime-hr18-btn, .AnyTime-pkr .AnyTime-hr19-btn, .AnyTime-pkr .AnyTime-hr20-btn, .AnyTime-pkr .AnyTime-hr21-btn, .AnyTime-pkr .AnyTime-hr22-btn, .AnyTime-pkr .AnyTime-hr23-btn { } /* * .AnyTime-mins contains two columns (.AnyTime-mins-tens and .AnyTime-mins-ones) * of pseudo-buttons for selecting minutes. * It is designed to be float:left, have a width and padding. * The columns should each have width and float:left. */ .AnyTime-pkr .AnyTime-mins { float: left; padding-left: 0.5em; padding-right: 0.5em; text-align: center; width: 4.7em; } .AnyTime-pkr .AnyTime-mins-tens, .AnyTime-pkr .AnyTime-mins-ones { float: left; width: 2.3em; } /* * .AnyTime-min-ten-btn is a button in the .AnyTime-mins-tens column. * .AnyTime-min-one-btn is a button in the .AnyTime-ones-tens column. * A width should be specified. * Each button also has its own style. */ .AnyTime-pkr .AnyTime-min-ten-btn, .AnyTime-pkr .AnyTime-min-one-btn { float: left; text-align: center; width: 2em; } .AnyTime-pkr .AnyTime-min-ten-btn-empty, .AnyTime-pkr .AnyTime-min-one-btn-empty { background-color: #F3F3F4; border: 1px solid #C0C0c1; } .AnyTime-pkr .AnyTime-min00-btn, .AnyTime-pkr .AnyTime-min10-btn, /*etc*/ .AnyTime-pkr .AnyTime-min0-btn, .AnyTime-pkr .AnyTime-min1-btn /*etc*/ { } /* * .AnyTime-secs contains two columns (.AnyTime-secs-tens and .AnyTime-secs-ones) * of pseudo-buttons for selecting seconds. * It is designed to be float:left, have a width and padding. * The columns should each have width and float:left. */ .AnyTime-pkr .AnyTime-secs { float: left; padding-left: 0.5em; padding-right: 0.5em; text-align: center; width: 4.7em; } .AnyTime-pkr .AnyTime-secs-tens, .AnyTime-pkr .AnyTime-secs-ones { float: left; width: 2.3em; } /* * .AnyTime-sec-ten-btn is a button in the .AnyTime-secs-tens column. * .AnyTime-sec-one-btn is a button in the .AnyTime-ones-tens column. * A width should be specified. * Each button also has its own style. */ .AnyTime-pkr .AnyTime-sec-ten-btn, .AnyTime-pkr .AnyTime-sec-one-btn { float: left; text-align: center; width: 2em; } .AnyTime-pkr .AnyTime-sec-ten-btn-empty, .AnyTime-pkr .AnyTime-sec-one-btn-empty { background-color: #F3F3F4; border: 1px solid #C0C0c1; } .AnyTime-pkr .AnyTime-sec00-btn, .AnyTime-pkr .AnyTime-sec10-btn, /*etc*/ .AnyTime-pkr .AnyTime-sec0-btn, .AnyTime-pkr .AnyTime-sec1-btn /*etc*/ { } /* * .AnyTime-offs contains the UTC offset (timezone) selection pseudo-buttons. * The container is designed to have clear:left, float:left and padding. * The two buttons have their own styles, and .AnyTime-off-select-btn should * include a width. * The width of the container and the .AnyTime-off-cur-btn should not be * specified, as they are computed based on the width of the * .AnyTime-off-select-btn and the .AnyTime-time container. */ .AnyTime-pkr .AnyTime-offs { clear: left; float: left; padding-left: 0.5em; padding-top: 0.5em; text-align: center; } .AnyTime-pkr .AnyTime-off-btn, .AnyTime-pkr .AnyTime-off-cur-btn { } .AnyTime-pkr .AnyTime-off-select-btn { width: 1.5em; } /* * .AnyTime-yr-selector is an overlay (popup) for selecting a specific year. * The picker attempts to size the overlay automatically, based on * whether "era" buttons are displayed; therefore, do not set width. * AnyTime-hdr-yr-selector is its title bar. * AnyTime-body-yr-selector is its body. */ .AnyTime-pkr .AnyTime-yr-selector { } .AnyTime-pkr .AnyTime-hdr-yr-selector { } .AnyTime-pkr .AnyTime-body-yr-selector { padding: 1em; } /* * .AnyTime-yr-mil is the column of millenium-selector pseudo-buttons. * .AnyTime-yr-cent is the column of century-selector pseudo-buttons. * .AnyTime-yr-dec is the column of decade-selector pseudo-buttons. * .AnyTime-yr-yr is the column of year-selector pseudo-buttons. * A width and float:left should be specified for each. * * .AnyTime-mil-btn is a millenium-selector button. * .AnyTime-cent-btn is a century-selector button. * .AnyTime-dec-btn is a decade-selector button. * .AnyTime-yr-btn is a year-selector button. * Each button has its own class, also. */ .AnyTime-pkr .AnyTime-yr-mil, .AnyTime-pkr .AnyTime-yr-cent, .AnyTime-pkr .AnyTime-yr-dec, .AnyTime-pkr .AnyTime-yr-yr { float: left; width: 2.5em; } .AnyTime-pkr .AnyTime-mil-btn, .AnyTime-pkr .AnyTime-cent-btn, .AnyTime-pkr .AnyTime-dec-btn, .AnyTime-pkr .AnyTime-yr-btn { float: left; text-align: center; width: 2em; } .AnyTime-pkr .AnyTime-mil0-btn, .AnyTime-pkr .AnyTime-mil1-btn, /* etc */ .AnyTime-pkr .AnyTime-cent0-btn, .AnyTime-pkr .AnyTime-cent1-btn, /* etc */ .AnyTime-pkr .AnyTime-dec0-btn, .AnyTime-pkr .AnyTime-dec1-btn, /* etc */ .AnyTime-pkr .AnyTime-yr0-btn, .AnyTime-pkr .AnyTime-yr1-btn /* etc */ { } /* * .AnyTime-yr-era contains the column of era-selection pseudo-buttons. * A width and float:left should be specified. * Each era button has class .AnyTime-era-btn (with width) as well as * its own class. */ .AnyTime-pkr .AnyTime-yr-era { float: left; padding-left: 1em; width: 4.1em; } .AnyTime-pkr .AnyTime-era-btn { text-align: center; width: 3em; } .AnyTime-pkr .AnyTime-bce-btn, .AnyTime-pkr .AnyTime-ce-btn { } /* * .AnyTime-off-selector is an overlay (popup) for selecting a specific year. * The picker attempts to size the overlay automatically, based on * its contents; therefore, do not set width. * .AnyTime-hdr-off-selector is its title bar. * .AnyTime-body-off-selector is its body. * .AnyTime-off-off is the column of offset-selector pseudo-buttons. * .AnyTime-off-off-btn is an offset-selector pseudo-button. * .AnyTime-off-off-last-btn is the last offset-selector pseudo-button. */ .AnyTime-pkr .AnyTime-off-selector { } .AnyTime-pkr .AnyTime-hdr-off-selector { } .AnyTime-pkr .AnyTime-body-off-selector { margin: 0.5em; } .AnyTime-pkr .AnyTime-off-off { } .AnyTime-pkr .AnyTime-off-off-btn { clear: left; padding-left: 1em; padding-right: 1em; text-align: left; } .AnyTime-pkr .AnyTime-off-off-last-btn { } /* * .AnyTime-cur-btn is applied to every pseudo-button that represents * a currently-selected value. They should stand out from the other * buttons, using a different background-color, border, color, font, * font-style and/or font-weight. Note that color alone is not * sufficient for color-blind users to differentiate the buttons. */ .AnyTime-pkr .AnyTime-cur-btn { border: 1px solid #333334; background-color: #C0C0C1; color: #FCFCFE; font-weight: bold; } /* * .AnyTime-out-btn is applied to every pseudo-button that represents * a value that should not be selected because it would make the value. * out-of-range. Typically, this is to give it a "grayed-out" appearance. * Note that color alone is not sufficient for color-blind users to * differentiate the buttons, but since there's no harm in pressing these * buttons, it's probably no big deal. */ .AnyTime-pkr .AnyTime-out-btn { background-color: #F0F0F1; border: 1px solid #C0C0c1; } /* * .AnyTime-focus-btn is applied to the single pseudo-button that appears to * have keyboard focus. It should stand out from all other buttons, * using a different background-color, border, color, font, font-style * and/or font-weight. Note that color alone is not sufficient for * color-blind users to differentiate the button. Because most UIs * represent focus using a dashed or dotted border, this is recommended. */ .AnyTime-pkr .AnyTime-focus-btn { border: 1px dashed black; } /* * END OF FILE */
paper-mining/nips/nips2010_reference/nips-2010-Identifying_Dendritic_Processing_reference.html
makerhacker/makerhacker.github.io
<!DOCTYPE html> <html> <head> <meta charset=utf-8> <title>115 nips-2010-Identifying Dendritic Processing</title> </head> <body> <p><a title="nips" href="../nips_home.html">nips</a> <a title="nips-2010" href="../home/nips2010_home.html">nips2010</a> <a title="nips-2010-115" href="../nips2010/nips-2010-Identifying_Dendritic_Processing.html">nips2010-115</a> <a title="nips-2010-115-reference" href="#">nips2010-115-reference</a> knowledge-graph by maker-knowledge-mining</p><script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <!-- maker adsense --> <ins class="adsbygoogle" style="display:inline-block;width:728px;height:90px" data-ad-client="ca-pub-5027806277543591" data-ad-slot="4192012269"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> <h1>115 nips-2010-Identifying Dendritic Processing</h1> <br/><p>Source: <a title="nips-2010-115-pdf" href="http://papers.nips.cc/paper/4070-identifying-dendritic-processing.pdf">pdf</a></p><p>Author: Aurel A. Lazar, Yevgeniy Slutskiy</p><p>Abstract: In system identification both the input and the output of a system are available to an observer and an algorithm is sought to identify parameters of a hypothesized model of that system. Here we present a novel formal methodology for identifying dendritic processing in a neural circuit consisting of a linear dendritic processing filter in cascade with a spiking neuron model. The input to the circuit is an analog signal that belongs to the space of bandlimited functions. The output is a time sequence associated with the spike train. We derive an algorithm for identification of the dendritic processing filter and reconstruct its kernel with arbitrary precision. 1</p><br/> <h2>reference text</h2><p>[1] Maria N. Geffen, Bede M. Broome, Gilles Laurent, and Markus Meister. Neural encoding of rapidly fluctuating odors. Neuron, 61(4):570–586, 2009.</p> <p>[2] Sean J. Slee, Matthew H. Higgs, Adrienne L. Fairhall, and William J. Spain. Two-dimensional time coding in the auditory brainstem. The Journal of Neuroscience, 25(43):9978–9988, October 2005.</p> <p>[3] Nicole C. Rust, Odelia Schwartz, J. Anthony Movshon, and Eero P. Simoncelli. Spatiotemporal elements of macaque V1 receptive fields. Neuron, Vol. 46:945–956, 2005.</p> <p>[4] Daniel P. Dougherty, Geraldine A. Wright, and Alice C. Yew. Computational model of the cAMPmediated sensory response and calcium-dependent adaptation in vertebrate olfactory receptor neurons. Proceedings of the National Academy of Sciences, 102(30):0415–10420, 2005.</p> <p>[5] Yuqiao Gu, Philippe Lucas, and Jean-Pierre Rospars. Computational model of the insect pheromone transduction cascade. PLoS Computational Biology, 5(3), 2009.</p> <p>[6] Zhuoyi Song, Daniel Coca, Stephen Billings, Marten Postma, Roger C. Hardie, and Mikko Juusola. Biophysical Modeling of a Drosophila Photoreceptor. In Lecture Notes In Computer Science., volume 5863 of Proceedings of the 16th International Conference on Neural Information Processing: Part I, pages 57 – 71. Springer-Verlag, 2009.</p> <p>[7] E.J. Chichilnisky. A simple white noise analysis of neuronal light responses. Network: Computation in Neural Systems, 12:199–213, 2001.</p> <p>[8] Jonathan W. Pillow and Eero P. Simoncelli. Dimensionality reduction in neural models: An informationtheoretic generalization of spike-triggered average and covariance analysis. Journal of Vision, 6:414–428, 2006.</p> <p>[9] J J Eggermont, A M H J Aersten, and P I M Johannesma. Quantitative characterization procedure for auditory neurons based on the spectra-temporal receptive field. Hearing Research, 10, 1983.</p> <p>[10] Anmo J. Kim, Aurel A. Lazar, and Yevgeniy B. Slutskiy. System identification of Drosophila olfactory sensory neurons. Journal of Computational Neuroscience, 2010.</p> <p>[11] Sydney Cash and Rafael Yuste. Linear summation of excitatory inputs by CA1 pyramidal neurons. Neuron, 22:383–394, 1999.</p> <p>[12] Jonathan Pillow. Neural coding and the statistical modeling of neuronal responses. PhD thesis, New York University, May 2005.</p> <p>[13] Aurel A. Lazar and Laszlo T. T´ th. Perfect recovery and sensitivity analysis of time encoded bandlimited o signals. IEEE Transactions on Circuits and Systems-I: Regular Papers, 51(10):2060–2073, October 2004.</p> <p>[14] Aurel A. Lazar and Eftychios A. Pnevmatikakis. Faithful representation of stimuli with a population of integrate-and-fire neurons. Neural Computation, 20(11):2715–2744, November 2008.</p> <p>[15] Justin Keat, Pamela Reinagel, R. Clay Reid, and Markus Meister. Predicting every spike: A model for the responses of visual neurons. Neuron, 30:803–817, June 2001.</p> <p>[16] Michael Reed and Barry Simon. Methods of Modern Mathematical Physics, Vol. 1, Functional Analysis. Academic Press, 1980.</p> <p>[17] Alain Berlinet and Christine Thomas-Agnan. Reproducing Kernel Hilbert Spaces in Probability and Statistics. Kluwer Academic Publishers, 2004.</p> <p>[18] Ole Christensen. An Introduction to Frames and Riesz Bases. Applied and Numerical Harmonic Analysis. Birkh¨ user, 2003. a</p> <p>[19] Edward H. Adelson and James R. Bergen. Spatiotemporal energy models for the perception of motion. Journal of Optical Society of America, 2(2), February 1985.</p> <p>[20] Michael C.-K. Wu, Stephen V. David, and Jack L. Gallant. Complete functional characterization of sensory neurons by system identification. Annual Reviews of Neuroscience, 29:477–505, 2006. 9</p> <br/> <br/><br/><br/> <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-48522588-1', 'makerhacker.github.io'); ga('send', 'pageview'); </script> </body> </html>
Interface/Resources/Stylesheets/Animations.css
AyuuV/Sira
@charset 'UTF-8'; body > header > form > button { transition: border-top 1s; } body > header > form > button:hover { transition: border-top 0.2s; } body > header > form > progress[value], body > header > form > progress:not([value]) { transition: opacity 0.2s; } body > header > form > progress[value='1'] { transition: opacity 1s; } body > header > nav > ul > li > a { transition: border-top 1s; } body > header > nav > ul > li > a.activeLink, body > header > nav > ul > li > a:hover { transition: border-top 0.2s; } body > main > div { transition: opacity 1s, pointer-events 1s, z-index 1s; } body > main > div > nav > ul > li > a { transition: border-top 1s; } body > main > div > nav > ul > li > a.activeLink, body > main > div > nav > ul > li > a:hover { transition: border-top 0.2s; } body > main > div > div > section { transition: opacity 1s, pointer-events 1s, z-index 1s; }
test/fixtures/style-simple.css
KonstantinKai/css-to-stylus-converter
@charset 'UTF-8'; @import "common.css" screen, projection; /* Default namespace */ @namespace url(XML-namespace-URL); @namespace "XML-namespace-URL"; /* Prefixed namespace */ @namespace prefix url(XML-namespace-URL); @namespace prefix "XML-namespace-URL"; @font-face { font-family: Open_Sans_Bold; src: url("../fonts/opensans-bold-webfont.woff") format("woff"), url("../fonts/opensans-bold-webfont.ttf") format("truetype"), url("../fonts/opensans-bold-webfont.svg#Open_Sans_Bold") format("svg"); font-weight: 400; font-style: 'normal'; } @font-face { font-family: Open_Sans_Light; src: url("../fonts/opensans-light-webfont.woff") format("woff"), url("../fonts/opensans-light-webfont.ttf") format("truetype"), url("../fonts/opensans-light-webfont.svg#Open_Sans_Light") format("svg"); font-weight: 400; font-style: 'normal'; } .class-1, .class-4, #id-1 { display: block; color: #ffffff } .class-1.class-2 { color: white; } .class-2 .class-3 { font-size: 12px; padding: 20px; } .class-2 { margin: auto; color: #fff } .class-1 { position: relative; } @media (max-width:400px) { #login_form .common-input.icon + .error-message { font-size: 12px; padding: 20px; } /*#login_form { margin: auto }*/ } @media only screen and (max-width:400px) { #login_form .common-input.icon + .error-message { font-size: 12px; } } @-moz-keyframes play { from { background-position: 0 0px; } to { background-position: 0 -560px } } @-ms-keyframes play { from { background-position: 0 0px; } to { background-position: 0 -560px } } @-o-keyframes play { from { background-position: 0 0px; } to { background-position: 0 -560px } } @keyframes play { from { background-position: 0 0px; } to { background-position: 0 -560px } } @keyframes pulse { 0% { opacity: 0; /*padding: 20px;*/ } 20% { opacity: 0.2; } 40% { opacity: 0.4; } 60% { opacity: 0.6; } 80% { opacity: 0.8; padding: 0; } 100% { opacity: 1; } }
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/c814039fcd7128a7e8f6324fa63ae28497575c2d381bac145aa20204f286737f.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="./c07a8bb1d417cbc460713e4c008ff420a34d98c94340f09a734a6491d163603e.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>
clean/Linux-x86_64-4.10.0-2.0.6/released/8.11.1/metacoq-translations/1.0~alpha2+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>metacoq-translations: 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.11.1 / metacoq-translations - 1.0~alpha2+8.10</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> metacoq-translations <small> 1.0~alpha2+8.10 <span class="label label-info">Not compatible</span> </small> </h1> <p><em><script>document.write(moment("2020-08-20 03:22:08 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-08-20 03:22:08 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-threads base base-unix base conf-findutils 1 Virtual package relying on findutils conf-m4 1 Virtual package relying on m4 coq 8.11.1 Formal proof management system num 1.3 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.10.0 The OCaml compiler (virtual package) ocaml-base-compiler 4.10.0 Official release 4.10.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;[email protected]&quot; homepage: &quot;https://metacoq.github.io/metacoq&quot; dev-repo: &quot;git+https://github.com/MetaCoq/metacoq.git#coq-8.10&quot; bug-reports: &quot;https://github.com/MetaCoq/metacoq/issues&quot; authors: [&quot;Simon Boulier &lt;[email protected]&gt;&quot; &quot;Cyril Cohen &lt;[email protected]&gt;&quot; &quot;Matthieu Sozeau &lt;[email protected]&gt;&quot; &quot;Nicolas Tabareau &lt;[email protected]&gt;&quot; &quot;Théo Winterhalter &lt;[email protected]&gt;&quot; ] license: &quot;MIT&quot; build: [ [&quot;sh&quot; &quot;./configure.sh&quot;] [make &quot;-j%{jobs}%&quot; &quot;-C&quot; &quot;translations&quot;] ] install: [ [make &quot;-C&quot; &quot;translations&quot; &quot;install&quot;] ] depends: [ &quot;ocaml&quot; {&gt; &quot;4.02.3&quot;} &quot;coq&quot; {&gt;= &quot;8.10&quot; &amp; &lt; &quot;8.11~&quot;} &quot;coq-metacoq-template&quot; {= version} &quot;coq-metacoq-checker&quot; {= version} ] synopsis: &quot;Translations built on top of MetaCoq&quot; description: &quot;&quot;&quot; MetaCoq is a meta-programming framework for Coq. The Translations modules provides implementation of standard translations from type theory to type theory, e.g. parametricity and the `cross-bool` translation that invalidates functional extensionality. &quot;&quot;&quot; # url { # src: &quot;https://github.com/MetaCoq/metacoq/archive/v2.1-beta3.tar.gz&quot; # checksum: &quot;md5=e81b8ecabef788a10337a39b095d54f3&quot; # } url { src: &quot;https://github.com/MetaCoq/metacoq/archive/v1.0-alpha2-8.10.tar.gz&quot; checksum: &quot;sha256=94156cb9397b44915c9217a435a812cabc9651684cd229d5069b34332d0792a2&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-metacoq-translations.1.0~alpha2+8.10 coq.8.11.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.11.1). The following dependencies couldn&#39;t be met: - coq-metacoq-translations -&gt; coq &lt; 8.11~ -&gt; ocaml &lt; 4.10 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-metacoq-translations.1.0~alpha2+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.09.1-2.0.6/released/8.7.1/recursive-definition/8.6.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>recursive-definition: 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.7.1 / recursive-definition - 8.6.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> recursive-definition <small> 8.6.0 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2022-01-28 23:20:48 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-28 23:20:48 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 2 Virtual package relying on perl coq 8.7.1 Formal proof management system num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.09.1 The OCaml compiler (virtual package) ocaml-base-compiler 4.09.1 Official release 4.09.1 ocaml-config 1 OCaml Switch Configuration ocamlfind 1.9.2 A library manager for OCaml # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;[email protected]&quot; homepage: &quot;https://github.com/coq-contribs/recursive-definition&quot; license: &quot;LGPL 2.1&quot; build: [make &quot;-j%{jobs}%&quot;] install: [make &quot;install&quot;] remove: [&quot;rm&quot; &quot;-R&quot; &quot;%{lib}%/coq/user-contrib/RecursiveDefinition&quot;] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.6&quot; &amp; &lt; &quot;8.7~&quot;} ] tags: [ &quot;keyword: recursive functions&quot; &quot;keyword: well-foundedness&quot; &quot;category: Miscellaneous/Coq Extensions&quot; &quot;date: 2002&quot; ] authors: [ &quot;Antonia Balaa&quot; &quot;Yves Bertot&quot; ] bug-reports: &quot;https://github.com/coq-contribs/recursive-definition/issues&quot; dev-repo: &quot;git+https://github.com/coq-contribs/recursive-definition.git&quot; synopsis: &quot;ML-like recursive definitions&quot; description: &quot;&quot;&quot; This module provides a facility to define recursive functions in an ML-like style, giving a fixpoint equation, a variant and a well-founded relation. A pure function is then generated, together with a theorem giving the fixpoint equation. THIS IS MAINLY A TEST CONTRIB, BEFORE INTEGRATION IN COQ.&quot;&quot;&quot; flags: light-uninstall url { src: &quot;https://github.com/coq-contribs/recursive-definition/archive/v8.6.0.tar.gz&quot; checksum: &quot;md5=d4df2f356bf846f882d8b2dadf38c3a9&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-recursive-definition.8.6.0 coq.8.7.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.7.1). The following dependencies couldn&#39;t be met: - coq-recursive-definition -&gt; coq &lt; 8.7~ -&gt; ocaml &lt; 4.06.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-recursive-definition.8.6.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>
public/Windows 10 x64 (19041.572)/_SYNCH_COUNTERS.html
epikcraw/ggool
<html><body> <h4>Windows 10 x64 (19041.572)</h4><br> <h2>_SYNCH_COUNTERS</h2> <font face="arial"> +0x000 SpinLockAcquireCount : Uint4B<br> +0x004 SpinLockContentionCount : Uint4B<br> +0x008 SpinLockSpinCount : Uint4B<br> +0x00c IpiSendRequestBroadcastCount : Uint4B<br> +0x010 IpiSendRequestRoutineCount : Uint4B<br> +0x014 IpiSendSoftwareInterruptCount : Uint4B<br> +0x018 ExInitializeResourceCount : Uint4B<br> +0x01c ExReInitializeResourceCount : Uint4B<br> +0x020 ExDeleteResourceCount : Uint4B<br> +0x024 ExecutiveResourceAcquiresCount : Uint4B<br> +0x028 ExecutiveResourceContentionsCount : Uint4B<br> +0x02c ExecutiveResourceReleaseExclusiveCount : Uint4B<br> +0x030 ExecutiveResourceReleaseSharedCount : Uint4B<br> +0x034 ExecutiveResourceConvertsCount : Uint4B<br> +0x038 ExAcqResExclusiveAttempts : Uint4B<br> +0x03c ExAcqResExclusiveAcquiresExclusive : Uint4B<br> +0x040 ExAcqResExclusiveAcquiresExclusiveRecursive : Uint4B<br> +0x044 ExAcqResExclusiveWaits : Uint4B<br> +0x048 ExAcqResExclusiveNotAcquires : Uint4B<br> +0x04c ExAcqResSharedAttempts : Uint4B<br> +0x050 ExAcqResSharedAcquiresExclusive : Uint4B<br> +0x054 ExAcqResSharedAcquiresShared : Uint4B<br> +0x058 ExAcqResSharedAcquiresSharedRecursive : Uint4B<br> +0x05c ExAcqResSharedWaits : Uint4B<br> +0x060 ExAcqResSharedNotAcquires : Uint4B<br> +0x064 ExAcqResSharedStarveExclusiveAttempts : Uint4B<br> +0x068 ExAcqResSharedStarveExclusiveAcquiresExclusive : Uint4B<br> +0x06c ExAcqResSharedStarveExclusiveAcquiresShared : Uint4B<br> +0x070 ExAcqResSharedStarveExclusiveAcquiresSharedRecursive : Uint4B<br> +0x074 ExAcqResSharedStarveExclusiveWaits : Uint4B<br> +0x078 ExAcqResSharedStarveExclusiveNotAcquires : Uint4B<br> +0x07c ExAcqResSharedWaitForExclusiveAttempts : Uint4B<br> +0x080 ExAcqResSharedWaitForExclusiveAcquiresExclusive : Uint4B<br> +0x084 ExAcqResSharedWaitForExclusiveAcquiresShared : Uint4B<br> +0x088 ExAcqResSharedWaitForExclusiveAcquiresSharedRecursive : Uint4B<br> +0x08c ExAcqResSharedWaitForExclusiveWaits : Uint4B<br> +0x090 ExAcqResSharedWaitForExclusiveNotAcquires : Uint4B<br> +0x094 ExSetResOwnerPointerExclusive : Uint4B<br> +0x098 ExSetResOwnerPointerSharedNew : Uint4B<br> +0x09c ExSetResOwnerPointerSharedOld : Uint4B<br> +0x0a0 ExTryToAcqExclusiveAttempts : Uint4B<br> +0x0a4 ExTryToAcqExclusiveAcquires : Uint4B<br> +0x0a8 ExBoostExclusiveOwner : Uint4B<br> +0x0ac ExBoostSharedOwners : Uint4B<br> +0x0b0 ExEtwSynchTrackingNotificationsCount : Uint4B<br> +0x0b4 ExEtwSynchTrackingNotificationsAccountedCount : Uint4B<br> </font></body></html>
doc/api/classes/ActiveRecord/AttributeMethods/AttributeMethodCache.html
kristoferrobin/p2p
<?xml version="1.0" encoding="utf-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" xml:lang="en" lang="en"> <head> <title>ActiveRecord::AttributeMethods::AttributeMethodCache</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <link rel="stylesheet" href="../../../css/reset.css" type="text/css" media="screen" /> <link rel="stylesheet" href="../../../css/main.css" type="text/css" media="screen" /> <link rel="stylesheet" href="../../../css/github.css" type="text/css" media="screen" /> <script src="../../../js/jquery-1.3.2.min.js" type="text/javascript" charset="utf-8"></script> <script src="../../../js/jquery-effect.js" type="text/javascript" charset="utf-8"></script> <script src="../../../js/main.js" type="text/javascript" charset="utf-8"></script> <script src="../../../js/highlight.pack.js" type="text/javascript" charset="utf-8"></script> </head> <body> <div class="banner"> <span>Ruby on Rails 4.1.8</span><br /> <h1> <span class="type">Class</span> ActiveRecord::AttributeMethods::AttributeMethodCache <span class="parent">&lt; <a href="../../Object.html">Object</a> </span> </h1> <ul class="files"> <li><a href="../../../files/__/_rvm/gems/ruby-2_2_0/gems/activerecord-4_1_8/lib/active_record/attribute_methods_rb.html">/home/kristof/.rvm/gems/ruby-2.2.0/gems/activerecord-4.1.8/lib/active_record/attribute_methods.rb</a></li> </ul> </div> <div id="bodyContent"> <div id="content"> <!-- Method ref --> <div class="sectiontitle">Methods</div> <dl class="methods"> <dt>#</dt> <dd> <ul> <li> <a href="#method-i-5B-5D">[]</a> </li> </ul> </dd> <dt>N</dt> <dd> <ul> <li> <a href="#method-c-new">new</a> </li> </ul> </dd> </dl> <!-- Methods --> <div class="sectiontitle">Class Public methods</div> <div class="method"> <div class="title method-title" id="method-c-new"> <b>new</b>() <a href="../../../classes/ActiveRecord/AttributeMethods/AttributeMethodCache.html#method-c-new" name="method-c-new" class="permalink">Link</a> </div> <div class="description"> </div> <div class="sourcecode"> <p class="source-link"> Source: <a href="javascript:toggleSource('method-c-new_source')" id="l_method-c-new_source">show</a> </p> <div id="method-c-new_source" class="dyn-source"> <pre><span class="ruby-comment"># File ../.rvm/gems/ruby-2.2.0/gems/activerecord-4.1.8/lib/active_record/attribute_methods.rb, line 35</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword ruby-title">initialize</span> <span class="ruby-ivar">@module</span> = <span class="ruby-constant">Module</span>.<span class="ruby-identifier">new</span> <span class="ruby-ivar">@method_cache</span> = <span class="ruby-constant">ThreadSafe</span><span class="ruby-operator">::</span><span class="ruby-constant">Cache</span>.<span class="ruby-identifier">new</span> <span class="ruby-keyword">end</span></pre> </div> </div> </div> <div class="sectiontitle">Instance Public methods</div> <div class="method"> <div class="title method-title" id="method-i-5B-5D"> <b>[]</b>(name) <a href="../../../classes/ActiveRecord/AttributeMethods/AttributeMethodCache.html#method-i-5B-5D" name="method-i-5B-5D" class="permalink">Link</a> </div> <div class="description"> </div> <div class="sourcecode"> <p class="source-link"> Source: <a href="javascript:toggleSource('method-i-5B-5D_source')" id="l_method-i-5B-5D_source">show</a> </p> <div id="method-i-5B-5D_source" class="dyn-source"> <pre><span class="ruby-comment"># File ../.rvm/gems/ruby-2.2.0/gems/activerecord-4.1.8/lib/active_record/attribute_methods.rb, line 40</span> <span class="ruby-keyword">def</span> <span class="ruby-operator">[]</span>(<span class="ruby-keyword ruby-title">name</span>) <span class="ruby-ivar">@method_cache</span>.<span class="ruby-identifier">compute_if_absent</span>(<span class="ruby-identifier">name</span>) <span class="ruby-keyword">do</span> <span class="ruby-identifier">safe_name</span> = <span class="ruby-identifier">name</span>.<span class="ruby-identifier">unpack</span>(<span class="ruby-string">&#39;h*&#39;</span>).<span class="ruby-identifier">first</span> <span class="ruby-identifier">temp_method</span> = <span class="ruby-node">&quot;__temp__#{safe_name}&quot;</span> <span class="ruby-constant">ActiveRecord</span><span class="ruby-operator">::</span><span class="ruby-constant">AttributeMethods</span><span class="ruby-operator">::</span><span class="ruby-constant">AttrNames</span>.<span class="ruby-identifier">set_name_cache</span> <span class="ruby-identifier">safe_name</span>, <span class="ruby-identifier">name</span> <span class="ruby-ivar">@module</span>.<span class="ruby-identifier">module_eval</span> <span class="ruby-identifier">method_body</span>(<span class="ruby-identifier">temp_method</span>, <span class="ruby-identifier">safe_name</span>), <span class="ruby-keyword">__FILE__</span>, <span class="ruby-keyword">__LINE__</span> <span class="ruby-ivar">@module</span>.<span class="ruby-identifier">instance_method</span> <span class="ruby-identifier">temp_method</span> <span class="ruby-keyword">end</span> <span class="ruby-keyword">end</span></pre> </div> </div> </div> </div> </div> </body> </html>
data science/machine_learning_for_the_web/chapter_4/movie/28522.html
xianjunzhengbackup/code
<HTML><HEAD> <TITLE>Review for W.I.S.O.R. (2001)</TITLE> <LINK REL="STYLESHEET" TYPE="text/css" HREF="/ramr.css"> </HEAD> <BODY BGCOLOR="#FFFFFF" TEXT="#000000"> <H1 ALIGN="CENTER" CLASS="title"><A HREF="/Title?0288880">W.I.S.O.R. (2001)</A></H1><H3 ALIGN=CENTER>reviewed by<BR><A HREF="/ReviewsBy?Rachel+Gordon">Rachel Gordon</A></H3><HR WIDTH="40%" SIZE="4"> <PRE>W.I.S.O.R. A documentary review by Rachel Gordon Copyright 2001 filmcritic.com</PRE> <P>What a tough sell this film must have been: Documenting the development of an engineering device that would automate the fixing of broken steam piping underground at the flip of a switch. Set against the backdrop of other advances in technology, with a focus on what robotics has done for humans so far, W.I.S.O.R. may be smart, but does anyone care?</P> <P>Of course, we're supposed to care. After all, steam pipes burst all the time, flooding streets, exploding buildings, killing innocent people, and causing nasty traffic jams. These pipes date back to the early 20th century and it's time they got updated to the rest of civilization.</P> <P>So ConEdison (purveyor of gas and electricity in New York City) set Honeybee Robotics to the task of creating a device that would weld ruptures in underground systems with help of a human interface. It's no small feat, as it's never been done before, so there are no predecessors to work from, and even the schematics of the underground systems are questionable. It's a seemingly impossible task, even for a large corporation used to building robots for IBM. But it will happen, and the end result will be W.I.S.O.R., or welding and inspection steam operations robot.</P> <P>Michel Negroponte, who came to understandable recognition after his successful debut with Jupiter's Wife, tries to make this subject interesting. It starts out with gusto, a short energetic cartoon of what W.I.S.O.R. will eventually do, brief shots of the men making it possible, and some horror scene news footage that prompted ConEdison to take action. But not halfway through the film, it is difficult to stifle a yawn. The engineers bounce scientific theories back and forth, prove themselves frustratingly wrong, and get back on the horse time and again. To make matters even more annoying, the robot they are making is given a voice that mimics them.</P> <P>The archival footage that is interspersed to break up the development of the machine has some interesting historical perspective. However, the voice over is a condescending one, as if it were speaking to mere 5-year olds (who of course would never sit through a film like this).</P> <P>Visually speaking, it doesn't matter which section of the "robo-welder" they are working on, though each piece gets an exhausting length of time. Again, Negroponte tries to make up for this in shifty camera work mixed with slow and fast motion, but all this creates is an eyesore. For some reason, the screen also changes from black and white to color at random.</P> <P>The redeeming values are few and far between. It's respectable that Negroponte would try to teach the masses about such a subject and that the subjects aren't portrayed as perfect geniuses of noble personality. The structure of the film is pleasantly tight; none of the scenes are particularly over-extended. But while it is human tendency to turn to technology to fix things, and some of these advances are fascinating, W.I.S.O.R. just doesn't make the grade.</P> <PRE>RATING: *1/2</PRE> <PRE>|------------------------------| \ ***** Perfection \ \ **** Good, memorable film \ \ *** Average, hits and misses \ \ ** Sub-par on many levels \ \ * Unquestionably awful \ |------------------------------|</PRE> <PRE>MPAA Rating: NR</PRE> <PRE>Director: Michel Negroponte Producer: Michel Negroponte, Jane Weiner Writer: Gabriel Morgan</PRE> <P>--- <A HREF="http://www.amazon.com/exec/obidos/redirect?tag=filmcriticcom&path=subst/video/sellers/amazon-top-100-dvd.html">http://www.amazon.com/exec/obidos/redirect?tag=filmcriticcom&path=subst/video/sellers/amazon-top-100-dvd.html</A> Movie Fiends: Check out Amazon.com's Top 100 Hot DVDs!</P> <P>Visit filmcritic.com on the Web at <A HREF="http://www.filmcritic.com">http://www.filmcritic.com</A></P> <HR><P CLASS=flush><SMALL>The review above was posted to the <A HREF="news:rec.arts.movies.reviews">rec.arts.movies.reviews</A> newsgroup (<A HREF="news:de.rec.film.kritiken">de.rec.film.kritiken</A> for German reviews).<BR> The Internet Movie Database accepts no responsibility for the contents of the review and has no editorial control. Unless stated otherwise, the copyright belongs to the author.<BR> Please direct comments/criticisms of the review to relevant newsgroups.<BR> Broken URLs inthe reviews are the responsibility of the author.<BR> The formatting of the review is likely to differ from the original due to ASCII to HTML conversion. </SMALL></P> <P ALIGN=CENTER>Related links: <A HREF="/Reviews/">index of all rec.arts.movies.reviews reviews</A></P> </P></BODY></HTML>
docs/apidocs/com/namics/commons/random/generator/basic/class-use/LongGenerator.html
namics/java-random
<!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_292) on Thu Jun 03 06:35:32 UTC 2021 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class com.namics.commons.random.generator.basic.LongGenerator (java-random 1.2.3 API)</title> <meta name="date" content="2021-06-03"> <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="Uses of Class com.namics.commons.random.generator.basic.LongGenerator (java-random 1.2.3 API)"; } } catch(err) { } //--> </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><a href="../../../../../../../com/namics/commons/random/generator/basic/LongGenerator.html" title="class in com.namics.commons.random.generator.basic">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?com/namics/commons/random/generator/basic/class-use/LongGenerator.html" target="_top">Frames</a></li> <li><a href="LongGenerator.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> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class com.namics.commons.random.generator.basic.LongGenerator" class="title">Uses of Class<br>com.namics.commons.random.generator.basic.LongGenerator</h2> </div> <div class="classUseContainer">No usage of com.namics.commons.random.generator.basic.LongGenerator</div> <!-- ======= 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><a href="../../../../../../../com/namics/commons/random/generator/basic/LongGenerator.html" title="class in com.namics.commons.random.generator.basic">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?com/namics/commons/random/generator/basic/class-use/LongGenerator.html" target="_top">Frames</a></li> <li><a href="LongGenerator.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> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2021. All rights reserved.</small></p> </body> </html>
895c364/html/classv8_1_1_context_1_1_scope.html
v8-dox/v8-dox.github.io
<!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.9.1"/> <title>V8 API Reference Guide for node.js v0.8.28: v8::Context::Scope Class 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="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" /> </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 style="padding-left: 0.5em;"> <div id="projectname">V8 API Reference Guide for node.js v0.8.28 </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.9.1 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <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 class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> <li><a href="examples.html"><span>Examples</span></a></li> <li> <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> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <!-- 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 id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="namespacev8.html">v8</a></li><li class="navelem"><a class="el" href="classv8_1_1_context.html">Context</a></li><li class="navelem"><a class="el" href="classv8_1_1_context_1_1_scope.html">Scope</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="summary"> <a href="#pub-methods">Public Member Functions</a> &#124; <a href="classv8_1_1_context_1_1_scope-members.html">List of all members</a> </div> <div class="headertitle"> <div class="title">v8::Context::Scope Class Reference</div> </div> </div><!--header--> <div class="contents"> <p><code>#include &lt;<a class="el" href="v8_8h_source.html">v8.h</a>&gt;</code></p> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> Public Member Functions</h2></td></tr> <tr class="memitem:a3c7293db478a02e0cfb9638de8136119"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a3c7293db478a02e0cfb9638de8136119"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>Scope</b> (<a class="el" href="classv8_1_1_handle.html">Handle</a>&lt; <a class="el" href="classv8_1_1_context.html">Context</a> &gt; context)</td></tr> <tr class="separator:a3c7293db478a02e0cfb9638de8136119"><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>Stack-allocated class which sets the execution context for all operations executed within a local scope. </p> </div><hr/>The documentation for this class was generated from the following file:<ul> <li>deps/v8/include/<a class="el" href="v8_8h_source.html">v8.h</a></li> </ul> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Tue Aug 11 2015 23:48:33 for V8 API Reference Guide for node.js v0.8.28 by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.9.1 </small></address> </body> </html>