code
stringlengths
2
1.05M
repo_name
stringlengths
5
101
path
stringlengths
4
991
language
stringclasses
3 values
license
stringclasses
5 values
size
int64
2
1.05M
<!DOCTYPE html> <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]--> <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]--> <!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]--> <!--[if gt IE 8]><!--> <html lang="en"> <!--<![endif]--> <head> <meta charset="utf-8" /> <title>{{ page.ttl }} - {{ page.conf_data }}</title> <!-- Responsive and mobile friendly stuff --> <meta name="HandheldFriendly" content="True"> <meta name="MobileOptimized" content="320"> <meta name="viewport" content="width=device-width, target-densitydpi=160dpi, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0"> <link href='http://fonts.googleapis.com/css?family=Exo:200,900,700,400|Pacifico' rel='stylesheet' type='text/css'> <!-- Included CSS Files --> <link rel="stylesheet" href="/css/reset.css"> <link rel="stylesheet" href="/css/grid_12_percent.css"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/css/tooltip.css"> <!--[if lt IE 9]> <link rel="stylesheet" href="css/ie7_8.css"> <![endif]--> <!-- IE Fix for HTML5 Tags --> <!--[if lt IE 9]> <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> </head> <body onload="initialize_map()"> <div id="wrapper"> <div id="site_wrapper"> <div id="main_navigation"> <a name="top"></a> <nav id="site_nav"> <ul class="container"> <li><a href="#top" title="{{ page.title }}">{{ page.title }}</a></li> <li><a href="#info" title="">La conferenza</a></li> {% if page.cfp %} <li><a href="#cfp" title="">Call for paper</a></li> {% endif %} {% if page.tickets %} <li><a href="#tickets" title="">Registrati</a></li> {% endif %} {% if page.speakers %} <li><a href="#programma" title="">Programma</a></li> {% endif %} <li><a href="#location" title="">La location</a></li> <li><a href="#sponsor" title="">Gli sponsor</a></li> </ul> </nav> </div> <header id="site_header" class="container"> <div class="grusp_header"> <p class="organizer"><a id="logo_grusp" class="organizer_logo" href="http://www.grusp.it/"><img src="/img/logo_grusp.png" alt="GrUSP" width="140" height="67" /><span>Associazione Gruppo Utenti Sviluppatori PHP Italiani</span></a> <em class="plus"><img src="/img/bg_plus.png" alt="bg_plus" width="12" height="12" /></em> <a id="logo_grusp_to" class="organizer_logo" href="http://torino.grusp.org/"><img src="/img/pugs/pug_to_2.png" alt="pug torino" /><span>PHP User Group Torino </span></a></p> <h4>presentano</h4> </div> <div class="event_title"> <div class="event_logo column_3"> <img src="/img/confs/zfday/zf2_logo.png" alt="Zend Framwork 2" /> </div> <div class="event_name column_8"> <h1 id="fittext1">{{ page.ttl }}</h1> <h2 id="fittext2">{{ page.conf_data }}</h2> </div> <div class="clear"></div> </div> <div class="share"> <h4>Share</h4> <div class="addthis_wrapper"> <!-- AddThis Button BEGIN --> <div class="addthis_toolbox addthis_default_style "> <a class="addthis_button_facebook_like" fb:like:layout="button_count"></a> <a class="addthis_button_tweet"></a> <a class="addthis_counter addthis_pill_style"></a> </div> <script type="text/javascript" src="http://s7.addthis.com/js/300/addthis_widget.js#pubid=xa-50ac9a3237717dfe"></script> <!-- AddThis Button END --> </div> </div> <div class="separator"></div> </header> {{ content }} <footer id="site_footer"> <div class="container group"> <div class="ftr_info"> &copy; 2012-2014 Grusp. Tutti i diritti riservati. <ul> <li><a href="http://www.grusp.org" title="">Cos'&egrave; il Grusp?</a></li> <!--li><a href="#" title="">Privacy policy</a></li--> <li><a href="mailto:info@grusp.org" title="">Contattaci</a></li> </ul> </div> <a id="back_top" href="#top" title="">Torna su</a> </div> </footer> </div> <!-- Closes #wrapper --> </div><!-- Closes #site_wrapper --> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script> <script src="js/jquery.fittext.js"></script> <script src="js/jquery.tooltip.js"></script> <script type="text/javascript"> $("#fittext1").fitText(1.0); $("#fittext2").fitText(1.6); //$("#fittext3").fitText(1.1, { minFontSize: 50, maxFontSize: '75px' }); </script> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-3559597-14']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> </body> </html>
GrUSP/2016.cssday.it
_layouts/zfday.html
HTML
mit
5,342
testindex
nkhuyu/finatra
http/src/test/webapp/testindex.html
HTML
apache-2.0
9
<!DOCTYPE html> <!-- Frame that can be used to test drop of a drag-and-drop operation. The drop target (a <div>) fills the frame from (0,0) to (199,199). --> <head> <meta charset="utf-8"> <style> div { position: absolute; top: 0px; left: 0px; width: 160px; height: 160px; border: 0px; margin: 0px; padding: 20px; text-align: center; vertical-align: middle; } </style> <script src="event_monitoring.js"></script> <script> function dragover_handler(ev) { window.reportDragAndDropEvent(ev); // This communicates that we support drag & drop. // Without this, the "drop" event handler below would not fire. ev.preventDefault(); } function drop_handler(ev) { window.reportDragAndDropEvent(ev); // This communicates that we have handled the drop // (i.e. that there is no other, default action to take). ev.preventDefault(); } </script> </head> <body> <div ondragover="dragover_handler(event);" ondrop="drop_handler(event);" ondragenter="window.reportDragAndDropEvent(event);" ><p>Use this frame as a target of a drag-n-drop</p> </div> </body>
ric2b/Vivaldi-browser
chromium/chrome/test/data/drag_and_drop/drop_target.html
HTML
bsd-3-clause
1,211
<div id="dialog-{{ request.GET.dialog }}"> <form id="form-{{ request.GET.dialog }}" method='POST' enctype="application/x-www-form-urlencoded" item-type="source"> <table class="form">{{ source_add.as_table }}</table> </form> </div>
ckane/crits
crits/core/templates/dialogs/source-add.html
HTML
mit
252
<!DOCTYPE html> <!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7"><![endif]--> <!--[if IE 7]><html class="no-js lt-ie9 lt-ie8"><![endif]--> <!--[if IE 8]><html class="no-js lt-ie9"><![endif]--> <!--[if gt IE 8]><!--><html class="no-js"><!--<![endif]--> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>Selectize.js Demo</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1"> <link rel="stylesheet" href="css/normalize.css"> <link rel="stylesheet" href="css/stylesheet.css"> <!--[if IE 8]><script src="js/es5.js"></script><![endif]--> <script src="js/jquery.min.js"></script> <script src="../dist/js/standalone/selectize.js"></script> <script src="js/index.js"></script> <style type="text/css"> .demo-animals .scientific { font-weight: normal; opacity: 0.3; margin: 0 0 0 2px; } .demo-animals .scientific::before { content: '('; } .demo-animals .scientific::after { content: ')'; } </style> </head> <body> <div id="wrapper"> <h1>Selectize.js</h1> <div class="demo"> <h2>Optgroups (basic)</h2> <div class="control-group"> <label for="select-gear">Gear:</label> <select id="select-gear" class="demo-default" multiple placeholder="Select gear..."> <option value="">Select gear...</option> <optgroup label="Climbing"> <option value="pitons">Pitons</option> <option value="cams">Cams</option> <option value="nuts">Nuts</option> <option value="bolts">Bolts</option> <option value="stoppers">Stoppers</option> <option value="sling">Sling</option> </optgroup> <optgroup label="Skiing"> <option value="skis">Skis</option> <option value="skins">Skins</option> <option value="poles">Poles</option> </optgroup> </select> </div> <script> $('#select-gear').selectize({ sortField: 'text' }); </script> </div> <div class="demo"> <h2>Optgroups (disabled)</h2> <div class="control-group"> <label for="select-gear-disabled">Gear:</label> <select id="select-gear-disabled" class="demo-default" multiple placeholder="Select gear..."> <option value="">Select gear...</option> <optgroup label="Climbing"> <option value="pitons">Pitons</option> <option value="cams">Cams</option> <option value="nuts">Nuts</option> <option value="bolts">Bolts</option> <option value="stoppers">Stoppers</option> <option value="sling">Sling</option> </optgroup> <optgroup label="Skiing" disabled> <option value="skis">Skis</option> <option value="skins">Skins</option> <option value="poles">Poles</option> </optgroup> </select> </div> <script> $('#select-gear-disabled').selectize({ sortField: 'text' }); </script> </div> <div class="demo"> <h2>Optgroups (repeated options)</h2> <div class="control-group"> <label for="select-repeated-options">Options:</label> <select id="select-repeated-options" class="demo-default" multiple> <option value="">Select...</option> <optgroup label="Group 1"> <option value="a">Item A</option> <option value="b">Item B</option> </optgroup> <optgroup label="Group 2"> <option value="a">Item A</option> <option value="b">Item B</option> </optgroup> </select> </div> <script> $('#select-repeated-options').selectize({ sortField: 'text' }); </script> </div> <div class="demo"> <h2>Optgroups (programmatic)</h2> <div class="control-group"> <label for="select-animal">Animal:</label> <select id="select-animal" class="demo-animals" placeholder="Select animal..."></select> </div> <script> $('#select-animal').selectize({ options: [ {class: 'mammal', value: "dog", name: "Dog" }, {class: 'mammal', value: "cat", name: "Cat" }, {class: 'mammal', value: "horse", name: "Horse" }, {class: 'mammal', value: "kangaroo", name: "Kangaroo" }, {class: 'bird', value: 'duck', name: 'Duck'}, {class: 'bird', value: 'chicken', name: 'Chicken'}, {class: 'bird', value: 'ostrich', name: 'Ostrich'}, {class: 'bird', value: 'seagull', name: 'Seagull'}, {class: 'reptile', value: 'snake', name: 'Snake'}, {class: 'reptile', value: 'lizard', name: 'Lizard'}, {class: 'reptile', value: 'alligator', name: 'Alligator'}, {class: 'reptile', value: 'turtle', name: 'Turtle'} ], optgroups: [ {value: 'mammal', label: 'Mammal', label_scientific: 'Mammalia'}, {value: 'bird', label: 'Bird', label_scientific: 'Aves'}, {value: 'reptile', label: 'Reptile', label_scientific: 'Reptilia'} ], optgroupField: 'class', labelField: 'name', searchField: ['name'], render: { optgroup_header: function(data, escape) { return '<div class="optgroup-header">' + escape(data.label) + ' <span class="scientific">' + escape(data.label_scientific) + '</span></div>'; } } }); </script> </div> <div class="demo"> <h2>Plugin: "optgroup_columns"</h2> <div class="control-group" id="select-car-group"> <input type="text" id="select-car" placeholder="Select cars..."> </div> <script> $("#select-car").selectize({ options: [ {id: 'avenger', make: 'dodge', model: 'Avenger'}, {id: 'caliber', make: 'dodge', model: 'Caliber'}, {id: 'caravan-grand-passenger', make: 'dodge', model: 'Caravan Grand Passenger'}, {id: 'challenger', make: 'dodge', model: 'Challenger'}, {id: 'ram-1500', make: 'dodge', model: 'Ram 1500'}, {id: 'viper', make: 'dodge', model: 'Viper'}, {id: 'a3', make: 'audi', model: 'A3'}, {id: 'a6', make: 'audi', model: 'A6'}, {id: 'r8', make: 'audi', model: 'R8'}, {id: 'rs-4', make: 'audi', model: 'RS 4'}, {id: 's4', make: 'audi', model: 'S4'}, {id: 's8', make: 'audi', model: 'S8'}, {id: 'tt', make: 'audi', model: 'TT'}, {id: 'avalanche', make: 'chevrolet', model: 'Avalanche'}, {id: 'aveo', make: 'chevrolet', model: 'Aveo'}, {id: 'cobalt', make: 'chevrolet', model: 'Cobalt'}, {id: 'silverado', make: 'chevrolet', model: 'Silverado'}, {id: 'suburban', make: 'chevrolet', model: 'Suburban'}, {id: 'tahoe', make: 'chevrolet', model: 'Tahoe'}, {id: 'trail-blazer', make: 'chevrolet', model: 'TrailBlazer'}, ], optgroups: [ {$order: 3, id: 'dodge', name: 'Dodge'}, {$order: 2, id: 'audi', name: 'Audi'}, {$order: 1, id: 'chevrolet', name: 'Chevrolet'} ], labelField: 'model', valueField: 'id', optgroupField: 'make', optgroupLabelField: 'name', optgroupValueField: 'id', lockOptgroupOrder: true, searchField: ['model'], plugins: ['optgroup_columns'], openOnFocus: false }); </script> </div> </div> </body> </html>
cboy868/lion
web/static/libs/selectize.js-master/examples/optgroups.html
HTML
bsd-3-clause
7,158
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <link rel="shortcut icon" type="image/ico" href="http://www.datatables.net/favicon.ico" /> <title>DataTables example</title> <style type="text/css"> @import "../../media/css/demo_page.css"; @import "../../media/css/demo_table.css"; @import "media/css/dataTables.scroller.css"; </style> <script type="text/javascript" language="javascript" src="../../media/js/jquery.js"></script> <script type="text/javascript" language="javascript" src="../../media/js/jquery.dataTables.js"></script> <script type="text/javascript" language="javascript" src="media/js/dataTables.scroller.js"></script> <script type="text/javascript" charset="utf-8"> $(document).ready(function() { $('#example').dataTable( { "sScrollY": "200px", "sAjaxSource": "media/data/2500.txt", "sDom": "frtiS", "bDeferRender": true, "fnInitComplete": function () { this.fnSettings().oScroller.fnScrollToRow( 1000 ); } } ); } ); </script> </head> <body id="dt_example"> <div id="container" style="width:980px"> <div class="full_width big"> Scroller API example </div> <h1>Preamble</h1> <p>This example shows a trivial use of the Scroller API to scroll the table to row 1000 once the table has been loaded. Any number could be used here, and a small animated effect is used to provide visual feedback to the user (this can be disabled by passed false as a second parameter to fnScrollToRow).</p> <h1>Live example</h1> <div id="demo"> <table cellpadding="0" cellspacing="0" border="0" class="display" id="example"> <thead> <tr> <th>ID</th> <th>First name</th> <th>Last name</th> <th>ZIP</th> <th width="33%">Country</th> </tr> </thead> </table> </div> <div class="spacer"></div> <h1>Initialisation code</h1> <pre>$(document).ready(function() { $('#example').dataTable( { "sScrollY": "200px", "sAjaxSource": "media/data/2500.txt", "sDom": "frtiS", "bDeferRender": true, "fnInitComplete": function () { this.fnSettings().oScroller.fnScrollToRow( 1000 ); } } ); } );</pre> <h1>Other examples</h1> <div class="demo_links"> <ul> <li><a href="index.html">Basic initialisation of Scroller</a></li> <li><a href="state_saving.html">State saving</a></li> <li><a href="api_scrolling.html">API - pragmatically move to a row</a></li> <li><a href="server-side_processing.html">Server-side processing with Scroller</a></li> <li><a href="large_js_source.html">50'000 rows in a table - client-side generated data</a></li> </ul> </div> </div> </body> </html>
desarrollotissat/web-interface
web/js/DataTables-1.9.4/extras/Scroller/api_scrolling.html
HTML
mit
2,883
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Example - example-example3-production</title> <link href="style.css" rel="stylesheet" type="text/css"> <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.0-beta.8/angular.min.js"></script> <script src="script.js"></script> </head> <body ng-app=""> <div id="scrollArea" ng-controller="ScrollCtrl"> <a ng-click="gotoBottom()">Go to bottom</a> <a id="bottom"></a> You're at the bottom! </div> </body> </html>
hippich/cdnjs
ajax/libs/angular.js/1.3.0-beta.9/docs/examples/example-example3/index-production.html
HTML
mit
518
<!DOCTYPE html> <link rel="help" href="https://drafts.csswg.org/css-grid-1/#pagination"> <link rel="match" href="../../reference/ref-filled-green-100px-square.xht"> <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> <div style="position: relative; width: 50px; columns: 1; column-gap: 0; background: red;"> <div style="display: grid;"> <div style="background: green; height: 100px; break-after: column;"></div> <div style="background: green; height: 100px;"></div> </div> </div>
chromium/chromium
third_party/blink/web_tests/external/wpt/css/css-break/grid/grid-item-fragmentation-039.html
HTML
bsd-3-clause
522
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <!DOCTYPE HTML PUBLIC "-//W3C/DTD HTML 3.2 Final//NL"> <html> <head> <title> org.apache.wicket.util.value package </title> </head> <body> <p> This package provides casting utilities. </p> </body> </html>
AlienQueen/wicket
wicket-util/src/main/java/org/apache/wicket/util/value/package.html
HTML
apache-2.0
1,050
{% extends "sentry/partial/client_config/java_base.html" %} {% load i18n %} {% block inner %} <p>{% trans "You'll need to configure the SentryAppender in your logging configuration:" %}</p> <pre>log4j.rootLogger=DEBUG, SentryAppender log4j.appender.SentryAppender=net.kencochrane.raven.log4j.SentryAppender log4j.appender.SentryAppender.dsn={% if dsn %}{{ dsn }}{% else %}<strong class="dsn">SENTRY_DSN</strong>{% endif %} level=ERROR</pre> {% endblock %}
jokey2k/sentry
src/sentry/templates/sentry/partial/client_config/java_log4j.html
HTML
bsd-3-clause
467
<!doctype html> <html> <head> <meta charset="utf-8"> <title>CSS Test: ::first-letter formatting</title> <link rel="author" title="Florian Rivoal" href="mailto:florian@rivoal.net"> <link rel="match" href="first-letter-001-ref.html"> <link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#first-letter-styling"> <meta name="assert" content="Test checks that a floated ::first-letter is formatted identically to a floated non-pseudo element with the same content."> <style> div { font-size: 50px; position: absolute; left: 30px; top: 50px; } #d1::first-letter { color: red; background: red; float: left; } #d2 span { color: green; background: green; float: left; } </style> </head> <body> <p>Test passes if there is a <strong>filled green rectangle</strong> and <strong>no red</strong>.</p> <div id="d1">a</div> <div id="d2"><span>a</span></div> </body> </html>
chromium/chromium
third_party/blink/web_tests/external/wpt/css/css-pseudo/first-letter-003.html
HTML
bsd-3-clause
940
<!DOCTYPE html> <html lang="en"> <head> <style> #back { width: 1000px; height: 600px; background-color: green; } #front { width: 800px; height: 400px; background-color: red; border: 50px solid blue; padding: 50px; -webkit-mask-image: url(resources/circle.png); -webkit-mask-size: 125px 100px; -webkit-mask-repeat: repeat; -webkit-mask-origin: border-box; -webkit-mask-clip: border-box; } </style> </head> <body> <div id="back"> <div id="front" /> </div> </body> </html>
scheib/chromium
third_party/blink/web_tests/css3/masking/mask-repeat-round-auto2-expected.html
HTML
bsd-3-clause
788
<div class="website-list-filters"> <div class="row"> <div class="col-xs-6"> <form class="form-inline form-search" action="/{{ pathname }}"> <div class="input-group"> <input class="form-control" doctype="text" name="txt" placeholder="Search..." value="{{ txt or '' }}"> <span class="input-group-btn"> <button class="btn btn-default" type="submit"> <i class="fa fa-search"></i></button> </span> </div> </form> </div> </div> {% if txt %} <div> <div class="filter-message small text-muted">Results filtered by <b>{{ txt }}</b>. <a href="/{{ pathname }}" class="text-muted">( <span class="close-inline">&times;</span> {{ _("clear") }} )</a></div> </div> {% endif %} </div>
ESS-LLP/frappe
frappe/templates/includes/list/filters.html
HTML
mit
731
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <title>Source code</title> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> </head> <body> <div class="sourceContainer"> <pre><span class="sourceLineNo">001</span>/**<a name="line.1"></a> <span class="sourceLineNo">002</span> * Licensed to the Apache Software Foundation (ASF) under one<a name="line.2"></a> <span class="sourceLineNo">003</span> * or more contributor license agreements. See the NOTICE file<a name="line.3"></a> <span class="sourceLineNo">004</span> * distributed with this work for additional information<a name="line.4"></a> <span class="sourceLineNo">005</span> * regarding copyright ownership. The ASF licenses this file<a name="line.5"></a> <span class="sourceLineNo">006</span> * to you under the Apache License, Version 2.0 (the<a name="line.6"></a> <span class="sourceLineNo">007</span> * "License"); you may not use this file except in compliance<a name="line.7"></a> <span class="sourceLineNo">008</span> * with the License. You may obtain a copy of the License at<a name="line.8"></a> <span class="sourceLineNo">009</span> *<a name="line.9"></a> <span class="sourceLineNo">010</span> * http://www.apache.org/licenses/LICENSE-2.0<a name="line.10"></a> <span class="sourceLineNo">011</span> *<a name="line.11"></a> <span class="sourceLineNo">012</span> * Unless required by applicable law or agreed to in writing, software<a name="line.12"></a> <span class="sourceLineNo">013</span> * distributed under the License is distributed on an "AS IS" BASIS,<a name="line.13"></a> <span class="sourceLineNo">014</span> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.<a name="line.14"></a> <span class="sourceLineNo">015</span> * See the License for the specific language governing permissions and<a name="line.15"></a> <span class="sourceLineNo">016</span> * limitations under the License.<a name="line.16"></a> <span class="sourceLineNo">017</span> */<a name="line.17"></a> <span class="sourceLineNo">018</span><a name="line.18"></a> <span class="sourceLineNo">019</span>package org.apache.hadoop.lib.wsrs;<a name="line.19"></a> <span class="sourceLineNo">020</span><a name="line.20"></a> <span class="sourceLineNo">021</span>import org.apache.hadoop.classification.InterfaceAudience;<a name="line.21"></a> <span class="sourceLineNo">022</span><a name="line.22"></a> <span class="sourceLineNo">023</span>@InterfaceAudience.Private<a name="line.23"></a> <span class="sourceLineNo">024</span>public abstract class ShortParam extends Param&lt;Short&gt; {<a name="line.24"></a> <span class="sourceLineNo">025</span><a name="line.25"></a> <span class="sourceLineNo">026</span> private int radix;<a name="line.26"></a> <span class="sourceLineNo">027</span><a name="line.27"></a> <span class="sourceLineNo">028</span> public ShortParam(String name, Short defaultValue, int radix) {<a name="line.28"></a> <span class="sourceLineNo">029</span> super(name, defaultValue);<a name="line.29"></a> <span class="sourceLineNo">030</span> this.radix = radix;<a name="line.30"></a> <span class="sourceLineNo">031</span> }<a name="line.31"></a> <span class="sourceLineNo">032</span><a name="line.32"></a> <span class="sourceLineNo">033</span> public ShortParam(String name, Short defaultValue) {<a name="line.33"></a> <span class="sourceLineNo">034</span> this(name, defaultValue, 10);<a name="line.34"></a> <span class="sourceLineNo">035</span> }<a name="line.35"></a> <span class="sourceLineNo">036</span><a name="line.36"></a> <span class="sourceLineNo">037</span> @Override<a name="line.37"></a> <span class="sourceLineNo">038</span> protected Short parse(String str) throws Exception {<a name="line.38"></a> <span class="sourceLineNo">039</span> return Short.parseShort(str, radix);<a name="line.39"></a> <span class="sourceLineNo">040</span> }<a name="line.40"></a> <span class="sourceLineNo">041</span><a name="line.41"></a> <span class="sourceLineNo">042</span> @Override<a name="line.42"></a> <span class="sourceLineNo">043</span> protected String getDomain() {<a name="line.43"></a> <span class="sourceLineNo">044</span> return "a short";<a name="line.44"></a> <span class="sourceLineNo">045</span> }<a name="line.45"></a> <span class="sourceLineNo">046</span>}<a name="line.46"></a> </pre> </div> </body> </html>
ZhangXFeng/hadoop
share/doc/hadoop-hdfs-httpfs/apidocs/src-html/org/apache/hadoop/lib/wsrs/ShortParam.html
HTML
apache-2.0
4,516
<!DOCTYPE HTML> <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <html><head> <meta charset="utf-8"> <title>CSS Grid Test: repeat(auto-fill/auto-fit)</title> <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1118820"> <link rel="help" href="https://drafts.csswg.org/css-grid/#valdef-repeat-auto-fill"> <link rel="match" href="grid-repeat-auto-fill-fit-001-ref.html"> <style type="text/css"> html,body { color:black; background-color:white; font-size:16px; padding:0; margin:0; } .grid { display: grid; position: relative; border: 1px solid; grid-auto-rows: 10px; grid-gap: 2px; margin-bottom: 2px; padding-right: 3px; } .r1 { grid-template-columns: [a] repeat(auto-fill, [b] 20px [c]) [d]; } .r2 { grid-template-columns: [a] repeat(auto-fill, [b] 20px [c]) [d] 30px [e]; } .r3 { grid-template-columns: [a] repeat(auto-fill, [b] 20px [c]) [d] 30px [e] 30px [f]; } fit .r1 { grid-template-columns: [a] repeat(auto-fit, [b] 20px [c]) [d]; } fit .r2 { grid-template-columns: [a] repeat(auto-fit, [b] 20px [c]) [d] 30px [e]; } fit .r3 { grid-template-columns: [a] repeat(auto-fit, [b] 20px [c]) [d] 30px [e] 30px [f]; } .w100 { width: 100px; } .w50 { width: 50px; } .w80 { width: 80px; } .mw100 { min-width: 100px; } .mw50 { min-width: 50px; } .mw80 { min-width: 80px; } .xw100 { max-width: 100px; } .xw50 { max-width: 50px; } .xw80 { max-width: 80px; } .float { float: left; } x { height: 10px; background: grey; } a { position: absolute; left:0; right:0; top:0; height: 3px; background: black; grid-column: c / c -1; } b { position: absolute; left:0; right:0; bottom:0; height: 3px; background: brown; grid-column: auto / c -1; } x:first-child { background: lime; } x:last-child { background: blue; } fill,fit { float: left; width: 390px; } </style> </head> <body> <fill> <div class="grid r1"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r1 float"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r1 w100"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r1 w80"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r1 w50"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r1 xw80"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r1 xw50"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r1 w100 xw80"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r1 mw50 float"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r1 mw80 float"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r1 w100 mw50 float"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r1 mw100 w50 float"><x></x><x></x><a></a><b></b><x></x></div> <br clear="all"> <br clear="all"> <div class="grid r2"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r2 float"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r2 w100"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r2 w80"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r2 w50"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r2 xw80"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r2 xw50"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r2 w100 xw80"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r2 mw50 float"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r2 mw80 float"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r2 w100 mw50 float"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r2 mw100 w50 float"><x></x><x></x><a></a><b></b><x></x></div> <br clear="all"> <br clear="all"> <div class="grid r3"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r3 float"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r3 w100"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r3 w80"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r3 w50"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r3 xw80"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r3 xw50"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r3 w100 xw80"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r3 mw50 float"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r3 mw80 float"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r3 w100 mw50 float"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r3 mw100 w50 float"><x></x><x></x><a></a><b></b><x></x></div> </fill> <fit> <div class="grid r1"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r1 float"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r1 w100"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r1 w80"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r1 w50"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r1 xw80"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r1 xw50"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r1 w100 xw80"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r1 mw50 float"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r1 mw80 float"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r1 w100 mw50 float"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r1 mw100 w50 float"><x></x><x></x><a></a><b></b><x></x></div> <br clear="all"> <br clear="all"> <div class="grid r2"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r2 float"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r2 w100"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r2 w80"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r2 w50"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r2 xw80"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r2 xw50"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r2 w100 xw80"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r2 mw50 float"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r2 mw80 float"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r2 w100 mw50 float"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r2 mw100 w50 float"><x></x><x></x><a></a><b></b><x></x></div> <br clear="all"> <br clear="all"> <div class="grid r3"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r3 float"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r3 w100"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r3 w80"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r3 w50"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r3 xw80"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r3 xw50"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r3 w100 xw80"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r3 mw50 float"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r3 mw80 float"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r3 w100 mw50 float"><x></x><x></x><a></a><b></b><x></x></div> <div class="grid r3 mw100 w50 float"><x></x><x></x><a></a><b></b><x></x></div> <br clear="all"> <br clear="all"> </fit> </body> </html>
scheib/chromium
third_party/blink/web_tests/fast/css-grid-layout/mozilla/grid-repeat-auto-fill-fit-001.html
HTML
bsd-3-clause
7,260
<table id="lab_table" class="asn_table"> {% include asn_table_header_row.html %} {% for asn in site.lab %} {% if asn.num %} {% include asn_table_row.html %} {% endif %} {% endfor %} </table>
ucsb-cs16-s17/ucsb-cs16-s17.github.io
_includes/temp.html
HTML
mit
198
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <body> <wicket:link> <a href="MyPage.html">My Page</a> <a href="PageA.html">Page A</a> <a href="sub/PageB.html">Page B</a> </wicket:link> START<br> <wicket:child/> END<br> </body> </html>
Servoy/wicket
wicket/src/test/java/org/apache/wicket/markup/html/autolink/BasePage.html
HTML
apache-2.0
301
{% extends "wiki/base.html" %} {% set scripts = ('jqueryui', 'wiki', 'wiki.diff') %} {% set title = _('Recent Revisions') %} {% set crumbs = [(None, title)] %} {% set meta = [('robots', 'noindex, nofollow')] %} {% block content %} <article id="revision-list"> <form class="filter" action="{{ url('wiki.revisions') }}"> {% for field in form %} {{ field.label }} {{ field }} {% endfor %} <button class="btn btn-submit">{{ _('Submit') }}</button> <img src="/media/img/wait-trans.gif" class="loading" alt="" /> </form> <div id="revisions-fragment"> {% include "wiki/includes/recent_revisions_fragment.html" %} </div> </article> {% endblock %}
orvi2014/kitsune
kitsune/wiki/templates/wiki/recent_revisions.html
HTML
bsd-3-clause
708
</div> </div> <span class="corners-bottom"><span></span></span> <div class="clear"></div> </div> </div> </div> <div id="page-footer"> Powered by <a href="http://www.phpbb.com/">phpBB</a>&reg; Forum Software &copy; phpBB Group </div> </div> </body> </html>
Capaldijo/SPD
web/phpBB3/adm/style/install_footer.html
HTML
mit
282
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Make Some Salad, It Is Healthy</title> <link href="http://fonts.googleapis.com/css?family=Roboto:regular,medium,thin,italic,mediumitalic,bold" rel="stylesheet"> <link href="../../../static/bootstrap.min.css" rel="stylesheet"> <link href="../../../static/bootstrap-responsive.min.css" rel="stylesheet"> <link href="../../../static/spoon.css" rel="stylesheet"> <script src="../../../static/jquery.min.js"></script> <script src="../../../static/bootstrap.min.js"></script> <meta name="description" content="Test passed in 13 seconds on Nexus S"> </head> <body> <div class="container"> <div class="hero-unit"> <h1>Make Some Salad, It Is Healthy</h1> <p>Test passed in 13 seconds on Nexus S</p> </div> <div class="row log"> <div class="span12"> <table class="table table-striped table-hover table-condensed"> <thead> <tr> <th>Timestamp</th> <th>Level</th> <th>Tag</th> <th>Message</th> </tr> </thead> <tbody> <tr class="level-info info"> <td>02-12 10:30:07.864</td> <td>info</td> <td>TestRunner</td> <td>started: testMakeSomeSalad_ItIsHealthy(com.example.spoon.ordering.tests.OrderActivityTest)</td> </tr> <tr class="level-debug "> <td>02-12 10:30:08.051</td> <td>debug</td> <td>OpenGLRenderer</td> <td>Flushing caches (mode 0)</td> </tr> <tr class="level-debug "> <td>02-12 10:30:08.067</td> <td>debug</td> <td>OpenGLRenderer</td> <td>Flushing caches (mode 0)</td> </tr> <tr class="level-debug "> <td>02-12 10:30:09.157</td> <td>debug</td> <td>dalvikvm</td> <td>GC_FOR_ALLOC freed 170K, 19% free 9707K/11911K, paused 18ms</td> </tr> <tr class="level-info info"> <td>02-12 10:30:09.157</td> <td>info</td> <td>dalvikvm-heap</td> <td>Grow heap (frag case) to 11.015MB for 1536016-byte allocation</td> </tr> <tr class="level-debug "> <td>02-12 10:30:09.188</td> <td>debug</td> <td>dalvikvm</td> <td>GC_CONCURRENT freed 5K, 6% free 11202K/11911K, paused 1ms+2ms</td> </tr> <tr class="level-debug "> <td>02-12 10:30:10.758</td> <td>debug</td> <td>dalvikvm</td> <td>GC_FOR_ALLOC freed 1585K, 19% free 9705K/11911K, paused 68ms</td> </tr> <tr class="level-info info"> <td>02-12 10:30:10.758</td> <td>info</td> <td>dalvikvm-heap</td> <td>Grow heap (frag case) to 11.013MB for 1536016-byte allocation</td> </tr> <tr class="level-debug "> <td>02-12 10:30:10.785</td> <td>debug</td> <td>dalvikvm</td> <td>GC_FOR_ALLOC freed 2K, 6% free 11203K/11911K, paused 18ms</td> </tr> <tr class="level-debug "> <td>02-12 10:30:10.840</td> <td>debug</td> <td>dalvikvm</td> <td>GC_CONCURRENT freed 2K, 6% free 11213K/11911K, paused 2ms+6ms</td> </tr> <tr class="level-debug "> <td>02-12 10:30:11.821</td> <td>debug</td> <td>dalvikvm</td> <td>GC_FOR_ALLOC freed 1557K, 19% free 9723K/11911K, paused 44ms</td> </tr> <tr class="level-info info"> <td>02-12 10:30:11.821</td> <td>info</td> <td>dalvikvm-heap</td> <td>Grow heap (frag case) to 11.031MB for 1536016-byte allocation</td> </tr> <tr class="level-debug "> <td>02-12 10:30:11.895</td> <td>debug</td> <td>dalvikvm</td> <td>GC_CONCURRENT freed &lt;1K, 6% free 11222K/11911K, paused 4ms+2ms</td> </tr> <tr class="level-debug "> <td>02-12 10:30:13.489</td> <td>debug</td> <td>dalvikvm</td> <td>GC_FOR_ALLOC freed 1592K, 19% free 9726K/11911K, paused 72ms</td> </tr> <tr class="level-info info"> <td>02-12 10:30:13.492</td> <td>info</td> <td>dalvikvm-heap</td> <td>Grow heap (frag case) to 11.034MB for 1536016-byte allocation</td> </tr> <tr class="level-debug "> <td>02-12 10:30:13.520</td> <td>debug</td> <td>dalvikvm</td> <td>GC_FOR_ALLOC freed 3K, 6% free 11223K/11911K, paused 18ms</td> </tr> <tr class="level-debug "> <td>02-12 10:30:13.574</td> <td>debug</td> <td>dalvikvm</td> <td>GC_CONCURRENT freed 18K, 6% free 11226K/11911K, paused 3ms+8ms</td> </tr> <tr class="level-debug "> <td>02-12 10:30:14.555</td> <td>debug</td> <td>dalvikvm</td> <td>GC_FOR_ALLOC freed 1573K, 18% free 9777K/11911K, paused 26ms</td> </tr> <tr class="level-info info"> <td>02-12 10:30:14.555</td> <td>info</td> <td>dalvikvm-heap</td> <td>Grow heap (frag case) to 11.083MB for 1536016-byte allocation</td> </tr> <tr class="level-debug "> <td>02-12 10:30:14.594</td> <td>debug</td> <td>dalvikvm</td> <td>GC_CONCURRENT freed 1K, 6% free 11275K/11911K, paused 3ms+2ms</td> </tr> <tr class="level-debug "> <td>02-12 10:30:16.715</td> <td>debug</td> <td>dalvikvm</td> <td>GC_FOR_ALLOC freed 1672K, 19% free 9748K/11911K, paused 42ms</td> </tr> <tr class="level-info info"> <td>02-12 10:30:16.719</td> <td>info</td> <td>dalvikvm-heap</td> <td>Grow heap (frag case) to 11.055MB for 1536016-byte allocation</td> </tr> <tr class="level-debug "> <td>02-12 10:30:16.797</td> <td>debug</td> <td>dalvikvm</td> <td>GC_CONCURRENT freed 6K, 6% free 11241K/11911K, paused 4ms+3ms</td> </tr> <tr class="level-debug "> <td>02-12 10:30:19.117</td> <td>debug</td> <td>dalvikvm</td> <td>GC_CONCURRENT freed 1988K, 18% free 9937K/12039K, paused 2ms+3ms</td> </tr> <tr class="level-debug "> <td>02-12 10:30:19.442</td> <td>debug</td> <td>dalvikvm</td> <td>GC_FOR_ALLOC freed 330K, 18% free 9889K/12039K, paused 23ms</td> </tr> <tr class="level-info info"> <td>02-12 10:30:19.446</td> <td>info</td> <td>dalvikvm-heap</td> <td>Grow heap (frag case) to 11.193MB for 1536016-byte allocation</td> </tr> <tr class="level-debug "> <td>02-12 10:30:19.477</td> <td>debug</td> <td>dalvikvm</td> <td>GC_CONCURRENT freed 64K, 6% free 11324K/12039K, paused 2ms+3ms</td> </tr> <tr class="level-debug "> <td>02-12 10:30:20.465</td> <td>debug</td> <td>dalvikvm</td> <td>GC_FOR_ALLOC freed 1591K, 19% free 9801K/12039K, paused 48ms</td> </tr> <tr class="level-info info"> <td>02-12 10:30:20.465</td> <td>info</td> <td>dalvikvm-heap</td> <td>Grow heap (frag case) to 11.107MB for 1536016-byte allocation</td> </tr> <tr class="level-debug "> <td>02-12 10:30:20.516</td> <td>debug</td> <td>dalvikvm</td> <td>GC_CONCURRENT freed 5K, 7% free 11296K/12039K, paused 1ms+3ms</td> </tr> <tr class="level-debug "> <td>02-12 10:30:20.969</td> <td>debug</td> <td>dalvikvm</td> <td>GC_EXPLICIT freed 1616K, 20% free 9694K/12039K, paused 2ms+3ms</td> </tr> <tr class="level-debug "> <td>02-12 10:30:21.016</td> <td>debug</td> <td>dalvikvm</td> <td>GC_EXPLICIT freed 18K, 20% free 9677K/12039K, paused 1ms+9ms</td> </tr> <tr class="level-info info"> <td>02-12 10:30:21.016</td> <td>info</td> <td>TestRunner</td> <td>finished: testMakeSomeSalad_ItIsHealthy(com.example.spoon.ordering.tests.OrderActivityTest)</td> </tr> </tbody> </table> </div> </div> </div> </body> </html>
checkdroid/spoon
website/sample/logs/3334B602A8B600EC/com.example.spoon.ordering.tests.OrderActivityTest/testMakeSomeSalad_ItIsHealthy.html
HTML
apache-2.0
13,170
<!DOCTYPE html> <html> <title>WebVTT rendering, align:middle, position:50%</title> <style> html { overflow:hidden } body { margin:0 } ::cue { font-family: Ahem, sans-serif; color: green } </style> <script src="support/refTestWait.js"></script> <video width="1280" height="720" autoplay onplaying="this.onplaying = null; this.pause(); takeScreenshot();"> <source src="media/white.webm" type="video/webm"> <source src="media/white.mp4" type="video/mp4"> <track src="support/align_middle_position_50.vtt"> </video> <script> document.getElementsByTagName('track')[0].track.mode = 'showing'; </script> </html>
crosswalk-project/blink-crosswalk-efl
LayoutTests/media/track/opera/track/webvtt/rendering/reftest/align_middle_position_50.html
HTML
bsd-3-clause
625
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <html> <head> <title>ActiveMQ Artemis JMS Topic Selector Example 1</title> <link rel="stylesheet" type="text/css" href="../../../common/common.css" /> <link rel="stylesheet" type="text/css" href="../../../common/prettify.css" /> <script type="text/javascript" src="../../../common/prettify.js"></script> </head> <body onload="prettyPrint()"> <h1>JMS Topic Selector Example 1</h1> <pre>To run the example, simply type <b>mvn verify</b> from this directory, <br>or <b>mvn -PnoServer verify</b> if you want to start and create the server manually.</pre> <p>This example shows how messages can be consumed from a topic using Message Selectors.</p> <p>Consumers (or Subscribers) will only consume messages routed to a topic that match the provided selector</p> <p>Topics and selectors are a standard part of JMS, please consult the JMS 1.1 specification for full details.</p> </body> </html>
grs/activemq-artemis
examples/features/standard/topic-selector-example1/readme.html
HTML
apache-2.0
1,705
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Color 4: Specifying Lab and LCH</title> <style> .test { background-color: rgb(12.8128% 53.105% 92.7645%); width: 12em; height: 12em; } /* lab(55% 0 -60) converted to sRGB */ </style> <body> <p>Test passes if you see a single square, and not two rectangles of different colors.</p> <div class="test"></div> </body>
scheib/chromium
third_party/blink/web_tests/external/wpt/css/css-color/lab-007-ref.html
HTML
bsd-3-clause
376
<!DOCTYPE html> <div style="width: 100px; height: 100px; border: solid;"> <div style="overflow-y: scroll; max-height: 100%;"> <div style="height: 200px; background: green;"></div> </div> </div>
chromium/chromium
third_party/blink/web_tests/external/wpt/css/css-flexbox/fieldset-as-item-overflow-ref.html
HTML
bsd-3-clause
202
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <link rel="shortcut icon" type="image/ico" href="http://www.datatables.net/favicon.ico"> <meta name="viewport" content="initial-scale=1.0, maximum-scale=2.0"> <title>DataTables example - Custom filtering - range search</title> <link rel="stylesheet" type="text/css" href="../../media/css/jquery.dataTables.css"> <link rel="stylesheet" type="text/css" href="../resources/syntax/shCore.css"> <link rel="stylesheet" type="text/css" href="../resources/demo.css"> <style type="text/css" class="init"> </style> <script type="text/javascript" language="javascript" src="//code.jquery.com/jquery-1.12.4.js"> </script> <script type="text/javascript" language="javascript" src="../../media/js/jquery.dataTables.js"> </script> <script type="text/javascript" language="javascript" src="../resources/syntax/shCore.js"> </script> <script type="text/javascript" language="javascript" src="../resources/demo.js"> </script> <script type="text/javascript" language="javascript" class="init"> /* Custom filtering function which will search data in column four between two values */ $.fn.dataTable.ext.search.push( function( settings, data, dataIndex ) { var min = parseInt( $('#min').val(), 10 ); var max = parseInt( $('#max').val(), 10 ); var age = parseFloat( data[3] ) || 0; // use data for the age column if ( ( isNaN( min ) && isNaN( max ) ) || ( isNaN( min ) && age <= max ) || ( min <= age && isNaN( max ) ) || ( min <= age && age <= max ) ) { return true; } return false; } ); $(document).ready(function() { var table = $('#example').DataTable(); // Event listener to the two range filtering inputs to redraw on input $('#min, #max').keyup( function() { table.draw(); } ); } ); </script> </head> <body class="dt-example"> <div class="container"> <section> <h1>DataTables example <span>Custom filtering - range search</span></h1> <div class="info"> <p>There may be occasions when you wish to search data presented to the end user in your own manner, common examples are number range search (in between two numbers) and date range search. DataTables provide an API method to add your own search functions, <code>$.fn.dataTable.ext.search</code>. This is an array of functions (push your own onto it) which will will be run at table draw time to see if a particular row should be included or not.</p> <p>This example shows a search being performed on the age column in the data, based upon two inputs.</p> </div> <div class="demo-html"> <table border="0" cellspacing="5" cellpadding="5"> <tr> <td>Minimum age:</td> <td><input type="text" id="min" name="min"></td> </tr> <tr> <td>Maximum age:</td> <td><input type="text" id="max" name="max"></td> </tr> </table> </div> <table id="example" class="display" cellspacing="0" width="100%"> <thead> <tr> <th>Name</th> <th>Position</th> <th>Office</th> <th>Age</th> <th>Start date</th> <th>Salary</th> </tr> </thead> <tfoot> <tr> <th>Name</th> <th>Position</th> <th>Office</th> <th>Age</th> <th>Start date</th> <th>Salary</th> </tr> </tfoot> <tbody> <tr> <td>Tiger Nixon</td> <td>System Architect</td> <td>Edinburgh</td> <td>61</td> <td>2011/04/25</td> <td>$320,800</td> </tr> <tr> <td>Garrett Winters</td> <td>Accountant</td> <td>Tokyo</td> <td>63</td> <td>2011/07/25</td> <td>$170,750</td> </tr> <tr> <td>Ashton Cox</td> <td>Junior Technical Author</td> <td>San Francisco</td> <td>66</td> <td>2009/01/12</td> <td>$86,000</td> </tr> <tr> <td>Cedric Kelly</td> <td>Senior Javascript Developer</td> <td>Edinburgh</td> <td>22</td> <td>2012/03/29</td> <td>$433,060</td> </tr> <tr> <td>Airi Satou</td> <td>Accountant</td> <td>Tokyo</td> <td>33</td> <td>2008/11/28</td> <td>$162,700</td> </tr> <tr> <td>Brielle Williamson</td> <td>Integration Specialist</td> <td>New York</td> <td>61</td> <td>2012/12/02</td> <td>$372,000</td> </tr> <tr> <td>Herrod Chandler</td> <td>Sales Assistant</td> <td>San Francisco</td> <td>59</td> <td>2012/08/06</td> <td>$137,500</td> </tr> <tr> <td>Rhona Davidson</td> <td>Integration Specialist</td> <td>Tokyo</td> <td>55</td> <td>2010/10/14</td> <td>$327,900</td> </tr> <tr> <td>Colleen Hurst</td> <td>Javascript Developer</td> <td>San Francisco</td> <td>39</td> <td>2009/09/15</td> <td>$205,500</td> </tr> <tr> <td>Sonya Frost</td> <td>Software Engineer</td> <td>Edinburgh</td> <td>23</td> <td>2008/12/13</td> <td>$103,600</td> </tr> <tr> <td>Jena Gaines</td> <td>Office Manager</td> <td>London</td> <td>30</td> <td>2008/12/19</td> <td>$90,560</td> </tr> <tr> <td>Quinn Flynn</td> <td>Support Lead</td> <td>Edinburgh</td> <td>22</td> <td>2013/03/03</td> <td>$342,000</td> </tr> <tr> <td>Charde Marshall</td> <td>Regional Director</td> <td>San Francisco</td> <td>36</td> <td>2008/10/16</td> <td>$470,600</td> </tr> <tr> <td>Haley Kennedy</td> <td>Senior Marketing Designer</td> <td>London</td> <td>43</td> <td>2012/12/18</td> <td>$313,500</td> </tr> <tr> <td>Tatyana Fitzpatrick</td> <td>Regional Director</td> <td>London</td> <td>19</td> <td>2010/03/17</td> <td>$385,750</td> </tr> <tr> <td>Michael Silva</td> <td>Marketing Designer</td> <td>London</td> <td>66</td> <td>2012/11/27</td> <td>$198,500</td> </tr> <tr> <td>Paul Byrd</td> <td>Chief Financial Officer (CFO)</td> <td>New York</td> <td>64</td> <td>2010/06/09</td> <td>$725,000</td> </tr> <tr> <td>Gloria Little</td> <td>Systems Administrator</td> <td>New York</td> <td>59</td> <td>2009/04/10</td> <td>$237,500</td> </tr> <tr> <td>Bradley Greer</td> <td>Software Engineer</td> <td>London</td> <td>41</td> <td>2012/10/13</td> <td>$132,000</td> </tr> <tr> <td>Dai Rios</td> <td>Personnel Lead</td> <td>Edinburgh</td> <td>35</td> <td>2012/09/26</td> <td>$217,500</td> </tr> <tr> <td>Jenette Caldwell</td> <td>Development Lead</td> <td>New York</td> <td>30</td> <td>2011/09/03</td> <td>$345,000</td> </tr> <tr> <td>Yuri Berry</td> <td>Chief Marketing Officer (CMO)</td> <td>New York</td> <td>40</td> <td>2009/06/25</td> <td>$675,000</td> </tr> <tr> <td>Caesar Vance</td> <td>Pre-Sales Support</td> <td>New York</td> <td>21</td> <td>2011/12/12</td> <td>$106,450</td> </tr> <tr> <td>Doris Wilder</td> <td>Sales Assistant</td> <td>Sidney</td> <td>23</td> <td>2010/09/20</td> <td>$85,600</td> </tr> <tr> <td>Angelica Ramos</td> <td>Chief Executive Officer (CEO)</td> <td>London</td> <td>47</td> <td>2009/10/09</td> <td>$1,200,000</td> </tr> <tr> <td>Gavin Joyce</td> <td>Developer</td> <td>Edinburgh</td> <td>42</td> <td>2010/12/22</td> <td>$92,575</td> </tr> <tr> <td>Jennifer Chang</td> <td>Regional Director</td> <td>Singapore</td> <td>28</td> <td>2010/11/14</td> <td>$357,650</td> </tr> <tr> <td>Brenden Wagner</td> <td>Software Engineer</td> <td>San Francisco</td> <td>28</td> <td>2011/06/07</td> <td>$206,850</td> </tr> <tr> <td>Fiona Green</td> <td>Chief Operating Officer (COO)</td> <td>San Francisco</td> <td>48</td> <td>2010/03/11</td> <td>$850,000</td> </tr> <tr> <td>Shou Itou</td> <td>Regional Marketing</td> <td>Tokyo</td> <td>20</td> <td>2011/08/14</td> <td>$163,000</td> </tr> <tr> <td>Michelle House</td> <td>Integration Specialist</td> <td>Sidney</td> <td>37</td> <td>2011/06/02</td> <td>$95,400</td> </tr> <tr> <td>Suki Burks</td> <td>Developer</td> <td>London</td> <td>53</td> <td>2009/10/22</td> <td>$114,500</td> </tr> <tr> <td>Prescott Bartlett</td> <td>Technical Author</td> <td>London</td> <td>27</td> <td>2011/05/07</td> <td>$145,000</td> </tr> <tr> <td>Gavin Cortez</td> <td>Team Leader</td> <td>San Francisco</td> <td>22</td> <td>2008/10/26</td> <td>$235,500</td> </tr> <tr> <td>Martena Mccray</td> <td>Post-Sales support</td> <td>Edinburgh</td> <td>46</td> <td>2011/03/09</td> <td>$324,050</td> </tr> <tr> <td>Unity Butler</td> <td>Marketing Designer</td> <td>San Francisco</td> <td>47</td> <td>2009/12/09</td> <td>$85,675</td> </tr> <tr> <td>Howard Hatfield</td> <td>Office Manager</td> <td>San Francisco</td> <td>51</td> <td>2008/12/16</td> <td>$164,500</td> </tr> <tr> <td>Hope Fuentes</td> <td>Secretary</td> <td>San Francisco</td> <td>41</td> <td>2010/02/12</td> <td>$109,850</td> </tr> <tr> <td>Vivian Harrell</td> <td>Financial Controller</td> <td>San Francisco</td> <td>62</td> <td>2009/02/14</td> <td>$452,500</td> </tr> <tr> <td>Timothy Mooney</td> <td>Office Manager</td> <td>London</td> <td>37</td> <td>2008/12/11</td> <td>$136,200</td> </tr> <tr> <td>Jackson Bradshaw</td> <td>Director</td> <td>New York</td> <td>65</td> <td>2008/09/26</td> <td>$645,750</td> </tr> <tr> <td>Olivia Liang</td> <td>Support Engineer</td> <td>Singapore</td> <td>64</td> <td>2011/02/03</td> <td>$234,500</td> </tr> <tr> <td>Bruno Nash</td> <td>Software Engineer</td> <td>London</td> <td>38</td> <td>2011/05/03</td> <td>$163,500</td> </tr> <tr> <td>Sakura Yamamoto</td> <td>Support Engineer</td> <td>Tokyo</td> <td>37</td> <td>2009/08/19</td> <td>$139,575</td> </tr> <tr> <td>Thor Walton</td> <td>Developer</td> <td>New York</td> <td>61</td> <td>2013/08/11</td> <td>$98,540</td> </tr> <tr> <td>Finn Camacho</td> <td>Support Engineer</td> <td>San Francisco</td> <td>47</td> <td>2009/07/07</td> <td>$87,500</td> </tr> <tr> <td>Serge Baldwin</td> <td>Data Coordinator</td> <td>Singapore</td> <td>64</td> <td>2012/04/09</td> <td>$138,575</td> </tr> <tr> <td>Zenaida Frank</td> <td>Software Engineer</td> <td>New York</td> <td>63</td> <td>2010/01/04</td> <td>$125,250</td> </tr> <tr> <td>Zorita Serrano</td> <td>Software Engineer</td> <td>San Francisco</td> <td>56</td> <td>2012/06/01</td> <td>$115,000</td> </tr> <tr> <td>Jennifer Acosta</td> <td>Junior Javascript Developer</td> <td>Edinburgh</td> <td>43</td> <td>2013/02/01</td> <td>$75,650</td> </tr> <tr> <td>Cara Stevens</td> <td>Sales Assistant</td> <td>New York</td> <td>46</td> <td>2011/12/06</td> <td>$145,600</td> </tr> <tr> <td>Hermione Butler</td> <td>Regional Director</td> <td>London</td> <td>47</td> <td>2011/03/21</td> <td>$356,250</td> </tr> <tr> <td>Lael Greer</td> <td>Systems Administrator</td> <td>London</td> <td>21</td> <td>2009/02/27</td> <td>$103,500</td> </tr> <tr> <td>Jonas Alexander</td> <td>Developer</td> <td>San Francisco</td> <td>30</td> <td>2010/07/14</td> <td>$86,500</td> </tr> <tr> <td>Shad Decker</td> <td>Regional Director</td> <td>Edinburgh</td> <td>51</td> <td>2008/11/13</td> <td>$183,000</td> </tr> <tr> <td>Michael Bruce</td> <td>Javascript Developer</td> <td>Singapore</td> <td>29</td> <td>2011/06/27</td> <td>$183,000</td> </tr> <tr> <td>Donna Snider</td> <td>Customer Support</td> <td>New York</td> <td>27</td> <td>2011/01/25</td> <td>$112,000</td> </tr> </tbody> </table> <ul class="tabs"> <li class="active">Javascript</li> <li>HTML</li> <li>CSS</li> <li>Ajax</li> <li>Server-side script</li> </ul> <div class="tabs"> <div class="js"> <p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">/* Custom filtering function which will search data in column four between two values */ $.fn.dataTable.ext.search.push( function( settings, data, dataIndex ) { var min = parseInt( $('#min').val(), 10 ); var max = parseInt( $('#max').val(), 10 ); var age = parseFloat( data[3] ) || 0; // use data for the age column if ( ( isNaN( min ) &amp;&amp; isNaN( max ) ) || ( isNaN( min ) &amp;&amp; age &lt;= max ) || ( min &lt;= age &amp;&amp; isNaN( max ) ) || ( min &lt;= age &amp;&amp; age &lt;= max ) ) { return true; } return false; } ); $(document).ready(function() { var table = $('#example').DataTable(); // Event listener to the two range filtering inputs to redraw on input $('#min, #max').keyup( function() { table.draw(); } ); } );</code> <p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p> <ul> <li> <a href="//code.jquery.com/jquery-1.12.4.js">//code.jquery.com/jquery-1.12.4.js</a> </li> <li> <a href="../../media/js/jquery.dataTables.js">../../media/js/jquery.dataTables.js</a> </li> </ul> </div> <div class="table"> <p>The HTML shown below is the raw HTML table element, before it has been enhanced by DataTables:</p> </div> <div class="css"> <div> <p>This example uses a little bit of additional CSS beyond what is loaded from the library files (below), in order to correctly display the table. The additional CSS used is shown below:</p><code class="multiline language-css"></code> </div> <p>The following CSS library files are loaded for use in this example to provide the styling of the table:</p> <ul> <li> <a href="../../media/css/jquery.dataTables.css">../../media/css/jquery.dataTables.css</a> </li> </ul> </div> <div class="ajax"> <p>This table loads data by Ajax. The latest data that has been loaded is shown below. This data will update automatically as any additional data is loaded.</p> </div> <div class="php"> <p>The script used to perform the server-side processing for this table is shown below. Please note that this is just an example script using PHP. Server-side processing scripts can be written in any language, using <a href="//datatables.net/manual/server-side">the protocol described in the DataTables documentation</a>.</p> </div> </div> </section> </div> <section> <div class="footer"> <div class="gradient"></div> <div class="liner"> <h2>Other examples</h2> <div class="toc"> <div class="toc-group"> <h3><a href="../basic_init/index.html">Basic initialisation</a></h3> <ul class="toc"> <li> <a href="../basic_init/zero_configuration.html">Zero configuration</a> </li> <li> <a href="../basic_init/filter_only.html">Feature enable / disable</a> </li> <li> <a href="../basic_init/table_sorting.html">Default ordering (sorting)</a> </li> <li> <a href="../basic_init/multi_col_sort.html">Multi-column ordering</a> </li> <li> <a href="../basic_init/multiple_tables.html">Multiple tables</a> </li> <li> <a href="../basic_init/hidden_columns.html">Hidden columns</a> </li> <li> <a href="../basic_init/complex_header.html">Complex headers (rowspan and colspan)</a> </li> <li> <a href="../basic_init/dom.html">DOM positioning</a> </li> <li> <a href="../basic_init/flexible_width.html">Flexible table width</a> </li> <li> <a href="../basic_init/state_save.html">State saving</a> </li> <li> <a href="../basic_init/alt_pagination.html">Alternative pagination</a> </li> <li> <a href="../basic_init/scroll_y.html">Scroll - vertical</a> </li> <li> <a href="../basic_init/scroll_y_dynamic.html">Scroll - vertical, dynamic height</a> </li> <li> <a href="../basic_init/scroll_x.html">Scroll - horizontal</a> </li> <li> <a href="../basic_init/scroll_xy.html">Scroll - horizontal and vertical</a> </li> <li> <a href="../basic_init/comma-decimal.html">Language - Comma decimal place</a> </li> <li> <a href="../basic_init/language.html">Language options</a> </li> </ul> </div> <div class="toc-group"> <h3><a href="../advanced_init/index.html">Advanced initialisation</a></h3> <ul class="toc"> <li> <a href="../advanced_init/events_live.html">DOM / jQuery events</a> </li> <li> <a href="../advanced_init/dt_events.html">DataTables events</a> </li> <li> <a href="../advanced_init/column_render.html">Column rendering</a> </li> <li> <a href="../advanced_init/length_menu.html">Page length options</a> </li> <li> <a href="../advanced_init/dom_multiple_elements.html">Multiple table control elements</a> </li> <li> <a href="../advanced_init/complex_header.html">Complex headers with column visibility</a> </li> <li> <a href="../advanced_init/object_dom_read.html">Read HTML to data objects</a> </li> <li> <a href="../advanced_init/html5-data-options.html">HTML5 data-* attributes - table options</a> </li> <li> <a href="../advanced_init/html5-data-attributes.html">HTML5 data-* attributes - cell data</a> </li> <li> <a href="../advanced_init/language_file.html">Language file</a> </li> <li> <a href="../advanced_init/defaults.html">Setting defaults</a> </li> <li> <a href="../advanced_init/row_callback.html">Row created callback</a> </li> <li> <a href="../advanced_init/row_grouping.html">Row grouping</a> </li> <li> <a href="../advanced_init/footer_callback.html">Footer callback</a> </li> <li> <a href="../advanced_init/dom_toolbar.html">Custom toolbar elements</a> </li> <li> <a href="../advanced_init/sort_direction_control.html">Order direction sequence control</a> </li> </ul> </div> <div class="toc-group"> <h3><a href="../styling/index.html">Styling</a></h3> <ul class="toc"> <li> <a href="../styling/display.html">Base style</a> </li> <li> <a href="../styling/no-classes.html">Base style - no styling classes</a> </li> <li> <a href="../styling/cell-border.html">Base style - cell borders</a> </li> <li> <a href="../styling/compact.html">Base style - compact</a> </li> <li> <a href="../styling/hover.html">Base style - hover</a> </li> <li> <a href="../styling/order-column.html">Base style - order-column</a> </li> <li> <a href="../styling/row-border.html">Base style - row borders</a> </li> <li> <a href="../styling/stripe.html">Base style - stripe</a> </li> <li> <a href="../styling/bootstrap.html">Bootstrap 3</a> </li> <li> <a href="../styling/foundation.html">Foundation</a> </li> <li> <a href="../styling/semanticui.html">Semantic UI</a> </li> <li> <a href="../styling/jqueryUI.html">jQuery UI ThemeRoller</a> </li> <li> <a href="../styling/bootstrap4.html">Bootstrap 4 (Tech. preview)</a> </li> <li> <a href="../styling/material.html">Material Design (Tech. preview)</a> </li> <li> <a href="../styling/uikit.html">UIKit (Tech. preview)</a> </li> </ul> </div> <div class="toc-group"> <h3><a href="../data_sources/index.html">Data sources</a></h3> <ul class="toc"> <li> <a href="../data_sources/dom.html">HTML (DOM) sourced data</a> </li> <li> <a href="../data_sources/ajax.html">Ajax sourced data</a> </li> <li> <a href="../data_sources/js_array.html">Javascript sourced data</a> </li> <li> <a href="../data_sources/server_side.html">Server-side processing</a> </li> </ul> </div> <div class="toc-group"> <h3><a href="../api/index.html">API</a></h3> <ul class="toc"> <li> <a href="../api/add_row.html">Add rows</a> </li> <li> <a href="../api/multi_filter.html">Individual column searching (text inputs)</a> </li> <li> <a href="../api/multi_filter_select.html">Individual column searching (select inputs)</a> </li> <li> <a href="../api/highlight.html">Highlighting rows and columns</a> </li> <li> <a href="../api/row_details.html">Child rows (show extra / detailed information)</a> </li> <li> <a href="../api/select_row.html">Row selection (multiple rows)</a> </li> <li> <a href="../api/select_single_row.html">Row selection and deletion (single row)</a> </li> <li> <a href="../api/form.html">Form inputs</a> </li> <li> <a href="../api/counter_columns.html">Index column</a> </li> <li> <a href="../api/show_hide.html">Show / hide columns dynamically</a> </li> <li> <a href="../api/api_in_init.html">Using API in callbacks</a> </li> <li> <a href="../api/tabs_and_scrolling.html">Scrolling and Bootstrap tabs</a> </li> <li> <a href="../api/regex.html">Search API (regular expressions)</a> </li> </ul> </div> <div class="toc-group"> <h3><a href="../ajax/index.html">Ajax</a></h3> <ul class="toc"> <li> <a href="../ajax/simple.html">Ajax data source (arrays)</a> </li> <li> <a href="../ajax/objects.html">Ajax data source (objects)</a> </li> <li> <a href="../ajax/deep.html">Nested object data (objects)</a> </li> <li> <a href="../ajax/objects_subarrays.html">Nested object data (arrays)</a> </li> <li> <a href="../ajax/orthogonal-data.html">Orthogonal data</a> </li> <li> <a href="../ajax/null_data_source.html">Generated content for a column</a> </li> <li> <a href="../ajax/custom_data_property.html">Custom data source property</a> </li> <li> <a href="../ajax/custom_data_flat.html">Flat array data source</a> </li> <li> <a href="../ajax/defer_render.html">Deferred rendering for speed</a> </li> </ul> </div> <div class="toc-group"> <h3><a href="../server_side/index.html">Server-side</a></h3> <ul class="toc"> <li> <a href="../server_side/simple.html">Server-side processing</a> </li> <li> <a href="../server_side/custom_vars.html">Custom HTTP variables</a> </li> <li> <a href="../server_side/post.html">POST data</a> </li> <li> <a href="../server_side/ids.html">Automatic addition of row ID attributes</a> </li> <li> <a href="../server_side/object_data.html">Object data source</a> </li> <li> <a href="../server_side/row_details.html">Row details</a> </li> <li> <a href="../server_side/select_rows.html">Row selection</a> </li> <li> <a href="../server_side/jsonp.html">JSONP data source for remote domains</a> </li> <li> <a href="../server_side/defer_loading.html">Deferred loading of data</a> </li> <li> <a href="../server_side/pipeline.html">Pipelining data to reduce Ajax calls for paging</a> </li> </ul> </div> <div class="toc-group"> <h3><a href="./index.html">Plug-ins</a></h3> <ul class="toc active"> <li> <a href="./api.html">API plug-in methods</a> </li> <li> <a href="./sorting_auto.html">Ordering plug-ins (with type detection)</a> </li> <li> <a href="./sorting_manual.html">Ordering plug-ins (no type detection)</a> </li> <li class="active"> <a href="./range_filtering.html">Custom filtering - range search</a> </li> <li> <a href="./dom_sort.html">Live DOM ordering</a> </li> </ul> </div> </div> <div class="epilogue"> <p>Please refer to the <a href="http://www.datatables.net">DataTables documentation</a> for full information about its API properties and methods.<br> Additionally, there are a wide range of <a href="http://www.datatables.net/extensions">extensions</a> and <a href= "http://www.datatables.net/plug-ins">plug-ins</a> which extend the capabilities of DataTables.</p> <p class="copyright">DataTables designed and created by <a href="http://www.sprymedia.co.uk">SpryMedia Ltd</a> © 2007-2017<br> DataTables is licensed under the <a href="http://www.datatables.net/mit">MIT license</a>.</p> </div> </div> </div> </section> </body> </html>
monoulou/lrm
web/DataTables/examples/plug-ins/range_filtering.html
HTML
mit
27,088
IsRequestedSessionIdFromCookie_01Test test PASSED
aakashysharma/opengse
testing/client-side/java/watchdog/resources/servlet-golden/javax_servlet_http/HttpServletRequest/IsRequestedSessionIdFromCookie_01Test.html
HTML
apache-2.0
50
<!DOCTYPE html> <title>CSS Cascade: 'revert' keyword in keyframe animations</title> <link rel="help" href="https://drafts.csswg.org/css-cascade/#default"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <style> @keyframes test { from { margin-top: 0px; } 50% { margin-top: revert; } to { margin-top: 0px; } } #h1 { margin-top: 0px; animation: test linear 1000s -500s; } </style> <h1 id=h1></h1> <h1 id=ref></h1> <script> test(function() { let actual = getComputedStyle(h1).marginTop; let expected = getComputedStyle(ref).marginTop; // This test assumes that the UA style sheet sets a non-0px value on // <h1> elements: assert_not_equals(expected, '0px'); assert_equals(actual, expected); }, 'The revert keyword works with @keyframes'); </script>
chromium/chromium
third_party/blink/web_tests/external/wpt/css/css-cascade/revert-val-006.html
HTML
bsd-3-clause
860
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Boost.Locale: Namespace Members</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="doxygen.css" rel="stylesheet" type="text/css" /> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); </script> </head> <body> <div id="top"><!-- do not remove this div! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="boost-small.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">Boost.Locale </div> </td> </tr> </tbody> </table> </div> <!-- Generated by Doxygen 1.7.6.1 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="modules.html"><span>Modules</span></a></li> <li class="current"><a href="namespaces.html"><span>Namespaces</span></a></li> <li><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> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="namespaces.html"><span>Namespace&#160;List</span></a></li> <li class="current"><a href="namespacemembers.html"><span>Namespace&#160;Members</span></a></li> </ul> </div> <div id="navrow3" class="tabs2"> <ul class="tablist"> <li><a href="namespacemembers.html"><span>All</span></a></li> <li class="current"><a href="namespacemembers_func.html"><span>Functions</span></a></li> <li><a href="namespacemembers_vars.html"><span>Variables</span></a></li> <li><a href="namespacemembers_type.html"><span>Typedefs</span></a></li> <li><a href="namespacemembers_enum.html"><span>Enumerations</span></a></li> <li><a href="namespacemembers_eval.html"><span>Enumerator</span></a></li> </ul> </div> <div id="navrow4" class="tabs3"> <ul class="tablist"> <li><a href="namespacemembers_func.html#index_a"><span>a</span></a></li> <li><a href="namespacemembers_func_0x62.html#index_b"><span>b</span></a></li> <li><a href="namespacemembers_func_0x63.html#index_c"><span>c</span></a></li> <li><a href="namespacemembers_func_0x64.html#index_d"><span>d</span></a></li> <li><a href="namespacemembers_func_0x65.html#index_e"><span>e</span></a></li> <li><a href="namespacemembers_func_0x66.html#index_f"><span>f</span></a></li> <li><a href="namespacemembers_func_0x67.html#index_g"><span>g</span></a></li> <li><a href="namespacemembers_func_0x68.html#index_h"><span>h</span></a></li> <li><a href="namespacemembers_func_0x69.html#index_i"><span>i</span></a></li> <li><a href="namespacemembers_func_0x6a.html#index_j"><span>j</span></a></li> <li><a href="namespacemembers_func_0x6c.html#index_l"><span>l</span></a></li> <li class="current"><a href="namespacemembers_func_0x6d.html#index_m"><span>m</span></a></li> <li><a href="namespacemembers_func_0x6e.html#index_n"><span>n</span></a></li> <li><a href="namespacemembers_func_0x6f.html#index_o"><span>o</span></a></li> <li><a href="namespacemembers_func_0x70.html#index_p"><span>p</span></a></li> <li><a href="namespacemembers_func_0x73.html#index_s"><span>s</span></a></li> <li><a href="namespacemembers_func_0x74.html#index_t"><span>t</span></a></li> <li><a href="namespacemembers_func_0x75.html#index_u"><span>u</span></a></li> <li><a href="namespacemembers_func_0x77.html#index_w"><span>w</span></a></li> <li><a href="namespacemembers_func_0x79.html#index_y"><span>y</span></a></li> </ul> </div> </div> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> initNavTree('namespacemembers_func_0x6d.html',''); </script> <div id="doc-content"> <div class="contents"> &#160; <h3><a class="anchor" id="index_m"></a>- m -</h3><ul> <li>march() : <a class="el" href="namespaceboost_1_1locale_1_1period.html#ac0d844780c28dc783879d82eaa192961">boost::locale::period</a> </li> <li>may() : <a class="el" href="namespaceboost_1_1locale_1_1period.html#a420d04f471ef28107ba1bd6a8edae263">boost::locale::period</a> </li> <li>minute() : <a class="el" href="namespaceboost_1_1locale_1_1period.html#a0490daa370b1e8c89b14d0af2db48073">boost::locale::period</a> </li> <li>monday() : <a class="el" href="namespaceboost_1_1locale_1_1period.html#a45ad1aeaf7a0e62ef26a42adca38da70">boost::locale::period</a> </li> <li>month() : <a class="el" href="namespaceboost_1_1locale_1_1period.html#a0f8bf7a07ded99184b22ebf4322e14e3">boost::locale::period</a> </li> </ul> </div><!-- contents --> </div> <div id="nav-path" class="navpath"> <ul> <li class="footer"> &copy; Copyright 2009-2012 Artyom Beilis, Distributed under the <a href="http://www.boost.org/LICENSE_1_0.txt">Boost Software License</a>, Version 1.0. </li> </ul> </div> </body> </html>
NixaSoftware/CVis
venv/bin/libs/locale/doc/html/namespacemembers_func_0x6d.html
HTML
apache-2.0
5,728
<template name="categoryTitle"> <h2 class="category-title post-list-title">{{title}}</h2> </template>
nikhilno1/Telescope
packages/telescope-tags/lib/client/templates/category_title.html
HTML
mit
104
{% extends "base.html" %} {% block title %}Yara Hits{% endblock %} {% block content %} {% include "jtable.html" %} {% endblock %}
kaoscoach/crits
crits/samples/templates/yarahits_listing.html
HTML
mit
135
<nav aria-label="Header"> <div class="bar default"> <div class="button button-menu" role="button" aria-label="Menu"> <label class="toggle-button icon icon-menu" for="toggle-drawer"> <span></span> </label> </div> <div class="stretch"> <div class="title"> {% if current_page %} <span class="path"> {% for doc in current_page.ancestors %} {% if doc.link %} <a href="{{ doc.link | e }}">{{ doc.title }}</a> <i class="icon icon-link"></i> {% else %} {{ doc.title }} <i class="icon icon-link"></i> {% endif %} {% endfor %} </span> {% endif %} {{ page_title | default(site_name, true) }} </div> </div> {% if config.extra.get("author", {}).twitter %} {% set author = config.extra.author.twitter %} <div class="button button-twitter" role="button" aria-label="Twitter"> <a href="https://twitter.com/{{ author }}" title="@{{ author }} on Twitter" target="_blank" class="toggle-button icon icon-twitter"></a> </div> {% endif %} {% if config.extra.get("author", {}).github %} {% set author = config.extra.author.github %} <div class="button button-github" role="button" aria-label="GitHub"> <a href="https://github.com/{{ author }}" title="@{{ author }} on GitHub" target="_blank" class="toggle-button icon icon-github"></a> </div> {% endif %} <div class="button button-search" role="button" aria-label="Search"> <label class="toggle-button icon icon-search" title="Search" for="toggle-search"></label> </div> </div> <div class="bar search"> <div class="button button-close" role="button" aria-label="Close"> <label class="toggle-button icon icon-back" for="toggle-search"></label> </div> <div class="stretch"> <div class="field"> <input class="query" type="text" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck> </div> </div> <div class="button button-reset" role="button" aria-label="Search"> <button class="toggle-button icon icon-close" id="reset-search"></button> </div> </div> </nav>
dmbates/MixedModels.jl
v0.5.8/header.html
HTML
mit
2,271
<strong>Here you would put the actual form to work on the task</strong> <p> You can use this form through Camunda Tasklist by setting the formKey of a BPMN User Task to: <code>embedded:app:forms/task-form.html</code> </p> <form class="form-horizontal"> <div class="control-group"> <label class="control-label">Name</label> <div class="controls"> <input type="text" cam-variable-name="name" readonly="true" class="form-control" /> </div> </div> <div class="control-group"> <label class="control-label">Approve?</label> <div class="controls"> <input type="checkbox" cam-variable-name="approved" cam-variable-type="Boolean" name="approved" class="form-control" /> </div> </div> <script cam-script type="text/form-script"> // custom JavaScript goes here </script> </form>
camunda/camunda-consulting
snippets/task-query-including-timeouts/src/main/webapp/forms/task-form.html
HTML
apache-2.0
925
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Header &lt;boost/tti/has_member_function.hpp&gt;</title> <link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="../../../index.html" title="Chapter&#160;1.&#160;The Type Traits Introspection Library"> <link rel="up" href="../../../reference.html" title="Reference"> <link rel="prev" href="../../../BOOST_TTI_HAS_MEMBER_DATA.html" title="Macro BOOST_TTI_HAS_MEMBER_DATA"> <link rel="next" href="../../../BOOST_TTI_TRAIT_HAS_MEMBER_FUNCTION.html" title="Macro BOOST_TTI_TRAIT_HAS_MEMBER_FUNCTION"> </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="../../../BOOST_TTI_HAS_MEMBER_DATA.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../reference.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="../../../BOOST_TTI_TRAIT_HAS_MEMBER_FUNCTION.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h3 class="title"> <a name="header.boost.tti.has_member_function_hpp"></a>Header &lt;<a href="../../../../../../../boost/tti/has_member_function.hpp" target="_top">boost/tti/has_member_function.hpp</a>&gt;</h3></div></div></div> <pre class="synopsis"> <a class="link" href="../../../BOOST_TTI_TRAIT_HAS_MEMBER_FUNCTION.html" title="Macro BOOST_TTI_TRAIT_HAS_MEMBER_FUNCTION">BOOST_TTI_TRAIT_HAS_MEMBER_FUNCTION</a>(trait, name) <a class="link" href="../../../BOOST_TTI_HAS_MEMBER_FUNCTION.html" title="Macro BOOST_TTI_HAS_MEMBER_FUNCTION">BOOST_TTI_HAS_MEMBER_FUNCTION</a>(name)</pre> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2011-2013 Tropic Software East Inc<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="../../../BOOST_TTI_HAS_MEMBER_DATA.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../reference.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="../../../BOOST_TTI_TRAIT_HAS_MEMBER_FUNCTION.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
NixaSoftware/CVis
venv/bin/libs/tti/doc/html/header/boost/tti/has_member_function_hpp.html
HTML
apache-2.0
3,626
<!DOCTYPE html> <title>drawImage() with SVG fragments</title> <script> onload = function() { var context = document.getElementsByTagName('canvas')[0].getContext('2d'); fillStyles = [ "green", "red", "blue" ]; fillStyles.forEach(function(fillStyle, i) { context.fillStyle = fillStyle; context.fillRect(i*60, i*60, 120, 120); }); } </script> <canvas width="240" height="240"></canvas>
scheib/chromium
third_party/blink/web_tests/svg/canvas/canvas-draw-image-svg-fragment-expected.html
HTML
bsd-3-clause
447
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>jQuery UI Autocomplete - Multiple values</title> <link rel="stylesheet" href="../../themes/base/all.css"> <link rel="stylesheet" href="../demos.css"> <script src="../../external/requirejs/require.js"></script> <script src="../bootstrap.js"> var availableTags = [ "ActionScript", "AppleScript", "Asp", "BASIC", "C", "C++", "Clojure", "COBOL", "ColdFusion", "Erlang", "Fortran", "Groovy", "Haskell", "Java", "JavaScript", "Lisp", "Perl", "PHP", "Python", "Ruby", "Scala", "Scheme" ]; function split( val ) { return val.split( /,\s*/ ); } function extractLast( term ) { return split( term ).pop(); } $( "#tags" ) // don't navigate away from the field on tab when selecting an item .on( "keydown", function( event ) { if ( event.keyCode === $.ui.keyCode.TAB && $( this ).autocomplete( "instance" ).menu.active ) { event.preventDefault(); } }) .autocomplete({ minLength: 0, source: function( request, response ) { // delegate back to autocomplete, but extract the last term response( $.ui.autocomplete.filter( availableTags, extractLast( request.term ) ) ); }, focus: function() { // prevent value inserted on focus return false; }, select: function( event, ui ) { var terms = split( this.value ); // remove the current input terms.pop(); // add the selected item terms.push( ui.item.value ); // add placeholder to get the comma-and-space at the end terms.push( "" ); this.value = terms.join( ", " ); return false; } }); </script> </head> <body> <div class="ui-widget"> <label for="tags">Tag programming languages: </label> <input id="tags" size="50"> </div> <div class="demo-description"> <p>Usage: Type something, eg. "j" to see suggestions for tagging with programming languages. Select a value, then continue typing to add more.</p> <p>This is an example showing how to use the source-option along with some events to enable autocompleting multiple values into a single field.</p> </div> </body> </html>
oavasquez/ingeneria_software
web-project/node_modules/jquery-ui/demos/autocomplete/multiple.html
HTML
mit
2,274
<!-- NOTE: These files are for example purposes only. Replace or customize as your institution requires. Customize this file @ /library/src/webapp/content/copyright/hold_copyright*.html For more information on customizing and extending this behavior, see the comments for fairuse.url @ /content/content-tool/tool/src/bundle/right.properties --> <html> <body> <H1>I Hold the copyright</H1> </body> </html>
OpenCollabZA/sakai
library/src/webapp/content/copyright/hold_copyright.html
HTML
apache-2.0
408
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>matrix_inverse.hpp Source File</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="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="projectlogo"><img alt="Logo" src="logo.png"/></td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.2 --> <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="modules.html"><span>Modules</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="files.html"><span>File&#160;List</span></a></li> </ul> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="dir_934f46a345653ef2b3014a1b37a162c1.html">G:</a></li><li class="navelem"><a class="el" href="dir_bf513233250988b6ff3b72f8482c1597.html">Repository</a></li><li class="navelem"><a class="el" href="dir_e217bba5d90990da93f61f0ea8b942dc.html">glm</a></li><li class="navelem"><a class="el" href="dir_a844bf6d5a07b8853f8463b41029861e.html">glm</a></li><li class="navelem"><a class="el" href="dir_1a190e7f93f4503d85aaef18e89b9041.html">gtc</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">matrix_inverse.hpp</div> </div> </div><!--header--> <div class="contents"> <a href="a00056.html">Go to the documentation of this file.</a><div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span>&#160;</div> <div class="line"><a name="l00002"></a><span class="lineno"> 2</span>&#160;</div> <div class="line"><a name="l00003"></a><span class="lineno"> 3</span>&#160;</div> <div class="line"><a name="l00004"></a><span class="lineno"> 4</span>&#160;</div> <div class="line"><a name="l00005"></a><span class="lineno"> 5</span>&#160;</div> <div class="line"><a name="l00006"></a><span class="lineno"> 6</span>&#160;</div> <div class="line"><a name="l00007"></a><span class="lineno"> 7</span>&#160;</div> <div class="line"><a name="l00008"></a><span class="lineno"> 8</span>&#160;</div> <div class="line"><a name="l00009"></a><span class="lineno"> 9</span>&#160;</div> <div class="line"><a name="l00010"></a><span class="lineno"> 10</span>&#160;</div> <div class="line"><a name="l00011"></a><span class="lineno"> 11</span>&#160;</div> <div class="line"><a name="l00012"></a><span class="lineno"> 12</span>&#160;</div> <div class="line"><a name="l00013"></a><span class="lineno"> 13</span>&#160;</div> <div class="line"><a name="l00014"></a><span class="lineno"> 14</span>&#160;</div> <div class="line"><a name="l00015"></a><span class="lineno"> 15</span>&#160;</div> <div class="line"><a name="l00016"></a><span class="lineno"> 16</span>&#160;</div> <div class="line"><a name="l00017"></a><span class="lineno"> 17</span>&#160;</div> <div class="line"><a name="l00018"></a><span class="lineno"> 18</span>&#160;</div> <div class="line"><a name="l00019"></a><span class="lineno"> 19</span>&#160;</div> <div class="line"><a name="l00020"></a><span class="lineno"> 20</span>&#160;</div> <div class="line"><a name="l00021"></a><span class="lineno"> 21</span>&#160;</div> <div class="line"><a name="l00022"></a><span class="lineno"> 22</span>&#160;</div> <div class="line"><a name="l00023"></a><span class="lineno"> 23</span>&#160;</div> <div class="line"><a name="l00024"></a><span class="lineno"> 24</span>&#160;</div> <div class="line"><a name="l00025"></a><span class="lineno"> 25</span>&#160;</div> <div class="line"><a name="l00026"></a><span class="lineno"> 26</span>&#160;</div> <div class="line"><a name="l00027"></a><span class="lineno"> 27</span>&#160;</div> <div class="line"><a name="l00028"></a><span class="lineno"> 28</span>&#160;</div> <div class="line"><a name="l00029"></a><span class="lineno"> 29</span>&#160;</div> <div class="line"><a name="l00030"></a><span class="lineno"> 30</span>&#160;</div> <div class="line"><a name="l00031"></a><span class="lineno"> 31</span>&#160;</div> <div class="line"><a name="l00032"></a><span class="lineno"> 32</span>&#160;</div> <div class="line"><a name="l00033"></a><span class="lineno"> 33</span>&#160;</div> <div class="line"><a name="l00034"></a><span class="lineno"> 34</span>&#160;</div> <div class="line"><a name="l00035"></a><span class="lineno"> 35</span>&#160;</div> <div class="line"><a name="l00036"></a><span class="lineno"> 36</span>&#160;</div> <div class="line"><a name="l00037"></a><span class="lineno"> 37</span>&#160;<span class="preprocessor">#ifndef GLM_GTC_matrix_inverse</span></div> <div class="line"><a name="l00038"></a><span class="lineno"> 38</span>&#160;<span class="preprocessor"></span><span class="preprocessor">#define GLM_GTC_matrix_inverse GLM_VERSION</span></div> <div class="line"><a name="l00039"></a><span class="lineno"> 39</span>&#160;<span class="preprocessor"></span></div> <div class="line"><a name="l00040"></a><span class="lineno"> 40</span>&#160;<span class="comment">// Dependency:</span></div> <div class="line"><a name="l00041"></a><span class="lineno"> 41</span>&#160;<span class="preprocessor">#include &quot;../glm.hpp&quot;</span></div> <div class="line"><a name="l00042"></a><span class="lineno"> 42</span>&#160;</div> <div class="line"><a name="l00043"></a><span class="lineno"> 43</span>&#160;<span class="preprocessor">#if(defined(GLM_MESSAGES) &amp;&amp; !defined(glm_ext))</span></div> <div class="line"><a name="l00044"></a><span class="lineno"> 44</span>&#160;<span class="preprocessor"></span><span class="preprocessor"># pragma message(&quot;GLM: GLM_GTC_matrix_inverse extension included&quot;)</span></div> <div class="line"><a name="l00045"></a><span class="lineno"> 45</span>&#160;<span class="preprocessor"></span><span class="preprocessor">#endif</span></div> <div class="line"><a name="l00046"></a><span class="lineno"> 46</span>&#160;<span class="preprocessor"></span></div> <div class="line"><a name="l00047"></a><span class="lineno"> 47</span>&#160;<span class="keyword">namespace </span>glm</div> <div class="line"><a name="l00048"></a><span class="lineno"> 48</span>&#160;{</div> <div class="line"><a name="l00051"></a><span class="lineno"> 51</span>&#160;</div> <div class="line"><a name="l00057"></a><span class="lineno"> 57</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> genType&gt; </div> <div class="line"><a name="l00058"></a><span class="lineno"> 58</span>&#160; genType <a class="code" href="a00150.html#ga644904b05dab519821fdaaa643ac9c0c" title="Fast matrix inverse for affine matrix.">affineInverse</a>(genType <span class="keyword">const</span> &amp; m);</div> <div class="line"><a name="l00059"></a><span class="lineno"> 59</span>&#160;</div> <div class="line"><a name="l00065"></a><span class="lineno"> 65</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> genType&gt; </div> <div class="line"><a name="l00066"></a><span class="lineno"> 66</span>&#160; GLM_FUNC_QUALIFIER <span class="keyword">typename</span> genType::value_type <a class="code" href="a00150.html#ga5fd97e07f032af2b5a4698b6bf0b9ecc" title="Compute the inverse transpose of a matrix.">inverseTranspose</a>(</div> <div class="line"><a name="l00067"></a><span class="lineno"> 67</span>&#160; genType <span class="keyword">const</span> &amp; m);</div> <div class="line"><a name="l00068"></a><span class="lineno"> 68</span>&#160;</div> <div class="line"><a name="l00070"></a><span class="lineno"> 70</span>&#160;}<span class="comment">//namespace glm</span></div> <div class="line"><a name="l00071"></a><span class="lineno"> 71</span>&#160;</div> <div class="line"><a name="l00072"></a><span class="lineno"> 72</span>&#160;<span class="preprocessor">#include &quot;matrix_inverse.inl&quot;</span></div> <div class="line"><a name="l00073"></a><span class="lineno"> 73</span>&#160;</div> <div class="line"><a name="l00074"></a><span class="lineno"> 74</span>&#160;<span class="preprocessor">#endif//GLM_GTC_matrix_inverse</span></div> </div><!-- fragment --></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.2 </small></address> </body> </html>
andresodio/lager
viewer/external/glm-0.9.4.0/doc/api/a00056_source.html
HTML
mit
9,268
<!doctype html> <html lang="en" data-framework="angularjs"> <head> <meta charset="utf-8"> <title>AngularJS • TodoMVC</title> <link rel="stylesheet" href="bower_components/todomvc-common/base.css"> <style>[ng-cloak] { display: none; }</style> </head> <body ng-app="todomvc"> <ng-view /> <script type="text/ng-template" id="todomvc-index.html"> <section id="todoapp" ng-controller="TodoCtrl"> <header id="header"> <h1>todos</h1> <form id="todo-form" ng-submit="addTodo()"> <input id="new-todo" placeholder="What needs to be done?" ng-model="newTodo" autofocus> </form> </header> <section id="main" ng-show="todos.length" ng-cloak> <input id="toggle-all" type="checkbox" ng-model="allChecked" ng-click="markAll(allChecked)"> <label for="toggle-all">Mark all as complete</label> <ul id="todo-list"> <li ng-repeat="todo in todos | filter:statusFilter track by $index" ng-class="{completed: todo.completed, editing: todo == editedTodo}"> <div class="view"> <input class="toggle" type="checkbox" ng-model="todo.completed"> <label ng-dblclick="editTodo(todo)">{{todo.title}}</label> <button class="destroy" ng-click="removeTodo(todo)"></button> </div> <form ng-submit="doneEditing(todo)"> <input class="edit" ng-trim="false" ng-model="todo.title" todo-escape="revertEditing(todo)" ng-blur="doneEditing(todo)" todo-focus="todo == editedTodo"> </form> </li> </ul> </section> <footer id="footer" ng-show="todos.length" ng-cloak> <span id="todo-count"><strong>{{remainingCount}}</strong> <ng-pluralize count="remainingCount" when="{ one: 'item left', other: 'items left' }"></ng-pluralize> </span> <ul id="filters"> <li> <a ng-class="{selected: status == ''} " href="#/">All</a> </li> <li> <a ng-class="{selected: status == 'active'}" href="#/active">Active</a> </li> <li> <a ng-class="{selected: status == 'completed'}" href="#/completed">Completed</a> </li> </ul> <button id="clear-completed" ng-click="clearCompletedTodos()" ng-show="completedCount">Clear completed ({{completedCount}})</button> </footer> </section> <footer id="info"> <p>Double-click to edit a todo</p> <p>Credits: <a href="http://twitter.com/cburgdorf">Christoph Burgdorf</a>, <a href="http://ericbidelman.com">Eric Bidelman</a>, <a href="http://jacobmumm.com">Jacob Mumm</a> and <a href="http://igorminar.com">Igor Minar</a> </p> <p>Part of <a href="http://todomvc.com">TodoMVC</a></p> </footer> </script> <script src="bower_components/todomvc-common/base.js"></script> <script src="bower_components/angular/angular.js"></script> <script src="bower_components/angular-route/angular-route.js"></script> <script src="js/app.js"></script> <script src="js/controllers/todoCtrl.js"></script> <script src="js/services/todoStorage.js"></script> <script src="js/directives/todoFocus.js"></script> <script src="js/directives/todoEscape.js"></script> </body> </html>
bigfish/grunt-ng-ctags
test/fixtures/index.html
HTML
mit
3,128
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <base href="../../" /> <script src="list.js"></script> <script src="page.js"></script> <link type="text/css" rel="stylesheet" href="page.css" /> </head> <body> <h1>[name]</h1> <div class="desc">Class for loading a [page:Texture texture].</div> <h2>Constructor</h2> <h3>[name]( [page:LoadingManager manager] )</h3> <div> [page:LoadingManager manager] — The [page:LoadingManager loadingManager] for the loader to use. Default is [page:LoadingManager THREE.DefaultLoadingManager]. </div> <div> Creates a new [name]. </div> <h2>Properties</h2> <h3>[property:String crossOrigin]</h3> <div> default — *null*.<br /> If set, assigns the *crossOrigin* attribute of the image to the value of *crossOrigin*, prior to starting the load. </div> <h2>Methods</h2> <h3>[method:null load]( [page:String url], [page:Function onLoad], [page:Function onProgress], [page:Function onError] )</h3> <div> [page:String url] — required<br /> [page:Function onLoad] — Will be called when load completes. The argument will be the loaded [page:Texture texture].<br /> [page:Function onProgress] — Will be called while load progresses. The argument will be the XmlHttpRequest instance, that contain .[page:Integer total] and .[page:Integer loaded] bytes.<br /> [page:Function onError] — Will be called when load errors.<br /> </div> <div> Begin loading from url and pass the loaded [page:Texture texture] to onLoad. </div> <h2>Example</h2> <code> // instantiate a loader var loader = new THREE.TextureLoader(); // load a resource loader.load( // resource URL 'textures/land_ocean_ice_cloud_2048.jpg', // Function when resource is loaded function ( texture ) { // do something with the texture var material = new THREE.MeshBasicMaterial( { map: texture } ); }, // Function called when download progresses function ( xhr ) { console.log( (xhr.loaded / xhr.total * 100) + '% loaded' ); }, // Function called when download errors function ( xhr ) { console.log( 'An error happened' ); } ); </code> [example:canvas_geometry_earth] <h2>Source</h2> [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js] </body> </html>
perryuwang/perryuwang.github.io
test/three.js-master/docs/api/loaders/TextureLoader.html
HTML
apache-2.0
2,355
<!DOCTYPE html> <style> .green { background-color: green; } .box { width: 200px; height: 200px; position: absolute; left: 300px; } </style> <!-- This test checks that we correctly invalidate reflection when they are removed. There should be only one green box below. --> <div class="green box" id="box"></div>
scheib/chromium
third_party/blink/web_tests/paint/invalidation/reflection/reflection-invalidation-after-display-expected.html
HTML
bsd-3-clause
328
<!DOCTYPE HTML> <script> if (window.internals) internals.settings.setViewportMetaEnabled(true); </script> <style> ::-webkit-scrollbar { display: none; } </style> <div style="width:40px;height:3000px;background:green"></div>
scheib/chromium
third_party/blink/web_tests/scrollbars/layout-viewport-scrollbars-hidden-expected.html
HTML
bsd-3-clause
230
<!DOCTYPE html> <html lang="en"> <head> <title>Another page</title> </head> <body> <div data-nstest-role="page" id="anotherPage"></div> </body> </html>
npmcomponent/cbou-jquery-mobile
tests/unit/navigation/sequence-tests/another-page.html
HTML
mit
155
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <script src="../../list.js"></script> <script src="../../page.js"></script> <link type="text/css" rel="stylesheet" href="../../page.css" /> </head> <body> [page:Object3D] &rarr; <h1>[name]</h1> <div class="desc">Scenes allow you to set up what and where is to be rendered by three.js. This is where you place objects, lights and cameras.</div> <h2>Constructor</h2> <h3>[name]()</h3> <div> Create a new scene object. </div> <h2>Properties</h2> <h3>.[page:Fog fog]</h3> <div>A [page:Fog fog] instance defining the type of fog that affects everything rendered in the scene. Default is null.</div> <h3>.[page:Material overrideMaterial]</h3> <div>If not null, it will force everything in the scene to be rendered with that material. Default is null.</div> <h3>.[page:boolean autoUpdate]</h3> <div> Default is true. If set, then the renderer checks every frame if the scene and it's objects needs matrix updates. When it isn't, then you have to maintain all matrices in the scene yourself. </div> <h2>Methods</h2> <h2>Source</h2> [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js] </body> </html>
lyaunzbe/jessy
three/docs/api/scenes/Scene.html
HTML
mit
1,268
<!doctype html> <html> <head> <title>Test for Bug 24742 - CSS tokenizer allows color in 6 hex digit notation to be followed by the next token without separation</title> <style> div { margin-bottom:11px; } </style> <script> if (window.testRunner) testRunner.dumpAsText(); function test() { var test_defs = [ /* description, expected style, test style */ ["Invalid: 0 hexadecimal digits", "", "border-bottom: solid #"], ["Invalid: 1 hexadecimal digits", "", "border-bottom: solid #1"], ["Invalid: 2 hexadecimal digits", "", "border-bottom: solid #11"], ["Valid: 3 hexadecimal digits", "border-bottom: solid rgb(17,17,17)", "border-bottom: solid #111"], ["Invalid: 4 hexadecimal digits", "", "border-bottom: solid #1111"], ["Invalid: 5 hexadecimal digits", "", "border-bottom: solid #11111"], ["Valid: 6 hexadecimal digits", "border-bottom: solid rgb(17,17,17)", "border-bottom: solid #111111"], ["Invalid: 7 hexadecimal digits", "", "border-bottom: solid #1111111"], ["Invalid: 0 hexadecimal digits concatenated with 'px'", "", "border-bottom: solid #px"], ["Invalid: 1 hexadecimal digits concatenated with 'px'", "", "border-bottom: solid #1px"], ["Invalid: 2 hexadecimal digits concatenated with 'px'", "", "border-bottom: solid #11px"], ["Invalid: 3 hexadecimal digits concatenated with 'px'", "", "border-bottom: solid #111px"], ["Invalid: 4 hexadecimal digits concatenated with 'px'", "", "border-bottom: solid #1111px"], ["Invalid: 5 hexadecimal digits concatenated with 'px'", "", "border-bottom: solid #11111px"], ["Invalid: 6 hexadecimal digits concatenated with 'px'", "", "border-bottom: solid #111111px"], ["Invalid: 7 hexadecimal digits concatenated with 'px'", "", "border-bottom: solid #1111111px"], ]; var testHtml = ""; for (var i = 0; i < test_defs.length; i++) { var test_def = test_defs[i]; testHtml += "<div>Test " + i + " (" + test_def[0] + ")" + "<span id='expected_" + i + "' style='" + test_def[1] + "'> [EXPECTED] </span>" + "<span id='actual_" + i + "' style='" + test_def[2] + "'> [ACTUAL] </span>" + "<span id='result_" + i + "'></span></div>"; } document.getElementById('tests').innerHTML = testHtml; for (var i = 0; i < test_defs.length; i++) { var expected = document.getElementById("expected_" + i).style.borderBottomColor; var actual = document.getElementById("actual_" + i).style.borderBottomColor; var message; var color; if (actual == expected) { message = "PASS"; color = "green"; } else { message = "FAIL: expected:'" + expected + "' actual:'" + actual + "'"; color = "red"; } var result = document.getElementById("result_" + i); result.innerHTML = message; result.style.color = color; } } </script> </head> <body onload="test()"> <div id='tests'>Test didn't run</div> </html>
js0701/chromium-crosswalk
third_party/WebKit/LayoutTests/fast/css/invalid-hex-color.html
HTML
bsd-3-clause
3,098
<html> <body> It's almost always a mistake to add a <b>boolean</b> parameter to a public method (part of an API) if that method is not a setter. When reading code using such a method, it can be difficult to decipher what the <b>boolean</b> stands for without looking at the source or documentation. This problem is also known as <a href="http://ariya.ofilabs.com/2011/08/hall-of-api-shame-boolean-trap.html">the boolean trap</a>. The <b>boolean</b> parameter can often be profitably replaced with an <b>enum</b> <!-- tooltip end --> <p> Use the option below to only warn when a method contains more than one boolean parameter. <p> <small>New in 13</small> </body> </html>
akosyakov/intellij-community
plugins/InspectionGadgets/src/inspectionDescriptions/BooleanParameter.html
HTML
apache-2.0
671
<!DOCTYPE html> <html> <body> <template id="target-template"> <svg width="90" height="90"> <feComponentTransfer> <feFuncR type="gamma" class="target" /> </feComponentTransfer> </svg> </template> <script src="resources/interpolation-test.js"></script> <script> 'use strict'; assertAttributeInterpolation({ property: 'exponent', from: '1', to: '6' }, [ {at: -0.4, is: -1}, {at: 0, is: 1}, {at: 0.2, is: 2}, {at: 0.6, is: 4}, {at: 1, is: 6}, {at: 1.4, is: 8} ]); </script> </body> </html>
scheib/chromium
third_party/blink/web_tests/animations/svg-attribute-interpolation/svg-exponent-interpolation.html
HTML
bsd-3-clause
504
<!DOCTYPE html> <body> <title>AbsoluteOrientationSensor Feature Policy Test: Disabled</title> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/feature-policy/resources/featurepolicy.js"></script> <script src="/generic-sensor/generic-sensor-feature-policy-test.sub.js"></script> <script> "use strict"; run_fp_tests_disabled('AbsoluteOrientationSensor'); </script> </body>
nwjs/chromium.src
third_party/blink/web_tests/external/wpt/orientation-sensor/AbsoluteOrientationSensor-disabled-by-feature-policy.https.html
HTML
bsd-3-clause
443
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML> <HEAD> <TITLE>File Wrappers</TITLE> <LINK REL="stylesheet" HREF="../../../../boost.css"> <LINK REL="stylesheet" HREF="../theme/iostreams.css"> </HEAD> <BODY> <!-- Begin Banner --> <H1 CLASS="title">File Wrappers</H1> <HR CLASS="banner"> <!-- End Banner --> <DL class="page-index"> <DT><A href="#overview">Overview</A></DT> <DT><A href="#headers">Headers</A></DT> <DT><A href="#reference">Reference</A> <UL> <LI CLASS="square"><A href="#file_source">Class template <CODE>basic_file_source</CODE></A></LI> <LI CLASS="square"><A href="#file_sink">Class template <CODE>basic_file_sink</CODE></A></LI> <LI CLASS="square"><A href="#file">Class template <CODE>basic_file</CODE></A></LI> </UL> </DT> </DL> <HR> <A NAME="overview"></A> <H2>Overview</H2> <P> The class templates <CODE>basic_file_source</CODE>, <CODE>basic_file_sink</CODE> and <CODE>basic_file</CODE> are wrappers for <CODE>std::basic_filebuf</CODE> which are <A HREF="http://www.boost.org/libs/utility/CopyConstructible.html" TARGET="_top">CopyConstructible</A> and <A HREF="http://www.boost.org/libs/utility/Assignable.html">Assignable</A>. They are useful whenever one wants to access a file without managing the lifetime of a standard file stream or stream buffer. This is because when a stream or stream buffer is added to a <A HREF="filtering_streambuf.html"><CODE>filtering_streambuf</CODE></A> or <A HREF="filtering_stream.html"><CODE>filtering_stream</CODE></A> it is stored as a reference which must remain valid until that stream or stream buffer is removed from the chain. </P> <P> The most common specializations are accessible via the typedefs <CODE>file_source</CODE>, <CODE>file_sink</CODE>, <CODE>file</CODE>, <CODE>wfile_source</CODE>, <CODE>wfile_sink</CODE> and <CODE>wfile</CODE>. </P> <A NAME="headers"></A> <H2>Headers</H2> <DL class="page-index"> <DT><A CLASS="header" HREF="../../../../boost/iostreams/device/file.hpp"><CODE>&lt;boost/iostreams/device/file.hpp&gt;</CODE></A></DT> </DL> <A NAME="reference"></A> <H2>Reference</H2> <A NAME="file_source"></A> <H3>Class template <CODE>basic_file_source</CODE></H3> <H4>Description</H4> <P> <A HREF="http://www.boost.org/libs/utility/CopyConstructible.html" TARGET="_top">CopyConstructible</A> and <A HREF="http://www.boost.org/libs/utility/Assignable.html">Assignable</A> wrapper for a <CODE>std::basic_filebuf</CODE> opened in read-only mode. <P> <A NAME="file_source_synopsis"></A> <H4>Synopsis</H4> <PRE CLASS="broken_ie"><SPAN CLASS="keyword">namespace</SPAN> boost { <SPAN CLASS="keyword">namespace</SPAN> iostreams { <SPAN CLASS="keyword">template</SPAN>&lt;<SPAN CLASS="keyword">typename</SPAN> <A CLASS="documented" HREF="#basic_file_source_params">Ch</A>&gt; <SPAN CLASS="keyword">class</SPAN> <A CLASS="documented" HREF="#basic_file_source_params">basic_file_source</A> { <SPAN CLASS="keyword">public</SPAN>: <SPAN CLASS="keyword">typedef</SPAN> Ch char_type; <SPAN CLASS="keyword">typedef</SPAN> <SPAN CLASS="omitted">implementation-defined</SPAN> category; <A CLASS="documented" HREF="#basic_file_source_constructor">basic_file_source</A>( <SPAN CLASS="keyword">const</SPAN> std::string&amp; path, std::ios_base::openmode mode = std::ios_base::in ); <SPAN CLASS="keyword">bool</SPAN> <A CLASS="documented" HREF="#basic_file_source_is_open">is_open</A>() <SPAN CLASS="keyword">const</SPAN>; <SPAN CLASS="omitted">...</SPAN> }; <SPAN CLASS="keyword">typedef</SPAN> basic_file_source&lt;<SPAN CLASS="keyword">char</SPAN>&gt; <SPAN CLASS="defined">file_source</SPAN>; <SPAN CLASS="keyword">typedef</SPAN> basic_file_source&lt;<SPAN CLASS="keyword">wchar_t</SPAN>&gt; <SPAN CLASS="defined">wfile_source</SPAN>; } } <SPAN CLASS='comment'>// End namespace boost::iostreams</SPAN></PRE> <A NAME="basic_file_source_params"></A> <H4>Template parameters</H4> <TABLE STYLE="margin-left:2em"> <TR> <TD><I>Ch</I></TD><TD VALIGN="top">-</TD> <TD>The character type.</TD></TR> <TR> </TABLE> <A NAME="basic_file_source_constructor"></A> <H4><CODE>basic_file_source::basic_file_source</CODE></H4> <PRE CLASS="broken_ie"> basic_file_source( <SPAN CLASS="keyword">const</SPAN> std::string&amp; path, std::ios_base::openmode mode );</PRE> <P> Constructs a <CODE>basic_file_source</CODE> which wraps a <CODE>std::basic_filebuf</CODE> <CODE>buf</CODE> opened as follows: <PRE CLASS="broken_ie"> mode |= std::ios_base::in; mode &amp;= ~std::ios_base::out; buf.open(path.c_str(), mode);</PRE> </P> <A NAME="basic_file_source_is_open"></A> <H4><CODE>basic_file_source::is_open</CODE></H4> <PRE CLASS="broken_ie"> <SPAN CLASS="keyword">bool</SPAN> is_open() <SPAN CLASS="keyword">const</SPAN>;</PRE> <P>Returns <CODE>true</CODE> if the underlying instance of <CODE>basic_filebuf</CODE> was opened successfully.</P> <A NAME="file_sink"></A> <H3>Class template <CODE>basic_file_sink</CODE></H3> <H4>Description</H4> <P> <A HREF="http://www.boost.org/libs/utility/CopyConstructible.html" TARGET="_top">CopyConstructible</A> and <A HREF="http://www.boost.org/libs/utility/Assignable.html">Assignable</A> wrapper for a <CODE>std::basic_filebuf</CODE> opened in write-only mode. <P> <A NAME="file_sink_synopsis"></A> <H4>Synopsis</H4> <PRE CLASS="broken_ie"><SPAN CLASS="keyword">namespace</SPAN> boost { <SPAN CLASS="keyword">namespace</SPAN> iostreams { <SPAN CLASS="keyword">template</SPAN>&lt;<SPAN CLASS="keyword">typename</SPAN> <A CLASS="documented" HREF="#basic_file_sink_params">Ch</A>&gt; <SPAN CLASS="keyword">class</SPAN> <A CLASS="documented" HREF="#basic_file_sink_params">basic_file_sink</A> { <SPAN CLASS="keyword">public</SPAN>: <SPAN CLASS="keyword">typedef</SPAN> Ch char_type; <SPAN CLASS="keyword">typedef</SPAN> <SPAN CLASS="omitted">implementation-defined</SPAN> category; <A CLASS="documented" HREF="#basic_file_sink_constructor">basic_file_sink</A>( <SPAN CLASS="keyword">const</SPAN> std::string&amp; path, std::ios_base::openmode mode = std::ios_base::out ); <SPAN CLASS="keyword">bool</SPAN> <A CLASS="documented" HREF="#basic_file_sink_is_open">is_open</A>() <SPAN CLASS="keyword">const</SPAN>; <SPAN CLASS="omitted">...</SPAN> }; <SPAN CLASS="keyword">typedef</SPAN> basic_file_sink&lt;<SPAN CLASS="keyword">char</SPAN>&gt; <SPAN CLASS="defined">file_sink</SPAN>; <SPAN CLASS="keyword">typedef</SPAN> basic_file_sink&lt;<SPAN CLASS="keyword">wchar_t</SPAN>&gt; <SPAN CLASS="defined">wfile_sink</SPAN>; } } <SPAN CLASS='comment'>// End namespace boost::iostreams</SPAN></PRE> <A NAME="basic_file_sink_params"></A> <H4>Template parameters</H4> <TABLE STYLE="margin-left:2em"> <TR> <TD><I>Ch</I></TD><TD VALIGN="top">-</TD> <TD>The character type.</TD></TR> <TR> </TABLE> <A NAME="basic_file_sink_constructor"></A> <H4><CODE>basic_file_sink::basic_file_sink</CODE></H4> <PRE CLASS="broken_ie"> basic_file_sink( <SPAN CLASS="keyword">const</SPAN> std::string&amp; path, std::ios_base::openmode mode );</PRE> <P> Constructs a <CODE>basic_file_sink</CODE> which wraps a <CODE>std::basic_filebuf</CODE> <CODE>buf</CODE> opened as follows: <PRE CLASS="broken_ie"> mode |= std::ios_base::out; mode &amp;= ~std::ios_base::in; buf.open(path.c_str(), mode);</PRE> </P> <A NAME="basic_file_sink_is_open"></A> <H4><CODE>basic_file_sink::is_open</CODE></H4> <PRE CLASS="broken_ie"> <SPAN CLASS="keyword">bool</SPAN> is_open() <SPAN CLASS="keyword">const</SPAN>;</PRE> <P>Returns <CODE>true</CODE> if the underlying instance of <CODE>basic_filebuf</CODE> was opened successfully.</P> <A NAME="file"></A> <H3>Class template <CODE>basic_file</CODE></H3> <H4>Description</H4> <P><A HREF="http://www.boost.org/libs/utility/CopyConstructible.html" TARGET="_top">CopyConstructible</A> and <A HREF="http://www.boost.org/libs/utility/Assignable.html">Assignable</A> wrapper for a <CODE>std::basic_filebuf</CODE> opened in read-write mode by default. <A NAME="file_synopsis"></A> <H4>Synopsis</H4> <PRE CLASS="broken_ie"><SPAN CLASS="keyword">namespace</SPAN> boost { <SPAN CLASS="keyword">namespace</SPAN> iostreams { <SPAN CLASS="keyword">template</SPAN>&lt;<SPAN CLASS="keyword">typename</SPAN> <A CLASS="documented" HREF="#basic_file_params">Ch</A>&gt; <SPAN CLASS="keyword">class</SPAN> <A CLASS="documented" HREF="#basic_file_params">basic_file</A> { <SPAN CLASS="keyword">public</SPAN>: <SPAN CLASS="keyword">typedef</SPAN> Ch char_type; <SPAN CLASS="keyword">typedef</SPAN> <SPAN CLASS="omitted">implementation-defined</SPAN> category; <A CLASS="documented" HREF="#basic_file_constructor">basic_file</A>( <SPAN CLASS="keyword">const</SPAN> std::string&amp; path, std::ios_base::openmode mode = std::ios_base::in | std::ios_base::out ); <SPAN CLASS="keyword">bool</SPAN> <A CLASS="documented" HREF="#basic_file_is_open">is_open</A>() <SPAN CLASS="keyword">const</SPAN>; <SPAN CLASS="omitted">...</SPAN> }; <SPAN CLASS="keyword">typedef</SPAN> basic_file&lt;<SPAN CLASS="keyword">char</SPAN>&gt; <SPAN CLASS="defined">file</SPAN>; <SPAN CLASS="keyword">typedef</SPAN> basic_file&lt;<SPAN CLASS="keyword">wchar_t</SPAN>&gt; <SPAN CLASS="defined">wfile</SPAN>; } } <SPAN CLASS='comment'>// End namespace boost::iostreams</SPAN></PRE> <A NAME="basic_file_params"></A> <H4>Template parameters</H4> <TABLE STYLE="margin-left:2em"> <TR> <TD><I>Ch</I></TD><TD VALIGN="top">-</TD> <TD>The character type.</TD></TR> <TR> </TABLE> <A NAME="basic_file_constructor"></A> <H4><CODE>basic_file_::basic_file</CODE></H4> <PRE CLASS="broken_ie"> basic_file( <SPAN CLASS="keyword">const</SPAN> std::string&amp; path, std::ios_base::openmode mode );</PRE> <P> Constructs a <CODE>basic_file</CODE> which wraps a <CODE>std::basic_filebuf</CODE> <CODE>buf</CODE> opened as follows: <PRE CLASS="broken_ie"> mode |= std::ios_base::in | std::ios_base::out; buf.open(path.c_str(), mode);</PRE> </P> <A NAME="basic_file_is_open"></A> <H4><CODE>basic_file::is_open</CODE></H4> <PRE CLASS="broken_ie"> <SPAN CLASS="keyword">bool</SPAN> is_open() <SPAN CLASS="keyword">const</SPAN>;</PRE> <P>Returns <CODE>true</CODE> if the underlying instance of <CODE>basic_filebuf</CODE> was opened successfully.</P> <!-- Begin Footer --> <HR> <P CLASS="copyright">&copy; Copyright 2008 <a href="http://www.coderage.com/" target="_top">CodeRage, LLC</a><br/>&copy; Copyright 2004-2007 <a href="http://www.coderage.com/turkanis/" target="_top">Jonathan Turkanis</a></P> <P CLASS="copyright"> 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">http://www.boost.org/LICENSE_1_0.txt</A>) </P> <!-- End Footer --> </BODY>
NixaSoftware/CVis
venv/bin/libs/iostreams/doc/classes/file.html
HTML
apache-2.0
11,165
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <title>Uses of Class com.parse.ParseCloud</title> <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 com.parse.ParseCloud"; } //--> </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="../../../com/parse/package-summary.html">Package</a></li> <li><a href="../../../com/parse/ParseCloud.html" title="class in com.parse">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/parse/class-use/ParseCloud.html" target="_top">Frames</a></li> <li><a href="ParseCloud.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 com.parse.ParseCloud" class="title">Uses of Class<br>com.parse.ParseCloud</h2> </div> <div class="classUseContainer">No usage of com.parse.ParseCloud</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="../../../com/parse/package-summary.html">Package</a></li> <li><a href="../../../com/parse/ParseCloud.html" title="class in com.parse">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/parse/class-use/ParseCloud.html" target="_top">Frames</a></li> <li><a href="ParseCloud.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
didouard/beelee
presentation/libs/save/Parse-1.9.2-javadoc/com/parse/class-use/ParseCloud.html
HTML
apache-2.0
3,640
<html> <head> <style> div { background: red; height: 100px; width: 100px; } </style> </head> <body style='margin: 0px'> <div> <img style='width: 100%; height: 100%' src='resources/green-relative-size-rect.svg'> </div> </body> </html>
nwjs/chromium.src
third_party/blink/web_tests/svg/as-image/svg-as-relative-image.html
HTML
bsd-3-clause
242
<html> <body> Reports on <b>while</b> loops which spin on the value of a non-volatile field, waiting for it to be changed by another thread. In addition to being potentially extremely CPU intensive when little work is done inside the loop, such loops are likely have different semantics than intended, as the Java Memory Model allows such field accesses to be hoisted out of the loop, causing the loop to never complete even if another thread does change the field's value. <!-- tooltip end --> <p> </body> </html>
android-ia/platform_tools_idea
plugins/InspectionGadgets/src/inspectionDescriptions/WhileLoopSpinsOnField.html
HTML
apache-2.0
515
<html> <head> <title>Testcase for bugzilla bug 6418</title> </head> <body> <p> This tests for a regression against <i><a href="https://bugs.webkit.org/show_bug.cgi?id=6418">http://bugzilla.opendarwin.org/show_bug.cgi?id=6418</a> Incorrect scrollbar when using overflow:auto and word-wrap:break-word; in some cases</i>. </p> <hr> <p> The first line should break after &ldquo;Lorem&rdquo;. </p> <div style="fonty-family: Times; font-size: 16px; width:83px; border: 1px cyan solid;"> Lorem ipsum<span> dolor</span> </div> <hr> <p> The first line should break after the letter u, so that the gray border does not extend beyond the cyan box. </p> <div style="width: 85px; font-size: 16px; word-wrap:break-word; border: solid 1px cyan; font-family: Times;"> <span style="border-right: 30px silver solid;">Loremipsum</span> </div> <hr> <p> The first line should break after the letter p, so that the text does not extend beyond the cyan box. </p> <div style="width: 85px; font-size: 16px; word-wrap:break-word; border: solid 1px cyan; font-family: Times;"> <span style="border-left: 30px silver solid;">Loremipsum</span> </div> <hr> <p> &ldquo;Dolor&rdquo; should not break into two lines. </p> <div style="position: absolute;"> <div style="font-size: 16px; word-wrap:break-word; border: solid 1px cyan; font-family: 'Lucida Grande';"> Dolor </div> </div> </body> </html>
scheib/chromium
third_party/blink/web_tests/virtual/text-antialias/basic/015.html
HTML
bsd-3-clause
1,593
<body onload="$#*@#(!_)"> This test ensures we don't crash when we are given garbage for an attribute expecting a function.<br /> https://bugs.webkit.org/show_bug.cgi?id=19025 </body> <script> if (this.testRunner) testRunner.dumpAsText(); </script>
scheib/chromium
third_party/blink/web_tests/fast/js/invalid-syntax-for-function.html
HTML
bsd-3-clause
260
<!DOCTYPE html> <html> <head> <title>CSS Grid Layout Reference</title> <link rel="author" title="Leo Deng" href="mailto:myst.dg@gmail.com"> <style> body { margin: 0; padding: 0; border: 0 none; } #caseTitle { margin: 10px; height: 40px; } #grid { margin: 0; width: 300px; } .a { background: blue; width: 100px; float: left; } .b { background: yellow; width: 50px; float: left; } .c { background: pink; width: 100px; clear: both; float: left; } </style> </head> <body> <p id="caseTitle">The test passes if it has the same visual effect as reference.</p> <div id="grid"> <div class="a">&nbsp;</div> <div class="b">&nbsp;</div> <div class="c">&nbsp;</div> </div> </body> </html>
nwjs/chromium.src
third_party/blink/web_tests/external/wpt/css/css-grid/reference/grid-layout-auto-tracks-ref.html
HTML
bsd-3-clause
937
<div data-page="virtual-list" class="page"> <div class="navbar"> <div class="navbar-inner"> <div class="left"><a href="index.html" class="back link icon-only"><i class="icon icon-back"></i></a></div> <div class="center">Virtual List</div> <div class="right"><a href="#" class="open-panel link icon-only"><i class="icon icon-bars"></i></a></div> </div> </div> <form data-search-list=".virtual-list" class="searchbar searchbar-init"> <div class="searchbar-input"> <input type="search" placeholder="Search"/><a href="#" class="searchbar-clear"></a> </div> </form> <div class="searchbar-overlay"></div> <div class="page-content"> <div class="content-block"> <p>Virtual List allows to render lists with huge amount of elements without loss of performance. And it is fully compatible with all Framework7 list components such as Search Bar, Infinite Scroll, Pull To Refresh, Swipeouts (swipe-to-delete) and Sortable.</p> <p>Here is the example of virtual list with 10 000 items:</p> </div> <div class="list-block virtual-list searchbar-found media-list"></div> <div class="list-block searchbar-not-found"> <ul> <li class="item-content"> <div class="item-inner"> <div class="item-title">Nothing found</div> </div> </li> </ul> </div> </div> </div>
yayanbachtiar/cordova-with-framework7
www/virtual-list.html
HTML
apache-2.0
1,385
<div> Controls how Jenkins schedules builds on this node. <dl> <dt><b> Utilize this node as much as possible </b></dt> <dd> This is the default and normal setting. In this mode, Jenkins uses this node freely. Whenever there is a build that can be done by using this node, Jenkins will use it. </dd> <dt><b> Only build jobs with label restrictions matching this node </b></dt> <dd> In this mode, Jenkins will only build a project on this node when that project is restricted to certain nodes using a label expression, and that expression matches this node&apos;s name and/or labels. This allows a slave to be reserved for certain kinds of jobs. For example, to run performance tests continuously from Jenkins, you can use this setting with # of executors as 1, so that only one performance test runs at any given time, and that one executor won't be blocked by other builds that can be done on other nodes. </dd> </dl> </div>
albers/jenkins
war/src/main/webapp/help/system-config/master-slave/usage.html
HTML
mit
1,043
<!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.5"/> <title>GLM: integer.hpp Source File</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="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">GLM &#160;<span id="projectnumber">0.9.5</span> </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.5 --> <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="modules.html"><span>Modules</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="files.html"><span>File&#160;List</span></a></li> </ul> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="dir_8ceffd4ee35c3518d4e8bdc7e638efe8.html">Users</a></li><li class="navelem"><a class="el" href="dir_968fb7988749a6351e7b3d0c1783dec4.html">Groove</a></li><li class="navelem"><a class="el" href="dir_6e418c18ca640a0404613de005739e2e.html">Documents</a></li><li class="navelem"><a class="el" href="dir_e3ecd7863bd215c92a17f47e2ae3be43.html">GitHub</a></li><li class="navelem"><a class="el" href="dir_edf753475b928be648c1cf1c6443cf63.html">glm</a></li><li class="navelem"><a class="el" href="dir_e50778361fd4ab4de52181ed9eb2b726.html">glm</a></li><li class="navelem"><a class="el" href="dir_a8d99eddac27b2368ab5252ce80ded11.html">gtx</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">gtx/integer.hpp</div> </div> </div><!--header--> <div class="contents"> <a href="a00049.html">Go to the documentation of this file.</a><div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span>&#160;</div> <div class="line"><a name="l00038"></a><span class="lineno"> 38</span>&#160;<span class="preprocessor">#ifndef GLM_GTX_integer</span></div> <div class="line"><a name="l00039"></a><span class="lineno"> 39</span>&#160;<span class="preprocessor"></span><span class="preprocessor">#define GLM_GTX_integer</span></div> <div class="line"><a name="l00040"></a><span class="lineno"> 40</span>&#160;<span class="preprocessor"></span></div> <div class="line"><a name="l00041"></a><span class="lineno"> 41</span>&#160;<span class="comment">// Dependency:</span></div> <div class="line"><a name="l00042"></a><span class="lineno"> 42</span>&#160;<span class="preprocessor">#include &quot;../glm.hpp&quot;</span></div> <div class="line"><a name="l00043"></a><span class="lineno"> 43</span>&#160;</div> <div class="line"><a name="l00044"></a><span class="lineno"> 44</span>&#160;<span class="preprocessor">#if(defined(GLM_MESSAGES) &amp;&amp; !defined(GLM_EXT_INCLUDED))</span></div> <div class="line"><a name="l00045"></a><span class="lineno"> 45</span>&#160;<span class="preprocessor"></span><span class="preprocessor"># pragma message(&quot;GLM: GLM_GTX_integer extension included&quot;)</span></div> <div class="line"><a name="l00046"></a><span class="lineno"> 46</span>&#160;<span class="preprocessor"></span><span class="preprocessor">#endif</span></div> <div class="line"><a name="l00047"></a><span class="lineno"> 47</span>&#160;<span class="preprocessor"></span></div> <div class="line"><a name="l00048"></a><span class="lineno"> 48</span>&#160;<span class="keyword">namespace </span>glm</div> <div class="line"><a name="l00049"></a><span class="lineno"> 49</span>&#160;{</div> <div class="line"><a name="l00052"></a><span class="lineno"> 52</span>&#160;</div> <div class="line"><a name="l00055"></a><span class="lineno"> 55</span>&#160; <span class="keywordtype">int</span> <a class="code" href="a00156.html#ga1ce4b2fddd26d0d3a35a8d98f37f3ac0">pow</a>(<span class="keywordtype">int</span> x, <span class="keywordtype">int</span> y);</div> <div class="line"><a name="l00056"></a><span class="lineno"> 56</span>&#160;</div> <div class="line"><a name="l00059"></a><span class="lineno"> 59</span>&#160; <span class="keywordtype">int</span> <a class="code" href="a00156.html#ga2317d4ff45af448b8402431afa0711f3">sqrt</a>(<span class="keywordtype">int</span> x);</div> <div class="line"><a name="l00060"></a><span class="lineno"> 60</span>&#160;</div> <div class="line"><a name="l00063"></a><span class="lineno"> 63</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> genIUType&gt;</div> <div class="line"><a name="l00064"></a><span class="lineno"> 64</span>&#160; genIUType <a class="code" href="a00156.html#gace633300a51ca1cbc1a42f565dcd3407">log2</a>(genIUType <span class="keyword">const</span> &amp; x);</div> <div class="line"><a name="l00065"></a><span class="lineno"> 65</span>&#160;</div> <div class="line"><a name="l00068"></a><span class="lineno"> 68</span>&#160; <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> <a class="code" href="a00202.html#ga054b9fd24e0d18af9ae7e9b6bfb5a2c9">floor_log2</a>(<span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> x);</div> <div class="line"><a name="l00069"></a><span class="lineno"> 69</span>&#160;</div> <div class="line"><a name="l00072"></a><span class="lineno"> 72</span>&#160; <span class="keywordtype">int</span> <a class="code" href="a00155.html#ga8cc8a75b05125fe1c30de43102ef42e1">mod</a>(<span class="keywordtype">int</span> x, <span class="keywordtype">int</span> y);</div> <div class="line"><a name="l00073"></a><span class="lineno"> 73</span>&#160;</div> <div class="line"><a name="l00076"></a><span class="lineno"> 76</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> genType&gt; </div> <div class="line"><a name="l00077"></a><span class="lineno"> 77</span>&#160; genType <a class="code" href="a00202.html#ga6912d62d2f314fa38ef4c94fda778294">factorial</a>(genType <span class="keyword">const</span> &amp; x);</div> <div class="line"><a name="l00078"></a><span class="lineno"> 78</span>&#160;</div> <div class="line"><a name="l00081"></a><span class="lineno"><a class="line" href="a00202.html#gada7e83fdfe943aba4f1d5bf80cb66f40"> 81</a></span>&#160; <span class="keyword">typedef</span> <span class="keywordtype">signed</span> <span class="keywordtype">int</span> <a class="code" href="a00202.html#gada7e83fdfe943aba4f1d5bf80cb66f40">sint</a>;</div> <div class="line"><a name="l00082"></a><span class="lineno"> 82</span>&#160;</div> <div class="line"><a name="l00085"></a><span class="lineno"> 85</span>&#160; <a class="code" href="a00169.html#ga91ad9478d81a7aaf2593e8d9c3d06a14">uint</a> <a class="code" href="a00156.html#ga1ce4b2fddd26d0d3a35a8d98f37f3ac0">pow</a>(<a class="code" href="a00169.html#ga91ad9478d81a7aaf2593e8d9c3d06a14">uint</a> x, <a class="code" href="a00169.html#ga91ad9478d81a7aaf2593e8d9c3d06a14">uint</a> y);</div> <div class="line"><a name="l00086"></a><span class="lineno"> 86</span>&#160;</div> <div class="line"><a name="l00089"></a><span class="lineno"> 89</span>&#160; <a class="code" href="a00169.html#ga91ad9478d81a7aaf2593e8d9c3d06a14">uint</a> <a class="code" href="a00156.html#ga2317d4ff45af448b8402431afa0711f3">sqrt</a>(<a class="code" href="a00169.html#ga91ad9478d81a7aaf2593e8d9c3d06a14">uint</a> x);</div> <div class="line"><a name="l00090"></a><span class="lineno"> 90</span>&#160;</div> <div class="line"><a name="l00093"></a><span class="lineno"> 93</span>&#160; <a class="code" href="a00169.html#ga91ad9478d81a7aaf2593e8d9c3d06a14">uint</a> <a class="code" href="a00155.html#ga8cc8a75b05125fe1c30de43102ef42e1">mod</a>(<a class="code" href="a00169.html#ga91ad9478d81a7aaf2593e8d9c3d06a14">uint</a> x, <a class="code" href="a00169.html#ga91ad9478d81a7aaf2593e8d9c3d06a14">uint</a> y);</div> <div class="line"><a name="l00094"></a><span class="lineno"> 94</span>&#160;</div> <div class="line"><a name="l00097"></a><span class="lineno"> 97</span>&#160; <a class="code" href="a00169.html#ga91ad9478d81a7aaf2593e8d9c3d06a14">uint</a> <a class="code" href="a00202.html#gade78ad3e82d61001f4641571db4dd56e">nlz</a>(<a class="code" href="a00169.html#ga91ad9478d81a7aaf2593e8d9c3d06a14">uint</a> x);</div> <div class="line"><a name="l00098"></a><span class="lineno"> 98</span>&#160;</div> <div class="line"><a name="l00100"></a><span class="lineno"> 100</span>&#160;}<span class="comment">//namespace glm</span></div> <div class="line"><a name="l00101"></a><span class="lineno"> 101</span>&#160;</div> <div class="line"><a name="l00102"></a><span class="lineno"> 102</span>&#160;<span class="preprocessor">#include &quot;integer.inl&quot;</span></div> <div class="line"><a name="l00103"></a><span class="lineno"> 103</span>&#160;</div> <div class="line"><a name="l00104"></a><span class="lineno"> 104</span>&#160;<span class="preprocessor">#endif//GLM_GTX_integer</span></div> <div class="ttc" id="a00156_html_ga2317d4ff45af448b8402431afa0711f3"><div class="ttname"><a href="a00156.html#ga2317d4ff45af448b8402431afa0711f3">glm::sqrt</a></div><div class="ttdeci">GLM_FUNC_DECL genType sqrt(genType const &amp;x)</div><div class="ttdoc">Returns the positive square root of x. </div></div> <div class="ttc" id="a00202_html_ga054b9fd24e0d18af9ae7e9b6bfb5a2c9"><div class="ttname"><a href="a00202.html#ga054b9fd24e0d18af9ae7e9b6bfb5a2c9">glm::floor_log2</a></div><div class="ttdeci">unsigned int floor_log2(unsigned int x)</div><div class="ttdoc">Returns the floor log2 of x. </div></div> <div class="ttc" id="a00169_html_ga91ad9478d81a7aaf2593e8d9c3d06a14"><div class="ttname"><a href="a00169.html#ga91ad9478d81a7aaf2593e8d9c3d06a14">glm::uint</a></div><div class="ttdeci">unsigned int uint</div><div class="ttdoc">Unsigned integer type. </div><div class="ttdef"><b>Definition:</b> <a href="a00121_source.html#l00171">type_int.hpp:171</a></div></div> <div class="ttc" id="a00202_html_gada7e83fdfe943aba4f1d5bf80cb66f40"><div class="ttname"><a href="a00202.html#gada7e83fdfe943aba4f1d5bf80cb66f40">glm::sint</a></div><div class="ttdeci">signed int sint</div><div class="ttdoc">32bit signed integer. </div><div class="ttdef"><b>Definition:</b> <a href="a00049_source.html#l00081">gtx/integer.hpp:81</a></div></div> <div class="ttc" id="a00155_html_ga8cc8a75b05125fe1c30de43102ef42e1"><div class="ttname"><a href="a00155.html#ga8cc8a75b05125fe1c30de43102ef42e1">glm::mod</a></div><div class="ttdeci">GLM_FUNC_DECL genType mod(genType const &amp;x, genType const &amp;y)</div><div class="ttdoc">Modulus. </div></div> <div class="ttc" id="a00156_html_gace633300a51ca1cbc1a42f565dcd3407"><div class="ttname"><a href="a00156.html#gace633300a51ca1cbc1a42f565dcd3407">glm::log2</a></div><div class="ttdeci">GLM_FUNC_DECL genType log2(genType const &amp;x)</div><div class="ttdoc">Returns the base 2 log of x, i.e., returns the value y, which satisfies the equation x = 2 ^ y...</div></div> <div class="ttc" id="a00202_html_ga6912d62d2f314fa38ef4c94fda778294"><div class="ttname"><a href="a00202.html#ga6912d62d2f314fa38ef4c94fda778294">glm::factorial</a></div><div class="ttdeci">genType factorial(genType const &amp;x)</div><div class="ttdoc">Return the factorial value of a number (!12 max, integer only) From GLM_GTX_integer extension...</div></div> <div class="ttc" id="a00156_html_ga1ce4b2fddd26d0d3a35a8d98f37f3ac0"><div class="ttname"><a href="a00156.html#ga1ce4b2fddd26d0d3a35a8d98f37f3ac0">glm::pow</a></div><div class="ttdeci">GLM_FUNC_DECL genType pow(genType const &amp;base, genType const &amp;exponent)</div><div class="ttdoc">Returns &amp;#39;base&amp;#39; raised to the power &amp;#39;exponent&amp;#39;. </div></div> <div class="ttc" id="a00202_html_gade78ad3e82d61001f4641571db4dd56e"><div class="ttname"><a href="a00202.html#gade78ad3e82d61001f4641571db4dd56e">glm::nlz</a></div><div class="ttdeci">uint nlz(uint x)</div><div class="ttdoc">Returns the number of leading zeros. </div></div> </div><!-- fragment --></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.5 </small></address> </body> </html>
googlearchive/tango-examples-c
third_party/glm/doc/api/a00049_source.html
HTML
apache-2.0
13,193
<!--#include file="header.html" --> <h3>Developer Access</h3> Because we use Git for version control, you don't need developer (ssh) access on uclibc.org to contribute to Buildroot, but you can request it if needed. <p> To obtain developer access, you will need to demonstrate you are serious by submitting a few good patches first. Then, you will need to select a username to use when logging in, you will need to send me the username you have selected, you must send me your preferred contact email address, and finally, you must send me an ssh version 2 DSA key with 1024 bits (the default) or more. If you do not currently have an ssh version 2 DSA key, you can generate a key using the command<pre>ssh-keygen -t dsa</pre> This will create the files <pre>/home/&lt;USERNAME&gt;/ssh/id_dsa /home/&lt;USERNAME&gt;/.ssh/id_dsa.pub</pre> It is recommended that you generate a key with a "passphrase" for security reasons. <p> Make the file known to the system by running <pre>ssh-add ~/.ssh/id_dsa</pre> You must then send the content of 'id_dsa.pub' to me so I can setup your account. The content of 'id_dsa' should of course be kept secret. <p> Once you have an account, you can use it to store Git repositories. Simply put them in subdirectories of your ~/git, and touch ~/git/<repo>/git-daemon-export-ok, after which the hourly cronjob will pick them up and show them in cgit. They are also available though git-daemon: <pre>git clone git://git.buildroot.net/~&lt;USERNAME&gt/git/&lt;REPO&gt;</pre> For additional detail on how to use Git, please visit the <a href="http://git-scm.org/">the Git website</a>. <!--#include file="footer.html" -->
indashnet/InDashNet.Open.UN2000
lichee/buildroot/docs/developer.html
HTML
apache-2.0
1,665
<!DOCTYPE html> <meta charset=utf-8> <title>invalid srcset-microsyntax-negative-zero-w</title> <img srcset='x -0w' sizes=100vw src=x alt>
youtube/cobalt
third_party/web_platform_tests/conformance-checkers/html/elements/picture/srcset-microsyntax-negative-zero-w-novalid.html
HTML
bsd-3-clause
137
<!DOCTYPE html> <meta charset=utf-8> <title>invalid src: path-trailing-space</title> <iframe src="http://f:21/b ?"></iframe>
youtube/cobalt
third_party/web_platform_tests/conformance-checkers/html/elements/iframe/src/path-trailing-space-novalid.html
HTML
bsd-3-clause
125
<!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> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"></meta> <title>16491-24-0.smi.png.html</title> </head> <body>ID16491-24-0<br/> <img border="0" src="16491-24-0.smi.png" alt="16491-24-0.smi.png"></img><br/> <br/> <table border="1"> <tr> <td></td><td>ID</td><td>Formula</td><td>FW</td><td>DSSTox_CID</td><td>DSSTox_RID</td><td>DSSTox_GSID</td><td>DSSTox_FileID_Sort</td><td>TS_ChemName</td><td>TS_ChemName_Synonyms</td><td>TS_CASRN</td><td>CASRN_ChemName_Relationship</td><td>TS_Description</td><td>ChemNote</td><td>STRUCTURE_Shown</td><td>STRUCTURE_Formula</td><td>STRUCTURE_MW</td><td>STRUCTURE_ChemType</td><td>STRUCTURE_DefinedOrganicForm</td><td>STRUCTURE_IUPAC</td><td>STRUCTURE_SMILES</td><td>STRUCTURE_SMILES_Desalt</td><td>Substance_modify_yyyymmdd</td></tr> <tr> <td>16491-24-0</td><td>12556</td><td>C10H16O2</td><td>168.2328</td><td>27414</td><td>82328</td><td>47414</td><td>7009</td><td>2,4-Hexadienyl isobutyrate</td><td></td><td>16491-24-0</td><td>primary</td><td>single chemical compound</td><td>mixture of Z,E isomers</td><td>tested chemical</td><td>C10H16O2</td><td>168.2328</td><td>defined organic</td><td>parent</td><td>hexa-2,4-dien-1-yl 2-methylpropanoate</td><td>O=C(OCC=CC=CC)C(C)C</td><td>O=C(OCC=CC=CC)C(C)C</td><td>20100618</td></tr> </table> <br/><br/><font size="-2">(Page generated on Wed Sep 17 04:03:31 2014 by <a href="http://www.embl.de/~gpau/hwriter/index.html">hwriter</a> 1.3)</font><br/> </body></html>
andrewdefries/ToxCast
Figure3/Tox21_nnm/WorkHere/16491-24-0.smi.png.html
HTML
mit
1,655
<GridLayout class="page"> <StackLayout #mainContainer class="main-container"> <Label class="main-label" [text]="subtitleMessage" textWrap=true color='white'></Label> <GridLayout #formControls [formGroup]="loginForm" class="form-controls" rows="auto, auto" translateY="0"> <TextField formControlName="username" autocorrect="false" hint="Earlham Username" keyboardType="email" (returnPress)="focusPassword()" returnKeyType="next" autocapitalizationType="none" row="0"></TextField> <TextField #password formControlName="password" hint="Password" secure="true" returnKeyType="done" (returnPress)="onLogIn()" row="1"></TextField> </GridLayout> <Button text="Log In" clearHistory="true" (tap)="onLogIn()" class="submit-button"></Button> </StackLayout> <AbsoluteLayout #logoContainer class="logo-container"> <Image src="res://logo_login" stretch="none"></Image> </AbsoluteLayout> </GridLayout>
siddharthsudheer/trail-app
app/components/access/login/login.component.html
HTML
mit
1,138
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>metacoq-safechecker: 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.12.2 / metacoq-safechecker - 1.0~alpha1+8.8</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> metacoq-safechecker <small> 1.0~alpha1+8.8 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2022-01-07 08:38:55 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-07 08:38:55 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 coq 8.12.2 Formal proof management system num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.11.2 The OCaml compiler (virtual package) ocaml-base-compiler 4.11.2 Official release 4.11.2 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;matthieu.sozeau@inria.fr&quot; homepage: &quot;https://metacoq.github.io/metacoq&quot; dev-repo: &quot;git+https://github.com/MetaCoq/metacoq.git#coq-8.8&quot; bug-reports: &quot;https://github.com/MetaCoq/metacoq/issues&quot; authors: [&quot;Abhishek Anand &lt;aa755@cs.cornell.edu&gt;&quot; &quot;Simon Boulier &lt;simon.boulier@inria.fr&gt;&quot; &quot;Cyril Cohen &lt;cyril.cohen@inria.fr&gt;&quot; &quot;Yannick Forster &lt;forster@ps.uni-saarland.de&gt;&quot; &quot;Fabian Kunze &lt;fkunze@fakusb.de&gt;&quot; &quot;Gregory Malecha &lt;gmalecha@gmail.com&gt;&quot; &quot;Matthieu Sozeau &lt;matthieu.sozeau@inria.fr&gt;&quot; &quot;Nicolas Tabareau &lt;nicolas.tabareau@inria.fr&gt;&quot; &quot;Théo Winterhalter &lt;theo.winterhalter@inria.fr&gt;&quot; ] license: &quot;MIT&quot; build: [ [&quot;sh&quot; &quot;./configure.sh&quot;] [make &quot;-j%{jobs}%&quot; &quot;-C&quot; &quot;safechecker&quot;] ] install: [ [make &quot;-C&quot; &quot;safechecker&quot; &quot;install&quot;] ] depends: [ &quot;ocaml&quot; {&gt; &quot;4.02.3&quot;} &quot;coq&quot; {&gt;= &quot;8.8&quot; &amp; &lt; &quot;8.9~&quot;} &quot;coq-metacoq-template&quot; {= version} &quot;coq-metacoq-checker&quot; {= version} &quot;coq-metacoq-pcuic&quot; {= version} ] synopsis: &quot;Implementation and verification of safe conversion and typechecking algorithms for Coq&quot; description: &quot;&quot;&quot; MetaCoq is a meta-programming framework for Coq. The SafeChecker modules provides a correct implementation of weak-head reduction, conversion and typechecking of Coq definitions and global environments. &quot;&quot;&quot; url { src: &quot;https://github.com/MetaCoq/metacoq/archive/1.0-alpha+8.8.tar.gz&quot; checksum: &quot;sha256=c2fe122ad30849e99c1e5c100af5490cef0e94246f8eb83f6df3f2ccf9edfc04&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-safechecker.1.0~alpha1+8.8 coq.8.12.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.12.2). The following dependencies couldn&#39;t be met: - coq-metacoq-safechecker -&gt; coq &lt; 8.9~ -&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-safechecker.1.0~alpha1+8.8</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>
coq-bench/coq-bench.github.io
clean/Linux-x86_64-4.11.2-2.0.7/released/8.12.2/metacoq-safechecker/1.0~alpha1+8.8.html
HTML
mit
7,595
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>distributed-reference-counting: 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 / distributed-reference-counting - 8.5.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> distributed-reference-counting <small> 8.5.0 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2021-12-03 21:53:52 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-03 21:53:52 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.06.1 The OCaml compiler (virtual package) ocaml-base-compiler 4.06.1 Official 4.06.1 release ocaml-config 1 OCaml Switch Configuration ocaml-secondary-compiler 4.08.1-1 OCaml 4.08.1 Secondary Switch Compiler ocamlfind 1.9.1 A library manager for OCaml ocamlfind-secondary 1.9.1 Adds support for ocaml-secondary-compiler to ocamlfind zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;matej.kosik@inria.fr&quot; homepage: &quot;https://github.com/coq-contribs/distributed-reference-counting&quot; license: &quot;LGPL 2&quot; build: [make &quot;-j%{jobs}%&quot;] install: [make &quot;install&quot;] remove: [&quot;rm&quot; &quot;-R&quot; &quot;%{lib}%/coq/user-contrib/DistributedReferenceCounting&quot;] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.5&quot; &amp; &lt; &quot;8.6~&quot;} ] tags: [ &quot;keyword:garbage collection&quot; &quot;keyword:distributed algorithms&quot; &quot;category:Computer Science/Semantics and Compilation/Compilation&quot; &quot;category:Computer Science/Concurrent Systems and Protocols/Correctness of specific protocols&quot; ] authors: [ &quot;Luc Moreau &lt;&gt;&quot; &quot;Jean Duprat &lt;&gt;&quot; ] bug-reports: &quot;https://github.com/coq-contribs/distributed-reference-counting/issues&quot; dev-repo: &quot;git+https://github.com/coq-contribs/distributed-reference-counting.git&quot; synopsis: &quot;A Construction of Distributed Reference Counting&quot; description: &quot;&quot;&quot; This library contains the constructive proof of correctness of several variants of a distributed reference counting algorithm.&quot;&quot;&quot; flags: light-uninstall url { src: &quot;https://github.com/coq-contribs/distributed-reference-counting/archive/v8.5.0.tar.gz&quot; checksum: &quot;md5=2b83383f74374a07e130f7a99342377b&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-distributed-reference-counting.8.5.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-distributed-reference-counting -&gt; coq &lt; 8.6~ -&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-distributed-reference-counting.8.5.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>
coq-bench/coq-bench.github.io
clean/Linux-x86_64-4.06.1-2.0.5/released/8.14.0/distributed-reference-counting/8.5.0.html
HTML
mit
7,545
<!DOCTYPE html> <html> <head> <title>tobstarr.com</title> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="/css/bootstrap.min.css" type="text/css" media="screen" title="no title" charset="utf-8"> <link rel="stylesheet" href="/css/default.css" type="text/css" media="screen" title="no title" charset="utf-8"> </head> <body> <div class="container"> <div class="header index_link"> <a href="/index.html">tobstarr.com</a> </div> <div class="header_links"> <a href="/dotfiles.html">Dotfiles</a> | <a href="/cheats.html">Cheats</a> </div> <hr /> <h1><a name="docker" class="anchor" href="#docker" rel="nofollow" aria-hidden="true"><span class="octicon octicon-link"></span></a>Docker</h1> <h2><a name="install-debian-packages" class="anchor" href="#install-debian-packages" rel="nofollow" aria-hidden="true"><span class="octicon octicon-link"></span></a> Install debian packages</h2> <pre><code>RUN apt-get update &amp;&amp; apt-get install --no-install-recommends -y curl &amp;&amp; rm -rf /var/lib/apt/lists/* </code></pre> <h2><a name="download-url-with-curl" class="anchor" href="#download-url-with-curl" rel="nofollow" aria-hidden="true"><span class="octicon octicon-link"></span></a> Download URL with curl</h2> <pre><code>RUN mkdir -p /dl &amp;&amp; cd /dl &amp;&amp; curl -SsfLO http://nginx.org/download/nginx-1.8.0.tar.gz </code></pre> <h2><a name="install-go" class="anchor" href="#install-go" rel="nofollow" aria-hidden="true"><span class="octicon octicon-link"></span></a> Install go</h2> <pre><code>RUN mkdir -p /go &amp;&amp; curl -SsfL https://storage.googleapis.com/golang/go1.4.2.linux-amd64.tar.gz | tar xfz - --strip=1 ENV GOROOT /go ENV GOPATH / </code></pre> <h2><a name="validate-docker-running" class="anchor" href="#validate-docker-running" rel="nofollow" aria-hidden="true"><span class="octicon octicon-link"></span></a> Validate Docker Running</h2> <pre><code>for i in $(seq 1 10); do if docker ps &gt; /dev/null 2&gt;&amp;1; then exit 0 else echo &#34;not running =&gt; waiting&#34; sleep 1 fi done exit 1 </code></pre> <h2><a name="touch-gemfile-gemfile-lock" class="anchor" href="#touch-gemfile-gemfile-lock" rel="nofollow" aria-hidden="true"><span class="octicon octicon-link"></span></a> Touch Gemfile Gemfile.lock</h2> <pre><code>touch -m -t 200601021504.05 Gemfile Gemfile.lock bundle_config </code></pre> <h2><a name="run-registry" class="anchor" href="#run-registry" rel="nofollow" aria-hidden="true"><span class="octicon octicon-link"></span></a> Run Registry</h2> <pre><code>docker run -p 5000:5000 --rm --name registry -v $HOME/docker-distribution.yml:/etc/docker/registry/config.yml registry:2.1.1 </code></pre> <p>with config</p> <pre><code>version: 0.1 log: fields: service: registry http: addr: :5000 headers: X-Content-Type-Options: [nosniff] storage: cache: blobdescriptor: inmemory filesystem: rootdirectory: /var/lib/registry health: storagedriver: enabled: true interval: 10s threshold: 3 </code></pre> <h2><a name="detach-container" class="anchor" href="#detach-container" rel="nofollow" aria-hidden="true"><span class="octicon octicon-link"></span></a> Detach Container</h2> <pre><code>C-p C-q </code></pre> <h2><a name="logging" class="anchor" href="#logging" rel="nofollow" aria-hidden="true"><span class="octicon octicon-link"></span></a> Logging</h2> <pre><code>docker run --log-driver journald -d ubuntu:15.04 /bin/bash </code></pre> <h2><a name="cleanup-exited-containers" class="anchor" href="#cleanup-exited-containers" rel="nofollow" aria-hidden="true"><span class="octicon octicon-link"></span></a> cleanup exited containers</h2> <pre><code>for id in $(docker ps -f status=exited -q); do docker rm $id; done </code></pre> <h2><a name="cleanup-images-by-pattern" class="anchor" href="#cleanup-images-by-pattern" rel="nofollow" aria-hidden="true"><span class="octicon octicon-link"></span></a> cleanup images by pattern</h2> <pre><code>for id in $(docker images | grep PATTERN | awk &#39;{ print $3 }&#39;); do docker rmi $id; done </code></pre> </div> </body> </html>
tobstarr/tobstarr.github.io
docker.html
HTML
mit
4,249
<div id="tab3" class="tab-content"> <div class = "content"> <arcticle class="dinner-recipe"> <header><h2>Pecan Salad</h2></header> <img src ="images/pecan_salad.jpg"/> <div class = "ingredients"> <h3>Ingredients</h3> <ul> <li>1/2 cup pecan halves</li> <li>3/4 cup orange juice, divided</li> <li>2 teaspoons cornstarch</li> <li>1 1/2 tablespoons honey</li> <li>1/4 cup extra-virgin olive oil</li> <li>1/2 lime, juiced</li> <li>salt and ground black pepper to taste</li> <li>7 fresh tarragon leaves, thinly sliced crosswise, or more to taste</li> <li>1 (8 ounce) package herb salad mix</li> <li>2 Fuyu persimmons, peeled and each cut into 8 pieces</li> <li>1 large pomegranate, peeled and seeds separated</li> </ul> </div> <h3>Directions</h3> <p> Preheat oven to 375 degrees F (190 degrees C). </p> <p>Bake pecans in the preheated oven until toasted and fragrant, 5 to 7 minutes. Set aside to cool.</p> <p>Whisk 1/2 cup orange juice and cornstarch together in a small saucepan; cook and stir over medium heat until mixture thickens, 3 to 5 minutes. Remove saucepan from heat and stir in honey until dissolved. Stir remaining 1/4 cup orange juice, olive oil, lime juice, tarragon leaves, salt, and pepper into orange juice mixture. Chill dressing in refrigerator, at least 30 minutes.</p> <p>Spread herb salad mix into a serving bowl or on individual plates; top with persimmon slices, pomegranate seeds, and pecans. Drizzle cooled dressing over salad.</p> </article> </div> </div>
samanthabertous/personalPortfolio
public/projects/tabs/tab3.html
HTML
mit
1,585
<!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:05 EST 2014 --> <meta http-equiv="Content-Type" content="text/html" charset="utf-8"> <title>Uses of Class org.apache.lucene.search.spans.SpanScorer (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.search.spans.SpanScorer (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/search/spans/SpanScorer.html" title="class in org.apache.lucene.search.spans">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/search/spans//class-useSpanScorer.html" target="_top">FRAMES</a></li> <li><a href="SpanScorer.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.search.spans.SpanScorer" class="title">Uses of Class<br>org.apache.lucene.search.spans.SpanScorer</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../org/apache/lucene/search/spans/SpanScorer.html" title="class in org.apache.lucene.search.spans">SpanScorer</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.apache.lucene.search.payloads">org.apache.lucene.search.payloads</a></td> <td class="colLast"> <div class="block">The payloads package provides Query mechanisms for finding and using payloads.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.apache.lucene.search.payloads"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/apache/lucene/search/spans/SpanScorer.html" title="class in org.apache.lucene.search.spans">SpanScorer</a> in <a href="../../../../../../org/apache/lucene/search/payloads/package-summary.html">org.apache.lucene.search.payloads</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation"> <caption><span>Subclasses of <a href="../../../../../../org/apache/lucene/search/spans/SpanScorer.html" title="class in org.apache.lucene.search.spans">SpanScorer</a> in <a href="../../../../../../org/apache/lucene/search/payloads/package-summary.html">org.apache.lucene.search.payloads</a></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> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../../org/apache/lucene/search/payloads/PayloadNearQuery.PayloadNearSpanScorer.html" title="class in org.apache.lucene.search.payloads">PayloadNearQuery.PayloadNearSpanScorer</a></strong></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../../org/apache/lucene/search/payloads/PayloadTermQuery.PayloadTermWeight.PayloadTermSpanScorer.html" title="class in org.apache.lucene.search.payloads">PayloadTermQuery.PayloadTermWeight.PayloadTermSpanScorer</a></strong></code>&nbsp;</td> </tr> </tbody> </table> </li> </ul> </li> </ul> </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/search/spans/SpanScorer.html" title="class in org.apache.lucene.search.spans">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/search/spans//class-useSpanScorer.html" target="_top">FRAMES</a></li> <li><a href="SpanScorer.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>
OrlandoLee/ForYou
lucene/lib/lucene-4.6.1/docs/core/org/apache/lucene/search/spans/class-use/SpanScorer.html
HTML
mit
7,342
<section class="section-body"> <h3 translate="changelog.common.singular.title"></h3> <p>{{changelogVm.releaseNotes.notes}}</p> </section>
dasrick/tox-electron-sample
src/js/components/changelog/views/content.html
HTML
mit
145
<!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="./486c7f5382111e4470cf8e9b4d3712b85979e77f73989f0431afd207aa5eb712.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>
simonmysun/praxis
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/338bcfb1892169a39721e631ba724cee5c469acbfa677dbf1d9d674dc3a28eae.html
HTML
mit
550
<!doctype html> <html> <head> <script> var rvLocale = 'es_ES'; </script> <link rel="stylesheet" type="text/css" href="libs/kalendae/kalendae.css"> <script type="text/javascript" src="libs/DataTables/media/js/jquery.js"></script> <script type="text/javascript" src="libs/lodash.js"></script> <script type="text/javascript" src="libs/kalendae/kalendae.standalone.js"></script> <script type="text/javascript" src="libs/handlebars.js"></script> <script type="text/javascript" src="libs/handlebarsUtils.js"></script> <!-- INPUT FACTORY SPECIFIC --> <script type="text/javascript" src="libs/jquery.inputmask.bundle.js"></script> <script type="text/javascript" src="libs/InputMaskOverride.js"></script> <script type="text/javascript" src="../../nimbus/uimodules/base/uifw/ui/libs/js/FieldsFactory/FieldsFactory.js"></script> <script type="text/javascript" src="../../nimbus/uimodules/base/uifw/ui/libs/js/FieldsFactory/templates/FieldsFactoryInputTemplate.tpl.js"></script> <script type="text/javascript" src="../../nimbus/uimodules/base/uifw/ui/libs/js/FieldsFactory/templates/FieldsFactorySelectTemplate.tpl.js"></script> </head> <body></body> <script> window.moment = Kalendae.moment; var metadata = [{ "createable":false, "defaultValue":"Services", "editable":false, "label":"Product Type", "length":20, "name":"Product_Type_F__c", "precision":0, "required":false, "scale":0, "type":"STRING", "viewable":true, "dBRequired":false, "fieldPath":"Product_Type_F__c", "orderId":0 },{ "createable":true, "editable":false, "label":"Product: Name", "length":80, "name":"Catalog_Node__r.Name", "precision":0, "required":false, "scale":0, "type":"STRING", "viewable":true, "dBRequired":false, "fieldPath":"Catalog_Node__r.Name", "orderId":1 },{ "createable":true, "editable":true, "label":"List Price", "length":0, "name":"Price__c", "precision":18, "required":false, "scale":6, "type":"CURRENCY", "viewable":true, "dBRequired":false, "fieldPath":"Price__c", "orderId":3 },{ "createable":true, "defaultValue":0, "editable":true, "label":"Manual Discount (%)", "length":0, "name":"Discount__c", "precision":18, "required":false, "scale":2, "type":"PERCENT", "viewable":true, "dBRequired":false, "fieldPath":"Discount__c", "orderId":4 },{ "createable":true, "editable":true, "label":"Unit Price", "length":0, "name":"Unit_Price__c", "precision":18, "required":false, "scale":6, "type":"CURRENCY", "viewable":true, "dBRequired":false, "fieldPath":"Unit_Price__c", "orderId":5 },{ "createable":true, "defaultValue":1, "editable":true, "label":"Qty", "length":0, "name":"Quantity__c", "precision":18, "required":true, "scale":0, "type":"DOUBLE", "viewable":true, "dBRequired":true, "fieldPath":"Quantity__c", "orderId":6 },{ "createable":false, "editable":false, "label":"Ext. Price", "length":0, "name":"Extended_Price_F__c", "precision":18, "required":false, "scale":6, "type":"CURRENCY", "viewable":true, "dBRequired":false, "fieldPath":"Extended_Price_F__c", "orderId":7 }, { dBRequired: true, fieldPath: "CreatedDate", label: "Created Date", required: "false", type: "DATETIME" }, { createable: true, defaultValue: true, editable: true, label: "kso_toggle_one", length: 0, name: "kso_toggle_one__c", fieldPath: "kso_toggle_one__c", precision: 0, required: true, scale: 0, type: "BOOLEAN", viewable: true }, { createable: true, defaultValue: "Percent", editable: true, label: "Manual Discount Type", length: 255, name: "Discount_Type__c", fieldPath: "Discount_Type__c", picklist: ["Absolute", "Percent"], precision: 0, required: false, scale: 0, type: "PICKLIST", viewable: true }, { createable: true, defaultValue: "005F0000003M5QA", editable: true, label: "kso_url_1", length: 255, name: "kso_url_1__c", precision: 0, required: false, scale: 0, type: "URL", viewable: true }]; var data = [{ "CurrencyIsoCode": "USD", "Name": "QI00968", "Id": "a0SF000000HrjxxMAB", "Discount_Type__c": "Percent", "Unit_Price__c": 69.99, "Id__c": 786, "Monthly_Price_Before_Discount_F__c": 0, "One_Time_Extended_Price_F__c": 69.99, "Monthly_Extended_Price_F__c": 0, "Product_Type_F__c": "Bundle", "One_Time_Price_Before_Discount_F__c": 69.99, "Weekly_Price_Before_Discount_F__c": 0, "Weekly_Extended_Price_F__c": 0, "Yearly_Discount_Absolute_F__c": 0, "Catalog_Node__c": "a04F000000WfWY6IAN", "Discount_Absolute__c": 0, "Yearly_Extended_Price_F__c": 0, "Monthly_Discount_Absolute_F__c": 0, "Weekly_Discount_Absolute_F__c": 0, "Extended_Price_F__c": 69.99, "Yearly_Price_Before_Discount_F__c": 0, "One_Time_Discount_F__c": 0, "Adjustment1Type__c": "Percent", "AutoDiscountType__c": "Percent", "IsSystemListPrice__c": true, "Catalog_Node__r": { "Name": "16GB DDR2, 2x 8GB 1600 MT/s, Low Volt, Dual Rank, x4 Data Width", "CurrencyIsoCode": "USD", "Id": "a04F000000WfWY6IAN", "Id__c": 900453, "Type__c": "Bundle", "Configurable__c": false, "Description__c": "", "mainImage1__c": "http://nimbuscontent.modeln.com/c/rfimg/900453_1.jpg", "Billing_Frequency__c": "One Time" }, "AutoDiscountAbsolute__c": 0, "Monthly_Discount_F__c": 0, "IsSystemCostPrice__c": false, "Yearly_Total_Value_F__c": 0, "Weekly_Total_Value_F__c": 0, "Is_Configuration_Complete__c": false, "IsSystemUnitPrice__c": false, "Quantity__c": 1, "One_Time_Total_Value_F__c": 69.99, "Monthly_Total_Value_F__c": 0, "AutoDiscount__c": 0, "Yearly_Discount_F__c": 0, "Discount__c": 0, "Weekly_Discount_F__c": 0, "Record_Number__c": 2, "One_Time_Discount_Absolute_F__c": 0, "MarginType__c": "Percent", "Billing_Frequency_WF__c": "One Time", "HasSubLineWithoutListPrice__c": false, "Price__c": 69.99, "Categories__mn": [ "DDR3" ], "Category__mn": "DDR3", "ProductType__mn": "03-Fixed Bundle", "thumbnailImage__mn": "http://nimbuscontent.modeln.com/c/rfimg/900453_1.jpg", "isConfigurable__mn": false, "CostPrice__c": null, "Adjustment1Absolute__c": null, "kso_toggle_one__c": true }]; $(document).ready(function() { $(document).on('change:kso2', function(e, data) { var valueFromEvent = data.value; var valueFromClass = fields[0].getVal(); debugger; }); data = data[0]; var fields = {}; metadata.forEach(function(value, idx) { fields[idx] = new FieldsFactory(); fields[idx].init({ id: 'kso' + idx, data: { metadata: value, data: data }, labels: { placeholder: 'this is a test' }, listeners: { } }); $('body').append(fields[idx].render()); }); }); </script> </html>
ModelN/Shock-Tables
inputfactory.html
HTML
mit
8,430
--- layout: single elementName: param --- <section id="param" class="element"> <header class="element-header"> <nav class="element-links"> <span> Self-closing: <strong> Yes </strong> </span> <a class="element-links-direct" href="{{site.url}}/element/param/" data-element-name="param" data-tooltip="Single page for this element">Permalink</a> <a class="element-share" data-tooltip="Share on Twitter or Facebook" data-element-name="param">Share</a> <a target="_blank" href="https://developer.mozilla.org/en/docs/Web/HTML/Element/param" data-tooltip="See on Mozilla Developer Network" rel="external">MDN</a> </nav> <h2 class="element-name"> <a href="#param"> <span>#</span> param </a> </h2> <div class="element-description"> <p>Defines a <strong>parameter</strong> for an <code>&lt;object&gt;</code> element.</p> </div> </header> <div id="param-example-0" class="example"> <p class="example-label"> <strong>Example:</strong> <a class="example-clipboard" data-tooltip="Click to copy code" data-clipboard-target="#param-example-0-code">Copy</a> </p> <article class="example-preview"> <div class="example-output"><object type="application/x-shockwave-flash" data="/assets/golf.swf" width="800" height="360"> <param name="movie" value="/assets/golf.swf"> <param name="wmode" value="transparent"> <p>You need to enable Flash to view this content.</p> </object></div> <div id="param-example-0-code" class="example-code">{% highlight html %}<object type="application/x-shockwave-flash" data="/assets/golf.swf" width="800" height="360"> <param name="movie" value="/assets/golf.swf"> <param name="wmode" value="transparent"> <p>You need to enable Flash to view this content.</p> </object>{% endhighlight %}</div> </article> </div> <article id="param-name" class="attribute"> <header class="attribute-header"> <h3 class="attribute-name"> <code class="tag" data-tooltip="Click to copy" data-clipboard-text="name"> name </code> </h3> <div class="attribute-description"> <p>The name of the parameter.</p> </div> </header> <div class="attribute-values"> <article id="param-name-movie" class="value"> <header class="value-header"> <h4 class="value-name"> <code class="tag" data-tooltip="Click to copy name=&quot;movie&quot;" data-clipboard-text="name=&quot;movie&quot;"> "movie" </code> </h4> <div class="value-description"> <p>The object is a movie which needs the URL of a <code>.swf</code> file.</p> </div> </header> <aside class="value-preview"> <div class="value-output"><param name="movie"></param></div> </aside> </article> <article id="param-name-wmode" class="value"> <header class="value-header"> <h4 class="value-name"> <code class="tag" data-tooltip="Click to copy name=&quot;wmode&quot;" data-clipboard-text="name=&quot;wmode&quot;"> "wmode" </code> </h4> <div class="value-description"> <p>How the background of the object is handled.</p> </div> </header> <aside class="value-preview"> <div class="value-output"><param name="wmode"></param></div> </aside> </article> <article id="param-name-allowfullscreen" class="value"> <header class="value-header"> <h4 class="value-name"> <code class="tag" data-tooltip="Click to copy name=&quot;allowFullScreen&quot;" data-clipboard-text="name=&quot;allowFullScreen&quot;"> "allowFullScreen" </code> </h4> <div class="value-description"> <p>If the object is allowed to go fullscreen.</p> </div> </header> <aside class="value-preview"> <div class="value-output"><param name="allowFullScreen"></param></div> </aside> </article> </div> </article> <article id="param-value" class="attribute"> <header class="attribute-header"> <h3 class="attribute-name"> <code class="tag" data-tooltip="Click to copy" data-clipboard-text="value"> value </code> </h3> <div class="attribute-description"> <p>The value attached to the parameter.</p> </div> </header> <div class="attribute-values"> <article id="param-value-assetsgolfswf" class="value"> <header class="value-header"> <h4 class="value-name"> <code class="tag" data-tooltip="Click to copy value=&quot;/assets/golf.swf&quot;" data-clipboard-text="value=&quot;/assets/golf.swf&quot;"> "/assets/golf.swf" </code> </h4> <div class="value-description"> <p>If the parameter is <code>movie</code>, the value is the URL to file.</p> </div> </header> <aside class="value-preview"> <div class="value-output"><param value="/assets/golf.swf"></param></div> </aside> </article> <article id="param-value-transparent" class="value"> <header class="value-header"> <h4 class="value-name"> <code class="tag" data-tooltip="Click to copy value=&quot;transparent&quot;" data-clipboard-text="value=&quot;transparent&quot;"> "transparent" </code> </h4> <div class="value-description"> <p>If the parameter is <code>wmode</code>, the value is either <code>window</code>, <code>direct</code>, <code>transparent</code>, <code>opaque</code>, or <code>gpu</code>.</p> </div> </header> <aside class="value-preview"> <div class="value-output"><param value="transparent"></param></div> </aside> </article> </div> </article> </section>
jgthms/html-reference
element/param/index.html
HTML
mit
6,517
<!-- Pleace this snippet right after opening the head tag to make it work properly --> <!-- This code is licensed under GNU GPL v3 --> <!-- You are allowed to freely copy, distribute and use this code, but removing author credit is strictly prohibited --> <!-- Generated by http://insider.zone/tools/client-side-url-redirect-generator/ --> <!-- REDIRECTING STARTS --> <link rel="canonical" href="https://vimeo.com/154793558/ac003d7bef"/> <noscript> <meta http-equiv="refresh" content="0;URL=https://vimeo.com/154793558/ac003d7bef"> </noscript> <!--[if lt IE 9]><script type="text/javascript">var IE_fix=true;</script><![endif]--> <script type="text/javascript"> var url = "https://vimeo.com/154793558/ac003d7bef"; if(typeof IE_fix != "undefined") // IE8 and lower fix to pass the http referer { document.write("redirecting..."); // Don't remove this line or appendChild() will fail because it is called before document.onload to make the redirect as fast as possible. Nobody will see this text, it is only a tech fix. var referLink = document.createElement("a"); referLink.href = url; document.body.appendChild(referLink); referLink.click(); } else { window.location.replace(url); } // All other browsers </script> <!-- Credit goes to http://insider.zone/ --> <!-- REDIRECTING ENDS -->
mtbhomer/web-portfolio
static/thesis/service_interface_8.html
HTML
mit
1,304
<!DOCTYPE html> <!--[if IE]><![endif]--> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>Delegate SetterHandler&lt;T, S&gt; </title> <meta name="viewport" content="width=device-width"> <meta name="title" content="Delegate SetterHandler&lt;T, S&gt; "> <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"> </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 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="HarmonyLib.SetterHandler`2"> <h1 id="HarmonyLib_SetterHandler_2" data-uid="HarmonyLib.SetterHandler`2" class="text-break">Delegate SetterHandler&lt;T, S&gt; </h1> <div class="markdown level0 summary"><p>A setter delegate type</p> </div> <div class="markdown level0 conceptual"></div> <h6><strong>Namespace</strong>: <a class="xref" href="HarmonyLib.html">HarmonyLib</a></h6> <h6><strong>Assembly</strong>: 0Harmony.dll</h6> <h5 id="HarmonyLib_SetterHandler_2_syntax">Syntax</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">[Obsolete(&quot;Use AccessTools.FieldRefAccess&lt;T, S&gt; for fields and AccessTools.MethodDelegate&lt;Action&lt;T, S&gt;&gt; for property setters&quot;)] public delegate void SetterHandler&lt;in T, in S&gt;(T source, S value);</code></pre> </div> <h5 class="parameters">Parameters</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Name</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><span class="xref">T</span></td> <td><span class="parametername">source</span></td> <td><p>The instance the setter uses</p> </td> </tr> <tr> <td><span class="xref">S</span></td> <td><span class="parametername">value</span></td> <td><p>The value the setter uses</p> </td> </tr> </tbody> </table> <h5 class="typeParameters">Type Parameters</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Name</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><span class="parametername">T</span></td> <td><p>Type that setter sets field/property value for</p> </td> </tr> <tr> <td><span class="parametername">S</span></td> <td><p>Type of the value that setter sets</p> </td> </tr> </tbody> </table> </article> </div> <div class="hidden-sm col-md-2" role="complementary"> <div class="sideaffix"> <div class="contribution"> <ul class="nav"> <li> <a href="https://github.com/pardeike/Harmony/new/master/apiSpec/new?filename=HarmonyLib_SetterHandler_2.md&amp;value=---%0Auid%3A%20HarmonyLib.SetterHandler%602%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a> </li> <li> <a href="https://github.com/pardeike/Harmony/blob/master/Harmony/Extras/FastAccess.cs/#L26" class="contribution-link">View Source</a> </li> </ul> </div> <nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix"> <h5>In This Article</h5> <div></div> </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>
pardeike/Harmony
docs/api/HarmonyLib.SetterHandler-2.html
HTML
mit
6,528
<html> <head> <style type="text/css"> body { font-family: 'Arial'; font-size: 14px; } </style> <title>rhes.es - Text Component Smoke Tests</title> <script type="text/javascript" src="/lib/jquery-1.9.1.min.js"></script> <script type="text/javascript" src="/lib/acorn.js"></script> <script type="text/javascript" src="/lib/coffee-script.js"></script> <script type="text/javascript" src="/core/layout.js"></script> <script type="text/javascript" src="/lib/chai.js"></script> <script type="text/javascript" src="/lib/smoke_helper.js"></script> </head> <body> <view id="all" width="100%" height="100%" clip="true"> <spacedlayout axis="y" spacing="15"></spacedlayout> <!-- Setting text values, see text.html for more text tests --> <labelbutton width="100" height="30"> <handler event="oninit"> assert.testCaseLabel = 'Setting text values'; assert.equal(this.text, '') assert.equal(this.label.text, '') assert.equal(this.label.sprite.el.innerText || '', '') </handler> </labelbutton> <!-- Setting bgcolor should override defaultcolor --> <labelbutton width="100" height="30" bgcolor="OliveDrab"> <handler event="oninit"> assert.testCaseLabel = 'Setting bgcolor should set default color'; assert.equal(this.defaultcolor, 'OliveDrab') </handler> </labelbutton> <!-- Setting bgcolor should override defaultcolor if defaultcolor set --> <labelbutton width="100" height="30" bgcolor="OliveDrab" defaultcolor="thistle"> <handler event="oninit"> assert.testCaseLabel = 'Setting bgcolor should override defaultcolor if defaultcolor set'; assert.equal(this.defaultcolor, 'OliveDrab') </handler> </labelbutton> </view> <!-- The MIT License (MIT) Copyright ( c ) 2014 Teem2 LLC Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --> </body> </html>
gnovos/gnovos.github.io
smoke/labelbutton.html
HTML
mit
2,843
<!DOCTYPE html> <html> <head> <title>Adam Kuhn's Developer Blog</title> <meta charset="UTF-8"> <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.css"> <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.css"> <link rel="stylesheet" type="text/css" href="styles/main.css"> <link href="https://fonts.googleapis.com/css?family=Special+Elite" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Merriweather+Sans:400,700" rel="stylesheet"> </head> <body> <div class="container"> <!--Email and social media icon links--> <!--Entypo pictograms by Daniel Bruce - www.entypo.com--> <div class="row"> <div class="twelve columns"> <div class="front"> <div class="align-right"> <div class="fixed"> <a target="_blank" href="https://www.instagram.com/adamkuhn20/"> <img class="social-media" src="styles/images/instagram.svg" alt="Instagram logo https://www.instagram.com/adamkuhn20/"> </a> <a target="_blank" href="https://www.linkedin.com/in/adam-kuhn-20803481"> <img class="social-media" src="styles/images/linkedin.svg" alt="LinkedIn logo https://www.linkedin.com/in/adam-kuhn-20803481/"> </a> <a target="_blank" href="https://github.com/adam-kuhn"> <img class="social-media" src="styles/images/github.svg" alt="GitHub logo https://github.com/adam-kuhn"> </a> </div> </div> </div> </div> </div> <div class="row"> <div class="twelve columns"> <div class="front"> <a class="align-right fixed-top-right" href="mailto:adam.kuhn20@gmail.com">adam.kuhn20@gmail.com</a> </div> </div> </div> <!--Post Title--> <div class="row"> <div class="twelve columns"> <h1 class="desktop-align-center">Cultural Blogs</h1> </div> </div> <!--Navbar--> <div class="row"> <div class="three columns"> <nav class="navbar align-left"> <ul class="navbar-list"> <li class="navbar-item"> <a class="navbar-link" href="../index.html">Home</a> </li> <li class="navbar-item"> <a class="navbar-link" href="../blog/c1-reflection-blog.html">Reflection</a> </li> <li class="navbar-item"> <a class="navbar-link" href="../blog/c1-time-and-habits-blog.html">Time and Habits</a> </li> <li class="navbar-item"> <a class="navbar-link" href="../blog/c2-emotional-intelligence.html">Emotional Intelligence</a> </li> <li class="navbar-item"> <a class="navbar-link" href="../blog/c3-meditation-process.html">Process and Meditation</a> </li> <li class="navbar-item"> <a class="navbar-link" href="../blog/c4-daily-mindfulness.html">Mindful Conversation</a> </li> <li class="navbar-item"> <a class="navbar-link" href="../blog/c5-self-confidence.html">Self Awareness</a> </li> <li class="navbar-item"> <a class="navbar-link" href="../blog/c6-control.html">Control</a> </li> <li class="navbar-item"> <a class="navbar-link" href="../blog/c7-motivation.html">Motivation</a> </li> <li class="navbar-item"> <a class="navbar-link" href="../blog/c8-connecting.html">Connecting</a> </li> <li class="navbar-item"> <a class="navbar-link" href="../blog/c9-leadership.html">Leadership</a> </li> </ul> </nav> </div> <!--Question and Answer--> <div class="five columns"> <div class="scroll"> <div class="front-text"> As a part of my journey through the Web Devlopment program, I was required to read "Search Inside Yourself: The Unexpected Path to Achieving Success, Happiness (and World Peace)" by Chade-Meng Tan. In addition to reading the book I performed some of the suggested exercies and documented them in blogs to the left. I've had a wonderful experience with this book and hope to take what I've learned with me, for the rest of my life. </div> </div> </div> <!--Sidebar image--> <div class="four columns"> <div class="front"> <div class="align-right"> <div class="fixed"> <img class="img-responsive" src="styles/images/search-inside-yourself.jpg" alt="book cover of 'Search Inside Yourself: The Unexpected Path to Achieving Success, Happiness (and World Peace)' by Chade-Meng Tan."> </div> </div> </div> </div> </div> <!--sub-title psuedo footer--> <div class="row"> <div class="twelve columns"> <div class="footer"> <h4 class="sub-title">START SEARCHING</h4> </div> </div> </div> <!--Background boxes--> <div class="right-extra" role="presentation"></div> <div class="left-extra" role="presentation"></div> </div> <!--background boxes outside container so they span whole window--> <div class="top-extra" role="presentation"></div> <div class="bottom-extra" role="presentation"></div> </body> </html>
adam-kuhn/adam-kuhn.github.io
blog/c0-cultural-blogs.html
HTML
mit
5,486
<!DOCTYPE html> <!--[if lt IE 7]> <html lang="en" ng-app="myApp" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> <!--[if IE 7]> <html lang="en" ng-app="myApp" class="no-js lt-ie9 lt-ie8"> <![endif]--> <!--[if IE 8]> <html lang="en" ng-app="myApp" class="no-js lt-ie9"> <![endif]--> <!--[if gt IE 8]><!--> <html lang="en" ng-app="myApp" class="no-js"> <!--<![endif]--> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>My AngularJS App</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="bower_components/html5-boilerplate/dist/css/normalize.css"> <link rel="stylesheet" href="bower_components/html5-boilerplate/dist/css/main.css"> <link rel="stylesheet" href="app.css"> <script src="bower_components/html5-boilerplate/dist/js/vendor/modernizr-2.8.3.min.js"></script> <link rel="stylesheet" href="bower_components/angular-bootstrap/ui-bootstrap-csp.css" /> <link rel="stylesheet" href="bower_components/bootstrap-3.3.6-dist/css/bootstrap.min.css" /> <link rel="stylesheet" href="bower_components/bootstrap-3.3.6-dist/css/bootstrap-theme.min.css" /> </head> <body> <ul class="menu"> <li><a href="#/view1">view1</a></li> <li><a href="#/view2">view2</a></li> </ul> <!--[if lt IE 7]> <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p> <![endif]--> <div ng-view></div> <!-- In production use: <script src="//ajax.googleapis.com/ajax/libs/angularjs/x.x.x/angular.min.js"></script> --> <script src="bower_components/angular/angular.js"></script> <script src="bower_components/angular-route/angular-route.js"></script> <script src="bower_components/angular-animate/angular-animate.min.js"></script> <script src="bower_components/angular-bootstrap/ui-bootstrap-tpls.min.js"></script> <script src="app.js"></script> <script src="view1/view1.js"></script> <script src="view2/view2.js"></script> <script src="components/version/version.js"></script> <script src="components/version/version-directive.js"></script> <script src="components/version/interpolate-filter.js"></script> </body> </html>
ShineeHo/QuickBrownFoxTest
app/index.html
HTML
mit
2,337
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="<?php echo base_url();?>css/customer.css"> </head> <body> <div class = "main_container"></div> <div class = "Container"> <div class = "Wel_Cus"> WELCOME TO CUSTOMER </div> <form> <div class = "User">Username :</div> <input class ="UserName"type="text" name="login" value="" placeholder="User Name"> <div class = "ID">Email ID :</div> <input class ="Email"type="text" name="login" value="" placeholder="Email ID"> <div class = "Contact">Contact :</div> <input class ="Number"type="text" name="login" value="" placeholder="Mobile No"> <button class = "OK_Button" name="button" value="OK" type="submit"> OK </button> </form> </div> </body> </html>
citrix123/WorkPakages
application/views/customer.html
HTML
mit
823
<!DOCTYPE html> <html lang="en-us"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>jekyll | Harshad</title> <meta name="viewport" content="width=device-width,minimum-scale=1"> <meta name="description" content=""> <meta name="generator" content="Hugo 0.80.0" /> <META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW"> <link rel="stylesheet" href="/ananke/css/main.min.css" > <link href="/tags/jekyll/index.xml" rel="alternate" type="application/rss+xml" title="Harshad" /> <link href="/tags/jekyll/index.xml" rel="feed" type="application/rss+xml" title="Harshad" /> <meta property="og:title" content="jekyll" /> <meta property="og:description" content="" /> <meta property="og:type" content="website" /> <meta property="og:url" content="http://harshad.me/tags/jekyll/" /> <meta property="og:updated_time" content="2020-12-21T00:00:00+00:00" /> <meta itemprop="name" content="jekyll"> <meta itemprop="description" content=""> <meta name="twitter:card" content="summary"/> <meta name="twitter:title" content="jekyll"/> <meta name="twitter:description" content=""/> </head> <body class="ma0 avenir bg-near-white"> <header> <div class="pb3-m pb6-l bg-black"> <nav class="pv3 ph3 ph4-ns" role="navigation"> <div class="flex-l justify-between items-center center"> <a href="/" class="f3 fw2 hover-white no-underline white-90 dib"> Harshad </a> <div class="flex-l items-center"> <ul class="pl0 mr3"> <li class="list f5 f4-ns fw4 dib pr3"> <a class="hover-white no-underline white-90" href="/posts/" title="Posts page"> Posts </a> </li> <li class="list f5 f4-ns fw4 dib pr3"> <a class="hover-white no-underline white-90" href="/music/" title="Music page"> Music </a> </li> <li class="list f5 f4-ns fw4 dib pr3"> <a class="hover-white no-underline white-90" href="/contact/" title="Contact page"> Contact </a> </li> <li class="list f5 f4-ns fw4 dib pr3"> <a class="hover-white no-underline white-90" href="/about/" title="About page"> About </a> </li> </ul> </div> </div> </nav> <div class="tc-l pv3 ph3 ph4-ns"> <h1 class="f2 f-subheadline-l fw2 light-silver mb0 lh-title"> jekyll </h1> </div> </div> </header> <main class="pb7" role="main"> <article class="cf pa3 pa4-m pa4-l"> <div class="measure-wide-l center f4 lh-copy nested-copy-line-height nested-links nested-img mid-gray"> <p>Below you will find pages that utilize the taxonomy term “jekyll”</p> </div> </article> <div class="mw8 center"> <section class="flex-ns flex-wrap justify-around mt5"> <div class="relative w-100 mb4 bg-white"> <div class="relative w-100 mb4 bg-white nested-copy-line-height"> <div class="bg-white mb3 pa4 gray overflow-hidden"> <span class="f6 db">Posts</span> <h1 class="f3 near-black"> <a href="/posts/pin/" class="link black dim"> Pin </a> </h1> <div class="nested-links f5 lh-copy nested-copy-line-height"> Anyone who works in a field related to computer software, ends up running a bunch of CLI (command line interface) commands pretty often. The longer you stay in the field, the larger is your command set. With new systems being invented everyday, the complexity of commands being run is also increasing. Day by day, I am finding myself running more and more complex commands. That&#39;s when I decided I need something to manage these commands for me. </div> </div> </div> </div> <div class="relative w-100 mb4 bg-white"> <div class="relative w-100 mb4 bg-white nested-copy-line-height"> <div class="bg-white mb3 pa4 gray overflow-hidden"> <span class="f6 db">Posts</span> <h1 class="f3 near-black"> <a href="/posts/static-website/" class="link black dim"> Static Website with Password Protection </a> </h1> <div class="nested-links f5 lh-copy nested-copy-line-height"> After numerous attempts at finding a cheap and easy solution to making a password protected static website, I finally have settled my mind on one! Before going over the solution let me go over the requirements that I had in my mind for the website: Cheap Static and blog-aware Password protection on a part of the website Smooth and easy workflow to move content from private part to public </div> </div> </div> </div> <div class="relative w-100 mb4 bg-white"> <div class="relative w-100 mb4 bg-white nested-copy-line-height"> <div class="bg-white mb3 pa4 gray overflow-hidden"> <span class="f6 db">Posts</span> <h1 class="f3 near-black"> <a href="/posts/writing-music-chords/" class="link black dim"> Writing Song Chords in markdown </a> </h1> <div class="nested-links f5 lh-copy nested-copy-line-height"> I often struggled to keep chords for songs I played in a handy place. For a couple of years I have been maintaining chords in a Google Doc. Given the forgetful person that I&#39;m, storing all the chords in one place has come as a blessing. Having all the chords in one place has helped me to be more organized about my music. It has helped me collaborate better with other musicians. </div> </div> </div> </div> </section> </div> </main> <footer class="bg-black bottom-0 w-100 pa3" role="contentinfo"> <div class="flex justify-between"> <a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="http://harshad.me/" > &copy; Harshad 2021 </a> <div> </div> </div> </footer> </body> </html>
harshadjs/harshadjs.github.io
tags/jekyll/index.html
HTML
mit
6,175
<!doctype html> <!--[if (IE 8)&!(IEMobile)]><html class="no-js lt-ie9" lang="en"><![endif]--> <!--[if (gte IE 9)| IEMobile |!(IE)]><!--><html class="no-js" lang="en"><!--<![endif]--> <head> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <title>404 - Page Not Found</title> <meta name="HandheldFriendly" content="True"> <meta name="MobileOptimized" content="320"> <meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1"> <meta name="apple-mobile-web-app-capable" content="yes" /> <link rel="shortcut icon" href="/assets/images/favicon.ico"> <meta http-equiv="cleartype" content="on"> <link rel="stylesheet" type='text/css' href='//fonts.googleapis.com/css?family=Open+Sans:400,300,700'> <link rel="stylesheet" href="/assets/css/ghost.min.css" /> </head> <body> <main role="main" id="main"> <div class="gh-app"> <div class="gh-viewport"> <div class="gh-view"> <section class="error-content error-404 js-error-container"> <section class="error-details"> <img class="error-ghost" src="/assets/images/404.png" srcset="/assets/images/404.png"/> <section class="error-message"> <h1 class="error-code">404</h1> <h2 class="error-description">Page not found</h2> <a class="error-link" href="/">Go to the front page →</a> </section> </section> </section> </div> </div> </div> </main> <!-- Add Google Analytics --> <!-- Google Analytics Tracking code --> <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-82836248-1', 'auto'); ga('send', 'pageview'); </script> </body> </html>
EnriqueGN/appnotes
_site/404.html
HTML
mit
2,451
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en-US"> <head profile="http://gmpg.org/xfn/11"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>meme snow — Page 2</title> <meta name="robots" content="noodp, noydir" /> <link rel="stylesheet" href="../../../../wp-content/themes/SecretAgentSnowman/custom/layout.css" type="text/css" media="screen, projection" /> <!--[if lte IE 8]><link rel="stylesheet" href="http://secretagentsnowman.com/wp-content/themes/thesis_185/lib/css/ie.css" type="text/css" media="screen, projection" /><![endif]--> <link rel="stylesheet" href="../../../../wp-content/themes/SecretAgentSnowman/custom/custom.css" type="text/css" media="screen, projection" /> <link rel="shortcut icon" href="http://secretagentsnowman.collagecreative.net/files/2012/06/snowman1.png" /> <link rel="canonical" href="../../index.html" /> <link rel="alternate" type="application/rss+xml" title="Secret Agent Snowman RSS Feed" href="../../../../feed/index.html" /> <link rel="pingback" href="../../../../xmlrpc.php" /> <link rel="EditURI" type="application/rsd+xml" title="RSD" href="../../../../xmlrpc.php%3Frsd" /> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script> <script src="http://cdn.jquerytools.org/1.2.7/full/jquery.tools.min.js"></script> <script type="text/javascript" src="../../../../wp-content/themes/SecretAgentSnowman/lib/scripts/image_effects.js"></script> <script type="text/javascript" src="../../../../wp-content/themes/SecretAgentSnowman/lib/scripts/jquery.cycle.all.js"></script> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-33056881-2', 'secretagentsnowman.com'); ga('require', 'displayfeatures'); ga('send', 'pageview'); </script> <script type="text/javascript"> /* $(function(){ $('span#firstline.firstline').click(function(){ _gaq.push(['_trackEvent', 'Featured Snow', 'Click', $(this).find("a").text()]); }); $('li.menu-item a').click(function(){ _gaq.push(['_trackEvent', 'Main Menu', 'Click', $(this).html()]); }); $('#advanced-recent-posts-3 img.wp-post-image').click(function(){ _gaq.push(['_trackEvent', 'Random Snow', 'Click',$(this).attr('title')]); }); $('a.external').click(function(){ _gaq.push(['_trackEvent', 'External Links', 'Click', $(this).attr('href')]); }); $('input#create_meme_button').click(function(){ _gaq.push(['_trackEvent', 'Create Meme', 'Click', $(this).attr('name')]); }); }); */ </script> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="alternate" type="application/rss+xml" title="Secret Agent Snowman &raquo; meme snow Category Feed" href="../../feed/index.html" /> <link rel='stylesheet' id='wp_pinterest_styles-css' href='../../../../wp-content/plugins/wp-pinterest/includes/wp-pinterest-styles.css' type='text/css' media='screen' /> <link rel='stylesheet' id='ccf-jquery-ui-css' href='../../../../wp-content/plugins/custom-contact-forms/css/jquery-ui.css%3Fver=4.0.css' type='text/css' media='all' /> <link rel='stylesheet' id='CCFStandardsCSS-css' href='../../../../wp-content/plugins/custom-contact-forms/css/custom-contact-forms-standards.css%3Fver=4.0.css' type='text/css' media='all' /> <link rel='stylesheet' id='CCFFormsCSS-css' href='../../../../wp-content/plugins/custom-contact-forms/css/custom-contact-forms.css%3Fver=4.0.css' type='text/css' media='all' /> <script type='text/javascript' src='../../../../wp-includes/js/jquery/jquery.js%3Fver=1.11.1'></script> <script type='text/javascript' src='../../../../wp-includes/js/jquery/jquery-migrate.min.js%3Fver=1.2.1'></script> <script type='text/javascript' src='../../../../wp-content/plugins/custom-contact-forms/js/custom-contact-forms-datepicker.js%3Fver=4.0'></script> <script type='text/javascript' src='../../../../wp-content/plugins/custom-contact-forms/js/jquery.tools.min.js%3Fver=4.0'></script> <script type='text/javascript' src='../../../../wp-content/plugins/custom-contact-forms/js/custom-contact-forms.js%3Fver=4.0'></script> </head> <body class="custom cat_meme-snow"> <div id="container"> <div id="page"> <div id="header"> <p id="logo"><a href="../../../../index.html">Secret Agent Snowman</a></p> <p id="tagline">snowpeople, everywhere.</p> <div class="menu-main-menu-container"><ul id="menu-main-menu" class="menu"> <li id="menu-item-69" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-37"><a href="/store/snow-crafts/index.html">store</a> <ul class="sub-menu"> <li id="menu-item-699" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-34"><a href="/store/snow-crafts/index.html">snow crafts</a></li> <li id="menu-item-690" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-34"><a href="/store/olaf/index.html">olaf</a></li> </ul> </li> <li id="menu-item-37" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-37"><a href="../../../../index.html">random</a></li> <li id="menu-item-1183" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1183"><a href="../../../links/index.html">links</a></li> <li id="menu-item-658" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-658"><a href="../../../photo-snow/index.html">images</a> <ul class="sub-menu"> <li id="menu-item-34" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-34"><a href="../../../photo-snow/real-snow/index.html">snow</a></li> <li id="menu-item-524" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-524"><a href="../../../photo-snow/fake-snow/air-snow/index.html">air</a></li> <li id="menu-item-128" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-128"><a href="../../../photo-snow/fake-snow/drawn-snow/index.html">drawn</a></li> <li id="menu-item-36" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-36"><a href="../../../photo-snow/fake-snow/food-snow/index.html">food</a></li> <li id="menu-item-708" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-708"><a href="../../../photo-snow/fake-snow/fire-snow/index.html">fire</a></li> <li id="menu-item-253" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-253"><a href="../../../photo-snow/fake-snow/human-snow/index.html">human</a></li> <li id="menu-item-481" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-481"><a href="../../../photo-snow/fake-snow/paper-snow/index.html">paper</a></li> <li id="menu-item-1231" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1231"><a href="../../../photo-snow/fake-snow/cotton-snow/index.html">cotton</a></li> <li id="menu-item-175" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-175"><a href="../../../photo-snow/fake-snow/sand-snow/index.html">sand</a></li> <li id="menu-item-942" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-942"><a href="../../../photo-snow/fake-snow/metal-snow/index.html">metal</a></li> <li id="menu-item-47" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-47"><a href="../../../photo-snow/fake-snow/space-snow/index.html">space</a></li> </ul> </li> <li id="menu-item-457" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-457"><a href="../../../virtual-snow/index.html">virtual</a></li> <li id="menu-item-422" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-422"><a href="../../../video-snow/index.html">video</a></li> <li id="menu-item-602" class="menu-item menu-item-type-taxonomy menu-item-object-category current-menu-item current-menu-ancestor current-menu-parent menu-item-has-children menu-item-602"><a href="../../index.html">memes</a> <ul class="sub-menu"> <li id="menu-item-927" class="menu-item menu-item-type-taxonomy menu-item-object-category current-menu-item menu-item-927"><a href="../../index.html">memes</a></li> </ul> </li> </ul></div> </div> <div id="content_box"> <div id="content" class="hfeed"> <div id="archive_intro"> <h1>meme snow</h1> </div> <div class="teasers_box top"> <div class="post-747 post type-post status-publish format-standard has-post-thumbnail hentry category-meme-snow teaser" id="post-747"> <p><a href="../../../../meme-snow/worth-it/index.html"><img width="300" height="300" src="../../../../wp-content/blogs.dir/15/files/2012/08/worth-it_o_381065-300x300.jpg" class="attachment-teaser-image2 wp-post-image" alt="worth it" /></a></p><h2 class="entry-title"><a href="../../../../meme-snow/worth-it/index.html" rel="bookmark" title="Permanent link to Worth It">Worth It</a></h2> </div> <div class="post-740 post type-post status-publish format-standard has-post-thumbnail hentry category-meme-snow teaser teaser_right" id="post-740"> <p><a href="../../../../meme-snow/in-a-parralel-universe/index.html"><img width="300" height="300" src="../../../../wp-content/blogs.dir/15/files/2012/08/in-a-parralel-universe_o_156467-300x300.jpg" class="attachment-teaser-image2 wp-post-image" alt="snow love" /></a></p><h2 class="entry-title"><a href="../../../../meme-snow/in-a-parralel-universe/index.html" rel="bookmark" title="Permanent link to In A Parralel Universe">In A Parralel Universe</a></h2> </div> </div> <div class="teasers_box"> <div class="post-672 post type-post status-publish format-standard has-post-thumbnail hentry category-meme-snow teaser" id="post-672"> <p><a href="../../../../meme-snow/legitimate-grape-snowman/index.html"><img width="300" height="300" src="../../../../wp-content/blogs.dir/15/files/2012/08/legitimate_grape_snowman-300x300.jpg" class="attachment-teaser-image2 wp-post-image" alt="legitimate_grape_snowman" /></a></p><h2 class="entry-title"><a href="../../../../meme-snow/legitimate-grape-snowman/index.html" rel="bookmark" title="Permanent link to Legitimate Grape snowman">Legitimate Grape snowman</a></h2> </div> <div class="post-625 post type-post status-publish format-standard has-post-thumbnail hentry category-meme-snow teaser teaser_right" id="post-625"> <p><a href="../../../../meme-snow/we-love-bacon/index.html"><img width="300" height="300" src="../../../../wp-content/blogs.dir/15/files/2012/08/we_love_bacon-300x300.jpg" class="attachment-teaser-image2 wp-post-image" alt="we love bacon" /></a></p><h2 class="entry-title"><a href="../../../../meme-snow/we-love-bacon/index.html" rel="bookmark" title="Permanent link to We love bacon">We love bacon</a></h2> </div> </div> <div class="teasers_box"> <div class="post-619 post type-post status-publish format-standard has-post-thumbnail hentry category-meme-snow teaser" id="post-619"> <p><a href="../../../../meme-snow/everything-bollocks/index.html"><img width="300" height="300" src="../../../../wp-content/blogs.dir/15/files/2012/08/everything_bollocks-300x300.jpg" class="attachment-teaser-image2 wp-post-image" alt="everything bollocks" /></a></p><h2 class="entry-title"><a href="../../../../meme-snow/everything-bollocks/index.html" rel="bookmark" title="Permanent link to Everything bollocks">Everything bollocks</a></h2> </div> <div class="post-616 post type-post status-publish format-standard has-post-thumbnail hentry category-meme-snow teaser teaser_right" id="post-616"> <p><a href="../../../../meme-snow/dont-vote-kolob/index.html"><img width="300" height="300" src="../../../../wp-content/blogs.dir/15/files/2012/08/romney_kolob-300x300.jpg" class="attachment-teaser-image2 wp-post-image" alt="romney_kolob" /></a></p><h2 class="entry-title"><a href="../../../../meme-snow/dont-vote-kolob/index.html" rel="bookmark" title="Permanent link to Don&#8217;t vote Kolob">Don&#8217;t vote Kolob</a></h2> </div> </div> <div class="teasers_box"> <div class="post-613 post type-post status-publish format-standard has-post-thumbnail hentry category-meme-snow teaser" id="post-613"> <p><a href="../../../../meme-snow/fools-no-pickles/index.html"><img width="300" height="300" src="../../../../wp-content/blogs.dir/15/files/2012/08/fools_no_pickles-300x300.jpg" class="attachment-teaser-image2 wp-post-image" alt="fools_no_pickles" /></a></p><h2 class="entry-title"><a href="../../../../meme-snow/fools-no-pickles/index.html" rel="bookmark" title="Permanent link to Fools no pickles">Fools no pickles</a></h2> </div> <div class="post-603 post type-post status-publish format-standard has-post-thumbnail hentry category-meme-snow teaser teaser_right" id="post-603"> <p><a href="../../../../meme-snow/snow-people-are-dying/index.html"><img width="300" height="300" src="../../../../wp-content/blogs.dir/15/files/2012/08/secretagentsnowman_1344214362-300x300.jpg" class="attachment-teaser-image2 wp-post-image" alt="snow people are dying" /></a></p><h2 class="entry-title"><a href="../../../../meme-snow/snow-people-are-dying/index.html" rel="bookmark" title="Permanent link to Snow People Are Dying">Snow People Are Dying</a></h2> </div> </div> <div class="prev_next"> <p class="next"><a href="../../index.html" >Next Entries &rarr;</a></p> </div> </div> <div id="sidebars"> <div id="sidebar_1" class="sidebar"> <ul class="sidebar_list"> <li class="widget thesis_widget_search" id="thesis-search-widget-3"> <form method="get" class="search_form" action="../../../../index.html"> <p> <input class="text_input" type="text" value="search..." name="s" id="s" onfocus="if (this.value == 'search...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'search...';}" /> <input type="hidden" id="searchsubmit" value="" /> </p> </form> </li><li class="widget Collage_Recent_Posts_Widget" id="advanced-recent-posts-3"><h3>Random Snow</h3><ul> <li class="recent-post-item"> <a href="../../../../meme-snow/tough-snow/index.html" rel="bookmark" title="Permanent link to Tough Snow" class="post-title"></a> <div class="post-entry"> <p><a href="../../../../meme-snow/tough-snow/index.html"><img width="50" height="50" src="../../../../wp-content/blogs.dir/15/files/2012/10/secretagentsnowman_1350661086-150x150.jpg" class="attachment-50x50 wp-post-image" alt="secretagentsnowman_1350661086" /></a></p> </div> </li> <li class="recent-post-item"> <a href="../../../../photo-snow/real-snow/super-snow-grover/index.html" rel="bookmark" title="Permanent link to Super snow grover" class="post-title"></a> <div class="post-entry"> <p><a href="../../../../photo-snow/real-snow/super-snow-grover/index.html"><img width="50" height="50" src="../../../../wp-content/blogs.dir/15/files/2012/06/supergroversnow-1264102319-e1340956078491-150x150.jpg" class="attachment-50x50 wp-post-image" alt="super snow grover" /></a></p> </div> </li> <li class="recent-post-item"> <a href="../../../../photo-snow/real-snow/bathtub-gore-snowman/index.html" rel="bookmark" title="Permanent link to Bathtub gore snowman" class="post-title"></a> <div class="post-entry"> <p><a href="../../../../photo-snow/real-snow/bathtub-gore-snowman/index.html"><img width="50" height="50" src="../../../../wp-content/blogs.dir/15/files/2012/06/2382821592_12257aa5ba_b-150x150.jpg" class="attachment-50x50 wp-post-image" alt="bathtub gore snowman" /></a></p> </div> </li> <li class="recent-post-item"> <a href="../../../../meme-snow/worth-it/index.html" rel="bookmark" title="Permanent link to Worth It" class="post-title"></a> <div class="post-entry"> <p><a href="../../../../meme-snow/worth-it/index.html"><img width="50" height="50" src="../../../../wp-content/blogs.dir/15/files/2012/08/worth-it_o_381065-150x150.jpg" class="attachment-50x50 wp-post-image" alt="worth it" /></a></p> </div> </li> <li class="recent-post-item"> <a href="../../../../meme-snow/winter-returns/index.html" rel="bookmark" title="Permanent link to Winter returns" class="post-title"></a> <div class="post-entry"> <p><a href="../../../../meme-snow/winter-returns/index.html"><img width="50" height="50" src="../../../../wp-content/blogs.dir/15/files/2013/03/secretagentsnowman_1362515471-150x150.jpg" class="attachment-50x50 wp-post-image" alt="secretagentsnowman_1362515471" /></a></p> </div> </li> <li class="recent-post-item"> <a href="../../../../meme-snow/happy-birthday/index.html" rel="bookmark" title="Permanent link to Happy Birthday" class="post-title"></a> <div class="post-entry"> <p><a href="../../../../meme-snow/happy-birthday/index.html"><img width="50" height="50" src="../../../../wp-content/blogs.dir/15/files/2012/08/secretagentsnowman_1346178179-150x150.jpg" class="attachment-50x50 wp-post-image" alt="happy birthday" /></a></p> </div> </li> <li class="recent-post-item"> <a href="../../../../photo-snow/real-snow/granddaddy/index.html" rel="bookmark" title="Permanent link to “Granddaddy”" class="post-title"></a> <div class="post-entry"> <p><a href="../../../../photo-snow/real-snow/granddaddy/index.html"><img width="50" height="50" src="../../../../wp-content/blogs.dir/15/files/2014/03/ODD_GRANDDADDY_SNOWMAN_36308525-670x464-150x150.jpg" class="attachment-50x50 wp-post-image" alt="" /></a></p> </div> </li> <li class="recent-post-item"> <a href="../../../../meme-snow/legitimate-grape-snowman/index.html" rel="bookmark" title="Permanent link to Legitimate Grape snowman" class="post-title"></a> <div class="post-entry"> <p><a href="../../../../meme-snow/legitimate-grape-snowman/index.html"><img width="50" height="50" src="../../../../wp-content/blogs.dir/15/files/2012/08/legitimate_grape_snowman-150x150.jpg" class="attachment-50x50 wp-post-image" alt="legitimate_grape_snowman" /></a></p> </div> </li> <li class="recent-post-item"> <a href="../../../../photo-snow/fake-snow/food-snow/ice-cream-snowman/index.html" rel="bookmark" title="Permanent link to ice cream snowman" class="post-title"></a> <div class="post-entry"> <p><a href="../../../../photo-snow/fake-snow/food-snow/ice-cream-snowman/index.html"><img width="50" height="50" src="../../../../wp-content/blogs.dir/15/files/2012/07/snowman-e1322591829465-150x150.jpg" class="attachment-50x50 wp-post-image" alt="ice cream snowman" /></a></p> </div> </li> <li class="recent-post-item"> <a href="../../../../photo-snow/real-snow/itty-bitty-snowman/index.html" rel="bookmark" title="Permanent link to Itty Bitty snowman" class="post-title"></a> <div class="post-entry"> <p><a href="../../../../photo-snow/real-snow/itty-bitty-snowman/index.html"><img width="50" height="50" src="../../../../wp-content/blogs.dir/15/files/2012/06/snowman07-150x150.png" class="attachment-50x50 wp-post-image" alt="itty bitty snowman" /></a></p> </div> </li> <li class="recent-post-item"> <a href="../../../../photo-snow/real-snow/drunk-snowman/index.html" rel="bookmark" title="Permanent link to Drunk snowman" class="post-title"></a> <div class="post-entry"> <p><a href="../../../../photo-snow/real-snow/drunk-snowman/index.html"><img width="50" height="50" src="../../../../wp-content/blogs.dir/15/files/2012/06/3250074531_3ae4f1acd5_o-150x150.jpg" class="attachment-50x50 wp-post-image" alt="drunk snowman" /></a></p> </div> </li> <li class="recent-post-item"> <a href="../../../../photo-snow/real-snow/the-worlds-tallest-snowman-i-mean-snowwoman-escape-adulthood-with-kim-jason/index.html" rel="bookmark" title="Permanent link to World’s Tallest Snowman" class="post-title"></a> <div class="post-entry"> <p><a href="../../../../photo-snow/real-snow/the-worlds-tallest-snowman-i-mean-snowwoman-escape-adulthood-with-kim-jason/index.html"><img width="50" height="50" src="../../../../wp-content/blogs.dir/15/files/2012/06/tallestsnowman-150x150.jpg" class="attachment-50x50 wp-post-image" alt="worlds tallest snowman" /></a></p> </div> </li> <li class="recent-post-item"> <a href="../../../../links/todays-snowman/index.html" rel="bookmark" title="Permanent link to Today&#8217;s Snowman" class="post-title"></a> <div class="post-entry"> <p><a href="../../../../links/todays-snowman/index.html"><img width="50" height="50" src="../../../../wp-content/blogs.dir/15/files/2012/10/SnwmnnewFrnt-150x150.gif" class="attachment-50x50 wp-post-image" alt="History of the Snowman" /></a></p> </div> </li> <li class="recent-post-item"> <a href="../../../../photo-snow/real-snow/hidden-snowman/index.html" rel="bookmark" title="Permanent link to Hidden Snowman" class="post-title"></a> <div class="post-entry"> <p><a href="../../../../photo-snow/real-snow/hidden-snowman/index.html"><img width="50" height="50" src="../../../../wp-content/blogs.dir/15/files/2012/11/article-2229578-15E7BBC3000005DC-501_634x348-150x150.jpg" class="attachment-50x50 wp-post-image" alt="hidden snowman" /></a></p> </div> </li> <li class="recent-post-item"> <a href="../../../../photo-snow/real-snow/guardian-snowman/index.html" rel="bookmark" title="Permanent link to Guardian Snowman" class="post-title"></a> <div class="post-entry"> <p><a href="../../../../photo-snow/real-snow/guardian-snowman/index.html"><img width="50" height="50" src="../../../../wp-content/blogs.dir/15/files/2012/06/firebreathingsnowman1-150x150.jpg" class="attachment-50x50 wp-post-image" alt="Guardian Snowman" /></a></p> </div> </li> <li class="recent-post-item"> <a href="../../../../photo-snow/real-snow/snow-dalek/index.html" rel="bookmark" title="Permanent link to Snow dalek" class="post-title"></a> <div class="post-entry"> <p><a href="../../../../photo-snow/real-snow/snow-dalek/index.html"><img width="50" height="50" src="../../../../wp-content/blogs.dir/15/files/2012/06/snowdalek-1264102159-e1340956628865-150x150.jpg" class="attachment-50x50 wp-post-image" alt="snow dalek" /></a></p> </div> </li> <li class="recent-post-item"> <a href="../../../../photo-snow/real-snow/snow-snake/index.html" rel="bookmark" title="Permanent link to Snow Snake" class="post-title"></a> <div class="post-entry"> <p><a href="../../../../photo-snow/real-snow/snow-snake/index.html"><img width="50" height="50" src="../../../../wp-content/blogs.dir/15/files/2012/09/abc_wnn_snow_snake_101227_wg-150x150.jpg" class="attachment-50x50 wp-post-image" alt="snow snake" /></a></p> </div> </li> <li class="recent-post-item"> <a href="../../../../photo-snow/real-snow/boat-operations-snowman/index.html" rel="bookmark" title="Permanent link to Boat Operations Snowman" class="post-title"></a> <div class="post-entry"> <p><a href="../../../../photo-snow/real-snow/boat-operations-snowman/index.html"><img width="50" height="50" src="../../../../wp-content/blogs.dir/15/files/2012/11/james_stricker_MVC-005X650-150x150.jpg" class="attachment-50x50 wp-post-image" alt="boat operations snowman" /></a></p> </div> </li> <li class="recent-post-item"> <a href="../../../../photo-snow/fake-snow/drawn-snow/no-difference/index.html" rel="bookmark" title="Permanent link to No Difference" class="post-title"></a> <div class="post-entry"> <p><a href="../../../../photo-snow/fake-snow/drawn-snow/no-difference/index.html"><img width="50" height="50" src="../../../../wp-content/blogs.dir/15/files/2012/10/Michael-Oshins-Snowmen-comic-61-150x150.jpg" class="attachment-50x50 wp-post-image" alt="Michael Oshins Snowmen comic # 61" /></a></p> </div> </li> <li class="recent-post-item"> <a href="../../../../photo-snow/real-snow/st-patricks-day-snowman/index.html" rel="bookmark" title="Permanent link to St. Patricks day snowman" class="post-title"></a> <div class="post-entry"> <p><a href="../../../../photo-snow/real-snow/st-patricks-day-snowman/index.html"><img width="50" height="50" src="../../../../wp-content/blogs.dir/15/files/2012/06/StPatricksDay-150x150.png" class="attachment-50x50 wp-post-image" alt="st patricks day snowman" /></a></p> </div> </li> </ul> </li> </ul> </div> </div> </div> <div id="footer"> <div id="pagetop" class="pagetop_widget"><ul class="page_top_widget_ul"><li id="text-3" class="page_top_widget"> <div class="textwidget"><a target="_blank" class="external" href="https://twitter.com/ethersnowman"><img height="27" src="../../../../wp-content/themes/SecretAgentSnowman/lib/images/twitter.png"></a> <a target="_blank" class="external" href="https://www.facebook.com/SecretAgentSnowman"><img height="27" src="../../../../wp-content/themes/SecretAgentSnowman/lib/images/facebook.png"></a> <a target="_blank" class="external" href="https://plus.google.com/u/0/103257905390483544073/posts"><img height="27" src="../../../../wp-content/themes/SecretAgentSnowman/lib/images/gplus.png"></a> <a target="_blank" class="external" href="http://pinterest.com/secretagentsnow"><img height="27" src="../../../../wp-content/themes/SecretAgentSnowman/lib/images/pinterest.jpg"></a> <a target="_blank" class="external" href="http://www.memecenter.com/user/secretagentsnowman/230482"><img height="27" src="../../../../wp-content/themes/SecretAgentSnowman/lib/images/meme_center.jpg"></a> <a target="_blank" class="external" href="http://secretagentsnowman.cheezburger.com/"><img height="27" src="../../../../wp-content/themes/SecretAgentSnowman/lib/images/cheezburger.png"></a> <a href="mailto:secretagentsnowman@gmail.com"><img src="../../../../wp-content/themes/SecretAgentSnowman/lib/images/contact.jpg"></a> </div> </li></ul></div><div id="sidebar_footer_header" class="after_content_widget"><ul class="after_content_widget_ul"></ul></div><div id="sidebar_footer" class="footer_widget"><ul class="footer_widget_ul"></ul></div><p>Site by <a target="_blank" class="external" href="http://scottleedavis.com">Scott Lee Davis</a></p><script type='text/javascript' src='../../../../wp-includes/js/jquery/ui/jquery.ui.core.min.js%3Fver=1.10.4'></script> <script type='text/javascript' src='../../../../wp-includes/js/jquery/ui/jquery.ui.datepicker.min.js%3Fver=1.10.4'></script> </div> </div> </div> <!--[if lte IE 8]> <div id="ie_clear"></div> <![endif]--> </body> </html>
scottleedavis/secretagentsnowman
category/meme-snow/page/2/index.html
HTML
mit
28,187
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> <title>Meteorite Landings - READI</title> <!-- Bootstrap --> <link href="css/bootstrap.min.css" rel="stylesheet"> <link href="css/main.css" rel="stylesheet"> <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="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 onload="sizeChange()"> <nav id="nav" class="navbar navbar-inverse navbar-fixed-top"></nav> <div class="container"> <div class="page-header"> <h1>Meteorite Landings <small>on a timeline.</small></h1> </div> <div class="btn-group" role="group" aria-label="..."> <button id="playButton" type="button" class="btn btn-default" onclick="playAnimation()"> <span class="glyphicon glyphicon-play" aria-hidden="true"></span> </button> <button id="resetButton" type="button" class="btn btn-default" onclick="resetAnimation()"> <span class="glyphicon glyphicon-repeat" aria-hidden="true"></span> </button> </div> <h3 id="counter"><span class="label label-danger">0&nbsp&nbsp<span class="glyphicon glyphicon-pushpin" aria-hidden="true"></span></span></h3> <div id="visual-container"></div> <div id="timeline" class="progress"> <div class="progress-bar progress-bar-custom" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 0%;"></div> <span class="progress-value"></span> </div> </div><!-- /.container --> <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <!-- Include all compiled plugins (below), or include individual files as needed --> <script src="js/bootstrap.min.js"></script> <script src="js/d3.min.js"></script> <script src="js/topojson.js"></script> <script src="js/main.js"></script> <script src="js/meteorite-landings.js"></script> </body> </html>
remigourdon/readi-visuals
meteorite-landings.html
HTML
mit
2,849
<!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_01) on Tue Dec 06 23:26:29 CET 2011 --> <TITLE> M-Index </TITLE> <META NAME="date" CONTENT="2011-12-06"> <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="M-Index"; } } </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"> <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../overview-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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&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="index-9.html"><B>PREV LETTER</B></A>&nbsp; &nbsp;<A HREF="index-11.html"><B>NEXT LETTER</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../index.html?index-filesindex-10.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="index-10.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 ========= --> <A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">I</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">R</A> <A HREF="index-12.html">S</A> <HR> <A NAME="_M_"><!-- --></A><H2> <B>M</B></H2> <DL> <DT><A HREF="../de/poaceae/SPG/basic/Main.html" title="class in de.poaceae.SPG.basic"><B>Main</B></A> - Class in <A HREF="../de/poaceae/SPG/basic/package-summary.html">de.poaceae.SPG.basic</A><DD>&nbsp;<DT><A HREF="../de/poaceae/SPG/basic/Main.html#Main()"><B>Main()</B></A> - Constructor for class de.poaceae.SPG.basic.<A HREF="../de/poaceae/SPG/basic/Main.html" title="class in de.poaceae.SPG.basic">Main</A> <DD>&nbsp; <DT><A HREF="../de/poaceae/SPG/basic/Main.html#main(java.lang.String[])"><B>main(String[])</B></A> - Static method in class de.poaceae.SPG.basic.<A HREF="../de/poaceae/SPG/basic/Main.html" title="class in de.poaceae.SPG.basic">Main</A> <DD>&nbsp; </DL> <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"> <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../overview-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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&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="index-9.html"><B>PREV LETTER</B></A>&nbsp; &nbsp;<A HREF="index-11.html"><B>NEXT LETTER</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../index.html?index-filesindex-10.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="index-10.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 ======= --> <A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">I</A> <A HREF="index-9.html">L</A> <A HREF="index-10.html">M</A> <A HREF="index-11.html">R</A> <A HREF="index-12.html">S</A> <HR> </BODY> </HTML>
RainerWinkler/Optical-Spectrograph-Beta
Frontend/doc/index-files/index-10.html
HTML
mit
6,604
<!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_24) on Thu May 12 20:16:07 CST 2011 --> <TITLE> Uses of Class UI_control </TITLE> <META NAME="date" CONTENT="2011-05-12"> <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 UI_control"; } } </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="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../UI_control.html" title="class in &lt;Unnamed&gt;"><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="../overview-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?class-useUI_control.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="UI_control.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>UI_control</B></H2> </CENTER> No usage of UI_control <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="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../UI_control.html" title="class in &lt;Unnamed&gt;"><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="../overview-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?class-useUI_control.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="UI_control.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>
iluoyi/Gym-Booking-System
Javadocs/class-use/UI_control.html
HTML
mit
5,178
<!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_55) on Thu Apr 24 20:55:49 UTC 2014 --> <meta http-equiv="Content-Type" content="text/html" charset="utf-8"> <title>Uses of Class org.apache.solr.response.BinaryResponseWriter (Solr 4.8.0 API)</title> <meta name="date" content="2014-04-24"> <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.solr.response.BinaryResponseWriter (Solr 4.8.0 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/solr/response/BinaryResponseWriter.html" title="class in org.apache.solr.response">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/solr/response/class-use/BinaryResponseWriter.html" target="_top">Frames</a></li> <li><a href="BinaryResponseWriter.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.solr.response.BinaryResponseWriter" class="title">Uses of Class<br>org.apache.solr.response.BinaryResponseWriter</h2> </div> <div class="classUseContainer">No usage of org.apache.solr.response.BinaryResponseWriter</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/solr/response/BinaryResponseWriter.html" title="class in org.apache.solr.response">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/solr/response/class-use/BinaryResponseWriter.html" target="_top">Frames</a></li> <li><a href="BinaryResponseWriter.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>
dtelaroli/angular-solr-example
solr-4.8.0/docs/solr-core/org/apache/solr/response/class-use/BinaryResponseWriter.html
HTML
mit
4,846
<!doctype html> <html ng-app="myApp"> <head> <script src="vendor/angular.js"></script> <script src="../src/angular-ajax-complete.js"></script> <script> var app = angular.module('myApp', ['ajaxLoadNotifier']); app.run(function ($http, $rootScope) { $http.get('data/data1.json'); $http.get('data/data2.json'); $http.get('data/data3.json'); $rootScope.$on('ajaxComplete', function () { console.log('ajax requests complete.'); }); }); </script> </head> <body> <div data-ng-include data-src="'partials/partial1.html'"></div> <div data-ng-include data-src="'partials/partial2.html'"></div> <div data-ng-include data-src="'partials/partial3.html'"></div> </body> </html>
jcarras/angular-ajax-complete
example/index.html
HTML
mit
726
<div> <!-- BODY CELL TEMPLATES --> <span gc-set-fragment="searchMerchants:tableBody:name" class="u-text-truncate u-block"> <a ng-href="/merchants/{{ $row.id }}"> {{ $row.name || $row.id }} </a> </span> <!-- BODY CELL TEMPLATES END --> <gc-table table-data="results.merchants.results" table-options="{ name: 'merchants:search', fragmentPrefix: 'searchMerchants:' }" table-columns="[{ field: 'name', displayAs: 'Merchant name', className: 'name' }, { field: 'email', displayAs: 'Email' }, { field: 'owner', displayAs: 'Owner' }]"> </gc-table> </div>
gocardless/ng-gc-components
ng-gc-search-results-directive/templates/ng-gc-search-results-merchants-template.html
HTML
mit
657
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>aac-tactics: 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 / extra-dev</a></li> <li class="active"><a href="">dev / aac-tactics - 8.11.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> aac-tactics <small> 8.11.0 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2022-01-19 18:24:42 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-19 18:24:42 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 dev Formal proof management system dune 2.9.1 Fast, portable, and opinionated build system ocaml 4.11.2 The OCaml compiler (virtual package) ocaml-base-compiler 4.11.2 Official release 4.11.2 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;palmskog@gmail.com&quot; homepage: &quot;https://github.com/coq-community/aac-tactics&quot; dev-repo: &quot;git+https://github.com/coq-community/aac-tactics.git&quot; bug-reports: &quot;https://github.com/coq-community/aac-tactics/issues&quot; license: &quot;LGPL-3.0-or-later&quot; synopsis: &quot;This Coq plugin provides tactics for rewriting universally quantified equations, modulo associative (and possibly commutative) operators&quot; description: &quot;&quot;&quot; This Coq plugin provides tactics for rewriting universally quantified equations, modulo associativity and commutativity of some operator. The tactics can be applied for custom operators by registering the operators and their properties as type class instances. Many common operator instances, such as for Z binary arithmetic and booleans, are provided with the plugin.&quot;&quot;&quot; build: [make &quot;-j%{jobs}%&quot;] install: [make &quot;install&quot;] depends: [ &quot;ocaml&quot; {&gt;= &quot;4.05.0&quot;} &quot;coq&quot; {&gt;= &quot;8.11&quot; &amp; &lt; &quot;8.12~&quot;} ] tags: [ &quot;category:Miscellaneous/Coq Extensions&quot; &quot;category:Computer Science/Decision Procedures and Certified Algorithms/Decision procedures&quot; &quot;keyword:reflexive tactic&quot; &quot;keyword:rewriting&quot; &quot;keyword:rewriting modulo associativity and commutativity&quot; &quot;keyword:rewriting modulo ac&quot; &quot;keyword:decision procedure&quot; &quot;logpath:AAC_tactics&quot; &quot;date:2020-01-31&quot; ] authors: [ &quot;Thomas Braibant&quot; &quot;Damien Pous&quot; &quot;Fabian Kunze&quot; ] url { src: &quot;https://github.com/coq-community/aac-tactics/archive/v8.11.0.tar.gz&quot; checksum: &quot;sha512=91d8d83bef9d1156ec42b3ed02b6457cd776c4b1a6d93f2b64cb234ef96c044fa85052a6adc68acb0670a93574b80291d4abac80bd8eb694e2cb23e9fa880e92&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-aac-tactics.8.11.0 coq.dev</code></dd> <dt>Return code</dt> <dd>5120</dd> <dt>Output</dt> <dd><pre>[NOTE] Package coq is already installed (current version is dev). The following dependencies couldn&#39;t be met: - coq-aac-tactics -&gt; coq &lt; 8.12~ -&gt; ocaml &lt; 4.10 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-aac-tactics.8.11.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>
coq-bench/coq-bench.github.io
clean/Linux-x86_64-4.11.2-2.0.7/extra-dev/dev/aac-tactics/8.11.0.html
HTML
mit
7,750
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>otway-rees: 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.0 / otway-rees - 8.5.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> otway-rees <small> 8.5.0 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2021-10-28 09:54:59 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-10-28 09:54:59 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 conf-findutils 1 Virtual package relying on findutils coq 8.11.0 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 ocamlfind 1.9.1 A library manager for OCaml # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;matej.kosik@inria.fr&quot; homepage: &quot;https://github.com/coq-contribs/otway-rees&quot; license: &quot;Proprietary&quot; build: [make &quot;-j%{jobs}%&quot;] install: [make &quot;install&quot;] remove: [&quot;rm&quot; &quot;-R&quot; &quot;%{lib}%/coq/user-contrib/OtwayRees&quot;] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.5&quot; &amp; &lt; &quot;8.6~&quot;} ] tags: [ &quot;keyword:otway rees&quot; &quot;keyword:protocols&quot; &quot;keyword:cryptography&quot; &quot;category:Computer Science/Concurrent Systems and Protocols/Correctness of specific protocols&quot; ] authors: [ &quot;Dominique Bolignano &lt;&gt;&quot; &quot;Valérie Ménissier-Morain &lt;&gt;&quot; ] bug-reports: &quot;https://github.com/coq-contribs/otway-rees/issues&quot; dev-repo: &quot;git+https://github.com/coq-contribs/otway-rees.git&quot; synopsis: &quot;Otway-Rees cryptographic protocol&quot; description: &quot;&quot;&quot; A description and a proof of correctness for the Otway-Rees cryptographic protocol, usually used as an example for formalisation of such protocols.&quot;&quot;&quot; flags: light-uninstall url { src: &quot;https://github.com/coq-contribs/otway-rees/archive/v8.5.0.tar.gz&quot; checksum: &quot;md5=f7837476dd70663f035427486317a9f5&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-otway-rees.8.5.0 coq.8.11.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.11.0). The following dependencies couldn&#39;t be met: - coq-otway-rees -&gt; coq &lt; 8.6~ -&gt; ocaml &lt; 4.03.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-otway-rees.8.5.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>
coq-bench/coq-bench.github.io
clean/Linux-x86_64-4.05.0-2.0.1/released/8.11.0/otway-rees/8.5.0.html
HTML
mit
7,060
<div class="row"> <div class="col-md-12"> <form class="well"> <div class="form-group"> <input type="text" class="form-control" placeholder="Enter Github Username..." [(ngModel)]="username" name="username" (keyup)="searchUser()" /> </div> </form> </div> </div> <div *ngIf="user" style="padding-top: 60px;"> <div class="panel panel-default"> <div class="panel-heading"> <h3 class="panel-title">{{user.name}}</h3> </div> <div class="panel-body"> <div class="row"> <div class="col-md-4"> <img class="img-thumbnail" src="{{user.avatar_url}}" /> <a class="btn btn-default btn-block" target="_blank" href="{{user.html_url}}">View Profile</a> </div> <div class="col-md-8"> <div class="stats"> <span class="label label-default">{{ user.public_repos }} Public Repos</span> <span class="label label-primary">{{ user.public_gists }} Public Gists</span> <span class="label label-success">{{ user.followers }} Followers</span> <span class="label label-info">{{ user.following }} Following</span> </div> <br /> <ul class="list-group"> <li class="list-group-item"><strong>Username: </strong>{{user.login}}</li> <li class="list-group-item"><strong>Location: </strong>{{user.location}}</li> <li class="list-group-item"><strong>Email: </strong>{{user.email}}</li> <li class="list-group-item"><strong>Blog: </strong>{{user.blog}}</li> <li class="list-group-item"><strong>Member Since: </strong>{{user.created_at | date}}</li> </ul> </div> </div> </div> </div> <div class="panel panel-default"> <div class="panel-heading"> <h3 class="panel-title">User Repos</h3> </div> <div class="panel-body"> <div *ngFor="let repo of repos"> <div class="row"> <div class="col-md-9"> <h4><a target="_blank" href="{{repo.html_url}}">{{ repo.name }}</a></h4> <p>{{repo.description}}</p> </div> <div class="col-md-3"> <span class="label label-default">{{ repo.watchers }} Watchers</span> <span class="label label-primary">{{ repo.forks }} Forks</span> </div> </div> <hr /> </div> </div> </div> </div>
tapiwam/angularProjects
githubSearch/app/components/profile.component.html
HTML
mit
2,650
<svg width="40px" height="40px" viewBox="0 0 60 60" version="1.1" xmlns="http://www.w3.org/2000/svg"> <path d="M0.112290344,30 C0.112290344,13.4314567 13.3426506,0 29.663129,0 C45.9836073,0 59.2139676,13.4314567 59.2139676,30 C59.2139676,46.5685433 45.9836073,60 29.663129,60 C13.3426506,60 0.112290344,46.5685433 0.112290344,30 Z M0.112290344,30" fill="#E18F00"></path> <path d="M26.5147755,38.7571296 C26.5147755,36.8192934 24.9575021,35.2291656 23.0297047,35.2291656 C21.1094331,35.2291656 19.5492775,36.8192934 19.5492775,38.7571296 C19.5492775,40.7052068 21.1094331,42.277616 23.0297047,42.277616 C24.957422,42.277616 26.5146954,40.7052881 26.5147755,38.7571296 Z M36.8075433,42.2700571 C36.8075433,32.6055847 29.062648,24.7442705 19.5492775,24.7442705 L19.5492775,29.8318017 C22.8128986,29.8318017 25.8817303,31.1272145 28.1920609,33.4740429 C30.4999895,35.8159133 31.7732853,38.9454513 31.7732853,42.2701384 L36.8075433,42.2700571 Z M45.6871482,42.2675375 C45.6871482,27.6346878 33.9604014,15.722384 19.5492775,15.722384 L19.5492775,20.8123535 C31.186916,20.8123535 40.660496,30.438869 40.660496,42.2673749 L45.6871482,42.2675375 Z M45.6871482,42.2675375" fill="#FFFFFF"></path> <path d="M59.2139676,30 C59.2139676,46.5685433 45.9836073,60 29.663129,60 C23.6102502,60 17.9824147,58.1525134 13.2970341,54.9827754 L47.1572554,5.81941103 C54.4691534,11.2806503 59.2139676,20.0777973 59.2139676,30 Z M59.2139676,30" fill-opacity="0.08" fill="#000000"></path> </svg>
stevehansen/stevehansen.github.io
_includes/svg-icons/rss.html
HTML
mit
1,480
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width"/> <title>Stuart&#39;s Notes</title> <link type="text/css" rel="stylesheet" href="https://srackham.github.io/stuarts-notes/main.css"> <link type="text/css" rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/default.min.css"> </head> <body> <div class="banner no-print"> <a href="https://srackham.github.io/stuarts-notes/">srackham | blog</a> </div> <ul class="menu no-print"> <li><a href="https://srackham.github.io/stuarts-notes/indexes/posts/docs-1.html">Posts</a></li> <li><a href="https://srackham.github.io/stuarts-notes/indexes/posts/tags.html">Tags</a></li> <li><a href="https://srackham.github.io/stuarts-notes/indexes/posts/all/docs-1.html">All</a></li> <li><a href="https://srackham.github.io/stuarts-notes/about.html">About</a></li> <li><a href="https://srackham.github.io/stuarts-notes/search.html">Search</a></li> </ul> <div id="main"> <div id="article"> <h1>Weblog client Blog Posts</h1> <p> 1 posts, page 1 of 1</p> <ul class="docslist"> <li> <h2><a href="https://srackham.github.io/stuarts-notes/posts/blogging-with-asciidoc/">Blogging with AsciiDoc</a></h2> <span>May 15, 2008</span> <span class="doctags"> ・ <a href="https://srackham.github.io/stuarts-notes/indexes/posts/tags/asciidoc-1.html">AsciiDoc</a> ・ <a href="https://srackham.github.io/stuarts-notes/indexes/posts/tags/blogpost-1.html">blogpost</a> ・ <a href="https://srackham.github.io/stuarts-notes/indexes/posts/tags/weblog-client-1.html">Weblog client</a> ・ <a href="https://srackham.github.io/stuarts-notes/indexes/posts/tags/wordpress-1.html">WordPress</a> </span> <blockquote> <p>Since this blog was written many new features have been added to <code>blogpost</code> &ndash; see <a href="/posts/blogpost-media-processing/">blogpost media processing</a></p> </blockquote> <p>I make lots of notes using <a href="http://www.methods.co.nz/asciidoc/">AsciiDoc</a>, the sort of stuff that&rsquo;s to minor and/or not rigorous enough for formal publication, but possibly useful to others.</p> <p>So I decided it was about time I started posting my notes to a blog. Creating and maintaining posts using the normal browser based interfaces was not an option &ndash; just to tedious for words. So I looked around for an HTML friendly blog host that could make a reasonable job of rendering AsciiDoc generated HTML.</p> <p class="more"><a href="https://srackham.github.io/stuarts-notes/posts/blogging-with-asciidoc/">Read more →</a></p> </li> </ul> <div class="docsfooter"> <div> <span class="left"> <span class="disabled">« First &nbsp;&nbsp; « Newer</span> </span> <span class="right"> <span class="disabled">Older » &nbsp;&nbsp; Last »</span> </span> </div> <div class="clear"></div> </div> </div> </div> <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/languages/go.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/languages/groovy.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/languages/kotlin.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/languages/typescript.min.js"></script> <script> hljs.configure({languages: []}); hljs.initHighlightingOnLoad(); </script> </body> </html>
srackham/stuarts-notes
docs/indexes/posts/tags/weblog-client-1.html
HTML
mit
3,739
<table width="90%" border="0"><tr><td><script>function openfile(url) {fullwin = window.open(url, "fulltext", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");}</script><div class="layoutclass_pic"><div class="layoutclass_first_pic"><table class="ztable"><tr><th class="ztd1"><b>成語&nbsp;</b></th><td class="ztd2">青黃未接</td></tr> <tr><th class="ztd1"><b>注音&nbsp;</b></th><td class="ztd2">ㄑ|ㄥ ㄏㄨㄤ<sup class="subfont">ˊ</sup> ㄨㄟ<sup class="subfont">ˋ</sup> ㄐ|ㄝ</td></tr> <tr><th class="ztd1"><b>漢語拼音&nbsp;</b></th><td class="ztd2"><font class="english_word">qīng huáng wèi jiē</font></td></tr> <tr><th class="ztd1"><b>釋義&nbsp;</b></th><td class="ztd2"> 義參「<a href="/cgi-bin/cydic/gsweb.cgi?o=dcydic&schfmt=text&gourl=%3De0%26sec%3Dsec1%26op%3Dsid%3D%22CW0000000206%22.%26v%3D-1" class="clink" target=_blank>青黃不接</a>」。見「<a href="/cgi-bin/cydic/gsweb.cgi?o=dcydic&schfmt=text&gourl=%3De0%26sec%3Dsec1%26op%3Dsid%3D%22CW0000000206%22.%26v%3D-1" class="clink" target=_blank>青黃不接</a>」條。</font></td></tr> <tr><th class="ztd1"><b><style>.tableoutfmt2 .std1{width:3%;}</style></b></th><td class="ztd2"><table class="fmt16_table"><tr><td width=150 style="text-align:left;" class="fmt16_td1" ><b>參考詞語︰</b></td><td width=150 style="text-align:left;" class="fmt16_td2" ><a href="/cgi-bin/cydic/gsweb.cgi?o=dcydic&schfmt=text&gourl=%3De0%26sec%3Dsec1%26op%3Dsid%3D%22CW0000000206%22.%26v%3D-1" class="clink" target=_blank>青黃不接</a></td></tr><tr><td width=150 style="text-align:left;" class="fmt16_td1" ><b>注音︰</b></td><td width=150 style="text-align:left;" class="fmt16_td2" >ㄑ|ㄥ ㄏㄨㄤ<sup class="subfont">ˊ</sup> ㄅㄨ<sup class="subfont">ˋ</sup> ㄐ|ㄝ</td></tr><tr><td width=150 style="text-align:left;" class="fmt16_td1" ><b>漢語拼音︰</b></td><td width=150 style="text-align:left;" class="fmt16_td2" ><font class="english_word">qīng huáng bù jiē</font></td></tr></table><br><br></td></tr> </td></tr></table></div> <!-- layoutclass_first_pic --><div class="layoutclass_second_pic"></div> <!-- layoutclass_second_pic --></div> <!-- layoutclass_pic --></td></tr></table>
BuzzAcademy/idioms-moe-unformatted-data
all-data/3000-3999/3583-34.html
HTML
mit
2,249
{% extends "base.html" %} {% load staticfiles %} {% block content %} <div class="col-md-12"> <h1> CARROS </h1> <a class="btn btn-primary" href="{% url 'webui:carro-create' %}"> ADICIONAR </a> &nbsp; &nbsp; <a class="btn btn-primary" href="{% url 'webui:carro-search' %}"> BUSCAR </a> <div> <table class="table"> <thead> <th> Placa </th> <th> Kilometragem </th> <th> Modelo </th> <th> Cor </th> <th> Motor </th> <th class="td-actions text-right"> Ações </th> <thead> <tbody> </tbody> </table> </div> <div> &nbsp; </div> </div> {% endblock content %} {% block js %} <script type="text/javascript" src="{% static "js/carros.js" %}"></script> {% endblock js %}
tiagoprn/experiments
django/drf_veiculos_app/src/veiculos/apps/webui/templates/webui/carros/all.html
HTML
mit
884
<!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="/OpenTl.Schema/assets/img/favicon.ico" type="image/x-icon"> <link rel="icon" href="/OpenTl.Schema/assets/img/favicon.ico" type="image/x-icon"> <title>OpenTl.Schema - API - TDifferenceEmpty Class</title> <link href="/OpenTl.Schema/assets/css/mermaid.css" rel="stylesheet"> <link href="/OpenTl.Schema/assets/css/highlight.css" rel="stylesheet"> <link href="/OpenTl.Schema/assets/css/bootstrap/bootstrap.css" rel="stylesheet"> <link href="/OpenTl.Schema/assets/css/adminlte/AdminLTE.css" rel="stylesheet"> <link href="/OpenTl.Schema/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="/OpenTl.Schema/assets/css/font-awesome.min.css" rel="stylesheet" type="text/css"> <link href="/OpenTl.Schema/assets/css/override.css" rel="stylesheet"> <script src="/OpenTl.Schema/assets/js/jquery-2.2.3.min.js"></script> <script src="/OpenTl.Schema/assets/js/bootstrap.min.js"></script> <script src="/OpenTl.Schema/assets/js/app.min.js"></script> <script src="/OpenTl.Schema/assets/js/highlight.pack.js"></script> <script src="/OpenTl.Schema/assets/js/jquery.slimscroll.min.js"></script> <script src="/OpenTl.Schema/assets/js/jquery.sticky-kit.min.js"></script> <script src="/OpenTl.Schema/assets/js/mermaid.min.js"></script> <!--[if lt IE 9]> <script src="/OpenTl.Schema/assets/js/html5shiv.min.js"></script> <script src="/OpenTl.Schema/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="/OpenTl.Schema/" class="logo"> <span>OpenTl.Schema</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="/OpenTl.Schema/about.html">About This Project</a></li> <li class="active"><a href="/OpenTl.Schema/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="#Syntax">Syntax</a></p> <p><a href="#Attributes">Attributes</a></p> <p><a href="#Properties">Properties</a></p> <p><a href="#ExtensionMethods">Extension Methods</a></p> <hr class="infobar-hidden"> </div> </section> <section class="sidebar"> <script src="/OpenTl.Schema/assets/js/lunr.min.js"></script> <script src="/OpenTl.Schema/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="/OpenTl.Schema/api/OpenTl.Schema.Updates">OpenTl<wbr>.Schema<wbr>.Updates</a></li> <li role="separator" class="divider"></li> <li class="header">Class Types</li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema.Updates/RequestGetChannelDifference">Request<wbr>Get<wbr>Channel<wbr>Difference</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema.Updates/RequestGetDifference">RequestGetDifference</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema.Updates/RequestGetState">RequestGetState</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema.Updates/TChannelDifference">TChannelDifference</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema.Updates/TChannelDifferenceEmpty">T<wbr>Channel<wbr>Difference<wbr>Empty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema.Updates/TChannelDifferenceTooLong">T<wbr>Channel<wbr>Difference<wbr>Too<wbr>Long</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema.Updates/TDifference">TDifference</a></li> <li class="selected"><a href="/OpenTl.Schema/api/OpenTl.Schema.Updates/TDifferenceEmpty">TDifferenceEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema.Updates/TDifferenceSlice">TDifferenceSlice</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema.Updates/TDifferenceTooLong">TDifferenceTooLong</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema.Updates/TState">TState</a></li> <li class="header">Interface Types</li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema.Updates/IChannelDifference">IChannelDifference</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema.Updates/IChannelDifferenceCommon">I<wbr>Channel<wbr>Difference<wbr>Common</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema.Updates/IDifference">IDifference</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema.Updates/IDifferenceCommon">IDifferenceCommon</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema.Updates/IState">IState</a></li> </ul> </section> </aside> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <section class="content-header"> <h1>TDifferenceEmpty <small>Class</small></h1> </section> <section class="content"> <div class="panel panel-default"> <div class="panel-body"> <div class="row"> <div class="col-md-6"> <dl class="dl-horizontal"> <dt>Namespace</dt> <dd><a href="/OpenTl.Schema/api/OpenTl.Schema.Updates">OpenTl<wbr>.Schema<wbr>.Updates</a></dd> <dt>Interfaces</dt> <dd> <ul class="list-unstyled"> <li><a href="/OpenTl.Schema/api/OpenTl.Schema.Updates/IDifference">IDifference</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IObject">IObject</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IEmpty">IEmpty</a></li> </ul> </dd> <dt>Base Types</dt> <dd> <ul class="list-unstyled"> <li>object</li> </ul> </dd> </dl> </div> <div class="col-md-6"> <div class="mermaid"> graph TD Base0["object"]--&gt;Type Interface0["IDifference"]-.-&gt;Type click Interface0 "/OpenTl.Schema/api/OpenTl.Schema.Updates/IDifference" Interface1["IObject"]-.-&gt;Type click Interface1 "/OpenTl.Schema/api/OpenTl.Schema/IObject" Interface2["IEmpty"]-.-&gt;Type click Interface2 "/OpenTl.Schema/api/OpenTl.Schema/IEmpty" Type["TDifferenceEmpty"] class Type type-node </div> </div> </div> </div> </div> <h1 id="Syntax">Syntax</h1> <pre><code>[Serialize(0x5d75a138)] public sealed class TDifferenceEmpty : IDifference, IObject, IEmpty</code></pre> <h1 id="Attributes">Attributes</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>SerializeAttribute</td> <td></td> </tr> </tbody></table> </div> </div> <h1 id="Properties">Properties</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>Value</th> <th>Summary</th> </tr> </thead> <tbody><tr> <td><a href="/OpenTl.Schema/api/OpenTl.Schema.Updates/TDifferenceEmpty/D4CE48E0.html">Date</a></td> <td>int</td> <td> <div></div> </td> </tr> <tr> <td><a href="/OpenTl.Schema/api/OpenTl.Schema.Updates/TDifferenceEmpty/373E229F.html">Seq</a></td> <td>int</td> <td> <div></div> </td> </tr> </tbody></table> </div> </div> <h1 id="ExtensionMethods">Extension Methods</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>Value</th> <th>Summary</th> </tr> </thead> <tbody><tr> <td><a href="/OpenTl.Schema/api/OpenTl.Schema/Utils/A1A958DE.html">As<wbr>&lt;T&gt;<wbr><wbr>()<wbr></a></td> <td>T</td> <td> <div></div> <div><small><em>From <a href="/OpenTl.Schema/api/OpenTl.Schema/Utils">Utils</a></em></small></div> </td> </tr> <tr> <td><a href="/OpenTl.Schema/api/OpenTl.Schema/Utils/4941F7D3.html">Is<wbr>&lt;T&gt;<wbr><wbr>()<wbr></a></td> <td>T</td> <td> <div></div> <div><small><em>From <a href="/OpenTl.Schema/api/OpenTl.Schema/Utils">Utils</a></em></small></div> </td> </tr> <tr> <td><a href="/OpenTl.Schema/api/OpenTl.Schema/Utils/CF7043C9.html">IsEmpty<wbr>()<wbr></a></td> <td>bool</td> <td> <div></div> <div><small><em>From <a href="/OpenTl.Schema/api/OpenTl.Schema/Utils">Utils</a></em></small></div> </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>
OpenTl/OpenTl.Schema
docs/api/OpenTl.Schema.Updates/TDifferenceEmpty/index.html
HTML
mit
14,890
<div class="header"> <h3><f:render partial="Views/Show/ProfilePhoto" arguments="{photo: party.profilePhoto, width: 50}"/>{party.name} / Educations</h3> </div> <div class="content-padding multi-form"> <f:for each="{educations}" as="education"> <div id="education-{education.id}" class="multi-form-item"> <f:render partial="Forms/Education" arguments="{party: party, education: education, action: 'update', collapsed: true}"/> </div> </f:for> <div id="education-add" class="multi-form-item"> <f:if condition="{educations}"> <f:then> <f:render partial="Forms/Education" arguments="{party: party, action: 'add', suffix: 'education', collapsed: true}"/> </f:then> <f:else> <f:render partial="Forms/Education" arguments="{party: party, action: 'add', suffix: 'education', collapsed: false}"/> </f:else> </f:if> </div> </div>
beechit/MisterMaks-EHRM
Packages/Beech/Beech.Party/Resources/Private/Templates/Education/List.html
HTML
mit
858
--- layout: default --- <div class="post"> <h1 class="post-title">{{ page.title }}</h1> <span class="post-date">{{ page.date | date_to_string }}</span> {{ content }} </div> <div id="disqus_thread"></div> <script type="text/javascript"> /* * * CONFIGURATION VARIABLES * * */ var disqus_shortname = 'mohammadkhatri'; var disqus_title = '{{ page.title }}'; var disqus_developer = 1; // Comment out when the site is live var disqus_identifier = '{{ site.url }}{{ page.url }}'; /* * * DON'T EDIT BELOW THIS LINE * * */ (function() { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); })(); </script> <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript> <div class="related"> <h2>Related Posts</h2> <ul class="related-posts"> {% for post in site.related_posts limit:3 %} <li> <h3> <a href="{{ post.url }}"> {{ post.title }} <small>{{ post.date | date_to_string }}</small> </a> </h3> </li> {% endfor %} </ul> </div> <div class="right"> <h2><a href='{{ site.url }}/blog/'>Back To All Posts</a></h2> </div>
mohammadkhatri/mohammadkhatri.github.io
_layouts/post.html
HTML
mit
1,457
<!doctype html> <html> <head> <meta charset='utf-8' /> <title>nxus-admin 4.0.0-2 | Documentation</title> <meta name='viewport' content='width=device-width,initial-scale=1'> <link href='assets/bass.css' type='text/css' rel='stylesheet' /> <link href='assets/style.css' type='text/css' rel='stylesheet' /> <link href='assets/github.css' type='text/css' rel='stylesheet' /> </head> <body class='documentation'> <div class='max-width-4 mx-auto'> <div class='clearfix md-mxn2'> <div class='fixed xs-hide fix-3 overflow-auto max-height-100'> <div class='py1 px2'> <h3 class='mb0 no-anchor'>nxus-admin</h3> <div class='mb1'><code>4.0.0-2</code></div> <input placeholder='Filter' id='filter-input' class='col12 block input' type='text' /> <div id='toc'> <ul class='list-reset h5 py1-ul'> <li><a href='#admin' class=" toggle-sibling"> Admin <span class='icon'>▸</span> </a> <div class='toggle-target display-none'> <ul class='list-reset py1-ul pl1'> <li class='h5'><span>Instance members</span></li> <li><a href='#Admin#getAdminUrl' class='regular pre-open'> #getAdminUrl </a></li> <li><a href='#Admin#page' class='regular pre-open'> #page </a></li> <li><a href='#Admin#manage' class='regular pre-open'> #manage </a></li> </ul> </div> </li> </ul> </div> <div class='mt1 h6 quiet'> <a href='http://documentation.js.org/reading-documentation.html'>Need help reading this?</a> </div> </div> </div> <div class='fix-margin-3'> <section class='p2 mb2 clearfix bg-white minishadow'> <div class='clearfix'> <h3 class='fl m0' id='admin'> Admin </h3> <a class='fr fill-darken0 round round pad1x quiet h5' href='https://github.com/nxus/admin/blob/562124c8c9892d6369881f7826bf739e92c40abb/src/index.js#L17-L144'> <span>src/index.js</span> </a> </div> <p>The Base Admin class provides a web interface for managing Nxus applications and data.</p> <div class='pre p1 fill-light mt0'>new Admin()</div> <p> Extends NxusModule </p> <div class='py1 quiet mt1 prose-big'>Instance Members</div> <div class="clearfix"> <div class='border-bottom' id='Admin#getAdminUrl'> <div class="clearfix small pointer toggle-sibling"> <div class="py1 contain"> <a class='icon pin-right py1 dark-link caret-right'>▸</a> <span class='code strong strong truncate'>getAdminUrl()</span> </div> </div> <div class="clearfix display-none toggle-target"> <section class='p2 mb2 clearfix bg-white minishadow'> <div class='pre p1 fill-light mt0'>getAdminUrl(): <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String">String</a></div> <div class='py1 quiet mt1 prose-big'>Returns</div> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String">String</a></code>: the root Url where the admin interface is available. </section> </div> </div> <div class='border-bottom' id='Admin#page'> <div class="clearfix small pointer toggle-sibling"> <div class="py1 contain"> <a class='icon pin-right py1 dark-link caret-right'>▸</a> <span class='code strong strong truncate'>page(opts, responder)</span> </div> </div> <div class="clearfix display-none toggle-target"> <section class='p2 mb2 clearfix bg-white minishadow'> <p>Registers a page with the admin interface. Pages can be defined two different ways.</p> <h2>Template Partials</h2> <p><code>admin.page(&#x27;/route&#x27;, &#x27;partial-name&#x27;)</code></p> <h2>Route Handlers</h2> <p><code>admin.page(&#x27;/route&#x27;, (req, res) =&gt; {...})</code></p> <h2>Options</h2> <p>The first argument can either be a string or an options hash. If an options hash, it must include a <code>route</code> attribute.</p> <p>Other options include:</p> <ul> <li><code>route</code>: Required. The route to the page.</li> <li><code>method</code>: the HTTP method to use for the route.</li> <li><code>label</code>: the nav label to use. Defaults to a title version of the route.</li> <li><code>nav</code>: set to <code>false</code> to skip creating a nav item: useful for routes with no display.</li> <li><code>directHandler</code>: if true, the handler is a full route handler. Otherwise, wrapped to send reponse</li> <li><code>order</code>: the order of the nav menu.</li> <li><code>icon</code>: the icon class to use for the page in the nav and other places.</li> </ul> <div class='pre p1 fill-light mt0'>page(opts: (<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String">String</a> | <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object">Object</a>), responder: (<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String">String</a> | <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/function">Function</a>))</div> <div class='py1 quiet mt1 prose-big'>Parameters</div> <div class='prose'> <div class='space-bottom0'> <div> <span class='code bold'>opts</span> <code class='quiet'>((<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String">String</a> | <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object">Object</a>))</code> The route or options for the page </div> </div> <div class='space-bottom0'> <div> <span class='code bold'>responder</span> <code class='quiet'>((<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String">String</a> | <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/function">Function</a>))</code> The string partial name or handler function for the route </div> </div> </div> </section> </div> </div> <div class='border-bottom' id='Admin#manage'> <div class="clearfix small pointer toggle-sibling"> <div class="py1 contain"> <a class='icon pin-right py1 dark-link caret-right'>▸</a> <span class='code strong strong truncate'>manage(Object, opts)</span> </div> </div> <div class="clearfix display-none toggle-target"> <section class='p2 mb2 clearfix bg-white minishadow'> <div class='pre p1 fill-light mt0'>manage(Object: any, opts: any): [type]</div> <div class='py1 quiet mt1 prose-big'>Parameters</div> <div class='prose'> <div class='space-bottom0'> <div> <span class='code bold'>Object</span> <code class='quiet'>(any)</code> </div> </div> <div class='space-bottom0'> <div> <span class='code bold'>opts</span> <code class='quiet'>(any (default <code>{}</code>) )</code> </div> </div> </div> <div class='py1 quiet mt1 prose-big'>Returns</div> <code>[type]</code>: </section> </div> </div> </div> </section> </div> </div> </div> <script src='assets/anchor.js'></script> <script src='assets/site.js'></script> </body> </html>
nxus/docs
admin/4.0.0-2/index.html
HTML
mit
8,766
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Class template basic_managed_mapped_file</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="../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> <link rel="up" href="../../boost_interprocess_reference.html#header.boost.interprocess.managed_mapped_file_hpp" title="Header &lt;boost/interprocess/managed_mapped_file.hpp&gt;"> <link rel="prev" href="basic_managed_heap_memory.html" title="Class template basic_managed_heap_memory"> <link rel="next" href="basic_managed_sha_id992048.html" title="Class template basic_managed_shared_memory"> </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="basic_managed_heap_memory.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../boost_interprocess_reference.html#header.boost.interprocess.managed_mapped_file_hpp"><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="basic_managed_sha_id992048.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.interprocess.basic_managed_mapped_file"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Class template basic_managed_mapped_file</span></h2> <p>boost::interprocess::basic_managed_mapped_file</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="../../boost_interprocess_reference.html#header.boost.interprocess.managed_mapped_file_hpp" title="Header &lt;boost/interprocess/managed_mapped_file.hpp&gt;">boost/interprocess/managed_mapped_file.hpp</a>&gt; </span><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> CharType<span class="special">,</span> <span class="keyword">typename</span> AllocationAlgorithm<span class="special">,</span> <span class="keyword">template</span><span class="special">&lt;</span> <span class="keyword">class</span> <span class="identifier">IndexConfig</span> <span class="special">&gt;</span> <span class="keyword">class</span> IndexType<span class="special">&gt;</span> <span class="keyword">class</span> <a class="link" href="basic_managed_mapped_file.html" title="Class template basic_managed_mapped_file">basic_managed_mapped_file</a> <span class="special">{</span> <span class="keyword">public</span><span class="special">:</span> <span class="comment">// <a class="link" href="basic_managed_mapped_file.html#boost.interprocess.basic_managed_mapped_fileconstruct-copy-destruct">construct/copy/destruct</a></span> <a class="link" href="basic_managed_mapped_file.html#id991764-bb"><span class="identifier">basic_managed_mapped_file</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_managed_mapped_file.html#id991770-bb"><span class="identifier">basic_managed_mapped_file</span></a><span class="special">(</span><a class="link" href="create_only_t.html" title="Struct create_only_t">create_only_t</a><span class="special">,</span> <span class="keyword">const</span> <span class="keyword">char</span> <span class="special">*</span><span class="special">,</span> <span class="identifier">size_type</span><span class="special">,</span> <span class="keyword">const</span> <span class="keyword">void</span> <span class="special">*</span> <span class="special">=</span> <span class="number">0</span><span class="special">,</span> <span class="keyword">const</span> <a class="link" href="permissions.html" title="Class permissions">permissions</a> <span class="special">&amp;</span> <span class="special">=</span> <a class="link" href="permissions.html" title="Class permissions">permissions</a><span class="special">(</span><span class="special">)</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_managed_mapped_file.html#id991818-bb"><span class="identifier">basic_managed_mapped_file</span></a><span class="special">(</span><a class="link" href="open_or_create_t.html" title="Struct open_or_create_t">open_or_create_t</a><span class="special">,</span> <span class="keyword">const</span> <span class="keyword">char</span> <span class="special">*</span><span class="special">,</span> <span class="identifier">size_type</span><span class="special">,</span> <span class="keyword">const</span> <span class="keyword">void</span> <span class="special">*</span> <span class="special">=</span> <span class="number">0</span><span class="special">,</span> <span class="keyword">const</span> <a class="link" href="permissions.html" title="Class permissions">permissions</a> <span class="special">&amp;</span> <span class="special">=</span> <a class="link" href="permissions.html" title="Class permissions">permissions</a><span class="special">(</span><span class="special">)</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_managed_mapped_file.html#id991868-bb"><span class="identifier">basic_managed_mapped_file</span></a><span class="special">(</span><a class="link" href="open_only_t.html" title="Struct open_only_t">open_only_t</a><span class="special">,</span> <span class="keyword">const</span> <span class="keyword">char</span> <span class="special">*</span><span class="special">,</span> <span class="keyword">const</span> <span class="keyword">void</span> <span class="special">*</span> <span class="special">=</span> <span class="number">0</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_managed_mapped_file.html#id991894-bb"><span class="identifier">basic_managed_mapped_file</span></a><span class="special">(</span><a class="link" href="open_copy_on_write_t.html" title="Struct open_copy_on_write_t">open_copy_on_write_t</a><span class="special">,</span> <span class="keyword">const</span> <span class="keyword">char</span> <span class="special">*</span><span class="special">,</span> <span class="keyword">const</span> <span class="keyword">void</span> <span class="special">*</span> <span class="special">=</span> <span class="number">0</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_managed_mapped_file.html#id991921-bb"><span class="identifier">basic_managed_mapped_file</span></a><span class="special">(</span><a class="link" href="open_read_only_t.html" title="Struct open_read_only_t">open_read_only_t</a><span class="special">,</span> <span class="keyword">const</span> <span class="keyword">char</span> <span class="special">*</span><span class="special">,</span> <span class="keyword">const</span> <span class="keyword">void</span> <span class="special">*</span> <span class="special">=</span> <span class="number">0</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_managed_mapped_file.html#id991947-bb"><span class="identifier">basic_managed_mapped_file</span></a><span class="special">(</span><a class="link" href="basic_managed_mapped_file.html" title="Class template basic_managed_mapped_file">basic_managed_mapped_file</a> <span class="special">&amp;&amp;</span><span class="special">)</span><span class="special">;</span> basic_managed_mapped_file&amp; <a class="link" href="basic_managed_mapped_file.html#id991961-bb"><span class="keyword">operator</span><span class="special">=</span></a><span class="special">(</span><a class="link" href="basic_managed_mapped_file.html" title="Class template basic_managed_mapped_file">basic_managed_mapped_file</a> <span class="special">&amp;&amp;</span><span class="special">)</span><span class="special">;</span> <a class="link" href="basic_managed_mapped_file.html#id991975-bb"><span class="special">~</span><span class="identifier">basic_managed_mapped_file</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span> <span class="comment">// <a class="link" href="basic_managed_mapped_file.html#id991728-bb">public member functions</a></span> <span class="keyword">void</span> <a class="link" href="basic_managed_mapped_file.html#id991731-bb"><span class="identifier">swap</span></a><span class="special">(</span><a class="link" href="basic_managed_mapped_file.html" title="Class template basic_managed_mapped_file">basic_managed_mapped_file</a> <span class="special">&amp;</span><span class="special">)</span><span class="special">;</span> <span class="keyword">bool</span> <a class="link" href="basic_managed_mapped_file.html#id991752-bb"><span class="identifier">flush</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span> <span class="comment">// <a class="link" href="basic_managed_mapped_file.html#id991985-bb">public static functions</a></span> <span class="keyword">static</span> <span class="keyword">bool</span> <a class="link" href="basic_managed_mapped_file.html#id991988-bb"><span class="identifier">grow</span></a><span class="special">(</span><span class="keyword">const</span> <span class="keyword">char</span> <span class="special">*</span><span class="special">,</span> <span class="identifier">size_type</span><span class="special">)</span><span class="special">;</span> <span class="keyword">static</span> <span class="keyword">bool</span> <a class="link" href="basic_managed_mapped_file.html#id992016-bb"><span class="identifier">shrink_to_fit</span></a><span class="special">(</span><span class="keyword">const</span> <span class="keyword">char</span> <span class="special">*</span><span class="special">)</span><span class="special">;</span> <span class="special">}</span><span class="special">;</span></pre></div> <div class="refsect1"> <a name="id1807129"></a><h2>Description</h2> <p>A basic mapped file named object creation class. Initializes the mapped file. Inherits all basic functionality from basic_managed_memory_impl&lt;CharType, AllocationAlgorithm, IndexType&gt; </p> <div class="refsect2"> <a name="id1807142"></a><h3> <a name="boost.interprocess.basic_managed_mapped_fileconstruct-copy-destruct"></a><code class="computeroutput">basic_managed_mapped_file</code> public construct/copy/destruct</h3> <div class="orderedlist"><ol class="orderedlist" type="1"> <li class="listitem"> <pre class="literallayout"><a name="id991764-bb"></a><span class="identifier">basic_managed_mapped_file</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre> <p>Creates mapped file and creates and places the segment manager. This can throw. </p> </li> <li class="listitem"> <pre class="literallayout"><a name="id991770-bb"></a><span class="identifier">basic_managed_mapped_file</span><span class="special">(</span><a class="link" href="create_only_t.html" title="Struct create_only_t">create_only_t</a> create_only<span class="special">,</span> <span class="keyword">const</span> <span class="keyword">char</span> <span class="special">*</span> name<span class="special">,</span> <span class="identifier">size_type</span> size<span class="special">,</span> <span class="keyword">const</span> <span class="keyword">void</span> <span class="special">*</span> addr <span class="special">=</span> <span class="number">0</span><span class="special">,</span> <span class="keyword">const</span> <a class="link" href="permissions.html" title="Class permissions">permissions</a> <span class="special">&amp;</span> perm <span class="special">=</span> <a class="link" href="permissions.html" title="Class permissions">permissions</a><span class="special">(</span><span class="special">)</span><span class="special">)</span><span class="special">;</span></pre> <p>Creates mapped file and creates and places the segment manager. This can throw. </p> </li> <li class="listitem"> <pre class="literallayout"><a name="id991818-bb"></a><span class="identifier">basic_managed_mapped_file</span><span class="special">(</span><a class="link" href="open_or_create_t.html" title="Struct open_or_create_t">open_or_create_t</a> open_or_create<span class="special">,</span> <span class="keyword">const</span> <span class="keyword">char</span> <span class="special">*</span> name<span class="special">,</span> <span class="identifier">size_type</span> size<span class="special">,</span> <span class="keyword">const</span> <span class="keyword">void</span> <span class="special">*</span> addr <span class="special">=</span> <span class="number">0</span><span class="special">,</span> <span class="keyword">const</span> <a class="link" href="permissions.html" title="Class permissions">permissions</a> <span class="special">&amp;</span> perm <span class="special">=</span> <a class="link" href="permissions.html" title="Class permissions">permissions</a><span class="special">(</span><span class="special">)</span><span class="special">)</span><span class="special">;</span></pre> <p>Creates mapped file and creates and places the segment manager if segment was not created. If segment was created it connects to the segment. This can throw. </p> </li> <li class="listitem"> <pre class="literallayout"><a name="id991868-bb"></a><span class="identifier">basic_managed_mapped_file</span><span class="special">(</span><a class="link" href="open_only_t.html" title="Struct open_only_t">open_only_t</a> open_only<span class="special">,</span> <span class="keyword">const</span> <span class="keyword">char</span> <span class="special">*</span> name<span class="special">,</span> <span class="keyword">const</span> <span class="keyword">void</span> <span class="special">*</span> addr <span class="special">=</span> <span class="number">0</span><span class="special">)</span><span class="special">;</span></pre> <p>Connects to a created mapped file and its segment manager. This can throw. </p> </li> <li class="listitem"> <pre class="literallayout"><a name="id991894-bb"></a><span class="identifier">basic_managed_mapped_file</span><span class="special">(</span><a class="link" href="open_copy_on_write_t.html" title="Struct open_copy_on_write_t">open_copy_on_write_t</a><span class="special">,</span> <span class="keyword">const</span> <span class="keyword">char</span> <span class="special">*</span> name<span class="special">,</span> <span class="keyword">const</span> <span class="keyword">void</span> <span class="special">*</span> addr <span class="special">=</span> <span class="number">0</span><span class="special">)</span><span class="special">;</span></pre> <p>Connects to a created mapped file and its segment manager in copy_on_write mode. This can throw. </p> </li> <li class="listitem"> <pre class="literallayout"><a name="id991921-bb"></a><span class="identifier">basic_managed_mapped_file</span><span class="special">(</span><a class="link" href="open_read_only_t.html" title="Struct open_read_only_t">open_read_only_t</a><span class="special">,</span> <span class="keyword">const</span> <span class="keyword">char</span> <span class="special">*</span> name<span class="special">,</span> <span class="keyword">const</span> <span class="keyword">void</span> <span class="special">*</span> addr <span class="special">=</span> <span class="number">0</span><span class="special">)</span><span class="special">;</span></pre> <p>Connects to a created mapped file and its segment manager in read-only mode. This can throw. </p> </li> <li class="listitem"> <pre class="literallayout"><a name="id991947-bb"></a><span class="identifier">basic_managed_mapped_file</span><span class="special">(</span><a class="link" href="basic_managed_mapped_file.html" title="Class template basic_managed_mapped_file">basic_managed_mapped_file</a> <span class="special">&amp;&amp;</span> moved<span class="special">)</span><span class="special">;</span></pre> <p>Moves the ownership of "moved"'s managed memory to *this. Does not throw </p> </li> <li class="listitem"> <pre class="literallayout">basic_managed_mapped_file&amp; <a name="id991961-bb"></a><span class="keyword">operator</span><span class="special">=</span><span class="special">(</span><a class="link" href="basic_managed_mapped_file.html" title="Class template basic_managed_mapped_file">basic_managed_mapped_file</a> <span class="special">&amp;&amp;</span> moved<span class="special">)</span><span class="special">;</span></pre> <p>Moves the ownership of "moved"'s managed memory to *this. Does not throw </p> </li> <li class="listitem"> <pre class="literallayout"><a name="id991975-bb"></a><span class="special">~</span><span class="identifier">basic_managed_mapped_file</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre> <p>Destroys *this and indicates that the calling process is finished using the resource. The destructor function will deallocate any system resources allocated by the system for use by this process for this resource. The resource can still be opened again calling the open constructor overload. To erase the resource from the system use remove(). </p> </li> </ol></div> </div> <div class="refsect2"> <a name="id1807920"></a><h3> <a name="id991728-bb"></a><code class="computeroutput">basic_managed_mapped_file</code> public member functions</h3> <div class="orderedlist"><ol class="orderedlist" type="1"> <li class="listitem"> <pre class="literallayout"><span class="keyword">void</span> <a name="id991731-bb"></a><span class="identifier">swap</span><span class="special">(</span><a class="link" href="basic_managed_mapped_file.html" title="Class template basic_managed_mapped_file">basic_managed_mapped_file</a> <span class="special">&amp;</span> other<span class="special">)</span><span class="special">;</span></pre> <p>Swaps the ownership of the managed mapped memories managed by *this and other. Never throws. </p> </li> <li class="listitem"> <pre class="literallayout"><span class="keyword">bool</span> <a name="id991752-bb"></a><span class="identifier">flush</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre> <p>Flushes cached data to file. Never throws </p> </li> </ol></div> </div> <div class="refsect2"> <a name="id1808029"></a><h3> <a name="id991985-bb"></a><code class="computeroutput">basic_managed_mapped_file</code> public static functions</h3> <div class="orderedlist"><ol class="orderedlist" type="1"> <li class="listitem"> <pre class="literallayout"><span class="keyword">static</span> <span class="keyword">bool</span> <a name="id991988-bb"></a><span class="identifier">grow</span><span class="special">(</span><span class="keyword">const</span> <span class="keyword">char</span> <span class="special">*</span> filename<span class="special">,</span> <span class="identifier">size_type</span> extra_bytes<span class="special">)</span><span class="special">;</span></pre> <p>Tries to resize mapped file so that we have room for more objects.</p> <p>This function is not synchronized so no other thread or process should be reading or writing the file </p> </li> <li class="listitem"> <pre class="literallayout"><span class="keyword">static</span> <span class="keyword">bool</span> <a name="id992016-bb"></a><span class="identifier">shrink_to_fit</span><span class="special">(</span><span class="keyword">const</span> <span class="keyword">char</span> <span class="special">*</span> filename<span class="special">)</span><span class="special">;</span></pre> <p>Tries to resize mapped file to minimized the size of the file.</p> <p>This function is not synchronized so no other thread or process should be reading or writing the file </p> </li> </ol></div> </div> </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; 2005-2011 Ion Gaztanaga<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="basic_managed_heap_memory.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../boost_interprocess_reference.html#header.boost.interprocess.managed_mapped_file_hpp"><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="basic_managed_sha_id992048.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
djsedulous/namecoind
libs/boost_1_50_0/doc/html/boost/interprocess/basic_managed_mapped_file.html
HTML
mit
22,078
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Registration</title> <link href="bootstrap/css/bootstrap.css" rel="stylesheet" /> </head> <body> <div class="text-center"> <img src="img/food-bank-logo.jpg" class="rounded" /> </div> <div class="container"> <div class="row"> <div class="span12"> <div class="span5"> <div class="area"> <form class="form-horizontal"> <h3 class=alert>Volunteer Registration</h3> <fieldset> <label for="UserInfo_Email">Email:</label> <input id="UserInfo_Email" name="UserInfo.Email" type="text" value=""> <p></p> <label for="UserInfo_FirstName">First name:</label> <input id="UserInfo_FirstName" name="UserInfo.FirstName" type="text" value=""> <p></p> <label for="UserInfo_LastName">Last name:</label> <input id="UserInfo_LastName" name="UserInfo.LastName" type="text" value=""> <p></p> <label for="UserInfo_Password">Password:</label> <input id="UserInfo_Password" name="UserInfo.Password" type="text" value=""> <p></p> <h4> Tell us your skills and areas of interests </h4> <div> <label class="checkbox inline"> <input type="checkbox" value=""> Cooking </label> <label class="checkbox inline"> <input type="checkbox" value=""> Sorting Collected Food Items </label> </div> <div> <label class="checkbox inline"> <input type="checkbox" value=""> Serving Food </label> <label class="checkbox inline"> <input type="checkbox" value=""> Assisting Clerical Works </label> </div> <div> <label class="checkbox inline"> <input type="checkbox" value=""> Transporting Donated Food / Produce from Local Business </label> </div> <div> <label class="checkbox inline"> <input type="checkbox" value=""> Computer Skills </label> <label class="checkbox inline"> <input type="checkbox" value=""> Fund Rasing </label> </div> <div> <label class="checkbox inline"> <input type="checkbox" value=""> Working as a Group </label> <label class="checkbox inline"> <input type="checkbox" value=""> Working One-on-One </label> </div> <div> <label class="checkbox inline"> <input type="checkbox" value=""> Working with Children </label> <label class="checkbox inline"> <input type="checkbox" value=""> Working with Elderly </label> </div> <h4> Tell us your availability </h4> <div> <label class="checkbox inline"> <input type="checkbox" value=""> Flexible </label> <label class="checkbox inline"> <input type="checkbox" value=""> Weekends </label> <label class="checkbox inline"> <input type="checkbox" value=""> Weekdays </label> </div> <div> <label class="checkbox inline"> <input type="checkbox" value=""> Mornings </label> <label class="checkbox inline"> <input type="checkbox" value=""> Afternoons </label> <label class="checkbox inline"> <input type="checkbox" value=""> Evenings </label> </div> <p> </p> <input type="submit" value="Sign Up!" class="btn btn-primary" /> </fieldset> </form> </div> </div> <div class="span6"> <div class="span6"> <div class="area"> <form class="form-horizontal"> <div class="heading"> <h3 class=alert>Hunger Organization Registration</h3> <fieldset> <label for="UserInfo_Email">Email:</label> <input id="UserInfo_Email" name="UserInfo.Email" type="text" value=""> <p></p> <label for="UserInfo_OrgName">Organization name:</label> <input id="UserInfo_OrgName" name="UserInfo.OrgName" type="text" value=""> <p></p> <label for="UserInfo_Password">Password:</label> <input id="UserInfo_Password" name="UserInfo.Password" type="text" value=""> <p></p> <h4> Tell us your needs </h4> <div> <label class="checkbox inline"> <input type="checkbox" value=""> Cooking </label> <label class="checkbox inline"> <input type="checkbox" value=""> Sorting Collected Food Items </label> <label class="checkbox inline"> <input type="checkbox" value=""> Serving Food </label> </div> <div> <label class="checkbox inline"> <input type="checkbox" value=""> Transporting Produce / Food from Local Business or Farm </label> </div> <div> <label class="checkbox inline"> <input type="checkbox" value=""> Assisting Clerical Works </label> </div> <h4> When you need help? </h4> <div> <label class="checkbox inline"> <input type="checkbox" value=""> Flexible </label> <label class="checkbox inline"> <input type="checkbox" value=""> Weekends </label> <label class="checkbox inline"> <input type="checkbox" value=""> Weekdays </label> </div> <div> <label class="checkbox inline"> <input type="checkbox" value=""> Mornings </label> <label class="checkbox inline"> <input type="checkbox" value=""> Afternoons </label> <label class="checkbox inline"> <input type="checkbox" value=""> Evenings </label> </div> <p> </p> <input type="submit" value="Sign Up!" class="btn btn-primary" /> </fieldset> </div> </form> </div> </div> </div> </body> </html>
jaetheyoo/OpenDataU2
views/pages/Registration.html
HTML
mit
11,550
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="es"> <head> <!-- Generated by javadoc (1.8.0_66) on Wed Nov 11 20:52:04 CET 2015 --> <title>dades Class Hierarchy</title> <meta name="date" content="2015-11-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="dades Class Hierarchy"; } } 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>Class</li> <li class="navBarCell1Rev">Tree</li> <li><a href="../deprecated-list.html">Deprecated</a></li> <li><a href="../index-files/index-1.html">Index</a></li> <li><a href="../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li><a href="../domini/package-tree.html">Next</a></li> </ul> <ul class="navList"> <li><a href="../index.html?dades/package-tree.html" target="_top">Frames</a></li> <li><a href="package-tree.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"> <h1 class="title">Hierarchy For Package dades</h1> <span class="packageHierarchyLabel">Package Hierarchies:</span> <ul class="horizontal"> <li><a href="../overview-tree.html">All Packages</a></li> </ul> </div> <div class="contentContainer"> <h2 title="Class Hierarchy">Class Hierarchy</h2> <ul> <li type="circle">java.lang.Object <ul> <li type="circle">java.util.AbstractCollection&lt;E&gt; (implements java.util.Collection&lt;E&gt;) <ul> <li type="circle">java.util.AbstractList&lt;E&gt; (implements java.util.List&lt;E&gt;) <ul> <li type="circle">java.util.ArrayList&lt;E&gt; (implements java.lang.Cloneable, java.util.List&lt;E&gt;, java.util.RandomAccess, java.io.Serializable) <ul> <li type="circle">dades.<a href="../dades/Table.html" title="class in dades"><span class="typeNameLink">Table</span></a>&lt;E&gt; </li> </ul> </li> </ul> </li> </ul> </li> <li type="circle">dades.<a href="../dades/DB.html" title="class in dades"><span class="typeNameLink">DB</span></a> <ul> <li type="circle">dades.<a href="../dades/KKDB.html" title="class in dades"><span class="typeNameLink">KKDB</span></a></li> </ul> </li> <li type="circle">dades.<a href="../dades/Player.html" title="class in dades"><span class="typeNameLink">Player</span></a> (implements java.io.Serializable) </li> <li type="circle">dades.<a href="../dades/PlayersAdmin.html" title="class in dades"><span class="typeNameLink">PlayersAdmin</span></a></li> </ul> </li> </ul> </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>Class</li> <li class="navBarCell1Rev">Tree</li> <li><a href="../deprecated-list.html">Deprecated</a></li> <li><a href="../index-files/index-1.html">Index</a></li> <li><a href="../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li><a href="../domini/package-tree.html">Next</a></li> </ul> <ul class="navList"> <li><a href="../index.html?dades/package-tree.html" target="_top">Frames</a></li> <li><a href="package-tree.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 ======= --> </body> </html>
jmigual/pKK
Java/Documentation/dades/package-tree.html
HTML
mit
6,301