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 PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
<title>Description of ssg_databrowse2d</title>
<meta name="keywords" content="ssg_databrowse2d">
<meta name="description" content="SSG_DATABROWSE2D Feature projection GUI in 2D (work in progress).">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="generator" content="m2html © 2003 Guillaume Flandin">
<meta name="robots" content="index, follow">
<link type="text/css" rel="stylesheet" href="../../../m2html.css">
</head>
<body>
<a name="_top"></a>
<div><a href="../../../index.html">Home</a> > <a href="#">chronux_2_00</a> > <a href="../index.html">spikesort</a> > <a href="index.html">ssg</a> > ssg_databrowse2d.m</div>
<!--<table width="100%"><tr><td align="left"><a href="../../../index.html"><img alt="<" border="0" src="../../../left.png"> Master index</a></td>
<td align="right"><a href="index.html">Index for chronux_2_00\spikesort\ssg <img alt=">" border="0" src="../../../right.png"></a></td></tr></table>-->
<h1>ssg_databrowse2d
</h1>
<h2><a name="_name"></a>PURPOSE <a href="#_top"><img alt="^" border="0" src="../../../up.png"></a></h2>
<div class="box"><strong>SSG_DATABROWSE2D Feature projection GUI in 2D (work in progress).</strong></div>
<h2><a name="_synopsis"></a>SYNOPSIS <a href="#_top"><img alt="^" border="0" src="../../../up.png"></a></h2>
<div class="box"><strong>function ssg_databrowse2d(spikes, assigns, show) </strong></div>
<h2><a name="_description"></a>DESCRIPTION <a href="#_top"><img alt="^" border="0" src="../../../up.png"></a></h2>
<div class="fragment"><pre class="comment"> SSG_DATABROWSE2D Feature projection GUI in 2D (work in progress).
SSG_DATABROWSE(SPIKES) creates a 2-D databrowse figure. Call with a
spike sorting object SPIKES and an optional assignments vector whose length
corresponds to the number of waveforms in the SPIKES structure. If no
assignments vector is specified, the function chooses the first of
{final, local, or none} clustering depending on which have been computed.
Once the figure appears, you can:
Click on the axis labels to change features.
Click on a data point to bring the associated cluster to the front.
Double-click outside of the axes to make a density snapshot of the current view.</pre></div>
<!-- crossreference -->
<h2><a name="_cross"></a>CROSS-REFERENCE INFORMATION <a href="#_top"><img alt="^" border="0" src="../../../up.png"></a></h2>
This function calls:
<ul style="list-style-image:url(../../../matlabicon.gif)">
<li><a href="ssgtest.html" class="code" title="function ssgtest(spikes, assignments, show, mode)">ssgtest</a> temporary script to translate the SSG_DATABROWSE functions into a GUI.</li></ul>
This function is called by:
<ul style="list-style-image:url(../../../matlabicon.gif)">
</ul>
<!-- crossreference -->
<h2><a name="_source"></a>SOURCE CODE <a href="#_top"><img alt="^" border="0" src="../../../up.png"></a></h2>
<div class="fragment"><pre>0001 <a name="_sub0" href="#_subfunctions" class="code">function ssg_databrowse2d(spikes, assigns, show)</a>
0002 <span class="comment">% SSG_DATABROWSE2D Feature projection GUI in 2D (work in progress).</span>
0003 <span class="comment">% SSG_DATABROWSE(SPIKES) creates a 2-D databrowse figure. Call with a</span>
0004 <span class="comment">% spike sorting object SPIKES and an optional assignments vector whose length</span>
0005 <span class="comment">% corresponds to the number of waveforms in the SPIKES structure. If no</span>
0006 <span class="comment">% assignments vector is specified, the function chooses the first of</span>
0007 <span class="comment">% {final, local, or none} clustering depending on which have been computed.</span>
0008 <span class="comment">% Once the figure appears, you can:</span>
0009 <span class="comment">% Click on the axis labels to change features.</span>
0010 <span class="comment">% Click on a data point to bring the associated cluster to the front.</span>
0011 <span class="comment">% Double-click outside of the axes to make a density snapshot of the current view.</span>
0012
0013 <span class="comment">% Last Modified By: sbm on Fri Jul 29 16:37:08 2005</span>
0014
0015 <span class="keyword">if</span> (nargin == 1)
0016 assigns = []; show = [];
0017 <span class="keyword">elseif</span> (nargin == 2)
0018 <span class="keyword">if</span> (length(assigns) ~= size(spikes.waveforms, 1))
0019 error(<span class="string">'SSG:assignments_length_mismatch'</span>, <span class="string">'The assignments vector length must match the number of waveforms in SPIKES.'</span>);
0020 <span class="keyword">end</span>
0021 show = [];
0022 <span class="keyword">elseif</span> (nargin == 3)
0023 <span class="keyword">if</span> (~all(ismember(show, assigns)))
0024 error(<span class="string">'SSG:show_request_invalid'</span>, <span class="string">'The requested clusters are not in the assignments list'</span>);
0025 <span class="keyword">end</span>
0026 <span class="keyword">else</span>
0027 error(<span class="string">'SSG:invalid_number_args'</span>, <span class="string">'The SSG_DATABROWSE2D function only accepts 1-3 inputs.'</span>);
0028 <span class="keyword">end</span>
0029
0030 <span class="keyword">if</span> (size(spikes.waveforms, 2) < 2)
0031 error(<span class="string">'SSG:data_dimensions_too_small'</span>, <span class="string">'There are not enough data points per waveform.'</span>);
0032 <span class="keyword">end</span>
0033
0034 <a href="ssgtest.html" class="code" title="function ssgtest(spikes, assignments, show, mode)">ssgtest</a>(spikes, assigns, show, <span class="string">'xy'</span>);</pre></div>
<hr><address>Generated on Fri 15-Aug-2008 11:35:42 by <strong><a href="http://www.artefact.tk/software/matlab/m2html/">m2html</a></strong> © 2003</address>
</body>
</html> | arengela/AngelaUCSFCodeAll | CoreFunctions/chronux/documentation/chronux_2_00/spikesort/ssg/ssg_databrowse2d.html | HTML | bsd-3-clause | 6,090 |
<?xml version="1.0" encoding="ascii"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>PyQt4.QtGui.QStyleOptionMenuItem.StyleOptionType</title>
<link rel="stylesheet" href="epydoc.css" type="text/css" />
<script type="text/javascript" src="epydoc.js"></script>
</head>
<body bgcolor="white" text="black" link="blue" vlink="#204080"
alink="#204080">
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Home link -->
<th> <a
href="QGIS-AIMS-Plugin-module.html">Home</a> </th>
<!-- Tree link -->
<th> <a
href="module-tree.html">Trees</a> </th>
<!-- Index link -->
<th> <a
href="identifier-index.html">Indices</a> </th>
<!-- Help link -->
<th> <a
href="help.html">Help</a> </th>
<th class="navbar" width="100%"></th>
</tr>
</table>
<table width="100%" cellpadding="0" cellspacing="0">
<tr valign="top">
<td width="100%">
<span class="breadcrumbs">
PyQt4 ::
QtGui ::
QStyleOptionMenuItem ::
StyleOptionType ::
Class StyleOptionType
</span>
</td>
<td>
<table cellpadding="0" cellspacing="0">
<!-- hide/show private -->
<tr><td align="right"><span class="options">[<a href="javascript:void(0);" class="privatelink"
onclick="toggle_private();">hide private</a>]</span></td></tr>
<tr><td align="right"><span class="options"
>[<a href="frames.html" target="_top">frames</a
>] | <a href="PyQt4.QtGui.QStyleOptionMenuItem.StyleOptionType-class.html"
target="_top">no frames</a>]</span></td></tr>
</table>
</td>
</tr>
</table>
<!-- ==================== CLASS DESCRIPTION ==================== -->
<h1 class="epydoc">Class StyleOptionType</h1><p class="nomargin-top"></p>
<pre class="base-tree">
object --+
|
int --+
|
<strong class="uidshort">QStyleOptionMenuItem.StyleOptionType</strong>
</pre>
<hr />
<!-- ==================== INSTANCE METHODS ==================== -->
<a name="section-InstanceMethods"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td colspan="2" class="table-header">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td align="left"><span class="table-header">Instance Methods</span></td>
<td align="right" valign="top"
><span class="options">[<a href="#section-InstanceMethods"
class="privatelink" onclick="toggle_private();"
>hide private</a>]</span></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="PyQt4.QtGui.QStyleOptionMenuItem.StyleOptionType-class.html#__reduce__" class="summary-sig-name">__reduce__</a>(<span class="summary-sig-arg">...</span>)</span><br />
helper for pickle</td>
<td align="right" valign="top">
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2" class="summary">
<p class="indent-wrapped-lines"><b>Inherited from <code>int</code></b>:
<code>__abs__</code>,
<code>__add__</code>,
<code>__and__</code>,
<code>__cmp__</code>,
<code>__coerce__</code>,
<code>__div__</code>,
<code>__divmod__</code>,
<code>__float__</code>,
<code>__floordiv__</code>,
<code>__format__</code>,
<code>__getattribute__</code>,
<code>__getnewargs__</code>,
<code>__hash__</code>,
<code>__hex__</code>,
<code>__index__</code>,
<code>__int__</code>,
<code>__invert__</code>,
<code>__long__</code>,
<code>__lshift__</code>,
<code>__mod__</code>,
<code>__mul__</code>,
<code>__neg__</code>,
<code>__new__</code>,
<code>__nonzero__</code>,
<code>__oct__</code>,
<code>__or__</code>,
<code>__pos__</code>,
<code>__pow__</code>,
<code>__radd__</code>,
<code>__rand__</code>,
<code>__rdiv__</code>,
<code>__rdivmod__</code>,
<code>__repr__</code>,
<code>__rfloordiv__</code>,
<code>__rlshift__</code>,
<code>__rmod__</code>,
<code>__rmul__</code>,
<code>__ror__</code>,
<code>__rpow__</code>,
<code>__rrshift__</code>,
<code>__rshift__</code>,
<code>__rsub__</code>,
<code>__rtruediv__</code>,
<code>__rxor__</code>,
<code>__str__</code>,
<code>__sub__</code>,
<code>__truediv__</code>,
<code>__trunc__</code>,
<code>__xor__</code>,
<code>bit_length</code>,
<code>conjugate</code>
</p>
<p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
<code>__delattr__</code>,
<code>__init__</code>,
<code>__reduce_ex__</code>,
<code>__setattr__</code>,
<code>__sizeof__</code>,
<code>__subclasshook__</code>
</p>
</td>
</tr>
</table>
<!-- ==================== PROPERTIES ==================== -->
<a name="section-Properties"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td colspan="2" class="table-header">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td align="left"><span class="table-header">Properties</span></td>
<td align="right" valign="top"
><span class="options">[<a href="#section-Properties"
class="privatelink" onclick="toggle_private();"
>hide private</a>]</span></td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2" class="summary">
<p class="indent-wrapped-lines"><b>Inherited from <code>int</code></b>:
<code>denominator</code>,
<code>imag</code>,
<code>numerator</code>,
<code>real</code>
</p>
<p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>:
<code>__class__</code>
</p>
</td>
</tr>
</table>
<!-- ==================== METHOD DETAILS ==================== -->
<a name="section-MethodDetails"></a>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td colspan="2" class="table-header">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td align="left"><span class="table-header">Method Details</span></td>
<td align="right" valign="top"
><span class="options">[<a href="#section-MethodDetails"
class="privatelink" onclick="toggle_private();"
>hide private</a>]</span></td>
</tr>
</table>
</td>
</tr>
</table>
<a name="__reduce__"></a>
<div>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">__reduce__</span>(<span class="sig-arg">...</span>)</span>
</h3>
</td><td align="right" valign="top"
>
</td>
</tr></table>
<p>helper for pickle</p>
<dl class="fields">
<dt>Overrides:
object.__reduce__
<dd><em class="note">(inherited documentation)</em></dd>
</dt>
</dl>
</td></tr></table>
</div>
<br />
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Home link -->
<th> <a
href="QGIS-AIMS-Plugin-module.html">Home</a> </th>
<!-- Tree link -->
<th> <a
href="module-tree.html">Trees</a> </th>
<!-- Index link -->
<th> <a
href="identifier-index.html">Indices</a> </th>
<!-- Help link -->
<th> <a
href="help.html">Help</a> </th>
<th class="navbar" width="100%"></th>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
<tr>
<td align="left" class="footer">
Generated by Epydoc 3.0.1 on Tue Jun 14 13:29:16 2016
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"
>http://epydoc.sourceforge.net</a>
</td>
</tr>
</table>
<script type="text/javascript">
<!--
// Private objects are initially displayed (because if
// javascript is turned off then we want them to be
// visible); but by default, we want to hide them. So hide
// them unless we have a cookie that says to show them.
checkCookie();
// -->
</script>
</body>
</html>
| linz/QGIS-AIMS-Plugin | doc/Aims-Plugin_Doc/PyQt4.QtGui.QStyleOptionMenuItem.StyleOptionType-class.html | HTML | bsd-3-clause | 9,552 |
<!DOCTYPE html>
<html>
<head>
<title>helper.js</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, target-densitydpi=160dpi, initial-scale=1.0; maximum-scale=1.0; user-scalable=0;">
<link rel="stylesheet" media="all" href="docco.css" />
</head>
<body>
<div id="container">
<div id="background"></div>
<ul id="jump_to">
<li>
<a class="large" href="javascript:void(0);">Jump To …</a>
<a class="small" href="javascript:void(0);">+</a>
<div id="jump_wrapper">
<div id="jump_page_wrapper">
<div id="jump_page">
<a class="source" href="app.html">
app.js
</a>
<a class="source" href="helper.html">
helper.js
</a>
</div>
</div>
</li>
</ul>
<ul class="sections">
<li id="title">
<div class="annotation">
<h1>helper.js</h1>
</div>
</li>
<li id="section-1">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-1">¶</a>
</div>
</div>
<div class="content"><div class='highlight'><pre><span class="hljs-comment">/**
* This file contains all of the code running in the background that makes
* app.js possible. We call these helper functions because they
* support my code in this project.
*
* @author David Wilkie
* @since 25 May 2015
* @license MIT License
*/</span></pre></div></div>
</li>
<li id="section-2">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-2">¶</a>
</div>
<p>N.b.: I’ve had some struggles with trying to ‘use strict’. See the README for details.
“use strict”;</p>
</div>
<div class="content"><div class='highlight'><pre>
<span class="hljs-comment">/**
* This is the view-model, the core of our app. To be quite honest, I'm not sure if it touches the
* DOM too much, ie. if some of the functionalities involved with rendering the app in the browser
* should be factored out into a separate set of "view" functions. In any case, it Just Works, so
* I'm going to leave it as such, until I'm told otherwise.
*
* @param {Array} locationData An array of objects with data about our places of interest.
* @param {Array} mapStyles An array of styles for the Google Map we're making.
*/</span>
<span class="hljs-function"><span class="hljs-keyword">function</span> <span class="hljs-title">appViewModel</span><span class="hljs-params">(locationData, mapStyles)</span> </span>{
<span class="hljs-keyword">var</span> self = <span class="hljs-keyword">this</span>;
self.infoWindow = <span class="hljs-keyword">new</span> google.maps.InfoWindow();
self.query = ko.observable(<span class="hljs-string">''</span>);
self.filteredArray = [];
self.locationObjectArray = ko.observableArray();
self.locations = locationData;
self.flickrApiKey = <span class="hljs-string">"2a84a691ec088cb7c51abc607e984b63"</span>;
<span class="hljs-comment">/**
* We use this to store both the data from the the model and the marker we create in a common
* location, and later any data brought in from 3rd-party APIs.
*
* @param {Object} The item from our model.
* @param {Object} The corresponding Google Map marker.
*/</span>
<span class="hljs-keyword">var</span> LocationObject = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(locationData, marker)</span> </span>{
<span class="hljs-keyword">this</span>.data = locationData;
<span class="hljs-keyword">this</span>.marker = marker;
<span class="hljs-keyword">this</span>.isVisible = ko.observable(<span class="hljs-literal">true</span>);
<span class="hljs-keyword">this</span>.flickrImgs = ko.observableArray();
<span class="hljs-keyword">this</span>.flickrThumbs = ko.observableArray();
<span class="hljs-keyword">this</span>.alreadySearched = <span class="hljs-literal">false</span>;
};
<span class="hljs-comment">/**
* Set our infoWindow to point to this LocationObject and fill it with the right data.
*/</span>
LocationObject.prototype.makeFocus = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> </span>{
<span class="hljs-built_in">window</span>.map.setCenter(<span class="hljs-keyword">this</span>.marker.position);
self.infoWindow.setContent(getContentHtml(<span class="hljs-keyword">this</span>));
<span class="hljs-keyword">if</span> (<span class="hljs-keyword">this</span>.alreadySearched) {
<span class="hljs-keyword">this</span>.addImagesToInfoWindow();
}
<span class="hljs-keyword">else</span> {
$(<span class="hljs-string">"#info-window-imgs"</span>).empty()
.append(<span class="hljs-string">'<img src="img/loading.gif" />'</span>);
<span class="hljs-keyword">this</span>.callFlickr();
}</pre></div></div>
</li>
<li id="section-3">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-3">¶</a>
</div>
<p>I’m not using a KO template here because setContent KO observables
don’t seem to work when passed into the setContent function.</p>
</div>
<div class="content"><div class='highlight'><pre> self.infoWindow.open(<span class="hljs-built_in">window</span>.map, <span class="hljs-keyword">this</span>.marker);
};
<span class="hljs-comment">/**
* Make a call to the Flickr API to search for images for this object's infoWindow.
*/</span>
LocationObject.prototype.callFlickr = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> </span>{</pre></div></div>
</li>
<li id="section-4">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-4">¶</a>
</div>
<p>I still don’t fully understand how changing scope works, but assigning this to that
fixes the trouble with calls to “this” from within the .get() function.</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> that = <span class="hljs-keyword">this</span>;
<span class="hljs-keyword">var</span> url = <span class="hljs-string">"https://api.flickr.com/services/rest/"</span>;
<span class="hljs-keyword">var</span> params = {
method: <span class="hljs-string">"flickr.photos.search"</span>,
api_key: self.flickrApiKey,
text: that.data.name + <span class="hljs-string">" Kaimuki"</span>
};
that.alreadySearched = <span class="hljs-literal">true</span>;
$.get(url, params, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(data)</span> </span>{
<span class="hljs-keyword">var</span> photos = $(data).find(<span class="hljs-string">"photo"</span>);</pre></div></div>
</li>
<li id="section-5">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-5">¶</a>
</div>
<p>We’re just getting the first 5 photos from the search, at most.</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="hljs-keyword">for</span> (i = <span class="hljs-number">0</span>; i < photos.length && i < <span class="hljs-number">5</span>; i++) {
<span class="hljs-keyword">var</span> photo_id = $(photos[i]).attr(<span class="hljs-string">'id'</span>);
<span class="hljs-keyword">var</span> secret_id = $(photos[i]).attr(<span class="hljs-string">'secret'</span>);
<span class="hljs-keyword">var</span> farm_id = $(photos[i]).attr(<span class="hljs-string">'farm'</span>);
<span class="hljs-keyword">var</span> server_id =$(photos[i]).attr(<span class="hljs-string">'server'</span>);
<span class="hljs-keyword">var</span> thumbnail = <span class="hljs-string">"https://farm"</span> + farm_id + <span class="hljs-string">".staticflickr.com/"</span> + server_id + <span class="hljs-string">"/"</span> +
photo_id + <span class="hljs-string">"_"</span> + secret_id + <span class="hljs-string">"_t.jpg"</span>;
<span class="hljs-keyword">var</span> photoUrl = <span class="hljs-string">"https://farm"</span> + farm_id + <span class="hljs-string">".staticflickr.com/"</span> + server_id + <span class="hljs-string">"/"</span> +
photo_id + <span class="hljs-string">"_"</span> + secret_id + <span class="hljs-string">".jpg"</span>;
that.flickrThumbs.push(thumbnail);
that.flickrImgs.push(photoUrl);
}
that.addImagesToInfoWindow();
}).fail(<span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> </span>{
alert(<span class="hljs-string">"Error: Call to Flickr API failed"</span>);
});
};
<span class="hljs-comment">/**
* Populates `infoWindow` with our divs.
*/</span>
LocationObject.prototype.addImagesToInfoWindow = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> </span>{
<span class="hljs-keyword">var</span> that = <span class="hljs-keyword">this</span>;
<span class="hljs-keyword">var</span> imgDiv = $(<span class="hljs-string">"#info-window-imgs"</span>);
imgDiv.empty();
<span class="hljs-keyword">if</span> (!that.flickrThumbs().length) {
imgDiv.append(<span class="hljs-string">"(sorry, no pics found)"</span>);
}
that.flickrThumbs().forEach(<span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(thumb, index)</span> </span>{
$(<span class="hljs-string">"<img src='"</span> + thumb + <span class="hljs-string">"'>"</span>).click(<span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> </span>{
$(<span class="hljs-string">"#image-overlay"</span>).html(<span class="hljs-string">'<img src="'</span> + that.flickrImgs()[index] + <span class="hljs-string">'">'</span>)
.click(<span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> </span>{
$(<span class="hljs-string">"#image-overlay"</span>).empty();
});
})
.appendTo(imgDiv);
});
};
<span class="hljs-comment">/**
* Returns an HTML string that fills the marker's infoWindow.
*
* @param {Object} lo The locationObject with all the data we need.
* @return {String} The HTML for the infoWindow.
*/</span>
<span class="hljs-function"><span class="hljs-keyword">function</span> <span class="hljs-title">getContentHtml</span><span class="hljs-params">(lo)</span> </span>{
<span class="hljs-keyword">var</span> ld = lo.data;
<span class="hljs-keyword">var</span> website = <span class="hljs-string">""</span>;
<span class="hljs-keyword">if</span> (ld.website) {
website = <span class="hljs-string">' // <a href="'</span> + ld.website + <span class="hljs-string">'">Website</a>'</span>;
}
<span class="hljs-keyword">var</span> content = <span class="hljs-string">'<div class="info-window-content">'</span> +
<span class="hljs-string">'<h3 class="info-window-heading">'</span> + ld.name + <span class="hljs-string">'</h3>'</span> +
<span class="hljs-string">'<h4>'</span> + ld.address + website + <span class="hljs-string">'</h4>'</span> +
<span class="hljs-string">'<p>'</span> + ld.description + <span class="hljs-string">'</p>'</span> +
<span class="hljs-string">'<div id="info-window-imgs">'</span> +
<span class="hljs-string">'<img src="img/loading.gif" /></div>'</span> +
<span class="hljs-string">'</div>'</span>;
<span class="hljs-keyword">return</span> content;
}
<span class="hljs-comment">/**
* Called when page is loaded, this initializes a Google Map, sets markers on it for each of
* our locations, and centers the map.
*/</span>
<span class="hljs-function"><span class="hljs-keyword">function</span> <span class="hljs-title">initializeMap</span><span class="hljs-params">()</span> </span>{
<span class="hljs-keyword">var</span> mapOptions = {
disableDefaultUI: <span class="hljs-literal">true</span>,
mapTypeId: <span class="hljs-string">'terrain'</span>,
styles: mapStyles
};
<span class="hljs-comment">/**
* This function reads Google Places search results to create map pins.
*
* @param {Object} locationData The location data from our model.
* @author MCS, via the Udacity forums, was very helpful.
*/</span>
<span class="hljs-function"><span class="hljs-keyword">function</span> <span class="hljs-title">createMapMarker</span><span class="hljs-params">(locationData)</span> </span>{</pre></div></div>
</li>
<li id="section-6">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-6">¶</a>
</div>
<p>Major change: don’t just use placeData to create a map marker, use an
object that contains even more information! The path of least resistance
for me to make this happen is to just add the placeData to the locations
(model.places) object when the result comes back, and pass
<code>createMapMarker</code> the whole location object.</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> placeData = locationData.placeData;
<span class="hljs-keyword">var</span> lat = placeData.geometry.location.lat();
<span class="hljs-keyword">var</span> lon = placeData.geometry.location.lng();
<span class="hljs-keyword">var</span> bounds = <span class="hljs-built_in">window</span>.mapBounds;
<span class="hljs-keyword">var</span> marker = <span class="hljs-keyword">new</span> google.maps.Marker({
map: <span class="hljs-built_in">window</span>.map,
position: placeData.geometry.location,
title: locationData.name,
icon: <span class="hljs-string">'img/'</span> + locationData.icon
});
<span class="hljs-keyword">var</span> locationObject = <span class="hljs-keyword">new</span> LocationObject(locationData, marker);
self.locationObjectArray.push(locationObject);
google.maps.event.addListener(marker, <span class="hljs-string">'click'</span>, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> </span>{
<span class="hljs-built_in">window</span>.map.setCenter(<span class="hljs-keyword">this</span>.position);
self.infoWindow.setContent(getContentHtml(locationObject));
<span class="hljs-keyword">if</span> (locationObject.alreadySearched) {
locationObject.addImagesToInfoWindow();
}
<span class="hljs-keyword">else</span> {
$(<span class="hljs-string">"#info-window-imgs"</span>).empty()
.append(<span class="hljs-string">'<img src="img/loading.gif" />'</span>);
locationObject.callFlickr();
}
infoWindow.open(<span class="hljs-built_in">window</span>.map, <span class="hljs-keyword">this</span>);
});
bounds.extend(<span class="hljs-keyword">new</span> google.maps.LatLng(lat, lon));
<span class="hljs-built_in">window</span>.map.fitBounds(bounds);
<span class="hljs-built_in">window</span>.map.setCenter(bounds.getCenter());
}
<span class="hljs-comment">/* We're storing the response in the location object now, and passing the whole location
* object to `createMapMarker`.
*
* @param {Object} locationData The location info from our model.
*/</span>
<span class="hljs-function"><span class="hljs-keyword">function</span> <span class="hljs-title">closureTrick</span><span class="hljs-params">(locationData)</span> </span>{
<span class="hljs-comment">/*
* callback(results, status) makes sure the search returned results for a location.
* If so, it creates a new map marker for that location.
*
* @param {Object} results The query results returned by Google's API.
* @param {Object} status The query status returned by Google's API
*/</span>
<span class="hljs-function"><span class="hljs-keyword">function</span> <span class="hljs-title">callback</span><span class="hljs-params">(results, status)</span> </span>{
<span class="hljs-keyword">if</span> (status === google.maps.places.PlacesServiceStatus.OK) {
locationData.placeData = results[<span class="hljs-number">0</span>];
createMapMarker(locationData);
}
<span class="hljs-keyword">else</span> {</pre></div></div>
</li>
<li id="section-7">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-7">¶</a>
</div>
<p>I unsuccessfully tried many ways of getting the program to retry
searching for the location when the search fails, but the fact that things
happen in the callback were just too confusing. So, error message only.</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="hljs-built_in">console</span>.log(<span class="hljs-string">"Error: Google Places search returned "</span> + status);
}
}
<span class="hljs-keyword">return</span> callback;
}
<span class="hljs-comment">/**
* Iterates over the array of locations created by `locationFinder()` and fires off Google
* place searches for each location. I'm going to do things a bit differently and use the
* Google Places API to search for places by name, and return the coords for the pins.
*/</span>
<span class="hljs-function"><span class="hljs-keyword">function</span> <span class="hljs-title">pinPoster</span><span class="hljs-params">()</span> </span>{
<span class="hljs-keyword">var</span> service = <span class="hljs-keyword">new</span> google.maps.places.PlacesService(<span class="hljs-built_in">window</span>.map);
<span class="hljs-keyword">var</span> i = self.locations.length;
<span class="hljs-keyword">var</span> request;</pre></div></div>
</li>
<li id="section-8">
<div class="annotation">
<div class="pilwrap ">
<a class="pilcrow" href="#section-8">¶</a>
</div>
<p>We need to limit the number of API calls to 10 per 2 seconds</p>
</div>
<div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> interval = setInterval(<span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> </span>{
request = {query: self.locations[i - <span class="hljs-number">1</span>].address};
service.textSearch(request, closureTrick(self.locations[i - <span class="hljs-number">1</span>]));
i--;
<span class="hljs-keyword">if</span> (!i) {
clearInterval(interval);
}
}, <span class="hljs-number">240</span>);
}
<span class="hljs-built_in">window</span>.map = <span class="hljs-keyword">new</span> google.maps.Map(<span class="hljs-built_in">document</span>.querySelector(<span class="hljs-string">'#map'</span>), mapOptions);
<span class="hljs-built_in">window</span>.mapBounds = <span class="hljs-keyword">new</span> google.maps.LatLngBounds();
$(<span class="hljs-built_in">window</span>.map).click(<span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> </span>{
$(<span class="hljs-string">"#image-overlay"</span>).empty();
});
pinPoster();
}
<span class="hljs-comment">/**
* This is run immediately when DOM is ready. I adapted code for this from the following URL:
* https://github.com/smith1jason/Udacity_Project_5/blob/master/js/script.js
*/</span>
<span class="hljs-function"><span class="hljs-keyword">function</span> <span class="hljs-title">initializeQuery</span><span class="hljs-params">()</span> </span>{
self.query.subscribe(<span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> </span>{
self.infoWindow.close();
self.filteredArray = ko.observableArray($.grep(self.locationObjectArray(),
<span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(locationObject)</span> </span>{
<span class="hljs-keyword">var</span> title = locationObject.marker.title.toLowerCase();
<span class="hljs-keyword">return</span> title.startsWith(self.query().toLowerCase());
}));
<span class="hljs-keyword">var</span> newArray = ko.utils.compareArrays(self.locationObjectArray(),
self.filteredArray());
ko.utils.arrayForEach(newArray, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(locationObject)</span> </span>{
<span class="hljs-keyword">if</span> (locationObject.status === <span class="hljs-string">'deleted'</span>) {
locationObject.value.marker.setVisible(<span class="hljs-literal">false</span>);
locationObject.value.isVisible(<span class="hljs-literal">false</span>);
}
<span class="hljs-keyword">else</span> {
locationObject.value.marker.setVisible(<span class="hljs-literal">true</span>);
locationObject.value.isVisible(<span class="hljs-literal">true</span>);
}
});
});
}
initializeMap();
initializeQuery();
}</pre></div></div>
</li>
</ul>
</div>
</body>
</html>
| daveyshindig/frontend-nanodegree-neighborhood-map | docs/helper.html | HTML | bsd-3-clause | 24,394 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html><head>
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/>
<meta name="keywords" content="LLDB,C++,doxygen,API,documentation"/>
<meta name="description" content="C++ source code API documentation for LLDB."/>
<title>LLVM: SBEvent.h File Reference</title>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head><body>
<p class="title">LLDB API Documentation</p>
<!-- Generated by Doxygen 1.8.6 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</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 List</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="dir_6b47ac86da6aee9115280ffa56155f66.html">llvm</a></li><li class="navelem"><a class="el" href="dir_b8cffa74dcb91bca0da221349fa85523.html">tools</a></li><li class="navelem"><a class="el" href="dir_bdcf59bf838c999fcfc3dde87d35c9f0.html">lldb</a></li><li class="navelem"><a class="el" href="dir_42333c9da4438c4e48b6683e9ba44a59.html">include</a></li><li class="navelem"><a class="el" href="dir_30e71e610673c7b74c5ccda0fc334ee9.html">lldb</a></li><li class="navelem"><a class="el" href="dir_65cab015c1f428073772d528e6a1b53d.html">API</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#nested-classes">Classes</a> |
<a href="#namespaces">Namespaces</a> </div>
<div class="headertitle">
<div class="title">SBEvent.h File Reference</div> </div>
</div><!--header-->
<div class="contents">
<div class="textblock"><code>#include "<a class="el" href="SBDefines_8h_source.html">lldb/API/SBDefines.h</a>"</code><br/>
<code>#include <stdio.h></code><br/>
<code>#include <vector></code><br/>
</div><div class="textblock"><div class="dynheader">
Include dependency graph for SBEvent.h:</div>
<div class="dyncontent">
<div class="center"><img src="SBEvent_8h__incl.png" border="0" usemap="#SBEvent_8h" alt=""/></div>
<map name="SBEvent_8h" id="SBEvent_8h">
<area shape="rect" id="node2" href="SBDefines_8h.html" title="lldb/API/SBDefines.h" alt="" coords="321,80,463,107"/></map>
</div>
</div><div class="textblock"><div class="dynheader">
This graph shows which files directly or indirectly include this file:</div>
<div class="dyncontent">
<div class="center"><img src="SBEvent_8h__dep__incl.png" border="0" usemap="#SBEvent_8hdep" alt=""/></div>
<map name="SBEvent_8hdep" id="SBEvent_8hdep">
<area shape="rect" id="node2" href="LLDB_8h.html" title="LLDB.h" alt="" coords="13,80,77,107"/></map>
</div>
</div>
<p><a href="SBEvent_8h_source.html">Go to the source code of this file.</a></p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
Classes</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classlldb_1_1SBEvent.html">lldb::SBEvent</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="namespaces"></a>
Namespaces</h2></td></tr>
<tr class="memitem:namespacelldb"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="namespacelldb.html">lldb</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
</table>
</div><!-- contents -->
<hr>
<p class="footer">
Generated on Fri Oct 14 2016 14:01:23 for <a href="http://lldb.llvm.org/">LLVM</a> by
<a href="http://www.doxygen.org"><img src="doxygen.png" alt="Doxygen"
align="middle" border="0"/>1.8.6</a><br>
Copyright © 2003-2013 University of Illinois at Urbana-Champaign.
All Rights Reserved.</p>
<hr>
<!--#include virtual="/attrib.incl" -->
</body>
</html>
| youtube/cobalt | third_party/llvm-project/lldb/www/cpp_reference/html/SBEvent_8h.html | HTML | bsd-3-clause | 4,291 |
{% extends "smra_portal/portal_template.html" %}
{% block main %}
<br> Hello {{ greeting }} </br>
{% endblock %} | eresearchrmit/mavrec | smra/smra_portal/templates/smra_portal/hello.html | HTML | bsd-3-clause | 114 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
<title>Description of resetintegrator</title>
<meta name="keywords" content="resetintegrator">
<meta name="description" content="RESETINTEGRATOR Running counter with resets.">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="generator" content="m2html © 2003 Guillaume Flandin">
<meta name="robots" content="index, follow">
<link type="text/css" rel="stylesheet" href="../../../../m2html.css">
</head>
<body>
<a name="_top"></a>
<div><a href="../../../../index.html">Home</a> > <a href="#">chronux_2_00</a> > <a href="../../index.html">spikesort</a> > <a href="../index.html">utility</a> > <a href="index.html">datatools</a> > resetintegrator.m</div>
<!--<table width="100%"><tr><td align="left"><a href="../../../../index.html"><img alt="<" border="0" src="../../../../left.png"> Master index</a></td>
<td align="right"><a href="index.html">Index for chronux_2_00\spikesort\utility\datatools <img alt=">" border="0" src="../../../../right.png"></a></td></tr></table>-->
<h1>resetintegrator
</h1>
<h2><a name="_name"></a>PURPOSE <a href="#_top"><img alt="^" border="0" src="../../../../up.png"></a></h2>
<div class="box"><strong>RESETINTEGRATOR Running counter with resets.</strong></div>
<h2><a name="_synopsis"></a>SYNOPSIS <a href="#_top"><img alt="^" border="0" src="../../../../up.png"></a></h2>
<div class="box"><strong>function output = resetintegrator(input, reset) </strong></div>
<h2><a name="_description"></a>DESCRIPTION <a href="#_top"><img alt="^" border="0" src="../../../../up.png"></a></h2>
<div class="fragment"><pre class="comment">RESETINTEGRATOR Running counter with resets.
OUTPUT = RESETINTEGRATOR(INPUT, RESET), where INPUT and RESET are
length N vectors, returns a length N vector OUTPUT equal to the
cumulative sum of INPUT, reset to zero on each sample k for which
RESET(k) == 0.
OUTPUT = RESETINTEGRATOR(INPUT) uses INPUT as the RESET vector; it
is equivalent to OUTPUT = RESETINTEGRATOR(INPUT, INPUT).</pre></div>
<!-- crossreference -->
<h2><a name="_cross"></a>CROSS-REFERENCE INFORMATION <a href="#_top"><img alt="^" border="0" src="../../../../up.png"></a></h2>
This function calls:
<ul style="list-style-image:url(../../../../matlabicon.gif)">
</ul>
This function is called by:
<ul style="list-style-image:url(../../../../matlabicon.gif)">
</ul>
<!-- crossreference -->
<h2><a name="_source"></a>SOURCE CODE <a href="#_top"><img alt="^" border="0" src="../../../../up.png"></a></h2>
<div class="fragment"><pre>0001 <a name="_sub0" href="#_subfunctions" class="code">function output = resetintegrator(input, reset)</a>
0002 <span class="comment">%RESETINTEGRATOR Running counter with resets.</span>
0003 <span class="comment">% OUTPUT = RESETINTEGRATOR(INPUT, RESET), where INPUT and RESET are</span>
0004 <span class="comment">% length N vectors, returns a length N vector OUTPUT equal to the</span>
0005 <span class="comment">% cumulative sum of INPUT, reset to zero on each sample k for which</span>
0006 <span class="comment">% RESET(k) == 0.</span>
0007 <span class="comment">%</span>
0008 <span class="comment">% OUTPUT = RESETINTEGRATOR(INPUT) uses INPUT as the RESET vector; it</span>
0009 <span class="comment">% is equivalent to OUTPUT = RESETINTEGRATOR(INPUT, INPUT).</span>
0010
0011 <span class="keyword">if</span> (nargin < 2), reset = input;
0012 <span class="keyword">elseif</span> (length(input) ~= length(reset)),
0013 error(<span class="string">'INPUT and RESET vectors must be of the same length.'</span>);
0014 <span class="keyword">end</span>;
0015 <span class="keyword">if</span> (isempty(input)), output = zeros(size(input)); <span class="keyword">return</span>; <span class="keyword">end</span>; <span class="comment">% trap special case</span>
0016
0017 output = CORE_resetintegrator(double(input), logical(reset));</pre></div>
<hr><address>Generated on Fri 15-Aug-2008 11:35:42 by <strong><a href="http://www.artefact.tk/software/matlab/m2html/">m2html</a></strong> © 2003</address>
</body>
</html> | arengela/AngelaUCSFCodeAll | CoreFunctions/chronux/documentation/chronux_2_00/spikesort/utility/datatools/resetintegrator.html | HTML | bsd-3-clause | 4,249 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Code Coverage for /home/gerard/sites/modules.w.doctrine/modules.zendframework.com/vendor/ZF2/library/Zend/Stdlib/ArrayUtils.php</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-responsive.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<header>
<div class="container">
<div class="row">
<div class="span12">
<ul class="breadcrumb">
<li><a href="index.html">/home/gerard/sites/modules.w.doctrine/modules.zendframework.com</a> <span class="divider">/</span></li>
<li><a href="vendor.html">vendor</a> <span class="divider">/</span></li>
<li><a href="vendor_ZF2.html">ZF2</a> <span class="divider">/</span></li>
<li><a href="vendor_ZF2_library.html">library</a> <span class="divider">/</span></li>
<li><a href="vendor_ZF2_library_Zend.html">Zend</a> <span class="divider">/</span></li>
<li><a href="vendor_ZF2_library_Zend_Stdlib.html">Stdlib</a> <span class="divider">/</span></li>
<li class="active">ArrayUtils.php</li>
</ul>
</div>
</div>
</div>
</header>
<div class="container">
<table class="table table-bordered">
<thead>
<tr>
<td> </td>
<td colspan="10"><div align="center"><strong>Code Coverage</strong></div></td>
</tr>
<tr>
<td> </td>
<td colspan="3"><div align="center"><strong>Classes and Traits</strong></div></td>
<td colspan="4"><div align="center"><strong>Functions and Methods</strong></div></td>
<td colspan="3"><div align="center"><strong>Lines</strong></div></td>
</tr>
</thead>
<tbody>
<tr>
<td class="danger">Total</td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 1</div></td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 14.29%;"></div>
</div>
</td>
<td class="danger small"><div align="right">14.29%</div></td>
<td class="danger small"><div align="right">1 / 7</div></td>
<td class="danger small"><abbr title="Change Risk Anti-Patterns (CRAP) Index">CRAP</abbr></td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 23.73%;"></div>
</div>
</td>
<td class="danger small"><div align="right">23.73%</div></td>
<td class="danger small"><div align="right">14 / 59</div></td>
</tr>
<tr>
<td class="danger">ArrayUtils</td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 1</div></td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 14.29%;"></div>
</div>
</td>
<td class="danger small"><div align="right">14.29%</div></td>
<td class="danger small"><div align="right">1 / 7</div></td>
<td class="danger small">457.39</td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 23.73%;"></div>
</div>
</td>
<td class="danger small"><div align="right">23.73%</div></td>
<td class="danger small"><div align="right">14 / 59</div></td>
</tr>
<tr>
<td class="danger" colspan="4"> <a href="#32">hasStringKeys($value, $allowEmpty = false)</a></td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 1</div></td>
<td class="danger small">4.94</td>
<td class="warning big"> <div class="progress progress-warning" style="width: 100px;">
<div class="bar" style="width: 40.00%;"></div>
</div>
</td>
<td class="warning small"><div align="right">40.00%</div></td>
<td class="warning small"><div align="right">2 / 5</div></td>
</tr>
<tr>
<td class="danger" colspan="4"> <a href="#52">hasIntegerKeys($value, $allowEmpty = false)</a></td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 1</div></td>
<td class="danger small">12</td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 5</div></td>
</tr>
<tr>
<td class="danger" colspan="4"> <a href="#79">hasNumericKeys($value, $allowEmpty = false)</a></td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 1</div></td>
<td class="danger small">12</td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 5</div></td>
</tr>
<tr>
<td class="danger" colspan="4"> <a href="#112">isList($value, $allowEmpty = false)</a></td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 1</div></td>
<td class="danger small">12</td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 5</div></td>
</tr>
<tr>
<td class="danger" colspan="4"> <a href="#154">isHashTable($value, $allowEmpty = false)</a></td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 1</div></td>
<td class="danger small">12</td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 5</div></td>
</tr>
<tr>
<td class="danger" colspan="4"> <a href="#178">iteratorToArray($iterator, $recursive = true)</a></td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 1</div></td>
<td class="danger small">110</td>
<td class="danger big"> <div class="progress progress-danger" style="width: 100px;">
<div class="bar" style="width: 0.00%;"></div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 22</div></td>
</tr>
<tr>
<td class="success" colspan="4"> <a href="#231">merge(array $a, array $b)</a></td>
<td class="success big"> <div class="progress progress-success" style="width: 100px;">
<div class="bar" style="width: 100.00%;"></div>
</div>
</td>
<td class="success small"><div align="right">100.00%</div></td>
<td class="success small"><div align="right">1 / 1</div></td>
<td class="success small">6</td>
<td class="success big"> <div class="progress progress-success" style="width: 100px;">
<div class="bar" style="width: 100.00%;"></div>
</div>
</td>
<td class="success small"><div align="right">100.00%</div></td>
<td class="success small"><div align="right">12 / 12</div></td>
</tr>
</tbody>
</table>
<table class="table table-borderless table-condensed">
<tbody>
<tr><td><div align="right"><a name="1"></a><a href="#1">1</a></div></td><td class="codeLine"><?php</td></tr>
<tr><td><div align="right"><a name="2"></a><a href="#2">2</a></div></td><td class="codeLine">/**</td></tr>
<tr><td><div align="right"><a name="3"></a><a href="#3">3</a></div></td><td class="codeLine"> * Zend Framework (http://framework.zend.com/)</td></tr>
<tr><td><div align="right"><a name="4"></a><a href="#4">4</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="5"></a><a href="#5">5</a></div></td><td class="codeLine"> * @link http://github.com/zendframework/zf2 for the canonical source repository</td></tr>
<tr><td><div align="right"><a name="6"></a><a href="#6">6</a></div></td><td class="codeLine"> * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)</td></tr>
<tr><td><div align="right"><a name="7"></a><a href="#7">7</a></div></td><td class="codeLine"> * @license http://framework.zend.com/license/new-bsd New BSD License</td></tr>
<tr><td><div align="right"><a name="8"></a><a href="#8">8</a></div></td><td class="codeLine"> * @package Zend_Stdlib</td></tr>
<tr><td><div align="right"><a name="9"></a><a href="#9">9</a></div></td><td class="codeLine"> */</td></tr>
<tr><td><div align="right"><a name="10"></a><a href="#10">10</a></div></td><td class="codeLine"></td></tr>
<tr><td><div align="right"><a name="11"></a><a href="#11">11</a></div></td><td class="codeLine">namespace Zend\Stdlib;</td></tr>
<tr><td><div align="right"><a name="12"></a><a href="#12">12</a></div></td><td class="codeLine"></td></tr>
<tr><td><div align="right"><a name="13"></a><a href="#13">13</a></div></td><td class="codeLine">use Traversable;</td></tr>
<tr><td><div align="right"><a name="14"></a><a href="#14">14</a></div></td><td class="codeLine"></td></tr>
<tr><td><div align="right"><a name="15"></a><a href="#15">15</a></div></td><td class="codeLine">/**</td></tr>
<tr><td><div align="right"><a name="16"></a><a href="#16">16</a></div></td><td class="codeLine"> * Utility class for testing and manipulation of PHP arrays.</td></tr>
<tr><td><div align="right"><a name="17"></a><a href="#17">17</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="18"></a><a href="#18">18</a></div></td><td class="codeLine"> * Declared abstract, as we have no need for instantiation.</td></tr>
<tr><td><div align="right"><a name="19"></a><a href="#19">19</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="20"></a><a href="#20">20</a></div></td><td class="codeLine"> * @category Zend</td></tr>
<tr><td><div align="right"><a name="21"></a><a href="#21">21</a></div></td><td class="codeLine"> * @package Zend_Stdlib</td></tr>
<tr><td><div align="right"><a name="22"></a><a href="#22">22</a></div></td><td class="codeLine"> */</td></tr>
<tr><td><div align="right"><a name="23"></a><a href="#23">23</a></div></td><td class="codeLine">abstract class ArrayUtils</td></tr>
<tr><td><div align="right"><a name="24"></a><a href="#24">24</a></div></td><td class="codeLine">{</td></tr>
<tr><td><div align="right"><a name="25"></a><a href="#25">25</a></div></td><td class="codeLine"> /**</td></tr>
<tr><td><div align="right"><a name="26"></a><a href="#26">26</a></div></td><td class="codeLine"> * Test whether an array contains one or more string keys</td></tr>
<tr><td><div align="right"><a name="27"></a><a href="#27">27</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="28"></a><a href="#28">28</a></div></td><td class="codeLine"> * @param mixed $value</td></tr>
<tr><td><div align="right"><a name="29"></a><a href="#29">29</a></div></td><td class="codeLine"> * @param bool $allowEmpty Should an empty array() return true</td></tr>
<tr><td><div align="right"><a name="30"></a><a href="#30">30</a></div></td><td class="codeLine"> * @return bool</td></tr>
<tr><td><div align="right"><a name="31"></a><a href="#31">31</a></div></td><td class="codeLine"> */</td></tr>
<tr><td><div align="right"><a name="32"></a><a href="#32">32</a></div></td><td class="codeLine"> public static function hasStringKeys($value, $allowEmpty = false)</td></tr>
<tr><td><div align="right"><a name="33"></a><a href="#33">33</a></div></td><td class="codeLine"> {</td></tr>
<tr class="success popin" data-title="1 test covers line 34" data-content="<ul><li class="success">CommentControllerTest::testAddReplyUriGoodData with data set &quot;0&quot;</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="34"></a><a href="#34">34</a></div></td><td class="codeLine"> if (!is_array($value)) {</td></tr>
<tr class="success popin" data-title="1 test covers line 35" data-content="<ul><li class="success">CommentControllerTest::testAddReplyUriGoodData with data set &quot;0&quot;</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="35"></a><a href="#35">35</a></div></td><td class="codeLine"> return false;</td></tr>
<tr><td><div align="right"><a name="36"></a><a href="#36">36</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="37"></a><a href="#37">37</a></div></td><td class="codeLine"></td></tr>
<tr class="danger"><td><div align="right"><a name="38"></a><a href="#38">38</a></div></td><td class="codeLine"> if (!$value) {</td></tr>
<tr class="danger"><td><div align="right"><a name="39"></a><a href="#39">39</a></div></td><td class="codeLine"> return $allowEmpty;</td></tr>
<tr><td><div align="right"><a name="40"></a><a href="#40">40</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="41"></a><a href="#41">41</a></div></td><td class="codeLine"></td></tr>
<tr class="danger"><td><div align="right"><a name="42"></a><a href="#42">42</a></div></td><td class="codeLine"> return count(array_filter(array_keys($value), 'is_string')) > 0;</td></tr>
<tr><td><div align="right"><a name="43"></a><a href="#43">43</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="44"></a><a href="#44">44</a></div></td><td class="codeLine"></td></tr>
<tr><td><div align="right"><a name="45"></a><a href="#45">45</a></div></td><td class="codeLine"> /**</td></tr>
<tr><td><div align="right"><a name="46"></a><a href="#46">46</a></div></td><td class="codeLine"> * Test whether an array contains one or more integer keys</td></tr>
<tr><td><div align="right"><a name="47"></a><a href="#47">47</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="48"></a><a href="#48">48</a></div></td><td class="codeLine"> * @param mixed $value</td></tr>
<tr><td><div align="right"><a name="49"></a><a href="#49">49</a></div></td><td class="codeLine"> * @param bool $allowEmpty Should an empty array() return true</td></tr>
<tr><td><div align="right"><a name="50"></a><a href="#50">50</a></div></td><td class="codeLine"> * @return bool</td></tr>
<tr><td><div align="right"><a name="51"></a><a href="#51">51</a></div></td><td class="codeLine"> */</td></tr>
<tr><td><div align="right"><a name="52"></a><a href="#52">52</a></div></td><td class="codeLine"> public static function hasIntegerKeys($value, $allowEmpty = false)</td></tr>
<tr><td><div align="right"><a name="53"></a><a href="#53">53</a></div></td><td class="codeLine"> {</td></tr>
<tr class="danger"><td><div align="right"><a name="54"></a><a href="#54">54</a></div></td><td class="codeLine"> if (!is_array($value)) {</td></tr>
<tr class="danger"><td><div align="right"><a name="55"></a><a href="#55">55</a></div></td><td class="codeLine"> return false;</td></tr>
<tr><td><div align="right"><a name="56"></a><a href="#56">56</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="57"></a><a href="#57">57</a></div></td><td class="codeLine"></td></tr>
<tr class="danger"><td><div align="right"><a name="58"></a><a href="#58">58</a></div></td><td class="codeLine"> if (!$value) {</td></tr>
<tr class="danger"><td><div align="right"><a name="59"></a><a href="#59">59</a></div></td><td class="codeLine"> return $allowEmpty;</td></tr>
<tr><td><div align="right"><a name="60"></a><a href="#60">60</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="61"></a><a href="#61">61</a></div></td><td class="codeLine"></td></tr>
<tr class="danger"><td><div align="right"><a name="62"></a><a href="#62">62</a></div></td><td class="codeLine"> return count(array_filter(array_keys($value), 'is_int')) > 0;</td></tr>
<tr><td><div align="right"><a name="63"></a><a href="#63">63</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="64"></a><a href="#64">64</a></div></td><td class="codeLine"></td></tr>
<tr><td><div align="right"><a name="65"></a><a href="#65">65</a></div></td><td class="codeLine"> /**</td></tr>
<tr><td><div align="right"><a name="66"></a><a href="#66">66</a></div></td><td class="codeLine"> * Test whether an array contains one or more numeric keys.</td></tr>
<tr><td><div align="right"><a name="67"></a><a href="#67">67</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="68"></a><a href="#68">68</a></div></td><td class="codeLine"> * A numeric key can be one of the following:</td></tr>
<tr><td><div align="right"><a name="69"></a><a href="#69">69</a></div></td><td class="codeLine"> * - an integer 1,</td></tr>
<tr><td><div align="right"><a name="70"></a><a href="#70">70</a></div></td><td class="codeLine"> * - a string with a number '20'</td></tr>
<tr><td><div align="right"><a name="71"></a><a href="#71">71</a></div></td><td class="codeLine"> * - a string with negative number: '-1000'</td></tr>
<tr><td><div align="right"><a name="72"></a><a href="#72">72</a></div></td><td class="codeLine"> * - a float: 2.2120, -78.150999</td></tr>
<tr><td><div align="right"><a name="73"></a><a href="#73">73</a></div></td><td class="codeLine"> * - a string with float: '4000.99999', '-10.10'</td></tr>
<tr><td><div align="right"><a name="74"></a><a href="#74">74</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="75"></a><a href="#75">75</a></div></td><td class="codeLine"> * @param mixed $value</td></tr>
<tr><td><div align="right"><a name="76"></a><a href="#76">76</a></div></td><td class="codeLine"> * @param bool $allowEmpty Should an empty array() return true</td></tr>
<tr><td><div align="right"><a name="77"></a><a href="#77">77</a></div></td><td class="codeLine"> * @return bool</td></tr>
<tr><td><div align="right"><a name="78"></a><a href="#78">78</a></div></td><td class="codeLine"> */</td></tr>
<tr><td><div align="right"><a name="79"></a><a href="#79">79</a></div></td><td class="codeLine"> public static function hasNumericKeys($value, $allowEmpty = false)</td></tr>
<tr><td><div align="right"><a name="80"></a><a href="#80">80</a></div></td><td class="codeLine"> {</td></tr>
<tr class="danger"><td><div align="right"><a name="81"></a><a href="#81">81</a></div></td><td class="codeLine"> if (!is_array($value)) {</td></tr>
<tr class="danger"><td><div align="right"><a name="82"></a><a href="#82">82</a></div></td><td class="codeLine"> return false;</td></tr>
<tr><td><div align="right"><a name="83"></a><a href="#83">83</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="84"></a><a href="#84">84</a></div></td><td class="codeLine"></td></tr>
<tr class="danger"><td><div align="right"><a name="85"></a><a href="#85">85</a></div></td><td class="codeLine"> if (!$value) {</td></tr>
<tr class="danger"><td><div align="right"><a name="86"></a><a href="#86">86</a></div></td><td class="codeLine"> return $allowEmpty;</td></tr>
<tr><td><div align="right"><a name="87"></a><a href="#87">87</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="88"></a><a href="#88">88</a></div></td><td class="codeLine"></td></tr>
<tr class="danger"><td><div align="right"><a name="89"></a><a href="#89">89</a></div></td><td class="codeLine"> return count(array_filter(array_keys($value), 'is_numeric')) > 0;</td></tr>
<tr><td><div align="right"><a name="90"></a><a href="#90">90</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="91"></a><a href="#91">91</a></div></td><td class="codeLine"></td></tr>
<tr><td><div align="right"><a name="92"></a><a href="#92">92</a></div></td><td class="codeLine"> /**</td></tr>
<tr><td><div align="right"><a name="93"></a><a href="#93">93</a></div></td><td class="codeLine"> * Test whether an array is a list</td></tr>
<tr><td><div align="right"><a name="94"></a><a href="#94">94</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="95"></a><a href="#95">95</a></div></td><td class="codeLine"> * A list is a collection of values assigned to continuous integer keys</td></tr>
<tr><td><div align="right"><a name="96"></a><a href="#96">96</a></div></td><td class="codeLine"> * starting at 0 and ending at count() - 1.</td></tr>
<tr><td><div align="right"><a name="97"></a><a href="#97">97</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="98"></a><a href="#98">98</a></div></td><td class="codeLine"> * For example:</td></tr>
<tr><td><div align="right"><a name="99"></a><a href="#99">99</a></div></td><td class="codeLine"> * <code></td></tr>
<tr><td><div align="right"><a name="100"></a><a href="#100">100</a></div></td><td class="codeLine"> * $list = array( 'a','b','c','d' );</td></tr>
<tr><td><div align="right"><a name="101"></a><a href="#101">101</a></div></td><td class="codeLine"> * $list = array(</td></tr>
<tr><td><div align="right"><a name="102"></a><a href="#102">102</a></div></td><td class="codeLine"> * 0 => 'foo',</td></tr>
<tr><td><div align="right"><a name="103"></a><a href="#103">103</a></div></td><td class="codeLine"> * 1 => 'bar',</td></tr>
<tr><td><div align="right"><a name="104"></a><a href="#104">104</a></div></td><td class="codeLine"> * 2 => array( 'foo' => 'baz' ),</td></tr>
<tr><td><div align="right"><a name="105"></a><a href="#105">105</a></div></td><td class="codeLine"> * );</td></tr>
<tr><td><div align="right"><a name="106"></a><a href="#106">106</a></div></td><td class="codeLine"> * </code></td></tr>
<tr><td><div align="right"><a name="107"></a><a href="#107">107</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="108"></a><a href="#108">108</a></div></td><td class="codeLine"> * @param mixed $value</td></tr>
<tr><td><div align="right"><a name="109"></a><a href="#109">109</a></div></td><td class="codeLine"> * @param bool $allowEmpty Is an empty list a valid list?</td></tr>
<tr><td><div align="right"><a name="110"></a><a href="#110">110</a></div></td><td class="codeLine"> * @return bool</td></tr>
<tr><td><div align="right"><a name="111"></a><a href="#111">111</a></div></td><td class="codeLine"> */</td></tr>
<tr><td><div align="right"><a name="112"></a><a href="#112">112</a></div></td><td class="codeLine"> public static function isList($value, $allowEmpty = false)</td></tr>
<tr><td><div align="right"><a name="113"></a><a href="#113">113</a></div></td><td class="codeLine"> {</td></tr>
<tr class="danger"><td><div align="right"><a name="114"></a><a href="#114">114</a></div></td><td class="codeLine"> if (!is_array($value)) {</td></tr>
<tr class="danger"><td><div align="right"><a name="115"></a><a href="#115">115</a></div></td><td class="codeLine"> return false;</td></tr>
<tr><td><div align="right"><a name="116"></a><a href="#116">116</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="117"></a><a href="#117">117</a></div></td><td class="codeLine"></td></tr>
<tr class="danger"><td><div align="right"><a name="118"></a><a href="#118">118</a></div></td><td class="codeLine"> if (!$value) {</td></tr>
<tr class="danger"><td><div align="right"><a name="119"></a><a href="#119">119</a></div></td><td class="codeLine"> return $allowEmpty;</td></tr>
<tr><td><div align="right"><a name="120"></a><a href="#120">120</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="121"></a><a href="#121">121</a></div></td><td class="codeLine"></td></tr>
<tr class="danger"><td><div align="right"><a name="122"></a><a href="#122">122</a></div></td><td class="codeLine"> return (array_values($value) === $value);</td></tr>
<tr><td><div align="right"><a name="123"></a><a href="#123">123</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="124"></a><a href="#124">124</a></div></td><td class="codeLine"></td></tr>
<tr><td><div align="right"><a name="125"></a><a href="#125">125</a></div></td><td class="codeLine"> /**</td></tr>
<tr><td><div align="right"><a name="126"></a><a href="#126">126</a></div></td><td class="codeLine"> * Test whether an array is a hash table.</td></tr>
<tr><td><div align="right"><a name="127"></a><a href="#127">127</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="128"></a><a href="#128">128</a></div></td><td class="codeLine"> * An array is a hash table if:</td></tr>
<tr><td><div align="right"><a name="129"></a><a href="#129">129</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="130"></a><a href="#130">130</a></div></td><td class="codeLine"> * 1. Contains one or more non-integer keys, or</td></tr>
<tr><td><div align="right"><a name="131"></a><a href="#131">131</a></div></td><td class="codeLine"> * 2. Integer keys are non-continuous or misaligned (not starting with 0)</td></tr>
<tr><td><div align="right"><a name="132"></a><a href="#132">132</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="133"></a><a href="#133">133</a></div></td><td class="codeLine"> * For example:</td></tr>
<tr><td><div align="right"><a name="134"></a><a href="#134">134</a></div></td><td class="codeLine"> * <code></td></tr>
<tr><td><div align="right"><a name="135"></a><a href="#135">135</a></div></td><td class="codeLine"> * $hash = array(</td></tr>
<tr><td><div align="right"><a name="136"></a><a href="#136">136</a></div></td><td class="codeLine"> * 'foo' => 15,</td></tr>
<tr><td><div align="right"><a name="137"></a><a href="#137">137</a></div></td><td class="codeLine"> * 'bar' => false,</td></tr>
<tr><td><div align="right"><a name="138"></a><a href="#138">138</a></div></td><td class="codeLine"> * );</td></tr>
<tr><td><div align="right"><a name="139"></a><a href="#139">139</a></div></td><td class="codeLine"> * $hash = array(</td></tr>
<tr><td><div align="right"><a name="140"></a><a href="#140">140</a></div></td><td class="codeLine"> * 1995 => 'Birth of PHP',</td></tr>
<tr><td><div align="right"><a name="141"></a><a href="#141">141</a></div></td><td class="codeLine"> * 2009 => 'PHP 5.3.0',</td></tr>
<tr><td><div align="right"><a name="142"></a><a href="#142">142</a></div></td><td class="codeLine"> * 2012 => 'PHP 5.4.0',</td></tr>
<tr><td><div align="right"><a name="143"></a><a href="#143">143</a></div></td><td class="codeLine"> * );</td></tr>
<tr><td><div align="right"><a name="144"></a><a href="#144">144</a></div></td><td class="codeLine"> * $hash = array(</td></tr>
<tr><td><div align="right"><a name="145"></a><a href="#145">145</a></div></td><td class="codeLine"> * 'formElement,</td></tr>
<tr><td><div align="right"><a name="146"></a><a href="#146">146</a></div></td><td class="codeLine"> * 'options' => array( 'debug' => true ),</td></tr>
<tr><td><div align="right"><a name="147"></a><a href="#147">147</a></div></td><td class="codeLine"> * );</td></tr>
<tr><td><div align="right"><a name="148"></a><a href="#148">148</a></div></td><td class="codeLine"> * </code></td></tr>
<tr><td><div align="right"><a name="149"></a><a href="#149">149</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="150"></a><a href="#150">150</a></div></td><td class="codeLine"> * @param mixed $value</td></tr>
<tr><td><div align="right"><a name="151"></a><a href="#151">151</a></div></td><td class="codeLine"> * @param bool $allowEmpty Is an empty array() a valid hash table?</td></tr>
<tr><td><div align="right"><a name="152"></a><a href="#152">152</a></div></td><td class="codeLine"> * @return bool</td></tr>
<tr><td><div align="right"><a name="153"></a><a href="#153">153</a></div></td><td class="codeLine"> */</td></tr>
<tr><td><div align="right"><a name="154"></a><a href="#154">154</a></div></td><td class="codeLine"> public static function isHashTable($value, $allowEmpty = false)</td></tr>
<tr><td><div align="right"><a name="155"></a><a href="#155">155</a></div></td><td class="codeLine"> {</td></tr>
<tr class="danger"><td><div align="right"><a name="156"></a><a href="#156">156</a></div></td><td class="codeLine"> if (!is_array($value)) {</td></tr>
<tr class="danger"><td><div align="right"><a name="157"></a><a href="#157">157</a></div></td><td class="codeLine"> return false;</td></tr>
<tr><td><div align="right"><a name="158"></a><a href="#158">158</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="159"></a><a href="#159">159</a></div></td><td class="codeLine"></td></tr>
<tr class="danger"><td><div align="right"><a name="160"></a><a href="#160">160</a></div></td><td class="codeLine"> if (!$value) {</td></tr>
<tr class="danger"><td><div align="right"><a name="161"></a><a href="#161">161</a></div></td><td class="codeLine"> return $allowEmpty;</td></tr>
<tr><td><div align="right"><a name="162"></a><a href="#162">162</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="163"></a><a href="#163">163</a></div></td><td class="codeLine"></td></tr>
<tr class="danger"><td><div align="right"><a name="164"></a><a href="#164">164</a></div></td><td class="codeLine"> return (array_values($value) !== $value);</td></tr>
<tr><td><div align="right"><a name="165"></a><a href="#165">165</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="166"></a><a href="#166">166</a></div></td><td class="codeLine"></td></tr>
<tr><td><div align="right"><a name="167"></a><a href="#167">167</a></div></td><td class="codeLine"> /**</td></tr>
<tr><td><div align="right"><a name="168"></a><a href="#168">168</a></div></td><td class="codeLine"> * Convert an iterator to an array.</td></tr>
<tr><td><div align="right"><a name="169"></a><a href="#169">169</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="170"></a><a href="#170">170</a></div></td><td class="codeLine"> * Converts an iterator to an array. The $recursive flag, on by default,</td></tr>
<tr><td><div align="right"><a name="171"></a><a href="#171">171</a></div></td><td class="codeLine"> * hints whether or not you want to do so recursively.</td></tr>
<tr><td><div align="right"><a name="172"></a><a href="#172">172</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="173"></a><a href="#173">173</a></div></td><td class="codeLine"> * @param array|Traversable $iterator The array or Traversable object to convert</td></tr>
<tr><td><div align="right"><a name="174"></a><a href="#174">174</a></div></td><td class="codeLine"> * @param bool $recursive Recursively check all nested structures</td></tr>
<tr><td><div align="right"><a name="175"></a><a href="#175">175</a></div></td><td class="codeLine"> * @throws Exception\InvalidArgumentException if $iterator is not an array or a Traversable object</td></tr>
<tr><td><div align="right"><a name="176"></a><a href="#176">176</a></div></td><td class="codeLine"> * @return array</td></tr>
<tr><td><div align="right"><a name="177"></a><a href="#177">177</a></div></td><td class="codeLine"> */</td></tr>
<tr><td><div align="right"><a name="178"></a><a href="#178">178</a></div></td><td class="codeLine"> public static function iteratorToArray($iterator, $recursive = true)</td></tr>
<tr><td><div align="right"><a name="179"></a><a href="#179">179</a></div></td><td class="codeLine"> {</td></tr>
<tr class="danger"><td><div align="right"><a name="180"></a><a href="#180">180</a></div></td><td class="codeLine"> if (!is_array($iterator) && !$iterator instanceof Traversable) {</td></tr>
<tr class="danger"><td><div align="right"><a name="181"></a><a href="#181">181</a></div></td><td class="codeLine"> throw new Exception\InvalidArgumentException(__METHOD__ . ' expects an array or Traversable object');</td></tr>
<tr><td><div align="right"><a name="182"></a><a href="#182">182</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="183"></a><a href="#183">183</a></div></td><td class="codeLine"></td></tr>
<tr class="danger"><td><div align="right"><a name="184"></a><a href="#184">184</a></div></td><td class="codeLine"> if (!$recursive) {</td></tr>
<tr class="danger"><td><div align="right"><a name="185"></a><a href="#185">185</a></div></td><td class="codeLine"> if (is_array($iterator)) {</td></tr>
<tr class="danger"><td><div align="right"><a name="186"></a><a href="#186">186</a></div></td><td class="codeLine"> return $iterator;</td></tr>
<tr><td><div align="right"><a name="187"></a><a href="#187">187</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="188"></a><a href="#188">188</a></div></td><td class="codeLine"></td></tr>
<tr class="danger"><td><div align="right"><a name="189"></a><a href="#189">189</a></div></td><td class="codeLine"> return iterator_to_array($iterator);</td></tr>
<tr><td><div align="right"><a name="190"></a><a href="#190">190</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="191"></a><a href="#191">191</a></div></td><td class="codeLine"></td></tr>
<tr class="danger"><td><div align="right"><a name="192"></a><a href="#192">192</a></div></td><td class="codeLine"> if (method_exists($iterator, 'toArray')) {</td></tr>
<tr class="danger"><td><div align="right"><a name="193"></a><a href="#193">193</a></div></td><td class="codeLine"> return $iterator->toArray();</td></tr>
<tr><td><div align="right"><a name="194"></a><a href="#194">194</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="195"></a><a href="#195">195</a></div></td><td class="codeLine"></td></tr>
<tr class="danger"><td><div align="right"><a name="196"></a><a href="#196">196</a></div></td><td class="codeLine"> $array = array();</td></tr>
<tr class="danger"><td><div align="right"><a name="197"></a><a href="#197">197</a></div></td><td class="codeLine"> foreach ($iterator as $key => $value) {</td></tr>
<tr class="danger"><td><div align="right"><a name="198"></a><a href="#198">198</a></div></td><td class="codeLine"> if (is_scalar($value)) {</td></tr>
<tr class="danger"><td><div align="right"><a name="199"></a><a href="#199">199</a></div></td><td class="codeLine"> $array[$key] = $value;</td></tr>
<tr class="danger"><td><div align="right"><a name="200"></a><a href="#200">200</a></div></td><td class="codeLine"> continue;</td></tr>
<tr><td><div align="right"><a name="201"></a><a href="#201">201</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="202"></a><a href="#202">202</a></div></td><td class="codeLine"></td></tr>
<tr class="danger"><td><div align="right"><a name="203"></a><a href="#203">203</a></div></td><td class="codeLine"> if ($value instanceof Traversable) {</td></tr>
<tr class="danger"><td><div align="right"><a name="204"></a><a href="#204">204</a></div></td><td class="codeLine"> $array[$key] = static::iteratorToArray($value, $recursive);</td></tr>
<tr class="danger"><td><div align="right"><a name="205"></a><a href="#205">205</a></div></td><td class="codeLine"> continue;</td></tr>
<tr><td><div align="right"><a name="206"></a><a href="#206">206</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="207"></a><a href="#207">207</a></div></td><td class="codeLine"></td></tr>
<tr class="danger"><td><div align="right"><a name="208"></a><a href="#208">208</a></div></td><td class="codeLine"> if (is_array($value)) {</td></tr>
<tr class="danger"><td><div align="right"><a name="209"></a><a href="#209">209</a></div></td><td class="codeLine"> $array[$key] = static::iteratorToArray($value, $recursive);</td></tr>
<tr class="danger"><td><div align="right"><a name="210"></a><a href="#210">210</a></div></td><td class="codeLine"> continue;</td></tr>
<tr><td><div align="right"><a name="211"></a><a href="#211">211</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="212"></a><a href="#212">212</a></div></td><td class="codeLine"></td></tr>
<tr class="danger"><td><div align="right"><a name="213"></a><a href="#213">213</a></div></td><td class="codeLine"> $array[$key] = $value;</td></tr>
<tr class="danger"><td><div align="right"><a name="214"></a><a href="#214">214</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="215"></a><a href="#215">215</a></div></td><td class="codeLine"></td></tr>
<tr class="danger"><td><div align="right"><a name="216"></a><a href="#216">216</a></div></td><td class="codeLine"> return $array;</td></tr>
<tr><td><div align="right"><a name="217"></a><a href="#217">217</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="218"></a><a href="#218">218</a></div></td><td class="codeLine"></td></tr>
<tr><td><div align="right"><a name="219"></a><a href="#219">219</a></div></td><td class="codeLine"> /**</td></tr>
<tr><td><div align="right"><a name="220"></a><a href="#220">220</a></div></td><td class="codeLine"> * Merge two arrays together.</td></tr>
<tr><td><div align="right"><a name="221"></a><a href="#221">221</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="222"></a><a href="#222">222</a></div></td><td class="codeLine"> * If an integer key exists in both arrays, the value from the second array</td></tr>
<tr><td><div align="right"><a name="223"></a><a href="#223">223</a></div></td><td class="codeLine"> * will be appended the the first array. If both values are arrays, they</td></tr>
<tr><td><div align="right"><a name="224"></a><a href="#224">224</a></div></td><td class="codeLine"> * are merged together, else the value of the second array overwrites the</td></tr>
<tr><td><div align="right"><a name="225"></a><a href="#225">225</a></div></td><td class="codeLine"> * one of the first array.</td></tr>
<tr><td><div align="right"><a name="226"></a><a href="#226">226</a></div></td><td class="codeLine"> *</td></tr>
<tr><td><div align="right"><a name="227"></a><a href="#227">227</a></div></td><td class="codeLine"> * @param array $a</td></tr>
<tr><td><div align="right"><a name="228"></a><a href="#228">228</a></div></td><td class="codeLine"> * @param array $b</td></tr>
<tr><td><div align="right"><a name="229"></a><a href="#229">229</a></div></td><td class="codeLine"> * @return array</td></tr>
<tr><td><div align="right"><a name="230"></a><a href="#230">230</a></div></td><td class="codeLine"> */</td></tr>
<tr><td><div align="right"><a name="231"></a><a href="#231">231</a></div></td><td class="codeLine"> public static function merge(array $a, array $b)</td></tr>
<tr><td><div align="right"><a name="232"></a><a href="#232">232</a></div></td><td class="codeLine"> {</td></tr>
<tr class="success popin" data-title="7 tests cover line 233" data-content="<ul><li class="success">CommentControllerTest::testAddReplyUriGoodData with data set &quot;0&quot;</li><li class="danger">CommentControllerTest::testAddReplyUriBadData with data set #0</li><li class="success">ExampleTest::testExample</li><li class="success">UserTest::testExample</li><li class="success">UserTest::testFindByEmailSuccess</li><li class="success">UserTest::testFindByEmailFailure</li><li class="success">UserTest::testFindAll</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="233"></a><a href="#233">233</a></div></td><td class="codeLine"> foreach ($b as $key => $value) {</td></tr>
<tr class="success popin" data-title="7 tests cover line 234" data-content="<ul><li class="success">CommentControllerTest::testAddReplyUriGoodData with data set &quot;0&quot;</li><li class="danger">CommentControllerTest::testAddReplyUriBadData with data set #0</li><li class="success">ExampleTest::testExample</li><li class="success">UserTest::testExample</li><li class="success">UserTest::testFindByEmailSuccess</li><li class="success">UserTest::testFindByEmailFailure</li><li class="success">UserTest::testFindAll</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="234"></a><a href="#234">234</a></div></td><td class="codeLine"> if (array_key_exists($key, $a)) {</td></tr>
<tr class="success popin" data-title="7 tests cover line 235" data-content="<ul><li class="success">CommentControllerTest::testAddReplyUriGoodData with data set &quot;0&quot;</li><li class="danger">CommentControllerTest::testAddReplyUriBadData with data set #0</li><li class="success">ExampleTest::testExample</li><li class="success">UserTest::testExample</li><li class="success">UserTest::testFindByEmailSuccess</li><li class="success">UserTest::testFindByEmailFailure</li><li class="success">UserTest::testFindAll</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="235"></a><a href="#235">235</a></div></td><td class="codeLine"> if (is_int($key)) {</td></tr>
<tr class="success popin" data-title="7 tests cover line 236" data-content="<ul><li class="success">CommentControllerTest::testAddReplyUriGoodData with data set &quot;0&quot;</li><li class="danger">CommentControllerTest::testAddReplyUriBadData with data set #0</li><li class="success">ExampleTest::testExample</li><li class="success">UserTest::testExample</li><li class="success">UserTest::testFindByEmailSuccess</li><li class="success">UserTest::testFindByEmailFailure</li><li class="success">UserTest::testFindAll</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="236"></a><a href="#236">236</a></div></td><td class="codeLine"> $a[] = $value;</td></tr>
<tr class="success popin" data-title="7 tests cover line 237" data-content="<ul><li class="success">CommentControllerTest::testAddReplyUriGoodData with data set &quot;0&quot;</li><li class="danger">CommentControllerTest::testAddReplyUriBadData with data set #0</li><li class="success">ExampleTest::testExample</li><li class="success">UserTest::testExample</li><li class="success">UserTest::testFindByEmailSuccess</li><li class="success">UserTest::testFindByEmailFailure</li><li class="success">UserTest::testFindAll</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="237"></a><a href="#237">237</a></div></td><td class="codeLine"> } elseif (is_array($value) && is_array($a[$key])) {</td></tr>
<tr class="success popin" data-title="7 tests cover line 238" data-content="<ul><li class="success">CommentControllerTest::testAddReplyUriGoodData with data set &quot;0&quot;</li><li class="danger">CommentControllerTest::testAddReplyUriBadData with data set #0</li><li class="success">ExampleTest::testExample</li><li class="success">UserTest::testExample</li><li class="success">UserTest::testFindByEmailSuccess</li><li class="success">UserTest::testFindByEmailFailure</li><li class="success">UserTest::testFindAll</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="238"></a><a href="#238">238</a></div></td><td class="codeLine"> $a[$key] = self::merge($a[$key], $value);</td></tr>
<tr class="success popin" data-title="7 tests cover line 239" data-content="<ul><li class="success">CommentControllerTest::testAddReplyUriGoodData with data set &quot;0&quot;</li><li class="danger">CommentControllerTest::testAddReplyUriBadData with data set #0</li><li class="success">ExampleTest::testExample</li><li class="success">UserTest::testExample</li><li class="success">UserTest::testFindByEmailSuccess</li><li class="success">UserTest::testFindByEmailFailure</li><li class="success">UserTest::testFindAll</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="239"></a><a href="#239">239</a></div></td><td class="codeLine"> } else {</td></tr>
<tr class="success popin" data-title="7 tests cover line 240" data-content="<ul><li class="success">CommentControllerTest::testAddReplyUriGoodData with data set &quot;0&quot;</li><li class="danger">CommentControllerTest::testAddReplyUriBadData with data set #0</li><li class="success">ExampleTest::testExample</li><li class="success">UserTest::testExample</li><li class="success">UserTest::testFindByEmailSuccess</li><li class="success">UserTest::testFindByEmailFailure</li><li class="success">UserTest::testFindAll</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="240"></a><a href="#240">240</a></div></td><td class="codeLine"> $a[$key] = $value;</td></tr>
<tr><td><div align="right"><a name="241"></a><a href="#241">241</a></div></td><td class="codeLine"> }</td></tr>
<tr class="success popin" data-title="7 tests cover line 242" data-content="<ul><li class="success">CommentControllerTest::testAddReplyUriGoodData with data set &quot;0&quot;</li><li class="danger">CommentControllerTest::testAddReplyUriBadData with data set #0</li><li class="success">ExampleTest::testExample</li><li class="success">UserTest::testExample</li><li class="success">UserTest::testFindByEmailSuccess</li><li class="success">UserTest::testFindByEmailFailure</li><li class="success">UserTest::testFindAll</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="242"></a><a href="#242">242</a></div></td><td class="codeLine"> } else {</td></tr>
<tr class="success popin" data-title="7 tests cover line 243" data-content="<ul><li class="success">CommentControllerTest::testAddReplyUriGoodData with data set &quot;0&quot;</li><li class="danger">CommentControllerTest::testAddReplyUriBadData with data set #0</li><li class="success">ExampleTest::testExample</li><li class="success">UserTest::testExample</li><li class="success">UserTest::testFindByEmailSuccess</li><li class="success">UserTest::testFindByEmailFailure</li><li class="success">UserTest::testFindAll</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="243"></a><a href="#243">243</a></div></td><td class="codeLine"> $a[$key] = $value;</td></tr>
<tr><td><div align="right"><a name="244"></a><a href="#244">244</a></div></td><td class="codeLine"> }</td></tr>
<tr class="success popin" data-title="7 tests cover line 245" data-content="<ul><li class="success">CommentControllerTest::testAddReplyUriGoodData with data set &quot;0&quot;</li><li class="danger">CommentControllerTest::testAddReplyUriBadData with data set #0</li><li class="success">ExampleTest::testExample</li><li class="success">UserTest::testExample</li><li class="success">UserTest::testFindByEmailSuccess</li><li class="success">UserTest::testFindByEmailFailure</li><li class="success">UserTest::testFindAll</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="245"></a><a href="#245">245</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="246"></a><a href="#246">246</a></div></td><td class="codeLine"></td></tr>
<tr class="success popin" data-title="7 tests cover line 247" data-content="<ul><li class="success">CommentControllerTest::testAddReplyUriGoodData with data set &quot;0&quot;</li><li class="danger">CommentControllerTest::testAddReplyUriBadData with data set #0</li><li class="success">ExampleTest::testExample</li><li class="success">UserTest::testExample</li><li class="success">UserTest::testFindByEmailSuccess</li><li class="success">UserTest::testFindByEmailFailure</li><li class="success">UserTest::testFindAll</li></ul>" data-placement="bottom" data-html="true"><td><div align="right"><a name="247"></a><a href="#247">247</a></div></td><td class="codeLine"> return $a;</td></tr>
<tr><td><div align="right"><a name="248"></a><a href="#248">248</a></div></td><td class="codeLine"> }</td></tr>
<tr><td><div align="right"><a name="249"></a><a href="#249">249</a></div></td><td class="codeLine">}</td></tr>
</tbody>
</table>
<footer>
<h4>Legend</h4>
<p>
<span class="success"><strong>Executed</strong></span>
<span class="danger"><strong>Not Executed</strong></span>
<span class="warning"><strong>Dead Code</strong></span>
</p>
<p>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 1.2.13</a> using <a href="http://www.php.net/" target="_top">PHP 5.3.10-1ubuntu3.8</a> and <a href="http://phpunit.de/">PHPUnit 3.7.27</a> at Sat Oct 12 3:31:18 CEST 2013.</small>
</p>
</footer>
</div>
<script src="js/jquery.min.js" type="text/javascript"></script>
<script src="js/bootstrap.min.js" type="text/javascript"></script>
<script type="text/javascript">$('.popin').popover({trigger: 'hover'});</script>
</body>
</html>
| gerardoloan/moduleswdoctrine | module/ZfModule/test/clover-html/vendor_ZF2_library_Zend_Stdlib_ArrayUtils.php.html | HTML | bsd-3-clause | 55,546 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.20"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>PMDK C++ bindings: libpmemobj++/detail/pool_data.hpp File Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">PMDK C++ bindings
 <span id="projectnumber">1.12-git53.g67ba2be4</span>
</div>
<div id="projectbrief">This is the C++ bindings documentation for PMDK's libpmemobj.</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.20 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
var searchBox = new SearchBox("searchBox", "search",false,'Search');
/* @license-end */
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
/* @license-end */</script>
<div id="main-nav"></div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="dir_78fd0ef1c12e2c4e76100e472fbc448e.html">libpmemobj++</a></li><li class="navelem"><a class="el" href="dir_260aea9212bad7ad28b9965711bc32cc.html">detail</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#namespaces">Namespaces</a> </div>
<div class="headertitle">
<div class="title">pool_data.hpp File Reference</div> </div>
</div><!--header-->
<div class="contents">
<p>A volatile data stored along with pmemobjpool.
<a href="#details">More...</a></p>
<div class="textblock"><code>#include <atomic></code><br />
<code>#include <functional></code><br />
</div>
<p><a href="pool__data_8hpp_source.html">Go to the source code of this file.</a></p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="namespaces"></a>
Namespaces</h2></td></tr>
<tr class="memitem:namespacepmem"><td class="memItemLeft" align="right" valign="top">  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespacepmem.html">pmem</a></td></tr>
<tr class="memdesc:namespacepmem"><td class="mdescLeft"> </td><td class="mdescRight">Persistent memory namespace. <br /></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:namespacepmem_1_1detail"><td class="memItemLeft" align="right" valign="top">  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespacepmem_1_1detail.html">pmem::detail</a></td></tr>
<tr class="memdesc:namespacepmem_1_1detail"><td class="mdescLeft"> </td><td class="mdescRight">Implementation details. <br /></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>A volatile data stored along with pmemobjpool. </p>
<p>Stores cleanup function which is called on pool close. </p>
</div></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by <a href="http://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.8.20
</small></address>
</body>
</html>
| pbalcer/pbalcer.github.io | content/libpmemobj-cpp/v1.12/doxygen/pool__data_8hpp.html | HTML | bsd-3-clause | 4,928 |
<!DOCTYPE html>
<script src="test-helpers.js?pipe=sub"></script>
<script>
var SCOPE = 'fetch-mixed-content-iframe-inscope.html';
var URL = 'fetch-rewrite-worker.js';
var host_info = get_host_info();
window.addEventListener('message', on_message, false);
navigator.serviceWorker.getRegistration(SCOPE)
.then(function(registration) {
if (registration)
return registration.unregister();
})
.then(function() {
return navigator.serviceWorker.register(URL, {scope: SCOPE});
})
.then(function(registration) {
return new Promise(function(resolve) {
registration.addEventListener('updatefound', function() {
resolve(registration.installing);
});
});
})
.then(function(worker) {
worker.addEventListener('statechange', on_state_change);
});
function on_state_change(event) {
if (event.target.state != 'activated')
return;
var frame = document.createElement('iframe');
frame.src = SCOPE;
document.body.appendChild(frame);
}
function on_message(e) {
navigator.serviceWorker.getRegistration(SCOPE)
.then(function(registration) {
if (registration)
return registration.unregister();
})
.then(function() {
window.parent.postMessage(e.data, host_info['HTTP_ORIGIN']);
});
}
</script>
| hgl888/blink-crosswalk-efl | LayoutTests/http/tests/serviceworker/resources/fetch-mixed-content-iframe.html | HTML | bsd-3-clause | 1,326 |
<!--
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.
-->
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-us" xml:lang="en-us">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<meta name="copyright" content="(C) Copyright 2005" />
<meta name="DC.rights.owner" content="(C) Copyright 2005" />
<meta content="public" name="security" />
<meta content="index,follow" name="Robots" />
<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
<meta content="concept" name="DC.Type" />
<meta name="DC.Title" content="Built-in system functions" />
<meta scheme="URI" name="DC.Relation" content="crefsqlj23296.html" />
<meta scheme="URI" name="DC.Relation" content="rrefsqlj28468.html" />
<meta scheme="URI" name="DC.Relation" content="crefsqlj18919.html" />
<meta scheme="URI" name="DC.Relation" content="crefsqlj39374.html" />
<meta scheme="URI" name="DC.Relation" content="rrefclauses.html" />
<meta scheme="URI" name="DC.Relation" content="rrefsqlj19433.html" />
<meta scheme="URI" name="DC.Relation" content="rrefsqlj29840.html" />
<meta scheme="URI" name="DC.Relation" content="rrefqueries.html" />
<meta scheme="URI" name="DC.Relation" content="rrefsqlj29026.html" />
<meta scheme="URI" name="DC.Relation" content="crefsqlbuiltinsystemprocedures.html" />
<meta scheme="URI" name="DC.Relation" content="rrefsyscsdiagtables.html" />
<meta scheme="URI" name="DC.Relation" content="crefsqlj31068.html" />
<meta scheme="URI" name="DC.Relation" content="rrefsyscschecktablefunc.html" />
<meta scheme="URI" name="DC.Relation" content="rrefgetdbpropfunc.html" />
<meta scheme="URI" name="DC.Relation" content="rrefsyscsruntimestatsfunc.html" />
<meta scheme="URI" name="DC.Relation" content="rrefgetuseraccess.html" />
<meta scheme="URI" name="DC.Relation" content="rref_syscs_get_xplain_mode.html" />
<meta scheme="URI" name="DC.Relation" content="rref_syscs_get_xplain_schema.html" />
<meta content="XHTML" name="DC.Format" />
<meta content="crefsqlbuiltinsystemfunctions" name="DC.Identifier" />
<meta content="en-us" name="DC.Language" />
<link href="commonltr.css" type="text/css" rel="stylesheet" />
<title>Built-in system functions</title>
</head>
<body id="crefsqlbuiltinsystemfunctions"><a name="crefsqlbuiltinsystemfunctions"><!-- --></a>
<h1 class="topictitle1">Built-in system functions</h1>
<div>
<p>This section describes the different built-in system functions available
with <span>Derby</span>.</p>
</div>
<div>
<ul class="ullinks">
<li class="ulchildlink"><strong><a href="rrefsyscschecktablefunc.html">SYSCS_UTIL.SYSCS_CHECK_TABLE system function</a></strong><br />
</li>
<li class="ulchildlink"><strong><a href="rrefgetdbpropfunc.html">SYSCS_UTIL.SYSCS_GET_DATABASE_PROPERTY system function</a></strong><br />
</li>
<li class="ulchildlink"><strong><a href="rrefsyscsruntimestatsfunc.html">SYSCS_UTIL.SYSCS_GET_RUNTIMESTATISTICS system function</a></strong><br />
</li>
<li class="ulchildlink"><strong><a href="rrefgetuseraccess.html">SYSCS_UTIL.SYSCS_GET_USER_ACCESS system function</a></strong><br />
</li>
<li class="ulchildlink"><strong><a href="rref_syscs_get_xplain_mode.html">SYSCS_UTIL.SYSCS_GET_XPLAIN_MODE system function</a></strong><br />
</li>
<li class="ulchildlink"><strong><a href="rref_syscs_get_xplain_schema.html">SYSCS_UTIL.SYSCS_GET_XPLAIN_SCHEMA system function</a></strong><br />
</li>
</ul>
<div class="familylinks">
<div class="parentlink"><strong>Parent topic:</strong> <a href="crefsqlj23296.html" title="">SQL language reference</a></div>
</div>
<div class="relconcepts"><strong>Related concepts</strong><br />
<div><a href="crefsqlj18919.html" title="">SQL identifiers</a></div>
<div><a href="crefsqlj39374.html" title="">Statements</a></div>
<div><a href="crefsqlbuiltinsystemprocedures.html" title="">Built-in system procedures</a></div>
<div><a href="crefsqlj31068.html" title="">Data types</a></div>
</div>
<div class="relref"><strong>Related reference</strong><br />
<div><a href="rrefsqlj28468.html" title="">Capitalization and special characters</a></div>
<div><a href="rrefclauses.html" title="">SQL clauses</a></div>
<div><a href="rrefsqlj19433.html" title="Syntax for many statements and expressions includes the term Expression, or a term for a specific kind of expression such as TableSubquery. Expressions are allowed in these specified places within statements.">SQL expressions</a></div>
<div><a href="rrefsqlj29840.html" title="">JOIN operations</a></div>
<div><a href="rrefqueries.html" title="">SQL queries</a></div>
<div><a href="rrefsqlj29026.html" title="">Built-in functions</a></div>
<div><a href="rrefsyscsdiagtables.html" title="Derby provides a set of system table expressions which you can use to obtain diagnostic information about the state of the database and about the database sessions.">SYSCS_DIAG diagnostic tables and functions</a></div>
</div>
</div>
</body>
</html> | armoredsoftware/protocol | measurer/hotspot-measurer/jdk1.6.0_45/db/docs/html/ref/crefsqlbuiltinsystemfunctions.html | HTML | bsd-3-clause | 6,020 |
<h1>SDLSetAppIcon Class Reference</h1>
<h3>Section Contents</h3>
<ul>
<li><a href="#section--initWithFileName:">-initWithFileName:</a></li>
<li><a href="#section-syncFileName">syncFileName</a></li>
</ul>
<h3>Overview</h3>
<p>Used to set existing local file on SDL as the app’s icon. Not supported on
first generation SDL modules.
<p></p>
<p>Since SmartDeviceLink 2.0</p>
<section class="section task-group-section">
<h3 id="section--initWithFileName:">
-initWithFileName:
</h3>
<p>Undocumented</p>
<h4>Objective-C</h4>
<pre class="highlight objective_c"><code><span class="k">-</span> <span class="p">(</span><span class="n">instancetype</span><span class="p">)</span><span class="nf">initWithFileName</span><span class="p">:(</span><span class="n">NSString</span> <span class="o">*</span><span class="p">)</span><span class="nv">fileName</span><span class="p">;</span></code></pre>
<h4>Swift</h4>
<pre class="highlight swift"><code><span class="nf">init</span><span class="p">(</span><span class="nv">fileName</span><span class="p">:</span> <span class="kt">String</span><span class="p">)</span></code></pre>
<h3 id="section-syncFileName">
syncFileName
</h3>
<p>A file reference name
@discussion A String value representing a file reference name
<p>
<b>Notes: </b>Maxlength=500</p>
<h4>Objective-C</h4>
<pre class="highlight objective_c"><code><span class="k">@property</span> <span class="p">(</span><span class="n">readwrite</span><span class="p">,</span> <span class="n">strong</span><span class="p">,</span> <span class="n">nonatomic</span><span class="p">)</span> <span class="n">NSString</span> <span class="o">*</span><span class="n">_Nonnull</span> <span class="n">syncFileName</span><span class="p">;</span></code></pre>
<h4>Swift</h4>
<pre class="highlight swift"><code><span class="k">var</span> <span class="nv">syncFileName</span><span class="p">:</span> <span class="kt">String</span> <span class="p">{</span> <span class="k">get</span> <span class="k">set</span> <span class="p">}</span></code></pre>
</section>
| APCVSRepo/sdl_ios | docs/Classes/SDLSetAppIcon.html | HTML | bsd-3-clause | 2,157 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_112) on Thu Dec 22 22:35:29 EST 2016 -->
<title>edu.brown.cs.systems.baggage_buffers_examples Class Hierarchy</title>
<meta name="date" content="2016-12-22">
<link rel="stylesheet" type="text/css" href="../../../../../javadoc-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="edu.brown.cs.systems.baggage_buffers_examples 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>Use</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="../../../../../edu/brown/cs/systems/baggage_buffers/gen/example/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?edu/brown/cs/systems/baggage_buffers_examples/package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 class="title">Hierarchy For Package edu.brown.cs.systems.baggage_buffers_examples</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">edu.brown.cs.systems.baggage_buffers_examples.<a href="../../../../../edu/brown/cs/systems/baggage_buffers_examples/Example.html" title="class in edu.brown.cs.systems.baggage_buffers_examples"><span class="typeNameLink">Example</span></a></li>
<li type="circle">edu.brown.cs.systems.baggage_buffers_examples.<a href="../../../../../edu/brown/cs/systems/baggage_buffers_examples/TestExampleBag.html" title="class in edu.brown.cs.systems.baggage_buffers_examples"><span class="typeNameLink">TestExampleBag</span></a></li>
<li type="circle">edu.brown.cs.systems.baggage_buffers_examples.<a href="../../../../../edu/brown/cs/systems/baggage_buffers_examples/TestXTraceMetadata.html" title="class in edu.brown.cs.systems.baggage_buffers_examples"><span class="typeNameLink">TestXTraceMetadata</span></a></li>
<li type="circle">edu.brown.cs.systems.baggage_buffers_examples.<a href="../../../../../edu/brown/cs/systems/baggage_buffers_examples/XTraceExample.html" title="class in edu.brown.cs.systems.baggage_buffers_examples"><span class="typeNameLink">XTraceExample</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>Use</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="../../../../../edu/brown/cs/systems/baggage_buffers/gen/example/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?edu/brown/cs/systems/baggage_buffers_examples/package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.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>
| tracingplane/tracingplane-java | doc/javadoc/edu/brown/cs/systems/baggage_buffers_examples/package-tree.html | HTML | bsd-3-clause | 5,602 |
<!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_35) on Tue Oct 16 22:49:40 ICT 2012 -->
<TITLE>
NoOperation (Apache FOP 1.1 API)
</TITLE>
<META NAME="date" CONTENT="2012-10-16">
<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="NoOperation (Apache FOP 1.1 API)";
}
}
</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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/NoOperation.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
fop 1.1</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../org/apache/fop/afp/modca/MaximumSizeExceededException.html" title="class in org.apache.fop.afp.modca"><B>PREV CLASS</B></A>
<A HREF="../../../../../org/apache/fop/afp/modca/ObjectAreaDescriptor.html" title="class in org.apache.fop.afp.modca"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/fop/afp/modca/NoOperation.html" target="_top"><B>FRAMES</B></A>
<A HREF="NoOperation.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: <A HREF="#nested_classes_inherited_from_class_org.apache.fop.afp.modca.AbstractAFPObject">NESTED</A> | <A HREF="#fields_inherited_from_class_org.apache.fop.afp.modca.AbstractAFPObject">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
org.apache.fop.afp.modca</FONT>
<BR>
Class NoOperation</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><A HREF="../../../../../org/apache/fop/afp/modca/AbstractAFPObject.html" title="class in org.apache.fop.afp.modca">org.apache.fop.afp.modca.AbstractAFPObject</A>
<IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><B>org.apache.fop.afp.modca.NoOperation</B>
</PRE>
<DL>
<DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../../../org/apache/fop/afp/Completable.html" title="interface in org.apache.fop.afp">Completable</A>, <A HREF="../../../../../org/apache/fop/afp/Streamable.html" title="interface in org.apache.fop.afp">Streamable</A></DD>
</DL>
<HR>
<DL>
<DT><PRE>public class <B>NoOperation</B><DT>extends <A HREF="../../../../../org/apache/fop/afp/modca/AbstractAFPObject.html" title="class in org.apache.fop.afp.modca">AbstractAFPObject</A><DT>implements <A HREF="../../../../../org/apache/fop/afp/Completable.html" title="interface in org.apache.fop.afp">Completable</A></DL>
</PRE>
<P>
The No Operation structured field may be used to carry comments
or any other type of unarchitected data. Although not recommended,
it may also be used to carry semantic data in private or exchange data
streams. However, because receivers of interchange data streams should
ignore the content of No Operation structured fields and because
receiver-generator products are not required to propagate
No Operation structured fields, no semantics should be attached to
the data carried by the No Operation structured field in interchange
<P>
<P>
<HR>
<P>
<!-- ======== NESTED CLASS SUMMARY ======== -->
<A NAME="nested_class_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Nested Class Summary</B></FONT></TH>
</TR>
</TABLE>
<A NAME="nested_classes_inherited_from_class_org.apache.fop.afp.modca.AbstractAFPObject"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Nested classes/interfaces inherited from class org.apache.fop.afp.modca.<A HREF="../../../../../org/apache/fop/afp/modca/AbstractAFPObject.html" title="class in org.apache.fop.afp.modca">AbstractAFPObject</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../../../../org/apache/fop/afp/modca/AbstractAFPObject.Category.html" title="interface in org.apache.fop.afp.modca">AbstractAFPObject.Category</A>, <A HREF="../../../../../org/apache/fop/afp/modca/AbstractAFPObject.Type.html" title="interface in org.apache.fop.afp.modca">AbstractAFPObject.Type</A></CODE></TD>
</TR>
</TABLE>
<!-- =========== FIELD SUMMARY =========== -->
<A NAME="field_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Field Summary</B></FONT></TH>
</TR>
</TABLE>
<A NAME="fields_inherited_from_class_org.apache.fop.afp.modca.AbstractAFPObject"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Fields inherited from class org.apache.fop.afp.modca.<A HREF="../../../../../org/apache/fop/afp/modca/AbstractAFPObject.html" title="class in org.apache.fop.afp.modca">AbstractAFPObject</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../../../../org/apache/fop/afp/modca/AbstractAFPObject.html#LOG">LOG</A>, <A HREF="../../../../../org/apache/fop/afp/modca/AbstractAFPObject.html#SF_CLASS">SF_CLASS</A>, <A HREF="../../../../../org/apache/fop/afp/modca/AbstractAFPObject.html#SF_HEADER_LENGTH">SF_HEADER_LENGTH</A></CODE></TD>
</TR>
</TABLE>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Constructor Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../../org/apache/fop/afp/modca/NoOperation.html#NoOperation(java.lang.String)">NoOperation</A></B>(java.lang.String content)</CODE>
<BR>
Construct a tag logical element with the name and value specified.</TD>
</TR>
</TABLE>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Method Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/fop/afp/modca/NoOperation.html#isComplete()">isComplete</A></B>()</CODE>
<BR>
Returns true if this object is complete</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/fop/afp/modca/NoOperation.html#setComplete(boolean)">setComplete</A></B>(boolean complete)</CODE>
<BR>
Sets whether or not this object is complete or not</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/fop/afp/modca/NoOperation.html#toString()">toString</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/fop/afp/modca/NoOperation.html#writeToStream(java.io.OutputStream)">writeToStream</A></B>(java.io.OutputStream os)</CODE>
<BR>
Accessor method to obtain the byte array AFP datastream for the
NoOperation.</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_org.apache.fop.afp.modca.AbstractAFPObject"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class org.apache.fop.afp.modca.<A HREF="../../../../../org/apache/fop/afp/modca/AbstractAFPObject.html" title="class in org.apache.fop.afp.modca">AbstractAFPObject</A></B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../../../../org/apache/fop/afp/modca/AbstractAFPObject.html#copySF(byte[], byte, byte)">copySF</A>, <A HREF="../../../../../org/apache/fop/afp/modca/AbstractAFPObject.html#copySF(byte[], byte, byte, byte)">copySF</A>, <A HREF="../../../../../org/apache/fop/afp/modca/AbstractAFPObject.html#truncate(java.lang.String, int)">truncate</A>, <A HREF="../../../../../org/apache/fop/afp/modca/AbstractAFPObject.html#writeChunksToStream(byte[], byte[], int, int, java.io.OutputStream)">writeChunksToStream</A>, <A HREF="../../../../../org/apache/fop/afp/modca/AbstractAFPObject.html#writeObjects(java.util.Collection, java.io.OutputStream)">writeObjects</A></CODE></TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="NoOperation(java.lang.String)"><!-- --></A><H3>
NoOperation</H3>
<PRE>
public <B>NoOperation</B>(java.lang.String content)</PRE>
<DL>
<DD>Construct a tag logical element with the name and value specified.
<P>
<DL>
<DT><B>Parameters:</B><DD><CODE>content</CODE> - the content to record</DL>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Method Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="writeToStream(java.io.OutputStream)"><!-- --></A><H3>
writeToStream</H3>
<PRE>
public void <B>writeToStream</B>(java.io.OutputStream os)
throws java.io.IOException</PRE>
<DL>
<DD>Accessor method to obtain the byte array AFP datastream for the
NoOperation.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../org/apache/fop/afp/Streamable.html#writeToStream(java.io.OutputStream)">writeToStream</A></CODE> in interface <CODE><A HREF="../../../../../org/apache/fop/afp/Streamable.html" title="interface in org.apache.fop.afp">Streamable</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>os</CODE> - The outputsteam stream
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE> - if an I/O exception occurs during processing</DL>
</DD>
</DL>
<HR>
<A NAME="isComplete()"><!-- --></A><H3>
isComplete</H3>
<PRE>
public boolean <B>isComplete</B>()</PRE>
<DL>
<DD>Returns true if this object is complete
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../org/apache/fop/afp/Completable.html#isComplete()">isComplete</A></CODE> in interface <CODE><A HREF="../../../../../org/apache/fop/afp/Completable.html" title="interface in org.apache.fop.afp">Completable</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>true if this object is complete</DL>
</DD>
</DL>
<HR>
<A NAME="setComplete(boolean)"><!-- --></A><H3>
setComplete</H3>
<PRE>
public void <B>setComplete</B>(boolean complete)</PRE>
<DL>
<DD>Sets whether or not this object is complete or not
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../org/apache/fop/afp/Completable.html#setComplete(boolean)">setComplete</A></CODE> in interface <CODE><A HREF="../../../../../org/apache/fop/afp/Completable.html" title="interface in org.apache.fop.afp">Completable</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>complete</CODE> - true if this object is complete</DL>
</DD>
</DL>
<HR>
<A NAME="toString()"><!-- --></A><H3>
toString</H3>
<PRE>
public java.lang.String <B>toString</B>()</PRE>
<DL>
<DD>
<P>
<DD><DL>
<DT><B>Overrides:</B><DD><CODE>toString</CODE> in class <CODE>java.lang.Object</CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/NoOperation.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
fop 1.1</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../org/apache/fop/afp/modca/MaximumSizeExceededException.html" title="class in org.apache.fop.afp.modca"><B>PREV CLASS</B></A>
<A HREF="../../../../../org/apache/fop/afp/modca/ObjectAreaDescriptor.html" title="class in org.apache.fop.afp.modca"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/fop/afp/modca/NoOperation.html" target="_top"><B>FRAMES</B></A>
<A HREF="NoOperation.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: <A HREF="#nested_classes_inherited_from_class_org.apache.fop.afp.modca.AbstractAFPObject">NESTED</A> | <A HREF="#fields_inherited_from_class_org.apache.fop.afp.modca.AbstractAFPObject">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright 1999-2012 The Apache Software Foundation. All Rights Reserved.
</BODY>
</HTML>
| kardeiz/fop_wrapper | vendor/fop-1.1/javadocs/org/apache/fop/afp/modca/NoOperation.html | HTML | mit | 18,811 |
<h1>HTML Ipsum Presents</h1>
<p><strong>Pellentesque habitant morbi tristique</strong> senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. <em>Aenean ultricies mi vitae est.</em> Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, <code>commodo vitae</code>, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. <a href="#">Donec non enim</a> in turpis pulvinar facilisis. Ut felis.</p>
<h2>Header Level 2</h2>
<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.</p>
<blockquote>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.</blockquote>
<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.</p>
<h3>Header Level 3</h3>
<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.</p>
<pre>
#header h1 a {
display: block;
width: 300px;
height: 80px;
}
</pre>
<h4>Header Level 4</h4>
<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.</p>
<table>
<caption>Table 1. Example table</caption>
<thead>
<tr>
<th>Header 1</th>
<th>Header 2</th>
<th>Header 3</th>
<th>Header 4</th>
</tr>
</thead>
<tbody>
<tr>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
</tr>
<tr>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
</tr>
<tr>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
</tr>
</tbody>
</table>
<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.</p>
<h5>Header Level 5</h5>
<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.</p>
<ul>
<li>Morbi in sem quis dui placerat ornare. Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu. Cras consequat.</li>
<li>Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.</li>
<li>Phasellus ultrices nulla quis nibh. Quisque a lectus. Donec consectetuer ligula vulputate sem tristique cursus. Nam nulla quam, gravida non, commodo a, sodales sit amet, nisi.</li>
<li>Pellentesque fermentum dolor. Aliquam quam lectus, facilisis auctor, ultrices ut, elementum vulputate, nunc.</li>
</ul>
<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.</p>
<ol>
<li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</li>
<li>Aliquam tincidunt mauris eu risus.</li>
<li>Vestibulum auctor dapibus neque.</li>
</ol>
<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.</p>
<h6>Header Level 6</h6>
<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.</p>
<dl>
<dt>Definition list</dt>
<dd>Consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</dd>
<dt>Lorem ipsum dolor sit amet</dt>
<dd>Consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</dd>
</dl>
<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.</p>
| kaybui/kmom07 | app/view/me/typography.tpl.php.html | HTML | mit | 5,446 |
<span class="cm-tag">html</span>
<span class="cm-indent"> </span><span class="cm-tag">body</span>
<span class="cm-indent"> </span><span class="cm-keyword">include</span><span class="cm-string">:md some.md</span>
<span class="cm-indent"> </span><span class="cm-tag">script</span>
<span class="cm-indent"> </span><span class="cm-keyword">include</span><span class="cm-string">:coffee(minify=true) include-filter-coffee.coffee</span>
<span class="cm-indent"> </span><span class="cm-tag">script</span>
<span class="cm-indent"> </span><span class="cm-keyword">include</span><span class="cm-string">:coffee(minify=false) include-filter-coffee.coffee</span>
| joepie91/jade-brackets | test/expected-output/include-filter.html | HTML | mit | 671 |
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>File Formats - - Phing User Guide</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1" />
<link rel="home" href="index.html" title="Phing User Guide" />
<link rel="up" href="index.html" title="Phing User Guide" />
<link rel="prev" href="aphs02s02.html" title="Attributes" />
<link rel="next" href="BuildFileFormat.html" title="Build File Format" />
<meta name="Section-title" content="File Formats" /><script type="text/javascript">
//The id for tree cookie
var treeCookieId = "treeview-45301";
var language = "en";
var w = new Object();
//Localization
txt_filesfound = 'Results';
txt_enter_at_least_1_char = "You must enter at least one character.";
txt_browser_not_supported = "JavaScript is disabled on your browser. Please enable JavaScript to enjoy all the features of this site.";
txt_please_wait = "Please wait. Search in progress...";
txt_results_for = "Results for: ";
</script><link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="common/css/positioning.css" />
<link rel="stylesheet" type="text/css" href="common/jquery/theme-redmond/jquery-ui-1.8.2.custom.css" />
<link rel="stylesheet" type="text/css" href="common/jquery/treeview/jquery.treeview.css" /><style type="text/css">
#noscript{
font-weight:bold;
background-color: #55AA55;
font-weight: bold;
height: 25spx;
z-index: 3000;
top:0px;
width:100%;
position: relative;
border-bottom: solid 5px black;
text-align:center;
color: white;
}
input {
margin-bottom: 5px;
margin-top: 2px;
}
.folder {
display: block;
height: 22px;
padding-left: 20px;
background: transparent url(common/jquery/treeview/images/folder.gif) 0 0px no-repeat;
}
span.contentsTab {
padding-left: 20px;
background: url(common/images/toc-icon.png) no-repeat 0 center;
}
span.searchTab {
padding-left: 20px;
background: url(common/images/search-icon.png) no-repeat 0 center;
}
/* Overide jquery treeview's defaults for ul. */
.treeview ul {
background-color: transparent;
margin-top: 4px;
}
#webhelp-currentid {
background-color: #D8D8D8 !important;
}
.treeview .hover { color: black; }
.filetree li span a { text-decoration: none; font-size: 12px; color: #517291; }
/* Override jquery-ui's default css customizations. These are supposed to take precedence over those.*/
.ui-widget-content {
border: 0px;
background: none;
color: none;
}
.ui-widget-header {
color: #e9e8e9;
border-left: 1px solid #e5e5e5;
border-right: 1px solid #e5e5e5;
border-bottom: 1px solid #bbc4c5;
border-top: 4px solid #e5e5e5;
border: medium none;
background: #F4F4F4; /* old browsers */
background: -moz-linear-gradient(top, #F4F4F4 0%, #E6E4E5 100%); /* firefox */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#F4F4F4), color-stop(100%,#E6E4E5)); /* webkit */
font-weight: none;
}
.ui-widget-header a { color: none; }
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
border: none; background: none; font-weight: none; color: none; }
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: black; text-decoration: none; }
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: none; background: none; font-weight: none; color: none; }
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: none; background: none; font-weight: none; color: none; }
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
color: black; text-decoration: none;
background: #C6C6C6; /* old browsers */
background: -moz-linear-gradient(top, #C6C6C6 0%, #D8D8D8 100%); /* firefox */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#C6C6C6), color-stop(100%,#D8D8D8)); /* webkit */
-webkit-border-radius:15px; -moz-border-radius:10px;
border: 1px solid #f1f1f1;
}
.ui-corner-all { border-radius: 0 0 0 0; }
.ui-tabs { padding: .2em;}
.ui-tabs .ui-tabs-nav li { top: 0px; margin: -2px 0 1px; text-transform: uppercase; font-size: 10.5px;}
.ui-tabs .ui-tabs-nav li a { padding: .25em 2em .25em 1em; margin: .5em; text-shadow: 0 1px 0 rgba(255,255,255,.5); }
/**
* Basic Layout Theme
*
* This theme uses the default layout class-names for all classes
* Add any 'custom class-names', from options: paneClass, resizerClass, togglerClass
*/
.ui-layout-pane { /* all 'panes' */
background: #FFF;
border: 1px solid #BBB;
padding: 05x;
overflow: auto;
}
.ui-layout-resizer { /* all 'resizer-bars' */
background: #DDD;
top:100px
}
.ui-layout-toggler { /* all 'toggler-buttons' */
background: #AAA;
}
</style>
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="../common/css/ie.css"/>
<![endif]--><script type="text/javascript" src="common/browserDetect.js">
<!----></script><script type="text/javascript" src="common/jquery/jquery-1.7.2.min.js">
<!----></script><script type="text/javascript" src="common/jquery/jquery.ui.all.js">
<!----></script><script type="text/javascript" src="common/jquery/jquery.cookie.js">
<!----></script><script type="text/javascript" src="common/jquery/treeview/jquery.treeview.min.js">
<!----></script><script type="text/javascript" src="common/jquery/layout/jquery.layout.js">
<!----></script><script type="text/javascript" src="search/l10n.js">
<!----></script><script type="text/javascript" src="search/htmlFileInfoList.js">
<!----></script><script type="text/javascript" src="search/nwSearchFnt.js">
<!----></script><script type="text/javascript" src="search/stemmers/en_stemmer.js">
<!--//make this scalable to other languages as well.--></script><script type="text/javascript" src="search/index-1.js">
<!----></script><script type="text/javascript" src="search/index-2.js">
<!----></script><script type="text/javascript" src="search/index-3.js">
<!----></script></head>
<body>
<noscript>
<div id="noscript">JavaScript is disabled on your browser. Please enable JavaScript to enjoy all the features of this site.</div>
</noscript>
<div id="header"><a href="index.html"><img style="margin-right: 2px; height: 59px; padding-right: 25px; padding-top: 8px" align="right" src="common/images/logo.png" alt="DocBook Documentation" /></a><h1>Phing User Guide<br />File Formats
</h1>
<div id="navheader">
<!---->
<table class="navLinks">
<tr>
<td><a id="showHideButton" href="#" onclick="myLayout.toggle('west')" class="pointLeft" tabindex="5" title="Hide TOC tree">Sidebar
</a></td>
<td><a accesskey="p" class="navLinkPrevious" tabindex="5" href="aphs02s02.html">Prev</a>
|
<a accesskey="n" class="navLinkNext" tabindex="5" href="BuildFileFormat.html">Next</a></td>
</tr>
</table>
</div>
</div>
<div id="content">
<!---->
<div class="appendix">
<div xmlns="" class="titlepage">
<div>
<div>
<h1 xmlns="http://www.w3.org/1999/xhtml" class="title"><a id="app.fileformats"></a>File Formats
</h1>
</div>
</div>
</div>
<div class="toc">
<p><strong>Table of Contents</strong></p>
<dl class="toc">
<dt><span class="sect1"><a href="BuildFileFormat.html">Build File Format</a></span></dt>
<dt><span class="sect1"><a href="PropertyFileFormat.html">Property File Format</a></span></dt>
</dl>
</div>
</div><script type="text/javascript" src="common/main.js">
<!----></script><script type="text/javascript" src="common/splitterInit.js">
<!----></script><div class="navfooter">
<hr />
<table width="100%" summary="Navigation footer">
<tr>
<td width="40%" align="left"><a accesskey="p" href="aphs02s02.html">Prev</a>
</td>
<td width="20%" align="center"> </td>
<td width="40%" align="right"> <a accesskey="n" href="BuildFileFormat.html">Next</a></td>
</tr>
<tr>
<td width="40%" align="left" valign="top"> </td>
<td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td>
<td width="40%" align="right" valign="top"> </td>
</tr>
</table>
</div>
</div>
<div id="sidebar">
<div id="leftnavigation" style="padding-top:3px;">
<div id="tabs">
<ul>
<li><a href="#treeDiv" style="outline:0;" tabindex="1"><span class="contentsTab">Contents</span></a></li>
<li><a href="#searchDiv" style="outline:0;" tabindex="1" onclick="doSearch()"><span class="searchTab">Search</span></a></li>
</ul>
<div id="treeDiv"><img src="common/images/loading.gif" alt="loading table of contents..." id="tocLoading" style="display:block;" /><div id="ulTreeDiv" style="display:none">
<ul id="tree" class="filetree">
<li><span class="file"><a href="pr01.html" tabindex="1">Preface</a></span></li>
<li><span class="file"><a href="ch.about.html" tabindex="1">About this book</a></span><ul>
<li><span class="file"><a href="ch01s01.html" tabindex="1">Authors</a></span></li>
<li><span class="file"><a href="ch01s02.html" tabindex="1">Copyright</a></span></li>
<li><span class="file"><a href="ch01s03.html" tabindex="1">License</a></span></li>
<li><span class="file"><a href="ch01s04.html" tabindex="1">DocBook</a></span><ul>
<li><span class="file"><a href="ch01s04s01.html" tabindex="1">Building the documentation</a></span></li>
<li><span class="file"><a href="ch01s04s02.html" tabindex="1">Template for new tasks</a></span></li>
<li><span class="file"><a href="ch01s04s03.html" tabindex="1">Customization of the look & feel of the rendered outputs</a></span></li>
<li><span class="file"><a href="sec.docbookelements.html" tabindex="1">DocBook v5 elements used in the manual and their
meaning</a></span></li>
</ul>
</li>
</ul>
</li>
<li><span class="file"><a href="ch.introduction.html" tabindex="1">Introduction</a></span><ul>
<li><span class="file"><a href="ch02s01.html" tabindex="1">What Phing Is</a></span></li>
<li><span class="file"><a href="ch02s02.html" tabindex="1">Phing & Binarycloud: History</a></span></li>
<li><span class="file"><a href="ch02s03.html" tabindex="1">How Phing Works</a></span></li>
<li><span class="file"><a href="ch02s04.html" tabindex="1">Cool, so how can I help?</a></span><ul>
<li><span class="file"><a href="ch02s04s01.html" tabindex="1"> Participating in the development </a></span></li>
</ul>
</li>
</ul>
</li>
<li><span class="file"><a href="ch.settingup.html" tabindex="1">Setting-up Phing</a></span><ul>
<li><span class="file"><a href="ch03s01.html" tabindex="1"> System Requirements </a></span><ul>
<li><span class="file"><a href="ch03s01s01.html" tabindex="1"> Operating Systems </a></span></li>
<li><span class="file"><a href="ch03s01s02.html" tabindex="1"> Software Dependencies </a></span></li>
</ul>
</li>
<li><span class="file"><a href="ch03s02.html" tabindex="1"> Obtaining Phing </a></span><ul>
<li><span class="file"><a href="ch03s02s01.html" tabindex="1"> Distribution Files </a></span></li>
<li><span class="file"><a href="ch03s02s02.html" tabindex="1">Getting the latest source from Phing Git repository</a></span></li>
</ul>
</li>
<li><span class="file"><a href="ch03s03.html" tabindex="1"> PEAR Install </a></span></li>
<li><span class="file"><a href="ch03s04.html" tabindex="1"> Non-PEAR Install </a></span><ul>
<li><span class="file"><a href="ch03s04s01.html" tabindex="1"> Unix </a></span></li>
<li><span class="file"><a href="ch03s04s02.html" tabindex="1"> Windows </a></span></li>
<li><span class="file"><a href="ch03s04s03.html" tabindex="1">Advanced</a></span></li>
</ul>
</li>
<li><span class="file"><a href="ch03s05.html" tabindex="1"> Calling Phing </a></span><ul>
<li><span class="file"><a href="ch03s05s01.html" tabindex="1"> Command Line </a></span></li>
<li><span class="file"><a href="ch03s05s02.html" tabindex="1">Supported command line arguments</a></span></li>
</ul>
</li>
</ul>
</li>
<li><span class="file"><a href="ch.gettingstarted.html" tabindex="1">Getting started</a></span><ul>
<li><span class="file"><a href="ch04s01.html" tabindex="1"> XML And Phing </a></span></li>
<li><span class="file"><a href="ch04s02.html" tabindex="1"> Writing A Simple Buildfile </a></span><ul>
<li><span class="file"><a href="ch04s02s01.html" tabindex="1"> Project Element </a></span></li>
<li><span class="file"><a href="ch04s02s02.html" tabindex="1"> Target Element </a></span><ul>
<li><span class="file"><a href="ch04s02s02s01.html" tabindex="1">Target attributes</a></span></li>
</ul>
</li>
<li><span class="file"><a href="ch04s02s03.html" tabindex="1"> Task Elements </a></span></li>
<li><span class="file"><a href="ch04s02s04.html" tabindex="1"> Property Element </a></span><ul>
<li><span class="file"><a href="ch04s02s04s01.html" tabindex="1">Built-in Properties</a></span></li>
</ul>
</li>
</ul>
</li>
<li><span class="file"><a href="ch04s03.html" tabindex="1"> More Complex Buildfile </a></span><ul>
<li><span class="file"><a href="ch04s03s01.html" tabindex="1">Handling source dependencies</a></span></li>
</ul>
</li>
<li><span class="file"><a href="ch04s04.html" tabindex="1"> Relax NG Grammar </a></span></li>
</ul>
</li>
<li><span class="file"><a href="ch.projcomponents.html" tabindex="1">Project components</a></span><ul>
<li><span class="file"><a href="ch05s01.html" tabindex="1"> Projects </a></span></li>
<li><span class="file"><a href="ch05s02.html" tabindex="1"> Version </a></span></li>
<li><span class="file"><a href="ch05s03.html" tabindex="1"> Project Components in General </a></span></li>
<li><span class="file"><a href="ch05s04.html" tabindex="1"> Targets </a></span></li>
<li><span class="file"><a href="ch05s05.html" tabindex="1"> Tasks </a></span></li>
<li><span class="file"><a href="sec.types.html" tabindex="1"> Types </a></span><ul>
<li><span class="file"><a href="ch05s06s01.html" tabindex="1"> Basics </a></span></li>
<li><span class="file"><a href="ch05s06s02.html" tabindex="1"> Referencing Types </a></span></li>
</ul>
</li>
<li><span class="file"><a href="ch05s07.html" tabindex="1"> Basic Types </a></span><ul>
<li><span class="file"><a href="ch05s07s01.html" tabindex="1">
FileSet
</a></span></li>
<li><span class="file"><a href="ch05s07s02.html" tabindex="1">
FileList
</a></span></li>
<li><span class="file"><a href="ch05s07s03.html" tabindex="1">
FilterChains and Filters </a></span></li>
<li><span class="file"><a href="ch05s07s04.html" tabindex="1"> File Mappers </a></span></li>
</ul>
</li>
<li><span class="file"><a href="ch05s08.html" tabindex="1"> Conditions </a></span><ul>
<li><span class="file"><a href="ch05s08s01.html" tabindex="1">not</a></span></li>
<li><span class="file"><a href="ch05s08s02.html" tabindex="1">and</a></span></li>
<li><span class="file"><a href="ch05s08s03.html" tabindex="1">or</a></span></li>
<li><span class="file"><a href="ch05s08s04.html" tabindex="1">os</a></span></li>
<li><span class="file"><a href="ch05s08s05.html" tabindex="1">equals</a></span></li>
<li><span class="file"><a href="ch05s08s06.html" tabindex="1">isset</a></span></li>
<li><span class="file"><a href="ch05s08s07.html" tabindex="1">contains</a></span></li>
<li><span class="file"><a href="ch05s08s08.html" tabindex="1">istrue</a></span></li>
<li><span class="file"><a href="ch05s08s09.html" tabindex="1">isfalse</a></span></li>
<li><span class="file"><a href="ch05s08s10.html" tabindex="1">referenceexists</a></span></li>
<li><span class="file"><a href="ch05s08s11.html" tabindex="1">available</a></span></li>
</ul>
</li>
</ul>
</li>
<li><span class="file"><a href="ch.extending.html" tabindex="1">Extending Phing</a></span><ul>
<li><span class="file"><a href="ch06s01.html" tabindex="1"> Extension Possibilities </a></span><ul>
<li><span class="file"><a href="sect.ext.tasks.html" tabindex="1"> Tasks </a></span></li>
<li><span class="file"><a href="sect.ext.types.html" tabindex="1"> Types </a></span></li>
<li><span class="file"><a href="sect.ext.mappers.html" tabindex="1"> Mappers </a></span></li>
</ul>
</li>
<li><span class="file"><a href="ch06s02.html" tabindex="1"> Source Layout </a></span><ul>
<li><span class="file"><a href="ch06s02s01.html" tabindex="1"> Files And Directories </a></span></li>
<li><span class="file"><a href="ch06s02s02.html" tabindex="1"> File Naming Conventions </a></span></li>
<li><span class="file"><a href="ch06s02s03.html" tabindex="1"> Coding Standards </a></span></li>
</ul>
</li>
<li><span class="file"><a href="ch06s03.html" tabindex="1"> System Initialization </a></span><ul>
<li><span class="file"><a href="ch06s03s01.html" tabindex="1"> Wrapper Scripts </a></span></li>
<li><span class="file"><a href="ch06s03s02.html" tabindex="1"> The Main Application (phing.php) </a></span></li>
<li><span class="file"><a href="ch06s03s03.html" tabindex="1"> The Phing Class </a></span></li>
</ul>
</li>
<li><span class="file"><a href="ch06s04.html" tabindex="1"> System Services </a></span><ul>
<li><span class="file"><a href="ch06s04s01.html" tabindex="1"> The Exception system </a></span></li>
</ul>
</li>
<li><span class="file"><a href="ch06s05.html" tabindex="1"> Build Lifecycle </a></span><ul>
<li><span class="file"><a href="ch06s05s01.html" tabindex="1"> How Phing Parses Buildfiles </a></span></li>
</ul>
</li>
<li><span class="file"><a href="ch06s06.html" tabindex="1"> Writing Tasks </a></span><ul>
<li><span class="file"><a href="ch06s06s01.html" tabindex="1"> Creating A Task </a></span></li>
<li><span class="file"><a href="ch06s06s02.html" tabindex="1"> Using the Task </a></span></li>
<li><span class="file"><a href="ch06s06s03.html" tabindex="1">Source Discussion </a></span></li>
<li><span class="file"><a href="ch06s06s04.html" tabindex="1">Task Structure </a></span></li>
<li><span class="file"><a href="ch06s06s05.html" tabindex="1">Includes </a></span></li>
<li><span class="file"><a href="ch06s06s06.html" tabindex="1"> Class Declaration </a></span></li>
<li><span class="file"><a href="ch06s06s07.html" tabindex="1"> Class Properties </a></span></li>
<li><span class="file"><a href="ch06s06s08.html" tabindex="1"> The Constructor </a></span></li>
<li><span class="file"><a href="ch06s06s09.html" tabindex="1"> Setter Methods </a></span></li>
<li><span class="file"><a href="ch06s06s10.html" tabindex="1"> Creator Methods </a></span></li>
<li><span class="file"><a href="ch06s06s11.html" tabindex="1">
init() Method </a></span></li>
<li><span class="file"><a href="ch06s06s12.html" tabindex="1">
main() Method </a></span></li>
<li><span class="file"><a href="ch06s06s13.html" tabindex="1"> Arbitrary Methods </a></span></li>
</ul>
</li>
<li><span class="file"><a href="ch06s07.html" tabindex="1"> Writing Types </a></span><ul>
<li><span class="file"><a href="ch06s07s01.html" tabindex="1">Creating a DataType</a></span></li>
<li><span class="file"><a href="ch06s07s02.html" tabindex="1"> Using the DataType </a></span></li>
<li><span class="file"><a href="ch06s07s03.html" tabindex="1"> Source Discussion </a></span><ul>
<li><span class="file"><a href="ch06s07s03s01.html" tabindex="1">Getters & Setters</a></span></li>
<li><span class="file"><a href="ch06s07s03s02.html" tabindex="1">The getRef() Method</a></span></li>
</ul>
</li>
</ul>
</li>
<li><span class="file"><a href="ch06s08.html" tabindex="1"> Writing Mappers </a></span><ul>
<li><span class="file"><a href="ch06s08s01.html" tabindex="1"> Creating a Mapper </a></span></li>
<li><span class="file"><a href="ch06s08s02.html" tabindex="1"> Using the Mapper </a></span></li>
</ul>
</li>
</ul>
</li>
<li><span class="file"><a href="app.factsheet.html" tabindex="1">Fact Sheet</a></span><ul>
<li><span class="file"><a href="sec.builtinprops.html" tabindex="1">Built-In Properties</a></span></li>
<li><span class="file"><a href="sec.commandlineargs.html" tabindex="1"> Command Line Arguments </a></span></li>
<li><span class="file"><a href="apas03.html" tabindex="1"> Distribution File Layout </a></span></li>
<li><span class="file"><a href="sec.exitcodes.html" tabindex="1">Program Exit Codes</a></span></li>
<li><span class="file"><a href="sec.lgpl.html" tabindex="1">The LGPL License</a></span></li>
<li><span class="file"><a href="sec.gfdl.html" tabindex="1">The GFDL License</a></span></li>
</ul>
</li>
<li><span class="file"><a href="app.coretasks.html" tabindex="1">Core tasks</a></span><ul>
<li><span class="file"><a href="AdhocTaskdefTask.html" tabindex="1">AdhocTaskdefTask </a></span><ul>
<li><span class="file"><a href="apbs01s01.html" tabindex="1">Examples</a></span></li>
</ul>
</li>
<li><span class="file"><a href="AdhocTypedefTask.html" tabindex="1">AdhocTypedefTask </a></span><ul>
<li><span class="file"><a href="apbs02s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="AppendTask.html" tabindex="1">AppendTask </a></span><ul>
<li><span class="file"><a href="apbs03s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apbs03s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="ApplyTask.html" tabindex="1">ApplyTask </a></span><ul>
<li><span class="file"><a href="apbs04s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apbs04s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="AvailableTask.html" tabindex="1">AvailableTask </a></span><ul>
<li><span class="file"><a href="apbs05s01.html" tabindex="1">Examples</a></span></li>
</ul>
</li>
<li><span class="file"><a href="ChmodTask.html" tabindex="1">ChmodTask </a></span><ul>
<li><span class="file"><a href="apbs06s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apbs06s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="ChownTask.html" tabindex="1">ChownTask </a></span><ul>
<li><span class="file"><a href="apbs07s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apbs07s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="ConditionTask.html" tabindex="1">ConditionTask </a></span><ul>
<li><span class="file"><a href="apbs08s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apbs08s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="CopyTask.html" tabindex="1">CopyTask </a></span><ul>
<li><span class="file"><a href="apbs09s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apbs09s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="CvsTask.html" tabindex="1">CvsTask </a></span><ul>
<li><span class="file"><a href="apbs10s01.html" tabindex="1">Examples</a></span></li>
</ul>
</li>
<li><span class="file"><a href="CvsPassTask.html" tabindex="1">CvsPassTask </a></span><ul>
<li><span class="file"><a href="apbs11s01.html" tabindex="1">Examples</a></span></li>
</ul>
</li>
<li><span class="file"><a href="DeleteTask.html" tabindex="1"> DeleteTask </a></span><ul>
<li><span class="file"><a href="apbs12s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apbs12s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="EchoTask.html" tabindex="1">EchoTask </a></span><ul>
<li><span class="file"><a href="apbs13s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apbs13s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="ExecTask.html" tabindex="1">ExecTask </a></span><ul>
<li><span class="file"><a href="apbs14s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apbs14s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="FailTask.html" tabindex="1">FailTask </a></span><ul>
<li><span class="file"><a href="apbs15s01.html" tabindex="1">Examples</a></span></li>
</ul>
</li>
<li><span class="file"><a href="ForeachTask.html" tabindex="1">ForeachTask </a></span><ul>
<li><span class="file"><a href="apbs16s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apbs16s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="IfTask.html" tabindex="1">IfTask </a></span><ul>
<li><span class="file"><a href="apbs17s01.html" tabindex="1">Examples</a></span></li>
</ul>
</li>
<li><span class="file"><a href="ImportTask.html" tabindex="1">ImportTask </a></span><ul>
<li><span class="file"><a href="apbs18s01.html" tabindex="1">Target Overriding</a></span></li>
<li><span class="file"><a href="apbs18s02.html" tabindex="1">Special Properties</a></span></li>
<li><span class="file"><a href="apbs18s03.html" tabindex="1">Resolving Files Against the Imported File</a></span></li>
<li><span class="file"><a href="apbs18s04.html" tabindex="1">Examples</a></span></li>
</ul>
</li>
<li><span class="file"><a href="IncludePathTask.html" tabindex="1">IncludePathTask </a></span><ul>
<li><span class="file"><a href="apbs19s01.html" tabindex="1">Examples</a></span></li>
</ul>
</li>
<li><span class="file"><a href="InputTask.html" tabindex="1">InputTask </a></span><ul>
<li><span class="file"><a href="apbs20s01.html" tabindex="1">Examples</a></span></li>
</ul>
</li>
<li><span class="file"><a href="LoadFileTask.html" tabindex="1">LoadFileTask </a></span><ul>
<li><span class="file"><a href="apbs21s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apbs21s02.html" tabindex="1">Supported Nested Tags:</a></span></li>
</ul>
</li>
<li><span class="file"><a href="MkdirTask.html" tabindex="1">MkdirTask </a></span><ul>
<li><span class="file"><a href="apbs22s01.html" tabindex="1">Examples</a></span></li>
</ul>
</li>
<li><span class="file"><a href="MoveTask.html" tabindex="1">MoveTask </a></span><ul>
<li><span class="file"><a href="apbs23s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apbs23s02.html" tabindex="1">Attributes and Nested Elements</a></span></li>
</ul>
</li>
<li><span class="file"><a href="PhingTask.html" tabindex="1">PhingTask </a></span><ul>
<li><span class="file"><a href="apbs24s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apbs24s02.html" tabindex="1">Supported Nested Tags</a></span></li>
<li><span class="file"><a href="apbs24s03.html" tabindex="1">Base directory of the new project</a></span></li>
</ul>
</li>
<li><span class="file"><a href="PhingCallTask.html" tabindex="1">PhingCallTask </a></span><ul>
<li><span class="file"><a href="apbs25s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apbs25s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="PhpEvalTask.html" tabindex="1">PhpEvalTask </a></span><ul>
<li><span class="file"><a href="apbs26s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apbs26s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="PropertyTask.html" tabindex="1">PropertyTask </a></span><ul>
<li><span class="file"><a href="apbs27s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apbs27s02.html" tabindex="1">Supported Nested Tags:</a></span></li>
</ul>
</li>
<li><span class="file"><a href="PropertyPromptTask.html" tabindex="1">PropertyPromptTask </a></span><ul>
<li><span class="file"><a href="apbs28s01.html" tabindex="1">Examples</a></span></li>
</ul>
</li>
<li><span class="file"><a href="ReflexiveTask.html" tabindex="1">ReflexiveTask </a></span><ul>
<li><span class="file"><a href="apbs29s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apbs29s02.html" tabindex="1">Supported Nested Tags:</a></span></li>
</ul>
</li>
<li><span class="file"><a href="ResolvePathTask.html" tabindex="1">ResolvePathTask </a></span><ul>
<li><span class="file"><a href="apbs30s01.html" tabindex="1">Examples</a></span></li>
</ul>
</li>
<li><span class="file"><a href="TaskdefTask.html" tabindex="1">TaskdefTask </a></span><ul>
<li><span class="file"><a href="apbs31s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apbs31s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="TouchTask.html" tabindex="1">TouchTask </a></span><ul>
<li><span class="file"><a href="apbs32s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apbs32s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="TryCatchTask.html" tabindex="1">TryCatchTask</a></span><ul>
<li><span class="file"><a href="apbs33s01.html" tabindex="1">Examples</a></span></li>
</ul>
</li>
<li><span class="file"><a href="TstampTask.html" tabindex="1">TstampTask </a></span><ul>
<li><span class="file"><a href="apbs34s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apbs34s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="TypedefTask.html" tabindex="1">TypedefTask </a></span><ul>
<li><span class="file"><a href="apbs35s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apbs35s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="UpToDateTask.html" tabindex="1">UpToDateTask </a></span><ul>
<li><span class="file"><a href="apbs36s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apbs36s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="WaitForTask.html" tabindex="1">WaitForTask</a></span><ul>
<li><span class="file"><a href="apbs37s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apbs37s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="XsltTask.html" tabindex="1">XsltTask </a></span><ul>
<li><span class="file"><a href="apbs38s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apbs38s02.html" tabindex="1">Supported Nested Elements</a></span></li>
</ul>
</li>
</ul>
</li>
<li><span class="file"><a href="app.optionaltasks.html" tabindex="1">Optional tasks</a></span><ul>
<li><span class="file"><a href="ApiGenTask.html" tabindex="1">ApiGenTask</a></span><ul>
<li><span class="file"><a href="apcs01s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="CoverageMergerTask.html" tabindex="1">CoverageMergerTask</a></span><ul>
<li><span class="file"><a href="apcs02s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs02s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="CoverageReportTask.html" tabindex="1">CoverageReportTask</a></span><ul>
<li><span class="file"><a href="apcs03s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs03s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="CoverageSetupTask.html" tabindex="1">CoverageSetupTask</a></span><ul>
<li><span class="file"><a href="apcs04s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs04s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="CoverageThresholdTask.html" tabindex="1">CoverageThresholdTask</a></span><ul>
<li><span class="file"><a href="apcs05s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs05s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="DbDeployTask.html" tabindex="1">DbDeployTask</a></span><ul>
<li><span class="file"><a href="apcs06s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="DocBloxTask.html" tabindex="1">DocBloxTask</a></span><ul>
<li><span class="file"><a href="apcs07s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs07s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="ExportPropertiesTask.html" tabindex="1">ExportPropertiesTask</a></span><ul>
<li><span class="file"><a href="apcs08s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="FileHashTask.html" tabindex="1">FileHashTask</a></span><ul>
<li><span class="file"><a href="apcs09s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="FileSizeTask.html" tabindex="1">FileSizeTask</a></span><ul>
<li><span class="file"><a href="apcs10s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="FileSyncTask.html" tabindex="1">FileSyncTask</a></span><ul>
<li><span class="file"><a href="apcs11s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="FtpDeployTask.html" tabindex="1">FtpDeployTask</a></span><ul>
<li><span class="file"><a href="apcs12s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs12s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="GitInitTask.html" tabindex="1">GitInitTask</a></span><ul>
<li><span class="file"><a href="apcs13s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="GitCloneTask.html" tabindex="1">GitCloneTask</a></span><ul>
<li><span class="file"><a href="apcs14s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="GitGcTask.html" tabindex="1">GitGcTask</a></span><ul>
<li><span class="file"><a href="apcs15s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="GitBranchTask.html" tabindex="1">GitBranchTask</a></span><ul>
<li><span class="file"><a href="apcs16s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="GitFetchTask.html" tabindex="1">GitFetchTask</a></span><ul>
<li><span class="file"><a href="apcs17s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="GitCheckoutTask.html" tabindex="1">GitCheckoutTask</a></span><ul>
<li><span class="file"><a href="apcs18s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="GitCommitTask.html" tabindex="1">GitCommitTask</a></span><ul>
<li><span class="file"><a href="apcs19s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs19s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="GitMergeTask.html" tabindex="1">GitMergeTask</a></span><ul>
<li><span class="file"><a href="apcs20s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="GitPullTask.html" tabindex="1">GitPullTask</a></span><ul>
<li><span class="file"><a href="apcs21s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="GitPushTask.html" tabindex="1">GitPushTask</a></span><ul>
<li><span class="file"><a href="apcs22s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="GitTagTask.html" tabindex="1">GitTagTask</a></span><ul>
<li><span class="file"><a href="apcs23s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="GitLogTask.html" tabindex="1">GitLogTask</a></span><ul>
<li><span class="file"><a href="apcs24s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="GrowlNotifyTask.html" tabindex="1">GrowlNotifyTask</a></span><ul>
<li><span class="file"><a href="apcs25s01.html" tabindex="1">Examples</a></span></li>
</ul>
</li>
<li><span class="file"><a href="HttpGetTask.html" tabindex="1">HttpGetTask</a></span><ul>
<li><span class="file"><a href="apcs26s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs26s02.html" tabindex="1">Supported Nested Tags</a></span></li>
<li><span class="file"><a href="apcs26s03.html" tabindex="1">Global configuration</a></span></li>
</ul>
</li>
<li><span class="file"><a href="HttpRequestTask.html" tabindex="1">HttpRequestTask</a></span><ul>
<li><span class="file"><a href="apcs27s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs27s02.html" tabindex="1">Supported Nested Tags</a></span></li>
<li><span class="file"><a href="apcs27s03.html" tabindex="1">Global configuration</a></span></li>
</ul>
</li>
<li><span class="file"><a href="IoncubeEncoderTask.html" tabindex="1">IoncubeEncoderTask</a></span><ul>
<li><span class="file"><a href="apcs28s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs28s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="IoncubeLicenseTask.html" tabindex="1">IoncubeLicenseTask</a></span><ul>
<li><span class="file"><a href="apcs29s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs29s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="JslLintTask.html" tabindex="1">JslLintTask</a></span><ul>
<li><span class="file"><a href="apcs30s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs30s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="JsMinTask.html" tabindex="1">JsMinTask</a></span><ul>
<li><span class="file"><a href="apcs31s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs31s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="LiquibaseTask.html" tabindex="1">LiquibaseTask</a></span><ul>
<li><span class="file"><a href="apcs32s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs32s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="LiquibaseChangeLogTask.html" tabindex="1">LiquibaseChangeLogTask</a></span><ul>
<li><span class="file"><a href="apcs33s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs33s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="LiquibaseDbDocTask.html" tabindex="1">LiquibaseDbDocTask</a></span><ul>
<li><span class="file"><a href="apcs34s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs34s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="LiquibaseDiffTask.html" tabindex="1">LiquibaseDiffTask</a></span><ul>
<li><span class="file"><a href="apcs35s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs35s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="LiquibaseRollbackTask.html" tabindex="1">LiquibaseRollbackTask</a></span><ul>
<li><span class="file"><a href="apcs36s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs36s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="LiquibaseTagTask.html" tabindex="1">LiquibaseTagTask</a></span><ul>
<li><span class="file"><a href="apcs37s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs37s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="LiquibaseUpdateTask.html" tabindex="1">LiquibaseUpdateTask</a></span><ul>
<li><span class="file"><a href="apcs38s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs38s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="MailTask.html" tabindex="1">MailTask</a></span><ul>
<li><span class="file"><a href="apcs39s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs39s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="ParallelTask.html" tabindex="1">ParallelTask</a></span><ul>
<li><span class="file"><a href="apcs40s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="PatchTask.html" tabindex="1">PatchTask</a></span><ul>
<li><span class="file"><a href="apcs41s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="PDOSQLExecTask.html" tabindex="1">PDOSQLExecTask</a></span><ul>
<li><span class="file"><a href="apcs42s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs42s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="PearPackageTask.html" tabindex="1">PearPackageTask</a></span><ul>
<li><span class="file"><a href="apcs43s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs43s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="PearPackage2Task.html" tabindex="1">PearPackage2Task</a></span><ul>
<li><span class="file"><a href="apcs44s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs44s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="PharPackageTask.html" tabindex="1">PharPackageTask</a></span><ul>
<li><span class="file"><a href="apcs45s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs45s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="PhkPackageTask.html" tabindex="1">PhkPackageTask</a></span><ul>
<li><span class="file"><a href="apcs46s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs46s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="PhpCodeSnifferTask.html" tabindex="1">PhpCodeSnifferTask</a></span><ul>
<li><span class="file"><a href="apcs47s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apcs47s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="PHPCPDTask.html" tabindex="1">PHPCPDTask</a></span><ul>
<li><span class="file"><a href="apcs48s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apcs48s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="PHPLocTask.html" tabindex="1">PHPLocTask</a></span><ul>
<li><span class="file"><a href="apcs49s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apcs49s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="PHPMDTask.html" tabindex="1">PHPMDTask</a></span><ul>
<li><span class="file"><a href="apcs50s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs50s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="PhpDependTask.html" tabindex="1">PhpDependTask</a></span><ul>
<li><span class="file"><a href="apcs51s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs51s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="PhpDocumentorTask.html" tabindex="1">PhpDocumentorTask</a></span><ul>
<li><span class="file"><a href="apcs52s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs52s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="PhpDocumentor2Task.html" tabindex="1">PhpDocumentor2Task</a></span><ul>
<li><span class="file"><a href="apcs53s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs53s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="PhpDocumentorExternalTask.html" tabindex="1">PhpDocumentorExternalTask</a></span><ul>
<li><span class="file"><a href="apcs54s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="PhpLintTask.html" tabindex="1">PhpLintTask</a></span><ul>
<li><span class="file"><a href="apcs55s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs55s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="PHPUnitTask.html" tabindex="1">PHPUnitTask</a></span><ul>
<li><span class="file"><a href="apcs56s01.html" tabindex="1">Supported Nested Tags</a></span></li>
<li><span class="file"><a href="apcs56s02.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs56s03.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="PHPUnitReport.html" tabindex="1">PHPUnitReport</a></span><ul>
<li><span class="file"><a href="apcs57s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="rSTTask.html" tabindex="1">rSTTask</a></span><ul>
<li><span class="file"><a href="apcs58s01.html" tabindex="1">Features</a></span></li>
<li><span class="file"><a href="apcs58s02.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apcs58s03.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="S3PutTask.html" tabindex="1">S3PutTask</a></span><ul>
<li><span class="file"><a href="apcs59s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs59s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="S3GetTask.html" tabindex="1">S3GetTask</a></span><ul>
<li><span class="file"><a href="apcs60s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="ScpTask.html" tabindex="1">ScpTask</a></span><ul>
<li><span class="file"><a href="apcs61s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs61s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="SshTask.html" tabindex="1">SshTask</a></span><ul>
<li><span class="file"><a href="apcs62s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs62s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="SimpleTestTask.html" tabindex="1">SimpleTestTask</a></span><ul>
<li><span class="file"><a href="apcs63s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs63s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="SvnCheckoutTask.html" tabindex="1">SvnCheckoutTask</a></span><ul>
<li><span class="file"><a href="apcs64s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="SvnCommitTask.html" tabindex="1">SvnCommitTask</a></span><ul>
<li><span class="file"><a href="apcs65s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="SvnCopyTask.html" tabindex="1">SvnCopyTask</a></span><ul>
<li><span class="file"><a href="apcs66s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="SvnExportTask.html" tabindex="1">SvnExportTask</a></span><ul>
<li><span class="file"><a href="apcs67s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="SvnInfoTask.html" tabindex="1">SvnInfoTask</a></span><ul>
<li><span class="file"><a href="apcs68s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="SvnLastRevisionTask.html" tabindex="1">SvnLastRevisionTask</a></span><ul>
<li><span class="file"><a href="apcs69s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="SvnListTask.html" tabindex="1">SvnListTask</a></span><ul>
<li><span class="file"><a href="apcs70s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="SvnLogTask.html" tabindex="1">SvnLogTask</a></span><ul>
<li><span class="file"><a href="apcs71s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="SvnUpdateTask.html" tabindex="1">SvnUpdateTask</a></span><ul>
<li><span class="file"><a href="apcs72s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="SvnSwitchTask.html" tabindex="1">SvnSwitchTask</a></span><ul>
<li><span class="file"><a href="apcs73s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="SymfonyConsoleTask.html" tabindex="1">SymfonyConsoleTask</a></span><ul>
<li><span class="file"><a href="apcs74s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apcs74s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="SymlinkTask.html" tabindex="1">SymlinkTask</a></span><ul>
<li><span class="file"><a href="apcs75s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs75s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="TarTask.html" tabindex="1">TarTask</a></span><ul>
<li><span class="file"><a href="apcs76s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs76s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="UntarTask.html" tabindex="1">UntarTask</a></span><ul>
<li><span class="file"><a href="apcs77s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs77s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="UnzipTask.html" tabindex="1">UnzipTask</a></span><ul>
<li><span class="file"><a href="apcs78s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs78s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="VersionTask.html" tabindex="1">VersionTask</a></span><ul>
<li><span class="file"><a href="apcs79s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="WikiPublishTask.html" tabindex="1">WikiPublishTask</a></span><ul>
<li><span class="file"><a href="apcs80s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="XmlLintTask.html" tabindex="1">XmlLintTask</a></span><ul>
<li><span class="file"><a href="apcs81s01.html" tabindex="1">Examples</a></span></li>
<li><span class="file"><a href="apcs81s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="XmlPropertyTask.html" tabindex="1">XmlPropertyTask</a></span><ul>
<li><span class="file"><a href="apcs82s01.html" tabindex="1">Example</a></span></li>
</ul>
</li>
<li><span class="file"><a href="ZendCodeAnalyzerTask.html" tabindex="1">ZendCodeAnalyzerTask</a></span><ul>
<li><span class="file"><a href="apcs83s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs83s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="ZendGuardEncodeTask.html" tabindex="1">ZendGuardEncodeTask</a></span><ul>
<li><span class="file"><a href="apcs84s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs84s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="ZendGuardLicenseTask.html" tabindex="1">ZendGuardLicenseTask</a></span><ul>
<li><span class="file"><a href="apcs85s01.html" tabindex="1">Examples</a></span></li>
</ul>
</li>
<li><span class="file"><a href="ZipTask.html" tabindex="1">ZipTask</a></span><ul>
<li><span class="file"><a href="apcs86s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="apcs86s02.html" tabindex="1">Supported Nested Tags</a></span></li>
</ul>
</li>
</ul>
</li>
<li><span class="file"><a href="app.coretypes.html" tabindex="1">Core Types</a></span><ul>
<li><span class="file"><a href="Excludes.html" tabindex="1">Excludes</a></span><ul>
<li><span class="file"><a href="apds01s01.html" tabindex="1">Nested tags</a></span></li>
<li><span class="file"><a href="apds01s02.html" tabindex="1">Usage Examples</a></span></li>
</ul>
</li>
<li><span class="file"><a href="FileList.html" tabindex="1">FileList</a></span><ul>
<li><span class="file"><a href="apds02s01.html" tabindex="1">Usage Examples</a></span></li>
</ul>
</li>
<li><span class="file"><a href="FileSet.html" tabindex="1">FileSet</a></span><ul>
<li><span class="file"><a href="apds03s01.html" tabindex="1">Using wildcards</a></span></li>
<li><span class="file"><a href="apds03s02.html" tabindex="1">Usage Examples</a></span></li>
<li><span class="file"><a href="apds03s03.html" tabindex="1">Nested tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="PatternSet.html" tabindex="1">PatternSet </a></span><ul>
<li><span class="file"><a href="apds04s01.html" tabindex="1">Usage Example</a></span></li>
<li><span class="file"><a href="apds04s02.html" tabindex="1">Nested tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="path.html" tabindex="1">Path / Classpath</a></span><ul>
<li><span class="file"><a href="apds05s01.html" tabindex="1">Nested tags</a></span></li>
</ul>
</li>
</ul>
</li>
<li><span class="file"><a href="app.corefilters.html" tabindex="1">Core filters</a></span><ul>
<li><span class="file"><a href="PhingFilterReader.html" tabindex="1">PhingFilterReader</a></span><ul>
<li><span class="file"><a href="apes01s01.html" tabindex="1">Nested tags</a></span></li>
<li><span class="file"><a href="apes01s02.html" tabindex="1">Advanced</a></span></li>
</ul>
</li>
<li><span class="file"><a href="ExpandProperties.html" tabindex="1">ExpandProperties</a></span></li>
<li><span class="file"><a href="HeadFilter.html" tabindex="1">HeadFilter</a></span></li>
<li><span class="file"><a href="IconvFilter.html" tabindex="1">IconvFilter</a></span></li>
<li><span class="file"><a href="LineContains.html" tabindex="1">Line Contains </a></span><ul>
<li><span class="file"><a href="apes05s01.html" tabindex="1">Nested tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="LineContainsRegexp.html" tabindex="1">LineContainsRegexp</a></span><ul>
<li><span class="file"><a href="apes06s01.html" tabindex="1">Nested tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="PrefixLines.html" tabindex="1">PrefixLines</a></span></li>
<li><span class="file"><a href="ReplaceTokens.html" tabindex="1">ReplaceTokens</a></span><ul>
<li><span class="file"><a href="apes08s01.html" tabindex="1">Nested tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="ReplaceTokensWithFile.html" tabindex="1">ReplaceTokensWithFile</a></span><ul>
<li><span class="file"><a href="apes09s01.html" tabindex="1">Nested tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="ReplaceRegexp.html" tabindex="1">ReplaceRegexp</a></span><ul>
<li><span class="file"><a href="apes10s01.html" tabindex="1">Nested tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="StripLineBreaks.html" tabindex="1">StripLineBreaks</a></span></li>
<li><span class="file"><a href="StripLineComments.html" tabindex="1">StripLineComments</a></span><ul>
<li><span class="file"><a href="apes12s01.html" tabindex="1">Nested tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="StripPhpComments.html" tabindex="1">StripPhpComments</a></span></li>
<li><span class="file"><a href="StripWhitespace.html" tabindex="1">StripWhitespace</a></span></li>
<li><span class="file"><a href="TabToSpaces.html" tabindex="1">TabToSpaces</a></span></li>
<li><span class="file"><a href="TailFilter.html" tabindex="1">TailFilter</a></span></li>
<li><span class="file"><a href="TidyFilter.html" tabindex="1">TidyFilter</a></span><ul>
<li><span class="file"><a href="apes17s01.html" tabindex="1">Nested tags</a></span></li>
</ul>
</li>
<li><span class="file"><a href="XincludeFilter.html" tabindex="1">XincludeFilter</a></span></li>
<li><span class="file"><a href="XsltFilter.html" tabindex="1">XsltFilter</a></span><ul>
<li><span class="file"><a href="apes19s01.html" tabindex="1">Nested tags</a></span></li>
</ul>
</li>
</ul>
</li>
<li><span class="file"><a href="app.coremappers.html" tabindex="1">Core mappers</a></span><ul>
<li><span class="file"><a href="apfs01.html" tabindex="1">Common Attributes</a></span></li>
<li><span class="file"><a href="FlattenMapper.html" tabindex="1">FlattenMapper </a></span><ul>
<li><span class="file"><a href="apfs02s01.html" tabindex="1">Examples</a></span></li>
</ul>
</li>
<li><span class="file"><a href="GlobMapper.html" tabindex="1">GlobMapper </a></span><ul>
<li><span class="file"><a href="apfs03s01.html" tabindex="1">Examples</a></span></li>
</ul>
</li>
<li><span class="file"><a href="IdentityMapper.html" tabindex="1">IdentityMapper </a></span></li>
<li><span class="file"><a href="MergeMapper.html" tabindex="1">MergeMapper </a></span><ul>
<li><span class="file"><a href="apfs05s01.html" tabindex="1">Examples</a></span></li>
</ul>
</li>
<li><span class="file"><a href="RegexpMapper.html" tabindex="1">RegexpMapper </a></span><ul>
<li><span class="file"><a href="apfs06s01.html" tabindex="1">Examples</a></span></li>
</ul>
</li>
</ul>
</li>
<li><span class="file"><a href="app.selectors.html" tabindex="1">Core selectors</a></span><ul>
<li><span class="file"><a href="Contains.html" tabindex="1">Contains </a></span></li>
<li><span class="file"><a href="Date.html" tabindex="1">Date</a></span></li>
<li><span class="file"><a href="Depend.html" tabindex="1">Depend</a></span></li>
<li><span class="file"><a href="Depth.html" tabindex="1">Depth</a></span></li>
<li><span class="file"><a href="Filename.html" tabindex="1">Filename </a></span></li>
<li><span class="file"><a href="Present.html" tabindex="1">Present</a></span></li>
<li><span class="file"><a href="Containsregexp.html" tabindex="1">Containsregexp</a></span></li>
<li><span class="file"><a href="Size.html" tabindex="1">Size</a></span></li>
<li><span class="file"><a href="Type.html" tabindex="1">Type </a></span></li>
<li><span class="file"><a href="And.html" tabindex="1">And </a></span></li>
<li><span class="file"><a href="Majority.html" tabindex="1">Majority</a></span></li>
<li><span class="file"><a href="None.html" tabindex="1">None </a></span></li>
<li><span class="file"><a href="Not.html" tabindex="1">Not</a></span></li>
<li><span class="file"><a href="Or.html" tabindex="1">Or</a></span></li>
<li><span class="file"><a href="Selector.html" tabindex="1">Selector </a></span></li>
</ul>
</li>
<li><span class="file"><a href="app.projcomponents.html" tabindex="1">Project Components</a></span><ul>
<li><span class="file"><a href="Project.html" tabindex="1">Phing Projects</a></span><ul>
<li><span class="file"><a href="aphs01s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="aphs01s02.html" tabindex="1">Attributes</a></span></li>
</ul>
</li>
<li><span class="file"><a href="Target.html" tabindex="1">Targets</a></span><ul>
<li><span class="file"><a href="aphs02s01.html" tabindex="1">Example</a></span></li>
<li><span class="file"><a href="aphs02s02.html" tabindex="1">Attributes</a></span></li>
</ul>
</li>
</ul>
</li>
<li id="webhelp-currentid"><span class="file"><a href="app.fileformats.html" tabindex="1">File Formats</a></span><ul>
<li><span class="file"><a href="BuildFileFormat.html" tabindex="1">Build File Format</a></span></li>
<li><span class="file"><a href="PropertyFileFormat.html" tabindex="1">Property File Format</a></span></li>
</ul>
</li>
<li><span class="file"><a href="app.bibliography.html" tabindex="1">Bibliography</a></span><ul>
<li><span class="file"><a href="app.bibliography.html#InternationalStandards" tabindex="1">International Standards</a></span></li>
<li><span class="file"><a href="app.bibliography.html#Licenses" tabindex="1">Licenses</a></span></li>
<li><span class="file"><a href="app.bibliography.html#os-projects" tabindex="1">Open Source Projects</a></span></li>
<li><span class="file"><a href="app.bibliography.html#Manuals" tabindex="1">Manuals</a></span></li>
<li><span class="file"><a href="app.bibliography.html#OtherResources" tabindex="1">Other Resources</a></span></li>
</ul>
</li>
</ul>
</div>
</div>
<div id="searchDiv">
<div id="search">
<form onsubmit="Verifie(searchForm);return false" name="searchForm" class="searchForm">
<div><input id="textToSearch" name="textToSearch" type="search" placeholder="Search" class="searchText" tabindex="1" /> <input onclick="Verifie(searchForm)" type="button" class="searchButton" value="Go" id="doSearch" tabindex="1" /></div>
</form>
</div>
<div id="searchResults">
<center></center>
</div>
<p class="searchHighlight"><a href="#" onclick="toggleHighlight()">Search Highlighter (On/Off)</a></p>
</div>
</div>
</div>
</div>
</body>
</html> | ghostnc/symfony-project | vendor/phing/phing/docs/docbook5/en/output/webhelp/app.fileformats.html | HTML | mit | 92,619 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML
><HEAD
><TITLE
>Loop Control</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
REL="HOME"
TITLE="Advanced Bash-Scripting Guide"
HREF="index.html"><LINK
REL="UP"
TITLE="Loops and Branches"
HREF="loops.html"><LINK
REL="PREVIOUS"
TITLE="Nested Loops"
HREF="nestedloops.html"><LINK
REL="NEXT"
TITLE="Testing and Branching"
HREF="testbranch.html"></HEAD
><BODY
CLASS="SECT1"
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#0000FF"
VLINK="#840084"
ALINK="#0000FF"
><DIV
CLASS="NAVHEADER"
><TABLE
SUMMARY="Header navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="3"
ALIGN="center"
>Advanced Bash-Scripting Guide: </TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="nestedloops.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
>Chapter 11. Loops and Branches</TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="testbranch.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><DIV
CLASS="SECT1"
><H1
CLASS="SECT1"
><A
NAME="LOOPCONTROL"
></A
>11.3. Loop Control</H1
><TABLE
BORDER="0"
WIDTH="100%"
CELLSPACING="0"
CELLPADDING="0"
CLASS="EPIGRAPH"
><TR
><TD
WIDTH="45%"
> </TD
><TD
WIDTH="45%"
ALIGN="LEFT"
VALIGN="TOP"
><I
><P
><I
>Tournez cent tours, tournez mille tours,</I
></P
><P
><I
>Tournez souvent et tournez toujours . . .</I
></P
><P
><I
>--Verlaine, <SPAN
CLASS="QUOTE"
>"Chevaux de bois"</SPAN
></I
></P
></I
></TD
></TR
></TABLE
><P
></P
><DIV
CLASS="VARIABLELIST"
><P
><B
><A
NAME="BRKCONT1"
></A
>Commands affecting loop behavior</B
></P
><DL
><DT
><B
CLASS="COMMAND"
>break</B
>, <B
CLASS="COMMAND"
>continue</B
></DT
><DD
><P
>The <B
CLASS="COMMAND"
>break</B
> and <B
CLASS="COMMAND"
>continue</B
>
loop control commands
<A
NAME="AEN6952"
HREF="#FTN.AEN6952"
><SPAN
CLASS="footnote"
>[1]</SPAN
></A
>
correspond exactly to their counterparts in other
programming languages. The <B
CLASS="COMMAND"
>break</B
>
command terminates the loop (<EM
>breaks</EM
>
out of it), while <B
CLASS="COMMAND"
>continue</B
> causes a jump
to the next <A
HREF="loops1.html#ITERATIONREF"
>iteration</A
>
of the loop, skipping all the remaining commands in that
particular loop cycle.</P
><DIV
CLASS="EXAMPLE"
><A
NAME="EX28"
></A
><P
><B
>Example 11-20. Effects of <I
CLASS="FIRSTTERM"
>break</I
> and
<B
CLASS="COMMAND"
>continue</B
> in a loop</B
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="90%"
><TR
><TD
><FONT
COLOR="#000000"
><PRE
CLASS="PROGRAMLISTING"
>#!/bin/bash
LIMIT=19 # Upper limit
echo
echo "Printing Numbers 1 through 20 (but not 3 and 11)."
a=0
while [ $a -le "$LIMIT" ]
do
a=$(($a+1))
if [ "$a" -eq 3 ] || [ "$a" -eq 11 ] # Excludes 3 and 11.
then
continue # Skip rest of this particular loop iteration.
fi
echo -n "$a " # This will not execute for 3 and 11.
done
# Exercise:
# Why does the loop print up to 20?
echo; echo
echo Printing Numbers 1 through 20, but something happens after 2.
##################################################################
# Same loop, but substituting 'break' for 'continue'.
a=0
while [ "$a" -le "$LIMIT" ]
do
a=$(($a+1))
if [ "$a" -gt 2 ]
then
break # Skip entire rest of loop.
fi
echo -n "$a "
done
echo; echo; echo
exit 0</PRE
></FONT
></TD
></TR
></TABLE
></DIV
><P
><A
NAME="BREAKPARAM"
></A
></P
><P
>The <B
CLASS="COMMAND"
>break</B
> command may optionally take a
parameter. A plain <B
CLASS="COMMAND"
>break</B
> terminates
only the innermost loop in which it is embedded,
but a <B
CLASS="COMMAND"
>break N</B
> breaks out of
<TT
CLASS="PARAMETER"
><I
>N</I
></TT
> levels of loop.</P
><DIV
CLASS="EXAMPLE"
><A
NAME="BREAKLEVELS"
></A
><P
><B
>Example 11-21. Breaking out of multiple loop levels</B
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="90%"
><TR
><TD
><FONT
COLOR="#000000"
><PRE
CLASS="PROGRAMLISTING"
>#!/bin/bash
# break-levels.sh: Breaking out of loops.
# "break N" breaks out of N level loops.
for outerloop in 1 2 3 4 5
do
echo -n "Group $outerloop: "
# --------------------------------------------------------
for innerloop in 1 2 3 4 5
do
echo -n "$innerloop "
if [ "$innerloop" -eq 3 ]
then
break # Try break 2 to see what happens.
# ("Breaks" out of both inner and outer loops.)
fi
done
# --------------------------------------------------------
echo
done
echo
exit 0</PRE
></FONT
></TD
></TR
></TABLE
></DIV
><P
>The <B
CLASS="COMMAND"
>continue</B
> command, similar to
<B
CLASS="COMMAND"
>break</B
>, optionally takes a parameter. A
plain <B
CLASS="COMMAND"
>continue</B
> cuts short the
current iteration within its loop and begins the next.
A <B
CLASS="COMMAND"
>continue N</B
> terminates all remaining
iterations at its loop level and continues with the
next iteration at the loop, <TT
CLASS="OPTION"
>N</TT
> levels
above.</P
><DIV
CLASS="EXAMPLE"
><A
NAME="CONTINUELEVELS"
></A
><P
><B
>Example 11-22. Continuing at a higher loop level</B
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="90%"
><TR
><TD
><FONT
COLOR="#000000"
><PRE
CLASS="PROGRAMLISTING"
>#!/bin/bash
# The "continue N" command, continuing at the Nth level loop.
for outer in I II III IV V # outer loop
do
echo; echo -n "Group $outer: "
# --------------------------------------------------------------------
for inner in 1 2 3 4 5 6 7 8 9 10 # inner loop
do
if [[ "$inner" -eq 7 && "$outer" = "III" ]]
then
continue 2 # Continue at loop on 2nd level, that is "outer loop".
# Replace above line with a simple "continue"
# to see normal loop behavior.
fi
echo -n "$inner " # 7 8 9 10 will not echo on "Group III."
done
# --------------------------------------------------------------------
done
echo; echo
# Exercise:
# Come up with a meaningful use for "continue N" in a script.
exit 0</PRE
></FONT
></TD
></TR
></TABLE
></DIV
><DIV
CLASS="EXAMPLE"
><A
NAME="CONTINUENEX"
></A
><P
><B
>Example 11-23. Using <I
CLASS="FIRSTTERM"
>continue N</I
> in an actual task</B
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="90%"
><TR
><TD
><FONT
COLOR="#000000"
><PRE
CLASS="PROGRAMLISTING"
># Albert Reiner gives an example of how to use "continue N":
# ---------------------------------------------------------
# Suppose I have a large number of jobs that need to be run, with
#+ any data that is to be treated in files of a given name pattern
#+ in a directory. There are several machines that access
#+ this directory, and I want to distribute the work over these
#+ different boxen.
# Then I usually nohup something like the following on every box:
while true
do
for n in .iso.*
do
[ "$n" = ".iso.opts" ] && continue
beta=${n#.iso.}
[ -r .Iso.$beta ] && continue
[ -r .lock.$beta ] && sleep 10 && continue
lockfile -r0 .lock.$beta || continue
echo -n "$beta: " `date`
run-isotherm $beta
date
ls -alF .Iso.$beta
[ -r .Iso.$beta ] && rm -f .lock.$beta
continue 2
done
break
done
exit 0
# The details, in particular the sleep N, are particular to my
#+ application, but the general pattern is:
while true
do
for job in {pattern}
do
{job already done or running} && continue
{mark job as running, do job, mark job as done}
continue 2
done
break # Or something like `sleep 600' to avoid termination.
done
# This way the script will stop only when there are no more jobs to do
#+ (including jobs that were added during runtime). Through the use
#+ of appropriate lockfiles it can be run on several machines
#+ concurrently without duplication of calculations [which run a couple
#+ of hours in my case, so I really want to avoid this]. Also, as search
#+ always starts again from the beginning, one can encode priorities in
#+ the file names. Of course, one could also do this without `continue 2',
#+ but then one would have to actually check whether or not some job
#+ was done (so that we should immediately look for the next job) or not
#+ (in which case we terminate or sleep for a long time before checking
#+ for a new job).</PRE
></FONT
></TD
></TR
></TABLE
></DIV
><DIV
CLASS="CAUTION"
><P
></P
><TABLE
CLASS="CAUTION"
WIDTH="90%"
BORDER="0"
><TR
><TD
WIDTH="25"
ALIGN="CENTER"
VALIGN="TOP"
><IMG
SRC="../images/caution.gif"
HSPACE="5"
ALT="Caution"></TD
><TD
ALIGN="LEFT"
VALIGN="TOP"
><P
>The <B
CLASS="COMMAND"
>continue N</B
> construct is
difficult to understand and tricky to use in any meaningful
context. It is probably best avoided.</P
></TD
></TR
></TABLE
></DIV
></DD
></DL
></DIV
></DIV
><H3
CLASS="FOOTNOTES"
>Notes</H3
><TABLE
BORDER="0"
CLASS="FOOTNOTES"
WIDTH="100%"
><TR
><TD
ALIGN="LEFT"
VALIGN="TOP"
WIDTH="5%"
><A
NAME="FTN.AEN6952"
HREF="loopcontrol.html#AEN6952"
><SPAN
CLASS="footnote"
>[1]</SPAN
></A
></TD
><TD
ALIGN="LEFT"
VALIGN="TOP"
WIDTH="95%"
><P
>These are shell <A
HREF="internal.html#BUILTINREF"
>builtins</A
>,
whereas other loop commands, such as <A
HREF="loops1.html#WHILELOOPREF"
>while</A
> and <A
HREF="testbranch.html#CASEESAC1"
>case</A
>, are <A
HREF="internal.html#KEYWORDREF"
>keywords</A
>.</P
></TD
></TR
></TABLE
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
SUMMARY="Footer navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="nestedloops.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>Home</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="testbranch.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>Nested Loops</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="loops.html"
ACCESSKEY="U"
>Up</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>Testing and Branching</TD
></TR
></TABLE
></DIV
></BODY
></HTML
> | Smolations/more-dash-docsets | docsets/ABS.docset/Contents/Resources/Documents/loopcontrol.html | HTML | mit | 10,194 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Jasmine Spec Runner v2.4.1</title>
<link rel="shortcut icon" type="image/png" href="lib/jasmine-2.4.1/jasmine_favicon.png">
<link rel="stylesheet" href="lib/jasmine-2.4.1/jasmine.css">
<script src="lib/jasmine-2.4.1/jasmine.js"></script>
<script src="lib/jasmine-2.4.1/jasmine-html.js"></script>
<script src="lib/jasmine-2.4.1/boot.js"></script>
<!-- include source files here... -->
<script src="src/thermostat.js"></script>
<!-- include spec files here... -->
<script src="spec/SpecHelper.js"></script>
<script src="spec/thermostatSpec.js"></script>
</head>
<body>
</body>
</html>
| jrose111284/thermostat_business_logic | SpecRunner.html | HTML | mit | 674 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Class template static_local_time_adjustor</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="../../date_time/doxy.html#header.boost.date_time.local_time_adjustor_hpp" title="Header <boost/date_time/local_time_adjustor.hpp>">
<link rel="prev" href="dynamic_local__idp75703824.html" title="Class template dynamic_local_time_adjustor">
<link rel="next" href="local_adjustor.html" title="Class template local_adjustor">
</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="dynamic_local__idp75703824.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../date_time/doxy.html#header.boost.date_time.local_time_adjustor_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="local_adjustor.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.date_time.static_local_time_adjustor"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Class template static_local_time_adjustor</span></h2>
<p>boost::date_time::static_local_time_adjustor — Embed the rules for local time adjustments at compile time. </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: <<a class="link" href="../../date_time/doxy.html#header.boost.date_time.local_time_adjustor_hpp" title="Header <boost/date_time/local_time_adjustor.hpp>">boost/date_time/local_time_adjustor.hpp</a>>
</span><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> time_type<span class="special">,</span> <span class="keyword">typename</span> dst_rules<span class="special">,</span> <span class="keyword">typename</span> utc_offset_rules<span class="special">></span>
<span class="keyword">class</span> <a class="link" href="static_local_time_adjustor.html" title="Class template static_local_time_adjustor">static_local_time_adjustor</a> <span class="special">{</span>
<span class="keyword">public</span><span class="special">:</span>
<span class="comment">// types</span>
<span class="keyword">typedef</span> <span class="identifier">time_type</span><span class="special">::</span><span class="identifier">time_duration_type</span> <a name="boost.date_time.static_local_time_adjustor.time_duration_type"></a><span class="identifier">time_duration_type</span><span class="special">;</span>
<span class="keyword">typedef</span> <span class="identifier">time_type</span><span class="special">::</span><span class="identifier">date_type</span> <a name="boost.date_time.static_local_time_adjustor.date_type"></a><span class="identifier">date_type</span><span class="special">;</span>
<span class="comment">// <a class="link" href="static_local_time_adjustor.html#idp79687600-bb">public static functions</a></span>
<span class="keyword">static</span> <span class="identifier">time_duration_type</span> <a class="link" href="static_local_time_adjustor.html#idp79688160-bb"><span class="identifier">utc_to_local_offset</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">time_type</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">static</span> <span class="identifier">time_duration_type</span>
<a class="link" href="static_local_time_adjustor.html#idp42154128-bb"><span class="identifier">local_to_utc_offset</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">time_type</span> <span class="special">&</span><span class="special">,</span>
<span class="identifier">date_time</span><span class="special">::</span><span class="identifier">dst_flags</span> <span class="special">=</span> <span class="identifier">date_time</span><span class="special">::</span><span class="identifier">calculate</span><span class="special">)</span><span class="special">;</span>
<span class="special">}</span><span class="special">;</span></pre></div>
<div class="refsect1">
<a name="idp173983776"></a><h2>Description</h2>
<div class="refsect2">
<a name="idp173984192"></a><h3>
<a name="idp79687600-bb"></a><code class="computeroutput">static_local_time_adjustor</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="identifier">time_duration_type</span> <a name="idp79688160-bb"></a><span class="identifier">utc_to_local_offset</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">time_type</span> <span class="special">&</span> t<span class="special">)</span><span class="special">;</span></pre>Calculates the offset from a utc time to local based on dst and utc offset. <p>
The logic is as follows. Starting with UTC time use the offset to create a label for an non-dst adjusted local time. Then call dst_rules::local_is_dst with the non adjust local time. The results of this function will either unabiguously decide that the initial local time is in dst or return an illegal or ambiguous result. An illegal result only occurs at the end of dst (where labels are skipped) and indicates that dst has ended. An ambiguous result means that we need to recheck by making a dst adjustment and then rechecking. If the dst offset is added to the utc time and the recheck proves non-ambiguous then we are past the boundary. If it is still ambiguous then we are ahead of the boundary and dst is still in effect.</p>
<p>TODO -- check if all dst offsets are positive. If not then the algorithm needs to check for this and reverse the illegal/ambiguous logic. </p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td><p><span class="term">Parameters:</span></p></td>
<td><div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody><tr>
<td><p><span class="term"><code class="computeroutput">t</code></span></p></td>
<td><p>UTC time to calculate offset to local time This adjustment depends on the following observations about the workings of the DST boundary offset. Since UTC time labels are monotonically increasing we can determine if a given local time is in DST or not and therefore adjust the offset appropriately.</p></td>
</tr></tbody>
</table></div></td>
</tr></tbody>
</table></div>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">static</span> <span class="identifier">time_duration_type</span>
<a name="idp42154128-bb"></a><span class="identifier">local_to_utc_offset</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">time_type</span> <span class="special">&</span> t<span class="special">,</span>
<span class="identifier">date_time</span><span class="special">::</span><span class="identifier">dst_flags</span> dst <span class="special">=</span> <span class="identifier">date_time</span><span class="special">::</span><span class="identifier">calculate</span><span class="special">)</span><span class="special">;</span></pre>Get the offset to UTC given a local time. </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 © 2001-2005 CrystalClear Software, Inc<p>Subject to the Boost Software License, Version 1.0. (See accompanying file
<code class="filename">LICENSE_1_0.txt</code> 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="dynamic_local__idp75703824.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../date_time/doxy.html#header.boost.date_time.local_time_adjustor_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="local_adjustor.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
| yinchunlong/abelkhan-1 | ext/c++/thirdpart/c++/boost/doc/html/boost/date_time/static_local_time_adjustor.html | HTML | mit | 9,670 |
<!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">
<title>xlsx-populate Browser Demo</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
</head>
<body>
<div class="container">
<div class="page-header">
<h1>xlsx-populate Browser Demo</h1>
<p>This is just a simple example of xlsx-populate in the browser. It will write red text to cell A1.</p>
</div>
<b>Source:</b>
<div class="radio">
<label><input id="radio-blank" type="radio" name="source" checked>Blank Workbook</label>
</div>
<div class="radio">
<label><input id="radio-ajax" type="radio" name="source">Existing AJAX Workbook:</label> <input id="url-input" class="form-control" style="display: inline; width: 400px" type="text" value="../ranges/template.xlsx" />
</div>
<div class="radio">
<label><input id="radio-local" type="radio" name="source">Existing Local Workbook:</label> <input id="file-input" type="file" style="display: inline" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet">
</div>
<button class="btn btn-primary" onclick="generateBlob()">Generate blob</button>
<button class="btn btn-primary" onclick="generateBase64()">Generate base64</button>
</div>
<script type="text/javascript" src="../../browser/xlsx-populate.js"></script>
<script type="text/javascript">
// Promise is not defined in IE so xlsx-populate uses a polyfill via JSZip.
var Promise = XlsxPopulate.Promise;
var radioBlank = document.getElementById("radio-blank");
var radioAjax = document.getElementById("radio-ajax");
var radioLocal = document.getElementById("radio-local");
var urlInput = document.getElementById("url-input");
var fileInput = document.getElementById("file-input");
function getWorkbook() {
if (radioBlank.checked) {
return XlsxPopulate.fromBlankAsync();
} else if (radioAjax.checked) {
return new Promise(function (resolve, reject) {
var req = new XMLHttpRequest();
var url = urlInput.value;
req.open("GET", url, true);
req.responseType = "arraybuffer";
req.onreadystatechange = function () {
if (req.readyState === 4){
if (req.status === 200) {
resolve(XlsxPopulate.fromDataAsync(req.response));
} else {
reject("Received a " + req.status + " HTTP code.");
}
}
};
req.send();
});
} else if (radioLocal.checked) {
var file = fileInput.files[0];
if (!file) return Promise.reject("You must select a file.");
return XlsxPopulate.fromDataAsync(file);
}
}
function generate(type) {
return getWorkbook()
.then(function (workbook) {
workbook.sheet(0).cell("A1").value("This was created in the browser!").style("fontColor", "ff0000");
return workbook.outputAsync(type);
})
}
function generateBlob() {
return generate()
.then(function (blob) {
if (window.navigator && window.navigator.msSaveOrOpenBlob) {
window.navigator.msSaveOrOpenBlob(blob, "out.xlsx");
} else {
var url = window.URL.createObjectURL(blob);
var a = document.createElement("a");
document.body.appendChild(a);
a.href = url;
a.download = "out.xlsx";
a.click();
window.URL.revokeObjectURL(url);
document.body.removeChild(a);
}
})
.catch(function (err) {
alert(err.message || err);
throw err;
});
}
function generateBase64() {
return generate("base64")
.then(function (base64) {
if (window.navigator && window.navigator.msSaveOrOpenBlob) {
throw new Error("Navigating to data URI is not supported in IE.");
} else {
location.href = "data:" + XlsxPopulate.MIME_TYPE + ";base64," + base64;
}
})
.catch(function (err) {
alert(err.message || err);
throw err;
});
}
</script>
</body>
</html> | SETTER2000/kadr | assets/vendor/xlsx-populate/examples/browser/index.html | HTML | mit | 4,839 |
<!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">
<meta name="description" content="">
<meta name="author" content="">
<title>Teamform</title>
<!-- Bootstrap Core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<!-- Theme CSS -->
<link href="css/grayscale.min.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<!-- JavaScript of this page -->
<!-- Customized libraries shared by pages -->
<script src="js/site.js"></script>
<!-- Angular and Angular-route libraries (v1.5.7) -->
<script src="lib/angular.min.js"></script>
<script src="lib/angular-route.min.js"></script>
<!-- Firebase (v3.0.3) and AngularFire (v2.0.0) (after angular library is loaded) -->
<script src="lib/firebase.js"></script>
<script src="lib/angularfire.min.js"></script>
</head>
<body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top" ng-app="teamform-event-app">
<!-- Navigation -->
<nav class="navbar navbar-custom navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header navbar-left">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-main-collapse">
<i class="fa fa-bars"></i>
</button>
<a class="navbar-brand page-scroll" href="#page-top">
<!--<i class="fa fa-play-circle"></i> <span class="light">Start</span> Bootstrap-->
<!--profile-->
<a href="#contact" data-toggle="modal">
<div class="navbar-brand"><img src="profile/brown.png" height=400% data-toggle="collapse" href="#collapseExample" aria-expanded="false"
aria-controls="collapseExample">
</div>
</a>
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-right navbar-main-collapse">
<ul class="nav navbar-nav">
<!-- Hidden li included to remove active class from about link when scrolled up past about section -->
<li class="hidden">
<a href="#page-top"></a>
</li>
<li>
<a class="page-scroll" href="tutorial.html">Tutorial</a>
</li>
<li>
<a class="page-scroll" href="index.html">Home</a>
</li>
<li>
<a class="page-scroll" href="explore.html">Explore</a>
</li>
<li>
<a class="page-scroll" href="login.html">Logout</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<!-- Intro Header -->
<header class="intro">
<div class="intro-body">
<div class="container">
<!--team inform-->
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<div class=" Event">
<div class="event-body" ng-controller="displayCtrl">
<div class="page-header">
<h3>
<a href="#EventMemList" data-toggle="modal">
<small>Hosted by {{ownerDisplayName}}, Other members...</small>
</a>
{{eventName}}
<small>posted time</small>
</h3>
<p> {{param.description}}</p>
</div>
<img class="featuredImg" ng-src="{{param.imgURL!=null?param.imgURL:'img/team.jpg'}}" width="100%">
<button type = "button" id = "adminButton" class="btn btn-default" ng-click="adminPage()">Goto Admin Page</button>
<button type = "button" id = "joinButton" class="btn btn-default" ng-click="joinQuit()">Join This Event</button>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<section id="team" ng-controller="displayCtrl">
<a href="#team">
<h1 class="text-center"> Formed teams</h1>
</a>
<div class="teamse">
<div class="row" id = "teamInsert">
<div class="col-md-4 text-center" ng-repeat = "x in team">
<h3 class="text-center">
<a ng-href="team.html?e={{eventName}}&t={{x.$id}}">{{x.$id}}</a>
<span class="badge" ng-attr-id="invi-{{x.$id}}" ng-click="acceptInvFromTeam(x.$id)">{{(x.invitationRequests.indexOf(userid))?"invitation!":""}}</span>
</h3>
<a class="thumbnail" ng-href="team.html?e={{eventName}}&t={{x.$id}}"> <img src="img/team.jpg"></a><br>
Preferred team size: <span class="badge">{{x.size}}</span> <br>
Current teamMember: <span class = "badge">{{x.teamMembers.length}}</span><br>
Current team members: <div ng-repeat = "member in x.teamMembers track by $index">{{member}}</div> <br>
Team Leader: {{x.owner}}<br>
<p class="text-center">{{$parent.memberDetail.joinedTeam ==x.$id?'This is your Team!!' : ''}}</p>
<button type="button" class="btn btn-default btn-sendRequest" ng-click = "sendRequest(x.$id);"
ng-attr-id="{{'button-' +x.$id}}" ng-show = "$parent.memberDetail.joinedTeam===''">
{{($parent.memberDetail.selection.indexOf(x.$id) == -1 ? 'Request' : 'Cancel Request')}}
</button>
<br><br><br>
</div>
</div>
</div>
</section>
<!--bottom navbar-->
<div class="navbar navbar-inverted navbar-fixed-bottom">
<div class="container">
<div class="dropup pull-right">
<button class="btn btn-default btn-lg" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span>
</button>
<ul class="dropdown-menu">
<li><a href = "#addteam" data-toggle="modal" class = "navbar-text"> Team </a></li>
<li><a href = "#addevent" data-toggle="modal" class = "navbar-text"> Event </a></li>
</ul>
</div>
</div>
</div>
<div class="modal fade" id="contact">
<!--<div class="modal-content">-->
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="col-xs-8 col-xs-offset-2">
<center>
<!-- <div class="panel panel-default"><div class="panel-body">-->
<img class="fetureImg" src="profile/brown.png">
<h2> {Username} </h2>
<hr>
<h3> {Self-Intro}</h3>
<p> In order for assistive technologies – such as screen readers – to convey that a series of buttons is
grouped, an appropriate role attribute needs to be provided. For button groups, this would be role="group",
while toolbars should have a role="toolbar".One exception are groups which only contain a single
control (for instance the justified button groups with elements) or a dropdown. In addition, groups
and toolbars should be given an explicit label, as most assistive technologies will otherwise not
announce them, despite the presence of the correct role attribute. In the examples provided here,
we use aria-label, but alternatives such as aria-labelledby can also be used.
</p>
</center>
</div>
</div>
</div>
<div class="modal fade" id="teamMem1">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="col-xs-8 col-xs-8 col-xs-offset-2">
<center>
<img class="featureImg" src="profile/cony.png">
<h2> {Username-Team Member1} </h2>
<hr>
<h3> {Self-Intro}</h3>
<p> In order for assistive technologies – such as screen readers – to convey that a series of buttons is
grouped, an appropriate role attribute needs to be provided. For button groups, this would be role="group",
while toolbars should have a role="toolbar".One exception are groups which only contain a single
control (for instance the justified button groups with elements) or a dropdown.In addition, groups
and toolbars should be given an explicit label, as most assistive technologies will otherwise not
announce them, despite the presence of the correct role attribute. In the examples provided here,
we use aria-label, but alternatives such as aria-labelledby can also be used.
</p>
</center>
</div>
</div>
</div>
<div class="modal fade" id="teamMem2">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="container">
<div class="col-xs-8 col-xs-8 col-xs-offset-2">
<center>
<img class="featureImg" src="profile/sally.png">
<h2> {Username-Team Member1} </h2>
<hr>
<h3> {Self-Intro}</h3>
<p> In order for assistive technologies – such as screen readers – to convey that a series of buttons is
grouped, an appropriate role attribute needs to be provided. For button groups, this would be role="group",
while toolbars should have a role="toolbar".One exception are groups which only contain a single
control (for instance the justified button groups with elements) or a dropdown.In addition, groups
and toolbars should be given an explicit label, as most assistive technologies will otherwise not
announce them, despite the presence of the correct role attribute. In the examples provided here,
we use aria-label, but alternatives such as aria-labelledby can also be used.
</p>
</center>
</div>
</div>
</div>
<div class="modal fade" id="EventMemList">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl"></div>
</div>
</div>
<div class="list-group">
<a href="#teamMem1" class="list-group-item " data-toggle="modal">
<h4 class="list-group-item-heading">Name</h4>
<p class="list-group-item-text"> position of the team</p>
</a>
<a href="#teamMem2" class="list-group-item" data-toggle="modal">
<h4 class="list-group-item-heading">Name</h4>
<p class="list-group-item-text">position of the team</p>
</a>
</div>
</div>
<!--add team form-->
<div class ="modal fade2" id ="addteam" role = "dialog">
<div class = "modal-dialog" ng-controller="CEA_Team">
<div class= "modal-content">
<form class="Form-horizontal">
<div class ="modal-header-addteam">
<br><center><h3>Create a Team</h3></center>
</div>
<div class="modal-body-addteam">
<div class = "form-group">
<label for = "contact-name" class = "col-lg-3 control-lable">Team Name:</label>
<div class ="col-lg-9">
<input type = "text" class = "form-control" id = "contact-name" placeholder = "Enter your team name", ng-model="teamName"><br>
</div>
</div>
<div class = "form-group">
<label for = "contact-descrip" class = "col-lg-3 control-lable"> Team description:</label>
<div class ="col-lg-9">
<input type = "text" class = "form-control" id = "contact-descrip" placeholder = "Describe your team" ng-model = "teamdata.description"><br>
</div>
</div>
<div class="form-group">
<label for = "contact-size" class = "col-lg-3 control-lable"> Team Size:</label>
<span>
<span class="badge"> {{teamdata.size}}</span>
<button><span class="glyphicon glyphicon-plus" ng-click="changeCurrentTeamSize(1);"></span></button>
<button><span class="glyphicon glyphicon-minus" ng-click="changeCurrentTeamSize(-1);"></span></button>
</span><br>
</div>
</div>
<div class ="modal-footer">
<a class ="btn btn-secondary" data-dismiss = "modal">Close </a>
<a class ="btn btn-default" data-dismiss = "modal" ng-click="createFunc()">Create </a>
</div>
</form>
</div>
</div>
</div>
<!-- add event form-->
<div class ="modal fade3" id ="addevent" role = "dialog" ng-include = "'createEvent.html'">
</div>
<!-- jQuery -->
<script src="vendor/jquery/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<!-- Theme JavaScript -->
<script src="js/grayscale.min.js"></script>
<script src="js/event_Page.js"></script>
<script src="js/exploreTemp.js"></script>
</body>
</html> | wai2016/teamform-seed | app/event.html | HTML | mit | 15,282 |
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class ResultAnalysis
| CodeJam </title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class ResultAnalysis
| CodeJam ">
<meta name="generator" content="docfx 2.23.1.0">
<link rel="shortcut icon" href="../../favicon.ico">
<link rel="stylesheet" href="../../styles/docfx.vendor.css">
<link rel="stylesheet" href="../../styles/docfx.css">
<link rel="stylesheet" href="../../styles/main.css">
<meta property="docfx:navrel" content="../../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../../">
</head>
<body data-spy="scroll" data-target="#affix">
<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="../../images/CodeJam.Main.Icon.png" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list"></div>
<div class="sr-items"></div>
<ul id="pagination"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="CodeJam.PerfTests.Analysers.ResultAnalysis">
<h1 id="CodeJam_PerfTests_Analysers_ResultAnalysis" data-uid="CodeJam.PerfTests.Analysers.ResultAnalysis" class="text-break">Class ResultAnalysis
</h1>
<div class="markdown level0 summary"><p>Helper class to store competition analysis results.</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><a class="xref" href="CodeJam.PerfTests.Analysers.Analysis.html">Analysis</a></div>
<div class="level2"><span class="xref">ResultAnalysis</span></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<a class="xref" href="CodeJam.PerfTests.Analysers.Analysis.html#CodeJam_PerfTests_Analysers_Analysis_MessageSource">Analysis.MessageSource</a>
</div>
<div>
<a class="xref" href="CodeJam.PerfTests.Analysers.Analysis.html#CodeJam_PerfTests_Analysers_Analysis_RunState">Analysis.RunState</a>
</div>
<div>
<a class="xref" href="CodeJam.PerfTests.Analysers.Analysis.html#CodeJam_PerfTests_Analysers_Analysis_Config">Analysis.Config</a>
</div>
<div>
<a class="xref" href="CodeJam.PerfTests.Analysers.Analysis.html#CodeJam_PerfTests_Analysers_Analysis_Options">Analysis.Options</a>
</div>
<div>
<a class="xref" href="CodeJam.PerfTests.Analysers.Analysis.html#CodeJam_PerfTests_Analysers_Analysis_SafeToContinue">Analysis.SafeToContinue</a>
</div>
<div>
<a class="xref" href="CodeJam.PerfTests.Analysers.Analysis.html#CodeJam_PerfTests_Analysers_Analysis_Logger">Analysis.Logger</a>
</div>
<div>
<a class="xref" href="CodeJam.PerfTests.Analysers.Analysis.html#CodeJam_PerfTests_Analysers_Analysis_WriteMessage_CodeJam_PerfTests_Running_Messages_MessageSeverity_System_String_System_String_">Analysis.WriteMessage(MessageSeverity, String, String)</a>
</div>
<div>
<span class="xref">System.Object.ToString()</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="CodeJam.PerfTests.Analysers.html">CodeJam.PerfTests.Analysers</a></h6>
<h6><strong>Assembly</strong>: CodeJam.PerfTests.dll</h6>
<h5 id="CodeJam_PerfTests_Analysers_ResultAnalysis_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class ResultAnalysis : Analysis, IMessageLogger</code></pre>
</div>
<h3 id="constructors">Constructors
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/rsdn/CodeJam/new/master/apiSpec/new?filename=CodeJam_PerfTests_Analysers_ResultAnalysis__ctor_System_String_BenchmarkDotNet_Reports_Summary_.md&value=---%0Auid%3A%20CodeJam.PerfTests.Analysers.ResultAnalysis.%23ctor(System.String%2CBenchmarkDotNet.Reports.Summary)%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">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/rsdn/CodeJam/blob/master/PerfTests/src/[L2_CompetitionCore]/Analysers/ResultAnalysis.cs/#L22">View Source</a>
</span>
<a id="CodeJam_PerfTests_Analysers_ResultAnalysis__ctor_" data-uid="CodeJam.PerfTests.Analysers.ResultAnalysis.#ctor*"></a>
<h4 id="CodeJam_PerfTests_Analysers_ResultAnalysis__ctor_System_String_BenchmarkDotNet_Reports_Summary_" data-uid="CodeJam.PerfTests.Analysers.ResultAnalysis.#ctor(System.String,BenchmarkDotNet.Reports.Summary)">ResultAnalysis(String, Summary)</h4>
<div class="markdown level1 summary"><p>Initializes a new instance of the <a class="xref" href="CodeJam.PerfTests.Analysers.Analysis.html">Analysis</a> class.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public ResultAnalysis(string id, Summary summary)</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">System.String</span></td>
<td><span class="parametername">id</span></td>
<td><p>The identifier.</p>
</td>
</tr>
<tr>
<td><span class="xref">BenchmarkDotNet.Reports.Summary</span></td>
<td><span class="parametername">summary</span></td>
<td><p>The summary.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/rsdn/CodeJam/new/master/apiSpec/new?filename=CodeJam_PerfTests_Analysers_ResultAnalysis__ctor_System_String_BenchmarkDotNet_Reports_Summary_CodeJam_PerfTests_Running_Messages_MessageSource_.md&value=---%0Auid%3A%20CodeJam.PerfTests.Analysers.ResultAnalysis.%23ctor(System.String%2CBenchmarkDotNet.Reports.Summary%2CCodeJam.PerfTests.Running.Messages.MessageSource)%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">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/rsdn/CodeJam/blob/master/PerfTests/src/[L2_CompetitionCore]/Analysers/ResultAnalysis.cs/#L29">View Source</a>
</span>
<a id="CodeJam_PerfTests_Analysers_ResultAnalysis__ctor_" data-uid="CodeJam.PerfTests.Analysers.ResultAnalysis.#ctor*"></a>
<h4 id="CodeJam_PerfTests_Analysers_ResultAnalysis__ctor_System_String_BenchmarkDotNet_Reports_Summary_CodeJam_PerfTests_Running_Messages_MessageSource_" data-uid="CodeJam.PerfTests.Analysers.ResultAnalysis.#ctor(System.String,BenchmarkDotNet.Reports.Summary,CodeJam.PerfTests.Running.Messages.MessageSource)">ResultAnalysis(String, Summary, MessageSource)</h4>
<div class="markdown level1 summary"><p>Initializes a new instance of the <a class="xref" href="CodeJam.PerfTests.Analysers.Analysis.html">Analysis</a> class.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public ResultAnalysis(string id, Summary summary, MessageSource messageSource)</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">System.String</span></td>
<td><span class="parametername">id</span></td>
<td><p>The identifier.</p>
</td>
</tr>
<tr>
<td><span class="xref">BenchmarkDotNet.Reports.Summary</span></td>
<td><span class="parametername">summary</span></td>
<td><p>The summary.</p>
</td>
</tr>
<tr>
<td><a class="xref" href="CodeJam.PerfTests.Running.Messages.MessageSource.html">MessageSource</a></td>
<td><span class="parametername">messageSource</span></td>
<td><p>Source for the messages.</p>
</td>
</tr>
</tbody>
</table>
<h3 id="properties">Properties
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/rsdn/CodeJam/new/master/apiSpec/new?filename=CodeJam_PerfTests_Analysers_ResultAnalysis_Conclusions.md&value=---%0Auid%3A%20CodeJam.PerfTests.Analysers.ResultAnalysis.Conclusions%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">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/rsdn/CodeJam/blob/master/PerfTests/src/[L2_CompetitionCore]/Analysers/ResultAnalysis.cs/#L51">View Source</a>
</span>
<a id="CodeJam_PerfTests_Analysers_ResultAnalysis_Conclusions_" data-uid="CodeJam.PerfTests.Analysers.ResultAnalysis.Conclusions*"></a>
<h4 id="CodeJam_PerfTests_Analysers_ResultAnalysis_Conclusions" data-uid="CodeJam.PerfTests.Analysers.ResultAnalysis.Conclusions">Conclusions</h4>
<div class="markdown level1 summary"><p>Analysis conclusions.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public IReadOnlyCollection<Conclusion> Conclusions { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.IReadOnlyCollection</span><<span class="xref">BenchmarkDotNet.Analysers.Conclusion</span>></td>
<td><p>Analysis conclusions.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/rsdn/CodeJam/new/master/apiSpec/new?filename=CodeJam_PerfTests_Analysers_ResultAnalysis_ConclusionsList.md&value=---%0Auid%3A%20CodeJam.PerfTests.Analysers.ResultAnalysis.ConclusionsList%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">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/rsdn/CodeJam/blob/master/PerfTests/src/[L2_CompetitionCore]/Analysers/ResultAnalysis.cs/#L56">View Source</a>
</span>
<a id="CodeJam_PerfTests_Analysers_ResultAnalysis_ConclusionsList_" data-uid="CodeJam.PerfTests.Analysers.ResultAnalysis.ConclusionsList*"></a>
<h4 id="CodeJam_PerfTests_Analysers_ResultAnalysis_ConclusionsList" data-uid="CodeJam.PerfTests.Analysers.ResultAnalysis.ConclusionsList">ConclusionsList</h4>
<div class="markdown level1 summary"><p>The conclusions list.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">protected List<Conclusion> ConclusionsList { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Collections.Generic.List</span><<span class="xref">BenchmarkDotNet.Analysers.Conclusion</span>></td>
<td><p>The conclusions list.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/rsdn/CodeJam/new/master/apiSpec/new?filename=CodeJam_PerfTests_Analysers_ResultAnalysis_Id.md&value=---%0Auid%3A%20CodeJam.PerfTests.Analysers.ResultAnalysis.Id%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">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/rsdn/CodeJam/blob/master/PerfTests/src/[L2_CompetitionCore]/Analysers/ResultAnalysis.cs/#L41">View Source</a>
</span>
<a id="CodeJam_PerfTests_Analysers_ResultAnalysis_Id_" data-uid="CodeJam.PerfTests.Analysers.ResultAnalysis.Id*"></a>
<h4 id="CodeJam_PerfTests_Analysers_ResultAnalysis_Id" data-uid="CodeJam.PerfTests.Analysers.ResultAnalysis.Id">Id</h4>
<div class="markdown level1 summary"><p>Gets the analysis identifier.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public string Id { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><p>The analysis identifier.</p>
</td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/rsdn/CodeJam/new/master/apiSpec/new?filename=CodeJam_PerfTests_Analysers_ResultAnalysis_Summary.md&value=---%0Auid%3A%20CodeJam.PerfTests.Analysers.ResultAnalysis.Summary%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">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/rsdn/CodeJam/blob/master/PerfTests/src/[L2_CompetitionCore]/Analysers/ResultAnalysis.cs/#L46">View Source</a>
</span>
<a id="CodeJam_PerfTests_Analysers_ResultAnalysis_Summary_" data-uid="CodeJam.PerfTests.Analysers.ResultAnalysis.Summary*"></a>
<h4 id="CodeJam_PerfTests_Analysers_ResultAnalysis_Summary" data-uid="CodeJam.PerfTests.Analysers.ResultAnalysis.Summary">Summary</h4>
<div class="markdown level1 summary"><p>The summary.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public Summary Summary { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">BenchmarkDotNet.Reports.Summary</span></td>
<td><p>The summary.</p>
</td>
</tr>
</tbody>
</table>
<h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/rsdn/CodeJam/new/master/apiSpec/new?filename=CodeJam_PerfTests_Analysers_ResultAnalysis_AddTestErrorConclusion_BenchmarkDotNet_Running_Target_System_String_BenchmarkDotNet_Reports_BenchmarkReport_.md&value=---%0Auid%3A%20CodeJam.PerfTests.Analysers.ResultAnalysis.AddTestErrorConclusion(BenchmarkDotNet.Running.Target%2CSystem.String%2CBenchmarkDotNet.Reports.BenchmarkReport)%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">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/rsdn/CodeJam/blob/master/PerfTests/src/[L2_CompetitionCore]/Analysers/ResultAnalysis.cs/#L76">View Source</a>
</span>
<a id="CodeJam_PerfTests_Analysers_ResultAnalysis_AddTestErrorConclusion_" data-uid="CodeJam.PerfTests.Analysers.ResultAnalysis.AddTestErrorConclusion*"></a>
<h4 id="CodeJam_PerfTests_Analysers_ResultAnalysis_AddTestErrorConclusion_BenchmarkDotNet_Running_Target_System_String_BenchmarkDotNet_Reports_BenchmarkReport_" data-uid="CodeJam.PerfTests.Analysers.ResultAnalysis.AddTestErrorConclusion(BenchmarkDotNet.Running.Target,System.String,BenchmarkDotNet.Reports.BenchmarkReport)">AddTestErrorConclusion(Target, String, BenchmarkReport)</h4>
<div class="markdown level1 summary"><p>Reports test error conclusion.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public override void AddTestErrorConclusion(Target target, string message, BenchmarkReport report = null)</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">BenchmarkDotNet.Running.Target</span></td>
<td><span class="parametername">target</span></td>
<td><p>Target the message applies for.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">message</span></td>
<td><p>Message text.</p>
</td>
</tr>
<tr>
<td><span class="xref">BenchmarkDotNet.Reports.BenchmarkReport</span></td>
<td><span class="parametername">report</span></td>
<td><p>The report the message belongs to.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="overrides">Overrides</h5>
<div><a class="xref" href="CodeJam.PerfTests.Analysers.Analysis.html#CodeJam_PerfTests_Analysers_Analysis_AddTestErrorConclusion_BenchmarkDotNet_Running_Target_System_String_BenchmarkDotNet_Reports_BenchmarkReport_">Analysis.AddTestErrorConclusion(Target, String, BenchmarkReport)</a></div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/rsdn/CodeJam/new/master/apiSpec/new?filename=CodeJam_PerfTests_Analysers_ResultAnalysis_AddTestErrorConclusion_System_String_BenchmarkDotNet_Reports_BenchmarkReport_.md&value=---%0Auid%3A%20CodeJam.PerfTests.Analysers.ResultAnalysis.AddTestErrorConclusion(System.String%2CBenchmarkDotNet.Reports.BenchmarkReport)%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">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/rsdn/CodeJam/blob/master/PerfTests/src/[L2_CompetitionCore]/Analysers/ResultAnalysis.cs/#L64">View Source</a>
</span>
<a id="CodeJam_PerfTests_Analysers_ResultAnalysis_AddTestErrorConclusion_" data-uid="CodeJam.PerfTests.Analysers.ResultAnalysis.AddTestErrorConclusion*"></a>
<h4 id="CodeJam_PerfTests_Analysers_ResultAnalysis_AddTestErrorConclusion_System_String_BenchmarkDotNet_Reports_BenchmarkReport_" data-uid="CodeJam.PerfTests.Analysers.ResultAnalysis.AddTestErrorConclusion(System.String,BenchmarkDotNet.Reports.BenchmarkReport)">AddTestErrorConclusion(String, BenchmarkReport)</h4>
<div class="markdown level1 summary"><p>Reports test error conclusion.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public override void AddTestErrorConclusion(string message, BenchmarkReport report = null)</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">System.String</span></td>
<td><span class="parametername">message</span></td>
<td><p>Message text.</p>
</td>
</tr>
<tr>
<td><span class="xref">BenchmarkDotNet.Reports.BenchmarkReport</span></td>
<td><span class="parametername">report</span></td>
<td><p>The report the message belongs to.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="overrides">Overrides</h5>
<div><a class="xref" href="CodeJam.PerfTests.Analysers.Analysis.html#CodeJam_PerfTests_Analysers_Analysis_AddTestErrorConclusion_System_String_BenchmarkDotNet_Reports_BenchmarkReport_">Analysis.AddTestErrorConclusion(String, BenchmarkReport)</a></div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/rsdn/CodeJam/new/master/apiSpec/new?filename=CodeJam_PerfTests_Analysers_ResultAnalysis_AddWarningConclusion_BenchmarkDotNet_Running_Target_System_String_System_String_BenchmarkDotNet_Reports_BenchmarkReport_.md&value=---%0Auid%3A%20CodeJam.PerfTests.Analysers.ResultAnalysis.AddWarningConclusion(BenchmarkDotNet.Running.Target%2CSystem.String%2CSystem.String%2CBenchmarkDotNet.Reports.BenchmarkReport)%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">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/rsdn/CodeJam/blob/master/PerfTests/src/[L2_CompetitionCore]/Analysers/ResultAnalysis.cs/#L106">View Source</a>
</span>
<a id="CodeJam_PerfTests_Analysers_ResultAnalysis_AddWarningConclusion_" data-uid="CodeJam.PerfTests.Analysers.ResultAnalysis.AddWarningConclusion*"></a>
<h4 id="CodeJam_PerfTests_Analysers_ResultAnalysis_AddWarningConclusion_BenchmarkDotNet_Running_Target_System_String_System_String_BenchmarkDotNet_Reports_BenchmarkReport_" data-uid="CodeJam.PerfTests.Analysers.ResultAnalysis.AddWarningConclusion(BenchmarkDotNet.Running.Target,System.String,System.String,BenchmarkDotNet.Reports.BenchmarkReport)">AddWarningConclusion(Target, String, String, BenchmarkReport)</h4>
<div class="markdown level1 summary"><p>Reports analyser warning conclusion.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public override void AddWarningConclusion(Target target, string message, string hint, BenchmarkReport report = null)</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">BenchmarkDotNet.Running.Target</span></td>
<td><span class="parametername">target</span></td>
<td><p>Target the message applies for.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">message</span></td>
<td><p>Message text.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">hint</span></td>
<td><p>Hint how to fix the warning.</p>
</td>
</tr>
<tr>
<td><span class="xref">BenchmarkDotNet.Reports.BenchmarkReport</span></td>
<td><span class="parametername">report</span></td>
<td><p>The report the message belongs to.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="overrides">Overrides</h5>
<div><a class="xref" href="CodeJam.PerfTests.Analysers.Analysis.html#CodeJam_PerfTests_Analysers_Analysis_AddWarningConclusion_BenchmarkDotNet_Running_Target_System_String_System_String_BenchmarkDotNet_Reports_BenchmarkReport_">Analysis.AddWarningConclusion(Target, String, String, BenchmarkReport)</a></div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/rsdn/CodeJam/new/master/apiSpec/new?filename=CodeJam_PerfTests_Analysers_ResultAnalysis_AddWarningConclusion_System_String_System_String_BenchmarkDotNet_Reports_BenchmarkReport_.md&value=---%0Auid%3A%20CodeJam.PerfTests.Analysers.ResultAnalysis.AddWarningConclusion(System.String%2CSystem.String%2CBenchmarkDotNet.Reports.BenchmarkReport)%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">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/rsdn/CodeJam/blob/master/PerfTests/src/[L2_CompetitionCore]/Analysers/ResultAnalysis.cs/#L92">View Source</a>
</span>
<a id="CodeJam_PerfTests_Analysers_ResultAnalysis_AddWarningConclusion_" data-uid="CodeJam.PerfTests.Analysers.ResultAnalysis.AddWarningConclusion*"></a>
<h4 id="CodeJam_PerfTests_Analysers_ResultAnalysis_AddWarningConclusion_System_String_System_String_BenchmarkDotNet_Reports_BenchmarkReport_" data-uid="CodeJam.PerfTests.Analysers.ResultAnalysis.AddWarningConclusion(System.String,System.String,BenchmarkDotNet.Reports.BenchmarkReport)">AddWarningConclusion(String, String, BenchmarkReport)</h4>
<div class="markdown level1 summary"><p>Reports analyser warning conclusion.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public override void AddWarningConclusion(string message, string hint, BenchmarkReport report = null)</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">System.String</span></td>
<td><span class="parametername">message</span></td>
<td><p>Message text.</p>
</td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">hint</span></td>
<td><p>Hint how to fix the warning.</p>
</td>
</tr>
<tr>
<td><span class="xref">BenchmarkDotNet.Reports.BenchmarkReport</span></td>
<td><span class="parametername">report</span></td>
<td><p>The report the message belongs to.</p>
</td>
</tr>
</tbody>
</table>
<h5 class="overrides">Overrides</h5>
<div><a class="xref" href="CodeJam.PerfTests.Analysers.Analysis.html#CodeJam_PerfTests_Analysers_Analysis_AddWarningConclusion_System_String_System_String_BenchmarkDotNet_Reports_BenchmarkReport_">Analysis.AddWarningConclusion(String, String, BenchmarkReport)</a></div>
<h3 id="extensionmethods">Extension Methods</h3>
<div>
<a class="xref" href="CodeJam.PerfTests.Running.Core.CompetitionCoreHelpers.html#CodeJam_PerfTests_Running_Core_CompetitionCoreHelpers_WriteMessage_CodeJam_PerfTests_Running_Messages_IMessageLogger_CodeJam_PerfTests_Running_Messages_MessageSeverity_BenchmarkDotNet_Running_Target_System_String_System_String_">CompetitionCoreHelpers.WriteMessage(IMessageLogger, MessageSeverity, Target, String, String)</a>
</div>
<div>
<a class="xref" href="CodeJam.PerfTests.Running.Core.CompetitionCoreHelpers.html#CodeJam_PerfTests_Running_Core_CompetitionCoreHelpers_WriteExceptionMessage_CodeJam_PerfTests_Running_Messages_IMessageLogger_CodeJam_PerfTests_Running_Messages_MessageSeverity_System_String_System_Exception_">CompetitionCoreHelpers.WriteExceptionMessage(IMessageLogger, MessageSeverity, String, Exception)</a>
</div>
<div>
<a class="xref" href="CodeJam.PerfTests.Running.Core.CompetitionCoreHelpers.html#CodeJam_PerfTests_Running_Core_CompetitionCoreHelpers_WriteExceptionMessage_CodeJam_PerfTests_Running_Messages_IMessageLogger_CodeJam_PerfTests_Running_Messages_MessageSeverity_BenchmarkDotNet_Running_Target_System_String_System_Exception_">CompetitionCoreHelpers.WriteExceptionMessage(IMessageLogger, MessageSeverity, Target, String, Exception)</a>
</div>
<div>
<a class="xref" href="CodeJam.PerfTests.Running.Core.CompetitionCoreHelpers.html#CodeJam_PerfTests_Running_Core_CompetitionCoreHelpers_WriteExecutionErrorMessage_CodeJam_PerfTests_Running_Messages_IMessageLogger_System_String_System_String_">CompetitionCoreHelpers.WriteExecutionErrorMessage(IMessageLogger, String, String)</a>
</div>
<div>
<a class="xref" href="CodeJam.PerfTests.Running.Core.CompetitionCoreHelpers.html#CodeJam_PerfTests_Running_Core_CompetitionCoreHelpers_WriteExecutionErrorMessage_CodeJam_PerfTests_Running_Messages_IMessageLogger_BenchmarkDotNet_Running_Target_System_String_System_String_">CompetitionCoreHelpers.WriteExecutionErrorMessage(IMessageLogger, Target, String, String)</a>
</div>
<div>
<a class="xref" href="CodeJam.PerfTests.Running.Core.CompetitionCoreHelpers.html#CodeJam_PerfTests_Running_Core_CompetitionCoreHelpers_WriteSetupErrorMessage_CodeJam_PerfTests_Running_Messages_IMessageLogger_System_String_System_String_">CompetitionCoreHelpers.WriteSetupErrorMessage(IMessageLogger, String, String)</a>
</div>
<div>
<a class="xref" href="CodeJam.PerfTests.Running.Core.CompetitionCoreHelpers.html#CodeJam_PerfTests_Running_Core_CompetitionCoreHelpers_WriteSetupErrorMessage_CodeJam_PerfTests_Running_Messages_IMessageLogger_BenchmarkDotNet_Running_Target_System_String_System_String_">CompetitionCoreHelpers.WriteSetupErrorMessage(IMessageLogger, Target, String, String)</a>
</div>
<div>
<a class="xref" href="CodeJam.PerfTests.Running.Core.CompetitionCoreHelpers.html#CodeJam_PerfTests_Running_Core_CompetitionCoreHelpers_WriteTestErrorMessage_CodeJam_PerfTests_Running_Messages_IMessageLogger_System_String_System_String_">CompetitionCoreHelpers.WriteTestErrorMessage(IMessageLogger, String, String)</a>
</div>
<div>
<a class="xref" href="CodeJam.PerfTests.Running.Core.CompetitionCoreHelpers.html#CodeJam_PerfTests_Running_Core_CompetitionCoreHelpers_WriteTestErrorMessage_CodeJam_PerfTests_Running_Messages_IMessageLogger_BenchmarkDotNet_Running_Target_System_String_System_String_">CompetitionCoreHelpers.WriteTestErrorMessage(IMessageLogger, Target, String, String)</a>
</div>
<div>
<a class="xref" href="CodeJam.PerfTests.Running.Core.CompetitionCoreHelpers.html#CodeJam_PerfTests_Running_Core_CompetitionCoreHelpers_WriteWarningMessage_CodeJam_PerfTests_Running_Messages_IMessageLogger_System_String_System_String_">CompetitionCoreHelpers.WriteWarningMessage(IMessageLogger, String, String)</a>
</div>
<div>
<a class="xref" href="CodeJam.PerfTests.Running.Core.CompetitionCoreHelpers.html#CodeJam_PerfTests_Running_Core_CompetitionCoreHelpers_WriteWarningMessage_CodeJam_PerfTests_Running_Messages_IMessageLogger_BenchmarkDotNet_Running_Target_System_String_System_String_">CompetitionCoreHelpers.WriteWarningMessage(IMessageLogger, Target, String, String)</a>
</div>
<div>
<a class="xref" href="CodeJam.PerfTests.Running.Core.CompetitionCoreHelpers.html#CodeJam_PerfTests_Running_Core_CompetitionCoreHelpers_WriteInfoMessage_CodeJam_PerfTests_Running_Messages_IMessageLogger_System_String_System_String_">CompetitionCoreHelpers.WriteInfoMessage(IMessageLogger, String, String)</a>
</div>
<div>
<a class="xref" href="CodeJam.PerfTests.Running.Core.CompetitionCoreHelpers.html#CodeJam_PerfTests_Running_Core_CompetitionCoreHelpers_WriteInfoMessage_CodeJam_PerfTests_Running_Messages_IMessageLogger_BenchmarkDotNet_Running_Target_System_String_System_String_">CompetitionCoreHelpers.WriteInfoMessage(IMessageLogger, Target, String, String)</a>
</div>
</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/rsdn/CodeJam/new/master/apiSpec/new?filename=CodeJam_PerfTests_Analysers_ResultAnalysis.md&value=---%0Auid%3A%20CodeJam.PerfTests.Analysers.ResultAnalysis%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/rsdn/CodeJam/blob/master/PerfTests/src/[L2_CompetitionCore]/Analysers/ResultAnalysis.cs/#L16" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<!-- <p><a class="back-to-top" href="#top">Back to top</a><p> -->
</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>
Copyright � 2015-2017
</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>
| rsdn/CodeJam | docs/api/perftests/CodeJam.PerfTests.Analysers.ResultAnalysis.html | HTML | mit | 37,362 |
<!DOCTYPE HTML>
<html>
<head>
<title>Bootstrap Plugin Test Suite</title>
<!-- jquery -->
<!--<script src="http://code.jquery.com/jquery-1.7.min.js"></script>-->
<script src="vendor/jquery.js"></script>
<!-- qunit -->
<link rel="stylesheet" href="vendor/qunit.css" type="text/css" media="screen"/>
<script src="vendor/qunit.js"></script>
<!-- phantomjs logging script-->
<script src="unit/bootstrap-phantom.js"></script>
<!-- plugin sources -->
<script src="../../js/bootstrap-transition.js"></script>
<script src="../../js/bootstrap-alert.js"></script>
<script src="../../js/bootstrap-button.js"></script>
<script src="../../js/bootstrap-carousel.js"></script>
<script src="../../js/bootstrap-collapse.js"></script>
<script src="../../js/bootstrap-dropdown.js"></script>
<script src="../../js/bootstrap-modal.js"></script>
<script src="../../js/bootstrap-scrollspy.js"></script>
<script src="../../js/bootstrap-tab.js"></script>
<script src="../../js/bootstrap-tooltip.js"></script>
<script src="../../js/bootstrap-popover.js"></script>
<script src="../../js/bootstrap-typeahead.js"></script>
<script src="../../js/bootstrap-affix.js"></script>
<!-- unit tests -->
<script src="unit/bootstrap-transition.js"></script>
<script src="unit/bootstrap-alert.js"></script>
<script src="unit/bootstrap-button.js"></script>
<script src="unit/bootstrap-carousel.js"></script>
<script src="unit/bootstrap-collapse.js"></script>
<script src="unit/bootstrap-dropdown.js"></script>
<script src="unit/bootstrap-modal.js"></script>
<script src="unit/bootstrap-scrollspy.js"></script>
<script src="unit/bootstrap-tab.js"></script>
<script src="unit/bootstrap-tooltip.js"></script>
<script src="unit/bootstrap-popover.js"></script>
<script src="unit/bootstrap-typeahead.js"></script>
<script src="unit/bootstrap-affix.js"></script>
</head>
<body>
<div>
<h1 id="qunit-header">Bootstrap Plugin Test Suite</h1>
<h2 id="qunit-banner"></h2>
<h2 id="qunit-userAgent"></h2>
<ol id="qunit-tests"></ol>
<div id="qunit-fixture"></div>
</div>
</body>
</html> | javaConductor/gserv | src/main/resources/docs/app/lib/bootstrap-sass/js/tests/index.html | HTML | mit | 2,205 |
<!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.4"/>
<title>Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<!-- end header part -->
<!-- Generated by Doxygen 1.8.4 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related 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="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="a00237.html">tbb</a></li><li class="navelem"><b>flow</b></li><li class="navelem"><b>interface7</b></li><li class="navelem"><a class="el" href="a00066.html">function_node< Input, Output, queueing, Allocator ></a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator > Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a>, including all inherited members.</p>
<table class="directory">
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>extract</b>(reset_flags f=rf_extract) (defined in <a class="el" href="a00069.html">tbb::flow::interface7::graph_node</a>)</td><td class="entry"><a class="el" href="a00069.html">tbb::flow::interface7::graph_node</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>fInput_type</b> typedef (defined in <a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a>)</td><td class="entry"><a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>fOutput_type</b> typedef (defined in <a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a>)</td><td class="entry"><a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="a00066.html#a1b0413b2ec13a9d2ee22dfeb6555a616">function_node</a>(graph &g, size_t concurrency, Body body)</td><td class="entry"><a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="a00066.html#ad1cb832fe1edee0b0d75e569b62c9c1c">function_node</a>(const function_node &src)</td><td class="entry"><a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>graph_node</b>(graph &g) (defined in <a class="el" href="a00069.html">tbb::flow::interface7::graph_node</a>)</td><td class="entry"><a class="el" href="a00069.html">tbb::flow::interface7::graph_node</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>input_type</b> typedef (defined in <a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a>)</td><td class="entry"><a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>internal::broadcast_cache</b> (defined in <a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a>)</td><td class="entry"><a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a></td><td class="entry"><span class="mlabel">friend</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>internal::round_robin_cache</b> (defined in <a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a>)</td><td class="entry"><a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a></td><td class="entry"><span class="mlabel">friend</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>my_graph</b> (defined in <a class="el" href="a00069.html">tbb::flow::interface7::graph_node</a>)</td><td class="entry"><a class="el" href="a00069.html">tbb::flow::interface7::graph_node</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>next</b> (defined in <a class="el" href="a00069.html">tbb::flow::interface7::graph_node</a>)</td><td class="entry"><a class="el" href="a00069.html">tbb::flow::interface7::graph_node</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>output_type</b> typedef (defined in <a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a>)</td><td class="entry"><a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>predecessor_type</b> typedef (defined in <a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a>)</td><td class="entry"><a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>prev</b> (defined in <a class="el" href="a00069.html">tbb::flow::interface7::graph_node</a>)</td><td class="entry"><a class="el" href="a00069.html">tbb::flow::interface7::graph_node</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>queue_type</b> typedef (defined in <a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a>)</td><td class="entry"><a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>reset</b>(__TBB_PFG_RESET_ARG(reset_flags f)) (defined in <a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a>)</td><td class="entry"><a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>reset</b>(__TBB_PFG_RESET_ARG(reset_flags f=rf_reset_protocol))=0 (defined in <a class="el" href="a00069.html">tbb::flow::interface7::graph_node</a>)</td><td class="entry"><a class="el" href="a00069.html">tbb::flow::interface7::graph_node</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">pure virtual</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>run_and_put_task</b> (defined in <a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a>)</td><td class="entry"><a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a></td><td class="entry"><span class="mlabel">friend</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>set_name</b>(const char *name) (defined in <a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a>)</td><td class="entry"><a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>successor_type</b> typedef (defined in <a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a>)</td><td class="entry"><a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>successors</b>() (defined in <a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a>)</td><td class="entry"><a class="el" href="a00066.html">tbb::flow::interface7::function_node< Input, Output, queueing, Allocator ></a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>~graph_node</b>() (defined in <a class="el" href="a00069.html">tbb::flow::interface7::graph_node</a>)</td><td class="entry"><a class="el" href="a00069.html">tbb::flow::interface7::graph_node</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr>
</table></div><!-- contents -->
<hr>
<p></p>
Copyright © 2005-2015 Intel Corporation. All Rights Reserved.
<p></p>
Intel, Pentium, Intel Xeon, Itanium, Intel XScale and VTune are
registered trademarks or trademarks of Intel Corporation or its
subsidiaries in the United States and other countries.
<p></p>
* Other names and brands may be claimed as the property of others.
| GraphicsEmpire/tetcutter | src/3rdparty/tbb/doc/html/a00333.html | HTML | mit | 11,087 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0) on Thu Sep 29 14:31:06 EDT 2016 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.owasp.appsensor.local.event (appsensor-parent 2.3.0 API)</title>
<meta name="date" content="2016-09-29">
<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="org.owasp.appsensor.local.event (appsensor-parent 2.3.0 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<div class="header">
<h1 title="Package" class="title">Package org.owasp.appsensor.local.event</h1>
</div>
<div class="contentContainer">
<ul class="blockList">
<li class="blockList">
<table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation">
<caption><span>Class Summary</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Class</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="../../../../../org/owasp/appsensor/local/event/LocalEventManager.html" title="class in org.owasp.appsensor.local.event">LocalEventManager</a></td>
</tr>
</tbody>
</table>
</li>
</ul>
</div>
<p class="legalCopy"><small>Copyright © 2016 <a href="http://www.owasp.org">The Open Web Application Security Project (OWASP)</a>. All rights reserved.</small></p>
</body>
</html>
| ProZachJ/appsensor | appsensor-dot-org/site-contents/docs/v2.3.0/javadoc/org/owasp/appsensor/local/event/package-summary.html | HTML | mit | 1,858 |
<!DOCTYPE html>
<html lang="en">
<head>
<title>three.js webgl - materials - HDR texture</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<style>
body {
color: #fff;
font-family:Monospace;
font-size:13px;
text-align:center;
font-weight: bold;
background-color: #000;
margin: 0px;
overflow: hidden;
}
#info {
color:#fff;
position: absolute;
top: 0px; width: 100%;
padding: 5px;
}
a { color: red; }
</style>
</head>
<body>
<div id="container"></div>
<div id="info">
<a href="http://threejs.org" target="_blank" rel="noopener">three.js</a> - webgl HDR texture example -
based on <a href="http://spidergl.org/example.php?id=13" target="_blank" rel="noopener">SpiderGL</a>
</div>
<script src="../build/three.js"></script>
<script src="js/WebGL.js"></script>
<script src="js/libs/stats.min.js"></script>
<!-- HDR fragment shader -->
<script id="fs-hdr" type="x-shader/x-fragment">
uniform sampler2D tDiffuse;
uniform float exposure;
uniform float brightMax;
varying vec2 vUv;
vec3 decode_pnghdr( const in vec4 color ) {
// remove gamma correction
vec4 res = color * color;
// decoded RI
float ri = pow( 2.0, res.w * 32.0 - 16.0 );
// decoded HDR pixel
res.xyz = res.xyz * ri;
return res.xyz;
}
void main() {
vec4 color = texture2D( tDiffuse, vUv );
color.xyz = decode_pnghdr( color );
// apply gamma correction and exposure
//gl_FragColor = vec4( pow( exposure * color.xyz, vec3( 0.474 ) ), 1.0 );
// Perform tone-mapping
float Y = dot(vec4(0.30, 0.59, 0.11, 0.0), color);
float YD = exposure * (exposure/brightMax + 1.0) / (exposure + 1.0);
color *= YD;
gl_FragColor = vec4( color.xyz, 1.0 );
}
</script>
<!-- HDR vertex shader -->
<script id="vs-hdr" type="x-shader/x-vertex">
varying vec2 vUv;
void main() {
vUv = uv;
gl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );
}
</script>
<script>
if ( WEBGL.isWebGLAvailable() === false ) {
document.body.appendChild( WEBGL.getWebGLErrorMessage() );
}
var container, stats;
var camera, scene, renderer;
var materialHDR, quad;
var sign = 1, rate = 1;
var clock = new THREE.Clock();
init();
animate();
function init() {
container = document.getElementById( 'container' );
camera = new THREE.PerspectiveCamera( 50, window.innerWidth / window.innerHeight, 1, 10000 );
camera.position.z = 900;
scene = new THREE.Scene();
var texture = new THREE.TextureLoader().load( "textures/memorial.png" );
texture.minFilter = THREE.LinearFilter;
texture.magFilter = THREE.NearestFilter;
materialHDR = new THREE.ShaderMaterial( {
uniforms: {
tDiffuse: { value: texture },
exposure: { value: 0.125 },
brightMax: { value: 0.5 }
},
vertexShader: getText( 'vs-hdr' ),
fragmentShader: getText( 'fs-hdr' )
} );
var plane = new THREE.PlaneBufferGeometry( 512, 768 );
quad = new THREE.Mesh( plane, materialHDR );
quad.position.z = - 100;
scene.add( quad );
renderer = new THREE.WebGLRenderer();
renderer.setPixelRatio( window.devicePixelRatio );
renderer.setSize( window.innerWidth, window.innerHeight );
container.appendChild( renderer.domElement );
stats = new Stats();
container.appendChild( stats.dom );
//
window.addEventListener( 'resize', onWindowResize, false );
}
function onWindowResize() {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize( window.innerWidth, window.innerHeight );
}
function getText( id ) {
return document.getElementById( id ).textContent;
}
//
function animate() {
requestAnimationFrame( animate );
render();
stats.update();
}
function render() {
var delta = clock.getDelta() * 5;
if ( materialHDR.uniforms.exposure.value > 0 || materialHDR.uniforms.exposure.value < 1 ) {
rate = 0.25;
} else {
rate = 1;
}
if ( materialHDR.uniforms.exposure.value > 5 || materialHDR.uniforms.exposure.value <= 0 ) {
sign *= - 1;
}
materialHDR.uniforms.exposure.value += sign * rate * delta;
renderer.render( scene, camera );
}
</script>
</body>
</html>
| pailhead/three.js | examples/webgl_hdr.html | HTML | mit | 4,526 |
<div class="row" ng-controller="CmdController as me">
<h1>Remote Command-Line Interface</h1>
<pre id="cliOutput" style="height:400px; overflow: auto;">{{me.commands}}</pre>
<form name="cmdForm" novalidate ng-submit="cmdForm.$valid && me.submit()">
<input required type="text" class="form-control" ng-model="me.command" />
</form>
</div> | IRlyDontKnow/embedio | Unosquare.Labs.EmbedIO.Samples/html/views/cmd.html | HTML | mit | 361 |
<div class="card animated fadeIn" style="margin-top:20px;">
<form angular-validator-submit="$ctrl.guardar()" name="contratoForm" novalidate angular-validator>
<div class="card-head style-default-light" style="padding-top:10px; padding-left:10px;">
<header>
<strong style="font-weight:bold; border:none; margin-left:10px; font-size: 16px;">Nueva nota de crédito</strong>
<br /><small class="text-muted" style="font-size:14px; margin-left:10px;"><i class="fa fa-home" aria-hidden="true"></i> Facturación Corporativa>Nueva nota</small>
</header>
<div class="tools">
<button class="btn btn-default btn-sm" ui-sref="home.corporativa.notas" type="button"><i class="fa fa-arrow-left" aria-hidden="true"></i> Regresar</button>
<button class="btn btn-primary btn-sm" ng-show="$ctrl.mostrarbtn" type="submit"><i class="fa fa-floppy-o" aria-hidden="true"></i> Guardar</button>
</div>
</div>
<div class="card-body">
<div class="row">
<div class="col-md-4">
<div class="col-md-4">
Contrato maestro
</div>
<div class="col-md-4">
<input type="number" class="form-control input-sm" placeholder="No.Contrato" ng-model="$ctrl.Contrato" ng-keypress="$ctrl.enter($event)">
</div>
<div class="col-md-4">
<button class="btn ink-reaction btn-floating-action btn-sm btn-default" ng-click="$ctrl.abrirContratos()" type="button"><i class="fa fa-search"></i> </button>
</div>
</div>
<div class="col-md-2 text-right" ng-show="$ctrl.MuestraDet">
<b class="text-danger"> Estatus</b>
</div>
<div class="col-md-3" ng-show="$ctrl.MuestraDet">
<select ng-model="$ctrl.Status" ng-disabled="true" class="form-control input-sm" ng-options="item as item.Status for item in $ctrl.StatusList track by item.Clv_Status">
<option value="" selected>Activa</option>
</select>
</div>
<div class="col-md-3">
<div class="col-md-4"><b class="text-danger">No.Nota</b></div>
<div class="col-md-8">
<input type="text" ng-disabled="true" ng-model="$ctrl.clvnota" class="form-control input-sm">
</div>
</div>
</div>
<hr>
<div class="row" ng-show="$ctrl.MuestraDet">
<div class="col-md-6">
<div class="col-md-12">
<label class="col-md-3 control-label blod">Nombre Comercial:</label>
<div class="col-md-9" style="padding-left:-10px;">
<input type="text" ng-disabled="true" class="form-control input-sm" ng-value="$ctrl.DetalleContrato.NombreComercial">
</div>
</div>
<div class="col-md-12">
<label class="col-md-3 control-label blod">Razón social:</label>
<div class="col-md-9" style="padding-left:-10px;">
<input type="text" ng-disabled="true" class="form-control input-sm" ng-value="$ctrl.DetalleContrato.RazonSocial">
</div>
</div>
<div class="col-md-12">
<label class="col-md-3 control-label blod">RFC:</label>
<div class="col-md-9" style="padding-left:-10px;">
<input type="text" ng-disabled="true" class="form-control input-sm" ng-value="$ctrl.DetalleContrato.RFC">
</div>
</div>
<div class="col-md-12">
<label class="col-md-3 control-label blod">Distribuidor:</label>
<div class="col-md-9" style="padding-left:-10px;">
<input type="text" ng-disabled="true" class="form-control input-sm" ng-value="$ctrl.DetalleContrato.DistribuidorDes">
</div>
</div>
<!-- <div class="col-md-12">
<b>Nombre Comercial: </b>{{$ctrl.DetalleContrato.NombreComercial}}<br>
<b>RFC: </b>{{$ctrl.DetalleContrato.RFC}}<br>
<b>Distribuidor: </b>{{$ctrl.DetalleContrato.DistribuidorDes}}</br>
<b>Dirección: </b> {{$ctrl.DetalleContrato.CalleDes}} No.Int #{{$ctrl.DetalleContrato.NumInt}} No.Ext #{{$ctrl.DetalleContrato.NumExt}}<br>
</div>-->
<div class="col-md-12">
<br>
<label class="col-md-3 control-label blod">Ticket:</label>
<div class="col-md-9" style="padding-left:-10px;">
<select class="form-control input-sm" ng-model="$ctrl.factura" name="ticket" required ng-change="$ctrl.cambioFactura()" required-message="'Este campo es obligatorio.'"
validate-on="dirty" ng-options="item as item.FACTURAS for item in $ctrl.facturas track by item.CLV_FACTURA">
<option value="">selecciona</option>
</select>
</div>
</div>
<div class="col-md-12">
<label class="col-md-3 control-label blod">Caja:</label>
<div class="col-md-9" style="padding-left:-10px;">
<input type="text" ng-disabled="true" name="razon" validate-on="dirty" class="form-control input-sm" ng-model="$ctrl.Caja"
required-message="'Este campo es obligatorio.'" required>
</div>
</div>
<div class="col-md-12">
<label class="col-md-3 control-label blod">Cajero:</label>
<div class="col-md-9" style="padding-left:-10px;">
<select class="form-control input-sm" ng-model="$ctrl.scajero" ng-options="item as item.NOMBRE for item in $ctrl.Cajero track by item.CLV_USUARIO">
<option value="">selecciona</option>
</select>
</div>
</div>
<div class="col-md-12">
<label class="col-md-3 control-label blod">Usuario:</label>
<div class="col-md-9" style="padding-left:-10px;">
<input type="text" ng-disabled="true" name="Usuario" validate-on="dirty" class="form-control input-sm" ng-model="$ctrl.usuario"
required-message="'Este campo es obligatorio.'" required>
</div>
</div>
<div class="col-md-12">
<label class="col-md-3 control-label blod">Fecha Generación:</label>
<div class="col-md-9" style="padding-left:-10px;">
<input type="text" ng-disabled="true" class="form-control input-sm" ng-model="$ctrl.FechaG">
</div>
</div>
<div class="col-md-12">
<label class="col-md-3 control-label blod">Observaciones:</label>
<div class="col-md-9" style="padding-left:-10px;">
<textarea type="text" placeholder="Observaciones" name="observaciones" validate-on="dirty" class="form-control input-sm"
ng-model="$ctrl.Observaciones" required-message="'Este campo es obligatorio.'" required></textarea>
</div>
</div>
<div class="col-md-12">
<br>
</div>
</div>
<div class="col-md-6">
<uib-tabset active="activeJustified" justified="true">
<uib-tab index="0" heading="Detalle">
<div class="row" style="overflow-y: scroll; max-height: 400px;">
<table class="table">
<thead style="background-color: khaki;">
<th>DESCRIPCION</th>
<th>IMPORTE PAGADO</th>
<!--<th>IMPORTE PARA NOTA</th>
-->
</thead>
<tbody>
<!-- ng-keyup="$ctrl.validaMonto(x,x.cantidad)"-->
<tr ng-repeat="x in $ctrl.DetalleNota">
<td>{{x.descripcion}}</td>
<td>${{x.importe}}</td>
<!-- <td>
<ng-form name="urlForm">
<input type="number" name="cant" ng-model="x.cantidad" class="form-control input-sm" required min="0" ng-change="$ctrl.calcular()"
validate-on="dirty" max="{{x.importe}}">
<span class="alert error text-danger" ng-show="urlForm.cant.$error.required">campo requerido</span>
<span class="alert error text-danger" ng-show="urlForm.cant.$error.max">cantidad invalida</span>
</ng-form>
</td>-->
</tr>
</tbody>
</table>
</div>
</uib-tab>
<uib-tab index="1" heading="Contratos">
<div class="row" style="overflow-y: scroll; max-height: 400px; padding: 15px;">
<br>
<table class="table">
<thead>
<th>Contrato</th>
<th>Importe</th>
<th></th>
</thead>
<tbody>
<tr ng-repeat="x in $ctrl.contratos">
<td>{{x.ContratoCompuesto}}</td>
<td>{{x.Importe|currency}}</td>
<td><button class="btn btn-xs btn-info" type="button" ng-click="$ctrl.Detallefactura(x)">Detalle</button></td>
</tr>
</tbody>
</table>
</div>
</uib-tab>
</uib-tabset>
<div class="row">
<div class="col-md-6" class="text-right">
<b class="text-danger">Monto: $</b></div>
<div class="col-md-6">
<label class="text-danger"><b>
{{$ctrl.sumatotal | currency}}</b>
</label>
</div>
</div>
<div class="row">
<label class="checkbox-inline checkbox-styled checkbox-info">
<input type="checkbox" ng-change="$ctrl.MarcarContratos()" ng-model="$ctrl.marcar"><span>Marcar/Desmarcar contratos</span>
</label>
</div>
</div>
</div>
</form>
</div>
| alesabas/Softv | app/views/corporativa/nuevaNotaCredito.html | HTML | mit | 9,858 |
<!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" />
<title>
Module: Concurrent::Utility
— Concurrent
</title>
<link rel="stylesheet" href="../css/style.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="../css/common.css" type="text/css" charset="utf-8" />
<script type="text/javascript" charset="utf-8">
hasFrames = window.top.frames.main ? true : false;
relpath = '../';
framesUrl = "../frames.html#!Concurrent/Utility.html";
</script>
<script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
<script type="text/javascript" charset="utf-8" src="../js/app.js"></script>
</head>
<body>
<div id="header">
<div id="menu">
<a href="../_index.html">Index (U)</a> »
<span class='title'><span class='object_link'><a href="../root/Concurrent.html" title="Concurrent (module)">Concurrent</a></span></span>
»
<span class="title">Utility</span>
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
</div>
<div id="search">
<a class="full_list_link" id="class_list_link"
href="../class_list.html">
Class List
</a>
<a class="full_list_link" id="method_list_link"
href="../method_list.html">
Method List
</a>
<a class="full_list_link" id="file_list_link"
href="../file_list.html">
File List
</a>
</div>
<div class="clear"></div>
</div>
<iframe id="search_frame"></iframe>
<div id="content"><h1>Module: Concurrent::Utility
</h1>
<dl class="box">
<dt class="r1 last">Defined in:</dt>
<dd class="r1 last">lib/concurrent/utility/engine.rb<span class="defines">,<br />
lib/concurrent/utility/native_integer.rb,<br /> lib/concurrent/utility/processor_counter.rb,<br /> lib/concurrent/utility/native_extension_loader.rb</span>
</dd>
</dl>
<div class="clear"></div>
</div>
<div id="footer">
Generated on Wed Aug 15 13:38:40 2018 by
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
0.8.7.6 (ruby-2.4.3).
</div>
<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-57940973-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html> | lucasallan/concurrent-ruby | docs/1.0.5/Concurrent/Utility.html | HTML | mit | 2,875 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>intermol.forces.cubic_bond_type module — InterMol 0.2a1 documentation</title>
<link rel="stylesheet" href="_static/default.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '0.2a1',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<link rel="top" title="InterMol 0.2a1 documentation" href="index.html" />
</head>
<body>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li><a href="index.html">InterMol 0.2a1 documentation</a> »</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<div class="section" id="module-intermol.forces.cubic_bond_type">
<span id="intermol-forces-cubic-bond-type-module"></span><h1>intermol.forces.cubic_bond_type module<a class="headerlink" href="#module-intermol.forces.cubic_bond_type" title="Permalink to this headline">¶</a></h1>
<dl class="class">
<dt id="intermol.forces.cubic_bond_type.CubicBond">
<em class="property">class </em><tt class="descclassname">intermol.forces.cubic_bond_type.</tt><tt class="descname">CubicBond</tt><big>(</big><em>atom1</em>, <em>atom2</em>, <em>bondingtype1=None</em>, <em>bondingtype2=None</em>, <em>length=Quantity(value=0.0</em>, <em>unit=nanometer)</em>, <em>C2=Quantity(value=0.0</em>, <em>unit=kilojoule/(nanometer**2*mole))</em>, <em>C3=Quantity(value=0.0</em>, <em>unit=kilojoule/(nanometer**3*mole))</em>, <em>order=1</em>, <em>c=False</em><big>)</big><a class="reference internal" href="_modules/intermol/forces/cubic_bond_type.html#CubicBond"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#intermol.forces.cubic_bond_type.CubicBond" title="Permalink to this definition">¶</a></dt>
<dd><p>Bases: <a class="reference internal" href="#intermol.forces.cubic_bond_type.CubicBondType" title="intermol.forces.cubic_bond_type.CubicBondType"><tt class="xref py py-class docutils literal"><span class="pre">intermol.forces.cubic_bond_type.CubicBondType</span></tt></a></p>
<p>stub documentation</p>
</dd></dl>
<dl class="class">
<dt id="intermol.forces.cubic_bond_type.CubicBondType">
<em class="property">class </em><tt class="descclassname">intermol.forces.cubic_bond_type.</tt><tt class="descname">CubicBondType</tt><big>(</big><em>*args</em>, <em>**kwds</em><big>)</big><a class="reference internal" href="_modules/intermol/forces/cubic_bond_type.html#CubicBondType"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#intermol.forces.cubic_bond_type.CubicBondType" title="Permalink to this definition">¶</a></dt>
<dd><p>Bases: <a class="reference internal" href="intermol.forces.abstract_bond_type.html#intermol.forces.abstract_bond_type.AbstractBondType" title="intermol.forces.abstract_bond_type.AbstractBondType"><tt class="xref py py-class docutils literal"><span class="pre">intermol.forces.abstract_bond_type.AbstractBondType</span></tt></a></p>
<dl class="attribute">
<dt id="intermol.forces.cubic_bond_type.CubicBondType.C2">
<tt class="descname">C2</tt><a class="headerlink" href="#intermol.forces.cubic_bond_type.CubicBondType.C2" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="intermol.forces.cubic_bond_type.CubicBondType.C3">
<tt class="descname">C3</tt><a class="headerlink" href="#intermol.forces.cubic_bond_type.CubicBondType.C3" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="intermol.forces.cubic_bond_type.CubicBondType.c">
<tt class="descname">c</tt><a class="headerlink" href="#intermol.forces.cubic_bond_type.CubicBondType.c" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="intermol.forces.cubic_bond_type.CubicBondType.length">
<tt class="descname">length</tt><a class="headerlink" href="#intermol.forces.cubic_bond_type.CubicBondType.length" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="intermol.forces.cubic_bond_type.CubicBondType.order">
<tt class="descname">order</tt><a class="headerlink" href="#intermol.forces.cubic_bond_type.CubicBondType.order" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
</dd></dl>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="_sources/intermol.forces.cubic_bond_type.txt"
rel="nofollow">Show Source</a></li>
</ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
<input type="text" name="q" />
<input type="submit" value="Go" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
<p class="searchtip" style="font-size: 90%">
Enter search terms or a module, class or function name.
</p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li><a href="index.html">InterMol 0.2a1 documentation</a> »</li>
</ul>
</div>
<div class="footer">
© Copyright 2015, Christoph Klein, Christopher Lee, Ellen Zhong, and Michael Shirts.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2.3.
</div>
</body>
</html> | shirtsgroup/InterMol | doc/_build/html/intermol.forces.cubic_bond_type.html | HTML | mit | 6,931 |
{{/* Do not directly modify this file! */}}
{{/* Instead, create a `layout/partials/custom_head.html` file in your site and add your code to it. */}}
{{/* This partial is included in `themes/academic/layout/partials/site_head.html`. */}}
| calenwalshe/calenwalshe.github.io | themes/academic/layouts/partials/custom_head.html | HTML | mit | 239 |
<ion-view>
<div class="list">
<label class="item item-input">
<input type="text" placeholder="First Name">
</label>
<label class="item item-input">
<input type="text" placeholder="Last Name">
</label>
</div>
</div>
<div class="padding">
<button class="button button-block button-positive">Sign in</button>
</div>
</ion-view>
| kimak/ionic-places | www/src/login/login.html | HTML | mit | 410 |
---
---
<!doctype html>
<html class="default no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>LocationConfig | @uirouter/angular</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../assets/css/main.css">
<link rel="stylesheet" href="../assets/css/uirouter.css">
<script src="../assets/js/modernizr.js"></script>
<script src="../assets/js/reset.js"></script>
</head>
<body>
<header>
<div class="tsd-page-toolbar">
<div class="container">
<div class="table-wrap">
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
<div class="field">
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
<input id="tsd-search-field" type="text" />
</div>
<ul class="results">
<li class="state loading">Preparing search index...</li>
<li class="state failure">The search index is not available</li>
</ul>
<a href="../index.html" class="title">@uirouter/angular</a>
</div>
<div class="table-cell" id="tsd-widgets">
<div id="tsd-filter">
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
<div class="tsd-filter-group">
<!--
<div class="tsd-select" id="tsd-filter-visibility">
<span class="tsd-select-label">All</span>
<ul class="tsd-select-list">
<li data-value="public">Public</li>
<li data-value="protected">Public/Protected</li>
<li data-value="private" class="selected">All</li>
</ul>
</div>
<input type="checkbox" id="tsd-filter-inherited" checked />
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
-->
<input type="checkbox" id="tsd-filter-externals" checked />
<label class="tsd-widget" for="tsd-filter-externals">Internal UI-Router API</label>
<!--
<input type="checkbox" id="tsd-filter-only-exported" />
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
-->
</div>
</div>
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
</div>
</div>
</div>
</div>
<div class="tsd-page-title">
<div class="container">
<ul class="tsd-breadcrumb">
<li>
<a href="../index.html">@uirouter/angular</a>
</li>
<li>
<a href="../modules/common.html">common</a>
</li>
<li>
<a href="common.locationconfig.html">LocationConfig</a>
</li>
</ul>
<h1>Interface LocationConfig</h1>
</div>
</div>
</header>
<div class="container container-main">
<div class="row">
<div class="col-8 col-content">
<section class="tsd-panel tsd-comment">
<div class="tsd-comment tsd-typography">
<div class="lead">
<p>Returns low level URL configuration and metadata</p>
</div>
<p>This service returns information about the location configuration.
This service is primarily used when building URLs (e.g., for <code>hrefs</code>)</p>
<p>Implementors should pass these through to the underlying URL APIs.
The underlying URL mechanism might be browser APIs, framework APIs, or some 3rd party URL management library.</p>
<p>UI-Router Core includes two basic implementations:</p>
<ul>
<li><a href="../classes/vanilla.browserlocationconfig.html">BrowserLocationConfig</a></li>
<li><a href="../classes/vanilla.memorylocationconfig.html">MemoryLocationConfig</a></li>
</ul>
</div>
</section>
<section class="tsd-panel tsd-hierarchy">
<h3>Hierarchy</h3>
<ul class="tsd-hierarchy">
<li>
<a href="core.disposable.html" class="tsd-signature-type">Disposable</a>
<ul class="tsd-hierarchy">
<li>
<span class="target">LocationConfig</span>
<ul class="tsd-hierarchy">
<li>
<a href="url.urlconfigapi.html" class="tsd-signature-type">UrlConfigApi</a>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</section>
<section class="tsd-panel">
<h3>Implemented by</h3>
<ul class="tsd-hierarchy">
<li><a href="../classes/vanilla.browserlocationconfig.html" class="tsd-signature-type">BrowserLocationConfig</a></li>
<li><a href="../classes/vanilla.memorylocationconfig.html" class="tsd-signature-type">MemoryLocationConfig</a></li>
</ul>
</section>
<section class="tsd-panel-group tsd-index-group">
<h2>Index</h2>
<section class="tsd-panel tsd-index-panel">
<div class="tsd-index-content">
<section class="tsd-index-section ">
<h3>Properties</h3>
<ul class="tsd-index-list">
<li class="tsd-kind-property tsd-parent-kind-interface"><a href="common.locationconfig.html#basehref" class="tsd-kind-icon">base<wbr>Href</a></li>
<li class="tsd-kind-property tsd-parent-kind-interface"><a href="common.locationconfig.html#hashprefix" class="tsd-kind-icon">hash<wbr>Prefix</a></li>
<li class="tsd-kind-property tsd-parent-kind-interface"><a href="common.locationconfig.html#host" class="tsd-kind-icon">host</a></li>
<li class="tsd-kind-property tsd-parent-kind-interface"><a href="common.locationconfig.html#html5mode" class="tsd-kind-icon">html5<wbr>Mode</a></li>
<li class="tsd-kind-property tsd-parent-kind-interface"><a href="common.locationconfig.html#port" class="tsd-kind-icon">port</a></li>
<li class="tsd-kind-property tsd-parent-kind-interface"><a href="common.locationconfig.html#protocol" class="tsd-kind-icon">protocol</a></li>
</ul>
</section>
<section class="tsd-index-section tsd-is-inherited">
<h3>Methods</h3>
<ul class="tsd-index-list">
<li class="tsd-kind-method tsd-parent-kind-interface tsd-is-inherited"><a href="common.locationconfig.html#dispose" class="tsd-kind-icon">dispose</a></li>
</ul>
</section>
</div>
</section>
</section>
<section class="tsd-panel-group tsd-member-group ">
<h2>Properties</h2>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface">
<a name="basehref" class="tsd-anchor"></a>
<!--
<h3>base<wbr>Href</h3>
-->
<div class="tsd-signature tsd-kind-icon">base<wbr>Href<span class="tsd-signature-symbol">:</span> <a href="" class="tsd-signature-type">baseHref</a> <div class="tsd-header">
<p> See: <a href="../classes/url.urlconfig.html#basehref">UrlConfig.baseHref</a> </p>
</div>
</div>
<div class="tsd-declaration">
<div class="tsd-comment tsd-typography">
<div class="lead">
<p>See: <a href="../classes/url.urlconfig.html#basehref">UrlConfig.baseHref</a></p>
</div>
</div>
</div>
<aside class="tsd-sources">
<ul>
<li>Defined in ui-router-core/src/common/coreservices.ts:90</li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface">
<a name="hashprefix" class="tsd-anchor"></a>
<!--
<h3>hash<wbr>Prefix</h3>
-->
<div class="tsd-signature tsd-kind-icon">hash<wbr>Prefix<span class="tsd-signature-symbol">:</span> <a href="" class="tsd-signature-type">hashPrefix</a> <div class="tsd-header">
<p> See: <a href="../classes/url.urlconfig.html#hashprefix">UrlConfig.hashPrefix</a> </p>
</div>
</div>
<div class="tsd-declaration">
<div class="tsd-comment tsd-typography">
<div class="lead">
<p>See: <a href="../classes/url.urlconfig.html#hashprefix">UrlConfig.hashPrefix</a></p>
</div>
</div>
</div>
<aside class="tsd-sources">
<ul>
<li>Defined in ui-router-core/src/common/coreservices.ts:92</li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface">
<a name="host" class="tsd-anchor"></a>
<!--
<h3>host</h3>
-->
<div class="tsd-signature tsd-kind-icon">host<span class="tsd-signature-symbol">:</span> <a href="" class="tsd-signature-type">host</a> <div class="tsd-header">
<p> See: <a href="../classes/url.urlconfig.html#host">UrlConfig.host</a> </p>
</div>
</div>
<div class="tsd-declaration">
<div class="tsd-comment tsd-typography">
<div class="lead">
<p>See: <a href="../classes/url.urlconfig.html#host">UrlConfig.host</a></p>
</div>
</div>
</div>
<aside class="tsd-sources">
<ul>
<li>Defined in ui-router-core/src/common/coreservices.ts:89</li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface">
<a name="html5mode" class="tsd-anchor"></a>
<!--
<h3>html5<wbr>Mode</h3>
-->
<div class="tsd-signature tsd-kind-icon">html5<wbr>Mode<span class="tsd-signature-symbol">:</span> <a href="" class="tsd-signature-type">html5Mode</a> <div class="tsd-header">
<p> See: <a href="../classes/url.urlconfig.html#html5mode">UrlConfig.html5Mode</a> </p>
</div>
</div>
<div class="tsd-declaration">
<div class="tsd-comment tsd-typography">
<div class="lead">
<p>See: <a href="../classes/url.urlconfig.html#html5mode">UrlConfig.html5Mode</a></p>
</div>
</div>
</div>
<aside class="tsd-sources">
<ul>
<li>Defined in ui-router-core/src/common/coreservices.ts:91</li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface">
<a name="port" class="tsd-anchor"></a>
<!--
<h3>port</h3>
-->
<div class="tsd-signature tsd-kind-icon">port<span class="tsd-signature-symbol">:</span> <a href="" class="tsd-signature-type">port</a> <div class="tsd-header">
<p> See: <a href="../classes/url.urlconfig.html#port">UrlConfig.port</a> </p>
</div>
</div>
<div class="tsd-declaration">
<div class="tsd-comment tsd-typography">
<div class="lead">
<p>See: <a href="../classes/url.urlconfig.html#port">UrlConfig.port</a></p>
</div>
</div>
</div>
<aside class="tsd-sources">
<ul>
<li>Defined in ui-router-core/src/common/coreservices.ts:87</li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface">
<a name="protocol" class="tsd-anchor"></a>
<!--
<h3>protocol</h3>
-->
<div class="tsd-signature tsd-kind-icon">protocol<span class="tsd-signature-symbol">:</span> <a href="" class="tsd-signature-type">protocol</a> <div class="tsd-header">
<p> See: <a href="../classes/url.urlconfig.html#protocol">UrlConfig.protocol</a> </p>
</div>
</div>
<div class="tsd-declaration">
<div class="tsd-comment tsd-typography">
<div class="lead">
<p>See: <a href="../classes/url.urlconfig.html#protocol">UrlConfig.protocol</a></p>
</div>
</div>
</div>
<aside class="tsd-sources">
<ul>
<li>Defined in ui-router-core/src/common/coreservices.ts:88</li>
</ul>
</aside>
</section>
</section>
<section class="tsd-panel-group tsd-member-group tsd-is-inherited">
<h2>Methods</h2>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-interface tsd-is-inherited">
<a name="dispose" class="tsd-anchor"></a>
<!--
<h3>dispose</h3>
-->
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-interface tsd-is-inherited">
<li class="tsd-signature tsd-kind-icon">dispose<span class="tsd-signature-symbol">(</span>router<span class="tsd-signature-symbol">?: </span><a href="../classes/core.uirouter.html" class="tsd-signature-type">UIRouter</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span></li>
<li class="tsd-header">
<p> Instructs the Disposable to clean up any resources </p>
</li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<div class="tsd-comment tsd-typography">
<div class="lead">
<p>Instructs the Disposable to clean up any resources</p>
</div>
</div>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>router: <span class="tsd-flag ts-flagOptional">Optional</span> <a href="../classes/core.uirouter.html" class="tsd-signature-type">UIRouter</a></h5>
</li>
</ul>
<div class="tsd-returns">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span></h4>
</div>
<hr>
<aside class="tsd-sources">
<p>Inherited from <a href="core.disposable.html">Disposable</a>.<a href="core.disposable.html#dispose">dispose</a></p>
<ul>
<li>Defined in ui-router-core/src/interface.ts:121</li>
</ul>
</aside> </li>
</ul>
</section>
</section>
</div>
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
<nav class="tsd-navigation primary">
<ul>
<li class="globals ">
<a href="../index.html"><em>@uirouter/angular</em></a>
</li>
<li class="label tsd-is-external">
<span>Public API</span>
</li>
<li class="current tsd-kind-external-module">
<a href="../modules/common.html">common</a>
</li>
<li class=" tsd-kind-external-module">
<a href="../modules/core.html">core</a>
</li>
<li class=" tsd-kind-external-module">
<a href="../modules/directives.html">directives</a>
</li>
<li class=" tsd-kind-external-module">
<a href="../modules/params.html">params</a>
</li>
<li class=" tsd-kind-external-module">
<a href="../modules/resolve.html">resolve</a>
</li>
<li class=" tsd-kind-external-module">
<a href="../modules/state.html">state</a>
</li>
<li class=" tsd-kind-external-module">
<a href="../modules/transition.html">transition</a>
</li>
<li class=" tsd-kind-external-module">
<a href="../modules/url.html">url</a>
</li>
<li class=" tsd-kind-external-module">
<a href="../modules/view.html">view</a>
</li>
<li class="label tsd-is-external">
<span>Internal UI-<wbr><wbr>Router API</span>
</li>
<li class=" tsd-kind-external-module tsd-is-external">
<a href="../modules/common_hof.html">common_<wbr>hof</a>
</li>
<li class=" tsd-kind-external-module tsd-is-external">
<a href="../modules/common_predicates.html">common_<wbr>predicates</a>
</li>
<li class=" tsd-kind-external-module tsd-is-external">
<a href="../modules/common_strings.html">common_<wbr>strings</a>
</li>
<li class=" tsd-kind-external-module tsd-is-external">
<a href="../modules/hooks.html">hooks</a>
</li>
<li class=" tsd-kind-external-module tsd-is-external">
<a href="../modules/ng2.html">ng2</a>
</li>
<li class=" tsd-kind-external-module tsd-is-external">
<a href="../modules/path.html">path</a>
</li>
<li class=" tsd-kind-external-module tsd-is-external">
<a href="../modules/trace.html">trace</a>
</li>
<li class=" tsd-kind-external-module tsd-is-external">
<a href="../modules/vanilla.html">vanilla</a>
</li>
</ul>
</nav>
<nav class="tsd-navigation secondary menu-sticky">
<ul class="before-current">
</ul>
<ul class="current">
<li class="current tsd-kind-interface tsd-parent-kind-external-module">
<a href="common.locationconfig.html" class="tsd-kind-icon">Location<wbr>Config</a>
<ul>
<li class=" tsd-kind-property tsd-parent-kind-interface">
<a href="common.locationconfig.html#basehref" class="tsd-kind-icon">base<wbr>Href</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-interface">
<a href="common.locationconfig.html#hashprefix" class="tsd-kind-icon">hash<wbr>Prefix</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-interface">
<a href="common.locationconfig.html#host" class="tsd-kind-icon">host</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-interface">
<a href="common.locationconfig.html#html5mode" class="tsd-kind-icon">html5<wbr>Mode</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-interface">
<a href="common.locationconfig.html#port" class="tsd-kind-icon">port</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-interface">
<a href="common.locationconfig.html#protocol" class="tsd-kind-icon">protocol</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-interface tsd-is-inherited">
<a href="common.locationconfig.html#dispose" class="tsd-kind-icon">dispose</a>
</li>
</ul>
</li>
</ul>
<ul class="after-current">
</ul>
</nav>
</div>
</div>
</div>
<footer class="with-border-bottom">
<div class="container">
<h2>Legend</h2>
<div class="tsd-legend-group">
<ul class="tsd-legend">
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
</ul>
</div>
</div>
</footer>
<div class="container tsd-generator">
<p>Generated using <a href="http://typedoc.io" target="_blank">TypeDoc</a></p>
</div>
<div class="overlay"></div>
<script src="../assets/js/main.js"></script>
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
</body>
</html> | ui-router/ui-router.github.io | _ng2_docs/4.0.0/interfaces/common.locationconfig.html | HTML | mit | 22,297 |
---
layout: default
title: Grid - Marginless Combinations
class: styleguide
---
{% include styleguide/grid/marginless/combinations/index.html %}
| quattromani/chris-cardio | styleguide/grid/marginless/combinations/index.html | HTML | mit | 146 |
<!--$Id: txn_check.so,v 1.8 2003/10/18 19:16:16 bostic Exp $-->
<!--Copyright (c) 1997,2008 Oracle. All rights reserved.-->
<!--See the file LICENSE for redistribution information.-->
<html>
<head>
<title>Berkeley DB Reference Guide: Release 3.1: txn_checkpoint</title>
<meta name="description" content="Berkeley DB: An embedded database programmatic toolkit.">
<meta name="keywords" content="embedded,database,programmatic,toolkit,btree,hash,hashing,transaction,transactions,locking,logging,access method,access methods,Java,C,C++">
</head>
<body bgcolor=white>
<table width="100%"><tr valign=top>
<td><b><dl><dt>Berkeley DB Reference Guide:<dd>Upgrading Berkeley DB Applications</dl></b></td>
<td align=right><a href="../upgrade.3.1/memp_register.html"><img src="../../images/prev.gif" alt="Prev"></a><a href="../toc.html"><img src="../../images/ref.gif" alt="Ref"></a><a href="../upgrade.3.1/env.html"><img src="../../images/next.gif" alt="Next"></a>
</td></tr></table>
<p align=center><b>Release 3.1: txn_checkpoint</b></p>
<p>An additional argument has been added to the txn_checkpoint function.</p>
<p>The application should be searched for any occurrences of
txn_checkpoint. For each one, an argument of 0 should be appended to
the current arguments.</p>
<table width="100%"><tr><td><br></td><td align=right><a href="../upgrade.3.1/memp_register.html"><img src="../../images/prev.gif" alt="Prev"></a><a href="../toc.html"><img src="../../images/ref.gif" alt="Ref"></a><a href="../upgrade.3.1/env.html"><img src="../../images/next.gif" alt="Next"></a>
</td></tr></table>
<p><font size=1>Copyright (c) 1996,2008 Oracle. All rights reserved.</font>
</body>
</html>
| djsedulous/namecoind | libs/db-4.7.25.NC/docs/ref/upgrade.3.1/txn_check.html | HTML | mit | 1,672 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Manning Publications Co.</title>
<link href="styles/mainhome.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="Container"><div id="ContainerContent">
<!-- BEGIN HEADER -->
<table cellspacing="5" width="100%" border=0>
<tr align="right">
<td colspan="2">
<!--img src="images/top_button_home.jpg" border="0" alt="Home"-->
<a href="/about/orderinfo.html"><img src="images/top_button_ordering.jpg" border="0" alt="Ordering"></a>
<a href="http://ycart.manning.com"><img src="images/top_button_shoppingcart.jpg" border="0" alt="Shopping Cart"></a>
</td>
</tr>
<tr align="center">
<td align="left" style="text-indent: 130px;"><img src="images/masthead.jpg" border="0" alt="Manning Logo"></td>
<td width="225" valign="middle">
<!-- SiteSearch Google -->
<div class="searchbox">
<form action="http://www.manning.com/search/results" id="cse-search-box">
<div>
<b><font color="white">Search manning.com</font></b>
<input type="hidden" name="cx" value="008207406337866288189:vej9zumcdec" />
<input type="hidden" name="cof" value="FORID:9" />
<input type="hidden" name="ie" value="UTF-8" />
<input type="text" name="q" size="17" />
<input type="submit" name="sa" value="Search" />
</div>
</form>
<script type="text/javascript" src="//www.google.com/cse/brand?form=cse-search-box&lang=en"></script>
</div>
<!-- SiteSearch Google -->
</td>
</tr>
</table>
<!-- END HEADER -->
<div id="navbar">
<div style="border: 3px solid #CECFCE;font-family: Arial,Helvetica,sans-serif;font-weight: bold;font-size: 11px;">
<div style="color: #000000;text-align: center;background-color: #CECFCE; padding: 4px;"> Keep up with <br>Manning for special <br>offers and updates</div>
<div style="color: #000000;text-align: left;padding: 3px 2px 2px 2px; font-size: 10px;"><img src="/images/mailbox.gif" border="0" align="top"/> <a href="http://ui.constantcontact.com/d.jsp?m=1101335703814&p=oi" target="_blank">Receive our email <br> newsletter</a></div>
<div style="color: #000000;text-align: left;padding: 1px 2px 3px 2px; font-size: 10px;"> <img src="/images/twitter-16x16.png" border=0/> <a href="http://twitter.com/manningbooks" target="_blank">Follow Manning <br> on Twitter</a></div>
<div style="color: #000000;text-align: left;padding: 1px 1px 3px 3px; font-size: 10px;"> <img src="/images/facebookF.gif" border=0/> <a href="http://www.facebook.com/pages/Manning-Publications/234472245021?ref=nf" target="_blank">Become a Manning<br> Facebook fan</a></div>
</div>
<div class="navlinks">
<h2>Catalog</h2>
<a href="/catalog/java">Java</a>
<a href="/catalog/dotnet">Microsoft & .NET</a>
<a href="/catalog/">All by Title</a>
<a href="/catalog/by/subject">All by Subject</a>
<a href="/catalog/mobile">Mobile Formats</a>
<h2>Author Blogs</h2>
<script language="JavaScript" src="/navblog.js" type="text/javascript"></script>
<noscript>
<a href="http://www.jroller.com/habuma/" target="_blank">Craig Walls</a>
<a href="http://iphoneinaction.manning.com/" target="_blank">iPhone in Action</a>
<a href="http://www.peterarmstrong.com/" target="_blank">Peter Armstrong</a>
<a href="http://www.jroller.com/aalmiray/" target="_blank">Andres Almiray</a>
<a href="http://dablog.rubypal.com/" target="_blank">David Black</a>
</noscript>
<a href="/about/blogs.html">more...</a>
<h2>Author Calendar</h2>
<a href="/calendar/">Manning Author Events</a>
<h2>About</h2>
<a href="/about/index.html">Manning</a>
<a href="/about/contactus.html">Contact Us</a>
<a href="/about/orderinfo.html">Ordering</a>
<a href="/about/support.html">Support</a>
<a href="/about/ebooks.html">eBooks</a>
<a href="/about/covers.html">Covers</a>
<a href="http://www.manning-sandbox.com/forumindex.jspa">Sandbox Forums</a>
<a href="/about/distributors.html">Distributors</a>
<a href="/about/meap.html">Manning Early Access Program (MEAP)</a>
<a href="/about/publicity.html">Press</a>
<a href="/academic">Academic</a>
<a href="/ugprogram">User Group Program</a>
<a href="/about/jobs.html">Jobs</a>
</div>
<p class="menugrey">
Manning Publications Co.<br/>
<i>20 Baldwin Road<br/>
PO Box 261<br/>
Shelter Island, NY 11964</i></p>
</div>
<div id="content">
<table>
<tr>
<td width="36%" valign="top">
<!--tr>
<td width="611" valign="top">
<table>
<tr>
<td align="center" colspan="2"><a href="/popquiz"><img src="/images/quizbanner2.gif" STYLE="padding-bottom: 5px"></a></td>
</tr>
<tr>
<td width="50%" valign="top"-->
<a name="featured" id="featured"></a>
<h5><font color="white">New Releases</font></h5>
<table class="Releases">
<tr>
<td>
<a href="helmick"><img align="left" src="/helmick/helmick_3d.gif"/></a>
<br><a href="helmick"><strong>Learn Windows IIS in a Month of Lunches</strong></a>
<br>
<br>
<font color="gray">pBook coming January 16th<br>
ePub + Kindle coming January 30th</font>
<p>An innovative tutorial designed for busy administrators. Just set aside one hour a day—lunchtime would be perfect—for a month, and you'll be managing, securing, and automating IIS administrative tasks faster than you thought possible.</p>
</td>
</tr>
</table>
<table class="Releases">
<tr>
<td>
<a href="dwood"><img align="left" src="/dwood/dwood_3d.gif"/></a>
<br><a href="dwood"><strong>Linked Data</strong></a>
<br>
<br>
<font color="gray">pBook coming January 15th<br>
ePub + Kindle coming January 30th</font>
<p>Presents the Linked Data model in plain, jargon-free language to web developers. Avoiding the overly academic terminology of the Semantic Web, this new book presents practical techniques using everyday tools like JavaScript and Python.</p>
</td>
</tr>
</table>
<table class="Releases">
<tr>
<td>
<a href="binkley"><img align="left" src="/binkley/binkley_3d.gif"/></a>
<br><a href="binkley"><strong>Windows Phone 8 in Action</strong></a>
<br>
<br>
<font color="gray">ePub + Kindle coming January 30th</font>
<p>A comprehensive guide to developing apps for the WP8 platform. It covers the Windows Phone Runtime and .NET APIs used to work with a phone's sensors and hardware, including the accelerometer, camera, gyroscope, GPS, and microphone.</p>
</td>
</tr>
</table>
<table class="Releases">
<tr>
<td>
<a href="sande2"><img align="left" src="/sande2/sande2_3d.gif"/></a>
<br><a href="sande2"><strong>Hello World! Second Edition</strong></a>
<p>A gentle but thorough introduction to the world of computer programming. It's written in language a 12-year-old can follow, but anyone who wants to learn how to program a computer can use it. Even adults. This updated revision of the best-selling first edition is kid-tested and parent-approved.</p>
</td>
</tr>
</table>
<table class="Releases">
<tr>
<td>
<a href="osherove2"><img align="left" src="/osherove2/osherove2_3d.gif"/></a>
<br><a href="osherove2"><strong>The Art of Unit Testing, Second Edition</strong></a>
<p>Guides you step by step from writing your first simple tests to developing robust test sets that are maintainable, readable, and trustworthy. You'll master the foundational ideas and quickly move to high-value subjects like mocks, stubs, and isolation, including frameworks such as Moq, FakeItEasy and Typemock Isolator.</p>
</td>
</tr>
</table>
<br>
<h5><font color="white">Recent Releases</font></h5>
<p>
<table class="Releases">
<tr>
<td>
<a href="papapetrou"><img hspace="8" align="left" src="/papapetrou/papapetrou_cover90.jpg"/></a>
<a href="papapetrou"><strong>SonarQube in Action</strong></a>
<p>Teaches you how to effectively use SonarQube following the continuous inspection model. The book presents SQ's core Seven Axes of Quality: design /architecture, duplications, comments, unit tests, complexity, potential bugs, and coding rules.</p>
</td>
</tr>
</table>
<table class="Releases">
<tr>
<td>
<a href="cantelon"><img hspace="8" align="left" src="/cantelon/cantelon_cover90.jpg"/></a>
<a href="cantelon"><strong>Node.js in Action</strong></a>
<p>An example-driven tutorial that starts at square one and guides you through all the features, techniques, and concepts you'll need to build production-quality Node applications.</p>
</td>
</tr>
</table>
<table class="Releases">
<tr>
<td>
<a href="hilton"><img hspace="8" align="left" src="/hilton/hilton_cover90.jpg"/></a>
<a href="hilton"><strong>Play for Scala</strong></a>
<p>Teaches you to build Scala-based web applications using Play 2. Along the way, you'll deepen your knowledge of Scala and learn to work with tools like Akka.</p>
</td>
</tr>
</table>
<table class="Releases">
<tr>
<td>
<a href="mikowski"><img hspace="8" align="left" src="/mikowski/mikowski_cover90.jpg"/></a>
<a href="mikowski"><strong>Single Page Web Applications</strong></a>
<p>Shows how to build modern browser-based apps that take advantage of stronger client platforms and more predictable bandwidth. You'll learn the SPA design approach, and then start exploring new techniques, like structured JavaScript and responsive design.</p>
</td>
</tr>
</table>
<table class="Releases">
<tr>
<td>
<a href="kousen"><img hspace="8" align="left" src="/kousen/kousen_cover90.jpg"/></a>
<a href="kousen"><strong>Making Java Groovy</strong></a>
<p>A practical handbook for developers who want to blend Groovy into their day-to-day work with Java. It guides you through realistic development challenges and shows how Groovy can help overcome them.</p>
</td>
</tr>
</table>
<table class="Releases">
<tr>
<td>
<a href="skeet3"><img hspace="8" align="left" src="/skeet3/skeet3_cover90.jpg"/></a>
<a href="skeet3"><strong>C# in Depth, Third Edition</strong></a>
<p>Updates the best-selling second edition to cover the new features of C# 5, including the challenges of writing maintainable asynchronous code. This third edition preserves the uniquely insightful look into the tricky areas and dusty corners of C# that only expert Jon Skeet can provide.</p>
</td>
</tr>
</table>
<table class="Releases">
<tr>
<td>
<a href="back"><img hspace="8" align="left" src="/back/back_cover90.jpg"/></a>
<a href="back"><strong>Mondrian in Action</strong></a>
<p>Teaches you to use Mondrian for strategic business analysis. You'll learn how to populate and design a data warehouse and present the data via a multidimensional model.</p>
</td>
</tr>
</table>
<table class="Releases">
<tr>
<td>
<a href="hume"><img hspace="8" align="left" src="/hume/hume_cover90.jpg"/></a>
<a href="hume"><strong>Fast ASP.NET Websites</strong></a>
<p>Delivers just what it promises—practical, hands-on guidance to create faster, more efficient ASP.NET sites and applications.</p>
</td>
</tr>
</table>
<table class="Releases">
<tr>
<td>
<a href="mccreary"><img hspace="8" align="left" src="/mccreary/mccreary_cover90.jpg"/></a>
<a href="mccreary"><strong>Making Sense of NoSQL</strong></a>
<p>Written in plain language suitable for technical managers and developers, and using many examples, use cases, and illustrations, this book explains the concepts, features, benefits, potential, and limitations of NoSQL.</p>
</td>
</tr>
</table>
<table class="Releases">
<tr>
<td>
<a href="mitchell2"><img hspace="8" align="left" src="/mitchell2/mitchell2_cover90.jpg"/></a>
<a href="mitchell2"><strong>Using the TI-83 Plus/TI-84 Plus</strong></a>
<p>A hands-on guide to these two powerful graphing calculators. This easy-to-follow book includes terrific tutorials and plenty of exercises and examples that let you learn by doing.</p>
</td>
</tr>
</table>
<table class="Releases">
<tr>
<td>
<a href="wood"><img hspace="8" align="left" src="/wood/wood_cover90.jpg"/></a>
<a href="wood"><strong>Extending jQuery</strong></a>
<p>Teaches you to build custom extensions to the jQuery library. This book covers all the extension points within jQuery and provides guidelines and techniques on how to make use of them.</p>
</td>
</tr>
</table>
<br>
<!--COLUMN 2-->
</td>
<td width="36%" valign="top" STYLE="padding-left: 10px">
<!--/td><td width="50%" valign="top" STYLE="padding-left: 10px"-->
<!--div style="border-top: 4px solid #c8c8c8; border-bottom: 4px solid #c8c8c8; margin: 10px 5px 5px 5px"-->
<!--div style="text-align:center"><img src="images/Hellopaper8.gif" border="0" ISMAP USEMAP="#hellopapermap"></div>
<map NAME="hellopapermap">
<area SHAPE="rect" COORDS="78,78,124,88" HREF="http://www.manning.com/free/green_bernard.html">
<area SHAPE="rect" COORDS="207,77,254,89" HREF="http://www.manning.com/bernard">
<area SHAPE="rect" COORDS="36,91,120,102" HREF="http://www.manning.com/bernard">
<area SHAPE="rect" COORDS="181,126,227,137" HREF="http://www.manning.com/free/green_boag.html">
<area SHAPE="rect" COORDS="79,138,202,152" HREF="/boag">
</map>
<br-->
<a name="meapssum"></a>
<h5><font color="white">AVAILABLE ONLY AT MANNING.COM</font></h5>
<div style="background-color: #E4ECF0; margin: 0px 0px 10px 0px; padding: 7px 7px 4px 7px">
<table cellspacing="0" border="0" style="margin: 5px 0px 0px 0px; background-color: #E4ECF0">
<tr style="background-color: #E4ECF0">
<td valign="center" style="background-color: #E4ECF0"><img src="/images/meaplog2.jpg" border="0"/></td>
<td valign="center" style="background-color: #E4ECF0"><a href="/about/meap"><font class="mrdred16">Manning Early Access Program</font></a></td>
</tr>
</table>
<div style="margin: 0px 0px 0px 15px">
<p>Read a book chapter-by-chapter while it's being written and get the final eBook as soon as it's finished. If you pre-order the pBook, you'll get it long before it's available in stores. Each book has <a href="http://www.manning-sandbox.com/category.jspa?categoryID=3" target="_blank">Author Online Forum</a> where you can ask questions, provide feedback, and help shape the final content.</p>
<div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div> NEW CHAPTER
<br><br>
<font class="mrdblack14">DATA SCIENCE</font>
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/marz"><font class="mrdred12">Big Data</font></a><!--pM1e--> (8/11)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/hinman"><font class="mrdred12">Elasticsearch in Action</font></a><!--pM1e--> (5/14)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/saltzer"><font class="mrdred12">Impala in Action</font></a><!--pM1e--> (3/10)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/banker2"><font class="mrdred12">MongoDB in Action, Second Edition</font></a><!--pM1e--> (6/12)
<br><!--pM1s-->
<a href="/partner"><font class="mrdred12">Neo4j in Action</font></a><!--pM1e--> (10/10)
<br><!--pM1s-->
<a href="/tjones"><font class="mrdred12">Pig in Action</font></a><!--pM1e--> (7/11)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/obe2"><font class="mrdred12">PostGIS in Action, Second Edition</font></a><!--pM1e--> (12/17)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/zumel"><font class="mrdred12">Practical Data Science with R</font></a><!--pM1e--> (8/12)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/brink"><font class="mrdred12">Real-World Machine Learning</font></a><!--pM1e--> (2/10)
<br><!--pM1s-->
<a href="/grainger"><font class="mrdred12">Solr in Action</font></a><!--pM1e--> (16/16)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/sallen"><font class="mrdred12">Storm Applied</font></a><!--pM1e--> (3/10)
<br>
<br><font class="mrdblack14">JAVA</font>
<br><!--pM1s-->
<a href="/panda2"><font class="mrdred12">EJB 3 in Action, Second Edition</font></a><!--pM1e--> (15/15)
<br><!--pM1s-->
<a href="/muschko"><font class="mrdred12">Gradle in Action</font></a><!--pM1e--> (15/15)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/gsmith2"><font class="mrdred12">Grails in Action, Second Edition</font></a><!--pM1e--> (17/20)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/koenig2"><font class="mrdred12">Groovy in Action, Second Edition</font></a><!--pM1e--> (20/20)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/urma"><font class="mrdred12">Java 8 Lambdas in Action</font></a><!--pM1e--> (5/12)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/bauer3"><font class="mrdred12">Java Persistence with Hibernate, Second Edition</font></a><!--pM1e--> (17/19)
<br><!--pM1s-->
<a href="/wright"><font class="mrdred12">ManifoldCF in Action</font></a><!--pM1e--> (12/12)
<br><!--pM1s-->
<a href="/dossot2"><font class="mrdred12">Mule in Action, Second Edition</font></a><!--pM1e--> (14/14)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/walls5"><font class="mrdred12">Spring in Action, Fourth Edition</font></a><!--pM1e--> (13/20)
<br>
<br><font class="mrdblack14">JAVA CERTIFICATION</font>
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/gupta2"><font class="mrdred12">OCP Java SE 7 Programmer II Certification Guide</font></a><!--pM1e--> (7/13)
<br>
<br><font class="mrdblack14">MICROSOFT/.NET</font>
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/siddaway3"><font class="mrdred12">Learn Active Directory Management in a Month of Lunches</font></a><!--pM1e--> (22/22)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/bannan"><font class="mrdred12">Learn SCCM 2012 in a Month of Lunches</font></a><!--pM1e--> (5/23)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/jones5"><font class="mrdred12">Learn SQL Server Administration in a Month of Lunches</font></a><!--pM1e--> (5/23)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/beall"><font class="mrdred12">LightSwitch in Action</font></a><!--pM1e--> (9/12)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/synhershko"><font class="mrdred12">RavenDB in Action</font></a><!--pM1e--> (5/10)
<!--br>
<br><font class="mrdblack14"> MISCELLANEOUS</font-->
<br>
<br><font class="mrdblack14">MOBILE TECHNOLOGY</font>
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/lim2"><font class="mrdred12">iOS 7 in Action</font></a><!--pM1e--> (13/13)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/loftus"><font class="mrdred12">Learn Android Fundamentals in a Month of Lunches</font></a><!--pM1e--> (4/24)
<br><!--pM1s-->
<br>
<br><font class="mrdblack14">PROGRAMMING</font>
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/roestenburg"><font class="mrdred12">Akka in Action</font></a><!--pM1e--> (11/16)
<br><!--pM1s--><a href="/rathore2"><font class="mrdred12">Clojure in Action, Second Edition</font></a><!--pM1e--> (10/15)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/juric"><font class="mrdred12">Elixir in Action</font></a><!--pM1e--> (3/11)
<br><!--pM1s-->
<a href="/petricek2"><font class="mrdred12">F# Deep Dives</font></a><!--pM1e--> (7/15)
<br><!--pM1s-->
<a href="/bjarnason"><font class="mrdred12">Functional Programming in Scala</font></a><!--pM1e--> (15/15)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/beer"><font class="mrdred12">Hello App Inventor!</font></a><!--pM1e--> (8/15)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/maurer"><font class="mrdred12">Netty in Action</font></a><!--pM1e--> (16/17)
<br><!--pM1s-->
<a href="/kapur"><font class="mrdred12">Programming for Musicians and Digital Artists</font></a><!--pM1e--> (9/11)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/roy"><font class="mrdred12">RabbitMQ in Depth</font></a><!--pM1e--> (6/16)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/suereth2"><font class="mrdred12">SBT in Action</font></a><!--pM1e--> (8/13)
<br><!--pM1s-->
<a href="/carrero2"><font class="mrdred12">Scalatra in Action</font></a><!--pM1e--> (7/12)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/fogus2"><font class="mrdred12">The Joy of Clojure, Second Edition</font></a><!--pM1e--> (17/17)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/abernethy"><font class="mrdred12">The Programmer's Guide to Apache Thrift</font></a><!--pM1e--> (9/18)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/black3"><font class="mrdred12">The Well-Grounded Rubyist, Second Edition</font></a><!--pM1e--> (8/15)
<br>
<br><font class="mrdblack14">SOFTWARE ENGINEERING</font>
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/smart"><font class="mrdred12">BDD in Action</font></a><!--pM1e--> (8/12)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/mcquaid"><font class="mrdred12">Git in Practice</font></a><!--pM1e--> (4/15)
<br><!--pM1s-->
<a href="/hammarberg"><font class="mrdred12">Kanban in Action</font></a><!--pM1e--> (13/13)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/kabacoff2"><font class="mrdred12">R in Action, Second Edition</font></a><!--pM1e--> (20/21)
<br><!--pM1s-->
<a href="/ellnestam"><font class="mrdred12">The Mikado Method</font></a><!--pM1e--> (9/9)
<br>
<br><font class="mrdblack14">WEB DEVELOPMENT</font>
<br><!--pM1s-->
<a href="/bford"><font class="mrdred12">AngularJS in Action</font></a><!--pM1e--> (6/9)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/rubalcava"><font class="mrdred12">ArcGIS Web Development</font></a><!--pM1e--> (5/7)
<br><!--pM1s-->
<a href="/breed"><font class="mrdred12">Backbone.js in Action</font></a><!--pM1e--> (4/12)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/lee"><font class="mrdred12">CoffeeScript in Action</font></a><!--pM1e--> (13/13)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/hossain"><font class="mrdred12">CORS in Action</font></a><!--pM1e--> (4/8)
<br><!--pM1s-->
<a href="/skeie"><font class="mrdred12">Ember.js in Action</font></a><!--pM1e--> (11/11)
<br><!--pM1s-->
<a href="/garcia3"><font class="mrdred12">Ext JS in Action, Second Edition</font></a><!--pM1e--> (14/14)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/sholmes"><font class="mrdred12">Getting MEAN</font></a><!--pM1e--> (3/10)
<br><!--pM1s--><a href="/crowther2"><font class="mrdred12">HTML5 in Action</font></a><!--pM1e--> (9/9)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/bevacqua"><font class="mrdred12">JavaScript Application Design</font></a><!--pM1e--> (3/12)
<br><!--pM1s--><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div>
<a href="/vantoll"><font class="mrdred12">jQuery UI in Action</font></a><!--pM1e--> (6/12)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/surguy"><font class="mrdred12">Laravel in Action</font></a><!--pM1e--> (4/18)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/young"><font class="mrdred12">Node.js in Practice</font></a><!--pM1e--> (8/15)
<br><!--pM1s-->
<a href="/leroux"><font class="mrdred12">Play for Java</font></a><!--pM1e--> (12/12)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/bigg2"><font class="mrdred12">Rails 4 in Action</font></a><!--pM1e--> (17/17)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/rotton"><font class="mrdred12">Responsive WordPress</font></a><!--pM1e--> (8/10)
<br><div style='position:absolute; display:block; margin-left:-20px'><img src='/images/MEAP_star.gif' align='Absmiddle'/></div><!--pM1s-->
<a href="/dsande"><font class="mrdred12">Sass in Depth</font></a><!--pM1e--> (3/16)
<br><!--pM1s-->
<a href="/carver"><font class="mrdred12">The Responsive Web</font></a><!--pM1e--> (9/9)
<br><!--pM1s-->
<a href="/buckett2"><font class="mrdred12">Web Components in Action</font></a><!--pM1e--> (4/8)
<!--p>
<a href="/"><font class="mrdred14">Early Access Catalog</font></a>
</p-->
</div>
</div>
<a name="news" id="news"></a>
<h5><font color="white">Manning in the News</font></h5>
<div style="background-color: #DDE6EB; margin: 0px 0px 10px 0px; padding: 7px 7px 4px 7px">
<!--div style="background-color: #C7DDE9;font-size:9px;font-style:italic">April, 2009</div-->
<p>Here's the latest about Manning books and authors. <a href="/newsarchive.html">Read more Manning news.</a></p>
<p><span style="font-style:italic; font-weight:bold; font-size:90%">December, 2013: </span>
<a href="http://deals.manningpublications.com/countdown2014.html" target="_blank">The Countdown to 2014</a> has begun. Enter to win a free Mini iPad. This year sponsors include: <a href="http://typesafe.com/" target="_blank">Typesafe</a>, <a href="http://www.gopivotal.com/" target="_blank">goPivotal</a>, and <a href="http://www.coderanch.com/forums" target="_blank">CodeRanch</a>.</p>
<p><span style="font-style:italic; font-weight:bold; font-size:90%">Dec 2-3, 2013: </span>
We are pleased to sponsor <a href="http://skillsmatter.com/event/scala/scala-exchange-2013" target="_blank">scala eXchange</a> in London.</p>
<p><span style="font-style:italic; font-weight:bold; font-size:90%">Oct 12, 2013: </span>
Meet Jon Skeet of <a href="/skeet3"><i>C# in Depth, Third Edition</i></a> at <a href="http://leetspeak.se/2013/thank-you-manning/" target="_blank">Leedspeak</a> in Stockholm, Sweden.</p>
<p><span style="font-style:italic; font-weight:bold; font-size:90%">Oct 12-13, 2013: </span>
Meet Chris Eppstein of <a href="/netherland">Sass and Compass in Action</a> and Dale Sande of <a href="/dsande">Sass in Depth</a> in New York at <a href="http://sassconf.com/" target="_blank">Sassconf</a>. We're sponsoring and offering a 45% discount to all attendees on all eBooks, pBooks and MEAPs.</p>
<p><span style="font-style:italic; font-weight:bold; font-size:90%">Nov 4-7, 2013: </span>
Don't miss <a href="http://lucenerevolution.org/" target="_blank">Lucene/Solr Revolution 2013</a> in Dublin, Ireland. Featured speakers include: Trey Grainger, Timothy Potter, Erik Hatcher, Michael Hausenblas, Grant Ingersoll, Otis Gospodnetic, and Radu Gheorghe.</p>
<p><span style="font-style:italic; font-weight:bold; font-size:90%">October 21-23, 2013: </span>
Meet Mike Mikowski of <a href="/mikowski"><i>Single Page Web Applications</i></a> at <a href="http://html5devconf.com/" target="_blank">HTML5 Developer Conference</a> October 21-23 in San Francisco, CA at the Moscone Center.</p>
<p><span style="font-style:italic; font-weight:bold; font-size:90%">September 21-23, 2013: </span>
Manning is pleased to sponsor <a href="http://ncdevcon.com/" target="_blank">NCDevCon</a> - North Carolina's Premier Web & Mobile Conference in Raleigh, North Carolina.</p>
<p><span style="font-style:italic; font-weight:bold; font-size:90%">September 12-13, 2013: </span>
We are pleased to sponsor <a href="http://www.datagotham.com/" target="_blank">DataGotham: Empire State of Data</a>.</p>
<p><span style="font-style:italic; font-weight:bold; font-size:90%">August 8, 2013</span>
Join us for <a href="http://deals.manningpublications.com/responsivewebsubs.html" target="_blank">The Responsive Web Summit</a> at 2pm EST.</p>
<p><span style="font-style:italic; font-weight:bold; font-size:90%">September 27-28, 2013:</span>
Manning is excited to sponsor <a href="http://overtheair.org/blog/" target="_blank">Over the Air 2013</a> in Bletchley, UK September 27-28, 2013.</p>
<p><span style="font-style:italic; font-weight:bold; font-size:90%">September 18-20, 2013:</span>
Coming September 18-20 is <a href="http://lanyrd.com/2013/strange-loop/" target="_blank">StrangeLoop</a>. We're sponsoring the event with brand new books in print, free eBooks, and author signings.</p>
<p><span style="font-style:italic; font-weight:bold; font-size:90%">June 13-14, 2013:</span>
We're sponsoring <a href="http://events.jquery.org/2013/portland/" target="_blank">jQuery Portland 2013</a>.</p>
<p><span style="font-style:italic; font-weight:bold; font-size:90%">May 2013:</span>
Thursday in May meet Matthew Groves of <a href="/groves">AOP in .NET</a> for a webinar series hosted by <a href="https://www3.gotomeeting.com/register/189817950" target="_blank">PostSharp</a>.</p>
<p><span style="font-style:italic; font-weight:bold; font-size:90%">April 25-27, 2013:</span>
Meet James Bender, Matt Groves, Jimmy Bogard at <a href="http://www.codepalousa.com/" target="_blank">CodePalousa</a>.</p>
</div>
</td>
<!-- END COLUMN 2 -->
<!-- COLUMN 3 -->
<!--/tr>
</table>
</td-->
<td valign="top">
<!--div class="rightColPromotion">
<div style="color: #B51A13;text-align: center;background-color: #BDBDBD; padding: 4px; font-size: 11px;">Want a discount?<br>Check out this week's promotions</div>
<div style="color: #000000;text-align: center;padding: 3px 2px 2px 2px; font-size: 11px;background-color: #ffffff;">35% off when you <a href="/greenpaperarchive.html" target="_blank">download any green paper</a></div>
</div>
<br-->
<div class="rightColHeader">DEAL OF THE DAY</div>
<div class="dotdbox">
<div style="color: #000000;text-align: center;padding: 3px 2px 0px 2px; font-size: 11px;background-color: #ffffff;">
<script language="JavaScript" src="http://incsrc.manningpublications.com/dotd.js" type="text/javascript"></script>
<p><span style="font-size: 11px;"><a href="/free/dotd.html">Get the Deal of the Day email alert</a></span></p>
</div>
</div>
<a href="https://account.manning.com" target="_blank"><img src="/images/beta-account-card.png" style="text-align: center;margin: 0px 0px 8px 8px; padding: 0px" alt="Manning user accounts"/></a>
<div class="rightColHeader">
<a href="/greenpaperarchive.html" style="color: #ffffff;font-weight: bold;font-size: 11pt;">FREE CONTENT CENTER</a>
</div>
<div class="rightColBox">
<p><a href="/free/green_skeet3.html"><span class="greencolH">A Quick Sweep through C#</span></a>
<br>Each new version of C# has added significant features to reduce developer angst, but always in a carefully considered way, and with little backward incompatibility. In this greenpaper, based on <a href="/skeet3">C# in Depth, Third Edition</a>, author Jon Skeet gives an overview what C# can do.</p>
<p><a href="/free/excerpt_mueller.html"><span class="excerptcolH">The Browser Binding with a CMIS Repository</span></a>
<br>CMIS 1.0 defines two bindings, the Web Services binding and the AtomPub binding; and CMIS 1.1 adds a third, the Browser binding. In this article, based on chapter 11 of <a href="/mueller">CMIS and Apache Chemistry in Action</a>, the authors discuss Browser binding.</p>
<p>There are over 200 articles, green papers, and sample chapters in the Free Content Center, with more added continuously.</p>
<p><a href="/greenpaperarchive.html" style="font-weight: bold">Discover the Free Content Center.</a></p>
</div>
<div style="background-color: #FFFFFF ; padding: 8px 4px 4px 6px; margin: 0px 9px 9px 9px; font-size: 11px; font-weight: bold;">
<div style="font-stretch: condensed; font-weight: bold; padding-bottom: 5px;">Manning uses the oXygen XML Editor<br></div>
<span style="color: #007ba7"> "oXygen has all the reviewing tools our authors and editorial staff depend on, with change-tracking and commenting and many features needed behind the scenes. Tools that are so powerful and so easy to learn are rare."</span>
<div style="font-stretch: condensed; font-weight: bold; padding-top: 5px;">Benjamin Berg</div>
<span style="font-weight: normal; font-stretch: extra-condensed;">XML Team Manager, Manning Publications</span>
</div>
<a name="bestsell" id="bestsell"></a>
<div class="bestsellHeader"><h2>PRINT BESTSELLERS<br>December 29, 2013</h2></div>
<div class="bestsellBox">
<ol>
<li><a href="/resig">Secrets of the JavaScript Ninja</a></li>
<li><a href="/cantelon">Node.js in Action</a></li>
<li><a href="/jones3">Learn Windows PowerShell 3 in a Month of Lunches, Second Edition</a></li>
<li><a href="/mikowski">Single Page Web Applications</a></li>
<li><a href="/gupta">OCA Java SE 7 Programmer I Certification Guide</a></li>
<li><a href="/skeet3">C# in Depth, Third Edition</a></li>
<li><a href="/ceder">The Quick Python Book, Second Edition</a></li>
<li><a href="/kabacoff">R in Action</a></li>
<li><a href="/briggs">Hello! Python</a></li>
<li><a href="/osherove2">The Art of Unit Testing, Second Edition</a></li>
<!--li><a href="/dwood">Linked Data</a></li-->
<!--li><a href="/helmick">Learn Windows IIS in a Month of Lunches</a></li-->
<!--li><a href="/binkley">Windows Phone 8 in Action</a></li-->
<!-- <li><a href="/wheeler">Spring in Practice</a></li> -->
<!-- <li><a href="/sande">Hello World!</a></li> -->
<!-- <li><a href="/ingersoll">Taming Text</a></li> -->
<!--li><a href="/hilton">Play for Scala</a></li-->
<!--li><a href="/seemann">Dependency Injection in .NET</a></li-->
<!--li><a href="black2">The Well-Grounded Rubyist</a></li-->
<!--li><a href="/skeet2">C# in Depth, Second Edition</a></li-->
<!--li><a href="/williams">C++ Concurrency in Action</a></li-->
<!--li><a href="/walls4">Spring in Action, Third Edition</a></li-->
<!--li><a href="/holmes">Hadoop in Practice</a></li-->
<!--li><a href="/mccreary">Making Sense of NoSQL</a></li-->
<!--li><a href="/lam">Hadoop in Action</a></li-->
<!--li><a href="/ibsen">Camel in Action</a></li-->
<!--li><a href="/owen">Mahout in Action</a></li-->
<!--li><a href="/netherland">Sass and Compass in Action</a></li-->
<!--li><a href="/hicks">PowerShell Deep Dives</a></li-->
<!--li><a href="/carlson">Redis in Action</a></li-->
<!--li><a href="/evans">The Well-Grounded Java Developer</a></li-->
<!--li><a href="jones4">Learn PowerShell Toolmaking in a Month of Lunches</a></li-->
<!--li><a href="/suereth">Scala in Depth</a></li-->
<!--li><a href="/pharrington">Machine Learning in Action</a></li-->
<!--li><a href="/jones2">PowerShell in Depth</a></li-->
<!--li><a href="/payette2">Windows PowerShell in Action, Second Edition</a></li-->
<!--li><a href="/osherove">The Art of Unit Testing</a></li-->
<!--li><a href="/rosenberg">The Cloud at Your Service</a></li-->
<!--li><a href="/bibeault2">jQuery in Action, Second Edition</a></li-->
<!--li><a href="/tacy">GWT in Action, Second Edition</a></li-->
<!--li><a href="/adzic">Specification by Example</a></li-->
<!--li><a href="/vinegar">Third-Party JavaScript</a></li-->
<!--li><a href="/banker">MongoDB in Action</a></li-->
<!--li><a href="/jackson">HTML5 for .NET Developers</a></li-->
<!--li><a href="fisher">Spring Integration in Action</a></li-->
<!--li><a href="/palermo3">ASP.NET MVC 4 in Action</a></li-->
<!--li><a href="/pbrown2">Silverlight 5 in Action</a></li-->
<!--li><a href="/fogus">The Joy of Clojure</a></li-->
<!--li><a href="/videla">RabbitMQ in Action</a></li-->
</ol>
</div>
<div class="bestsellHeader"><h2>MEAP BESTSELLERS<br>December 29, 2013</h2></div>
<div class="bestsellBox">
<ol>
<li><a href="/sholmes">Getting MEAN with Mongo, Express, Angular and Node</a></li>
<li><a href="/mcquaid">Git in Practice</a></li>
<li><a href="brink">Real-World Machine Learning</a></li>
<li><a href="/sallen">Storm Applied</a></li>
<li><a href="/bford">AngularJS in Action</a></li>
<li><a href="juric">Elixir in Action</a></li>
<li><a href="/bevacqua">JavaScript Application Design</a></li>
<li><a href="/fogus2">The Joy of Clojure, Second Edition</a></li>
<li><a href="/marz">Big Data</a></li>
<li><a href="/banker2">MongoDB in Action, Second Edition</a></li>
<!-- <li><a href="/roestenburg">Akka in Action</a></li> -->
<!-- <li><a href="/bjarnason">Functional Programming in Scala</a></li> -->
<!-- <li><a href="/kapur">Programming for Musicians and Digital Artists</a></li> -->
<!-- <li><a href="/urma">Java 8 Lambdas in Action</a></li> -->
<!-- <li><a href="/suereth2">SBT in Action</a></li> -->
<!-- <li><a href="/jones5">Learn SQL Server Administration in a Month of Lunches</a></li> -->
<!-- <li><a href="/walls5">Spring in Action, Fourth Edition</a></li> -->
<!-- <li><a href="/hinman">Elasticsearch in Action</a></li> -->
<!-- <li><a href="/bauer3">Java Persistence with Hibernate, Second Edition</a></li> -->
<!-- <li><a href="/muschko">Gradle in Action</a></li> -->
<!-- <li><a href="/crowther2">HTML5 in Action</a></li> -->
<!-- <li><a href="/vantoll">jQuery UI in Action</a></li> -->
<!-- <li><a href="/skeie">Ember.js in Action</a></li> -->
<!--li><a href="/buckett2">Web Components in Action</a></li-->
<!--li><a href="/carver">The Responsive Web</a></li-->
<!--li><a href="/breed">Backbone.js in Action</a></li-->
<!--li><a href="/dsande">Sass in Depth</a></li-->
<!--li><a href="/young">Node.js in Practice</a></li-->
<!--li><a href="/hammarberg">Kanban in Action</a></li-->
<!--li><a href="/tjones">Pig in Action</a></li-->
<!--li><a href="/grainger">Solr in Action</a></li-->
<!--li><a href="/leroux">Play for Java</a></li-->
<!--li><a href="/lim2">iOS 7 in Action</a></li-->
<!--li><a href="/black3">The Well-Grounded Rubyist, Second Edition</a></li-->
<!--li><a href="/kabacoff2">R in Action, Second Edition</a></li-->
<!--li><a href="/koenig2">Groovy in Action, Second Edition</a></li-->
<!--li><a href="/rubalcava">ArcGIS Web Development</a></li-->
<!--li><a href="/maurer">Netty in Action</a></li-->
<!--li><a href="/obe2">PostGIS in Action, Second Edition</a></li-->
<!--li><a href="/gsmith2">Grails in Action, Second Edition</a></li-->
<!--li><a href="/ellnestam">The Mikado Method</a></li-->
<!--li><a href="/papapetrou">SonarQube in Action</a></li-->
<!--li><a href="/smart">BDD in Action</a></li-->
<!--li><a href="/bigg2">Rails 4 in Action</a></li-->
<!--li><a href="/roy">RabbitMQ in Depth</a></li-->
<!--li><a href="/partner">Neo4j in Action</a></li-->
<!--li><a href="/carrero2">Scalatra in Action</a></li-->
<!--li><a href="/abernethy">The Programmer's Guide to Apache Thrift</a></li-->
<!--li><a href="/petricek2">F# Deep Dives</a></li-->
<!--li><a href="/rotton">Responsive WordPress</a></li-->
<!--li><a href="/zumel">Practical Data Science with R</a></li-->
<!--li><a href="/synhershko">RavenDB in Action</a></li-->
<!--li><a href="/gupta2">OCP Java SE 7 Programmer II Certification Guide</a></li-->
<!--li><a href="/kousen">Making Java Groovy</a></li-->
<!--li><a href="/beer">Hello App Inventor!</a></li-->
<!--li><a href="/wood">Extending jQuery</a></li-->
<!--li><a href="/mevans">Arduino in Action</a></li-->
<!--li><a href="/franco">Hello! iOS Development</a></li-->
<!--li><a href="/groves">AOP in .NET</a></li-->
<!--li><a href="/garcia3">Ext JS in Action, Second Edition</a></li-->
<!--li><a href="/rathore2">Clojure in Action, Second Edition</a></li-->
<!--li><a href="/panda2">EJB 3 in Action, Second Edition</a></li-->
<!--li><a href="/siddaway3">Learn Active Directory Management in a Month of Lunches</a></li-->
</ol>
</div>
<a name="soon" id="soon"></a>
<div class="rightColHeader">COMING SOON</div>
<div class="rightColBox">
<div class="bahh">January</div>
<a href="/garcia3">Ext JS in Action, Second Edition</a><br>
<a href="/muschko">Gradle in Action</a><br>
<a href="/crowther2">HTML5 in Action</a><br>
<a href="hammarberg">Kanban in Action</a><br>
<a href="/dossot2">Mule in Action, Second Edition</a><br>
<a href="grainger">Solr in Action</a><br>
<br>
<div class="bahh">February</div>
<a href="/ellnestam">The Mikado Method</a><br>
<a href="/leroux">Play for Java</a><br>
<a href="/lim2">iOS 7 in Action</a><br>
<a href="/siddaway3">Learn Active Directory Management in a Month of Lunches</a><br>
<br>
</div>
<!--END column 3-->
</td>
</tr>
</table>
</div>
<div id="footer">
<script language="JavaScript" src="/footercopy.js" type="text/javascript"></script>
</div>
</div></div>
<!--BEGINNING OF DEEPMETRIX STATSCRIPT-->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-5861300-1']);
_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>
<!--END OF DEEPMETRIX STATSCRIPT-->
</body>
</html><!-- text below generated by server. PLEASE REMOVE --><!-- Counter/Statistics data collection code --><script language="JavaScript" src="http://l.yimg.com/d/lib/smb/js/hosting/cp/js_source/whv2_001.js"></script><script language="javascript">geovisit();</script><noscript><img src="http://visit.webhosting.yahoo.com/visit.gif?us1389735134" alt="setstats" border="0" width="1" height="1"></noscript><script type="text/javascript">(function (d, w) {var x = d.getElementsByTagName('SCRIPT')[0];var f = function () {var s = d.createElement('SCRIPT');s.type = 'text/javascript';s.async = true;s.src = "//np.lexity.com/embed/YW/7a82d563d5e1d9bb021fb049c6080862?id=9054eafd4bb1";x.parentNode.insertBefore(s, x);};w.attachEvent ? w.attachEvent('onload',f) :w.addEventListener('load',f,false);}(document, window));</script>
| jimuyouyou/nodeinpractice | listings/web/cheerio-manning/index.html | HTML | mit | 45,828 |
<a href='https://github.com/angular/angular.js/edit/v1.3.x/src/ng/directive/ngEventDirs.js?message=docs(ngDblclick)%3A%20describe%20your%20change...#L79' class='improve-docs btn btn-primary'><i class="glyphicon glyphicon-edit"> </i>Improve this Doc</a>
<a href='https://github.com/angular/angular.js/tree/v1.3.10/src/ng/directive/ngEventDirs.js#L79' class='view-source pull-right btn btn-primary'>
<i class="glyphicon glyphicon-zoom-in"> </i>View Source
</a>
<header class="api-profile-header">
<h1 class="api-profile-header-heading">ngDblclick</h1>
<ol class="api-profile-header-structure naked-list step-list">
<li>
- directive in module <a href="api/ng">ng</a>
</li>
</ol>
</header>
<div class="api-profile-description">
<p>The <code>ngDblclick</code> directive allows you to specify custom behavior on a dblclick event.</p>
</div>
<div>
<h2>Directive Info</h2>
<ul>
<li>This directive executes at priority level 0.</li>
</ul>
<h2 id="usage">Usage</h2>
<div class="usage">
<ul>
<li>as attribute:
<pre><code><ANY ng-dblclick=""> ... </ANY></code></pre>
</li>
</div>
<section class="api-section">
<h3>Arguments</h3>
<table class="variables-matrix input-arguments">
<thead>
<tr>
<th>Param</th>
<th>Type</th>
<th>Details</th>
</tr>
</thead>
<tbody>
<tr>
<td>
ngDblclick
</td>
<td>
<a href="" class="label type-hint type-hint-expression">expression</a>
</td>
<td>
<p><a href="guide/expression">Expression</a> to evaluate upon
a dblclick. (The Event object is available as <code>$event</code>)</p>
</td>
</tr>
</tbody>
</table>
</section>
<h2 id="example">Example</h2><p>
<div>
<a ng-click="openPlunkr('examples/example-example68')" class="btn pull-right">
<i class="glyphicon glyphicon-edit"> </i>
Edit in Plunker</a>
<div class="runnable-example"
path="examples/example-example68">
<div class="runnable-example-file"
name="index.html"
language="html"
type="html">
<pre><code><button ng-dblclick="count = count + 1" ng-init="count=0"> Increment (on double click) </button> count: {{count}}</code></pre>
</div>
<iframe class="runnable-example-frame" src="examples/example-example68/index.html" name="example-example68"></iframe>
</div>
</div>
</p>
</div>
| apulll/angular_study | lib/angular-1.3.10/docs/partials/api/ng/directive/ngDblclick.html | HTML | mit | 2,582 |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>basic_socket::io_control</title>
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="../../../boost_asio.html" title="Boost.Asio">
<link rel="up" href="../basic_socket.html" title="basic_socket">
<link rel="prev" href="implementation_type.html" title="basic_socket::implementation_type">
<link rel="next" href="io_control/overload1.html" title="basic_socket::io_control (1 of 2 overloads)">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../boost.png"></td>
<td align="center"><a href="../../../../../index.html">Home</a></td>
<td align="center"><a href="../../../../../libs/libraries.htm">Libraries</a></td>
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
<td align="center"><a href="../../../../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="implementation_type.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../basic_socket.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="io_control/overload1.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h4 class="title">
<a name="boost_asio.reference.basic_socket.io_control"></a><a class="link" href="io_control.html" title="basic_socket::io_control">basic_socket::io_control</a>
</h4></div></div></div>
<p>
<a class="indexterm" name="idp43593360"></a>
Perform an IO control command on the socket.
</p>
<pre class="programlisting"><span class="keyword">template</span><span class="special"><</span>
<span class="keyword">typename</span> <a class="link" href="../IoControlCommand.html" title="I/O control command requirements">IoControlCommand</a><span class="special">></span>
<span class="keyword">void</span> <a class="link" href="io_control/overload1.html" title="basic_socket::io_control (1 of 2 overloads)">io_control</a><span class="special">(</span>
<span class="identifier">IoControlCommand</span> <span class="special">&</span> <span class="identifier">command</span><span class="special">);</span>
<span class="emphasis"><em>» <a class="link" href="io_control/overload1.html" title="basic_socket::io_control (1 of 2 overloads)">more...</a></em></span>
<span class="keyword">template</span><span class="special"><</span>
<span class="keyword">typename</span> <a class="link" href="../IoControlCommand.html" title="I/O control command requirements">IoControlCommand</a><span class="special">></span>
<span class="identifier">boost</span><span class="special">::</span><span class="identifier">system</span><span class="special">::</span><span class="identifier">error_code</span> <a class="link" href="io_control/overload2.html" title="basic_socket::io_control (2 of 2 overloads)">io_control</a><span class="special">(</span>
<span class="identifier">IoControlCommand</span> <span class="special">&</span> <span class="identifier">command</span><span class="special">,</span>
<span class="identifier">boost</span><span class="special">::</span><span class="identifier">system</span><span class="special">::</span><span class="identifier">error_code</span> <span class="special">&</span> <span class="identifier">ec</span><span class="special">);</span>
<span class="emphasis"><em>» <a class="link" href="io_control/overload2.html" title="basic_socket::io_control (2 of 2 overloads)">more...</a></em></span>
</pre>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2003-2013 Christopher M. Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="implementation_type.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../basic_socket.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="io_control/overload1.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
| ryancoleman/autodock-vina | boost_1_54_0/doc/html/boost_asio/reference/basic_socket/io_control.html | HTML | apache-2.0 | 5,078 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<title>TextboxShape (POI API Documentation)</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="TextboxShape (POI API Documentation)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/TextboxShape.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../org/apache/poi/hssf/model/SimpleFilledShape.html" title="class in org.apache.poi.hssf.model"><span class="strong">PREV CLASS</span></a></li>
<li><a href="../../../../../org/apache/poi/hssf/model/WorkbookRecordList.html" title="class in org.apache.poi.hssf.model"><span class="strong">NEXT CLASS</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/poi/hssf/model/TextboxShape.html" target="_top">FRAMES</a></li>
<li><a href="TextboxShape.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>
<div>
<ul class="subNavList">
<li>SUMMARY: </li>
<li>NESTED | </li>
<li>FIELD | </li>
<li>CONSTR | </li>
<li><a href="#method_summary">METHOD</a></li>
</ul>
<ul class="subNavList">
<li>DETAIL: </li>
<li>FIELD | </li>
<li>CONSTR | </li>
<li><a href="#method_detail">METHOD</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<p class="subTitle">org.apache.poi.hssf.model</p>
<h2 title="Class TextboxShape" class="title">Class TextboxShape</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li><a href="../../../../../org/apache/poi/hssf/model/AbstractShape.html" title="class in org.apache.poi.hssf.model">org.apache.poi.hssf.model.AbstractShape</a></li>
<li>
<ul class="inheritance">
<li>org.apache.poi.hssf.model.TextboxShape</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>Direct Known Subclasses:</dt>
<dd><a href="../../../../../org/apache/poi/hssf/model/CommentShape.html" title="class in org.apache.poi.hssf.model">CommentShape</a></dd>
</dl>
<hr>
<div class="block"><strong>Deprecated.</strong></div>
<br>
<pre>@Deprecated
public class <strong>TextboxShape</strong>
extends <a href="../../../../../org/apache/poi/hssf/model/AbstractShape.html" title="class in org.apache.poi.hssf.model">AbstractShape</a></pre>
<div class="block">Represents an textbox shape and converts between the highlevel records
and lowlevel records for an oval.</div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/poi/ddf/EscherRecord.html" title="class in org.apache.poi.ddf">EscherRecord</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/model/TextboxShape.html#getEscherTextbox()">getEscherTextbox</a></strong>()</code>
<div class="block"><strong>Deprecated.</strong> </div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/poi/hssf/record/ObjRecord.html" title="class in org.apache.poi.hssf.record">ObjRecord</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/model/TextboxShape.html#getObjRecord()">getObjRecord</a></strong>()</code>
<div class="block"><strong>Deprecated.</strong> </div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../org/apache/poi/ddf/EscherContainerRecord.html" title="class in org.apache.poi.ddf">EscherContainerRecord</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/model/TextboxShape.html#getSpContainer()">getSpContainer</a></strong>()</code>
<div class="block"><strong>Deprecated.</strong> </div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../org/apache/poi/hssf/record/TextObjectRecord.html" title="class in org.apache.poi.hssf.record">TextObjectRecord</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/hssf/model/TextboxShape.html#getTextObjectRecord()">getTextObjectRecord</a></strong>()</code>
<div class="block"><strong>Deprecated.</strong> </div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_org.apache.poi.hssf.model.AbstractShape">
<!-- -->
</a>
<h3>Methods inherited from class org.apache.poi.hssf.model.<a href="../../../../../org/apache/poi/hssf/model/AbstractShape.html" title="class in org.apache.poi.hssf.model">AbstractShape</a></h3>
<code><a href="../../../../../org/apache/poi/hssf/model/AbstractShape.html#addStandardOptions(org.apache.poi.hssf.usermodel.HSSFShape, org.apache.poi.ddf.EscherOptRecord)">addStandardOptions</a>, <a href="../../../../../org/apache/poi/hssf/model/AbstractShape.html#createAnchor(org.apache.poi.hssf.usermodel.HSSFAnchor)">createAnchor</a>, <a href="../../../../../org/apache/poi/hssf/model/AbstractShape.html#createShape(org.apache.poi.hssf.usermodel.HSSFShape, int)">createShape</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getSpContainer()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getSpContainer</h4>
<pre>public <a href="../../../../../org/apache/poi/ddf/EscherContainerRecord.html" title="class in org.apache.poi.ddf">EscherContainerRecord</a> getSpContainer()</pre>
<div class="block"><span class="strong">Deprecated.</span> </div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../../../org/apache/poi/hssf/model/AbstractShape.html#getSpContainer()">getSpContainer</a></code> in class <code><a href="../../../../../org/apache/poi/hssf/model/AbstractShape.html" title="class in org.apache.poi.hssf.model">AbstractShape</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>The shape container and it's children that can represent this
shape.</dd></dl>
</li>
</ul>
<a name="getObjRecord()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getObjRecord</h4>
<pre>public <a href="../../../../../org/apache/poi/hssf/record/ObjRecord.html" title="class in org.apache.poi.hssf.record">ObjRecord</a> getObjRecord()</pre>
<div class="block"><span class="strong">Deprecated.</span> </div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../../../org/apache/poi/hssf/model/AbstractShape.html#getObjRecord()">getObjRecord</a></code> in class <code><a href="../../../../../org/apache/poi/hssf/model/AbstractShape.html" title="class in org.apache.poi.hssf.model">AbstractShape</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>The object record that is associated with this shape.</dd></dl>
</li>
</ul>
<a name="getTextObjectRecord()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getTextObjectRecord</h4>
<pre>public <a href="../../../../../org/apache/poi/hssf/record/TextObjectRecord.html" title="class in org.apache.poi.hssf.record">TextObjectRecord</a> getTextObjectRecord()</pre>
<div class="block"><span class="strong">Deprecated.</span> </div>
</li>
</ul>
<a name="getEscherTextbox()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getEscherTextbox</h4>
<pre>public <a href="../../../../../org/apache/poi/ddf/EscherRecord.html" title="class in org.apache.poi.ddf">EscherRecord</a> getEscherTextbox()</pre>
<div class="block"><span class="strong">Deprecated.</span> </div>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/TextboxShape.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../org/apache/poi/hssf/model/SimpleFilledShape.html" title="class in org.apache.poi.hssf.model"><span class="strong">PREV CLASS</span></a></li>
<li><a href="../../../../../org/apache/poi/hssf/model/WorkbookRecordList.html" title="class in org.apache.poi.hssf.model"><span class="strong">NEXT CLASS</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/poi/hssf/model/TextboxShape.html" target="_top">FRAMES</a></li>
<li><a href="TextboxShape.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>
<div>
<ul class="subNavList">
<li>SUMMARY: </li>
<li>NESTED | </li>
<li>FIELD | </li>
<li>CONSTR | </li>
<li><a href="#method_summary">METHOD</a></li>
</ul>
<ul class="subNavList">
<li>DETAIL: </li>
<li>FIELD | </li>
<li>CONSTR | </li>
<li><a href="#method_detail">METHOD</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>
<i>Copyright 2014 The Apache Software Foundation or
its licensors, as applicable.</i>
</small></p>
</body>
</html>
| RyoSaeba69/Bio-info | mylib/poi-3.11/docs/apidocs/org/apache/poi/hssf/model/TextboxShape.html | HTML | apache-2.0 | 12,480 |
<html xmlns:wicket>
<wicket:extend>
<div wicket:id="prevNext"></div>
<div class="headerMenu">
Details for cargo <span wicket:id="trackingId">[trackingId]</span>
<wicket:link>
<a href="CargoListPage.html">List of Cargos</a>
<a href="BookNewCargoPage.html">Book new cargo</a>
</wicket:link>
</div>
<table class="styleLeftColumn">
<wicket:container wicket:id="origin"></wicket:container>
<wicket:fragment wicket:id="originFragment">
<tr>
<td>Origin</td>
<td wicket:id="cargoOrigin"></td>
</tr>
</wicket:fragment>
<wicket:fragment wicket:id="re-routed-originFragment">
<tr>
<td>Origin (Cargo)</td>
<td wicket:id="cargoOrigin"></td>
</tr>
<tr>
<td>Origin (Route Spec)</td>
<td wicket:id="routeOrigin"></td>
</tr>
</wicket:fragment>
<tr>
<td>Destination</td>
<td wicket:id="destination"></td>
<td wicket:id="changeDestination"></td>
</tr>
<tr>
<td>Earliest departure</td>
<td wicket:id="departure"></td>
</tr>
<tr>
<td>Arrival deadline</td>
<td wicket:id="deadline"></td>
</tr>
<tr>
<td>Routing status</td>
<td wicket:id="routingStatus"></td>
<td wicket:id="routingAction"></td>
</tr>
<wicket:container wicket:id="delivery"></wicket:container>
<wicket:fragment wicket:id="deliveryFragment">
<tr>
<td>Transport status</td>
<td wicket:id="transportStatus"></td>
</tr>
<tr>
<td valign="top">Delivery status</td>
<td wicket:id="deliveryStatus"></td>
</tr>
</wicket:fragment>
</table>
<wicket:container wicket:id="itinerary"></wicket:container>
<wicket:fragment wicket:id="itineraryFragment">
<h4>Itinerary</h4>
<table>
<thead>
<tr>
<td>Voyage</td>
<td colspan="2">Load</td>
<td colspan="2">Unload</td>
</tr>
</thead>
<tbody>
<tr wicket:id="legs">
<td wicket:id="voyage"></td>
<td wicket:id="loadLocation"></td>
<td wicket:id="loadTime"></td>
<td wicket:id="unloadLocation"></td>
<td wicket:id="unloadTime"></td>
</tr>
</tbody>
</table>
</wicket:fragment>
<div wicket:id="handlingHistoryPanel"></div>
<div wicket:id="nextHandlingEventPanel"></div>
</wicket:extend>
</html> | joobn72/qi4j-sdk | samples/dci-cargo/dcisample_b/src/main/resources/org/qi4j/sample/dcicargo/sample_b/communication/web/booking/CargoDetailsPage.html | HTML | apache-2.0 | 2,835 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_45) on Fri Aug 28 09:51:23 EDT 2015 -->
<title>StreamEvent.SessionCompleteEvent (apache-cassandra API)</title>
<meta name="date" content="2015-08-28">
<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="StreamEvent.SessionCompleteEvent (apache-cassandra API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/StreamEvent.SessionCompleteEvent.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../org/apache/cassandra/streaming/StreamEvent.ProgressEvent.html" title="class in org.apache.cassandra.streaming"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../org/apache/cassandra/streaming/StreamEvent.SessionPreparedEvent.html" title="class in org.apache.cassandra.streaming"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/apache/cassandra/streaming/StreamEvent.SessionCompleteEvent.html" target="_top">Frames</a></li>
<li><a href="StreamEvent.SessionCompleteEvent.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>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li><a href="#nested.classes.inherited.from.class.org.apache.cassandra.streaming.StreamEvent">Nested</a> | </li>
<li><a href="#field.summary">Field</a> | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#methods.inherited.from.class.java.lang.Object">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field.detail">Field</a> | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li>Method</li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">org.apache.cassandra.streaming</div>
<h2 title="Class StreamEvent.SessionCompleteEvent" class="title">Class StreamEvent.SessionCompleteEvent</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li><a href="../../../../org/apache/cassandra/streaming/StreamEvent.html" title="class in org.apache.cassandra.streaming">org.apache.cassandra.streaming.StreamEvent</a></li>
<li>
<ul class="inheritance">
<li>org.apache.cassandra.streaming.StreamEvent.SessionCompleteEvent</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>Enclosing class:</dt>
<dd><a href="../../../../org/apache/cassandra/streaming/StreamEvent.html" title="class in org.apache.cassandra.streaming">StreamEvent</a></dd>
</dl>
<hr>
<br>
<pre>public static class <span class="typeNameLabel">StreamEvent.SessionCompleteEvent</span>
extends <a href="../../../../org/apache/cassandra/streaming/StreamEvent.html" title="class in org.apache.cassandra.streaming">StreamEvent</a></pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="nested.class.summary">
<!-- -->
</a>
<h3>Nested Class Summary</h3>
<ul class="blockList">
<li class="blockList"><a name="nested.classes.inherited.from.class.org.apache.cassandra.streaming.StreamEvent">
<!-- -->
</a>
<h3>Nested classes/interfaces inherited from class org.apache.cassandra.streaming.<a href="../../../../org/apache/cassandra/streaming/StreamEvent.html" title="class in org.apache.cassandra.streaming">StreamEvent</a></h3>
<code><a href="../../../../org/apache/cassandra/streaming/StreamEvent.ProgressEvent.html" title="class in org.apache.cassandra.streaming">StreamEvent.ProgressEvent</a>, <a href="../../../../org/apache/cassandra/streaming/StreamEvent.SessionCompleteEvent.html" title="class in org.apache.cassandra.streaming">StreamEvent.SessionCompleteEvent</a>, <a href="../../../../org/apache/cassandra/streaming/StreamEvent.SessionPreparedEvent.html" title="class in org.apache.cassandra.streaming">StreamEvent.SessionPreparedEvent</a>, <a href="../../../../org/apache/cassandra/streaming/StreamEvent.Type.html" title="enum in org.apache.cassandra.streaming">StreamEvent.Type</a></code></li>
</ul>
</li>
</ul>
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.net.InetAddress</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/streaming/StreamEvent.SessionCompleteEvent.html#peer">peer</a></span></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.util.Set<<a href="../../../../org/apache/cassandra/streaming/StreamRequest.html" title="class in org.apache.cassandra.streaming">StreamRequest</a>></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/streaming/StreamEvent.SessionCompleteEvent.html#requests">requests</a></span></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/streaming/StreamEvent.SessionCompleteEvent.html#sessionIndex">sessionIndex</a></span></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/streaming/StreamEvent.SessionCompleteEvent.html#success">success</a></span></code> </td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="fields.inherited.from.class.org.apache.cassandra.streaming.StreamEvent">
<!-- -->
</a>
<h3>Fields inherited from class org.apache.cassandra.streaming.<a href="../../../../org/apache/cassandra/streaming/StreamEvent.html" title="class in org.apache.cassandra.streaming">StreamEvent</a></h3>
<code><a href="../../../../org/apache/cassandra/streaming/StreamEvent.html#eventType">eventType</a>, <a href="../../../../org/apache/cassandra/streaming/StreamEvent.html#planId">planId</a></code></li>
</ul>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/streaming/StreamEvent.SessionCompleteEvent.html#SessionCompleteEvent-org.apache.cassandra.streaming.StreamSession-">SessionCompleteEvent</a></span>(<a href="../../../../org/apache/cassandra/streaming/StreamSession.html" title="class in org.apache.cassandra.streaming">StreamSession</a> session)</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.detail">
<!-- -->
</a>
<h3>Field Detail</h3>
<a name="peer">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>peer</h4>
<pre>public final java.net.InetAddress peer</pre>
</li>
</ul>
<a name="success">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>success</h4>
<pre>public final boolean success</pre>
</li>
</ul>
<a name="sessionIndex">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>sessionIndex</h4>
<pre>public final int sessionIndex</pre>
</li>
</ul>
<a name="requests">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>requests</h4>
<pre>public final java.util.Set<<a href="../../../../org/apache/cassandra/streaming/StreamRequest.html" title="class in org.apache.cassandra.streaming">StreamRequest</a>> requests</pre>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="SessionCompleteEvent-org.apache.cassandra.streaming.StreamSession-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>SessionCompleteEvent</h4>
<pre>public SessionCompleteEvent(<a href="../../../../org/apache/cassandra/streaming/StreamSession.html" title="class in org.apache.cassandra.streaming">StreamSession</a> session)</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/StreamEvent.SessionCompleteEvent.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../org/apache/cassandra/streaming/StreamEvent.ProgressEvent.html" title="class in org.apache.cassandra.streaming"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../org/apache/cassandra/streaming/StreamEvent.SessionPreparedEvent.html" title="class in org.apache.cassandra.streaming"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/apache/cassandra/streaming/StreamEvent.SessionCompleteEvent.html" target="_top">Frames</a></li>
<li><a href="StreamEvent.SessionCompleteEvent.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>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li><a href="#nested.classes.inherited.from.class.org.apache.cassandra.streaming.StreamEvent">Nested</a> | </li>
<li><a href="#field.summary">Field</a> | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#methods.inherited.from.class.java.lang.Object">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field.detail">Field</a> | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li>Method</li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2015 The Apache Software Foundation</small></p>
</body>
</html>
| mitch-kyle/message-board | support/apache-cassandra-2.2.1/javadoc/org/apache/cassandra/streaming/StreamEvent.SessionCompleteEvent.html | HTML | apache-2.0 | 13,895 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>src/ipa/fig/font.h File Reference</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.2.18 -->
<center>
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="classes.html">Alphabetical List</a> <a class="qindex" href="annotated.html">Data Structures</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="functions.html">Data Fields</a> <a class="qindex" href="globals.html">Globals</a> </center>
<hr><h1>font.h File Reference</h1><table border=0 cellpadding=0 cellspacing=0>
<tr><td></td></tr>
</table>
<hr><address style="align: right;"><small>Generated on Tue Dec 10 19:53:50 2002 for libwmf by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border=0
width=110 height=53></a>1.2.18 </small></address>
</body>
</html>
| AlexiaChen/ImageMagick_Cmake | wmf/doc/html/src_2ipa_2fig_2font_8h.html | HTML | apache-2.0 | 1,067 |
<link rel="import" href="delete-link.html">
<link rel="import" href="chromedash-userlist.html">
| mdittmer/chromium-dashboard | static/elements/admin-imports.html | HTML | apache-2.0 | 96 |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Struct template weighted_skewness_impl</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="The Boost C++ Libraries BoostBook Documentation Subset">
<link rel="up" href="../../../accumulators/reference.html#header.boost.accumulators.statistics_fwd_hpp" title="Header <boost/accumulators/statistics_fwd.hpp>">
<link rel="prev" href="weighted_p_squ_idp27254528.html" title="Struct template weighted_p_square_quantile_impl">
<link rel="next" href="weighted_sum_impl.html" title="Struct template weighted_sum_impl">
</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="weighted_p_squ_idp27254528.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../accumulators/reference.html#header.boost.accumulators.statistics_fwd_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="weighted_sum_impl.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.accumulators.impl.weighted_skewness_impl"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Struct template weighted_skewness_impl</span></h2>
<p>boost::accumulators::impl::weighted_skewness_impl — Skewness estimation for weighted samples. </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: <<a class="link" href="../../../accumulators/reference.html#header.boost.accumulators.statistics_fwd_hpp" title="Header <boost/accumulators/statistics_fwd.hpp>">boost/accumulators/statistics_fwd.hpp</a>>
</span><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Sample<span class="special">,</span> <span class="keyword">typename</span> Weight<span class="special">></span>
<span class="keyword">struct</span> <a class="link" href="weighted_skewness_impl.html" title="Struct template weighted_skewness_impl">weighted_skewness_impl</a> <span class="special">:</span> <span class="keyword">public</span> <span class="identifier">accumulator_base</span> <span class="special">{</span>
<span class="comment">// <a class="link" href="weighted_skewness_impl.html#boost.accumulators.impl.weighted_skewness_implconstruct-copy-destruct">construct/copy/destruct</a></span>
<a class="link" href="weighted_skewness_impl.html#idp27280832-bb"><span class="identifier">weighted_skewness_impl</span></a><span class="special">(</span><span class="identifier">dont_care</span><span class="special">)</span><span class="special">;</span>
<span class="comment">// <a class="link" href="weighted_skewness_impl.html#idp27279408-bb">public member functions</a></span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Args<span class="special">></span> <span class="identifier">result_type</span> <a class="link" href="weighted_skewness_impl.html#idp27279616-bb"><span class="identifier">result</span></a><span class="special">(</span><span class="identifier">Args</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="special">}</span><span class="special">;</span></pre></div>
<div class="refsect1">
<a name="idp19599328"></a><h2>Description</h2>
<p>The skewness of a sample distribution is defined as the ratio of the 3rd central moment and the <span class="inlinemediaobject"><img src="../../../images/accumulators//form_52.png"></span>-th power $ of the 2nd central moment (the variance) of the samples. The skewness can also be expressed by the simple moments:</p>
<div class="equation">
<a name="idp19601152"></a><p class="title"><b>Equation 1.29. </b></p>
<div class="equation-contents"><div class="mediaobject" align="center"><img src="../../../images/accumulators//form_53.png" align="middle"></div></div>
</div>
<p><br class="equation-break"></p>
<p>where <span class="inlinemediaobject"><img src="../../../images/accumulators//form_14.png"></span> are the <span class="inlinemediaobject"><img src="../../../images/accumulators//form_15.png"></span>-th moment and <span class="inlinemediaobject"><img src="../../../images/accumulators//form_16.png"></span> the mean (first moment) of the <span class="inlinemediaobject"><img src="../../../images/accumulators//form_17.png"></span> samples.</p>
<p>The skewness estimator for weighted samples is formally identical to the estimator for unweighted samples, except that the weighted counterparts of all measures it depends on are to be taken. </p>
<div class="refsect2">
<a name="idp19608096"></a><h3>
<a name="boost.accumulators.impl.weighted_skewness_implconstruct-copy-destruct"></a><code class="computeroutput">weighted_skewness_impl</code>
public
construct/copy/destruct</h3>
<div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem"><pre class="literallayout"><a name="idp27280832-bb"></a><span class="identifier">weighted_skewness_impl</span><span class="special">(</span><span class="identifier">dont_care</span><span class="special">)</span><span class="special">;</span></pre></li></ol></div>
</div>
<div class="refsect2">
<a name="idp19611392"></a><h3>
<a name="idp27279408-bb"></a><code class="computeroutput">weighted_skewness_impl</code> public member functions</h3>
<div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem"><pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Args<span class="special">></span> <span class="identifier">result_type</span> <a name="idp27279616-bb"></a><span class="identifier">result</span><span class="special">(</span><span class="identifier">Args</span> <span class="keyword">const</span> <span class="special">&</span> args<span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre></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 © 2005, 2006 Eric Niebler<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="weighted_p_squ_idp27254528.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../accumulators/reference.html#header.boost.accumulators.statistics_fwd_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="weighted_sum_impl.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
| ryancoleman/autodock-vina | boost_1_54_0/doc/html/boost/accumulators/impl/weighted_skewness_impl.html | HTML | apache-2.0 | 8,273 |
<html><!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Metronic | Email Templates - Responsive System<br>
Email Template</title>
<meta name="viewport" content="width=device-width"/>
<style type="text/css">
/*********************************************************************
Ink - Responsive Email Template Framework Based: http://zurb.com/ink/
*********************************************************************/
#outlook a {
padding:0;
}
body{
width:100% !important;
min-width: 100%;
-webkit-text-size-adjust:100%;
-ms-text-size-adjust:100%;
margin:0;
padding:0;
}
.ExternalClass {
width:100%;
}
.ExternalClass,
.ExternalClass p,
.ExternalClass span,
.ExternalClass font,
.ExternalClass td,
.ExternalClass div {
line-height: 100%;
}
#backgroundTable {
margin:0;
padding:0;
width:100% !important;
line-height: 100% !important;
}
img {
outline:none;
text-decoration:none;
-ms-interpolation-mode1: bicubic;
width: auto;
max-width: 100%;
float: left;
clear: both;
display: block;
}
center {
width: 100%;
min-width: 580px;
}
a img {
border: none;
}
p {
margin: 0 0 0 10px;
}
table {
border-spacing: 0;
border-collapse: collapse;
}
td {
word-break: break-word;
-webkit-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;
border-collapse: collapse !important;
}
table, tr, td {
padding: 0;
vertical-align: top;
text-align: left;
}
hr {
color: #d9d9d9;
background-color: #d9d9d9;
height: 1px;
border: none;
}
/* Responsive Grid */
table.body {
height: 100%;
width: 100%;
}
table.container {
width: 580px;
margin: 0 auto;
text-align: inherit;
}
table.row {
padding: 0px;
width: 100%;
position: relative;
}
table.container table.row {
display: block;
}
td.wrapper {
padding: 10px 20px 0px 0px;
position: relative;
}
table.columns,
table.column {
margin: 0 auto;
}
table.columns td,
table.column td {
padding: 0px 0px 10px;
}
table.columns td.sub-columns,
table.column td.sub-columns,
table.columns td.sub-column,
table.column td.sub-column {
padding-right: 10px;
}
td.sub-column, td.sub-columns {
min-width: 0px;
}
table.row td.last,
table.container td.last {
padding-right: 0px;
}
table.one { width: 30px; }
table.two { width: 80px; }
table.three { width: 130px; }
table.four { width: 180px; }
table.five { width: 230px; }
table.six { width: 280px; }
table.seven { width: 330px; }
table.eight { width: 380px; }
table.nine { width: 430px; }
table.ten { width: 480px; }
table.eleven { width: 530px; }
table.twelve { width: 580px; }
table.one center { min-width: 30px; }
table.two center { min-width: 80px; }
table.three center { min-width: 130px; }
table.four center { min-width: 180px; }
table.five center { min-width: 230px; }
table.six center { min-width: 280px; }
table.seven center { min-width: 330px; }
table.eight center { min-width: 380px; }
table.nine center { min-width: 430px; }
table.ten center { min-width: 480px; }
table.eleven center { min-width: 530px; }
table.twelve center { min-width: 580px; }
table.one .panel center { min-width: 10px; }
table.two .panel center { min-width: 60px; }
table.three .panel center { min-width: 110px; }
table.four .panel center { min-width: 160px; }
table.five .panel center { min-width: 210px; }
table.six .panel center { min-width: 260px; }
table.seven .panel center { min-width: 310px; }
table.eight .panel center { min-width: 360px; }
table.nine .panel center { min-width: 410px; }
table.ten .panel center { min-width: 460px; }
table.eleven .panel center { min-width: 510px; }
table.twelve .panel center { min-width: 560px; }
.body .columns td.one,
.body .column td.one { width: 8.333333%; }
.body .columns td.two,
.body .column td.two { width: 16.666666%; }
.body .columns td.three,
.body .column td.three { width: 25%; }
.body .columns td.four,
.body .column td.four { width: 33.333333%; }
.body .columns td.five,
.body .column td.five { width: 41.666666%; }
.body .columns td.six,
.body .column td.six { width: 50%; }
.body .columns td.seven,
.body .column td.seven { width: 58.333333%; }
.body .columns td.eight,
.body .column td.eight { width: 66.666666%; }
.body .columns td.nine,
.body .column td.nine { width: 75%; }
.body .columns td.ten,
.body .column td.ten { width: 83.333333%; }
.body .columns td.eleven,
.body .column td.eleven { width: 91.666666%; }
.body .columns td.twelve,
.body .column td.twelve { width: 100%; }
td.offset-by-one { padding-left: 50px; }
td.offset-by-two { padding-left: 100px; }
td.offset-by-three { padding-left: 150px; }
td.offset-by-four { padding-left: 200px; }
td.offset-by-five { padding-left: 250px; }
td.offset-by-six { padding-left: 300px; }
td.offset-by-seven { padding-left: 350px; }
td.offset-by-eight { padding-left: 400px; }
td.offset-by-nine { padding-left: 450px; }
td.offset-by-ten { padding-left: 500px; }
td.offset-by-eleven { padding-left: 550px; }
td.expander {
visibility: hidden;
width: 0px;
padding: 0 !important;
}
table.columns .text-pad,
table.column .text-pad {
padding-left: 10px;
padding-right: 10px;
}
table.columns .left-text-pad,
table.columns .text-pad-left,
table.column .left-text-pad,
table.column .text-pad-left {
padding-left: 10px;
}
table.columns .right-text-pad,
table.columns .text-pad-right,
table.column .right-text-pad,
table.column .text-pad-right {
padding-right: 10px;
}
/* Block Grid */
.block-grid {
width: 100%;
max-width: 580px;
}
.block-grid td {
display: inline-block;
padding:10px;
}
.two-up td {
width:270px;
}
.three-up td {
width:173px;
}
.four-up td {
width:125px;
}
.five-up td {
width:96px;
}
.six-up td {
width:76px;
}
.seven-up td {
width:62px;
}
.eight-up td {
width:52px;
}
/* Alignment & Visibility Classes */
table.center, td.center {
text-align: center;
}
h1.center,
h2.center,
h3.center,
h4.center,
h5.center,
h6.center {
text-align: center;
}
span.center {
display: block;
width: 100%;
text-align: center;
}
img.center {
margin: 0 auto;
float: none;
}
.show-for-small,
.hide-for-desktop {
display: none;
}
/* Typography */
body, table.body, h1, h2, h3, h4, h5, h6, p, td {
color: #222222;
font-family: "Helvetica", "Arial", sans-serif;
font-weight: normal;
padding:0;
margin: 0;
text-align: left;
line-height: 1.3;
}
h1, h2, h3, h4, h5, h6 {
word-break: normal;
}
h1 {font-size: 40px;}
h2 {font-size: 36px;}
h3 {font-size: 32px;}
h4 {font-size: 28px;}
h5 {font-size: 24px;}
h6 {font-size: 20px;}
body, table.body, p, td {font-size: 14px;line-height:19px;}
p.lead, p.lede, p.leed {
font-size: 18px;
line-height:21px;
}
p {
margin-bottom: 10px;
}
small {
font-size: 10px;
}
a {
color: #2ba6cb;
text-decoration: none;
}
a:hover {
color: #2795b6 !important;
}
a:active {
color: #2795b6 !important;
}
a:visited {
color: #2ba6cb !important;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
color: #2ba6cb;
}
h1 a:active,
h2 a:active,
h3 a:active,
h4 a:active,
h5 a:active,
h6 a:active {
color: #2ba6cb !important;
}
h1 a:visited,
h2 a:visited,
h3 a:visited,
h4 a:visited,
h5 a:visited,
h6 a:visited {
color: #2ba6cb !important;
}
/* Panels */
.panel {
background: #f2f2f2;
border: 1px solid #d9d9d9;
padding: 10px !important;
}
.sub-grid table {
width: 100%;
}
.sub-grid td.sub-columns {
padding-bottom: 0;
}
/* Buttons */
table.button,
table.tiny-button,
table.small-button,
table.medium-button,
table.large-button {
width: 100%;
overflow: hidden;
}
table.button td,
table.tiny-button td,
table.small-button td,
table.medium-button td,
table.large-button td {
display: block;
width: auto !important;
text-align: center;
background: #2ba6cb;
border: 1px solid #2284a1;
color: #ffffff;
padding: 8px 0;
}
table.tiny-button td {
padding: 5px 0 4px;
}
table.small-button td {
padding: 8px 0 7px;
}
table.medium-button td {
padding: 12px 0 10px;
}
table.large-button td {
padding: 21px 0 18px;
}
table.button td a,
table.tiny-button td a,
table.small-button td a,
table.medium-button td a,
table.large-button td a {
font-weight: bold;
text-decoration: none;
font-family: Helvetica, Arial, sans-serif;
color: #ffffff;
font-size: 16px;
}
table.tiny-button td a {
font-size: 12px;
font-weight: normal;
}
table.small-button td a {
font-size: 16px;
}
table.medium-button td a {
font-size: 20px;
}
table.large-button td a {
font-size: 24px;
}
table.button:hover td,
table.button:visited td,
table.button:active td {
background: #2795b6 !important;
}
table.button:hover td a,
table.button:visited td a,
table.button:active td a {
color: #fff !important;
}
table.button:hover td,
table.tiny-button:hover td,
table.small-button:hover td,
table.medium-button:hover td,
table.large-button:hover td {
background: #2795b6 !important;
}
table.button:hover td a,
table.button:active td a,
table.button td a:visited,
table.tiny-button:hover td a,
table.tiny-button:active td a,
table.tiny-button td a:visited,
table.small-button:hover td a,
table.small-button:active td a,
table.small-button td a:visited,
table.medium-button:hover td a,
table.medium-button:active td a,
table.medium-button td a:visited,
table.large-button:hover td a,
table.large-button:active td a,
table.large-button td a:visited {
color: #ffffff !important;
}
table.secondary td {
background: #e9e9e9;
border-color: #d0d0d0;
color: #555;
}
table.secondary td a {
color: #555;
}
table.secondary:hover td {
background: #d0d0d0 !important;
color: #555;
}
table.secondary:hover td a,
table.secondary td a:visited,
table.secondary:active td a {
color: #555 !important;
}
table.success td {
background: #5da423;
border-color: #457a1a;
}
table.success:hover td {
background: #457a1a !important;
}
table.alert td {
background: #c60f13;
border-color: #970b0e;
}
table.alert:hover td {
background: #970b0e !important;
}
table.radius td {
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
table.round td {
-webkit-border-radius: 500px;
-moz-border-radius: 500px;
border-radius: 500px;
}
/* Outlook First */
body.outlook p {
display: inline !important;
}
/* Media Queries */
@media only screen and (max-width: 600px) {
table[class="body"] img {
width: auto !important;
height: auto !important;
}
table[class="body"] center {
min-width: 0 !important;
}
table[class="body"] .container {
width: 95% !important;
}
table[class="body"] .row {
width: 100% !important;
display: block !important;
}
table[class="body"] .wrapper {
display: block !important;
padding-right: 0 !important;
}
table[class="body"] .columns,
table[class="body"] .column {
table-layout: fixed !important;
float: none !important;
width: 100% !important;
padding-right: 0px !important;
padding-left: 0px !important;
display: block !important;
}
table[class="body"] .wrapper.first .columns,
table[class="body"] .wrapper.first .column {
display: table !important;
}
table[class="body"] table.columns td,
table[class="body"] table.column td {
width: 100% !important;
}
table[class="body"] .columns td.one,
table[class="body"] .column td.one { width: 8.333333% !important; }
table[class="body"] .columns td.two,
table[class="body"] .column td.two { width: 16.666666% !important; }
table[class="body"] .columns td.three,
table[class="body"] .column td.three { width: 25% !important; }
table[class="body"] .columns td.four,
table[class="body"] .column td.four { width: 33.333333% !important; }
table[class="body"] .columns td.five,
table[class="body"] .column td.five { width: 41.666666% !important; }
table[class="body"] .columns td.six,
table[class="body"] .column td.six { width: 50% !important; }
table[class="body"] .columns td.seven,
table[class="body"] .column td.seven { width: 58.333333% !important; }
table[class="body"] .columns td.eight,
table[class="body"] .column td.eight { width: 66.666666% !important; }
table[class="body"] .columns td.nine,
table[class="body"] .column td.nine { width: 75% !important; }
table[class="body"] .columns td.ten,
table[class="body"] .column td.ten { width: 83.333333% !important; }
table[class="body"] .columns td.eleven,
table[class="body"] .column td.eleven { width: 91.666666% !important; }
table[class="body"] .columns td.twelve,
table[class="body"] .column td.twelve { width: 100% !important; }
table[class="body"] td.offset-by-one,
table[class="body"] td.offset-by-two,
table[class="body"] td.offset-by-three,
table[class="body"] td.offset-by-four,
table[class="body"] td.offset-by-five,
table[class="body"] td.offset-by-six,
table[class="body"] td.offset-by-seven,
table[class="body"] td.offset-by-eight,
table[class="body"] td.offset-by-nine,
table[class="body"] td.offset-by-ten,
table[class="body"] td.offset-by-eleven {
padding-left: 0 !important;
}
table[class="body"] table.columns td.expander {
width: 1px !important;
}
table[class="body"] .right-text-pad,
table[class="body"] .text-pad-right {
padding-left: 10px !important;
}
table[class="body"] .left-text-pad,
table[class="body"] .text-pad-left {
padding-right: 10px !important;
}
table[class="body"] .hide-for-small,
table[class="body"] .show-for-desktop {
display: none !important;
}
table[class="body"] .show-for-small,
table[class="body"] .hide-for-desktop {
display: inherit !important;
}
}
</style>
<style>
/**************************************************************
* Custom Styles *
***************************************************************/
/***
Reset & Typography
***/
body {
direction: ltr;
background: #f6f8f1;
}
a:hover {
text-decoration: underline;
}
h1 {font-size: 34px;}
h2 {font-size: 30px;}
h3 {font-size: 26px;}
h4 {font-size: 22px;}
h5 {font-size: 18px;}
h6 {font-size: 16px;}
h4, h3, h2, h1 {
display: block;
margin: 5px 0 15px 0;
}
h7, h6, h5 {
display: block;
margin: 5px 0 5px 0 !important;
}
/***
Buttons
***/
.btn td {
background: #e5e5e5 !important;
border: 0;
font-family: "Segoe UI", Helvetica, Arial, sans-serif;
font-size: 14px;
padding: 7px 14px !important;
color: #333333 !important;
text-align: center;
vertical-align: middle;
}
.btn td a {
display: block;
color: #fff;
}
.btn td a:hover,
.btn td a:focus,
.btn td a:active {
color: #fff !important;
text-decoration: none;
}
.btn td:hover,
.btn td:focus,
.btn td:active {
background: #d8d8d8 !important;
}
/* Yellow */
.btn.yellow td {
background: #ffb848 !important;
}
.btn.yellow td:hover,
.btn.yellow td:focus,
.btn.yellow td:active {
background: #eca22e !important;
}
.btn.red td{
background: #d84a38 !important;
}
.btn.red td:hover,
.btn.red td:focus,
.btn.red td:active {
background: #bb2413 !important;
}
.btn.green td {
background: #35aa47 !important;
}
.btn.green td:hover,
.btn.green td:focus,
.btn.green td:active {
background: #1d943b !important;
}
/* Blue */
.btn.blue td {
background: #4d90fe !important;
}
.btn.blue td:hover,
.btn.blue td:focus,
.btn.blue td:active {
background: #0362fd !important;
}
.template-label {
color: #ffffff;
font-weight: bold;
font-size: 11px;
}
/***
Note Panels
***/
.note .panel {
padding: 10px !important;
background: #ECF8FF;
border: 0;
}
/***
Header
***/
.header {
width: 100%;
background: #1f1f1f;
}
/***
Social Icons
***/
.social-icons {
float: right;
}
.social-icons td {
padding: 0 2px !important;
width: auto !important;
}
.social-icons td:last-child {
padding-right: 0 !important;
}
.social-icons td img {
max-width: none !important;
}
/***
Content
***/
table.container.content > tbody > tr > td{
background: #fff;
padding: 15px !important;
}
/***
Footer
***/
.footer {
width: 100%;
background: #2f2f2f;
}
.footer td {
vertical-align: middle;
color: #fff;
}
/***
Content devider
***/
.devider {
border-bottom: 1px solid #eee;
margin: 15px -15px;
display: block;
}
/***
Media Item
***/
.media-item img {
display: block !important;
float: none;
margin-bottom: 10px;
}
.vertical-middle {
padding-top: 0;
padding-bottom: 0;
vertical-align: middle;
}
/***
Utils
***/
.align-reverse {
text-align: right;
}
.border {
border: 1px solid red;
}
.hidden-mobile {
display: block;
}
.visible-mobile {
display: none;
}
@media only screen and (max-width: 600px) {
/***
Reset & Typography
***/
body {
background: #fff;
}
h1 {font-size: 30px;}
h2 {font-size: 26px;}
h3 {font-size: 22px;}
h4 {font-size: 20px;}
h5 {font-size: 16px;}
h6 {font-size: 14px;}
/***
Content
***/
table.container.content > tbody > tr > td{
padding: 0px !important;
}
table[class="body"] table.columns .social-icons td {
width: auto !important;
}
/***
Header
***/
.header {
padding: 10px !important;
}
/***
Content devider
***/
.devider {
margin: 15px 0;
}
/***
Media Item
***/
.media-item {
border-bottom: 1px solid #eee;
padding: 15px 0 !important;
}
/***
Media Item
***/
.hidden-mobile {
display: none;
}
.visible-mobile {
display: block;
}
}
</style>
</head>
<body>
<table class="body">
<tr>
<td class="center" align="center" valign="top">
<!-- BEGIN: Header -->
<table class="header" align="center">
<tr>
<td class="center" align="center">
<!-- BEGIN: Header Container -->
<table class="container" align="center">
<tr>
<td>
<table class="row ">
<tr>
<td class="wrapper vertical-middle">
<!-- BEGIN: Logo -->
<table class="six columns">
<tr>
<td class="vertical-middle">
<a href="index.html" tppabs="http://www.keenthemes.com/preview/metronic_admin/index.html">
<img src="assets/img/logo.png" tppabs="http://www.keenthemes.com/preview/metronic_admin/assets/img/logo.png" width="86" height="14" border="0" alt=""/>
</a>
</td>
</tr>
</table>
<!-- END: Logo -->
</td>
<td class="wrapper vertical-middle last">
<!-- BEGIN: Social Icons -->
<table class="six columns">
<tr>
<td>
<table class="wrapper social-icons" align="right">
<tr>
<td class="vertical-middle">
<a href="#">
<img src="assets/img/email/social_facebook.png" tppabs="http://www.keenthemes.com/preview/metronic_admin/assets/img/email/social_facebook.png" alt="social icon"/>
</a>
</td>
<td class="vertical-middle">
<a href="#">
<img src="assets/img/email/social_twitter.png" tppabs="http://www.keenthemes.com/preview/metronic_admin/assets/img/email/social_twitter.png" alt="social icon"/>
</a>
</td>
<td class="vertical-middle">
<a href="#">
<img src="assets/img/email/social_googleplus.png" tppabs="http://www.keenthemes.com/preview/metronic_admin/assets/img/email/social_googleplus.png" alt="social icon"/>
</a>
</td>
<td class="vertical-middle">
<a href="#">
<img src="assets/img/email/social_linkedin.png" tppabs="http://www.keenthemes.com/preview/metronic_admin/assets/img/email/social_linkedin.png" alt="social icon"/>
</a>
</td>
<td class="vertical-middle">
<a href="#">
<img src="assets/img/email/social_rss.png" tppabs="http://www.keenthemes.com/preview/metronic_admin/assets/img/email/social_rss.png" alt="social icon"/>
</a>
</td>
</tr>
</table>
</td>
</tr>
</table>
<!-- END: Social Icons -->
</td>
</tr>
</table>
</td>
</tr>
</table>
<!-- END: Header Container -->
</td>
</tr>
</table>
<!-- END: Header -->
<!-- BEGIN: Content -->
<table class="container content" align="center">
<tr>
<td>
<table class="row note">
<tr>
<td class="wrapper last">
<h4>Thank you for joining the Metronic Community!</h4>
<p>
Please click the following URL to activate your account:
</p>
<!-- BEGIN: Note Panel -->
<table class="twelve columns" style="margin-bottom: 10px">
<tr>
<td class="panel">
<a href="javascript:if(confirm('https://www.keenthemes.com/signup/activate/ \n\nÎļþ²¢Î´ÒÀ Teleport Pro È¡»Ø£¬ÒòΪ ´ËÒ»µØÖ·Ê¹ÓÃÉÐδ֧³ÖµÄÐÒé (ÀýÈ磬gopher)¡£ \n\nÄãÒª´Ó·þÎñÆ÷ÉÏ´ò¿ªËüÂð£¿'))window.location='https://www.keenthemes.com/signup/activate/'" tppabs="https://www.keenthemes.com/signup/activate/">
https://www.keenthemes.com/signup/activate/?code=1212
</a>
</td>
<td class="expander">
</td>
</tr>
</table>
<p>
If clicking the URL above does not work, copy and paste the URL into a browser window.
</p>
<!-- END: Note Panel -->
</td>
</tr>
</table>
<span class="devider">
</span>
<table class="row">
<tr>
<td class="wrapper last">
<!-- BEGIN: Disscount Content -->
<table class="twelve columns">
<tr>
<td>
<h4>70% Disscount!</h4>
<p>
Phasellus dictum sapien a neque luctus cursus. Pellentesque sem dolor, fringilla et pharetra vitae. Pellentesque sem dolor, fringilla et pharetra vitae
</p>
<img src="assets/img/email/article.png" tppabs="http://www.keenthemes.com/preview/metronic_admin/assets/img/email/article.png" alt=""/>
</td>
<td class="expander">
</td>
</tr>
</table>
<!-- END: Disscount Content -->
</td>
</tr>
</table>
</td>
</tr>
</table>
<!-- END: Content -->
<!-- BEGIN: Footer -->
<table class="footer" align="center">
<tr>
<td class="center" align="center">
<table class="container" align="center">
<tr>
<td>
<!-- BEGIN: Unsubscribet -->
<table class="row">
<tr>
<td class="wrapper last">
<span style="font-size:12px;">
<i>This ia a system generated email and reply is not required.</i>
</span>
</td>
</tr>
</table>
<!-- END: Unsubscribe -->
<!-- BEGIN: Footer Panel -->
<table class="row">
<tr>
<td class="wrapper">
<table class="four columns">
<tr>
<td class="vertical-middle">
© Keenthemes 2013.
</td>
</tr>
</table>
</td>
<td class="wrapper last">
<table class="eight columns">
<tr>
<td class="vertical-middle align-reverse">
<a href="#">
About Us
</a>
<a href="#">
Privacy Policy
</a>
<a href="#">
Terms of Use
</a>
</td>
</tr>
</table>
</td>
</tr>
</table>
<!-- END: Footer Panel List -->
</td>
</tr>
</table>
</td>
</tr>
</table>
<!-- END: Footer -->
</td>
</tr>
</table>
<script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-37564768-1']); _gaq.push(['_setDomainName', 'keenthemes.com']); _gaq.push(['_setAllowLinker', true]); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })();</script></body>
</html> | wangxhtoo/teeplay | teeplay/target/teeplay/bootstrap/html2/email_system.html | HTML | apache-2.0 | 33,810 |
<!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" />
<title>TestFromClientSide3 xref</title>
<link type="text/css" rel="stylesheet" href="../../../../../stylesheet.css" />
</head>
<body>
<div id="overview"><a href="../../../../../../testapidocs/org/apache/hadoop/hbase/client/TestFromClientSide3.html">View Javadoc</a></div><pre>
<a class="jxr_linenumber" name="1" href="#1">1</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="2" href="#2">2</a> <em class="jxr_javadoccomment"> * Copyright The Apache Software Foundation</em>
<a class="jxr_linenumber" name="3" href="#3">3</a> <em class="jxr_javadoccomment"> *</em>
<a class="jxr_linenumber" name="4" href="#4">4</a> <em class="jxr_javadoccomment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
<a class="jxr_linenumber" name="5" href="#5">5</a> <em class="jxr_javadoccomment"> * or more contributor license agreements. See the NOTICE file</em>
<a class="jxr_linenumber" name="6" href="#6">6</a> <em class="jxr_javadoccomment"> * distributed with this work for additional information</em>
<a class="jxr_linenumber" name="7" href="#7">7</a> <em class="jxr_javadoccomment"> * regarding copyright ownership. The ASF licenses this file</em>
<a class="jxr_linenumber" name="8" href="#8">8</a> <em class="jxr_javadoccomment"> * to you under the Apache License, Version 2.0 (the</em>
<a class="jxr_linenumber" name="9" href="#9">9</a> <em class="jxr_javadoccomment"> * "License"); you may not use this file except in compliance</em>
<a class="jxr_linenumber" name="10" href="#10">10</a> <em class="jxr_javadoccomment"> * with the License. You may obtain a copy of the License at</em>
<a class="jxr_linenumber" name="11" href="#11">11</a> <em class="jxr_javadoccomment"> *</em>
<a class="jxr_linenumber" name="12" href="#12">12</a> <em class="jxr_javadoccomment"> * <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
<a class="jxr_linenumber" name="13" href="#13">13</a> <em class="jxr_javadoccomment"> *</em>
<a class="jxr_linenumber" name="14" href="#14">14</a> <em class="jxr_javadoccomment"> * Unless required by applicable law or agreed to in writing, software</em>
<a class="jxr_linenumber" name="15" href="#15">15</a> <em class="jxr_javadoccomment"> * distributed under the License is distributed on an "AS IS" BASIS,</em>
<a class="jxr_linenumber" name="16" href="#16">16</a> <em class="jxr_javadoccomment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</em>
<a class="jxr_linenumber" name="17" href="#17">17</a> <em class="jxr_javadoccomment"> * See the License for the specific language governing permissions and</em>
<a class="jxr_linenumber" name="18" href="#18">18</a> <em class="jxr_javadoccomment"> * limitations under the License.</em>
<a class="jxr_linenumber" name="19" href="#19">19</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="20" href="#20">20</a> <strong class="jxr_keyword">package</strong> org.apache.hadoop.hbase.client;
<a class="jxr_linenumber" name="21" href="#21">21</a>
<a class="jxr_linenumber" name="22" href="#22">22</a> <strong class="jxr_keyword">import</strong> <strong class="jxr_keyword">static</strong> org.junit.Assert.assertEquals;
<a class="jxr_linenumber" name="23" href="#23">23</a> <strong class="jxr_keyword">import</strong> <strong class="jxr_keyword">static</strong> org.junit.Assert.assertNull;
<a class="jxr_linenumber" name="24" href="#24">24</a> <strong class="jxr_keyword">import</strong> <strong class="jxr_keyword">static</strong> org.junit.Assert.assertTrue;
<a class="jxr_linenumber" name="25" href="#25">25</a> <strong class="jxr_keyword">import</strong> <strong class="jxr_keyword">static</strong> org.junit.Assert.fail;
<a class="jxr_linenumber" name="26" href="#26">26</a>
<a class="jxr_linenumber" name="27" href="#27">27</a> <strong class="jxr_keyword">import</strong> java.util.ArrayList;
<a class="jxr_linenumber" name="28" href="#28">28</a> <strong class="jxr_keyword">import</strong> java.util.Arrays;
<a class="jxr_linenumber" name="29" href="#29">29</a> <strong class="jxr_keyword">import</strong> java.util.List;
<a class="jxr_linenumber" name="30" href="#30">30</a> <strong class="jxr_keyword">import</strong> java.util.Random;
<a class="jxr_linenumber" name="31" href="#31">31</a>
<a class="jxr_linenumber" name="32" href="#32">32</a> <strong class="jxr_keyword">import</strong> org.apache.commons.logging.Log;
<a class="jxr_linenumber" name="33" href="#33">33</a> <strong class="jxr_keyword">import</strong> org.apache.commons.logging.LogFactory;
<a class="jxr_linenumber" name="34" href="#34">34</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.TableName;
<a class="jxr_linenumber" name="35" href="#35">35</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.HBaseTestingUtility;
<a class="jxr_linenumber" name="36" href="#36">36</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.HColumnDescriptor;
<a class="jxr_linenumber" name="37" href="#37">37</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.HRegionLocation;
<a class="jxr_linenumber" name="38" href="#38">38</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.HTableDescriptor;
<a class="jxr_linenumber" name="39" href="#39">39</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.LargeTests;
<a class="jxr_linenumber" name="40" href="#40">40</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.protobuf.ProtobufUtil;
<a class="jxr_linenumber" name="41" href="#41">41</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.protobuf.generated.AdminProtos;
<a class="jxr_linenumber" name="42" href="#42">42</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.util.Bytes;
<a class="jxr_linenumber" name="43" href="#43">43</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.util.Pair;
<a class="jxr_linenumber" name="44" href="#44">44</a> <strong class="jxr_keyword">import</strong> org.junit.After;
<a class="jxr_linenumber" name="45" href="#45">45</a> <strong class="jxr_keyword">import</strong> org.junit.AfterClass;
<a class="jxr_linenumber" name="46" href="#46">46</a> <strong class="jxr_keyword">import</strong> org.junit.Before;
<a class="jxr_linenumber" name="47" href="#47">47</a> <strong class="jxr_keyword">import</strong> org.junit.BeforeClass;
<a class="jxr_linenumber" name="48" href="#48">48</a> <strong class="jxr_keyword">import</strong> org.junit.Test;
<a class="jxr_linenumber" name="49" href="#49">49</a> <strong class="jxr_keyword">import</strong> org.junit.experimental.categories.Category;
<a class="jxr_linenumber" name="50" href="#50">50</a>
<a class="jxr_linenumber" name="51" href="#51">51</a> @Category(LargeTests.<strong class="jxr_keyword">class</strong>)
<a class="jxr_linenumber" name="52" href="#52">52</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../org/apache/hadoop/hbase/client/TestFromClientSide3.html">TestFromClientSide3</a> {
<a class="jxr_linenumber" name="53" href="#53">53</a> <strong class="jxr_keyword">final</strong> Log LOG = LogFactory.getLog(getClass());
<a class="jxr_linenumber" name="54" href="#54">54</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">static</strong> <a href="../../../../../org/apache/hadoop/hbase/HBaseTestingUtility.html">HBaseTestingUtility</a> TEST_UTIL
<a class="jxr_linenumber" name="55" href="#55">55</a> = <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/hadoop/hbase/HBaseTestingUtility.html">HBaseTestingUtility</a>();
<a class="jxr_linenumber" name="56" href="#56">56</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> byte[] FAMILY = Bytes.toBytes(<span class="jxr_string">"testFamily"</span>);
<a class="jxr_linenumber" name="57" href="#57">57</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> Random random = <strong class="jxr_keyword">new</strong> Random();
<a class="jxr_linenumber" name="58" href="#58">58</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">int</strong> SLAVES = 3;
<a class="jxr_linenumber" name="59" href="#59">59</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> byte [] ROW = Bytes.toBytes(<span class="jxr_string">"testRow"</span>);
<a class="jxr_linenumber" name="60" href="#60">60</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> byte[] ANOTHERROW = Bytes.toBytes(<span class="jxr_string">"anotherrow"</span>);
<a class="jxr_linenumber" name="61" href="#61">61</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> byte [] QUALIFIER = Bytes.toBytes(<span class="jxr_string">"testQualifier"</span>);
<a class="jxr_linenumber" name="62" href="#62">62</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> byte [] VALUE = Bytes.toBytes(<span class="jxr_string">"testValue"</span>);
<a class="jxr_linenumber" name="63" href="#63">63</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">static</strong> byte[] COL_QUAL = Bytes.toBytes(<span class="jxr_string">"f1"</span>);
<a class="jxr_linenumber" name="64" href="#64">64</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">static</strong> byte[] VAL_BYTES = Bytes.toBytes(<span class="jxr_string">"v1"</span>);
<a class="jxr_linenumber" name="65" href="#65">65</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">static</strong> byte[] ROW_BYTES = Bytes.toBytes(<span class="jxr_string">"r1"</span>);
<a class="jxr_linenumber" name="66" href="#66">66</a>
<a class="jxr_linenumber" name="67" href="#67">67</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="68" href="#68">68</a> <em class="jxr_javadoccomment"> * @throws java.lang.Exception</em>
<a class="jxr_linenumber" name="69" href="#69">69</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="70" href="#70">70</a> @BeforeClass
<a class="jxr_linenumber" name="71" href="#71">71</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">void</strong> setUpBeforeClass() <strong class="jxr_keyword">throws</strong> Exception {
<a class="jxr_linenumber" name="72" href="#72">72</a> TEST_UTIL.getConfiguration().setBoolean(
<a class="jxr_linenumber" name="73" href="#73">73</a> <span class="jxr_string">"hbase.online.schema.update.enable"</span>, <strong class="jxr_keyword">true</strong>);
<a class="jxr_linenumber" name="74" href="#74">74</a> TEST_UTIL.startMiniCluster(SLAVES);
<a class="jxr_linenumber" name="75" href="#75">75</a> }
<a class="jxr_linenumber" name="76" href="#76">76</a>
<a class="jxr_linenumber" name="77" href="#77">77</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="78" href="#78">78</a> <em class="jxr_javadoccomment"> * @throws java.lang.Exception</em>
<a class="jxr_linenumber" name="79" href="#79">79</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="80" href="#80">80</a> @AfterClass
<a class="jxr_linenumber" name="81" href="#81">81</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">void</strong> tearDownAfterClass() <strong class="jxr_keyword">throws</strong> Exception {
<a class="jxr_linenumber" name="82" href="#82">82</a> TEST_UTIL.shutdownMiniCluster();
<a class="jxr_linenumber" name="83" href="#83">83</a> }
<a class="jxr_linenumber" name="84" href="#84">84</a>
<a class="jxr_linenumber" name="85" href="#85">85</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="86" href="#86">86</a> <em class="jxr_javadoccomment"> * @throws java.lang.Exception</em>
<a class="jxr_linenumber" name="87" href="#87">87</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="88" href="#88">88</a> @Before
<a class="jxr_linenumber" name="89" href="#89">89</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setUp() <strong class="jxr_keyword">throws</strong> Exception {
<a class="jxr_linenumber" name="90" href="#90">90</a> <em class="jxr_comment">// Nothing to do.</em>
<a class="jxr_linenumber" name="91" href="#91">91</a> }
<a class="jxr_linenumber" name="92" href="#92">92</a>
<a class="jxr_linenumber" name="93" href="#93">93</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="94" href="#94">94</a> <em class="jxr_javadoccomment"> * @throws java.lang.Exception</em>
<a class="jxr_linenumber" name="95" href="#95">95</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="96" href="#96">96</a> @After
<a class="jxr_linenumber" name="97" href="#97">97</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> tearDown() <strong class="jxr_keyword">throws</strong> Exception {
<a class="jxr_linenumber" name="98" href="#98">98</a> <em class="jxr_comment">// Nothing to do.</em>
<a class="jxr_linenumber" name="99" href="#99">99</a> }
<a class="jxr_linenumber" name="100" href="#100">100</a>
<a class="jxr_linenumber" name="101" href="#101">101</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> randomCFPuts(HTable table, byte[] row, byte[] family, <strong class="jxr_keyword">int</strong> nPuts)
<a class="jxr_linenumber" name="102" href="#102">102</a> <strong class="jxr_keyword">throws</strong> Exception {
<a class="jxr_linenumber" name="103" href="#103">103</a> Put put = <strong class="jxr_keyword">new</strong> Put(row);
<a class="jxr_linenumber" name="104" href="#104">104</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = 0; i < nPuts; i++) {
<a class="jxr_linenumber" name="105" href="#105">105</a> byte[] qualifier = Bytes.toBytes(random.nextInt());
<a class="jxr_linenumber" name="106" href="#106">106</a> byte[] value = Bytes.toBytes(random.nextInt());
<a class="jxr_linenumber" name="107" href="#107">107</a> put.add(family, qualifier, value);
<a class="jxr_linenumber" name="108" href="#108">108</a> }
<a class="jxr_linenumber" name="109" href="#109">109</a> table.put(put);
<a class="jxr_linenumber" name="110" href="#110">110</a> }
<a class="jxr_linenumber" name="111" href="#111">111</a>
<a class="jxr_linenumber" name="112" href="#112">112</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">void</strong> performMultiplePutAndFlush(HBaseAdmin admin, HTable table,
<a class="jxr_linenumber" name="113" href="#113">113</a> byte[] row, byte[] family, <strong class="jxr_keyword">int</strong> nFlushes, <strong class="jxr_keyword">int</strong> nPuts) <strong class="jxr_keyword">throws</strong> Exception {
<a class="jxr_linenumber" name="114" href="#114">114</a>
<a class="jxr_linenumber" name="115" href="#115">115</a> <em class="jxr_comment">// connection needed for poll-wait</em>
<a class="jxr_linenumber" name="116" href="#116">116</a> HConnection conn = HConnectionManager.getConnection(TEST_UTIL
<a class="jxr_linenumber" name="117" href="#117">117</a> .getConfiguration());
<a class="jxr_linenumber" name="118" href="#118">118</a> HRegionLocation loc = table.getRegionLocation(row, <strong class="jxr_keyword">true</strong>);
<a class="jxr_linenumber" name="119" href="#119">119</a> AdminProtos.AdminService.BlockingInterface server = conn.getAdmin(loc.getServerName());
<a class="jxr_linenumber" name="120" href="#120">120</a> byte[] regName = loc.getRegionInfo().getRegionName();
<a class="jxr_linenumber" name="121" href="#121">121</a>
<a class="jxr_linenumber" name="122" href="#122">122</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = 0; i < nFlushes; i++) {
<a class="jxr_linenumber" name="123" href="#123">123</a> randomCFPuts(table, row, family, nPuts);
<a class="jxr_linenumber" name="124" href="#124">124</a> List<String> sf = ProtobufUtil.getStoreFiles(server, regName, FAMILY);
<a class="jxr_linenumber" name="125" href="#125">125</a> <strong class="jxr_keyword">int</strong> sfCount = sf.size();
<a class="jxr_linenumber" name="126" href="#126">126</a>
<a class="jxr_linenumber" name="127" href="#127">127</a> <em class="jxr_comment">// TODO: replace this api with a synchronous flush after HBASE-2949</em>
<a class="jxr_linenumber" name="128" href="#128">128</a> admin.flush(table.getTableName());
<a class="jxr_linenumber" name="129" href="#129">129</a>
<a class="jxr_linenumber" name="130" href="#130">130</a> <em class="jxr_comment">// synchronously poll wait for a new storefile to appear (flush happened)</em>
<a class="jxr_linenumber" name="131" href="#131">131</a> <strong class="jxr_keyword">while</strong> (ProtobufUtil.getStoreFiles(
<a class="jxr_linenumber" name="132" href="#132">132</a> server, regName, FAMILY).size() == sfCount) {
<a class="jxr_linenumber" name="133" href="#133">133</a> Thread.sleep(40);
<a class="jxr_linenumber" name="134" href="#134">134</a> }
<a class="jxr_linenumber" name="135" href="#135">135</a> }
<a class="jxr_linenumber" name="136" href="#136">136</a> }
<a class="jxr_linenumber" name="137" href="#137">137</a>
<a class="jxr_linenumber" name="138" href="#138">138</a> <em class="jxr_comment">// override the config settings at the CF level and ensure priority</em>
<a class="jxr_linenumber" name="139" href="#139">139</a> @Test(timeout = 60000)
<a class="jxr_linenumber" name="140" href="#140">140</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testAdvancedConfigOverride() <strong class="jxr_keyword">throws</strong> Exception {
<a class="jxr_linenumber" name="141" href="#141">141</a> <em class="jxr_comment">/*</em>
<a class="jxr_linenumber" name="142" href="#142">142</a> <em class="jxr_comment"> * Overall idea: (1) create 3 store files and issue a compaction. config's</em>
<a class="jxr_linenumber" name="143" href="#143">143</a> <em class="jxr_comment"> * compaction.min == 3, so should work. (2) Increase the compaction.min</em>
<a class="jxr_linenumber" name="144" href="#144">144</a> <em class="jxr_comment"> * toggle in the HTD to 5 and modify table. If we use the HTD value instead</em>
<a class="jxr_linenumber" name="145" href="#145">145</a> <em class="jxr_comment"> * of the default config value, adding 3 files and issuing a compaction</em>
<a class="jxr_linenumber" name="146" href="#146">146</a> <em class="jxr_comment"> * SHOULD NOT work (3) Decrease the compaction.min toggle in the HCD to 2</em>
<a class="jxr_linenumber" name="147" href="#147">147</a> <em class="jxr_comment"> * and modify table. The CF schema should override the Table schema and now</em>
<a class="jxr_linenumber" name="148" href="#148">148</a> <em class="jxr_comment"> * cause a minor compaction.</em>
<a class="jxr_linenumber" name="149" href="#149">149</a> <em class="jxr_comment"> */</em>
<a class="jxr_linenumber" name="150" href="#150">150</a> TEST_UTIL.getConfiguration().setInt(<span class="jxr_string">"hbase.hstore.compaction.min"</span>, 3);
<a class="jxr_linenumber" name="151" href="#151">151</a>
<a class="jxr_linenumber" name="152" href="#152">152</a> String tableName = <span class="jxr_string">"testAdvancedConfigOverride"</span>;
<a class="jxr_linenumber" name="153" href="#153">153</a> TableName TABLE =
<a class="jxr_linenumber" name="154" href="#154">154</a> TableName.valueOf(tableName);
<a class="jxr_linenumber" name="155" href="#155">155</a> HTable hTable = TEST_UTIL.createTable(TABLE, FAMILY, 10);
<a class="jxr_linenumber" name="156" href="#156">156</a> HBaseAdmin admin = <strong class="jxr_keyword">new</strong> HBaseAdmin(TEST_UTIL.getConfiguration());
<a class="jxr_linenumber" name="157" href="#157">157</a> HConnection connection = HConnectionManager.getConnection(TEST_UTIL
<a class="jxr_linenumber" name="158" href="#158">158</a> .getConfiguration());
<a class="jxr_linenumber" name="159" href="#159">159</a>
<a class="jxr_linenumber" name="160" href="#160">160</a> <em class="jxr_comment">// Create 3 store files.</em>
<a class="jxr_linenumber" name="161" href="#161">161</a> byte[] row = Bytes.toBytes(random.nextInt());
<a class="jxr_linenumber" name="162" href="#162">162</a> performMultiplePutAndFlush(admin, hTable, row, FAMILY, 3, 100);
<a class="jxr_linenumber" name="163" href="#163">163</a>
<a class="jxr_linenumber" name="164" href="#164">164</a> <em class="jxr_comment">// Verify we have multiple store files.</em>
<a class="jxr_linenumber" name="165" href="#165">165</a> HRegionLocation loc = hTable.getRegionLocation(row, <strong class="jxr_keyword">true</strong>);
<a class="jxr_linenumber" name="166" href="#166">166</a> byte[] regionName = loc.getRegionInfo().getRegionName();
<a class="jxr_linenumber" name="167" href="#167">167</a> AdminProtos.AdminService.BlockingInterface server =
<a class="jxr_linenumber" name="168" href="#168">168</a> connection.getAdmin(loc.getServerName());
<a class="jxr_linenumber" name="169" href="#169">169</a> assertTrue(ProtobufUtil.getStoreFiles(
<a class="jxr_linenumber" name="170" href="#170">170</a> server, regionName, FAMILY).size() > 1);
<a class="jxr_linenumber" name="171" href="#171">171</a>
<a class="jxr_linenumber" name="172" href="#172">172</a> <em class="jxr_comment">// Issue a compaction request</em>
<a class="jxr_linenumber" name="173" href="#173">173</a> admin.compact(TABLE.getName());
<a class="jxr_linenumber" name="174" href="#174">174</a>
<a class="jxr_linenumber" name="175" href="#175">175</a> <em class="jxr_comment">// poll wait for the compactions to happen</em>
<a class="jxr_linenumber" name="176" href="#176">176</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = 0; i < 10 * 1000 / 40; ++i) {
<a class="jxr_linenumber" name="177" href="#177">177</a> <em class="jxr_comment">// The number of store files after compaction should be lesser.</em>
<a class="jxr_linenumber" name="178" href="#178">178</a> loc = hTable.getRegionLocation(row, <strong class="jxr_keyword">true</strong>);
<a class="jxr_linenumber" name="179" href="#179">179</a> <strong class="jxr_keyword">if</strong> (!loc.getRegionInfo().isOffline()) {
<a class="jxr_linenumber" name="180" href="#180">180</a> regionName = loc.getRegionInfo().getRegionName();
<a class="jxr_linenumber" name="181" href="#181">181</a> server = connection.getAdmin(loc.getServerName());
<a class="jxr_linenumber" name="182" href="#182">182</a> <strong class="jxr_keyword">if</strong> (ProtobufUtil.getStoreFiles(
<a class="jxr_linenumber" name="183" href="#183">183</a> server, regionName, FAMILY).size() <= 1) {
<a class="jxr_linenumber" name="184" href="#184">184</a> <strong class="jxr_keyword">break</strong>;
<a class="jxr_linenumber" name="185" href="#185">185</a> }
<a class="jxr_linenumber" name="186" href="#186">186</a> }
<a class="jxr_linenumber" name="187" href="#187">187</a> Thread.sleep(40);
<a class="jxr_linenumber" name="188" href="#188">188</a> }
<a class="jxr_linenumber" name="189" href="#189">189</a> <em class="jxr_comment">// verify the compactions took place and that we didn't just time out</em>
<a class="jxr_linenumber" name="190" href="#190">190</a> assertTrue(ProtobufUtil.getStoreFiles(
<a class="jxr_linenumber" name="191" href="#191">191</a> server, regionName, FAMILY).size() <= 1);
<a class="jxr_linenumber" name="192" href="#192">192</a>
<a class="jxr_linenumber" name="193" href="#193">193</a> <em class="jxr_comment">// change the compaction.min config option for this table to 5</em>
<a class="jxr_linenumber" name="194" href="#194">194</a> LOG.info(<span class="jxr_string">"hbase.hstore.compaction.min should now be 5"</span>);
<a class="jxr_linenumber" name="195" href="#195">195</a> HTableDescriptor htd = <strong class="jxr_keyword">new</strong> HTableDescriptor(hTable.getTableDescriptor());
<a class="jxr_linenumber" name="196" href="#196">196</a> htd.setValue(<span class="jxr_string">"hbase.hstore.compaction.min"</span>, String.valueOf(5));
<a class="jxr_linenumber" name="197" href="#197">197</a> admin.modifyTable(TABLE, htd);
<a class="jxr_linenumber" name="198" href="#198">198</a> Pair<Integer, Integer> st;
<a class="jxr_linenumber" name="199" href="#199">199</a> <strong class="jxr_keyword">while</strong> (<strong class="jxr_keyword">null</strong> != (st = admin.getAlterStatus(TABLE)) && st.getFirst() > 0) {
<a class="jxr_linenumber" name="200" href="#200">200</a> LOG.debug(st.getFirst() + <span class="jxr_string">" regions left to update"</span>);
<a class="jxr_linenumber" name="201" href="#201">201</a> Thread.sleep(40);
<a class="jxr_linenumber" name="202" href="#202">202</a> }
<a class="jxr_linenumber" name="203" href="#203">203</a> LOG.info(<span class="jxr_string">"alter status finished"</span>);
<a class="jxr_linenumber" name="204" href="#204">204</a>
<a class="jxr_linenumber" name="205" href="#205">205</a> <em class="jxr_comment">// Create 3 more store files.</em>
<a class="jxr_linenumber" name="206" href="#206">206</a> performMultiplePutAndFlush(admin, hTable, row, FAMILY, 3, 10);
<a class="jxr_linenumber" name="207" href="#207">207</a>
<a class="jxr_linenumber" name="208" href="#208">208</a> <em class="jxr_comment">// Issue a compaction request</em>
<a class="jxr_linenumber" name="209" href="#209">209</a> admin.compact(TABLE.getName());
<a class="jxr_linenumber" name="210" href="#210">210</a>
<a class="jxr_linenumber" name="211" href="#211">211</a> <em class="jxr_comment">// This time, the compaction request should not happen</em>
<a class="jxr_linenumber" name="212" href="#212">212</a> Thread.sleep(10 * 1000);
<a class="jxr_linenumber" name="213" href="#213">213</a> loc = hTable.getRegionLocation(row, <strong class="jxr_keyword">true</strong>);
<a class="jxr_linenumber" name="214" href="#214">214</a> regionName = loc.getRegionInfo().getRegionName();
<a class="jxr_linenumber" name="215" href="#215">215</a> server = connection.getAdmin(loc.getServerName());
<a class="jxr_linenumber" name="216" href="#216">216</a> <strong class="jxr_keyword">int</strong> sfCount = ProtobufUtil.getStoreFiles(
<a class="jxr_linenumber" name="217" href="#217">217</a> server, regionName, FAMILY).size();
<a class="jxr_linenumber" name="218" href="#218">218</a> assertTrue(sfCount > 1);
<a class="jxr_linenumber" name="219" href="#219">219</a>
<a class="jxr_linenumber" name="220" href="#220">220</a> <em class="jxr_comment">// change an individual CF's config option to 2 & online schema update</em>
<a class="jxr_linenumber" name="221" href="#221">221</a> LOG.info(<span class="jxr_string">"hbase.hstore.compaction.min should now be 2"</span>);
<a class="jxr_linenumber" name="222" href="#222">222</a> HColumnDescriptor hcd = <strong class="jxr_keyword">new</strong> HColumnDescriptor(htd.getFamily(FAMILY));
<a class="jxr_linenumber" name="223" href="#223">223</a> hcd.setValue(<span class="jxr_string">"hbase.hstore.compaction.min"</span>, String.valueOf(2));
<a class="jxr_linenumber" name="224" href="#224">224</a> htd.addFamily(hcd);
<a class="jxr_linenumber" name="225" href="#225">225</a> admin.modifyTable(TABLE, htd);
<a class="jxr_linenumber" name="226" href="#226">226</a> <strong class="jxr_keyword">while</strong> (<strong class="jxr_keyword">null</strong> != (st = admin.getAlterStatus(TABLE)) && st.getFirst() > 0) {
<a class="jxr_linenumber" name="227" href="#227">227</a> LOG.debug(st.getFirst() + <span class="jxr_string">" regions left to update"</span>);
<a class="jxr_linenumber" name="228" href="#228">228</a> Thread.sleep(40);
<a class="jxr_linenumber" name="229" href="#229">229</a> }
<a class="jxr_linenumber" name="230" href="#230">230</a> LOG.info(<span class="jxr_string">"alter status finished"</span>);
<a class="jxr_linenumber" name="231" href="#231">231</a>
<a class="jxr_linenumber" name="232" href="#232">232</a> <em class="jxr_comment">// Issue a compaction request</em>
<a class="jxr_linenumber" name="233" href="#233">233</a> admin.compact(TABLE.getName());
<a class="jxr_linenumber" name="234" href="#234">234</a>
<a class="jxr_linenumber" name="235" href="#235">235</a> <em class="jxr_comment">// poll wait for the compactions to happen</em>
<a class="jxr_linenumber" name="236" href="#236">236</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = 0; i < 10 * 1000 / 40; ++i) {
<a class="jxr_linenumber" name="237" href="#237">237</a> loc = hTable.getRegionLocation(row, <strong class="jxr_keyword">true</strong>);
<a class="jxr_linenumber" name="238" href="#238">238</a> regionName = loc.getRegionInfo().getRegionName();
<a class="jxr_linenumber" name="239" href="#239">239</a> <strong class="jxr_keyword">try</strong> {
<a class="jxr_linenumber" name="240" href="#240">240</a> server = connection.getAdmin(loc.getServerName());
<a class="jxr_linenumber" name="241" href="#241">241</a> <strong class="jxr_keyword">if</strong> (ProtobufUtil.getStoreFiles(
<a class="jxr_linenumber" name="242" href="#242">242</a> server, regionName, FAMILY).size() < sfCount) {
<a class="jxr_linenumber" name="243" href="#243">243</a> <strong class="jxr_keyword">break</strong>;
<a class="jxr_linenumber" name="244" href="#244">244</a> }
<a class="jxr_linenumber" name="245" href="#245">245</a> } <strong class="jxr_keyword">catch</strong> (Exception e) {
<a class="jxr_linenumber" name="246" href="#246">246</a> LOG.debug(<span class="jxr_string">"Waiting for region to come online: "</span> + regionName);
<a class="jxr_linenumber" name="247" href="#247">247</a> }
<a class="jxr_linenumber" name="248" href="#248">248</a> Thread.sleep(40);
<a class="jxr_linenumber" name="249" href="#249">249</a> }
<a class="jxr_linenumber" name="250" href="#250">250</a> <em class="jxr_comment">// verify the compaction took place and that we didn't just time out</em>
<a class="jxr_linenumber" name="251" href="#251">251</a> assertTrue(ProtobufUtil.getStoreFiles(
<a class="jxr_linenumber" name="252" href="#252">252</a> server, regionName, FAMILY).size() < sfCount);
<a class="jxr_linenumber" name="253" href="#253">253</a>
<a class="jxr_linenumber" name="254" href="#254">254</a> <em class="jxr_comment">// Finally, ensure that we can remove a custom config value after we made it</em>
<a class="jxr_linenumber" name="255" href="#255">255</a> LOG.info(<span class="jxr_string">"Removing CF config value"</span>);
<a class="jxr_linenumber" name="256" href="#256">256</a> LOG.info(<span class="jxr_string">"hbase.hstore.compaction.min should now be 5"</span>);
<a class="jxr_linenumber" name="257" href="#257">257</a> hcd = <strong class="jxr_keyword">new</strong> HColumnDescriptor(htd.getFamily(FAMILY));
<a class="jxr_linenumber" name="258" href="#258">258</a> hcd.setValue(<span class="jxr_string">"hbase.hstore.compaction.min"</span>, <strong class="jxr_keyword">null</strong>);
<a class="jxr_linenumber" name="259" href="#259">259</a> htd.addFamily(hcd);
<a class="jxr_linenumber" name="260" href="#260">260</a> admin.modifyTable(TABLE, htd);
<a class="jxr_linenumber" name="261" href="#261">261</a> <strong class="jxr_keyword">while</strong> (<strong class="jxr_keyword">null</strong> != (st = admin.getAlterStatus(TABLE)) && st.getFirst() > 0) {
<a class="jxr_linenumber" name="262" href="#262">262</a> LOG.debug(st.getFirst() + <span class="jxr_string">" regions left to update"</span>);
<a class="jxr_linenumber" name="263" href="#263">263</a> Thread.sleep(40);
<a class="jxr_linenumber" name="264" href="#264">264</a> }
<a class="jxr_linenumber" name="265" href="#265">265</a> LOG.info(<span class="jxr_string">"alter status finished"</span>);
<a class="jxr_linenumber" name="266" href="#266">266</a> assertNull(hTable.getTableDescriptor().getFamily(FAMILY).getValue(
<a class="jxr_linenumber" name="267" href="#267">267</a> <span class="jxr_string">"hbase.hstore.compaction.min"</span>));
<a class="jxr_linenumber" name="268" href="#268">268</a> }
<a class="jxr_linenumber" name="269" href="#269">269</a>
<a class="jxr_linenumber" name="270" href="#270">270</a> @Test
<a class="jxr_linenumber" name="271" href="#271">271</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testHTableBatchWithEmptyPut() <strong class="jxr_keyword">throws</strong> Exception {
<a class="jxr_linenumber" name="272" href="#272">272</a> HTable table = TEST_UTIL.createTable(
<a class="jxr_linenumber" name="273" href="#273">273</a> Bytes.toBytes(<span class="jxr_string">"testHTableBatchWithEmptyPut"</span>), <strong class="jxr_keyword">new</strong> byte[][] { FAMILY });
<a class="jxr_linenumber" name="274" href="#274">274</a> <strong class="jxr_keyword">try</strong> {
<a class="jxr_linenumber" name="275" href="#275">275</a> List actions = (List) <strong class="jxr_keyword">new</strong> ArrayList();
<a class="jxr_linenumber" name="276" href="#276">276</a> Object[] results = <strong class="jxr_keyword">new</strong> Object[2];
<a class="jxr_linenumber" name="277" href="#277">277</a> <em class="jxr_comment">// create an empty Put</em>
<a class="jxr_linenumber" name="278" href="#278">278</a> Put put1 = <strong class="jxr_keyword">new</strong> Put(ROW);
<a class="jxr_linenumber" name="279" href="#279">279</a> actions.add(put1);
<a class="jxr_linenumber" name="280" href="#280">280</a>
<a class="jxr_linenumber" name="281" href="#281">281</a> Put put2 = <strong class="jxr_keyword">new</strong> Put(ANOTHERROW);
<a class="jxr_linenumber" name="282" href="#282">282</a> put2.add(FAMILY, QUALIFIER, VALUE);
<a class="jxr_linenumber" name="283" href="#283">283</a> actions.add(put2);
<a class="jxr_linenumber" name="284" href="#284">284</a>
<a class="jxr_linenumber" name="285" href="#285">285</a> table.batch(actions, results);
<a class="jxr_linenumber" name="286" href="#286">286</a> fail(<span class="jxr_string">"Empty Put should have failed the batch call"</span>);
<a class="jxr_linenumber" name="287" href="#287">287</a> } <strong class="jxr_keyword">catch</strong> (IllegalArgumentException iae) {
<a class="jxr_linenumber" name="288" href="#288">288</a>
<a class="jxr_linenumber" name="289" href="#289">289</a> } <strong class="jxr_keyword">finally</strong> {
<a class="jxr_linenumber" name="290" href="#290">290</a> table.close();
<a class="jxr_linenumber" name="291" href="#291">291</a> }
<a class="jxr_linenumber" name="292" href="#292">292</a> }
<a class="jxr_linenumber" name="293" href="#293">293</a>
<a class="jxr_linenumber" name="294" href="#294">294</a> @Test
<a class="jxr_linenumber" name="295" href="#295">295</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testHTableExistsMethodSingleRegionSingleGet() <strong class="jxr_keyword">throws</strong> Exception {
<a class="jxr_linenumber" name="296" href="#296">296</a>
<a class="jxr_linenumber" name="297" href="#297">297</a> <em class="jxr_comment">// Test with a single region table.</em>
<a class="jxr_linenumber" name="298" href="#298">298</a>
<a class="jxr_linenumber" name="299" href="#299">299</a> HTable table = TEST_UTIL.createTable(
<a class="jxr_linenumber" name="300" href="#300">300</a> Bytes.toBytes(<span class="jxr_string">"testHTableExistsMethodSingleRegionSingleGet"</span>), <strong class="jxr_keyword">new</strong> byte[][] { FAMILY });
<a class="jxr_linenumber" name="301" href="#301">301</a>
<a class="jxr_linenumber" name="302" href="#302">302</a> Put put = <strong class="jxr_keyword">new</strong> Put(ROW);
<a class="jxr_linenumber" name="303" href="#303">303</a> put.add(FAMILY, QUALIFIER, VALUE);
<a class="jxr_linenumber" name="304" href="#304">304</a>
<a class="jxr_linenumber" name="305" href="#305">305</a> Get get = <strong class="jxr_keyword">new</strong> Get(ROW);
<a class="jxr_linenumber" name="306" href="#306">306</a>
<a class="jxr_linenumber" name="307" href="#307">307</a> <strong class="jxr_keyword">boolean</strong> exist = table.exists(get);
<a class="jxr_linenumber" name="308" href="#308">308</a> assertEquals(exist, false);
<a class="jxr_linenumber" name="309" href="#309">309</a>
<a class="jxr_linenumber" name="310" href="#310">310</a> table.put(put);
<a class="jxr_linenumber" name="311" href="#311">311</a>
<a class="jxr_linenumber" name="312" href="#312">312</a> exist = table.exists(get);
<a class="jxr_linenumber" name="313" href="#313">313</a> assertEquals(exist, <strong class="jxr_keyword">true</strong>);
<a class="jxr_linenumber" name="314" href="#314">314</a> }
<a class="jxr_linenumber" name="315" href="#315">315</a>
<a class="jxr_linenumber" name="316" href="#316">316</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testHTableExistsMethodSingleRegionMultipleGets() <strong class="jxr_keyword">throws</strong> Exception {
<a class="jxr_linenumber" name="317" href="#317">317</a>
<a class="jxr_linenumber" name="318" href="#318">318</a> HTable table = TEST_UTIL.createTable(
<a class="jxr_linenumber" name="319" href="#319">319</a> Bytes.toBytes(<span class="jxr_string">"testHTableExistsMethodSingleRegionMultipleGets"</span>), <strong class="jxr_keyword">new</strong> byte[][] { FAMILY });
<a class="jxr_linenumber" name="320" href="#320">320</a>
<a class="jxr_linenumber" name="321" href="#321">321</a> Put put = <strong class="jxr_keyword">new</strong> Put(ROW);
<a class="jxr_linenumber" name="322" href="#322">322</a> put.add(FAMILY, QUALIFIER, VALUE);
<a class="jxr_linenumber" name="323" href="#323">323</a> table.put(put);
<a class="jxr_linenumber" name="324" href="#324">324</a>
<a class="jxr_linenumber" name="325" href="#325">325</a> List<Get> gets = <strong class="jxr_keyword">new</strong> ArrayList<Get>();
<a class="jxr_linenumber" name="326" href="#326">326</a> gets.add(<strong class="jxr_keyword">new</strong> Get(ROW));
<a class="jxr_linenumber" name="327" href="#327">327</a> gets.add(<strong class="jxr_keyword">null</strong>);
<a class="jxr_linenumber" name="328" href="#328">328</a> gets.add(<strong class="jxr_keyword">new</strong> Get(ANOTHERROW));
<a class="jxr_linenumber" name="329" href="#329">329</a>
<a class="jxr_linenumber" name="330" href="#330">330</a> Boolean[] results = table.exists(gets);
<a class="jxr_linenumber" name="331" href="#331">331</a> assertEquals(results[0], <strong class="jxr_keyword">true</strong>);
<a class="jxr_linenumber" name="332" href="#332">332</a> assertEquals(results[1], false);
<a class="jxr_linenumber" name="333" href="#333">333</a> assertEquals(results[2], false);
<a class="jxr_linenumber" name="334" href="#334">334</a> }
<a class="jxr_linenumber" name="335" href="#335">335</a>
<a class="jxr_linenumber" name="336" href="#336">336</a> @Test
<a class="jxr_linenumber" name="337" href="#337">337</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testHTableExistsMethodMultipleRegionsSingleGet() <strong class="jxr_keyword">throws</strong> Exception {
<a class="jxr_linenumber" name="338" href="#338">338</a>
<a class="jxr_linenumber" name="339" href="#339">339</a> HTable table = TEST_UTIL.createTable(
<a class="jxr_linenumber" name="340" href="#340">340</a> Bytes.toBytes(<span class="jxr_string">"testHTableExistsMethodMultipleRegionsSingleGet"</span>), <strong class="jxr_keyword">new</strong> byte[][] { FAMILY }, 1,
<a class="jxr_linenumber" name="341" href="#341">341</a> <strong class="jxr_keyword">new</strong> byte[] { 0x00 }, <strong class="jxr_keyword">new</strong> byte[] { (byte) 0xff }, 255);
<a class="jxr_linenumber" name="342" href="#342">342</a> Put put = <strong class="jxr_keyword">new</strong> Put(ROW);
<a class="jxr_linenumber" name="343" href="#343">343</a> put.add(FAMILY, QUALIFIER, VALUE);
<a class="jxr_linenumber" name="344" href="#344">344</a>
<a class="jxr_linenumber" name="345" href="#345">345</a> Get get = <strong class="jxr_keyword">new</strong> Get(ROW);
<a class="jxr_linenumber" name="346" href="#346">346</a>
<a class="jxr_linenumber" name="347" href="#347">347</a> <strong class="jxr_keyword">boolean</strong> exist = table.exists(get);
<a class="jxr_linenumber" name="348" href="#348">348</a> assertEquals(exist, false);
<a class="jxr_linenumber" name="349" href="#349">349</a>
<a class="jxr_linenumber" name="350" href="#350">350</a> table.put(put);
<a class="jxr_linenumber" name="351" href="#351">351</a>
<a class="jxr_linenumber" name="352" href="#352">352</a> exist = table.exists(get);
<a class="jxr_linenumber" name="353" href="#353">353</a> assertEquals(exist, <strong class="jxr_keyword">true</strong>);
<a class="jxr_linenumber" name="354" href="#354">354</a> }
<a class="jxr_linenumber" name="355" href="#355">355</a>
<a class="jxr_linenumber" name="356" href="#356">356</a> @Test
<a class="jxr_linenumber" name="357" href="#357">357</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testHTableExistsMethodMultipleRegionsMultipleGets() <strong class="jxr_keyword">throws</strong> Exception {
<a class="jxr_linenumber" name="358" href="#358">358</a> HTable table = TEST_UTIL.createTable(
<a class="jxr_linenumber" name="359" href="#359">359</a> Bytes.toBytes(<span class="jxr_string">"testHTableExistsMethodMultipleRegionsMultipleGets"</span>), <strong class="jxr_keyword">new</strong> byte[][] { FAMILY },
<a class="jxr_linenumber" name="360" href="#360">360</a> 1, <strong class="jxr_keyword">new</strong> byte[] { 0x00 }, <strong class="jxr_keyword">new</strong> byte[] { (byte) 0xff }, 255);
<a class="jxr_linenumber" name="361" href="#361">361</a> Put put = <strong class="jxr_keyword">new</strong> Put(ROW);
<a class="jxr_linenumber" name="362" href="#362">362</a> put.add(FAMILY, QUALIFIER, VALUE);
<a class="jxr_linenumber" name="363" href="#363">363</a> table.put (put);
<a class="jxr_linenumber" name="364" href="#364">364</a>
<a class="jxr_linenumber" name="365" href="#365">365</a> List<Get> gets = <strong class="jxr_keyword">new</strong> ArrayList<Get>();
<a class="jxr_linenumber" name="366" href="#366">366</a> gets.add(<strong class="jxr_keyword">new</strong> Get(ANOTHERROW));
<a class="jxr_linenumber" name="367" href="#367">367</a> gets.add(<strong class="jxr_keyword">new</strong> Get(Bytes.add(ROW, <strong class="jxr_keyword">new</strong> byte[] { 0x00 })));
<a class="jxr_linenumber" name="368" href="#368">368</a> gets.add(<strong class="jxr_keyword">new</strong> Get(ROW));
<a class="jxr_linenumber" name="369" href="#369">369</a> gets.add(<strong class="jxr_keyword">new</strong> Get(Bytes.add(ANOTHERROW, <strong class="jxr_keyword">new</strong> byte[] { 0x00 })));
<a class="jxr_linenumber" name="370" href="#370">370</a>
<a class="jxr_linenumber" name="371" href="#371">371</a> LOG.info(<span class="jxr_string">"Calling exists"</span>);
<a class="jxr_linenumber" name="372" href="#372">372</a> Boolean[] results = table.exists(gets);
<a class="jxr_linenumber" name="373" href="#373">373</a> assertEquals(results[0], false);
<a class="jxr_linenumber" name="374" href="#374">374</a> assertEquals(results[1], false);
<a class="jxr_linenumber" name="375" href="#375">375</a> assertEquals(results[2], <strong class="jxr_keyword">true</strong>);
<a class="jxr_linenumber" name="376" href="#376">376</a> assertEquals(results[3], false);
<a class="jxr_linenumber" name="377" href="#377">377</a>
<a class="jxr_linenumber" name="378" href="#378">378</a> <em class="jxr_comment">// Test with the first region.</em>
<a class="jxr_linenumber" name="379" href="#379">379</a> put = <strong class="jxr_keyword">new</strong> Put(<strong class="jxr_keyword">new</strong> byte[] { 0x00 });
<a class="jxr_linenumber" name="380" href="#380">380</a> put.add(FAMILY, QUALIFIER, VALUE);
<a class="jxr_linenumber" name="381" href="#381">381</a> table.put(put);
<a class="jxr_linenumber" name="382" href="#382">382</a>
<a class="jxr_linenumber" name="383" href="#383">383</a> gets = <strong class="jxr_keyword">new</strong> ArrayList<Get>();
<a class="jxr_linenumber" name="384" href="#384">384</a> gets.add(<strong class="jxr_keyword">new</strong> Get(<strong class="jxr_keyword">new</strong> byte[] { 0x00 }));
<a class="jxr_linenumber" name="385" href="#385">385</a> gets.add(<strong class="jxr_keyword">new</strong> Get(<strong class="jxr_keyword">new</strong> byte[] { 0x00, 0x00 }));
<a class="jxr_linenumber" name="386" href="#386">386</a> results = table.exists(gets);
<a class="jxr_linenumber" name="387" href="#387">387</a> assertEquals(results[0], <strong class="jxr_keyword">true</strong>);
<a class="jxr_linenumber" name="388" href="#388">388</a> assertEquals(results[1], false);
<a class="jxr_linenumber" name="389" href="#389">389</a>
<a class="jxr_linenumber" name="390" href="#390">390</a> <em class="jxr_comment">// Test with the last region</em>
<a class="jxr_linenumber" name="391" href="#391">391</a> put = <strong class="jxr_keyword">new</strong> Put(<strong class="jxr_keyword">new</strong> byte[] { (byte) 0xff, (byte) 0xff });
<a class="jxr_linenumber" name="392" href="#392">392</a> put.add(FAMILY, QUALIFIER, VALUE);
<a class="jxr_linenumber" name="393" href="#393">393</a> table.put(put);
<a class="jxr_linenumber" name="394" href="#394">394</a>
<a class="jxr_linenumber" name="395" href="#395">395</a> gets = <strong class="jxr_keyword">new</strong> ArrayList<Get>();
<a class="jxr_linenumber" name="396" href="#396">396</a> gets.add(<strong class="jxr_keyword">new</strong> Get(<strong class="jxr_keyword">new</strong> byte[] { (byte) 0xff }));
<a class="jxr_linenumber" name="397" href="#397">397</a> gets.add(<strong class="jxr_keyword">new</strong> Get(<strong class="jxr_keyword">new</strong> byte[] { (byte) 0xff, (byte) 0xff }));
<a class="jxr_linenumber" name="398" href="#398">398</a> gets.add(<strong class="jxr_keyword">new</strong> Get(<strong class="jxr_keyword">new</strong> byte[] { (byte) 0xff, (byte) 0xff, (byte) 0xff }));
<a class="jxr_linenumber" name="399" href="#399">399</a> results = table.exists(gets);
<a class="jxr_linenumber" name="400" href="#400">400</a> assertEquals(results[0], false);
<a class="jxr_linenumber" name="401" href="#401">401</a> assertEquals(results[1], <strong class="jxr_keyword">true</strong>);
<a class="jxr_linenumber" name="402" href="#402">402</a> assertEquals(results[2], false);
<a class="jxr_linenumber" name="403" href="#403">403</a> }
<a class="jxr_linenumber" name="404" href="#404">404</a>
<a class="jxr_linenumber" name="405" href="#405">405</a> @Test
<a class="jxr_linenumber" name="406" href="#406">406</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> testGetEmptyRow() <strong class="jxr_keyword">throws</strong> Exception {
<a class="jxr_linenumber" name="407" href="#407">407</a> <em class="jxr_comment">//Create a table and put in 1 row</em>
<a class="jxr_linenumber" name="408" href="#408">408</a> HBaseAdmin admin = TEST_UTIL.getHBaseAdmin();
<a class="jxr_linenumber" name="409" href="#409">409</a> HTableDescriptor desc = <strong class="jxr_keyword">new</strong> HTableDescriptor(TableName.valueOf(Bytes.toBytes(<span class="jxr_string">"test"</span>)));
<a class="jxr_linenumber" name="410" href="#410">410</a> desc.addFamily(<strong class="jxr_keyword">new</strong> HColumnDescriptor(FAMILY));
<a class="jxr_linenumber" name="411" href="#411">411</a> admin.createTable(desc);
<a class="jxr_linenumber" name="412" href="#412">412</a> HTable table = <strong class="jxr_keyword">new</strong> HTable(TEST_UTIL.getConfiguration(), <span class="jxr_string">"test"</span>);
<a class="jxr_linenumber" name="413" href="#413">413</a>
<a class="jxr_linenumber" name="414" href="#414">414</a> Put put = <strong class="jxr_keyword">new</strong> Put(ROW_BYTES);
<a class="jxr_linenumber" name="415" href="#415">415</a> put.add(FAMILY, COL_QUAL, VAL_BYTES);
<a class="jxr_linenumber" name="416" href="#416">416</a> table.put(put);
<a class="jxr_linenumber" name="417" href="#417">417</a> table.flushCommits();
<a class="jxr_linenumber" name="418" href="#418">418</a>
<a class="jxr_linenumber" name="419" href="#419">419</a> <em class="jxr_comment">//Try getting the row with an empty row key</em>
<a class="jxr_linenumber" name="420" href="#420">420</a> Result res = <strong class="jxr_keyword">null</strong>;
<a class="jxr_linenumber" name="421" href="#421">421</a> <strong class="jxr_keyword">try</strong> {
<a class="jxr_linenumber" name="422" href="#422">422</a> res = table.get(<strong class="jxr_keyword">new</strong> Get(<strong class="jxr_keyword">new</strong> byte[0]));
<a class="jxr_linenumber" name="423" href="#423">423</a> fail();
<a class="jxr_linenumber" name="424" href="#424">424</a> } <strong class="jxr_keyword">catch</strong> (IllegalArgumentException e) {
<a class="jxr_linenumber" name="425" href="#425">425</a> <em class="jxr_comment">// Expected.</em>
<a class="jxr_linenumber" name="426" href="#426">426</a> }
<a class="jxr_linenumber" name="427" href="#427">427</a> assertTrue(res == <strong class="jxr_keyword">null</strong>);
<a class="jxr_linenumber" name="428" href="#428">428</a> res = table.get(<strong class="jxr_keyword">new</strong> Get(Bytes.toBytes(<span class="jxr_string">"r1-not-exist"</span>)));
<a class="jxr_linenumber" name="429" href="#429">429</a> assertTrue(res.isEmpty() == <strong class="jxr_keyword">true</strong>);
<a class="jxr_linenumber" name="430" href="#430">430</a> res = table.get(<strong class="jxr_keyword">new</strong> Get(ROW_BYTES));
<a class="jxr_linenumber" name="431" href="#431">431</a> assertTrue(Arrays.equals(res.getValue(FAMILY, COL_QUAL), VAL_BYTES));
<a class="jxr_linenumber" name="432" href="#432">432</a> table.close();
<a class="jxr_linenumber" name="433" href="#433">433</a> }
<a class="jxr_linenumber" name="434" href="#434">434</a> }
</pre>
<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
</html>
| gsoundar/mambo-ec2-deploy | packages/hbase-0.98.7-hadoop2/docs/xref-test/org/apache/hadoop/hbase/client/TestFromClientSide3.html | HTML | apache-2.0 | 52,259 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no">
<title>Angular Bar Chart: Pure CSS</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<div class='container'>
<div class='bar blue'>Blue - 50%</div>
<div class='bar green'>Green - 80%</div>
</div>
</body>
</html>
| matthiasn/AngularUI-Code | Chapter06/Step01/src/index.html | HTML | apache-2.0 | 406 |
<!--
JBoss, Home of Professional Open Source
Copyright 2015, Red Hat, Inc. and/or its affiliates, and individual
contributors by the @authors tag. See the copyright.txt in the
distribution for a full listing of individual contributors.
Licensed 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>
<!--JBoss, Home of Professional Open Source
Copyright 2015, Red Hat, Inc. and/or its affiliates, and individual
contributors by the @authors tag. See the copyright.txt in the
distribution for a full listing of individual contributors.
Licensed 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>
<meta charset="ISO-8859-1">
<title>Contacts</title>
<!-- Disable phone number detection on iOS. -->
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Default theme with just 2 schemes, A (light) and B (dark) -->
<link rel="stylesheet" href="css/jquery.mobile-1.4.2.css" type="text/css" media="all" />
<!-- <link rel="stylesheet" href="css/jquery.mobile-1.4.2.min.css" type="text/css" media="all" /> -->
<!-- <link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.css" /> -->
<!-- Import jQuery so that it can be used by the custom JavaScript -->
<script src="js/libs/jquery-2.0.3.js"></script>
<!-- <script src="js/libs/jquery-2.0.3.min.js"></script> -->
<!-- <script src="http://code.jquery.com/jquery-2.0.3.js"></script> -->
<!-- This is the CSS for the Validation plug-in. -->
<link rel="stylesheet" href="css/app-style.css" type="text/css" media="all" />
<link rel="stylesheet" href="css/validator.css" type="text/css" media="all" />
<!-- <link rel="stylesheet" href="css/app-style.min.css" type="text/css" media="all" /> -->
<!-- <link rel="stylesheet" href="css/validator.min.css" type="text/css" media="all" /> -->
<!-- This is the CSS for the International Telephone Input plug-in. -->
<link rel="stylesheet" href="css/intlTelInput-4.0.1.css">
<!-- Import the custom JavaScript -->
<script src="js/namespace.js"></script>
<script src="js/util.js"></script>
<script src="js/formSetup.js"></script>
<script src="js/app.js"></script>
<script src="js/validation.js"></script>
<script src="js/submissions.js"></script>
<script src="js/theming.js"></script>
<!-- <script src="js/namespace.min.js"></script> -->
<!-- <script src="js/util.min.js"></script> -->
<!-- <script src="js/formSetup.min.js"></script> -->
<!-- <script src="js/app.min.js"></script> -->
<!-- <script src="js/validation.min.js"></script> -->
<!-- <script src="js/submissions.min.js"></script> -->
<!-- <script src="js/theming.min.js"></script> -->
<!-- Mobile browsers do not support HTML5 form validation, this lib provides client side validation. -->
<script src="js/libs/jquery.validate-1.13.1.js"></script>
<!-- <script src="js/libs/jquery.validate-1.13.1.min.js"></script> -->
<!-- <script src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.13.1/jquery.validate.js"></script> -->
<script src="js/libs/additional-methods-1.13.1.js"></script>
<!-- <script src="js/libs/additional-methods-1.13.1.min.js"></script> -->
<!-- <script src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.13.1/additional-methods.js"></script> -->
<!-- The jQuery Validator plug-in does not cover enough of the phone number use cases. The intlTelInput plug-in was used
instead as it covers all forms of phone numbers. -->
<script src="js/libs/intlTelInput-libPhoneNumber-4.0.1.js"></script>
<script src="js/libs/intlTelInput-4.0.1.js"></script>
<!-- <script src="js/libs/intlTelInput-4.0.1.min.js"></script> -->
<!-- Because the mobileinit event is triggered immediately, you'll need to bind your event handler
before jQuery Mobile is loaded.
Unlike other jQuery projects, such as jQuery and jQuery UI, jQuery Mobile automatically applies
many markup enhancements as soon as it loads (long before the document.ready event fires).
Therefore call the jQuery Mobile code last. -->
<script src="js/libs/jquery.mobile-1.4.2.js"></script>
<!-- <script src="js/libs/jquery.mobile-1.4.2.min.js"></script> -->
<!-- <script src="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.js"></script> -->
</head>
<body>
<!-- This is the main list. It is just names. -->
<!-- It is worth noting that in a jQuery Mobile app, only the first "page" is loaded & displayed.
The following/other pages will be partially loaded. Just their "divs." -->
<div data-role="page" id="contacts-list-page" class="ui-page-theme-a" data-url="/jboss-contacts-jquerymobile/">
<div data-role="panel" id="contacts-list-page-menu-panel">
<ul data-role="listview" id="contacts-list-page-menu-panel-listview">
<li><a href="#contacts-add-page">Add Contact</a></li>
<li><a href="#contacts-detail-list-page">Detailed List</a></li>
<li><a href="#about-page">About</a></li>
<li><a href="#contacts-theming-dialog" data-rel="popup" data-position-to="window">Themes</a></li>
</ul>
</div>
<div data-role="header" data-position="fixed" >
<a href="#contacts-list-page-menu-panel" id="contacts-list-page-menu-button" class="ui-btn ui-corner-all ui-shadow ui-icon-bars ui-btn-icon-notext ui-mini ui-btn-inline">Menu</a>
<h1>Contacts</h1>
<a href="#contacts-detail-list-page" id="contacts-detail-list-page-button" class="ui-btn ui-corner-all ui-shadow ui-icon-arrow-d ui-btn-icon-right ui-mini ui-btn-inline">Details</a>
</div>
<div role="main" class="ui-content">
<form id="filter-form-list-page" class="ui-filterable">
<input id="filter-input-list-page" data-type="search">
</form>
<ul data-role="listview" id="contacts-display-listview" class="sortedList" data-autodividers="true" data-filter="true" data-input="#filter-input-list-page">
<!-- The list of Contacts gets inserted here. -->
</ul>
</div>
<div data-role="footer" >
<h4>Red Hat JBoss Quickstarts</h4>
</div>
<!-- A Theme choosing dialog. -->
<div data-role="popup" id="contacts-theming-dialog">
<div data-role="header">
<h1>Theming</h1>
</div>
<div role="main" class="ui-content">
<h3>Try out these different Themes!</h3>
<button id="theme-button-a" class="ui-btn ui-corner-all ui-shadow">A - Light</button>
<button id="theme-button-b" class="ui-btn ui-corner-all ui-shadow">B - Dark</button>
</div>
</div>
</div>
<!-- This is the detail view of the main list. -->
<div data-role="page" id="contacts-detail-list-page" class="ui-page-theme-a" >
<div data-role="panel" id="contacts-detail-list-page-menu-panel">
<ul data-role="listview" id="contacts-detail-list-page-menu-panel-listview">
<li><a href="#contacts-add-page">Add Contact</a></li>
<li><a href="#contacts-list-page">List view</a></li>
<li><a href="#about-page">About</a></li>
</ul>
</div>
<div data-role="header" data-position="fixed" >
<a href="#contacts-detail-list-page-menu-panel" id="contacts-detail-list-page-menu-button" class="ui-btn ui-corner-all ui-shadow ui-icon-bars ui-btn-icon-notext ui-mini ui-btn-inline">Menu</a>
<h1>Contacts
</h1>
<a href="#contacts-list-page" id="contacts-list-page-button" class="ui-btn ui-corner-all ui-shadow ui-icon-arrow-d ui-btn-icon-right ui-mini ui-btn-inline">List</a>
</div>
<div role="main" class="ui-content">
<form id="filter-form-detail-list-page" class="ui-filterable">
<input id="filter-input-detail-list-page" data-type="search">
</form>
<ul data-role="listview" id="contacts-display-detail-listview" class="sortedList" data-autodividers="true" data-filter="true" data-input="#filter-input-detail-list-page">
<!-- The list of Contacts gets inserted here. -->
</ul>
</div>
<div data-role="footer" >
<h4>Red Hat JBoss Quickstarts</h4>
</div>
</div>
<!-- This is for the Info/About page. -->
<div data-role="page" id="about-page" class="ui-page-theme-a" >
<div data-role="panel" id="contacts-about-page-menu-panel">
<ul data-role="listview" id="contacts-about-page-menu-panel-listview">
<li><a href="#contacts-add-page">Add Contact</a></li>
<li><a href="#contacts-list-page">List view</a></li>
<li><a href="#about-page">About</a></li>
</ul>
</div>
<div data-role="header" data-position="fixed" >
<a href="#contacts-about-page-menu-panel" id="contacts-about-page-menu-button" class="ui-btn ui-corner-all ui-shadow ui-icon-bars ui-btn-icon-notext ui-mini ui-btn-inline">Menu</a>
<h1>About</h1>
</div>
<div role="main" class="ui-content" >
<p>Learn more about Red Hat JBoss Enterprise Application Platform.</p>
<ul>
<li><a href="https://access.redhat.com/site/documentation/JBoss_Enterprise_Application_Platform/">Documentation</a></li>
<li><a href="http://red.ht/jbeap-6">Product Information</a></li>
</ul>
</div>
</div>
<!-- A blank form for adding a contact. -->
<div data-role="page" id="contacts-add-page" class="ui-page-theme-a" >
<div data-role="panel" id="contacts-add-page-menu-panel">
<ul data-role="listview" id="contacts-add-page-menu-panel-listview">
<li><a href="#contacts-list-page">List view</a></li>
<li><a href="#about-page">About</a></li>
</ul>
</div>
<div data-role="header" data-position="fixed" >
<a href="#contacts-add-page-menu-panel" id="contacts-add-page-menu-button" class="ui-btn ui-corner-all ui-shadow ui-icon-bars ui-btn-icon-notext ui-mini ui-btn-inline">Menu</a>
<h1>Add Contact</h1>
</div>
<div role="main" class="ui-content">
<!--
In order to catch server side errors we need to disable the automatic page tranisition when the form is
submitted. This done is by adding data-ajax="false" to the form element. We then manually change the page
in the function that handles form submission. Thus allowing us to control when the form transitions to
another page.
-->
<form name="contacts-add-form" id="contacts-add-form" class="contact_info" method="post" data-ajax="false">
<div>
<label for="contacts-add-input-firstName">First Name:</label>
<input name="firstName" id="contacts-add-input-firstName" class="name" data-clear-btn="true" value="" placeholder="Enter a first name." type="text"/>
</div>
<div>
<label for="contacts-add-input-lastName">Last Name:</label>
<input name="lastName" id="contacts-add-input-lastName" class="name" data-clear-btn="true" value="" placeholder="Enter a last name." type="text"/>
</div>
<div>
<label for="contacts-add-input-tel">Phone:</label>
<input name="phoneNumber" id="contacts-add-input-tel" class="phoneNumber" data-clear-btn="true" value="" type="tel"/>
</div>
<div>
<label for="contacts-add-input-email">Email:</label>
<input name="email" id="contacts-add-input-email" class="email" data-clear-btn="true" value="" placeholder="name@company.domain" type="email"/>
</div>
<div>
<label for="contacts-add-input-date">Birth Date:</label>
<input name="birthDate" id="contacts-add-input-date" class="birthDate" data-clear-btn="true" value="" placeholder="YYYY-MM-DD" type="date" min="1900-01-01"/>
</div>
<input id="submit-add-btn" data-inline="true" type="submit" value="Save" />
<input id="clear-add-btn" data-inline="true" type="reset" value="Clear" />
<input id="cancel-add-btn" data-inline="true" type="reset" value="Cancel" />
</form>
</div>
<div data-role="footer" data-position="fixed" >
<fieldset class="ui-grid-b">
<!-- There is currently a bug in jQM 1.4.2. The CSS forces all ui-btn in a toolbar(header or footer) to be
set to display:inline-block. This interferes with the Grid making the buttons appear normal sized.
To fix this we had to override the style with a 'block-button' class referenced in app.css, this
should be removed when the bug is fixed.-->
<div class="ui-block-a">
<a class="ui-btn ui-corner-all ui-shadow ui-btn-b block-button" onclick="$('#submit-add-btn').trigger('click');">Save</a>
</div>
<div class="ui-block-b">
<a class="ui-btn ui-corner-all ui-shadow block-button" onclick="$('#clear-add-btn').trigger('click');">Clear</a>
</div>
<div class="ui-block-c">
<a href="#contacts-list-page" class="ui-btn ui-corner-all ui-shadow block-button" onclick="$('#cancel-add-btn').trigger('click');">Cancel</a>
</div>
</fieldset>
</div>
</div>
<!-- A pre-populated form for editing a contact -->
<div data-role="page" id="contacts-edit-page" class="ui-page-theme-a" >
<div data-role="panel" id="contacts-edit-page-menu-panel">
<ul data-role="listview" id="contacts-edit-page-menu-panel-listview">
<li><a href="#contacts-add-page">Add Contact</a></li>
<li><a href="#contacts-list-page">List view</a></li>
<li><a href="#about-page">About</a></li>
</ul>
</div>
<div data-role="header" data-position="fixed" >
<a href="#contacts-edit-page-menu-panel" id="contacts-edit-page-menu-button" class="ui-btn ui-corner-all ui-shadow ui-icon-bars ui-btn-icon-notext ui-mini ui-btn-inline">Menu</a>
<h1>Edit Contact</h1>
<a href="#contact-delete-dialog" id="contacts-delete-button" class="ui-btn ui-corner-all ui-shadow ui-icon-delete ui-mini ui-btn-inline" data-rel="popup" data-position-to="window">Delete</a>
</div>
<div role="main" class="ui-content">
<!--
PUT and DELETE are not supported in an HTML form, you must use POST.
Please see http://www.w3.org/TR/2010/WD-html5-diff-20101019/#changes-2010-06-24
In order to catch server side errors we need to disable the automatic page tranisition when the form is
submitted. This done is by adding data-ajax="false" to the form element. We then manually change the page
in the function that handles form submission. Thus allowing us to control when the form transitions to
another page.
-->
<form name="contacts-edit-form" id="contacts-edit-form" class="contact_info" method="post" data-ajax="false">
<div>
<label for="contacts-edit-input-firstName">First Name:</label>
<input name="firstName" id="contacts-edit-input-firstName" class="name" data-clear-btn="true" value="" placeholder="Enter a first name." type="text"/>
</div>
<div>
<label for="contacts-edit-input-lastName">Last Name:</label>
<input name="lastName" id="contacts-edit-input-lastName" class="name" data-clear-btn="true" value="" placeholder="Enter a last name." type="text"/>
</div>
<div>
<label for="contacts-edit-input-tel">Phone:</label>
<input name="phoneNumber" id="contacts-edit-input-tel" class="phoneNumber" data-clear-btn="true" value="" type="tel"/>
</div>
<div>
<label for="contacts-edit-input-email">Email:</label>
<input name="email" id="contacts-edit-input-email" class="email" data-clear-btn="true" value="" placeholder="name@company.domain" type="email"/>
</div>
<div>
<label for="contacts-edit-input-date">Birth Date:</label>
<input name="birthDate" id="contacts-edit-input-date" class="birthDate" data-clear-btn="true" value="" placeholder="YYYY-MM-DD" type="date" min="1900-01-01"/>
</div>
<div>
<input name="id" id="contacts-edit-input-id" value="" type="hidden"/>
</div>
<input id="submit-edit-btn" data-inline="true" type="submit" value="Save" />
<input id="reset-edit-btn" data-inline="true" type="reset" value="Reset" />
<input id="cancel-edit-btn" data-inline="true" type="reset" value="Cancel" />
</form>
</div>
<div data-role="footer" data-position="fixed" >
<fieldset class="ui-grid-b">
<!-- There is currently a bug in jQM 1.4.2. The CSS forces all ui-btn in a toolbar(header or footer) to be
set to display:inline-block. This interferes with the Grid making the buttons appear normal sized.
To fix this we had to override the style with a 'block-button' class referenced in app.css, this
should be removed when the bug is fixed.-->
<div class="ui-block-a">
<a class="ui-btn ui-corner-all ui-shadow ui-btn-b block-button" onclick="$('#submit-edit-btn').trigger('click');">Save</a>
</div>
<div class="ui-block-b">
<a class="ui-btn ui-corner-all ui-shadow block-button" onclick="$('#reset-edit-btn').trigger('click');">Reset</a>
</div>
<div class="ui-block-c">
<a href="#contacts-list-page" class="ui-btn ui-corner-all ui-shadow block-button" onclick="$('#cancel-edit-btn').trigger('click');">Cancel</a>
</div>
</fieldset>
</div>
<!-- A delete confirmation dialog. -->
<div data-role="popup" id="contact-delete-dialog" data-overlay-theme="b">
<div data-role="header">
<h1>Delete Contact</h1>
</div>
<div role="main" class="ui-content">
<!-- PUT and DELETE are not supported in an HTML form. Please see http://www.w3.org/TR/2010/WD-html5-diff-20101019/#changes-2010-06-24
That is why we are using a dialog with simple Yes/No. The ID of the Contact to be deleted will programatically be
pulled in from the Update form.
-->
<h3>Are you sure you want to Delete?</h3>
<a href="#contacts-list-page" id="confirm-delete-button" class="ui-btn ui-corner-all ui-shadow ui-btn-inline ui-btn-b">Yes</a>
<a href="#contacts-list-page" id="cancel-delete-button" class="ui-btn ui-corner-all ui-shadow ui-btn-inline">No</a>
</div>
</div>
</div>
</body>
</html>
| fabiomartinsbrrj/jboss-eap-quickstarts | contacts-jquerymobile/src/main/webapp/index.html | HTML | apache-2.0 | 21,052 |
<html xmlns:wicket="http://wicket.apache.org">
<head>
<title>Wicket Examples - navomatic</title>
</head>
<body>
<wicket:extend>
<div wicket:id = "navomaticBorder">
<div style = "width:400px">
<div style="text-align: center;"><h3>Page 3</h3></div>
The links on the left are enabled and disabled without
any code at all. Here is the HTML for the navigation area,
which can be found in NavomaticBorder.html:
<pre>
<b>Navigation Links</b>
<p>
<wicket:link>
<a href = "Page1.html">Page1</a><br/>
<a href = "Page2.html">Page2</a><br/>
<a href = "Page3.html">Page3</a>
</wicket:link>
</p></pre>
The <wicket:link> tag turns on auto-linking, which
creates page links automatically at render-time. The
NavomaticBorder component is reused between all three pages,
adding navigation links to each.
</div>
</div>
</wicket:extend>
</body>
</html>
| bitstorm/wicket | wicket-examples/src/main/java/org/apache/wicket/examples/navomatic/Page3.html | HTML | apache-2.0 | 1,044 |
<!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) on Sat Aug 25 00:26:57 EDT 2007 -->
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<TITLE>
Serialized Form (Apache Log4j 1.2.15 API)
</TITLE>
<META NAME="date" CONTENT="2007-08-25">
<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="Serialized Form (Apache Log4j 1.2.15 API)";
}
}
</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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="index.html?serialized-form.html" target="_top"><B>FRAMES</B></A>
<A HREF="serialized-form.html" target="_top"><B>NO FRAMES</B></A>
<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>
<H1>
Serialized Form</H1>
</CENTER>
<HR SIZE="4" NOSHADE>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="center"><FONT SIZE="+2">
<B>Package</B> <B>org.apache.log4j</B></FONT></TH>
</TR>
</TABLE>
<P>
<A NAME="org.apache.log4j.Level"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/Level.html" title="class in org.apache.log4j">org.apache.log4j.Level</A> extends <A HREF="org/apache/log4j/Priority.html" title="class in org.apache.log4j">Priority</A> implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<B>serialVersionUID: </B>3491141966387921974L
<P>
<A NAME="serialized_methods"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Serialization Methods</B></FONT></TH>
</TR>
</TABLE>
<P>
<A NAME="readObject(java.io.ObjectInputStream)"><!-- --></A><H3>
readObject</H3>
<PRE>
private void <B>readObject</B>(java.io.ObjectInputStream s)
throws java.io.IOException,
java.lang.ClassNotFoundException</PRE>
<DL>
<DD>Custom deserialization of Level.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE> - if IO exception.
<DD><CODE>java.lang.ClassNotFoundException</CODE> - if class not found.</DD>
</DL>
</DL>
<HR>
<A NAME="writeObject(java.io.ObjectOutputStream)"><!-- --></A><H3>
writeObject</H3>
<PRE>
private void <B>writeObject</B>(java.io.ObjectOutputStream s)
throws java.io.IOException</PRE>
<DL>
<DD>Serialize level.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE> - if exception during serialization.</DD>
</DL>
</DL>
<HR>
<A NAME="readResolve()"><!-- --></A><H3>
readResolve</H3>
<PRE>
private java.lang.Object <B>readResolve</B>()
throws java.io.ObjectStreamException</PRE>
<DL>
<DD>Resolved deserialized level to one of the stock instances.
May be overriden in classes derived from Level.
<P>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.ObjectStreamException</CODE> - if exception during resolution.</DD>
</DL>
</DL>
<HR SIZE="4" NOSHADE>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="center"><FONT SIZE="+2">
<B>Package</B> <B>org.apache.log4j.chainsaw</B></FONT></TH>
</TR>
</TABLE>
<P>
<A NAME="org.apache.log4j.chainsaw.Main"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/chainsaw/Main.html" title="class in org.apache.log4j.chainsaw">org.apache.log4j.chainsaw.Main</A> extends javax.swing.JFrame implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<HR SIZE="4" NOSHADE>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="center"><FONT SIZE="+2">
<B>Package</B> <B>org.apache.log4j.config</B></FONT></TH>
</TR>
</TABLE>
<P>
<A NAME="org.apache.log4j.config.PropertySetterException"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/config/PropertySetterException.html" title="class in org.apache.log4j.config">org.apache.log4j.config.PropertySetterException</A> extends java.lang.Exception implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<B>serialVersionUID: </B>-1352613734254235861L
<P>
<A NAME="serializedForm"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Serialized Fields</B></FONT></TH>
</TR>
</TABLE>
<H3>
rootCause</H3>
<PRE>
java.lang.Throwable <B>rootCause</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR SIZE="4" NOSHADE>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="center"><FONT SIZE="+2">
<B>Package</B> <B>org.apache.log4j.helpers</B></FONT></TH>
</TR>
</TABLE>
<P>
<A NAME="org.apache.log4j.helpers.AbsoluteTimeDateFormat"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/helpers/AbsoluteTimeDateFormat.html" title="class in org.apache.log4j.helpers">org.apache.log4j.helpers.AbsoluteTimeDateFormat</A> extends java.text.DateFormat implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<B>serialVersionUID: </B>-388856345976723342L
<P>
<P>
<A NAME="org.apache.log4j.helpers.DateTimeDateFormat"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/helpers/DateTimeDateFormat.html" title="class in org.apache.log4j.helpers">org.apache.log4j.helpers.DateTimeDateFormat</A> extends <A HREF="org/apache/log4j/helpers/AbsoluteTimeDateFormat.html" title="class in org.apache.log4j.helpers">AbsoluteTimeDateFormat</A> implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<B>serialVersionUID: </B>5547637772208514971L
<P>
<A NAME="serializedForm"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Serialized Fields</B></FONT></TH>
</TR>
</TABLE>
<H3>
shortMonths</H3>
<PRE>
java.lang.String[] <B>shortMonths</B></PRE>
<DL>
<DL>
</DL>
</DL>
<P>
<A NAME="org.apache.log4j.helpers.ISO8601DateFormat"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/helpers/ISO8601DateFormat.html" title="class in org.apache.log4j.helpers">org.apache.log4j.helpers.ISO8601DateFormat</A> extends <A HREF="org/apache/log4j/helpers/AbsoluteTimeDateFormat.html" title="class in org.apache.log4j.helpers">AbsoluteTimeDateFormat</A> implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<B>serialVersionUID: </B>-759840745298755296L
<P>
<P>
<A NAME="org.apache.log4j.helpers.RelativeTimeDateFormat"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/helpers/RelativeTimeDateFormat.html" title="class in org.apache.log4j.helpers">org.apache.log4j.helpers.RelativeTimeDateFormat</A> extends java.text.DateFormat implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<B>serialVersionUID: </B>7055751607085611984L
<P>
<A NAME="serializedForm"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Serialized Fields</B></FONT></TH>
</TR>
</TABLE>
<H3>
startTime</H3>
<PRE>
long <B>startTime</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR SIZE="4" NOSHADE>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="center"><FONT SIZE="+2">
<B>Package</B> <B>org.apache.log4j.lf5</B></FONT></TH>
</TR>
</TABLE>
<P>
<A NAME="org.apache.log4j.lf5.Log4JLogRecord"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/lf5/Log4JLogRecord.html" title="class in org.apache.log4j.lf5">org.apache.log4j.lf5.Log4JLogRecord</A> extends <A HREF="org/apache/log4j/lf5/LogRecord.html" title="class in org.apache.log4j.lf5">LogRecord</A> implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<P>
<A NAME="org.apache.log4j.lf5.LogLevel"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/lf5/LogLevel.html" title="class in org.apache.log4j.lf5">org.apache.log4j.lf5.LogLevel</A> extends java.lang.Object implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<A NAME="serializedForm"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Serialized Fields</B></FONT></TH>
</TR>
</TABLE>
<H3>
_label</H3>
<PRE>
java.lang.String <B>_label</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_precedence</H3>
<PRE>
int <B>_precedence</B></PRE>
<DL>
<DL>
</DL>
</DL>
<P>
<A NAME="org.apache.log4j.lf5.LogLevelFormatException"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/lf5/LogLevelFormatException.html" title="class in org.apache.log4j.lf5">org.apache.log4j.lf5.LogLevelFormatException</A> extends java.lang.Exception implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<P>
<A NAME="org.apache.log4j.lf5.LogRecord"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/lf5/LogRecord.html" title="class in org.apache.log4j.lf5">org.apache.log4j.lf5.LogRecord</A> extends java.lang.Object implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<A NAME="serializedForm"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Serialized Fields</B></FONT></TH>
</TR>
</TABLE>
<H3>
_level</H3>
<PRE>
<A HREF="org/apache/log4j/lf5/LogLevel.html" title="class in org.apache.log4j.lf5">LogLevel</A> <B>_level</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_message</H3>
<PRE>
java.lang.String <B>_message</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_sequenceNumber</H3>
<PRE>
long <B>_sequenceNumber</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_millis</H3>
<PRE>
long <B>_millis</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_category</H3>
<PRE>
java.lang.String <B>_category</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_thread</H3>
<PRE>
java.lang.String <B>_thread</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_thrownStackTrace</H3>
<PRE>
java.lang.String <B>_thrownStackTrace</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_thrown</H3>
<PRE>
java.lang.Throwable <B>_thrown</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_ndc</H3>
<PRE>
java.lang.String <B>_ndc</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_location</H3>
<PRE>
java.lang.String <B>_location</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR SIZE="4" NOSHADE>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="center"><FONT SIZE="+2">
<B>Package</B> <B>org.apache.log4j.lf5.util</B></FONT></TH>
</TR>
</TABLE>
<P>
<A NAME="org.apache.log4j.lf5.util.AdapterLogRecord"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/lf5/util/AdapterLogRecord.html" title="class in org.apache.log4j.lf5.util">org.apache.log4j.lf5.util.AdapterLogRecord</A> extends <A HREF="org/apache/log4j/lf5/LogRecord.html" title="class in org.apache.log4j.lf5">LogRecord</A> implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<HR SIZE="4" NOSHADE>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="center"><FONT SIZE="+2">
<B>Package</B> <B>org.apache.log4j.lf5.viewer</B></FONT></TH>
</TR>
</TABLE>
<P>
<A NAME="org.apache.log4j.lf5.viewer.FilteredLogTableModel"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/lf5/viewer/FilteredLogTableModel.html" title="class in org.apache.log4j.lf5.viewer">org.apache.log4j.lf5.viewer.FilteredLogTableModel</A> extends javax.swing.table.AbstractTableModel implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<A NAME="serializedForm"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Serialized Fields</B></FONT></TH>
</TR>
</TABLE>
<H3>
_filter</H3>
<PRE>
<A HREF="org/apache/log4j/lf5/LogRecordFilter.html" title="interface in org.apache.log4j.lf5">LogRecordFilter</A> <B>_filter</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_allRecords</H3>
<PRE>
java.util.List<E> <B>_allRecords</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_filteredRecords</H3>
<PRE>
java.util.List<E> <B>_filteredRecords</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_maxNumberOfLogRecords</H3>
<PRE>
int <B>_maxNumberOfLogRecords</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_colNames</H3>
<PRE>
java.lang.String[] <B>_colNames</B></PRE>
<DL>
<DL>
</DL>
</DL>
<P>
<A NAME="org.apache.log4j.lf5.viewer.LogFactor5Dialog"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/lf5/viewer/LogFactor5Dialog.html" title="class in org.apache.log4j.lf5.viewer">org.apache.log4j.lf5.viewer.LogFactor5Dialog</A> extends javax.swing.JDialog implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<P>
<A NAME="org.apache.log4j.lf5.viewer.LogFactor5ErrorDialog"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/lf5/viewer/LogFactor5ErrorDialog.html" title="class in org.apache.log4j.lf5.viewer">org.apache.log4j.lf5.viewer.LogFactor5ErrorDialog</A> extends <A HREF="org/apache/log4j/lf5/viewer/LogFactor5Dialog.html" title="class in org.apache.log4j.lf5.viewer">LogFactor5Dialog</A> implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<P>
<A NAME="org.apache.log4j.lf5.viewer.LogFactor5InputDialog"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/lf5/viewer/LogFactor5InputDialog.html" title="class in org.apache.log4j.lf5.viewer">org.apache.log4j.lf5.viewer.LogFactor5InputDialog</A> extends <A HREF="org/apache/log4j/lf5/viewer/LogFactor5Dialog.html" title="class in org.apache.log4j.lf5.viewer">LogFactor5Dialog</A> implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<A NAME="serializedForm"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Serialized Fields</B></FONT></TH>
</TR>
</TABLE>
<H3>
_textField</H3>
<PRE>
javax.swing.JTextField <B>_textField</B></PRE>
<DL>
<DL>
</DL>
</DL>
<P>
<A NAME="org.apache.log4j.lf5.viewer.LogFactor5LoadingDialog"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/lf5/viewer/LogFactor5LoadingDialog.html" title="class in org.apache.log4j.lf5.viewer">org.apache.log4j.lf5.viewer.LogFactor5LoadingDialog</A> extends <A HREF="org/apache/log4j/lf5/viewer/LogFactor5Dialog.html" title="class in org.apache.log4j.lf5.viewer">LogFactor5Dialog</A> implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<P>
<A NAME="org.apache.log4j.lf5.viewer.LogTable"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/lf5/viewer/LogTable.html" title="class in org.apache.log4j.lf5.viewer">org.apache.log4j.lf5.viewer.LogTable</A> extends javax.swing.JTable implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<B>serialVersionUID: </B>4867085140195148458L
<P>
<A NAME="serializedForm"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Serialized Fields</B></FONT></TH>
</TR>
</TABLE>
<H3>
_rowHeight</H3>
<PRE>
int <B>_rowHeight</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_detailTextArea</H3>
<PRE>
javax.swing.JTextArea <B>_detailTextArea</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_numCols</H3>
<PRE>
int <B>_numCols</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_tableColumns</H3>
<PRE>
javax.swing.table.TableColumn[] <B>_tableColumns</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_colWidths</H3>
<PRE>
int[] <B>_colWidths</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_colNames</H3>
<PRE>
<A HREF="org/apache/log4j/lf5/viewer/LogTableColumn.html" title="class in org.apache.log4j.lf5.viewer">LogTableColumn</A>[] <B>_colNames</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_colDate</H3>
<PRE>
int <B>_colDate</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_colThread</H3>
<PRE>
int <B>_colThread</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_colMessageNum</H3>
<PRE>
int <B>_colMessageNum</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_colLevel</H3>
<PRE>
int <B>_colLevel</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_colNDC</H3>
<PRE>
int <B>_colNDC</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_colCategory</H3>
<PRE>
int <B>_colCategory</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_colMessage</H3>
<PRE>
int <B>_colMessage</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_colLocation</H3>
<PRE>
int <B>_colLocation</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_colThrown</H3>
<PRE>
int <B>_colThrown</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_dateFormatManager</H3>
<PRE>
<A HREF="org/apache/log4j/lf5/util/DateFormatManager.html" title="class in org.apache.log4j.lf5.util">DateFormatManager</A> <B>_dateFormatManager</B></PRE>
<DL>
<DL>
</DL>
</DL>
<P>
<A NAME="org.apache.log4j.lf5.viewer.LogTableColumn"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/lf5/viewer/LogTableColumn.html" title="class in org.apache.log4j.lf5.viewer">org.apache.log4j.lf5.viewer.LogTableColumn</A> extends java.lang.Object implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<B>serialVersionUID: </B>-4275827753626456547L
<P>
<A NAME="serializedForm"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Serialized Fields</B></FONT></TH>
</TR>
</TABLE>
<H3>
_label</H3>
<PRE>
java.lang.String <B>_label</B></PRE>
<DL>
<DL>
</DL>
</DL>
<P>
<A NAME="org.apache.log4j.lf5.viewer.LogTableColumnFormatException"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/lf5/viewer/LogTableColumnFormatException.html" title="class in org.apache.log4j.lf5.viewer">org.apache.log4j.lf5.viewer.LogTableColumnFormatException</A> extends java.lang.Exception implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<B>serialVersionUID: </B>6529165785030431653L
<P>
<P>
<A NAME="org.apache.log4j.lf5.viewer.LogTableModel"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/lf5/viewer/LogTableModel.html" title="class in org.apache.log4j.lf5.viewer">org.apache.log4j.lf5.viewer.LogTableModel</A> extends javax.swing.table.DefaultTableModel implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<B>serialVersionUID: </B>3593300685868700894L
<P>
<P>
<A NAME="org.apache.log4j.lf5.viewer.LogTableRowRenderer"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/lf5/viewer/LogTableRowRenderer.html" title="class in org.apache.log4j.lf5.viewer">org.apache.log4j.lf5.viewer.LogTableRowRenderer</A> extends javax.swing.table.DefaultTableCellRenderer implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<B>serialVersionUID: </B>-3951639953706443213L
<P>
<A NAME="serializedForm"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Serialized Fields</B></FONT></TH>
</TR>
</TABLE>
<H3>
_highlightFatal</H3>
<PRE>
boolean <B>_highlightFatal</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_color</H3>
<PRE>
java.awt.Color <B>_color</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR SIZE="4" NOSHADE>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="center"><FONT SIZE="+2">
<B>Package</B> <B>org.apache.log4j.lf5.viewer.categoryexplorer</B></FONT></TH>
</TR>
</TABLE>
<P>
<A NAME="org.apache.log4j.lf5.viewer.categoryexplorer.CategoryExplorerModel"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/lf5/viewer/categoryexplorer/CategoryExplorerModel.html" title="class in org.apache.log4j.lf5.viewer.categoryexplorer">org.apache.log4j.lf5.viewer.categoryexplorer.CategoryExplorerModel</A> extends javax.swing.tree.DefaultTreeModel implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<B>serialVersionUID: </B>-3413887384316015901L
<P>
<A NAME="serializedForm"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Serialized Fields</B></FONT></TH>
</TR>
</TABLE>
<H3>
_renderFatal</H3>
<PRE>
boolean <B>_renderFatal</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_listener</H3>
<PRE>
java.awt.event.ActionListener <B>_listener</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_event</H3>
<PRE>
java.awt.event.ActionEvent <B>_event</B></PRE>
<DL>
<DL>
</DL>
</DL>
<P>
<A NAME="org.apache.log4j.lf5.viewer.categoryexplorer.CategoryExplorerTree"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/lf5/viewer/categoryexplorer/CategoryExplorerTree.html" title="class in org.apache.log4j.lf5.viewer.categoryexplorer">org.apache.log4j.lf5.viewer.categoryexplorer.CategoryExplorerTree</A> extends javax.swing.JTree implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<B>serialVersionUID: </B>8066257446951323576L
<P>
<A NAME="serializedForm"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Serialized Fields</B></FONT></TH>
</TR>
</TABLE>
<H3>
_model</H3>
<PRE>
<A HREF="org/apache/log4j/lf5/viewer/categoryexplorer/CategoryExplorerModel.html" title="class in org.apache.log4j.lf5.viewer.categoryexplorer">CategoryExplorerModel</A> <B>_model</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_rootAlreadyExpanded</H3>
<PRE>
boolean <B>_rootAlreadyExpanded</B></PRE>
<DL>
<DL>
</DL>
</DL>
<P>
<A NAME="org.apache.log4j.lf5.viewer.categoryexplorer.CategoryNode"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/lf5/viewer/categoryexplorer/CategoryNode.html" title="class in org.apache.log4j.lf5.viewer.categoryexplorer">org.apache.log4j.lf5.viewer.categoryexplorer.CategoryNode</A> extends javax.swing.tree.DefaultMutableTreeNode implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<B>serialVersionUID: </B>5958994817693177319L
<P>
<A NAME="serializedForm"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Serialized Fields</B></FONT></TH>
</TR>
</TABLE>
<H3>
_selected</H3>
<PRE>
boolean <B>_selected</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_numberOfContainedRecords</H3>
<PRE>
int <B>_numberOfContainedRecords</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_numberOfRecordsFromChildren</H3>
<PRE>
int <B>_numberOfRecordsFromChildren</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_hasFatalChildren</H3>
<PRE>
boolean <B>_hasFatalChildren</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_hasFatalRecords</H3>
<PRE>
boolean <B>_hasFatalRecords</B></PRE>
<DL>
<DL>
</DL>
</DL>
<P>
<A NAME="org.apache.log4j.lf5.viewer.categoryexplorer.CategoryNodeEditorRenderer"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/lf5/viewer/categoryexplorer/CategoryNodeEditorRenderer.html" title="class in org.apache.log4j.lf5.viewer.categoryexplorer">org.apache.log4j.lf5.viewer.categoryexplorer.CategoryNodeEditorRenderer</A> extends <A HREF="org/apache/log4j/lf5/viewer/categoryexplorer/CategoryNodeRenderer.html" title="class in org.apache.log4j.lf5.viewer.categoryexplorer">CategoryNodeRenderer</A> implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<B>serialVersionUID: </B>-6094804684259929574L
<P>
<P>
<A NAME="org.apache.log4j.lf5.viewer.categoryexplorer.CategoryNodeRenderer"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/lf5/viewer/categoryexplorer/CategoryNodeRenderer.html" title="class in org.apache.log4j.lf5.viewer.categoryexplorer">org.apache.log4j.lf5.viewer.categoryexplorer.CategoryNodeRenderer</A> extends javax.swing.tree.DefaultTreeCellRenderer implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<B>serialVersionUID: </B>-6046702673278595048L
<P>
<A NAME="serializedForm"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Serialized Fields</B></FONT></TH>
</TR>
</TABLE>
<H3>
_checkBox</H3>
<PRE>
javax.swing.JCheckBox <B>_checkBox</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR>
<H3>
_panel</H3>
<PRE>
javax.swing.JPanel <B>_panel</B></PRE>
<DL>
<DL>
</DL>
</DL>
<HR SIZE="4" NOSHADE>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="center"><FONT SIZE="+2">
<B>Package</B> <B>org.apache.log4j.spi</B></FONT></TH>
</TR>
</TABLE>
<P>
<A NAME="org.apache.log4j.spi.LocationInfo"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/spi/LocationInfo.html" title="class in org.apache.log4j.spi">org.apache.log4j.spi.LocationInfo</A> extends java.lang.Object implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<B>serialVersionUID: </B>-1325822038990805636L
<P>
<A NAME="serializedForm"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Serialized Fields</B></FONT></TH>
</TR>
</TABLE>
<H3>
fullInfo</H3>
<PRE>
java.lang.String <B>fullInfo</B></PRE>
<DL>
<DD>All available caller information, in the format
<code>fully.qualified.classname.of.caller.methodName(Filename.java:line)</code>
<P>
<DL>
</DL>
</DL>
<P>
<A NAME="org.apache.log4j.spi.LoggingEvent"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/spi/LoggingEvent.html" title="class in org.apache.log4j.spi">org.apache.log4j.spi.LoggingEvent</A> extends java.lang.Object implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<B>serialVersionUID: </B>-868428216207166145L
<P>
<A NAME="serialized_methods"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Serialization Methods</B></FONT></TH>
</TR>
</TABLE>
<P>
<A NAME="readObject(java.io.ObjectInputStream)"><!-- --></A><H3>
readObject</H3>
<PRE>
private void <B>readObject</B>(java.io.ObjectInputStream ois)
throws java.io.IOException,
java.lang.ClassNotFoundException</PRE>
<DL>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE>
<DD><CODE>java.lang.ClassNotFoundException</CODE></DD>
</DL>
</DL>
<HR>
<A NAME="writeObject(java.io.ObjectOutputStream)"><!-- --></A><H3>
writeObject</H3>
<PRE>
private void <B>writeObject</B>(java.io.ObjectOutputStream oos)
throws java.io.IOException</PRE>
<DL>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE></DD>
</DL>
</DL>
<A NAME="serializedForm"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Serialized Fields</B></FONT></TH>
</TR>
</TABLE>
<H3>
categoryName</H3>
<PRE>
java.lang.String <B>categoryName</B></PRE>
<DL>
<DD><B>Deprecated.</B> <I>This field will be marked as private in future
releases. Please do not access it directly. Use the <A HREF="org/apache/log4j/spi/LoggingEvent.html#getLoggerName()"><CODE>LoggingEvent.getLoggerName()</CODE></A> method instead.</I><DD><p>The category (logger) name.
<P>
<DL>
</DL>
</DL>
<HR>
<H3>
ndc</H3>
<PRE>
java.lang.String <B>ndc</B></PRE>
<DL>
<DD>The nested diagnostic context (NDC) of logging event.
<P>
<DL>
</DL>
</DL>
<HR>
<H3>
mdcCopy</H3>
<PRE>
java.util.Hashtable<K,V> <B>mdcCopy</B></PRE>
<DL>
<DD>The mapped diagnostic context (MDC) of logging event.
<P>
<DL>
</DL>
</DL>
<HR>
<H3>
ndcLookupRequired</H3>
<PRE>
boolean <B>ndcLookupRequired</B></PRE>
<DL>
<DD>Have we tried to do an NDC lookup? If we did, there is no need
to do it again. Note that its value is always false when
serialized. Thus, a receiving SocketNode will never use it's own
(incorrect) NDC. See also writeObject method.
<P>
<DL>
</DL>
</DL>
<HR>
<H3>
mdcCopyLookupRequired</H3>
<PRE>
boolean <B>mdcCopyLookupRequired</B></PRE>
<DL>
<DD>Have we tried to do an MDC lookup? If we did, there is no need
to do it again. Note that its value is always false when
serialized. See also the getMDC and getMDCCopy methods.
<P>
<DL>
</DL>
</DL>
<HR>
<H3>
renderedMessage</H3>
<PRE>
java.lang.String <B>renderedMessage</B></PRE>
<DL>
<DD>The application supplied message rendered through the log4j
objet rendering mechanism.
<P>
<DL>
</DL>
</DL>
<HR>
<H3>
threadName</H3>
<PRE>
java.lang.String <B>threadName</B></PRE>
<DL>
<DD>The name of thread in which this logging event was generated.
<P>
<DL>
</DL>
</DL>
<HR>
<H3>
throwableInfo</H3>
<PRE>
<A HREF="org/apache/log4j/spi/ThrowableInformation.html" title="class in org.apache.log4j.spi">ThrowableInformation</A> <B>throwableInfo</B></PRE>
<DL>
<DD>This
variable contains information about this event's throwable
<P>
<DL>
</DL>
</DL>
<HR>
<H3>
timeStamp</H3>
<PRE>
long <B>timeStamp</B></PRE>
<DL>
<DD>The number of milliseconds elapsed from 1/1/1970 until logging event
was created.
<P>
<DL>
</DL>
</DL>
<HR>
<H3>
locationInfo</H3>
<PRE>
<A HREF="org/apache/log4j/spi/LocationInfo.html" title="class in org.apache.log4j.spi">LocationInfo</A> <B>locationInfo</B></PRE>
<DL>
<DD>Location information for the caller.
<P>
<DL>
</DL>
</DL>
<P>
<A NAME="org.apache.log4j.spi.ThrowableInformation"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class <A HREF="org/apache/log4j/spi/ThrowableInformation.html" title="class in org.apache.log4j.spi">org.apache.log4j.spi.ThrowableInformation</A> extends java.lang.Object implements Serializable</B></FONT></TH>
</TR>
</TABLE>
<P>
<B>serialVersionUID: </B>-4748765566864322735L
<P>
<A NAME="serializedForm"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Serialized Fields</B></FONT></TH>
</TR>
</TABLE>
<H3>
rep</H3>
<PRE>
java.lang.String[] <B>rep</B></PRE>
<DL>
<DL>
</DL>
</DL>
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="index.html?serialized-form.html" target="_top"><B>FRAMES</B></A>
<A HREF="serialized-form.html" target="_top"><B>NO FRAMES</B></A>
<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>
Copyright © 1999-2007 <a href="http://www.apache.org">Apache Software Foundation</a>. All Rights Reserved.
</BODY>
</HTML>
| stumoodie/PathwayEditor | libs/apache-log4j-1.2.15/site/apidocs/serialized-form.html | HTML | apache-2.0 | 39,734 |
<!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) on Sat Aug 25 00:26:57 EDT 2007 -->
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<TITLE>
Uses of Class org.apache.log4j.lf5.util.LogFileParser (Apache Log4j 1.2.15 API)
</TITLE>
<META NAME="date" CONTENT="2007-08-25">
<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 org.apache.log4j.lf5.util.LogFileParser (Apache Log4j 1.2.15 API)";
}
}
</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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/log4j/lf5/util/LogFileParser.html" title="class in org.apache.log4j.lf5.util"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/log4j/lf5/util//class-useLogFileParser.html" target="_top"><B>FRAMES</B></A>
<A HREF="LogFileParser.html" target="_top"><B>NO FRAMES</B></A>
<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>org.apache.log4j.lf5.util.LogFileParser</B></H2>
</CENTER>
No usage of org.apache.log4j.lf5.util.LogFileParser
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/log4j/lf5/util/LogFileParser.html" title="class in org.apache.log4j.lf5.util"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/log4j/lf5/util//class-useLogFileParser.html" target="_top"><B>FRAMES</B></A>
<A HREF="LogFileParser.html" target="_top"><B>NO FRAMES</B></A>
<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>
Copyright © 1999-2007 <a href="http://www.apache.org">Apache Software Foundation</a>. All Rights Reserved.
</BODY>
</HTML>
| stumoodie/PathwayEditor | libs/apache-log4j-1.2.15/site/apidocs/org/apache/log4j/lf5/util/class-use/LogFileParser.html | HTML | apache-2.0 | 6,198 |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>windows::random_access_handle_service::cancel</title>
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="../../../boost_asio.html" title="Boost.Asio">
<link rel="up" href="../windows__random_access_handle_service.html" title="windows::random_access_handle_service">
<link rel="prev" href="async_write_some_at.html" title="windows::random_access_handle_service::async_write_some_at">
<link rel="next" href="close.html" title="windows::random_access_handle_service::close">
</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="async_write_some_at.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../windows__random_access_handle_service.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="close.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h4 class="title">
<a name="boost_asio.reference.windows__random_access_handle_service.cancel"></a><a class="link" href="cancel.html" title="windows::random_access_handle_service::cancel">windows::random_access_handle_service::cancel</a>
</h4></div></div></div>
<p>
<a class="indexterm" name="idp103580968"></a>
Cancel all asynchronous operations
associated with the handle.
</p>
<pre class="programlisting"><span class="identifier">boost</span><span class="special">::</span><span class="identifier">system</span><span class="special">::</span><span class="identifier">error_code</span> <span class="identifier">cancel</span><span class="special">(</span>
<span class="identifier">implementation_type</span> <span class="special">&</span> <span class="identifier">impl</span><span class="special">,</span>
<span class="identifier">boost</span><span class="special">::</span><span class="identifier">system</span><span class="special">::</span><span class="identifier">error_code</span> <span class="special">&</span> <span class="identifier">ec</span><span class="special">);</span>
</pre>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2003-2013 Christopher M. Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="async_write_some_at.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../windows__random_access_handle_service.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="close.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
| NixaSoftware/CVis | venv/bin/doc/html/boost_asio/reference/windows__random_access_handle_service/cancel.html | HTML | apache-2.0 | 4,017 |
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class ToscaRequirement
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class ToscaRequirement
">
<meta name="generator" content="docfx 2.3.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">
<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">
<a href="https://github.com/QualiSystems/Toscana/new/master/Toscana.Docs/apispec/new?filename=Toscana_ToscaRequirement.md&value=---%0Auid%3A%20Toscana.ToscaRequirement%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="btn btn-primary pull-right mobile-hide">Improve this Doc</a>
<a href="https://github.com/QualiSystems/Toscana/blob/master/Toscana/ToscaRequirement.cs/#L13" class="btn btn-primary pull-right mobile-hide">View Source</a>
<h1 id="Toscana_ToscaRequirement" data-uid="Toscana.ToscaRequirement">Class ToscaRequirement
</h1>
<div class="markdown level0 summary"><p>The Requirement definition describes a named requirement (dependencies)
of a TOSCA Node Type or Node template which needs to be fulfilled by a matching
Capability definition declared by another TOSCA modelable entity.<br>The requirement definition may itself include the specific name of the fulfilling entity
(explicitly) or provide an abstract type, along with additional filtering characteristics,
that a TOSCA orchestrator can use to fulfill the capability at runtime (implicitly).</p>
</div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><span class="xref">ToscaRequirement</span></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<span class="xref">System.Object.ToString()</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
</div>
<h6><strong>Namespace</strong>:Toscana</h6>
<h6><strong>Assembly</strong>:Toscana.dll</h6>
<h5 id="Toscana_ToscaRequirement_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class ToscaRequirement</code></pre>
</div>
<h3 id="properties">Properties
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/QualiSystems/Toscana/new/master/Toscana.Docs/apispec/new?filename=Toscana_ToscaRequirement_Capability.md&value=---%0Auid%3A%20Toscana.ToscaRequirement.Capability%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">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/QualiSystems/Toscana/blob/master/Toscana/ToscaRequirement.cs/#L19">View Source</a>
</span>
<h4 id="Toscana_ToscaRequirement_Capability" data-uid="Toscana.ToscaRequirement.Capability">Capability</h4>
<div class="markdown level1 summary"><p>The required reserved keyname used that can be used to provide the name of a valid
Capability Type that can fulfill the requirement.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[Required(ErrorMessage = "capability is required on requirement")]
public string Capability { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/QualiSystems/Toscana/new/master/Toscana.Docs/apispec/new?filename=Toscana_ToscaRequirement_Node.md&value=---%0Auid%3A%20Toscana.ToscaRequirement.Node%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">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/QualiSystems/Toscana/blob/master/Toscana/ToscaRequirement.cs/#L26">View Source</a>
</span>
<h4 id="Toscana_ToscaRequirement_Node" data-uid="Toscana.ToscaRequirement.Node">Node</h4>
<div class="markdown level1 summary"><p>The optional reserved keyname used to provide the name of a valid Node Type that contains
the capability definition that can be used to fulfill the requirement.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public string Node { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/QualiSystems/Toscana/new/master/Toscana.Docs/apispec/new?filename=Toscana_ToscaRequirement_Occurrences.md&value=---%0Auid%3A%20Toscana.ToscaRequirement.Occurrences%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">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/QualiSystems/Toscana/blob/master/Toscana/ToscaRequirement.cs/#L38">View Source</a>
</span>
<h4 id="Toscana_ToscaRequirement_Occurrences" data-uid="Toscana.ToscaRequirement.Occurrences">Occurrences</h4>
<div class="markdown level1 summary"><p>The optional minimum and maximum occurrences for the requirement.
Note: the keyword UNBOUNDED is also supported to represent any positive integer.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public object[] Occurrences { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span>[]</td>
<td></td>
</tr>
</tbody>
</table>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/QualiSystems/Toscana/new/master/Toscana.Docs/apispec/new?filename=Toscana_ToscaRequirement_Relationship.md&value=---%0Auid%3A%20Toscana.ToscaRequirement.Relationship%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">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/QualiSystems/Toscana/blob/master/Toscana/ToscaRequirement.cs/#L32">View Source</a>
</span>
<h4 id="Toscana_ToscaRequirement_Relationship" data-uid="Toscana.ToscaRequirement.Relationship">Relationship</h4>
<div class="markdown level1 summary"><p>The optional reserved keyname used to provide the name of a valid Relationship Type to
construct when fulfilling the requirement.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public string Relationship { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td></td>
</tr>
</tbody>
</table>
<h3 id="operators">Operators
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/QualiSystems/Toscana/new/master/Toscana.Docs/apispec/new?filename=Toscana_ToscaRequirement_op_Implicit_System_String__Toscana_ToscaRequirement.md&value=---%0Auid%3A%20Toscana.ToscaRequirement.op_Implicit(System.String)~Toscana.ToscaRequirement%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">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/QualiSystems/Toscana/blob/master/Toscana/ToscaRequirement.cs/#L45">View Source</a>
</span>
<h4 id="Toscana_ToscaRequirement_op_Implicit_System_String__Toscana_ToscaRequirement" data-uid="Toscana.ToscaRequirement.op_Implicit(System.String)~Toscana.ToscaRequirement">Implicit(String to ToscaRequirement)</h4>
<div class="markdown level1 summary"><p>Initializes an instance of ToscaRequirement and set Capability property value</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public static implicit operator ToscaRequirement(string capability)</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">System.String</span></td>
<td><em>capability</em></td>
<td><p>Capability to set</p>
</td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="Toscana.ToscaRequirement.html#Toscana_ToscaRequirement">ToscaRequirement</a></td>
<td><p>An instance of <a class="xref" href="Toscana.ToscaRequirement.html#Toscana_ToscaRequirement">ToscaRequirement</a></p>
</td>
</tr>
</tbody>
</table>
<h3 id="extensionmethods">Extension Methods</h3>
<div>
<span class="xref">Toscana.Common.EnumerableExtensions.FromHierarchy<Toscana.ToscaRequirement>(System.Func<Toscana.ToscaRequirement, Toscana.ToscaRequirement>, System.Func<Toscana.ToscaRequirement, System.Boolean>)</span>
</div>
<div>
<span class="xref">Toscana.Common.EnumerableExtensions.FromHierarchy<Toscana.ToscaRequirement>(System.Func<Toscana.ToscaRequirement, Toscana.ToscaRequirement>)</span>
</div>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<!-- <p><a class="back-to-top" href="#top">Back to top</a><p> -->
</nav>
</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>Copyright © 2015-2016 Microsoft<br>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>
<script>hljs.initHighlightingOnLoad();</script>
</body>
</html>
| johnathanvidu/Toscana | Toscana.Docs/web/api/Toscana.ToscaRequirement.html | HTML | apache-2.0 | 17,957 |
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<style>
@font-face{ font-family:NotoSansDisplay-Regular; src:url("https://cdn.jsdelivr.net/gh/googlefonts/noto-fonts@main/unhinted/ttf/NotoSansDisplay/NotoSansDisplay-Regular.ttf");
}
@font-face{ font-family:NotoSansDisplay-Italic; src:url("https://cdn.jsdelivr.net/gh/googlefonts/noto-fonts@main/unhinted/ttf/NotoSansDisplay/NotoSansDisplay-Italic.ttf");
}
@font-face{ font-family:NotoSans-Regular; src:url("https://cdn.jsdelivr.net/gh/googlefonts/noto-fonts@main/unhinted/ttf/NotoSans/NotoSans-Regular.ttf");
}
@font-face{ font-family:NotoSans-Italic; src:url("https://cdn.jsdelivr.net/gh/googlefonts/noto-fonts@main/unhinted/ttf/NotoSans/NotoSans-Italic.ttf");
}
@font-face{ font-family:NotoSansMono-Regular; src:url("https://cdn.jsdelivr.net/gh/googlefonts/noto-fonts@main/unhinted/ttf/NotoSansMono/NotoSansMono-Regular.ttf");
}
@font-face{ font-family:NotoSerifDisplay-Regular; src:url("https://cdn.jsdelivr.net/gh/googlefonts/noto-fonts@main/unhinted/ttf/NotoSerifDisplay/NotoSerifDisplay-Regular.ttf");
}
@font-face{ font-family:NotoSerifDisplay-Italic; src:url("https://cdn.jsdelivr.net/gh/googlefonts/noto-fonts@main/unhinted/ttf/NotoSerifDisplay/NotoSerifDisplay-Italic.ttf");
}
@font-face{ font-family:NotoSerif-Regular; src:url("https://cdn.jsdelivr.net/gh/googlefonts/noto-fonts@main/unhinted/ttf/NotoSerif/NotoSerif-Regular.ttf");
}
@font-face{ font-family:NotoSerif-Italic; src:url("https://cdn.jsdelivr.net/gh/googlefonts/noto-fonts@main/unhinted/ttf/NotoSerif/NotoSerif-Italic.ttf");
}
@font-face {font-family: AdobeBlank; src:url(AdobeBlank.ttf);}
</style>
</head>
<body>
<a href="https://github.com/googlefonts/noto-fonts/issues/497">Issue 497</a>
<p></p>
<p>NotoSans-Regular:
<br><span style="font-family:NotoSans-Regular, AdobeBlank; background-color:#EDEBEA">ƲʋᶹƑƒƘƙⱲⱳƳƴ fƒ</span></p>
<p>NotoSansDisplay-Regular:
<br><span style="font-family:NotoSansDisplay-Regular, AdobeBlank; background-color:#EDEBEA">ƲʋᶹƑƒƘƙⱲⱳƳƴ fƒ</span></p>
<p>NotoSans-Italic:
<br><span style="font-family:NotoSans-Italic, AdobeBlank; background-color:#EDEBEA">ƲʋᶹƑƒƘƙⱲⱳƳƴ fƒ</span></p>
<p>NotoSansDisplay-Italic:
<br><span style="font-family:NotoSansDisplay-Italic, AdobeBlank; background-color:#EDEBEA">ƲʋᶹƑƒƘƙⱲⱳƳƴ fƒ</span></p>
<p>NotoSansMono-Regular:
<br><span style="font-family:NotoSansMono-Regular, AdobeBlank; background-color:#EDEBEA">ƲʋᶹƑƒƘƙⱲⱳƳƴ fƒ</span></p>
<p>NotoSerif-Regular:
<br><span style="font-family:NotoSerif-Regular, AdobeBlank; background-color:#EDEBEA">ƲʋᶹƑƒƘƙⱲⱳƳƴ fƒ</span></p>
<p>NotoSerifDisplay-Regular:
<br><span style="font-family:NotoSerifDisplay-Regular, AdobeBlank; background-color:#EDEBEA">ƲʋᶹƑƒƘƙⱲⱳƳƴ fƒ</span></p>
<p>NotoSerif-Italic:
<br><span style="font-family:NotoSerif-Italic, AdobeBlank; background-color:#EDEBEA">ƲʋᶹƑƒƘƙⱲⱳƳƴ fƒ</span></p>
<p>NotoSerifDisplay-Italic:
<br><span style="font-family:NotoSerifDisplay-Italic, AdobeBlank; background-color:#EDEBEA">ƲʋᶹƑƒƘƙⱲⱳƳƴ fƒ</span></p>
<label style="font-size:10px"> Test details:<br>Tested font directory: https://github.com/googlefonts/noto-fonts/tree/main/unhinted/ttf/NotoSans</label><br><label style="font-size:10px">Test created date: </label><label style="font-size:10px" id="date"></label>
<script>
var date_tag = new Date(); document.getElementById("date").innerHTML=date_tag;
</script>
</body>
</html>
| googlei18n/noto-source | test/LGC/497-NotoSans.html | HTML | apache-2.0 | 3,717 |
<!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 org.apache.poi.xssf.usermodel.XSSFCreationHelper (POI API Documentation)</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 org.apache.poi.xssf.usermodel.XSSFCreationHelper (POI API Documentation)";
}
//-->
</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/poi/xssf/usermodel/XSSFCreationHelper.html" title="class in org.apache.poi.xssf.usermodel">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>PREV</li>
<li>NEXT</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/apache/poi/xssf/usermodel//class-useXSSFCreationHelper.html" target="_top">FRAMES</a></li>
<li><a href="XSSFCreationHelper.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.poi.xssf.usermodel.XSSFCreationHelper" class="title">Uses of Class<br>org.apache.poi.xssf.usermodel.XSSFCreationHelper</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/poi/xssf/usermodel/XSSFCreationHelper.html" title="class in org.apache.poi.xssf.usermodel">XSSFCreationHelper</a></span><span class="tabEnd"> </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.poi.xssf.usermodel">org.apache.poi.xssf.usermodel</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.apache.poi.xssf.usermodel">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../org/apache/poi/xssf/usermodel/XSSFCreationHelper.html" title="class in org.apache.poi.xssf.usermodel">XSSFCreationHelper</a> in <a href="../../../../../../org/apache/poi/xssf/usermodel/package-summary.html">org.apache.poi.xssf.usermodel</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../org/apache/poi/xssf/usermodel/package-summary.html">org.apache.poi.xssf.usermodel</a> that return <a href="../../../../../../org/apache/poi/xssf/usermodel/XSSFCreationHelper.html" title="class in org.apache.poi.xssf.usermodel">XSSFCreationHelper</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../org/apache/poi/xssf/usermodel/XSSFCreationHelper.html" title="class in org.apache.poi.xssf.usermodel">XSSFCreationHelper</a></code></td>
<td class="colLast"><span class="strong">XSSFWorkbook.</span><code><strong><a href="../../../../../../org/apache/poi/xssf/usermodel/XSSFWorkbook.html#getCreationHelper()">getCreationHelper</a></strong>()</code>
<div class="block">Returns an object that handles instantiating concrete
classes of the various instances for XSSF.</div>
</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/poi/xssf/usermodel/XSSFCreationHelper.html" title="class in org.apache.poi.xssf.usermodel">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>PREV</li>
<li>NEXT</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/apache/poi/xssf/usermodel//class-useXSSFCreationHelper.html" target="_top">FRAMES</a></li>
<li><a href="XSSFCreationHelper.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 2014 The Apache Software Foundation or
its licensors, as applicable.</i>
</small></p>
</body>
</html>
| RyoSaeba69/Bio-info | mylib/poi-3.11/docs/apidocs/org/apache/poi/xssf/usermodel/class-use/XSSFCreationHelper.html | HTML | apache-2.0 | 6,629 |
<!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_14) on Tue Aug 17 01:07:09 EDT 2010 -->
<TITLE>
Uses of Class org.apache.hadoop.mapreduce.lib.aggregate.LongValueSum (Hadoop-Mapred 0.21.0 API)
</TITLE>
<META NAME="date" CONTENT="2010-08-17">
<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 org.apache.hadoop.mapreduce.lib.aggregate.LongValueSum (Hadoop-Mapred 0.21.0 API)";
}
}
</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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/hadoop/mapreduce/lib/aggregate/LongValueSum.html" title="class in org.apache.hadoop.mapreduce.lib.aggregate"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../index.html?org/apache/hadoop/mapreduce/lib/aggregate//class-useLongValueSum.html" target="_top"><B>FRAMES</B></A>
<A HREF="LongValueSum.html" target="_top"><B>NO FRAMES</B></A>
<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>org.apache.hadoop.mapreduce.lib.aggregate.LongValueSum</B></H2>
</CENTER>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Packages that use <A HREF="../../../../../../../org/apache/hadoop/mapreduce/lib/aggregate/LongValueSum.html" title="class in org.apache.hadoop.mapreduce.lib.aggregate">LongValueSum</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.apache.hadoop.mapred.lib.aggregate"><B>org.apache.hadoop.mapred.lib.aggregate</B></A></TD>
<TD>Classes for performing various counting and aggregations. </TD>
</TR>
</TABLE>
<P>
<A NAME="org.apache.hadoop.mapred.lib.aggregate"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Uses of <A HREF="../../../../../../../org/apache/hadoop/mapreduce/lib/aggregate/LongValueSum.html" title="class in org.apache.hadoop.mapreduce.lib.aggregate">LongValueSum</A> in <A HREF="../../../../../../../org/apache/hadoop/mapred/lib/aggregate/package-summary.html">org.apache.hadoop.mapred.lib.aggregate</A></FONT></TH>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">Subclasses of <A HREF="../../../../../../../org/apache/hadoop/mapreduce/lib/aggregate/LongValueSum.html" title="class in org.apache.hadoop.mapreduce.lib.aggregate">LongValueSum</A> in <A HREF="../../../../../../../org/apache/hadoop/mapred/lib/aggregate/package-summary.html">org.apache.hadoop.mapred.lib.aggregate</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> class</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../../org/apache/hadoop/mapred/lib/aggregate/LongValueSum.html" title="class in org.apache.hadoop.mapred.lib.aggregate">LongValueSum</A></B></CODE>
<BR>
This class implements a value aggregator that sums up
a sequence of long values.</TD>
</TR>
</TABLE>
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/hadoop/mapreduce/lib/aggregate/LongValueSum.html" title="class in org.apache.hadoop.mapreduce.lib.aggregate"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../index.html?org/apache/hadoop/mapreduce/lib/aggregate//class-useLongValueSum.html" target="_top"><B>FRAMES</B></A>
<A HREF="LongValueSum.html" target="_top"><B>NO FRAMES</B></A>
<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>
Copyright © 2009 The Apache Software Foundation
</BODY>
</HTML>
| jayantgolhar/Hadoop-0.21.0 | mapred/docs/api/org/apache/hadoop/mapreduce/lib/aggregate/class-use/LongValueSum.html | HTML | apache-2.0 | 8,405 |
<!DOCTYPE html>
<!--
Copyright 2016 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<link rel="import" href="/tracing/core/test_utils.html">
<link rel="import" href="/tracing/value/diagnostics/related_event_set.html">
<link rel="import" href="/tracing/value/ui/diagnostic_span.html">
<script>
'use strict';
tr.b.unittest.testSuite(function() {
test('instantiate_RelatedEventSet0', function() {
const diagnostic = new tr.v.d.RelatedEventSet();
const span = tr.v.ui.createDiagnosticSpan(diagnostic);
assert.strictEqual('TR-V-UI-RELATED-EVENT-SET-SPAN', span.tagName);
this.addHTMLOutput(span);
assert.strictEqual('0 events', span.textContent);
});
test('instantiate_RelatedEventSet1', function() {
const diagnostic = new tr.v.d.RelatedEventSet();
tr.c.TestUtils.newModel(function(model) {
const proc = model.getOrCreateProcess(1);
const thread = proc.getOrCreateThread(2);
const event = tr.c.TestUtils.newSliceEx(
{title: 'a', start: 0, duration: 1});
thread.sliceGroup.pushSlice(event);
diagnostic.add(event);
});
const span = tr.v.ui.createDiagnosticSpan(diagnostic);
assert.strictEqual('TR-V-UI-RELATED-EVENT-SET-SPAN', span.tagName);
this.addHTMLOutput(span);
assert.strictEqual('a 1.000 ms', span.textContent);
});
test('instantiate_RelatedEventSet2', function() {
const diagnostic = new tr.v.d.RelatedEventSet();
tr.c.TestUtils.newModel(function(model) {
const proc = model.getOrCreateProcess(1);
const thread = proc.getOrCreateThread(2);
let event = tr.c.TestUtils.newSliceEx({start: 0, duration: 1});
thread.sliceGroup.pushSlice(event);
diagnostic.add(event);
event = tr.c.TestUtils.newSliceEx({start: 1, duration: 1});
thread.sliceGroup.pushSlice(event);
diagnostic.add(event);
});
const span = tr.v.ui.createDiagnosticSpan(diagnostic);
assert.strictEqual('TR-V-UI-RELATED-EVENT-SET-SPAN', span.tagName);
this.addHTMLOutput(span);
assert.strictEqual('2 events', span.textContent);
});
});
</script>
| benschmaus/catapult | tracing/tracing/value/ui/related_event_set_span_test.html | HTML | bsd-3-clause | 2,184 |
---
layout: data_model
title: RelatedObservablesType
this_version: 1.0.1
---
<div class="alert alert-danger bs-alert-old-docs">
<strong>Heads up!</strong> These docs are for STIX 1.0.1, which is not the latest version (1.2). <a href="/data-model/1.2/incident/RelatedObservablesType">View the latest!</a>
</div>
<div class="row">
<div class="col-md-10">
<h1>RelatedObservablesType<span class="subdued">Incident Schema</span></h1>
</div>
<div id="nav-area" class="col-md-2">
<p>
<form id="nav-version">
<select>
<option value="1.2" >STIX 1.2</option>
<option value="1.1.1" >STIX 1.1.1</option>
<option value="1.1" >STIX 1.1</option>
<option value="1.0.1" selected="selected">STIX 1.0.1</option>
<option value="1.0" >STIX 1.0</option>
</select>
</form>
</p>
</div>
</div>
<hr />
<h2>Fields</h2>
<table class="table table-striped table-hover">
<thead>
<tr>
<th>Field Name</th>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>@scope<span class="occurrence">optional</span></td>
<td>
RelationshipScopeEnum
</td>
<td>
<p>Indicates how multiple related items should be interpreted in this relationship. If "inclusive" is specified, then a single conceptual relationship is being defined between the subject and the collection of objects indicated by the related items (i.e. the relationship is not necessarily relevant for any one particular object being referenced, but for the aggregated collection of objects referenced). If "exclusive" is specified, then multiple relationships are being defined between the specific subject and each object individually. </p>
</td>
</tr>
<tr>
<td>Related_Observable<span class="occurrence">1..n</span></td>
<td>
<a href="/data-model/1.0.1/stixCommon/RelatedObservableType">RelatedObservableType</a>
</td>
<td>
<p>The Related_Observable field identifies or characterizes a cyber threat observable related to this Incident. </p>
</td>
</tr>
</tbody>
</table>
| jburns12/stixproject.github.io | data-model/1.0.1/incident/RelatedObservablesType/index.html | HTML | bsd-3-clause | 2,334 |
<!DOCTYPE html>
<title>flexbox | computed style | order: 0</title>
<link rel="author" href="http://opera.com" title="Opera Software">
<link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#propdef-order">
<script src="../../../../resources/testharness.js"></script>
<script src="../../../../resources/testharnessreport.js"></script>
<meta name="flags" content="dom">
<style>
body {
color: red;
order: 0;
}
</style>
<div id="log"></div>
<script>
test(function() {
var body = document.body;
assert_equals(getComputedStyle(body).getPropertyValue("order"),
"0");
});
</script>
| axinging/chromium-crosswalk | third_party/WebKit/LayoutTests/imported/csswg-test/css-flexbox-1/getcomputedstyle/flexbox_computedstyle_order.html | HTML | bsd-3-clause | 599 |
<!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>libpqxx: Class Members - Functions</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
</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">libpqxx
 <span id="projectnumber">4.0.1</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.1.2 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related 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="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li class="current"><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="navrow3" class="tabs2">
<ul class="tablist">
<li><a href="functions.html"><span>All</span></a></li>
<li class="current"><a href="functions_func.html"><span>Functions</span></a></li>
<li><a href="functions_vars.html"><span>Variables</span></a></li>
<li><a href="functions_type.html"><span>Typedefs</span></a></li>
<li><a href="functions_enum.html"><span>Enumerations</span></a></li>
<li><a href="functions_eval.html"><span>Enumerator</span></a></li>
<li><a href="functions_rela.html"><span>Related Functions</span></a></li>
</ul>
</div>
<div id="navrow4" class="tabs3">
<ul class="tablist">
<li><a href="functions_func.html#index_a"><span>a</span></a></li>
<li><a href="functions_func_0x62.html#index_b"><span>b</span></a></li>
<li><a href="functions_func_0x63.html#index_c"><span>c</span></a></li>
<li><a href="functions_func_0x64.html#index_d"><span>d</span></a></li>
<li><a href="functions_func_0x65.html#index_e"><span>e</span></a></li>
<li><a href="functions_func_0x66.html#index_f"><span>f</span></a></li>
<li><a href="functions_func_0x67.html#index_g"><span>g</span></a></li>
<li><a href="functions_func_0x68.html#index_h"><span>h</span></a></li>
<li><a href="functions_func_0x69.html#index_i"><span>i</span></a></li>
<li class="current"><a href="functions_func_0x6c.html#index_l"><span>l</span></a></li>
<li><a href="functions_func_0x6d.html#index_m"><span>m</span></a></li>
<li><a href="functions_func_0x6e.html#index_n"><span>n</span></a></li>
<li><a href="functions_func_0x6f.html#index_o"><span>o</span></a></li>
<li><a href="functions_func_0x70.html#index_p"><span>p</span></a></li>
<li><a href="functions_func_0x71.html#index_q"><span>q</span></a></li>
<li><a href="functions_func_0x72.html#index_r"><span>r</span></a></li>
<li><a href="functions_func_0x73.html#index_s"><span>s</span></a></li>
<li><a href="functions_func_0x74.html#index_t"><span>t</span></a></li>
<li><a href="functions_func_0x75.html#index_u"><span>u</span></a></li>
<li><a href="functions_func_0x77.html#index_w"><span>w</span></a></li>
<li><a href="functions_func_0x7e.html#index_0x7e"><span>~</span></a></li>
</ul>
</div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('functions_func_0x6c.html','');});
</script>
<div id="doc-content">
<div class="contents">
 
<h3><a class="anchor" id="index_l"></a>- l -</h3><ul>
<li>largeobject()
: <a class="el" href="a00056.html#a2d076b22c335557dbe91f4793c315e7d">pqxx::largeobject</a>
</li>
<li>largeobject_streambuf()
: <a class="el" href="a00057.html#a861824ef8ee2abff9c36e9f01282752f">pqxx::largeobject_streambuf< CHAR, TRAITS ></a>
</li>
<li>largeobjectaccess()
: <a class="el" href="a00058.html#a6a83ff716d73bdf627d8ad29405b297d">pqxx::largeobjectaccess</a>
</li>
<li>length()
: <a class="el" href="a00013.html#a065a1d5f2e87f640b57ce35580b11659">pqxx::binarystring</a>
</li>
<li>level()
: <a class="el" href="a00054.html#a7257515292c662b6247844ddbbd5d37d">pqxx::isolation_traits< LEVEL ></a>
</li>
<li>loseref()
: <a class="el" href="a00080.html#ad096a060aac9424435026f17b04d3772">pqxx::internal::refcount</a>
</li>
</ul>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="footer">Generated on Sun Jan 20 2013 13:09:13 for libpqxx by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.1.2 </li>
</ul>
</div>
</body>
</html>
| giupo/libpqxx | doc/html/Reference/functions_func_0x6c.html | HTML | bsd-3-clause | 6,078 |
---
layout: default
---
{% include topnav.html %}
<main class="wrapper">
<nav class="side-nav">
<button id="toggleNavButton">Menu</button>
<ul>
{%- for item in site.data.try.toc -%}
<li class="{% if page.url == item[1].url %}active{% endif %}">
<a href="{{site.baseurl}}{{item[1].url}}">{{item[1].title}}</a>
</li>
{%- endfor -%}
</ul>
</nav>
<article>
<h1>{{page.title}}</h1>
{{ content }}
</article>
</main>
<script>
toggleNavButton.addEventListener('click', function(event) {
const nav = event.target.parentElement;
nav.classList.toggle('open');
});
</script>
| Polymer/lit-element | docs/_layouts/try.html | HTML | bsd-3-clause | 652 |
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /html/flatastic/css/fancybox/fancy_shadow_ne.png was not found on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>
| zahdxj/YinCart | themes/flatastic/css/fancybox/fancy_shadow_ne.html | HTML | bsd-3-clause | 364 |
<!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>Petri Net Plans: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">Petri Net Plans
</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 Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespacelearnpnp.html">learnpnp</a> </li>
<li class="navelem"><a class="el" href="classlearnpnp_1_1_logging_controller.html">LoggingController</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">learnpnp::LoggingController Member List</div> </div>
</div><!--header-->
<div class="contents">
This is the complete list of members for <a class="el" href="classlearnpnp_1_1_logging_controller.html">learnpnp::LoggingController</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="classlearnpnp_1_1_logging_controller.html#a922c3b4d20d5777c7c77f2e4835bdf1b">addLogger</a>(const PlaceLogger &pl)</td><td><a class="el" href="classlearnpnp_1_1_logging_controller.html">learnpnp::LoggingController</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="structlearnpnp_1_1_controller.html#afe08a8906fc7d06943f4293c9fc0697d">choose</a>(const Marking &current, const std::vector< Marking > &states)=0</td><td><a class="el" href="structlearnpnp_1_1_controller.html">learnpnp::Controller</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="structlearnpnp_1_1_controller.html#a3befc0c3dd656f6ca52db2d942172e26">isLearning</a>() const </td><td><a class="el" href="structlearnpnp_1_1_controller.html">learnpnp::Controller</a></td><td><code> [inline]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classlearnpnp_1_1_logging_controller.html#a8db670aa77c77da21f20d04ad442458b">learner</a></td><td><a class="el" href="classlearnpnp_1_1_logging_controller.html">learnpnp::LoggingController</a></td><td><code> [protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="structlearnpnp_1_1_controller.html#ab125ef7062e606631221ac45c72881c7">learning</a></td><td><a class="el" href="structlearnpnp_1_1_controller.html">learnpnp::Controller</a></td><td><code> [protected]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classlearnpnp_1_1_logging_controller.html#ac895803c35c7d8c01cc9a531ccd99abb">LoggingController</a>(Learner *learner)</td><td><a class="el" href="classlearnpnp_1_1_logging_controller.html">learnpnp::LoggingController</a></td><td><code> [explicit]</code></td></tr>
<tr class="memlist"><td><a class="el" href="structlearnpnp_1_1_controller.html#ad2e809dad75e582624b9e74d82e2dbc3">setLearning</a>(bool newLearning)</td><td><a class="el" href="structlearnpnp_1_1_controller.html">learnpnp::Controller</a></td><td><code> [inline, virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="structlearnpnp_1_1_controller.html#acc3cc074f19284158f78551dc8259c08">tick</a>()=0</td><td><a class="el" href="structlearnpnp_1_1_controller.html">learnpnp::Controller</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="structlearnpnp_1_1_controller.html#aa5cdc706020515162026ad541f70d36e">updateV</a>(const Marking &current, double reward, const Marking &next)=0</td><td><a class="el" href="structlearnpnp_1_1_controller.html">learnpnp::Controller</a></td><td><code> [pure virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classlearnpnp_1_1_logging_controller.html#ab0b2655a1a94c90fbcc53736dae39839">visited</a>(const Marking &current)</td><td><a class="el" href="classlearnpnp_1_1_logging_controller.html">learnpnp::LoggingController</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="structlearnpnp_1_1_controller.html#a41ad986461d3ae5bb7bdae451f852e56">~Controller</a>()</td><td><a class="el" href="structlearnpnp_1_1_controller.html">learnpnp::Controller</a></td><td><code> [inline, virtual]</code></td></tr>
<tr class="memlist"><td><a class="el" href="classlearnpnp_1_1_logging_controller.html#aad5f316f62a3de64d38aea3adaafcc47">~LoggingController</a>()</td><td><a class="el" href="classlearnpnp_1_1_logging_controller.html">learnpnp::LoggingController</a></td><td><code> [virtual]</code></td></tr>
</table></div><!-- contents -->
<hr class="footer"/><address class="footer"><small>
Generated on Thu Oct 9 2014 02:16:35 for Petri Net Plans by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>
</body>
</html>
| pato/bwi_experimental | bwi_tasks_pnp/pnp/doc/html/classlearnpnp_1_1_logging_controller-members.html | HTML | bsd-3-clause | 5,965 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>FusionCharts XT - Changing chart size using jQuery</title>
<link href="../../assets/ui/css/style.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="../../../Charts/FusionCharts.js"></script>
<script type="text/javascript" src="../../../Charts/jquery.min.js"></script>
<script type="text/javascript" src="../../../Charts/FusionCharts.jqueryplugin.js"></script>
<script type="text/javascript" language="Javascript" src="../../assets/ui/js/lib.js"></script>
<!--[if IE 6]>
<script src="../../../assets/ui/js/DD_belatedPNG_0.0.8a-min.js"></script>
<script>
/* select the element name, css selector, background etc */
DD_belatedPNG.fix('img');
/* string argument can be any CSS selector */
</script>
<![endif]-->
<style type="text/css">
h2.headline {
font: normal 110%/137.5% "Trebuchet MS", Arial, Helvetica, sans-serif;
padding: 0;
margin: 25px 0 25px 0;
color: #7d7c8b;
text-align: center;
}
p.small {
font: normal 68.75%/150% Verdana, Geneva, sans-serif;
color: #919191;
padding: 0;
margin: 0 auto;
width: 664px;
text-align: center;
}
</style>
</head>
<body>
<!-- wrapper -->
<div id="wrapper">
<!-- header -->
<div id="header">
<div class="logo">
<a class="imagelink" href="http://www.fusioncharts.com/" target="_blank">
<img src="../../assets/ui/images/fusionchartsv3.2-logo.png" width="131" height="75" alt="FusionCharts XT logo" />
</a>
</div><h1 class="brand-name">FusionCharts XT</h1>
<h1 class="logo-text">Changing chart size using jQuery</h1>
</div>
<!-- content area -->
<div class="content-area">
<div id="content-area-inner-main">
<div class="clear"></div>
<div class="gen-chart-render">
<p class="text">The example below shows how to use FusionCharts jQuert plugin to update size of an existing chart</p>
<p>Click "Change Chart Size" to set a bigger size of the chart</p>
<div id="messageBox" style="margin-left:100px; margin-right:100px; display:none;"></div>
<p> </p>
<div id="chartContainer">FusionCharts XT will load here!</div>
<script type="text/javascript">
var dataString ='<chart caption="Weekly Sales Summary" showValues="0" xAxisName="Week" yAxisName="Sales" numberPrefix="$" useRoundEdges="1">\n\
<set label="Week 1" value="14400" />\n\
<set label="Week 2" value="19600" />\n\
<set label="Week 3" value="24000" />\n\
<set label="Week 4" value="15700" />\n\
</chart>';
function updateChart()
{
$("#chartContainer").updateFusionCharts({ width:600, height:500 });
}
$("#chartContainer").insertFusionCharts({swfUrl: "../../../Charts/Column3D.swf", dataSource: dataString, dataFormat: "xml", width: "400", height: "300", id: "myChartID"});
</script>
</div>
<p> </p>
<div align="center">
<input id="div1" type="button" onclick="updateChart()" value="Change Chart Size" />
</div>
<br/>
<div class="clear"></div>
<p class="small"> </p>
<p> </p>
<div class="underline-dull"></div>
<div>
<p class="highlightBlock">The above sample showcases how to change the width and height of the chart using jQuery. Click <a href="../../../Contents/index.html?jQuery/RetrieveUpdate.html#changesize" target="_blank">here</a> to know more on how the code of this example works.</p>
</div>
</div>
</div>
<!-- footer -->
<div id="footer">
<ul>
<li><a href="../index.html"><span>« Back to list of examples</span></a></li>
<li class="pipe">|</li>
<li><a href="../../NoChart.html"><span>Unable to see the chart above?</span></a></li>
</ul>
</div>
</div>
<script type="text/javascript"><!--//
$(document).ready ( function() {
showConditionalMessage( "Your browser does not seem to have Flash Player support. JavaScript chart is rendered instead", isJSRenderer(FusionCharts("myChartID")) );
});
// -->
</script>
</body>
</html>
| TechFor/agile | public/js/FusionCharts/Code/jquery/BasicExample/ChangeSize.html | HTML | bsd-3-clause | 5,392 |
<!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" />
<title>ConfusingTernaryRule xref</title>
<link type="text/css" rel="stylesheet" href="../../../../../../../stylesheet.css" />
</head>
<body>
<div id="overview"><a href="../../../../../../../../apidocs/net/sourceforge/pmd/lang/java/rule/design/ConfusingTernaryRule.html">View Javadoc</a></div><pre>
<a class="jxr_linenumber" name="1" href="#1">1</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="2" href="#2">2</a> <em class="jxr_javadoccomment"> * BSD-style license; for more info see <a href="http://pmd.sourceforge.net/license.html" target="alexandria_uri">http://pmd.sourceforge.net/license.html</a></em>
<a class="jxr_linenumber" name="3" href="#3">3</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="4" href="#4">4</a> <strong class="jxr_keyword">package</strong> net.sourceforge.pmd.lang.java.rule.design;
<a class="jxr_linenumber" name="5" href="#5">5</a>
<a class="jxr_linenumber" name="6" href="#6">6</a> <strong class="jxr_keyword">import</strong> net.sourceforge.pmd.lang.ast.Node;
<a class="jxr_linenumber" name="7" href="#7">7</a> <strong class="jxr_keyword">import</strong> net.sourceforge.pmd.lang.java.ast.ASTConditionalAndExpression;
<a class="jxr_linenumber" name="8" href="#8">8</a> <strong class="jxr_keyword">import</strong> net.sourceforge.pmd.lang.java.ast.ASTConditionalExpression;
<a class="jxr_linenumber" name="9" href="#9">9</a> <strong class="jxr_keyword">import</strong> net.sourceforge.pmd.lang.java.ast.ASTConditionalOrExpression;
<a class="jxr_linenumber" name="10" href="#10">10</a> <strong class="jxr_keyword">import</strong> net.sourceforge.pmd.lang.java.ast.ASTEqualityExpression;
<a class="jxr_linenumber" name="11" href="#11">11</a> <strong class="jxr_keyword">import</strong> net.sourceforge.pmd.lang.java.ast.ASTExpression;
<a class="jxr_linenumber" name="12" href="#12">12</a> <strong class="jxr_keyword">import</strong> net.sourceforge.pmd.lang.java.ast.ASTIfStatement;
<a class="jxr_linenumber" name="13" href="#13">13</a> <strong class="jxr_keyword">import</strong> net.sourceforge.pmd.lang.java.ast.ASTPrimaryExpression;
<a class="jxr_linenumber" name="14" href="#14">14</a> <strong class="jxr_keyword">import</strong> net.sourceforge.pmd.lang.java.ast.ASTPrimaryPrefix;
<a class="jxr_linenumber" name="15" href="#15">15</a> <strong class="jxr_keyword">import</strong> net.sourceforge.pmd.lang.java.ast.ASTUnaryExpressionNotPlusMinus;
<a class="jxr_linenumber" name="16" href="#16">16</a> <strong class="jxr_keyword">import</strong> net.sourceforge.pmd.lang.java.rule.AbstractJavaRule;
<a class="jxr_linenumber" name="17" href="#17">17</a>
<a class="jxr_linenumber" name="18" href="#18">18</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="19" href="#19">19</a> <em class="jxr_javadoccomment"> * if (x != y) { diff(); } else { same(); } and<br></em>
<a class="jxr_linenumber" name="20" href="#20">20</a> <em class="jxr_javadoccomment"> * (!x ? diff() : same());.</em>
<a class="jxr_linenumber" name="21" href="#21">21</a> <em class="jxr_javadoccomment"> * <p/></em>
<a class="jxr_linenumber" name="22" href="#22">22</a> <em class="jxr_javadoccomment"> * XPath can handle the easy cases, e.g.:<pre></em>
<a class="jxr_linenumber" name="23" href="#23">23</a> <em class="jxr_javadoccomment"> * //IfStatement[</em>
<a class="jxr_linenumber" name="24" href="#24">24</a> <em class="jxr_javadoccomment"> * Statement[2]</em>
<a class="jxr_linenumber" name="25" href="#25">25</a> <em class="jxr_javadoccomment"> * and Expression[</em>
<a class="jxr_linenumber" name="26" href="#26">26</a> <em class="jxr_javadoccomment"> * EqualityExpression[@Image="!="] or</em>
<a class="jxr_linenumber" name="27" href="#27">27</a> <em class="jxr_javadoccomment"> * UnaryExpressionNotPlusMinus[@Image="!"]]]</em>
<a class="jxr_linenumber" name="28" href="#28">28</a> <em class="jxr_javadoccomment"> * </pre></em>
<a class="jxr_linenumber" name="29" href="#29">29</a> <em class="jxr_javadoccomment"> * but "&amp;&amp;" and "||" are difficult, since we need a match</em>
<a class="jxr_linenumber" name="30" href="#30">30</a> <em class="jxr_javadoccomment"> * for <i>all</i> children instead of just one. This can be done by</em>
<a class="jxr_linenumber" name="31" href="#31">31</a> <em class="jxr_javadoccomment"> * using a double-negative, e.g.:<pre></em>
<a class="jxr_linenumber" name="32" href="#32">32</a> <em class="jxr_javadoccomment"> * not(*[not(<i>matchme</i>)])</em>
<a class="jxr_linenumber" name="33" href="#33">33</a> <em class="jxr_javadoccomment"> * </pre></em>
<a class="jxr_linenumber" name="34" href="#34">34</a> <em class="jxr_javadoccomment"> * Still, XPath is unable to handle arbitrarily nested cases, since it</em>
<a class="jxr_linenumber" name="35" href="#35">35</a> <em class="jxr_javadoccomment"> * lacks recursion, e.g.:<pre></em>
<a class="jxr_linenumber" name="36" href="#36">36</a> <em class="jxr_javadoccomment"> * if (((x != !y)) || !(x)) { diff(); } else { same(); }</em>
<a class="jxr_linenumber" name="37" href="#37">37</a> <em class="jxr_javadoccomment"> * </pre></em>
<a class="jxr_linenumber" name="38" href="#38">38</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="39" href="#39">39</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../../net/sourceforge/pmd/lang/java/rule/design/ConfusingTernaryRule.html">ConfusingTernaryRule</a> <strong class="jxr_keyword">extends</strong> <a href="../../../../../../../net/sourceforge/pmd/lang/java/rule/AbstractJavaRule.html">AbstractJavaRule</a> {
<a class="jxr_linenumber" name="40" href="#40">40</a>
<a class="jxr_linenumber" name="41" href="#41">41</a> <strong class="jxr_keyword">public</strong> Object visit(<a href="../../../../../../../net/sourceforge/pmd/lang/java/ast/ASTIfStatement.html">ASTIfStatement</a> node, Object data) {
<a class="jxr_linenumber" name="42" href="#42">42</a> <em class="jxr_comment">// look for "if (match) ..; else .."</em>
<a class="jxr_linenumber" name="43" href="#43">43</a> <strong class="jxr_keyword">if</strong> (node.jjtGetNumChildren() == 3) {
<a class="jxr_linenumber" name="44" href="#44">44</a> <a href="../../../../../../../net/sourceforge/pmd/lang/ast/Node.html">Node</a> inode = node.jjtGetChild(0);
<a class="jxr_linenumber" name="45" href="#45">45</a> <strong class="jxr_keyword">if</strong> (inode instanceof ASTExpression &&
<a class="jxr_linenumber" name="46" href="#46">46</a> inode.jjtGetNumChildren() == 1) {
<a class="jxr_linenumber" name="47" href="#47">47</a> Node jnode = inode.jjtGetChild(0);
<a class="jxr_linenumber" name="48" href="#48">48</a> <strong class="jxr_keyword">if</strong> (isMatch(jnode)) {
<a class="jxr_linenumber" name="49" href="#49">49</a> addViolation(data, node);
<a class="jxr_linenumber" name="50" href="#50">50</a> }
<a class="jxr_linenumber" name="51" href="#51">51</a> }
<a class="jxr_linenumber" name="52" href="#52">52</a> }
<a class="jxr_linenumber" name="53" href="#53">53</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">super</strong>.visit(node, data);
<a class="jxr_linenumber" name="54" href="#54">54</a> }
<a class="jxr_linenumber" name="55" href="#55">55</a>
<a class="jxr_linenumber" name="56" href="#56">56</a> <strong class="jxr_keyword">public</strong> Object visit(<a href="../../../../../../../net/sourceforge/pmd/lang/java/ast/ASTConditionalExpression.html">ASTConditionalExpression</a> node, Object data) {
<a class="jxr_linenumber" name="57" href="#57">57</a> <em class="jxr_comment">// look for "match ? .. : .."</em>
<a class="jxr_linenumber" name="58" href="#58">58</a> <strong class="jxr_keyword">if</strong> (node.jjtGetNumChildren() > 0) {
<a class="jxr_linenumber" name="59" href="#59">59</a> <a href="../../../../../../../net/sourceforge/pmd/lang/ast/Node.html">Node</a> inode = node.jjtGetChild(0);
<a class="jxr_linenumber" name="60" href="#60">60</a> <strong class="jxr_keyword">if</strong> (isMatch(inode)) {
<a class="jxr_linenumber" name="61" href="#61">61</a> addViolation(data, node);
<a class="jxr_linenumber" name="62" href="#62">62</a> }
<a class="jxr_linenumber" name="63" href="#63">63</a> }
<a class="jxr_linenumber" name="64" href="#64">64</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">super</strong>.visit(node, data);
<a class="jxr_linenumber" name="65" href="#65">65</a> }
<a class="jxr_linenumber" name="66" href="#66">66</a>
<a class="jxr_linenumber" name="67" href="#67">67</a> <em class="jxr_comment">// recursive!</em>
<a class="jxr_linenumber" name="68" href="#68">68</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">boolean</strong> isMatch(<a href="../../../../../../../net/sourceforge/pmd/lang/ast/Node.html">Node</a> node) {
<a class="jxr_linenumber" name="69" href="#69">69</a> <strong class="jxr_keyword">return</strong>
<a class="jxr_linenumber" name="70" href="#70">70</a> isUnaryNot(node) ||
<a class="jxr_linenumber" name="71" href="#71">71</a> isNotEquals(node) ||
<a class="jxr_linenumber" name="72" href="#72">72</a> isConditionalWithAllMatches(node) ||
<a class="jxr_linenumber" name="73" href="#73">73</a> isParenthesisAroundMatch(node);
<a class="jxr_linenumber" name="74" href="#74">74</a> }
<a class="jxr_linenumber" name="75" href="#75">75</a>
<a class="jxr_linenumber" name="76" href="#76">76</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">boolean</strong> isUnaryNot(<a href="../../../../../../../net/sourceforge/pmd/lang/ast/Node.html">Node</a> node) {
<a class="jxr_linenumber" name="77" href="#77">77</a> <em class="jxr_comment">// look for "!x"</em>
<a class="jxr_linenumber" name="78" href="#78">78</a> <strong class="jxr_keyword">return</strong>
<a class="jxr_linenumber" name="79" href="#79">79</a> node instanceof <a href="../../../../../../../net/sourceforge/pmd/lang/java/ast/ASTUnaryExpressionNotPlusMinus.html">ASTUnaryExpressionNotPlusMinus</a> &&
<a class="jxr_linenumber" name="80" href="#80">80</a> <span class="jxr_string">"!"</span>.equals(node.getImage());
<a class="jxr_linenumber" name="81" href="#81">81</a> }
<a class="jxr_linenumber" name="82" href="#82">82</a>
<a class="jxr_linenumber" name="83" href="#83">83</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">boolean</strong> isNotEquals(<a href="../../../../../../../net/sourceforge/pmd/lang/ast/Node.html">Node</a> node) {
<a class="jxr_linenumber" name="84" href="#84">84</a> <em class="jxr_comment">// look for "x != y"</em>
<a class="jxr_linenumber" name="85" href="#85">85</a> <strong class="jxr_keyword">return</strong>
<a class="jxr_linenumber" name="86" href="#86">86</a> node instanceof <a href="../../../../../../../net/sourceforge/pmd/lang/java/ast/ASTEqualityExpression.html">ASTEqualityExpression</a> &&
<a class="jxr_linenumber" name="87" href="#87">87</a> <span class="jxr_string">"!="</span>.equals(node.getImage());
<a class="jxr_linenumber" name="88" href="#88">88</a> }
<a class="jxr_linenumber" name="89" href="#89">89</a>
<a class="jxr_linenumber" name="90" href="#90">90</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">boolean</strong> isConditionalWithAllMatches(<a href="../../../../../../../net/sourceforge/pmd/lang/ast/Node.html">Node</a> node) {
<a class="jxr_linenumber" name="91" href="#91">91</a> <em class="jxr_comment">// look for "match && match" or "match || match"</em>
<a class="jxr_linenumber" name="92" href="#92">92</a> <strong class="jxr_keyword">if</strong> (!(node instanceof ASTConditionalAndExpression) &&
<a class="jxr_linenumber" name="93" href="#93">93</a> !(node instanceof <a href="../../../../../../../net/sourceforge/pmd/lang/java/ast/ASTConditionalOrExpression.html">ASTConditionalOrExpression</a>)) {
<a class="jxr_linenumber" name="94" href="#94">94</a> <strong class="jxr_keyword">return</strong> false;
<a class="jxr_linenumber" name="95" href="#95">95</a> }
<a class="jxr_linenumber" name="96" href="#96">96</a> <strong class="jxr_keyword">int</strong> n = node.jjtGetNumChildren();
<a class="jxr_linenumber" name="97" href="#97">97</a> <strong class="jxr_keyword">if</strong> (n <= 0) {
<a class="jxr_linenumber" name="98" href="#98">98</a> <strong class="jxr_keyword">return</strong> false;
<a class="jxr_linenumber" name="99" href="#99">99</a> }
<a class="jxr_linenumber" name="100" href="#100">100</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = 0; i < n; i++) {
<a class="jxr_linenumber" name="101" href="#101">101</a> <a href="../../../../../../../net/sourceforge/pmd/lang/ast/Node.html">Node</a> inode = node.jjtGetChild(i);
<a class="jxr_linenumber" name="102" href="#102">102</a> <em class="jxr_comment">// recurse!</em>
<a class="jxr_linenumber" name="103" href="#103">103</a> <strong class="jxr_keyword">if</strong> (!isMatch(inode)) {
<a class="jxr_linenumber" name="104" href="#104">104</a> <strong class="jxr_keyword">return</strong> false;
<a class="jxr_linenumber" name="105" href="#105">105</a> }
<a class="jxr_linenumber" name="106" href="#106">106</a> }
<a class="jxr_linenumber" name="107" href="#107">107</a> <em class="jxr_comment">// all match</em>
<a class="jxr_linenumber" name="108" href="#108">108</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
<a class="jxr_linenumber" name="109" href="#109">109</a> }
<a class="jxr_linenumber" name="110" href="#110">110</a>
<a class="jxr_linenumber" name="111" href="#111">111</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">boolean</strong> isParenthesisAroundMatch(<a href="../../../../../../../net/sourceforge/pmd/lang/ast/Node.html">Node</a> node) {
<a class="jxr_linenumber" name="112" href="#112">112</a> <em class="jxr_comment">// look for "(match)"</em>
<a class="jxr_linenumber" name="113" href="#113">113</a> <strong class="jxr_keyword">if</strong> (!(node instanceof ASTPrimaryExpression) ||
<a class="jxr_linenumber" name="114" href="#114">114</a> (node.jjtGetNumChildren() != 1)) {
<a class="jxr_linenumber" name="115" href="#115">115</a> <strong class="jxr_keyword">return</strong> false;
<a class="jxr_linenumber" name="116" href="#116">116</a> }
<a class="jxr_linenumber" name="117" href="#117">117</a> <a href="../../../../../../../net/sourceforge/pmd/lang/ast/Node.html">Node</a> inode = node.jjtGetChild(0);
<a class="jxr_linenumber" name="118" href="#118">118</a> <strong class="jxr_keyword">if</strong> (!(inode instanceof ASTPrimaryPrefix) ||
<a class="jxr_linenumber" name="119" href="#119">119</a> (inode.jjtGetNumChildren() != 1)) {
<a class="jxr_linenumber" name="120" href="#120">120</a> <strong class="jxr_keyword">return</strong> false;
<a class="jxr_linenumber" name="121" href="#121">121</a> }
<a class="jxr_linenumber" name="122" href="#122">122</a> <a href="../../../../../../../net/sourceforge/pmd/lang/ast/Node.html">Node</a> jnode = inode.jjtGetChild(0);
<a class="jxr_linenumber" name="123" href="#123">123</a> <strong class="jxr_keyword">if</strong> (!(jnode instanceof ASTExpression) ||
<a class="jxr_linenumber" name="124" href="#124">124</a> (jnode.jjtGetNumChildren() != 1)) {
<a class="jxr_linenumber" name="125" href="#125">125</a> <strong class="jxr_keyword">return</strong> false;
<a class="jxr_linenumber" name="126" href="#126">126</a> }
<a class="jxr_linenumber" name="127" href="#127">127</a> <a href="../../../../../../../net/sourceforge/pmd/lang/ast/Node.html">Node</a> knode = jnode.jjtGetChild(0);
<a class="jxr_linenumber" name="128" href="#128">128</a> <em class="jxr_comment">// recurse!</em>
<a class="jxr_linenumber" name="129" href="#129">129</a> <strong class="jxr_keyword">return</strong> isMatch(knode);
<a class="jxr_linenumber" name="130" href="#130">130</a> }
<a class="jxr_linenumber" name="131" href="#131">131</a> }
</pre>
<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
</html>
| daejunpark/jsaf | third_party/pmd/docs/xref/net/sourceforge/pmd/lang/java/rule/design/ConfusingTernaryRule.html | HTML | bsd-3-clause | 17,634 |
{% load i18n %}
{% extends "html/documents/page.html" %}
{% block title %}{% trans %}Edit{% endtrans %} | {{ link|htsafe }} | {% trans %}Documents{% endtrans %}{% endblock %}
{% block module_title %}{{ link }}{% endblock %}
{% block module_subtitle %}{% trans %}Web Link{% endtrans %}{% endblock %}
{% block module_topmenu %}
<a class="top-menu view-link" href="{% url documents_weblink_view link.id %}">{% trans %}View{% endtrans %}</a>
{% if user.get_profile().has_permission(link, mode='w') %}
<a class="top-menu edit-link-active" href="{% url documents_weblink_edit link.id %}">{% trans %}Edit{% endtrans %}</a>
<a class="top-menu delete-link" href="{% url documents_weblink_delete link.id %}">{% trans %}Delete{% endtrans %}</a>
{% endif %}
{% endblock %}
{% block module_content %}
<form action="" method="post" class="content-form">
{% csrf_token %}
<ul class="content-form-fields">
{{ form.as_ul()|htsafe }}
</ul>
<div class="content-form-submit">
<input type="submit" name="save" value="{% trans %}Save{% endtrans %}"/>
<input type="submit" name="cancel" value="{% trans %}Cancel{% endtrans %}" class="cancel" />
</div>
</form>
{% endblock %} | rogeriofalcone/treeio | templates/html/documents/weblink_edit.html | HTML | mit | 1,191 |
Permission denied
| Trevoke/cyrus-lists | public/403.html | HTML | mit | 18 |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>posix::basic_stream_descriptor::service</title>
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
<link rel="home" href="../../../boost_asio.html" title="Boost.Asio">
<link rel="up" href="../posix__basic_stream_descriptor.html" title="posix::basic_stream_descriptor">
<link rel="prev" href="release.html" title="posix::basic_stream_descriptor::release">
<link rel="next" href="service_type.html" title="posix::basic_stream_descriptor::service_type">
</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="release.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../posix__basic_stream_descriptor.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="service_type.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h4 class="title">
<a name="boost_asio.reference.posix__basic_stream_descriptor.service"></a><a class="link" href="service.html" title="posix::basic_stream_descriptor::service">posix::basic_stream_descriptor::service</a>
</h4></div></div></div>
<p>
<span class="emphasis"><em>Inherited from basic_io_object.</em></span>
</p>
<p>
<a class="indexterm" name="id1478575"></a>
(Deprecated: Use <code class="computeroutput"><span class="identifier">get_service</span><span class="special">()</span></code>.) The service associated with the I/O
object.
</p>
<pre class="programlisting"><span class="identifier">service_type</span> <span class="special">&</span> <span class="identifier">service</span><span class="special">;</span>
</pre>
<h6>
<a name="boost_asio.reference.posix__basic_stream_descriptor.service.h0"></a>
<span><a name="boost_asio.reference.posix__basic_stream_descriptor.service.remarks"></a></span><a class="link" href="service.html#boost_asio.reference.posix__basic_stream_descriptor.service.remarks">Remarks</a>
</h6>
<p>
Available only for services that do not support movability.
</p>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2003-2012 Christopher M. Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="release.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../posix__basic_stream_descriptor.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="service_type.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
| djsedulous/namecoind | libs/boost_1_50_0/doc/html/boost_asio/reference/posix__basic_stream_descriptor/service.html | HTML | mit | 4,001 |
{% extends "../layout_search.html" %}
{% block page_title %}
Service Green
{% endblock %}
{% block content %}
<main id="content" role="main">
{% include "../../includes/phase_banner_beta.html" %}
<div class="breadcrumbs">
<ol>
<li><a href="../index.html">Home</a></li>
</ol>
</div>
<div class="grid-row">
<div class="column-two-thirds">
<h1 class="heading-xlarge">Hotel receptionist
<!-- <span class="heading-secondary">Flight attendant</span> -->
</h1>
<div class="govuk-box-grey">
<p>Hotel receptionists make guests feel welcome, manage room bookings (reservations) and deal with requests from guests.</p>
</div>
<div class="profile">
<div class="sixty">
<span class="salary-icon">
<img alt="Salary, a pound sign" src="/public/images/salary.png">
</span>
<span class="visually-hidden">Salary:</span>
<span class="bold">£12,500 to £24,000</span>
per year
</div>
<div class="forty">
<span class="hours-icon">
<img alt="Hours, a clock face" src="/public/images/hours.png">
</span>
<span class="visually-hidden">Hours:</span>
<span class="bold">Variable</span>
per week
</div>
</div>
<nav aria-label="skip to your documents" class="jump-links" role="navigation">
<div class="grid-row">
<div class="column-one-half">
<ol class="list list-number">
<li>
<a href="#how-to-become">How to become hotel receptionist</a>
</li>
<li>
<a href="#skills-required">Skills</a>
</li>
<li>
<a href="#what-youll-do">What you'll do</a>
</li>
<li>
<a href="#salary">Salary</a>
</li>
</ol>
</div>
<div class="column-one-half">
<ol class="list list-number" start="5">
<li>
<a href="#working-hours-patterns-and-environment">Working hours, patterns and environment</a>
</li>
<li>
<a href="#career-path-and-progression">Career path and progression</a>
</li>
<li>
<a href="#current-opportunities">Current opportunities</a>
</li>
</ol>
</div>
</div>
</nav>
<!--section 1-->
<section id="how-to-become">
<h2 class="heading-large">1. How to become hotel receptionist</h2>
<p>To become a hotel receptionist you could either:</p>
<ul class="list list-bullet">
<li>do an apprenticeship</li>
<li>study at college</li>
<li>start as a trainee and learn on the job</li>
</ul>
<h3 class="heading-medium">Apprenticeship</h3>
<p>If you choose to take this route, you’ll need to do an <a href="https://www.gov.uk/apprenticeships-guide">intermediate apprenticeship</a>.</p>
<p>To get onto an apprenticeship at this level, you’ll need GCSEs at grades 9 to 4 (A* to C), including English and maths, or <a href="">equivalent qualifications</a>(https://www.gov.uk/what-different-qualification-levels-mean/list-of-qualification-levels).</p>
<h3 class="heading-medium">College</h3>
<p>You could study for a college course like a level 2 or 3 diploma or certificate in hospitality.</p>
<p>You may be able to get <a href="https://www.gov.uk/further-education-courses/financial-help">financial help</a> to study.</p>
<p><a href="https://nationalcareersservice.direct.gov.uk/course-directory/home">Search for courses in your area</a>.</p>
<h3 class="heading-medium">Work experience</h3>
<p>You could start work in the hospitality industry if you want to learn the role of receptionist.</p>
<p>If you choose this route most employers will expect you to have:</p>
<ul class="list list-bullet">
<li>GCSEs at grades 9 to 4 (A* to C) in English and maths, or <a href="https://www.gov.uk/what-different-qualification-levels-mean/list-of-qualification-levels">equivalent qualifications</a></li>
<li>excellent communication and customer service skills</li>
<li>IT skills</li>
</ul>
<p>You may find it useful if you can speak a second language as a lot of hotels get visitors from outside the UK.</p>
<p>The <a href="http://www.hospitalityguild.co.uk">Hospitality Guild</a> has more information on careers in hospitality and tourism.</p>
</section>
<!--section 2-->
<section id="skills-required">
<h2 class="heading-large">2. Skills</h2>
<p>You’ll need:</p>
<ul class="list list-bullet">
<li>administration and customer service skills</li>
<li>IT skills to work with computerised booking and payment systems</li>
<li>excellent written and spoken communication skills</li>
<li>a friendly and professional telephone manner</li>
<li>patience and tact</li>
<li>the ability to stay calm under pressure and look after several things at once</li>
</ul>
<p>It may also be useful if you can speak a foreign language.</p>
</section>
<!--section 3-->
<section id="what-youll-do">
<h2 class="heading-large">3. What you'll do</h2>
<p>Your day-to-day tasks may include:</p>
<ul class="list list-bullet">
<li>dealing with bookings</li>
<li>completing procedures when guests arrive and leave</li>
<li>choosing rooms and handing out keys</li>
<li>preparing bills and taking payments</li>
<li>taking and passing on messages to guests</li>
<li>dealing with special requests from guests (like booking theatre tickets or storing valuable items)</li>
<li>answering questions</li>
<li>dealing with complaints or problems</li>
</ul>
<p>You’ll usually work as part of a team and you may be responsible for one area like managing telephone reservations or guest departures (checkouts).</p>
<p>In small hotels, your duties may include other tasks like showing guests to their rooms or serving drinks in the bar.</p>
</section>
<!--section 4 -->
<section id="salary">
<h2 class="heading-large">4. Salary</h2>
<p>Starter: £12,500 to £14,500</p>
<p>Experienced: £15,000 to £19,000</p>
<p>Highly Experienced: up to £24,000 (front desk manager)</p>
<p>You might earn up to £30,000 or more if you work for a luxury hotel or spa.</p>
<p>Meals and accommodation are sometimes provided/</p>
<p>These figures are a guide.</p>
</section>
<!--section 5 -->
<section id="working-hours-patterns-and-environment">
<h2 class="heading-large">5. Working hours, patterns and environment</h2>
<p>You’ll usually work shifts, which could include evenings, nights, weekends and public holidays. If you work during these times you may be paid extra.</p>
<p>You’ll spend most of your time at a reception desk, using a computer and a telephone switchboard.</p>
</section>
<!--section 6-->
<section id="career-path-and-progression">
<h2 class="heading-large">6. Career path and progression</h2>
<p>With experience and qualifications, you may be able to progress to front office manager or hotel manager. You could also move into different areas of hotel work, like events and banqueting services, sales, personnel or accounts.</p>
<p>You could also move outside the hospitality industry into related areas like customer service and administration.</p>
<h3 class="heading-medium">Related careers</h3>
<p>You may be interested in:</p>
<ul class="list list-bullet">
<li><a href="/job-profiles/hotel-manager">Hotel manager </a></li>
<li><a href="/job-profiles/hotel-porter">Hotel porter </a></li>
<li><a href="/job-profiles/hotel-room-attendant">Hotel room attendant </a></li>
<li><a href="/job-profiles/housekeeper">Housekeeper </a></li>
<li><a href="/job-profiles/head-chef">Head chef </a></li>
</ul>
</section>
<!--section 7-->
<section id="current-opportunities" style="margin-bottom:30px">
<h2 class="heading-large">7. Current opportunities</h2>
<!-- <p>Find the latest opportunities</p> -->
<div class="grid-row" id="appGeneric">
<div class="column-full">
<h2 class="heading-medium" style="margin-top:0px;">Apprenticeships
<span class="heading-secondary">In England</span>
</h2>
</div>
<div class="column-half">
<div class="opportunity-item">
<h3 class="heading-small"><a href="https://www.findapprenticeship.service.gov.uk/apprenticeship/-99618">Apprentice Hotel Receptionist</a></h3>
<ul class="list">
<li><span class="bold-small">Annual wage:</span> £15,500.00</li>
<li><span class="bold-small">Weekly hours:</span> 37.50</li>
<li><span class="bold-small">Location:</span> Scarborough</li>
</ul>
</div>
</div>
<div class="column-half">
<div class="opportunity-item">
<h3 class="heading-small"><a href="https://www.findapprenticeship.service.gov.uk/apprenticeship/-133703">Apprentice Hotel Receptionist</a></h3>
<ul class="list">
<li><span class="bold-small">Weekly wage:</span> £122.50</li>
<li><span class="bold-small">Weekly hours:</span> 35.00</li>
<li><span class="bold-small">Location:</span> London</li>
</ul>
</div>
</div>
</div>
<div class="opportunity-footer">
<a href="https://www.findapprenticeship.service.gov.uk/apprenticeshipsearch">Find apprenticeships near you</a>
</div>
<div class="grid-row" id="courseGeneric">
<div class="column-full">
<h2 class="heading-medium">Training courses
<span class="heading-secondary">In England</span>
</h2>
</div>
<div class="column-half">
<div class="opportunity-item">
<h3 class="heading-small"><a href="https://nationalcareersservice.direct.gov.uk/course-directory/course-details?courseid=54697160">Level 2 Certificate in Hospitality and Catering Principles (Front of House Reception)</a></h3>
<ul class="list">
<li><span class="bold-small">Provider:</span> INDEPENDENT TRAINING SERVICES LTD</li>
<li><span class="bold-small">Start date:</span> Rolling programme</li>
<li><span class="bold-small">Location:</span> EAST MIDLANDS</li>
</ul>
</div>
</div>
<div class="column-half">
<div class="opportunity-item">
<h3 class="heading-small"><a href="https://nationalcareersservice.direct.gov.uk/course-directory/course-details?courseid=51027233">Intermediate Apprenticeship in Hospitality & Catering (Front of House Reception)</a></h3>
<ul class="list">
<li><span class="bold-small">Provider:</span> LOCOMOTIVATION LTD</li>
<li><span class="bold-small">Start date:</span> rolling start dates throughout the year</li>
<li><span class="bold-small">Location:</span> DEVON</li>
</ul>
</div>
</div>
</div>
<div class="opportunity-footer">
<a href="https://nationalcareersservice.direct.gov.uk/course-directory/home">Find courses near you</a>
</div>
</section>
<p class="grey font-xsmall">Last updated: 23 March 2016</p>
</div>
<div class="column-one-third">
<aside class="PROD_govuk-related-items" role="complementary">
<h2 class="heading-medium" id="related-gov-links">
Useful links</h2>
<ul class="list">
<li>
<a href="https://nationalcareersservice.direct.gov.uk/course-directory/home">Find a course</a>
</li>
<li>
<a href="https://www.gov.uk/apply-apprenticeship">Apprenticeships</a>
</li>
<li>
<a href="https://www.ucas.com/">Thinking about university</a>
</li>
<li>
<a href="https://www.gov.uk/further-education-courses">Help with funding</a>
</li>
<li>
<a href="https://www.gov.uk/volunteering">Become a volunteer</a>
</li>
</ul>
</aside>
</div>
</div>
</main>
<script src="/public/_sprint10/javascripts/jquery-1.11.3.js"></script>
<script src="/public/_sprint10/javascripts/paralegal-dynamic-panels.js"></script>
{% endblock %}
| citizendigitalalpha/careers_beta | app/views/_sprint20/job-profiles/hotel-receptionist_v4.html | HTML | mit | 15,730 |
<!-- HTML header for doxygen 1.8.11-->
<!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=Edge" />
<!--BEGIN PROJECT_NAME-->
<title>$title | Bot Builder SDK C# Reference Library | Bot Framework</title><!--END PROJECT_NAME-->
<link href="$relpath^tabs.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="$relpath^jquery.js"></script>
<script type="text/javascript" src="$relpath^dynsections.js"></script>
$treeview
$search
$mathjax
<link href="$relpath^$stylesheet" rel="stylesheet" type="text/css" />
$extrastylesheet
<link rel="stylesheet" href="/css/documentation.css?1" />
<script src="/js/documents.js"></script>
<script src="/js/leftnav.js"></script>
<script src="/js/codetabs.js"></script>
<script src="/js/docssearch.js"></script>
<!-- START OF SmartSource Data Collector TAG v10.4.23 -->
<!-- Copyright (c) 2016 Webtrends Inc. All rights reserved. -->
<script type="text/javascript" src="/js/webtrends.load.js"></script>
<!--
appInsights
-->
<script type="text/javascript">
var appInsights=window.appInsights||function(config){
function r(config){t[config]=function(){var i=arguments;t.queue.push(function(){t[config].apply(t,i)})}}var t={config:config},u=document,e=window,o="script",s=u.createElement(o),i,f;for(s.src=config.url||"//az416426.vo.msecnd.net/scripts/a/ai.0.js",u.getElementsByTagName(o)[0].parentNode.appendChild(s),t.cookie=u.cookie,t.queue=[],i=["Event","Exception","Metric","PageView","Trace"];i.length;)r("track"+i.pop());return r("setAuthenticatedUserContext"),r("clearAuthenticatedUserContext"),config.disableExceptionTracking||(i="onerror",r("_"+i),f=e[i],e[i]=function(config,r,u,e,o){var s=f&&f(config,r,u,e,o);return s!==!0&&t["_"+i](config,r,u,e,o),s}),t
}({
instrumentationKey:"ecf7f29d-de8c-4169-a492-bdce0a32c300"
});
window.appInsights=appInsights;
appInsights.trackPageView();
</script>
<script type="text/javascript">
$(document).ready(function () {
var sidenav = $('#side-nav');
sidenav.before('<div id="content-container" class="outline"></div>');
var doccontent = $('#doc-content');
var contentcontainer = $('#content-container');
contentcontainer.append(sidenav);
contentcontainer.append(doccontent);
doccontent.prepend($('#referenceSearch'));
var top = $('#top');
top.before('<div class="fullWidth"></div>');
var fullwidth = $('div.fullWidth');
fullwidth.before('<div id="app-body"></div>');
fullwidth.append(top);
fullwidth.append(contentcontainer);
fullwidth.append($('.footer'));
var appbody = $('#app-body');
appbody.append(fullwidth);
var navtreecontents = $('#nav-tree-contents');
navtreecontents.prepend('<ul><li><div class="label"><a href="/">< Documentation Home</a></div></li></ul>');
//sidenav.prepend('<div id="wrapper"><form id="docs-search-form" action="/en-us/search/"><input id="q" name="q" type="text" placeholder=""><input type="hidden" id="v" name="v" value="v3"><input type="hidden" id="mkt" name="mkt" value="en-us"><button id="bt_search" name="bt_search" class="icon-search" type="submit"></button></form></div>');
sidenav.prepend('<div id="wrapper"><form id="docs-search-form" action="/en-us/search/"><select id="lang-select" name="lang" ><option value="">All</option><option value="node">Node.js</option><option value="csharp">.NET</option></select><input id="q" name="q" type="text" placeholder=""><input type="hidden" id="v" name="v" value="v3"><input type="hidden" id="mkt" name="mkt" value="en-us"><button id="bt_search" name="bt_search" class="icon-search" type="submit"></button></form></div>');
setProgrammingLanguage();
$('#MSearchField').removeAttr('value').attr('placeholder', 'Search the Bot Builder SDK C# reference');
});
</script>
</head>
<body>
<div id="referenceSearch">$searchbox</div>
<div id="top">
<!-- do not remove this div, it is closed by doxygen! -->
<div>
<header>
<div class="outline">
<div class="header">
<a class="logo" href="//www.microsoft.com">
<svg class="svgicon svgicon-microsoft-color-logo">
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="/images/symbol-defs.svg#svgicon-microsoft-color-logo"></use>
</svg>
</a>
<div class="loading-animation"></div>
<span class="environment"></span>
<div>
</div>
</div>
</div>
</header>
<div class="brand-primary">
<div class="jumbo">
<div class="jumbo-header"><a href="https://www.botframework.com/">Bot Framework</a></div>
<ul class="header-nav">
<li><a href="https://dev.botframework.com/#/bots">My bots</a></li>
<li><a href="https://dev.botframework.com/#/bots/new">Register a bot</a></li>
<li class="active"><a href="/">Documentation</a></li>
<li><a href="https://bots.botframework.com/">Bot Directory</a></li>
<li><a href="https://blog.botframework.com/">Blog</a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- end header part -->
</body>
</html> | yakumo/BotBuilder | CSharp/Documentation/header.html | HTML | mit | 5,888 |
<!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_17) on Sun Nov 03 15:35:42 CET 2013 -->
<title>TextureBinder (libgdx API)</title>
<meta name="date" content="2013-11-03">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="TextureBinder (libgdx 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 class="navBarCell1Rev">Class</li>
<li><a href="class-use/TextureBinder.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><em>
libgdx API
<style>
body, td, th { font-family:Helvetica, Tahoma, Arial, sans-serif; font-size:10pt }
pre, code, tt { font-size:9pt; font-family:Lucida Console, Courier New, sans-serif }
h1, h2, h3, .FrameTitleFont, .FrameHeadingFont, .TableHeadingColor font { font-size:105%; font-weight:bold }
.TableHeadingColor { background:#EEEEFF; }
a { text-decoration:none }
a:hover { text-decoration:underline }
a:link, a:visited { color:blue }
table { border:0px }
.TableRowColor td:first-child { border-left:1px solid black }
.TableRowColor td { border:0px; border-bottom:1px solid black; border-right:1px solid black }
hr { border:0px; border-bottom:1px solid #333366; }
</style>
</em></div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../com/badlogic/gdx/graphics/g3d/utils/ShaderProvider.html" title="interface in com.badlogic.gdx.graphics.g3d.utils"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/badlogic/gdx/graphics/g3d/utils/TextureDescriptor.html" title="class in com.badlogic.gdx.graphics.g3d.utils"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/badlogic/gdx/graphics/g3d/utils/TextureBinder.html" target="_top">Frames</a></li>
<li><a href="TextureBinder.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>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">com.badlogic.gdx.graphics.g3d.utils</div>
<h2 title="Interface TextureBinder" class="title">Interface TextureBinder</h2>
</div>
<div class="contentContainer">
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Known Implementing Classes:</dt>
<dd><a href="../../../../../../com/badlogic/gdx/graphics/g3d/utils/DefaultTextureBinder.html" title="class in com.badlogic.gdx.graphics.g3d.utils">DefaultTextureBinder</a></dd>
</dl>
<hr>
<br>
<pre>public interface <span class="strong">TextureBinder</span></pre>
<div class="block">Responsible for binding textures, may implement a strategy to avoid binding a texture
unnecessarily. A TextureBinder may decide to which texture unit it binds a texture.</div>
<dl><dt><span class="strong">Author:</span></dt>
<dd>badlogic, Xoppa</dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/badlogic/gdx/graphics/g3d/utils/TextureBinder.html#begin()">begin</a></strong>()</code>
<div class="block">Prepares the binder for operation, must be matched with a call
to <a href="../../../../../../com/badlogic/gdx/graphics/g3d/utils/TextureBinder.html#end()"><code>end()</code></a>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/badlogic/gdx/graphics/g3d/utils/TextureBinder.html#bind(com.badlogic.gdx.graphics.GLTexture)">bind</a></strong>(<a href="../../../../../../com/badlogic/gdx/graphics/GLTexture.html" title="class in com.badlogic.gdx.graphics">GLTexture</a> texture)</code>
<div class="block">Binds the texture to an available unit.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/badlogic/gdx/graphics/g3d/utils/TextureBinder.html#bind(com.badlogic.gdx.graphics.g3d.utils.TextureDescriptor)">bind</a></strong>(<a href="../../../../../../com/badlogic/gdx/graphics/g3d/utils/TextureDescriptor.html" title="class in com.badlogic.gdx.graphics.g3d.utils">TextureDescriptor</a> textureDescriptor)</code>
<div class="block">Binds the texture to an available unit and applies the
filters in the descriptor.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/badlogic/gdx/graphics/g3d/utils/TextureBinder.html#end()">end</a></strong>()</code>
<div class="block">Disables all used texture units and unbinds textures.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/badlogic/gdx/graphics/g3d/utils/TextureBinder.html#getBindCount()">getBindCount</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/badlogic/gdx/graphics/g3d/utils/TextureBinder.html#getReuseCount()">getReuseCount</a></strong>()</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../../com/badlogic/gdx/graphics/g3d/utils/TextureBinder.html#resetCounts()">resetCounts</a></strong>()</code>
<div class="block">Resets the bind/reuse counts</div>
</td>
</tr>
</table>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="begin()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>begin</h4>
<pre>void begin()</pre>
<div class="block">Prepares the binder for operation, must be matched with a call
to <a href="../../../../../../com/badlogic/gdx/graphics/g3d/utils/TextureBinder.html#end()"><code>end()</code></a>.</div>
</li>
</ul>
<a name="end()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>end</h4>
<pre>void end()</pre>
<div class="block">Disables all used texture units and unbinds textures. Resets the counts.</div>
</li>
</ul>
<a name="bind(com.badlogic.gdx.graphics.g3d.utils.TextureDescriptor)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>bind</h4>
<pre>int bind(<a href="../../../../../../com/badlogic/gdx/graphics/g3d/utils/TextureDescriptor.html" title="class in com.badlogic.gdx.graphics.g3d.utils">TextureDescriptor</a> textureDescriptor)</pre>
<div class="block">Binds the texture to an available unit and applies the
filters in the descriptor.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>textureDescriptor</code> - the <a href="../../../../../../com/badlogic/gdx/graphics/g3d/utils/TextureDescriptor.html" title="class in com.badlogic.gdx.graphics.g3d.utils"><code>TextureDescriptor</code></a></dd>
<dt><span class="strong">Returns:</span></dt><dd>the unit the texture was bound to</dd></dl>
</li>
</ul>
<a name="bind(com.badlogic.gdx.graphics.GLTexture)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>bind</h4>
<pre>int bind(<a href="../../../../../../com/badlogic/gdx/graphics/GLTexture.html" title="class in com.badlogic.gdx.graphics">GLTexture</a> texture)</pre>
<div class="block">Binds the texture to an available unit.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>texture</code> - the <a href="../../../../../../com/badlogic/gdx/graphics/Texture.html" title="class in com.badlogic.gdx.graphics"><code>Texture</code></a></dd>
<dt><span class="strong">Returns:</span></dt><dd>the unit the texture was bound to</dd></dl>
</li>
</ul>
<a name="getBindCount()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getBindCount</h4>
<pre>int getBindCount()</pre>
<dl><dt><span class="strong">Returns:</span></dt><dd>the number of binds actually executed since the last call to <a href="../../../../../../com/badlogic/gdx/graphics/g3d/utils/TextureBinder.html#resetCounts()"><code>resetCounts()</code></a></dd></dl>
</li>
</ul>
<a name="getReuseCount()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getReuseCount</h4>
<pre>int getReuseCount()</pre>
<dl><dt><span class="strong">Returns:</span></dt><dd>the number of binds that could be avoided by reuse</dd></dl>
</li>
</ul>
<a name="resetCounts()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>resetCounts</h4>
<pre>void resetCounts()</pre>
<div class="block">Resets the bind/reuse counts</div>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/TextureBinder.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><em>libgdx API</em></div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../com/badlogic/gdx/graphics/g3d/utils/ShaderProvider.html" title="interface in com.badlogic.gdx.graphics.g3d.utils"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../../com/badlogic/gdx/graphics/g3d/utils/TextureDescriptor.html" title="class in com.badlogic.gdx.graphics.g3d.utils"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?com/badlogic/gdx/graphics/g3d/utils/TextureBinder.html" target="_top">Frames</a></li>
<li><a href="TextureBinder.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>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>
<div style="font-size:9pt"><i>
Copyright © 2010-2013 Mario Zechner (contact@badlogicgames.com), Nathan Sweet (admin@esotericsoftware.com)
</i></div>
</small></p>
</body>
</html>
| emeryduh/TeamJones_Project | libgdx/docs/api/com/badlogic/gdx/graphics/g3d/utils/TextureBinder.html | HTML | mit | 13,605 |
<img src="http://placehold.it/800x300" alt="Banner">
| Farata/angular2typescript | extras/auction-angular-material/client/src/app/carousel/carousel.component.html | HTML | mit | 53 |
{% set page = {
title: 'index',
dev: true,
secondary: true,
html_classes: ['page-class']
} %}
{% extends page.layout | d(prototype.current.layout) %}
{% block primary %}
<a href="javascript:history.back()" class="link-back">Back</a>
<h1 class="heading-xlarge">Satisfaction survey</h1>
<form>
<h2 class="heading-medium">How easy was it to use this service?</h2>
<div class="form-group">
<fieldset>
<legend class="visuallyhidden">How easy was it to use this service?</legend>
<label class="block-label" data-target="how-easy" for="example-how-easy-very">
<input id="example-how-easy-very" type="radio" name="radio-how-easy-group" value="No">
Very easy
</label>
<label class="block-label" data-target="how-easy" for="example-how-easy-easy">
<input id="example-how-easy-easy" type="radio" name="radio-how-easy-group" value="No">
Easy
</label>
<label class="block-label" data-target="how-easy" for="example-how-easy-difficult">
<input id="example-how-easy-difficult" type="radio" name="radio-how-easy-group" value="No">
Difficult
</label>
<label class="block-label" data-target="how-easy" for="example-how-easy-vdifficult">
<input id="example-how-easy-vdifficult" type="radio" name="radio-how-easy-group" value="No">
Very difficult
</label>
</fieldset>
<br />
</div>
<h2 class="heading-medium">When you used it, did you:</h2>
<div class="form-group">
<fieldset>
<legend class="visuallyhidden">When you used it</legend>
<label class="block-label" data-target="how-used" for="example-how-used-yourself">
<input id="example-how-used-yourself" type="radio" name="radio-how-used-group" value="No">
Use it by yourself
</label>
<label class="block-label" data-target="how-used" for="example-how-used-with">
<input id="example-how-used-with" type="radio" name="radio-how-used-group" value="No">
Use it with someone's help
</label>
<label class="block-label" data-target="how-used" for="example-how-used-someoneelse">
<input id="example-how-used-someoneelse" type="radio" name="radio-how-used-group" value="No">
Have someone use it for you
</label>
</fieldset>
<br />
</div>
<h2 class="heading-medium">How likely are you to use this again?</h2>
<div class="form-group">
<fieldset>
<legend class="visuallyhidden">How likely are you to use this again?</legend>
<label class="block-label" data-target="how-likely" for="example-how-likely-very">
<input id="example-how-likely-very" type="radio" name="radio-how-likely-group" value="No">
Very likely
</label>
<label class="block-label" data-target="how-likely" for="example-how-likely-likely">
<input id="example-how-likely-likely" type="radio" name="radio-how-likely-group" value="No">
Likely
</label>
<label class="block-label" data-target="how-likely" for="example-how-likely-unlikely">
<input id="example-how-likely-unlikely" type="radio" name="radio-how-likely-group" value="No">
Unlikely
</label>
<label class="block-label" data-target="how-likely" for="example-how-likely-very-unlikely">
<input id="example-how-likely-very-unlikely" type="radio" name="radio-how-likely-group" value="No">
Very unlikely
</label>
</fieldset>
<br />
</div>
<h2 class="heading-medium">After using this do you have:</h2>
<div class="form-group">
<fieldset>
<legend class="visuallyhidden">After using this</legend>
<label class="block-label" data-target="understanding" for="example-understanding-better">
<input id="example-understanding-better" type="radio" name="radio-understanding-group" value="No">
A better understanding of what you owe
</label>
<label class="block-label" data-target="understanding" for="example-understanding-less">
<input id="example-understanding-less" type="radio" name="radio-understanding-group" value="No">
Less understanding of what you owe
</label>
<label class="block-label" data-target="understanding" for="example-understanding-same">
<input id="example-understanding-same" type="radio" name="radio-understanding-group" value="No">
No change in understanding
</label>
</fieldset>
<br />
</div>
<h2 class="heading-medium">What are you most likely to do next?</h2>
<div class="form-group">
<fieldset>
<legend class="visuallyhidden">What are you most likely to do next?</legend>
<label class="block-label" data-target="do-next" for="example-do-next-financial-advisor">
<input id="example-do-next-financial-advisor" type="radio" name="radio-do-next-group" value="No">
Speak to a financial advisor or a free advice service
</label>
<label class="block-label" data-target="do-next" for="example-do-next-dwp">
<input id="example-do-next-dwp" type="radio" name="radio-do-next-group" value="No">
Speak to DWP
</label>
<label class="block-label" data-target="do-next" for="example-do-next-friends">
<input id="example-do-next-friends" type="radio" name="radio-do-next-group" value="No">
Speak to friends or family
</label>
<label class="block-label" data-target="do-next" for="example-do-next-other-debt">
<input id="example-do-next-other-debt" type="radio" name="radio-do-next-group" value="No">
Find out about other debts or benefits
</label>
<label class="block-label" data-target="do-next" for="example-do-next-other">
<input id="example-do-next-other" type="radio" name="radio-do-next-group" value="No">
Other
</label>
</fieldset>
<br />
</div>
<h2 class="heading-medium">Would you like to take part in future research to help improve this service?</h2>
<div class="form-group">
<fieldset>
<legend class="visuallyhidden">Would you like to take part in future research to help improve this service?</legend>
<label class="block-label" data-target="help-yes" for="example-help-yes">
<input id="example-help-yes" type="radio" name="radio-help-group" value="No">
Yes
</label>
<div class="panel panel-border-narrow js-hidden" id="help-yes">
<label class="form-label" for="help-yes">Your email address</label>
<input class="form-control" name="help-yes" type="text" id="help-yes">
</div>
<label class="block-label" data-target="help" for="example-help">
<input id="example-help" type="radio" name="radio-help-group" value="No">
No
</label>
<!-- <div class="panel panel-border-narrow js-hidden" id="contact-by-text">
<label class="form-label" for="contact-text-message">Mobile phone number</label>
<input class="form-control" name="contact-text-message" type="text" id="contact-text-message">
</div>
<label class="block-label" data-target="contact-by-email" for="example-contact-by-email">
<input id="example-contact-by-email" type="checkbox" name="checkbox-contact-group" value="Yes">
Email
</label>
<div class="panel panel-border-narrow js-hidden" id="contact-by-email">
<label class="form-label" for="contact-email">Email address</label>
<input class="form-control" name="contact-email" type="text" id="contact-email">
</div>
<label class="block-label" data-target="contact-by-phone" for="example-contact-by-phone">
<input id="example-contact-by-phone" type="checkbox" name="checkbox-contact-group" value="No">
Phone call
</label>
<div class="panel panel-border-narrow js-hidden" id="contact-by-phone">
<label class="form-label" for="contact-phone">Phone number</label>
<input class="form-control" name="contact-phone" type="text" id="contact-phone">
</div> -->
</div>
</form>
<!--<fieldset>
<legend class="visuallyhidden">These details will only be used if we need more information.</legend>
<div class="form-group">
<label class="form-label" for="mobile">Preferred telephone number</label>
<input class="form-control" name="mobile" type="text" id="mobile">
<p></p>
<label class="form-label" for="email-address">Email address</label>
<input class="form-control" name="email-address" type="text" id="email-address">
</div>
</fieldset>-->
<!--<fieldset class="primary-nav form-group">
<legend class="visuallyhidden">Form Navigation</legend>
<input type="submit" value="Send request" class="button" id="submitButton" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false">
</fieldset>-->
<a class="button" href="feedback-done">Send feedback</a>
{% endblock %}
{% block secondary %}
<!-- 1 Third Column -->
{% endblock %}
| dwpdigitaltech/digital-debt | app/views/versions/mvp/prototype/app/feedback.html | HTML | mit | 9,339 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>NugetInstallVerbosity - FAKE - F# Make</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="Steffen Forkmann, Mauricio Scheffer, Colin Bull">
<script src="https://code.jquery.com/jquery-1.8.0.js"></script>
<script src="https://code.jquery.com/ui/1.8.23/jquery-ui.js"></script>
<script src="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/js/bootstrap.min.js"></script>
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<link href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/css/bootstrap-combined.min.css" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="http://fsharp.github.io/FAKE/content/style.css" />
<script type="text/javascript" src="http://fsharp.github.io/FAKE/content/tips.js"></script>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="masthead">
<ul class="nav nav-pills pull-right">
<li><a href="http://fsharp.org">fsharp.org</a></li>
<li><a href="http://github.com/fsharp/fake">github page</a></li>
</ul>
<h3 class="muted"><a href="http://fsharp.github.io/FAKE/index.html">FAKE - F# Make</a></h3>
</div>
<hr />
<div class="row">
<div class="span9" id="main">
<h1>NugetInstallVerbosity</h1>
<div class="xmldoc">
<p>Nuget install verbosity mode.</p>
</div>
<h3>Union Cases</h3>
<table class="table table-bordered member-list">
<thead>
<tr><td>Union Case</td><td>Description</td></tr>
</thead>
<tbody>
<tr>
<td class="member-name">
<code onmouseout="hideTip(event, '2297', 2297)" onmouseover="showTip(event, '2297', 2297)">
Detailed
</code>
<div class="tip" id="2297">
<strong>Signature:</strong> <br />
</div>
</td>
<td class="xmldoc">
<a href="https://github.com/fsharp/FAKE/blob/master/src/app/FakeLib/NuGet/Install.fs#L11-11" class="github-link">
<img src="../content/img/github.png" class="normal" />
<img src="../content/img/github-blue.png" class="hover" />
</a>
</td>
</tr>
<tr>
<td class="member-name">
<code onmouseout="hideTip(event, '2298', 2298)" onmouseover="showTip(event, '2298', 2298)">
Normal
</code>
<div class="tip" id="2298">
<strong>Signature:</strong> <br />
</div>
</td>
<td class="xmldoc">
<a href="https://github.com/fsharp/FAKE/blob/master/src/app/FakeLib/NuGet/Install.fs#L9-9" class="github-link">
<img src="../content/img/github.png" class="normal" />
<img src="../content/img/github-blue.png" class="hover" />
</a>
</td>
</tr>
<tr>
<td class="member-name">
<code onmouseout="hideTip(event, '2299', 2299)" onmouseover="showTip(event, '2299', 2299)">
Quiet
</code>
<div class="tip" id="2299">
<strong>Signature:</strong> <br />
</div>
</td>
<td class="xmldoc">
<a href="https://github.com/fsharp/FAKE/blob/master/src/app/FakeLib/NuGet/Install.fs#L10-10" class="github-link">
<img src="../content/img/github.png" class="normal" />
<img src="../content/img/github-blue.png" class="hover" />
</a>
</td>
</tr>
</tbody>
</table>
</div>
<div class="span3">
<a href="http://fsharp.github.io/FAKE/index.html">
<img src="http://fsharp.github.io/FAKE/pics/logo.png" style="width:140px;height:140px;margin:10px 0px 0px 35px;border-style:none;" />
</a>
<ul class="nav nav-list" id="menu">
<li class="nav-header">FAKE - F# Make</li>
<li class="divider"></li>
<li><a href="http://fsharp.github.io/FAKE/index.html">Home page</a></li>
<li class="divider"></li>
<li><a href="https://www.nuget.org/packages/FAKE">Get FAKE - F# Make via NuGet</a></li>
<li><a href="http://github.com/fsharp/fake">Source Code on GitHub</a></li>
<li><a href="http://github.com/fsharp/fake/blob/master/License.txt">License (Apache 2)</a></li>
<li><a href="http://fsharp.github.io/FAKE/RELEASE_NOTES.html">Release Notes</a></li>
<li><a href="http://fsharp.github.io/FAKE//contributing.html">Contributing to FAKE - F# Make</a></li>
<li><a href="http://fsharp.github.io/FAKE/users.html">Who is using FAKE?</a></li>
<li><a href="http://stackoverflow.com/questions/tagged/f%23-fake">Ask a question</a></li>
<li class="nav-header">Tutorials</li>
<li><a href="http://fsharp.github.io/FAKE/gettingstarted.html">Getting started</a></li>
<li><a href="http://fsharp.github.io/FAKE/cache.html">Build script caching</a></li>
<li class="divider"></li>
<li><a href="http://fsharp.github.io/FAKE/nuget.html">NuGet package restore</a></li>
<li><a href="http://fsharp.github.io/FAKE/fxcop.html">Using FxCop in a build</a></li>
<li><a href="http://fsharp.github.io/FAKE/assemblyinfo.html">Generating AssemblyInfo</a></li>
<li><a href="http://fsharp.github.io/FAKE/create-nuget-package.html">Create NuGet packages</a></li>
<li><a href="http://fsharp.github.io/FAKE/specifictargets.html">Running specific targets</a></li>
<li><a href="http://fsharp.github.io/FAKE/commandline.html">Running FAKE from command line</a></li>
<li><a href="http://fsharp.github.io/FAKE/parallel-build.html">Running targets in parallel</a></li>
<li><a href="http://fsharp.github.io/FAKE/fsc.html">Using the F# compiler from FAKE</a></li>
<li><a href="http://fsharp.github.io/FAKE/customtasks.html">Creating custom tasks</a></li>
<li><a href="http://fsharp.github.io/FAKE/soft-dependencies.html">Soft dependencies</a></li>
<li><a href="http://fsharp.github.io/FAKE/teamcity.html">TeamCity integration</a></li>
<li><a href="http://fsharp.github.io/FAKE/canopy.html">Running canopy tests</a></li>
<li><a href="http://fsharp.github.io/FAKE/octopusdeploy.html">Octopus Deploy</a></li>
<li><a href="http://fsharp.github.io/FAKE/typescript.html">TypeScript support</a></li>
<li><a href="http://fsharp.github.io/FAKE/azurewebjobs.html">Azure WebJobs support</a></li>
<li><a href="http://fsharp.github.io/FAKE/azurecloudservices.html">Azure Cloud Services support</a></li>
<li><a href="http://fsharp.github.io/FAKE/fluentmigrator.html">FluentMigrator support</a></li>
<li><a href="http://fsharp.github.io/FAKE/androidpublisher.html">Android publisher</a></li>
<li><a href="http://fsharp.github.io/FAKE/watch.html">File Watcher</a></li>
<li class="divider"></li>
<li><a href="http://fsharp.github.io/FAKE/deploy.html">Fake.Deploy</a></li>
<li><a href="http://fsharp.github.io/FAKE/iis.html">Fake.IIS</a></li>
<li class="nav-header">Reference</li>
<li><a href="http://fsharp.github.io/FAKE/apidocs/index.html">API Reference</a></li>
</ul>
</div>
</div>
</div>
<a href="http://github.com/fsharp/fake"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
</body>
</html>
| simegeorge/Numsense | packages/FAKE.4.11.3/docs/apidocs/fake-nuget-install-nugetinstallverbosity.html | HTML | mit | 8,083 |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Integrating Fibers with Asynchronous Callbacks</title>
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
<link rel="home" href="../index.html" title="Chapter 1. Fiber">
<link rel="up" href="../index.html" title="Chapter 1. Fiber">
<link rel="prev" href="migration.html" title="Migrating fibers between threads">
<link rel="next" href="callbacks/overview.html" title="Overview">
</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="migration.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.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="callbacks/overview.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
<a name="fiber.callbacks"></a><a name="callbacks"></a><a class="link" href="callbacks.html" title="Integrating Fibers with Asynchronous Callbacks">Integrating Fibers
with Asynchronous Callbacks</a>
</h2></div></div></div>
<div class="toc"><dl class="toc">
<dt><span class="section"><a href="callbacks/overview.html">Overview</a></span></dt>
<dt><span class="section"><a href="callbacks/return_errorcode.html">Return Errorcode</a></span></dt>
<dt><span class="section"><a href="callbacks/success_or_exception.html">Success or Exception</a></span></dt>
<dt><span class="section"><a href="callbacks/return_errorcode_or_data.html">Return Errorcode
or Data</a></span></dt>
<dt><span class="section"><a href="callbacks/data_or_exception.html">Data
or Exception</a></span></dt>
<dt><span class="section"><a href="callbacks/success_error_virtual_methods.html">Success/Error
Virtual Methods</a></span></dt>
<dt><span class="section"><a href="callbacks/then_there_s____boost_asio__.html">Then
There’s <a href="http://www.boost.org/doc/libs/release/libs/asio/index.html" target="_top">Boost.Asio</a></a></span></dt>
</dl></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 © 2013 Oliver Kowalke<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="migration.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../index.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="callbacks/overview.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
| davehorton/drachtio-server | deps/boost_1_77_0/libs/fiber/doc/html/fiber/callbacks.html | HTML | mit | 3,854 |
<!--
Copyright Louis Dionne 2013-2017
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
-->
<!-- boost-no-inspect -->
<!-- HTML header for doxygen 1.8.9.1-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.9.1"/>
<title>Boost.Hana: boost/hana/fwd/fold_left.hpp File Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(document).ready(function() { init_search(); });
/* @license-end */
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
extensions: ["tex2jax.js"],
jax: ["input/TeX","output/HTML-CSS"],
});
// Copyright Louis Dionne 2013-2017
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
MathJax.Hub.Config({
"HTML-CSS": {
linebreaks: {
automatic: true,
width: "75% container"
}
}
});
</script>
<script type="text/javascript" async="async" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
<!-- Additional javascript for drawing charts. -->
<script type="text/javascript" src="highcharts.js"></script>
<script type="text/javascript" src="highcharts-data.js"></script>
<script type="text/javascript" src="highcharts-exporting.js"></script>
<script type="text/javascript" src="chart.js"></script>
<script type="text/javascript" src="hana.js"></script>
</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="Boost.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Boost.Hana
 <span id="projectnumber">1.7.1</span>
</div>
<div id="projectbrief">Your standard library for metaprogramming</div>
</td>
<td> <div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.svg"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.svg" alt=""/></a>
</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.9.1 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
var searchBox = new SearchBox("searchBox", "search",false,'Search','.html');
/* @license-end */
</script>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(document).ready(function(){initNavTree('fwd_2fold__left_8hpp.html',''); initResizable(); });
/* @license-end */
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="header">
<div class="summary">
<a href="#namespaces">Namespaces</a> </div>
<div class="headertitle">
<div class="title">fold_left.hpp File Reference</div> </div>
</div><!--header-->
<div class="contents">
<p>Forward declares <code>boost::hana::fold_left</code>.
<a href="#details">More...</a></p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="namespaces"></a>
Namespaces</h2></td></tr>
<tr class="memitem:namespaceboost_1_1hana"><td class="memItemLeft" align="right" valign="top">  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceboost_1_1hana.html">boost::hana</a></td></tr>
<tr class="memdesc:namespaceboost_1_1hana"><td class="mdescLeft"> </td><td class="mdescRight">Namespace containing everything in the library. <br /></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>Forward declares <code>boost::hana::fold_left</code>. </p>
<dl class="section copyright"><dt>Copyright</dt><dd>Louis Dionne 2013-2017 Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE.md or copy at <a href="http://boost.org/LICENSE_1_0.txt">http://boost.org/LICENSE_1_0.txt</a>) </dd></dl>
</div></div><!-- contents -->
</div><!-- doc-content -->
<!--
Copyright Louis Dionne 2013-2017
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
-->
<!-- boost-no-inspect -->
<!-- HTML footer for doxygen 1.8.9.1-->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="dir_1878a3f4746a95c6aad317458cc7ef80.html">boost</a></li><li class="navelem"><a class="el" href="dir_daf74c896eae580804ddb7810f485dad.html">hana</a></li><li class="navelem"><a class="el" href="dir_cc4d96287a8e6ea2980c75f79e8c5cd4.html">fwd</a></li><li class="navelem"><a class="el" href="fwd_2fold__left_8hpp.html">fold_left.hpp</a></li>
</ul>
</div>
</body>
</html>
| davehorton/drachtio-server | deps/boost_1_77_0/libs/hana/doc/html/fwd_2fold__left_8hpp.html | HTML | mit | 7,340 |
<hr />
<div class="padding npt npb">
<br />
<div><span class="fa fa-folder mr5"></span><strong>@(Subcategories)</strong>:</div>
<div class="subcategories">
<div class="row">
@{if repository.category.level}
<div class="col-md-3"><a href="../" class="up"><span class="fa fa-caret-left"></span>@(Back)</a></div>
@{fi}
@{foreach m in repository.category.children}
<div class="col-md-3"><a href="@{sitemap_url('products')}@{m.linker}/">@{m.text}</a></div>
@{end}
</div>
</div>
</div>
<hr />
<br /> | roicoroy/eshop-api-master | themes/default/views/eshop/partial-subcategories.html | HTML | mit | 514 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Phaser Class: LoaderParser</title>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/sunlight.default.css">
<link type="text/css" rel="stylesheet" href="styles/site.cerulean.css">
</head>
<body>
<div class="container-fluid">
<div class="navbar navbar-fixed-top navbar-inverse">
<div class="navbar-inner">
<a class="brand" href="index.html">Phaser</a>
<ul class="nav">
<li class="dropdown">
<a href="namespaces.list.html" class="dropdown-toggle" data-toggle="dropdown">Namespaces<b
class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-0">
<a href="Phaser.html">Phaser</a>
</li>
</ul>
</li>
<li class="dropdown">
<a href="classes.list.html" class="dropdown-toggle" data-toggle="dropdown">Classes<b
class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-1">
<a href="Phaser.Animation.html">Animation</a>
</li>
<li class="class-depth-1">
<a href="Phaser.AnimationManager.html">AnimationManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.AnimationParser.html">AnimationParser</a>
</li>
<li class="class-depth-1">
<a href="Phaser.ArrayList.html">ArrayList</a>
</li>
<li class="class-depth-1">
<a href="Phaser.AudioSprite.html">AudioSprite</a>
</li>
<li class="class-depth-1">
<a href="Phaser.BitmapData.html">BitmapData</a>
</li>
<li class="class-depth-1">
<a href="Phaser.BitmapText.html">BitmapText</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Button.html">Button</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Cache.html">Cache</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Camera.html">Camera</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Canvas.html">Canvas</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Circle.html">Circle</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Color.html">Color</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Device.html">Device</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Easing.html">Easing</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Back.html">Back</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Bounce.html">Bounce</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Circular.html">Circular</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Cubic.html">Cubic</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Elastic.html">Elastic</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Exponential.html">Exponential</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Linear.html">Linear</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Quadratic.html">Quadratic</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Quartic.html">Quartic</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Quintic.html">Quintic</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Sinusoidal.html">Sinusoidal</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Ellipse.html">Ellipse</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Events.html">Events</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Filter.html">Filter</a>
</li>
<li class="class-depth-1">
<a href="Phaser.FlexGrid.html">FlexGrid</a>
</li>
<li class="class-depth-1">
<a href="Phaser.FlexLayer.html">FlexLayer</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Frame.html">Frame</a>
</li>
<li class="class-depth-1">
<a href="Phaser.FrameData.html">FrameData</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Game.html">Game</a>
</li>
<li class="class-depth-1">
<a href="Phaser.GameObjectCreator.html">GameObjectCreator</a>
</li>
<li class="class-depth-1">
<a href="Phaser.GameObjectFactory.html">GameObjectFactory</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Gamepad.html">Gamepad</a>
</li>
<li class="class-depth-1">
<a href="Phaser.GamepadButton.html">GamepadButton</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Graphics.html">Graphics</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Group.html">Group</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Image.html">Image</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Input.html">Input</a>
</li>
<li class="class-depth-1">
<a href="Phaser.InputHandler.html">InputHandler</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Key.html">Key</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Keyboard.html">Keyboard</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Line.html">Line</a>
</li>
<li class="class-depth-1">
<a href="Phaser.LinkedList.html">LinkedList</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Loader.html">Loader</a>
</li>
<li class="class-depth-1">
<a href="Phaser.LoaderParser.html">LoaderParser</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Math.html">Math</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Mouse.html">Mouse</a>
</li>
<li class="class-depth-1">
<a href="Phaser.MSPointer.html">MSPointer</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Net.html">Net</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Particle.html">Particle</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Particles.html">Particles</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Particles.Arcade.html">Arcade</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Particles.Arcade.Emitter.html">Emitter</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Physics.html">Physics</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Physics.Arcade.html">Arcade</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.Arcade.Body.html">Body</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Physics.Ninja.html">Ninja</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.Ninja.AABB.html">AABB</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.Ninja.Body.html">Body</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.Ninja.Circle.html">Circle</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.Ninja.Tile.html">Tile</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Physics.P2.html">P2</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.Body.html">Body</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.BodyDebug.html">BodyDebug</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.CollisionGroup.html">CollisionGroup</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.ContactMaterial.html">ContactMaterial</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.DistanceConstraint.html">DistanceConstraint</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.FixtureList.html">FixtureList</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.GearConstraint.html">GearConstraint</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.InversePointProxy.html">InversePointProxy</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.LockConstraint.html">LockConstraint</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.Material.html">Material</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.PointProxy.html">PointProxy</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.PrismaticConstraint.html">PrismaticConstraint</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.RevoluteConstraint.html">RevoluteConstraint</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.RotationalSpring.html">RotationalSpring</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.Spring.html">Spring</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Plugin.html">Plugin</a>
</li>
<li class="class-depth-1">
<a href="Phaser.PluginManager.html">PluginManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Point.html">Point</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Pointer.html">Pointer</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Polygon.html">Polygon</a>
</li>
<li class="class-depth-1">
<a href="Phaser.QuadTree.html">QuadTree</a>
</li>
<li class="class-depth-1">
<a href="Phaser.RandomDataGenerator.html">RandomDataGenerator</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Rectangle.html">Rectangle</a>
</li>
<li class="class-depth-1">
<a href="Phaser.RenderTexture.html">RenderTexture</a>
</li>
<li class="class-depth-1">
<a href="Phaser.RequestAnimationFrame.html">RequestAnimationFrame</a>
</li>
<li class="class-depth-1">
<a href="Phaser.RetroFont.html">RetroFont</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Rope.html">Rope</a>
</li>
<li class="class-depth-1">
<a href="Phaser.ScaleManager.html">ScaleManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Signal.html">Signal</a>
</li>
<li class="class-depth-1">
<a href="Phaser.SignalBinding.html">SignalBinding</a>
</li>
<li class="class-depth-1">
<a href="Phaser.SinglePad.html">SinglePad</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Sound.html">Sound</a>
</li>
<li class="class-depth-1">
<a href="Phaser.SoundManager.html">SoundManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Sprite.html">Sprite</a>
</li>
<li class="class-depth-1">
<a href="Phaser.SpriteBatch.html">SpriteBatch</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Stage.html">Stage</a>
</li>
<li class="class-depth-1">
<a href="Phaser.State.html">State</a>
</li>
<li class="class-depth-1">
<a href="Phaser.StateManager.html">StateManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Text.html">Text</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Tile.html">Tile</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Tilemap.html">Tilemap</a>
</li>
<li class="class-depth-1">
<a href="Phaser.TilemapLayer.html">TilemapLayer</a>
</li>
<li class="class-depth-1">
<a href="Phaser.TilemapParser.html">TilemapParser</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Tileset.html">Tileset</a>
</li>
<li class="class-depth-1">
<a href="Phaser.TileSprite.html">TileSprite</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Time.html">Time</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Timer.html">Timer</a>
</li>
<li class="class-depth-1">
<a href="Phaser.TimerEvent.html">TimerEvent</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Touch.html">Touch</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Tween.html">Tween</a>
</li>
<li class="class-depth-1">
<a href="Phaser.TweenManager.html">TweenManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Utils.html">Utils</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Utils.Debug.html">Debug</a>
</li>
<li class="class-depth-1">
<a href="Phaser.World.html">World</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="row-fluid">
<div class="span8">
<div id="main">
<h1 class="page-title">Class: LoaderParser</h1>
<section>
<header>
<h2>
<span class="ancestors"><a href="Phaser.html">Phaser</a>.</span>
LoaderParser
</h2>
</header>
<article>
<div class="container-overview">
<dt>
<h4 class="name" id="LoaderParser"><span class="type-signature"></span>new LoaderParser<span class="signature">()</span><span class="type-signature"></span></h4>
</dt>
<dd>
<div class="description">
<p>Phaser.LoaderParser parses data objects from Phaser.Loader that need more preparation before they can be inserted into the Cache.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="LoaderParser.js.html">loader/LoaderParser.js</a>, <a href="LoaderParser.js.html#sunlight-1-line-3">line 3</a>
</li></ul></dd>
</dl>
</dd>
</div>
<h3 class="subsection-title">Methods</h3>
<dl>
<dt>
<h4 class="name" id="bitmapFont"><span class="type-signature"><static> </span>bitmapFont<span class="signature">(game, xml, cacheKey, <span class="optional">xSpacing</span>, <span class="optional">ySpacing</span>)</span><span class="type-signature"></span></h4>
</dt>
<dd>
<div class="description">
<p>Parse a Bitmap Font from an XML file.</p>
</div>
<h5>Parameters:</h5>
<table class="params table table-striped">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Argument</th>
<th>Default</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>game</code></td>
<td class="type">
<span class="param-type"><a href="Phaser.Game.html">Phaser.Game</a></span>
</td>
<td class="attributes">
</td>
<td class="default">
</td>
<td class="description last"><p>A reference to the current game.</p></td>
</tr>
<tr>
<td class="name"><code>xml</code></td>
<td class="type">
<span class="param-type">object</span>
</td>
<td class="attributes">
</td>
<td class="default">
</td>
<td class="description last"><p>XML data you want to parse.</p></td>
</tr>
<tr>
<td class="name"><code>cacheKey</code></td>
<td class="type">
<span class="param-type">string</span>
</td>
<td class="attributes">
</td>
<td class="default">
</td>
<td class="description last"><p>The key of the texture this font uses in the cache.</p></td>
</tr>
<tr>
<td class="name"><code>xSpacing</code></td>
<td class="type">
<span class="param-type">number</span>
</td>
<td class="attributes">
<optional><br>
</td>
<td class="default">
0
</td>
<td class="description last"><p>Additional horizontal spacing between the characters.</p></td>
</tr>
<tr>
<td class="name"><code>ySpacing</code></td>
<td class="type">
<span class="param-type">number</span>
</td>
<td class="attributes">
<optional><br>
</td>
<td class="default">
0
</td>
<td class="description last"><p>Additional vertical spacing between the characters.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="LoaderParser.js.html">loader/LoaderParser.js</a>, <a href="LoaderParser.js.html#sunlight-1-line-14">line 14</a>
</li></ul></dd>
</dl>
</dd>
</dl>
</article>
</section>
</div>
<div class="clearfix"></div>
<footer>
<span class="copyright">
Phaser Copyright © 2012-2014 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-dev</a>
on Wed Oct 22 2014 21:45:56 GMT+0100 (BST) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>
<div class="span3">
<div id="toc"></div>
</div>
<br clear="both">
</div>
</div>
<script src="scripts/sunlight.js"></script>
<script src="scripts/sunlight.javascript.js"></script>
<script src="scripts/sunlight-plugin.doclinks.js"></script>
<script src="scripts/sunlight-plugin.linenumbers.js"></script>
<script src="scripts/sunlight-plugin.menu.js"></script>
<script src="scripts/jquery.min.js"></script>
<script src="scripts/jquery.scrollTo.js"></script>
<script src="scripts/jquery.localScroll.js"></script>
<script src="scripts/bootstrap-dropdown.js"></script>
<script src="scripts/toc.js"></script>
<script> Sunlight.highlightAll({lineNumbers:true, showMenu: true, enableDoclinks :true}); </script>
<script>
$( function () {
$( "#toc" ).toc( {
anchorName : function(i, heading, prefix) {
return $(heading).attr("id") || ( prefix + i );
},
selectors : "h1,h2,h3,h4",
showAndHide : false,
scrollTo : 60
} );
$( "#toc>ul" ).addClass( "nav nav-pills nav-stacked" );
$( "#main span[id^='toc']" ).addClass( "toc-shim" );
} );
</script>
</body>
</html> | Terryjuice/ggwpop | docs/Phaser.LoaderParser.html | HTML | mit | 21,241 |
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Sidebar | Amaze UI Example</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="format-detection" content="telephone=no">
<meta name="renderer" content="webkit">
<meta http-equiv="Cache-Control" content="no-siteapp" />
<link rel="alternate icon" type="image/png" href="assets/i/favicon.png">
<link rel="stylesheet" href="assets/css/amazeui.min.css"/>
<style>
@media only screen and (min-width: 641px) {
.am-offcanvas {
display: block;
position: static;
background: none;
}
.am-offcanvas-bar {
position: static;
width: auto;
background: none;
-webkit-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.am-offcanvas-bar:after {
content: none;
}
}
@media only screen and (max-width: 640px) {
.am-offcanvas-bar .am-nav>li>a {
color:#ccc;
border-radius: 0;
border-top: 1px solid rgba(0,0,0,.3);
box-shadow: inset 0 1px 0 rgba(255,255,255,.05)
}
.am-offcanvas-bar .am-nav>li>a:hover {
background: #404040;
color: #fff
}
.am-offcanvas-bar .am-nav>li.am-nav-header {
color: #777;
background: #404040;
box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
text-shadow: 0 1px 0 rgba(0,0,0,.5);
border-top: 1px solid rgba(0,0,0,.3);
font-weight: 400;
font-size: 75%
}
.am-offcanvas-bar .am-nav>li.am-active>a {
background: #1a1a1a;
color: #fff;
box-shadow: inset 0 1px 3px rgba(0,0,0,.3)
}
.am-offcanvas-bar .am-nav>li+li {
margin-top: 0;
}
}
.my-head {
margin-top: 40px;
text-align: center;
}
.my-button {
position: fixed;
top: 0;
right: 0;
border-radius: 0;
}
.my-sidebar {
padding-right: 0;
border-right: 1px solid #eeeeee;
}
.my-footer {
border-top: 1px solid #eeeeee;
padding: 10px 0;
margin-top: 10px;
text-align: center;
}
</style>
</head>
<body>
<header class="am-g my-head">
<div class="am-u-sm-12 am-article">
<h1 class="am-article-title">永远的蝴蝶</h1>
<p class="am-article-meta">陈启佑(台湾)</p>
</div>
</header>
<hr class="am-article-divider"/>
<div class="am-g am-g-fixed">
<div class="am-u-md-9 am-u-md-push-3">
<div class="am-g">
<div class="am-u-sm-11 am-u-sm-centered">
<div class="am-cf am-article">
<div class="am-align-left">
<img src="http://s.cn.bing.net/az/hprichbg/rb/DongBaSymbols_ZH-CN10223363633_1366x768.jpg" alt="" width="240">
</div>
<div>
那时候刚好下着雨,柏油路面湿冷冷的,还闪烁着青、黄、红颜色的灯火。我们就在骑楼下躲雨,看绿色的邮筒孤独地站在街的对面。我白色风衣的大口袋里有一封要寄给南部的母亲的信。樱子说她可以撑伞过去帮我寄信。我默默点头。
</div>
<p>“谁叫我们只带来一把小伞哪。”她微笑着说,一面撑起伞,准备过马路帮我寄信。从她伞骨渗下来的小雨点,溅在我的眼镜玻璃上。</p><p>随着一阵拔尖的煞车声,樱子的一生轻轻地飞了起来。缓缓地,飘落在湿冷的街面上,好像一只夜晚的蝴蝶。</p>
<p>虽然是春天,好像已是秋深了。</p>
<div class="am-align-right"><img src="http://s.cn.bing.net/az/hprichbg/rb/DongBaSymbols_ZH-CN10223363633_1366x768.jpg" alt="" width="240"></div>
<p>她只是过马路去帮我寄信。这简单的行动,却要叫我终身难忘了。我缓缓睁开眼,茫然站在骑楼下,眼里裹着滚烫的泪水。世上所有的车子都停了下来,人潮涌向马路中央。没有人知道那躺在街面的,就是我的,蝴蝶。这时她只离我五公尺,竟是那么遥远。更大的雨点溅在我的眼镜上,溅到我的生命里来。</p>
<p>为什么呢?只带一把雨伞?</p>
<p>然而我又看到樱子穿着白色的风衣,撑着伞,静静地过马路了。她是要帮我寄信的。那,那是一封写给南部母亲的信。我茫然站在骑楼下,我又看到永远的樱子走到街心。其实雨下得并不大,却是一生一世中最大的一场雨。而那封信是这样写的,年轻的樱子知不知道呢?</p>
<blockquote>妈:我打算在下个月和樱子结婚。</blockquote>
<hr class="am-article-divider">
<h2>作者简介</h2>
<p>《永远的蝴蝶》作者陈启佑,笔名渡也、江山之助,台湾省嘉义市人,中国文化大学中国文学博士,曾任教于嘉义农专、台湾教育学院。</p>
<hr class="am-article-divider">
<h2>文章赏析</h2>
<h3>赏析一</h3>
<p>《永远的蝴蝶》就像一支低沉而哀怨的悲曲,幽幽道来,委婉动人。读罢此文,脑海中一直浮现着这样一个场景:阴雨中,樱子如蝴蝶般轻轻飞了起来,又缓缓落到了街面上。雨是冰凉的,街面是湿冷的,蝴蝶的飘飞是凄美的,又是令人伤痛的。</p>
<h3>赏析二</h3>
<p>文章有几点尤值得我们好好品味。一是作品以“雨”为线索,贯穿全文的始终。悲剧因“雨”而生,小说开篇写“雨”,正是对不幸和灾难起因的一个交代。樱子遭遇不幸后,又写“更大的雨点溅在我的眼镜上,溅到我的生命里来”,“成为一生一世的一场雨”。显然,“雨”又成为泪水和痛苦的象征。同时,以“雨”贯穿全文,也造成笼罩全文的阴冷凄凉的氛围。二是作家善于反复运用细节。如三次写到“站在骑楼下”,以此使“我”的情感思绪变化的脉络和层次更加清楚明显;两次写到樱子“穿着白色的风衣,撑着伞”,这是对“我”的心理刻画,突出了樱子美丽清纯的形象,也表达了“我”对樱子永不磨灭的爱。三是高超的谋篇布局技巧。直到作品的结尾处才告诉读者信的内容,这样构思,无疑加重了作品的悲剧色彩,让人哀痛欲绝,心不堪受。正因为作家善于谋篇布局,匠心独运,作品才有了很强的感染力。</p>
<p><small>朗读并背诵全文</small></p>
</div>
<hr/>
<ul class="am-comments-list">
<li class="am-comment">
<a href="#link-to-user-home">
<img src="http://amui.qiniudn.com/bw-2014-06-19.jpg?imageView/1/w/96/h/96" alt="" class="am-comment-avatar" width="48" height="48">
</a>
<div class="am-comment-main">
<header class="am-comment-hd">
<div class="am-comment-meta">
<a href="#link-to-user" class="am-comment-author">某人</a> 评论于 <time datetime="2013-07-27T04:54:29-07:00" title="2013年7月27日 下午7:54 格林尼治标准时间+0800">2014-7-12 15:30</time>
</div>
</header>
<div class="am-comment-bd">
<p>《永远的蝴蝶》一文,还吸收散文特长,多采用第一人称,淡化情节,体现一种思想寄托和艺术追求。</p>
</div>
</div>
</li>
<li class="am-comment">
<a href="#link-to-user-home">
<img src="http://www.gravatar.com/avatar/1ecedeede84a44f371b9d8d656bb4265?d=mm&s=96" alt="" class="am-comment-avatar" width="48" height="48">
</a>
<div class="am-comment-main">
<header class="am-comment-hd">
<div class="am-comment-meta">
<a href="#link-to-user" class="am-comment-author">路人甲</a> 评论于 <time datetime="2013-07-27T04:54:29-07:00" title="2013年7月27日 下午7:54 格林尼治标准时间+0800">2014-7-13 0:03</time>
</div>
</header>
<div class="am-comment-bd">
<p>感觉仿佛是自身的遭遇一样,催人泪下</p>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
<div class="am-u-md-3 am-u-md-pull-9 my-sidebar">
<div class="am-offcanvas" id="sidebar">
<div class="am-offcanvas-bar">
<ul class="am-nav">
<li><a href="#">永远的蝴蝶</a></li>
<li class="am-nav-header">目录</li>
<li><a href="#">原文</a></li>
<li><a href="#">作者简介</a></li>
<li><a href="#">文章赏析</a></li>
<li><a href="#">读者评论</a></li>
</ul>
</div>
</div>
</div>
<a href="#sidebar" class="am-btn am-btn-sm am-btn-success am-icon-bars am-show-sm-only my-button" data-am-offcanvas><span class="am-sr-only">侧栏导航</span></a>
</div>
<footer class="my-footer">
<p>sidebar template<br><small>© Copyright XXX. by the AmazeUI Team.</small></p>
</footer>
<!--[if lt IE 9]>
<script src="http://libs.baidu.com/jquery/1.11.1/jquery.min.js"></script>
<script src="http://cdn.staticfile.org/modernizr/2.8.3/modernizr.js"></script>
<script src="assets/js/polyfill/rem.min.js"></script>
<script src="assets/js/polyfill/respond.min.js"></script>
<script src="assets/js/amazeui.legacy.js"></script>
<![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/amazeui.min.js"></script>
<!--<![endif]-->
</body>
</html> | rainyear/new-blog-source | themes/prose/sidebar.html | HTML | mit | 9,873 |
<!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>
[page:Geometry] →
<h1>形状几何体([name])</h1>
<p class="desc">从一个或多个路径形状中创建一个单面多边形几何体。</p>
<iframe id="scene" src="scenes/geometry-browser.html#ShapeGeometry"></iframe>
<script>
// iOS iframe auto-resize workaround
if ( /(iPad|iPhone|iPod)/g.test( navigator.userAgent ) ) {
var scene = document.getElementById( 'scene' );
scene.style.width = getComputedStyle( scene ).width;
scene.style.height = getComputedStyle( scene ).height;
scene.setAttribute( 'scrolling', 'no' );
}
</script>
<h2>代码示例</h2>
<code>
var x = 0, y = 0;
var heartShape = new THREE.Shape();
heartShape.moveTo( x + 5, y + 5 );
heartShape.bezierCurveTo( x + 5, y + 5, x + 4, y, x, y );
heartShape.bezierCurveTo( x - 6, y, x - 6, y + 7,x - 6, y + 7 );
heartShape.bezierCurveTo( x - 6, y + 11, x - 3, y + 15.4, x + 5, y + 19 );
heartShape.bezierCurveTo( x + 12, y + 15.4, x + 16, y + 11, x + 16, y + 7 );
heartShape.bezierCurveTo( x + 16, y + 7, x + 16, y, x + 10, y );
heartShape.bezierCurveTo( x + 7, y, x + 5, y + 5, x + 5, y + 5 );
var geometry = new THREE.ShapeGeometry( heartShape );
var material = new THREE.MeshBasicMaterial( { color: 0x00ff00 } );
var mesh = new THREE.Mesh( geometry, material ) ;
scene.add( mesh );
</code>
<h2>构造器</h2>
<h3>[name]([param:Array shapes], [param:Integer curveSegments])</h3>
<p>
shapes — 一个单独的[page:Shape shape],或者一个包含形状的[page:Array]。<br />
curveSegments - [page:Integer] - 每一个形状的分段数,默认值为12。
</p>
<h2>属性</h2>
<p>共有属性请参见其基类[page:Geometry]。</p>
<h3>[property:Object parameters]</h3>
<p>
一个包含着构造函数中每个参数的对象。在对象实例化之后,对该属性的任何修改都不会改变这个几何体。
</p>
<h2>方法(Methods)</h2>
<p>共有方法请参见其基类[page:Geometry]。</p>
<h2>源代码</h2>
<p>
[link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
</p>
</body>
</html>
| easz/rt_geometry | playground/js/three.js-r115/docs/api/zh/geometries/ShapeGeometry.html | HTML | mit | 2,377 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html><meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>std_result<T, E = std::error_code, NoValuePolicy = policy::default_policy<T, E, void>> - Boost.Outcome documentation</title>
<link rel="stylesheet" href="../../css/boost.css" type="text/css">
<meta name="generator" content="Hugo 0.52 with Boostdoc theme">
<meta name="viewport" content="width=device-width,initial-scale=1.0"/>
<link rel="icon" href="../../images/favicon.ico" type="image/ico"/>
<body><div class="spirit-nav">
<a accesskey="p" href="../../reference/aliases/std_outcome.html"><img src="../../images/prev.png" alt="Prev"></a>
<a accesskey="u" href="../../reference/aliases.html"><img src="../../images/up.png" alt="Up"></a>
<a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="../../reference/aliases/std_unchecked.html"><img src="../../images/next.png" alt="Next"></a></div><div id="content">
<div class="titlepage"><div><div><h1 style="clear: both"><code>std_result<T, E = std::error_code, NoValuePolicy = policy::default_policy<T, E, void>></code></h1></div></div></div>
<p>A type alias to a <a href="../../reference/types/basic_result.html" class="api-reference"><code>basic_result<T, E, NoValuePolicy></code></a>
configured with
<a href="https://en.cppreference.com/w/cpp/error/error_code" class="api-reference" target="_blank"><i class="fa fa-book" aria-hidden="true"></i> <code>std::error_code</code></a>
and <code>policy::</code><a href="../../reference/aliases/default_policy.html" class="api-reference"><code>default_policy</code></a>
.</p>
<p>This type alias always references the <code>std</code> edition of things, unlike <a href="../../reference/aliases/result.html" class="api-reference"><code>result<T, E = varies, NoValuePolicy = policy::default_policy<T, E, void>></code></a>
which references either this alias or <a href="../../reference/aliases/boost_result.html" class="api-reference"><code>boost_result<T, E = boost::system::error_code, NoValuePolicy = policy::default_policy<T, E, void>></code></a>
.</p>
<p><em>Namespace</em>: <code>BOOST_OUTCOME_V2_NAMESPACE</code></p>
<p><em>Header</em>: <code><boost/outcome/std_result.hpp></code></p>
</div><p><small>Last revised: January 24, 2019 at 01:15:16 UTC</small></p>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="../../reference/aliases/std_outcome.html"><img src="../../images/prev.png" alt="Prev"></a>
<a accesskey="u" href="../../reference/aliases.html"><img src="../../images/up.png" alt="Up"></a>
<a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="../../reference/aliases/std_unchecked.html"><img src="../../images/next.png" alt="Next"></a></div></body>
</html>
| davehorton/drachtio-server | deps/boost_1_77_0/libs/outcome/doc/html/reference/aliases/std_result.html | HTML | mit | 2,961 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 1.0 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="../includes/main.css" type="text/css">
<link rel="shortcut icon" href="../favicon.ico" type="image/x-icon">
<title>Apache CloudStack | The Power Behind Your Cloud</title>
</head>
<body>
<div id="insidetopbg">
<div id="inside_wrapper">
<div class="uppermenu_panel">
<div class="uppermenu_box"></div>
</div>
<div id="main_master">
<div id="inside_header">
<div class="header_top">
<a class="cloud_logo" href="http://cloudstack.org"></a>
<div class="mainemenu_panel"></div>
</div>
</div>
<div id="main_content">
<div class="inside_apileftpanel">
<div class="inside_contentpanel" style="width:930px;">
<div class="api_titlebox">
<div class="api_titlebox_left">
<span>
Apache CloudStack 4.14.1.0-SNAPSHOT Root Admin API Reference
</span>
<p></p>
<h1>createLoadBalancer</h1>
<p>Creates a load balancer</p>
</div>
<div class="api_titlebox_right">
<a class="api_backbutton" href="../index.html"></a>
</div>
</div>
<div class="api_tablepanel">
<h2>Request parameters</h2>
<table class="apitable">
<tr class="hed">
<td style="width:200px;"><strong>Parameter Name</strong></td><td style="width:500px;">Description</td><td style="width:180px;">Required</td>
</tr>
<tr>
<td style="width:200px;"><strong>algorithm</strong></td><td style="width:500px;"><strong>load balancer algorithm (source, roundrobin, leastconn)</strong></td><td style="width:180px;"><strong>true</strong></td>
</tr>
<tr>
<td style="width:200px;"><strong>instanceport</strong></td><td style="width:500px;"><strong>the TCP port of the virtual machine where the network traffic will be load balanced to</strong></td><td style="width:180px;"><strong>true</strong></td>
</tr>
<tr>
<td style="width:200px;"><strong>name</strong></td><td style="width:500px;"><strong>name of the load balancer</strong></td><td style="width:180px;"><strong>true</strong></td>
</tr>
<tr>
<td style="width:200px;"><strong>networkid</strong></td><td style="width:500px;"><strong>The guest network the load balancer will be created for</strong></td><td style="width:180px;"><strong>true</strong></td>
</tr>
<tr>
<td style="width:200px;"><strong>scheme</strong></td><td style="width:500px;"><strong>the load balancer scheme. Supported value in this release is Internal</strong></td><td style="width:180px;"><strong>true</strong></td>
</tr>
<tr>
<td style="width:200px;"><strong>sourceipaddressnetworkid</strong></td><td style="width:500px;"><strong>the network id of the source ip address</strong></td><td style="width:180px;"><strong>true</strong></td>
</tr>
<tr>
<td style="width:200px;"><strong>sourceport</strong></td><td style="width:500px;"><strong>the source port the network traffic will be load balanced from</strong></td><td style="width:180px;"><strong>true</strong></td>
</tr>
<tr>
<td style="width:200px;"><i>description</i></td><td style="width:500px;"><i>the description of the load balancer</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>fordisplay</i></td><td style="width:500px;"><i>an optional field, whether to the display the rule to the end user or not</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>sourceipaddress</i></td><td style="width:500px;"><i>the source IP address the network traffic will be load balanced from</i></td><td style="width:180px;"><i>false</i></td>
</tr>
</table>
</div>
<div class="api_tablepanel">
<h2>Response Tags</h2>
<table class="apitable">
<tr class="hed">
<td style="width:200px;"><strong>Response Name</strong></td><td style="width:500px;">Description</td>
</tr>
<tr>
<td style="width:200px;"><strong>id</strong></td><td style="width:500px;">the Load Balancer ID</td>
</tr>
<tr>
<td style="width:200px;"><strong>account</strong></td><td style="width:500px;">the account of the Load Balancer</td>
</tr>
<tr>
<td style="width:200px;"><strong>algorithm</strong></td><td style="width:500px;">the load balancer algorithm (source, roundrobin, leastconn)</td>
</tr>
<tr>
<td style="width:200px;"><strong>description</strong></td><td style="width:500px;">the description of the Load Balancer</td>
</tr>
<tr>
<td style="width:200px;"><strong>domain</strong></td><td style="width:500px;">the domain of the Load Balancer</td>
</tr>
<tr>
<td style="width:200px;"><strong>domainid</strong></td><td style="width:500px;">the domain ID of the Load Balancer</td>
</tr>
<tr>
<td style="width:200px;"><strong>fordisplay</strong></td><td style="width:500px;">is rule for display to the regular user</td>
</tr>
<tr>
<td style="width:200px;"><strong>name</strong></td><td style="width:500px;">the name of the Load Balancer</td>
</tr>
<tr>
<td style="width:200px;"><strong>networkid</strong></td><td style="width:500px;">Load Balancer network id</td>
</tr>
<tr>
<td style="width:200px;"><strong>project</strong></td><td style="width:500px;">the project name of the Load Balancer</td>
</tr>
<tr>
<td style="width:200px;"><strong>projectid</strong></td><td style="width:500px;">the project id of the Load Balancer</td>
</tr>
<tr>
<td style="width:200px;"><strong>sourceipaddress</strong></td><td style="width:500px;">Load Balancer source ip</td>
</tr>
<tr>
<td style="width:200px;"><strong>sourceipaddressnetworkid</strong></td><td style="width:500px;">Load Balancer source ip network id</td>
</tr>
<tr>
<td style="width:200px;"><strong>loadbalancerinstance(*)</strong></td><td style="width:500px;">the list of instances associated with the Load Balancer</td>
<tr>
<td style="width:180px; padding-left:25px;"><strong>id</strong></td><td style="width:500px;">the instance ID</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>ipaddress</strong></td><td style="width:500px;">the ip address of the instance</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>name</strong></td><td style="width:500px;">the name of the instance</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>state</strong></td><td style="width:500px;">the state of the instance</td>
</tr>
</tr>
<tr>
<td style="width:200px;"><strong>loadbalancerrule(*)</strong></td><td style="width:500px;">the list of rules associated with the Load Balancer</td>
<tr>
<td style="width:180px; padding-left:25px;"><strong>instanceport</strong></td><td style="width:500px;">instance port of the load balancer rule</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>sourceport</strong></td><td style="width:500px;">source port of the load balancer rule</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>state</strong></td><td style="width:500px;">the state of the load balancer rule</td>
</tr>
</tr>
<tr>
<td style="width:200px;"><strong>tags(*)</strong></td><td style="width:500px;">the list of resource tags associated with the Load Balancer</td>
<tr>
<td style="width:180px; padding-left:25px;"><strong>account</strong></td><td style="width:500px;">the account associated with the tag</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>customer</strong></td><td style="width:500px;">customer associated with the tag</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>domain</strong></td><td style="width:500px;">the domain associated with the tag</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>domainid</strong></td><td style="width:500px;">the ID of the domain associated with the tag</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>key</strong></td><td style="width:500px;">tag key name</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>project</strong></td><td style="width:500px;">the project name where tag belongs to</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>projectid</strong></td><td style="width:500px;">the project id the tag belongs to</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>resourceid</strong></td><td style="width:500px;">id of the resource</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>resourcetype</strong></td><td style="width:500px;">resource type</td>
</tr>
<tr>
<td style="width:180px; padding-left:25px;"><strong>value</strong></td><td style="width:500px;">tag value</td>
</tr>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<div id="comments_thread">
<script type="text/javascript" src="https://comments.apache.org/show_comments.lua?site=test" async="true"></script>
<noscript>
<iframe width="930" height="500" src="https://comments.apache.org/iframe.lua?site=test&page=4.2.0/rootadmin"></iframe>
</noscript>
</div>
<div id="footer_mainmaster">
<p>
Copyright © 2015 The Apache Software Foundation, Licensed under the
<a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0.</a>
<br>
Apache, CloudStack, Apache CloudStack, the Apache CloudStack logo, the CloudMonkey logo and the Apache feather logo are trademarks of The Apache Software Foundation.
</p>
</div>
</div>
</div>
</div>
</body>
</html>
| apache/cloudstack-www | source/api/apidocs-4.14/apis/createLoadBalancer.html | HTML | apache-2.0 | 16,597 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<title>Uses of Class org.deidentifier.arx.io.ImportConfigurationFile (ARX GUI Documentation)</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 org.deidentifier.arx.io.ImportConfigurationFile (ARX GUI Documentation)";
}
//-->
</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/deidentifier/arx/io/ImportConfigurationFile.html" title="class in org.deidentifier.arx.io">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/deidentifier/arx/io/class-use/ImportConfigurationFile.html" target="_top">Frames</a></li>
<li><a href="ImportConfigurationFile.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.deidentifier.arx.io.ImportConfigurationFile" class="title">Uses of Class<br>org.deidentifier.arx.io.ImportConfigurationFile</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/deidentifier/arx/io/ImportConfigurationFile.html" title="class in org.deidentifier.arx.io">ImportConfigurationFile</a></span><span class="tabEnd"> </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.deidentifier.arx.io">org.deidentifier.arx.io</a></td>
<td class="colLast">
<div class="block">This package provides basic input/output functionality</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.deidentifier.arx.io">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../org/deidentifier/arx/io/ImportConfigurationFile.html" title="class in org.deidentifier.arx.io">ImportConfigurationFile</a> in <a href="../../../../../org/deidentifier/arx/io/package-summary.html">org.deidentifier.arx.io</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation">
<caption><span>Subclasses of <a href="../../../../../org/deidentifier/arx/io/ImportConfigurationFile.html" title="class in org.deidentifier.arx.io">ImportConfigurationFile</a> in <a href="../../../../../org/deidentifier/arx/io/package-summary.html">org.deidentifier.arx.io</a></span><span class="tabEnd"> </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 </code></td>
<td class="colLast"><code><strong><a href="../../../../../org/deidentifier/arx/io/ImportConfigurationCSV.html" title="class in org.deidentifier.arx.io">ImportConfigurationCSV</a></strong></code>
<div class="block">Configuration describing a CSV file.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../../org/deidentifier/arx/io/ImportConfigurationExcel.html" title="class in org.deidentifier.arx.io">ImportConfigurationExcel</a></strong></code>
<div class="block">Configuration describing an Excel file
This is used to describe Excel files.</div>
</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/deidentifier/arx/io/ImportConfigurationFile.html" title="class in org.deidentifier.arx.io">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/deidentifier/arx/io/class-use/ImportConfigurationFile.html" target="_top">Frames</a></li>
<li><a href="ImportConfigurationFile.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>
| bitraten/arx | doc/gui/org/deidentifier/arx/io/class-use/ImportConfigurationFile.html | HTML | apache-2.0 | 6,752 |
<include file='public:header'/>
<div class="mainBt">
<ul>
<li class="li1">设置</li>
<li class="li2">区域设置</li>
<li class="li2 li3">小区管理</li>
</ul>
</div>
<div class="main-jsgl main-sc">
<div class="jsglNr">
<div class="selectNr" style="margin-top: 0px; border-top:none;">
<div class="left">
<{:BA('community/create','','添加小区')}>
</div>
<div class="right">
<form class="search_form" method="post" action="<{:U('community/index')}>">
<div class="seleHidden" id="seleHidden">
<span>小区名称:</span>
<input type="text" name="keyword" value="<{$keyword}>" class="inptText" /><input type="submit" value=" 搜索" class="inptButton" />
</div>
</form>
<a href="javascript:void(0);" class="searchG">高级搜索</a>
<div class="clear"></div>
</div>
<div class="clear"></div>
</div>
<form method="post" action="<{:U('community/index')}>">
<div class="selectNr selectNr2">
<div class="left">
<div class="seleK">
<label>
<span>物业管理员</span>
<input type="hidden" id="user_id" name="user_id" value="<{$user_id|default=''}>" />
<input class="text" type="text" name="nickname" id="nickname" value="<{$nickname}>" />
<a mini="select" w="800" h="600" href="<{:U('user/select')}>" class="sumit">选择用户</a>
</label>
<label>
<span>关键字:</span>
<input type="text" name="keyword" value="<{$keyword}>" class="inptText" />
</label>
</div>
</div>
<div class="right">
<input type="submit" value=" 搜索" class="inptButton" />
</div>
</form>
<div class="clear"></div>
</div>
<form target="baocms_frm" method="post">
<div class="tableBox">
<table bordercolor="#e1e6eb" cellspacing="0" width="100%" border="1px" style=" border-collapse: collapse; margin:0px; vertical-align:middle; background-color:#FFF;" >
<tr>
<td><input type="checkbox" class="checkAll" rel="community_id" /></td>
<td>ID</td>
<td>物业管理员</td>
<td>小区名称</td>
<td>所在区域</td>
<td style="background-color: #F8F8F8;">所属村镇</td>
<td>物业公司</td>
<td>排序</td>
<td>操作</td>
</tr>
<foreach name="list" item="var">
<tr>
<td><input class="child_community_id" type="checkbox" name="community_id[]" value="<{$var.community_id}>" /></td>
<td><{$var.community_id}></td>
<td><{$users[$var['user_id']]['nickname']}></td>
<td><{$var.name}></td>
<td><{$var.area_name}></td>
<td style="background-color: #F8F8F8;"><{$village[$var['village_id']]['name']}></td>
<td><{$var.property}></td>
<td><{$var.orderby}></td>
<td>
<{:BA('community/edit',array("community_id"=>$var["community_id"]),'编辑','','remberBtn')}>
<{:BA('community/delete',array("community_id"=>$var["community_id"]),'删除','act','remberBtn')}>
</td>
</tr>
</foreach>
</table>
<{$page}>
</div>
<div class="selectNr" style="margin-bottom: 0px; border-bottom: none;">
<div class="left">
<{:BA('community/delete','','批量删除','list',' a2')}>
</div>
</div>
</form>
</div>
</div>
<include file='public:footer'/>
| ksyydream/api_llx | Baocms/Tpl/community/index.html | HTML | apache-2.0 | 4,313 |
<!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" />
<title>Generating Query Results : CodeIgniter User Guide</title>
<style type='text/css' media='all'>@import url('../userguide.css');</style>
<link rel='stylesheet' type='text/css' media='all' href='../userguide.css' />
<script type="text/javascript" src="../nav/nav.js"></script>
<script type="text/javascript" src="../nav/prototype.lite.js"></script>
<script type="text/javascript" src="../nav/moo.fx.js"></script>
<script type="text/javascript" src="../nav/user_guide_menu.js"></script>
<meta http-equiv='expires' content='-1' />
<meta http-equiv= 'pragma' content='no-cache' />
<meta name='robots' content='all' />
<meta name='author' content='ExpressionEngine Dev Team' />
<meta name='description' content='CodeIgniter User Guide' />
</head>
<body>
<!-- START NAVIGATION -->
<div id="nav"><div id="nav_inner"><script type="text/javascript">create_menu('../');</script></div></div>
<div id="nav2"><a name="top"></a><a href="javascript:void(0);" onclick="myHeight.toggle();"><img src="../images/nav_toggle_darker.jpg" width="154" height="43" border="0" title="Toggle Table of Contents" alt="Toggle Table of Contents" /></a></div>
<div id="masthead">
<table cellpadding="0" cellspacing="0" border="0" style="width:100%">
<tr>
<td><h1>CodeIgniter User Guide Version 1.7.3</h1></td>
<td id="breadcrumb_right"><a href="../toc.html">Table of Contents Page</a></td>
</tr>
</table>
</div>
<!-- END NAVIGATION -->
<!-- START BREADCRUMB -->
<table cellpadding="0" cellspacing="0" border="0" style="width:100%">
<tr>
<td id="breadcrumb">
<a href="http://codeigniter.com/">CodeIgniter Home</a> ›
<a href="../index.html">User Guide Home</a> ›
<a href="index.html">Database Library</a> ›
Query Results
</td>
<td id="searchbox"><form method="get" action="http://www.google.com/search"><input type="hidden" name="as_sitesearch" id="as_sitesearch" value="codeigniter.com/user_guide/" />Search User Guide <input type="text" class="input" style="width:200px;" name="q" id="q" size="31" maxlength="255" value="" /> <input type="submit" class="submit" name="sa" value="Go" /></form></td>
</tr>
</table>
<!-- END BREADCRUMB -->
<br clear="all" />
<!-- START CONTENT -->
<div id="content">
<h1>Generating Query Results</h1>
<p>There are several ways to generate query results:</p>
<h2>result()</h2>
<p>This function returns the query result as an array of <strong>objects</strong>, or <strong>an empty array</strong> on failure.
Typically you'll use this in a foreach loop, like this:</p>
<code>
$query = $this->db->query("YOUR QUERY");<br />
<br />
foreach ($query->result() as $row)<br />
{<br />
echo $row->title;<br />
echo $row->name;<br />
echo $row->body;<br />
}</code>
<p>The above <dfn>function</dfn> is an alias of <dfn>result_object()</dfn>.</p>
<p>If you run queries that might <strong>not</strong> produce a result, you are encouraged to test the result first:</p>
<code>
$query = $this->db->query("YOUR QUERY");<br />
<br />
if ($query->num_rows() > 0)<br />
{<br />
foreach ($query->result() as $row)<br />
{<br />
echo $row->title;<br />
echo $row->name;<br />
echo $row->body;<br />
}<br />
}
</code>
<h2>result_array()</h2>
<p>This function returns the query result as a pure array, or an empty array when no result is produced. Typically you'll use this in a foreach loop, like this:</p>
<code>
$query = $this->db->query("YOUR QUERY");<br />
<br />
foreach ($query->result_array() as $row)<br />
{<br />
echo $row['title'];<br />
echo $row['name'];<br />
echo $row['body'];<br />
}</code>
<h2>row()</h2>
<p>This function returns a single result row. If your query has more than one row, it returns only the first row.
The result is returned as an <strong>object</strong>. Here's a usage example:</p>
<code>
$query = $this->db->query("YOUR QUERY");<br />
<br />
if ($query->num_rows() > 0)<br />
{<br />
$row = $query->row();
<br /><br />
echo $row->title;<br />
echo $row->name;<br />
echo $row->body;<br />
}
</code>
<p>If you want a specific row returned you can submit the row number as a digit in the first parameter:</p>
<code>$row = $query->row(<dfn>5</dfn>);</code>
<h2>row_array()</h2>
<p>Identical to the above <var>row()</var> function, except it returns an array. Example:</p>
<code>
$query = $this->db->query("YOUR QUERY");<br />
<br />
if ($query->num_rows() > 0)<br />
{<br />
$row = $query->row_array();
<br /><br />
echo $row['title'];<br />
echo $row['name'];<br />
echo $row['body'];<br />
}
</code>
<p>If you want a specific row returned you can submit the row number as a digit in the first parameter:</p>
<code>$row = $query->row_array(<dfn>5</dfn>);</code>
<p>In addition, you can walk forward/backwards/first/last through your results using these variations:</p>
<p>
<strong>$row = $query->first_row()</strong><br />
<strong>$row = $query->last_row()</strong><br />
<strong>$row = $query->next_row()</strong><br />
<strong>$row = $query->previous_row()</strong>
</p>
<p>By default they return an object unless you put the word "array" in the parameter:</p>
<p>
<strong>$row = $query->first_row('array')</strong><br />
<strong>$row = $query->last_row('array')</strong><br />
<strong>$row = $query->next_row('array')</strong><br />
<strong>$row = $query->previous_row('array')</strong>
</p>
<h1>Result Helper Functions</h1>
<h2>$query->num_rows()</h2>
<p>The number of rows returned by the query. Note: In this example, <dfn>$query</dfn> is the variable that the query result object is assigned to:</p>
<code>$query = $this->db->query('SELECT * FROM my_table');<br /><br />
echo $query->num_rows();
</code>
<h2>$query->num_fields()</h2>
<p>The number of FIELDS (columns) returned by the query. Make sure to call the function using your query result object:</p>
<code>$query = $this->db->query('SELECT * FROM my_table');<br /><br />
echo $query->num_fields();
</code>
<h2>$query->free_result()</h2>
<p>It frees the memory associated with the result and deletes the result resource ID. Normally PHP frees its memory automatically at the end of script
execution. However, if you are running a lot of queries in a particular script you might want to free the result after each query result has been
generated in order to cut down on memory consumptions. Example:
</p>
<code>$query = $this->db->query('SELECT title FROM my_table');<br /><br />
foreach ($query->result() as $row)<br />
{<br />
echo $row->title;<br />
}<br />
$query->free_result(); // The $query result object will no longer be available<br />
<br />
$query2 = $this->db->query('SELECT name FROM some_table');<br /><br />
$row = $query2->row();<br />
echo $row->name;<br />
$query2->free_result(); // The $query2 result object will no longer be available
</code>
</div>
<!-- END CONTENT -->
<div id="footer">
<p>
Previous Topic: <a href="queries.html">Queries</a>
·
<a href="#top">Top of Page</a> ·
<a href="../index.html">User Guide Home</a> ·
Next Topic: <a href="helpers.html">Query Helper Functions</a>
</p>
<p><a href="http://codeigniter.com">CodeIgniter</a> · Copyright © 2006-2010 · <a href="http://ellislab.com/">Ellislab, Inc.</a></p>
</div>
</body>
</html> | prashants/webzash-v1-defunct | user_guide/database/results.html | HTML | apache-2.0 | 8,154 |
<ion-view title="Profile">
<ion-nav-buttons side="left">
<button menu-toggle="left" class="button button-icon icon ion-navicon"></button>
</ion-nav-buttons>
<ion-nav-buttons side="right">
<button menu-toggle="right" class="button button-icon icon ion-ios7-bell"><span ng-hide="notification.length == 0" class="badge badge-balanced icon-badge">{{notificationData.length}}</span>
</button>
</ion-nav-buttons>
<ion-tabs class="tabs-striped tabs-background-balanced tabs-color-light">
<ion-tab title="You" icon="sp-user override-sptabs">
<ion-header-bar class="bar-positive"></ion-header-bar>
<ion-content class="has-header">
<div class="list card">
<div class="item item-avatar">
<img ng-src="{{currentUser.picture}}">
<h2>{{currentUser.displayName}}</h2>
<p><span ng-show="currentUser.age">{{currentUser.age}} years old</span><span ng-hide="currentUser.age">You haven't set your birthday yet</span>
</p>
</div>
<div class="item item-body">
<img class="full-image rounded" ng-src="{{currentUser.picture}}">
<p>
<span ng-show="currentUser.hobby">{{currentUser.hobby}}</span>
<span ng-hide="currentUser.hobby">Please tell us something about yourself</span>
</p>
<p><span>Last seen {{currentUser.lastSeenTime | date:'dd.MM.yyyy - HH:mm'}}</span>
</p>
<p>
<span>Rating: {{currentUser.rating | number :0}} <i class="icon ion-star"></i></span>
<br>
<span>Number of huggs: {{currentUser.numberHuggs}}</span>
</p>
</div>
</div>
</ion-content>
</ion-tab>
<ion-tab title="Settings" icon="ion-gear-a">
<ion-header-bar class="bar-positive"></ion-header-bar>
<ion-content class="has-header">
<div class="card list">
<label class="item item-input item-stacked-label">
<i class="icon ion-person placeholder-icon"></i>
<span class="input-label">Your Name</span>
<input type="text" ng-model="currentUser.displayName" required placeholder="{{currentUser.displayName}}">
</label>
<label class="item item-input item-stacked-label">
<i class="icon ion-email placeholder-icon"></i>
<span class="input-label">Email Address</span>
<input type="email" ng-model="currentUser.email" placeholder="{{currentUser.email}}">
</label>
<label class="item item-input item-stacked-label">
<i class="icon ion-happy placeholder-icon"></i>
<span class="input-label">Tell us something about yourself</span>
<input type="text" ng-model="currentUser.hobby" placeholder="{{currentUser.hobby}}">
</label>
</div>
<div class="card list">
<div class="item item-image">
<img ng-src="{{currentUser.picture}}">
</div>
<a class="item item-icon-left assertive" ng-click="takeNewPicture()">
<i class="icon ion-camera"></i> Take a new picture
</a>
</div>
<button ng-hide="currentUser.facebookID" ng-click="connect('toFacebook')" class="button button-block button-facebook icon-left ion-social-facebook">Conncect account with Facebook</button>
<button ng-hide="currentUser.googleID" ng-click="connect('toGoogle')" class="button button-block button-gplus icon-left ion-social-googleplus">Conncect account with Google</button>
</ion-content>
</ion-tab>
<ion-tab title="Blocked users" icon="sp-blocked override-sptabs">
<ion-header-bar class="bar-positive"></ion-header-bar>
<ion-content class="has-header has-footer">
<ion-list>
<ion-item ng-repeat="user in blockedUsers" item="item" class="item-thumbnail-left">
<img ng-src="{{user.picture}}">
<h2>{{user.displayName}}</h2>
<ion-option-button class="button-balanced icon ion-checkmark override-icon-position" ng-click="unblockUser(user.profileID)"></ion-option-button>
</ion-item>
</ion-list>
<div class="card" ng-hide="noBlockedUsers">
<div class="item item-text-wrap">
Sorry, no blocked users...
</div>
</div>
</ion-content>
</ion-tab>
</ion-tabs>
</ion-view>
| ivapie/huggr | huggr/www/templates/profile.html | HTML | apache-2.0 | 5,185 |
<!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="null" lang="null">
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /><title>TestHttpParams xref</title>
<link type="text/css" rel="stylesheet" href="../../../../../stylesheet.css" />
</head>
<body>
<pre>
<a name="1" href="#1">1</a> <em class="comment">/*</em>
<a name="2" href="#2">2</a> <em class="comment"> * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//httpclient/src/test/org/apache/commons/httpclient/params/TestHttpParams.java,v 1.4 2004/10/31 14:42:59 olegk Exp $</em>
<a name="3" href="#3">3</a> <em class="comment"> * $Revision: 480424 $</em>
<a name="4" href="#4">4</a> <em class="comment"> * $Date: 2006-11-29 06:56:49 +0100 (Wed, 29 Nov 2006) $</em>
<a name="5" href="#5">5</a> <em class="comment"> * ====================================================================</em>
<a name="6" href="#6">6</a> <em class="comment"> *</em>
<a name="7" href="#7">7</a> <em class="comment"> * Licensed to the Apache Software Foundation (ASF) under one or more</em>
<a name="8" href="#8">8</a> <em class="comment"> * contributor license agreements. See the NOTICE file distributed with</em>
<a name="9" href="#9">9</a> <em class="comment"> * this work for additional information regarding copyright ownership.</em>
<a name="10" href="#10">10</a> <em class="comment"> * The ASF licenses this file to You under the Apache License, Version 2.0</em>
<a name="11" href="#11">11</a> <em class="comment"> * (the "License"); you may not use this file except in compliance with</em>
<a name="12" href="#12">12</a> <em class="comment"> * the License. You may obtain a copy of the License at</em>
<a name="13" href="#13">13</a> <em class="comment"> *</em>
<a name="14" href="#14">14</a> <em class="comment"> * <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
<a name="15" href="#15">15</a> <em class="comment"> *</em>
<a name="16" href="#16">16</a> <em class="comment"> * Unless required by applicable law or agreed to in writing, software</em>
<a name="17" href="#17">17</a> <em class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</em>
<a name="18" href="#18">18</a> <em class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</em>
<a name="19" href="#19">19</a> <em class="comment"> * See the License for the specific language governing permissions and</em>
<a name="20" href="#20">20</a> <em class="comment"> * limitations under the License.</em>
<a name="21" href="#21">21</a> <em class="comment"> * ====================================================================</em>
<a name="22" href="#22">22</a> <em class="comment"> *</em>
<a name="23" href="#23">23</a> <em class="comment"> * This software consists of voluntary contributions made by many</em>
<a name="24" href="#24">24</a> <em class="comment"> * individuals on behalf of the Apache Software Foundation. For more</em>
<a name="25" href="#25">25</a> <em class="comment"> * information on the Apache Software Foundation, please see</em>
<a name="26" href="#26">26</a> <em class="comment"> * <<a href="http://www.apache.org/" target="alexandria_uri">http://www.apache.org/</a>>.</em>
<a name="27" href="#27">27</a> <em class="comment"> *</em>
<a name="28" href="#28">28</a> <em class="comment"> */</em>
<a name="29" href="#29">29</a>
<a name="30" href="#30">30</a> <strong>package</strong> org.apache.commons.httpclient.params;
<a name="31" href="#31">31</a>
<a name="32" href="#32">32</a> <strong>import</strong> java.io.IOException;
<a name="33" href="#33">33</a> <strong>import</strong> java.util.ArrayList;
<a name="34" href="#34">34</a>
<a name="35" href="#35">35</a> <strong>import</strong> junit.framework.Test;
<a name="36" href="#36">36</a> <strong>import</strong> junit.framework.TestSuite;
<a name="37" href="#37">37</a>
<a name="38" href="#38">38</a> <strong>import</strong> org.apache.commons.httpclient.Header;
<a name="39" href="#39">39</a> <strong>import</strong> org.apache.commons.httpclient.HostConfiguration;
<a name="40" href="#40">40</a> <strong>import</strong> org.apache.commons.httpclient.HttpClientTestBase;
<a name="41" href="#41">41</a> <strong>import</strong> org.apache.commons.httpclient.HttpStatus;
<a name="42" href="#42">42</a> <strong>import</strong> org.apache.commons.httpclient.HttpVersion;
<a name="43" href="#43">43</a> <strong>import</strong> org.apache.commons.httpclient.methods.GetMethod;
<a name="44" href="#44">44</a> <strong>import</strong> org.apache.commons.httpclient.params.HostParams;
<a name="45" href="#45">45</a> <strong>import</strong> org.apache.commons.httpclient.protocol.Protocol;
<a name="46" href="#46">46</a> <strong>import</strong> org.apache.commons.httpclient.server.HttpService;
<a name="47" href="#47">47</a> <strong>import</strong> org.apache.commons.httpclient.server.SimpleRequest;
<a name="48" href="#48">48</a> <strong>import</strong> org.apache.commons.httpclient.server.SimpleResponse;
<a name="49" href="#49">49</a>
<a name="50" href="#50">50</a> <em>/**</em>
<a name="51" href="#51">51</a> <em> * HTTP preference framework tests.</em>
<a name="52" href="#52">52</a> <em> *</em>
<a name="53" href="#53">53</a> <em> * @author Oleg Kalnichevski</em>
<a name="54" href="#54">54</a> <em> * </em>
<a name="55" href="#55">55</a> <em> * @version $Revision: 480424 $</em>
<a name="56" href="#56">56</a> <em> */</em>
<a name="57" href="#57">57</a> <strong>public</strong> <strong>class</strong> <a href="../../../../../org/apache/commons/httpclient/params/TestHttpParams.html">TestHttpParams</a> <strong>extends</strong> <a href="../../../../../org/apache/commons/httpclient/HttpClientTestBase.html">HttpClientTestBase</a> {
<a name="58" href="#58">58</a>
<a name="59" href="#59">59</a> <em class="comment">// ------------------------------------------------------------ Constructor</em>
<a name="60" href="#60">60</a> <strong>public</strong> <a href="../../../../../org/apache/commons/httpclient/params/TestHttpParams.html">TestHttpParams</a>(<strong>final</strong> String testName) throws IOException {
<a name="61" href="#61">61</a> <strong>super</strong>(testName);
<a name="62" href="#62">62</a> }
<a name="63" href="#63">63</a>
<a name="64" href="#64">64</a> <em class="comment">// ------------------------------------------------------------------- Main</em>
<a name="65" href="#65">65</a> <strong>public</strong> <strong>static</strong> <strong>void</strong> main(String args[]) {
<a name="66" href="#66">66</a> String[] testCaseName = { TestHttpParams.<strong>class</strong>.getName() };
<a name="67" href="#67">67</a> junit.textui.TestRunner.main(testCaseName);
<a name="68" href="#68">68</a> }
<a name="69" href="#69">69</a>
<a name="70" href="#70">70</a> <em class="comment">// ------------------------------------------------------- TestCase Methods</em>
<a name="71" href="#71">71</a>
<a name="72" href="#72">72</a> <strong>public</strong> <strong>static</strong> Test suite() {
<a name="73" href="#73">73</a> <strong>return</strong> <strong>new</strong> TestSuite(TestHttpParams.<strong>class</strong>);
<a name="74" href="#74">74</a> }
<a name="75" href="#75">75</a>
<a name="76" href="#76">76</a> <strong>private</strong> <strong>class</strong> SimpleService implements <a href="../../../../../org/apache/commons/httpclient/server/HttpService.html">HttpService</a> {
<a name="77" href="#77">77</a>
<a name="78" href="#78">78</a> <strong>public</strong> SimpleService() {
<a name="79" href="#79">79</a> <strong>super</strong>();
<a name="80" href="#80">80</a> }
<a name="81" href="#81">81</a>
<a name="82" href="#82">82</a> <strong>public</strong> <strong>boolean</strong> process(<strong>final</strong> <a href="../../../../../org/apache/commons/httpclient/server/SimpleRequest.html">SimpleRequest</a> request, <strong>final</strong> <a href="../../../../../org/apache/commons/httpclient/server/SimpleResponse.html">SimpleResponse</a> response)
<a name="83" href="#83">83</a> throws IOException
<a name="84" href="#84">84</a> {
<a name="85" href="#85">85</a> String uri = request.getRequestLine().getUri();
<a name="86" href="#86">86</a> HttpVersion httpversion = request.getRequestLine().getHttpVersion();
<a name="87" href="#87">87</a>
<a name="88" href="#88">88</a> <strong>if</strong> (<span class="string">"/miss/"</span>.equals(uri)) {
<a name="89" href="#89">89</a> response.setStatusLine(httpversion, HttpStatus.SC_MOVED_TEMPORARILY);
<a name="90" href="#90">90</a> response.addHeader(<strong>new</strong> Header(<span class="string">"Location"</span>, <span class="string">"/hit/"</span>));
<a name="91" href="#91">91</a> response.setBodyString(<span class="string">"Missed!"</span>);
<a name="92" href="#92">92</a> } <strong>else</strong> <strong>if</strong> (<span class="string">"/hit/"</span>.equals(uri)) {
<a name="93" href="#93">93</a> response.setStatusLine(httpversion, HttpStatus.SC_OK);
<a name="94" href="#94">94</a> response.setBodyString(<span class="string">"Hit!"</span>);
<a name="95" href="#95">95</a> } <strong>else</strong> {
<a name="96" href="#96">96</a> response.setStatusLine(httpversion, HttpStatus.SC_NOT_FOUND);
<a name="97" href="#97">97</a> response.setBodyString(uri + <span class="string">" not found"</span>);
<a name="98" href="#98">98</a> }
<a name="99" href="#99">99</a> <strong>return</strong> <strong>true</strong>;
<a name="100" href="#100">100</a> }
<a name="101" href="#101">101</a> }
<a name="102" href="#102">102</a>
<a name="103" href="#103">103</a> <strong>public</strong> <strong>void</strong> testDefaultHeaders() throws IOException {
<a name="104" href="#104">104</a> <strong>this</strong>.server.setHttpService(<strong>new</strong> SimpleService());
<a name="105" href="#105">105</a>
<a name="106" href="#106">106</a> ArrayList defaults = <strong>new</strong> ArrayList();
<a name="107" href="#107">107</a> defaults.add(<strong>new</strong> Header(<span class="string">"this-header"</span>, <span class="string">"value1"</span>));
<a name="108" href="#108">108</a> defaults.add(<strong>new</strong> Header(<span class="string">"that-header"</span>, <span class="string">"value1"</span>));
<a name="109" href="#109">109</a> defaults.add(<strong>new</strong> Header(<span class="string">"that-header"</span>, <span class="string">"value2"</span>));
<a name="110" href="#110">110</a> defaults.add(<strong>new</strong> Header(<span class="string">"User-Agent"</span>, <span class="string">"test"</span>));
<a name="111" href="#111">111</a>
<a name="112" href="#112">112</a> HostConfiguration hostconfig = <strong>new</strong> HostConfiguration();
<a name="113" href="#113">113</a> hostconfig.setHost(
<a name="114" href="#114">114</a> <strong>this</strong>.server.getLocalAddress(),
<a name="115" href="#115">115</a> <strong>this</strong>.server.getLocalPort(),
<a name="116" href="#116">116</a> Protocol.getProtocol(<span class="string">"http"</span>));
<a name="117" href="#117">117</a> hostconfig.getParams().setParameter(HostParams.DEFAULT_HEADERS, defaults);
<a name="118" href="#118">118</a>
<a name="119" href="#119">119</a> GetMethod httpget = <strong>new</strong> GetMethod(<span class="string">"/miss/"</span>);
<a name="120" href="#120">120</a> <strong>try</strong> {
<a name="121" href="#121">121</a> <strong>this</strong>.client.executeMethod(hostconfig, httpget);
<a name="122" href="#122">122</a> } <strong>finally</strong> {
<a name="123" href="#123">123</a> httpget.releaseConnection();
<a name="124" href="#124">124</a> }
<a name="125" href="#125">125</a> assertEquals(HttpStatus.SC_OK, httpget.getStatusCode());
<a name="126" href="#126">126</a> Header[] thisheader = httpget.getRequestHeaders(<span class="string">"this-header"</span>);
<a name="127" href="#127">127</a> assertEquals(1, thisheader.length);
<a name="128" href="#128">128</a> Header[] thatheader = httpget.getRequestHeaders(<span class="string">"that-header"</span>);
<a name="129" href="#129">129</a> assertEquals(2, thatheader.length);
<a name="130" href="#130">130</a> assertEquals(<span class="string">"test"</span>, httpget.getRequestHeader(<span class="string">"User-Agent"</span>).getValue());
<a name="131" href="#131">131</a> }
<a name="132" href="#132">132</a>
<a name="133" href="#133">133</a> <strong>public</strong> <strong>void</strong> testDefaults() throws IOException {
<a name="134" href="#134">134</a> <strong>this</strong>.server.setHttpService(<strong>new</strong> SimpleService());
<a name="135" href="#135">135</a>
<a name="136" href="#136">136</a> <strong>this</strong>.client.getParams().setParameter(HttpMethodParams.USER_AGENT, <span class="string">"test"</span>);
<a name="137" href="#137">137</a> HostConfiguration hostconfig = <strong>new</strong> HostConfiguration();
<a name="138" href="#138">138</a> hostconfig.setHost(
<a name="139" href="#139">139</a> <strong>this</strong>.server.getLocalAddress(),
<a name="140" href="#140">140</a> <strong>this</strong>.server.getLocalPort(),
<a name="141" href="#141">141</a> Protocol.getProtocol(<span class="string">"http"</span>));
<a name="142" href="#142">142</a>
<a name="143" href="#143">143</a> GetMethod httpget = <strong>new</strong> GetMethod(<span class="string">"/miss/"</span>);
<a name="144" href="#144">144</a> <strong>try</strong> {
<a name="145" href="#145">145</a> <strong>this</strong>.client.executeMethod(hostconfig, httpget);
<a name="146" href="#146">146</a> } <strong>finally</strong> {
<a name="147" href="#147">147</a> httpget.releaseConnection();
<a name="148" href="#148">148</a> }
<a name="149" href="#149">149</a> assertEquals(HttpStatus.SC_OK, httpget.getStatusCode());
<a name="150" href="#150">150</a> assertEquals(<span class="string">"test"</span>, httpget.getRequestHeader(<span class="string">"User-Agent"</span>).getValue());
<a name="151" href="#151">151</a> assertEquals(<span class="string">"test"</span>, httpget.getParams().
<a name="152" href="#152">152</a> getParameter(HttpMethodParams.USER_AGENT));
<a name="153" href="#153">153</a> assertEquals(<span class="string">"test"</span>, hostconfig.getParams().
<a name="154" href="#154">154</a> getParameter(HttpMethodParams.USER_AGENT));
<a name="155" href="#155">155</a> assertEquals(<span class="string">"test"</span>, client.getParams().
<a name="156" href="#156">156</a> getParameter(HttpMethodParams.USER_AGENT));
<a name="157" href="#157">157</a> }
<a name="158" href="#158">158</a> }
</pre>
<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
</html>
| huainiu/commons-httpclient-3.1 | docs/xref-test/org/apache/commons/httpclient/params/TestHttpParams.html | HTML | apache-2.0 | 15,722 |
<a mb-search-link="{{extraction.mention_text}}"><strong>{{extraction.mention_text}}</strong></a>
<small class="text-muted">
in <a mb-search-only="sentences" mb-search-link="{{extraction.doc_id}} sentence_index:{{extraction.sentence_index}}">sentence {{extraction.sentence_index}}</a>
in <a mb-search-only="articles" mb-search-link="{{extraction.doc_id}}">article({{extraction.doc_id}})</a>:
</small>
<div mindtagger-word-array="source.tokens">
<mindtagger-highlight-words from="extraction.begin_index" to="extraction.end_index" with-style="background-color: yellow;"/>
</div>
<!--
<p>{{
source.sentence_text | limitTo:(source.doc_offsets[extraction.begin_index] - source.doc_offsets[0])
}}<strong>{{extraction.mention_text}}</strong>{{
source.sentence_text | limitTo:null:(source.doc_offsets[extraction.end_index] - source.doc_offsets[0])
}}</p>
-->
| sky-xu/deepdive | examples/spouse/mindbender/search-template/person_mention.html | HTML | apache-2.0 | 872 |
<footer>
<div class="container">
<div class="row">
<div class="col-md-4">
<span class="copyright">Copyright © {{ site.title }} 2016</span>
</div>
<div class="col-md-4">
<ul class="list-inline social-buttons">
{% for network in site.social %}
<li><a href="{{ network.url }}"><i class="fa fa-{{ network.title }}"></i></a>
</li>
{% endfor %}
</ul>
</div>
<div class="col-md-4">
<ul class="list-inline quicklinks">
<li><a href="#">Privacy Policy</a>
</li>
<li><a href="#">Terms of Use</a>
</li>
</ul>
</div>
</div>
</div>
</footer> | servelproject/servelproject.github.io | _includes/footer.html | HTML | apache-2.0 | 966 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 1.0 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="../includes/main.css" type="text/css">
<link rel="shortcut icon" href="../favicon.ico" type="image/x-icon">
<title>Apache CloudStack | The Power Behind Your Cloud</title>
</head>
<body>
<div id="insidetopbg">
<div id="inside_wrapper">
<div class="uppermenu_panel">
<div class="uppermenu_box"></div>
</div>
<div id="main_master">
<div id="inside_header">
<div class="header_top">
<a class="cloud_logo" href="http://cloudstack.org"></a>
<div class="mainemenu_panel"></div>
</div>
</div>
<div id="main_content">
<div class="inside_apileftpanel">
<div class="inside_contentpanel" style="width:930px;">
<div class="api_titlebox">
<div class="api_titlebox_left">
<span>
Apache CloudStack 4.13.0.0 Root Admin API Reference
</span>
<p></p>
<h1>registerNetscalerControlCenter</h1>
<p>Adds a netscaler control center device</p>
</div>
<div class="api_titlebox_right">
<a class="api_backbutton" href="../index.html"></a>
</div>
</div>
<div class="api_tablepanel">
<h2>Request parameters</h2>
<table class="apitable">
<tr class="hed">
<td style="width:200px;"><strong>Parameter Name</strong></td><td style="width:500px;">Description</td><td style="width:180px;">Required</td>
</tr>
<tr>
<td style="width:200px;"><strong>ipaddress</strong></td><td style="width:500px;"><strong>URL of the netscaler controlcenter appliance.</strong></td><td style="width:180px;"><strong>true</strong></td>
</tr>
<tr>
<td style="width:200px;"><strong>numretries</strong></td><td style="width:500px;"><strong>Credentials to reach netscaler controlcenter device</strong></td><td style="width:180px;"><strong>true</strong></td>
</tr>
<tr>
<td style="width:200px;"><strong>password</strong></td><td style="width:500px;"><strong>Credentials to reach netscaler controlcenter device</strong></td><td style="width:180px;"><strong>true</strong></td>
</tr>
<tr>
<td style="width:200px;"><strong>username</strong></td><td style="width:500px;"><strong>Credentials to reach netscaler controlcenter device</strong></td><td style="width:180px;"><strong>true</strong></td>
</tr>
</table>
</div>
<div class="api_tablepanel">
<h2>Response Tags</h2>
<table class="apitable">
<tr class="hed">
<td style="width:200px;"><strong>Response Name</strong></td><td style="width:500px;">Description</td>
</tr>
<tr>
<td style="width:200px;"><strong>gslbprovider</strong></td><td style="width:500px;">true if NetScaler device is provisioned to be a GSLB service provider</td>
</tr>
<tr>
<td style="width:200px;"><strong>gslbproviderprivateip</strong></td><td style="width:500px;">private IP of the NetScaler representing GSLB site</td>
</tr>
<tr>
<td style="width:200px;"><strong>gslbproviderpublicip</strong></td><td style="width:500px;">public IP of the NetScaler representing GSLB site</td>
</tr>
<tr>
<td style="width:200px;"><strong>ipaddress</strong></td><td style="width:500px;">the management IP address of the external load balancer</td>
</tr>
<tr>
<td style="width:200px;"><strong>isexclusivegslbprovider</strong></td><td style="width:500px;">true if NetScaler device is provisioned exclusively to be a GSLB service provider</td>
</tr>
<tr>
<td style="width:200px;"><strong>lbdevicecapacity</strong></td><td style="width:500px;">device capacity</td>
</tr>
<tr>
<td style="width:200px;"><strong>lbdevicededicated</strong></td><td style="width:500px;">true if device is dedicated for an account</td>
</tr>
<tr>
<td style="width:200px;"><strong>lbdeviceid</strong></td><td style="width:500px;">device id of the netscaler load balancer</td>
</tr>
<tr>
<td style="width:200px;"><strong>lbdevicename</strong></td><td style="width:500px;">device name</td>
</tr>
<tr>
<td style="width:200px;"><strong>lbdevicestate</strong></td><td style="width:500px;">device state</td>
</tr>
<tr>
<td style="width:200px;"><strong>physicalnetworkid</strong></td><td style="width:500px;">the physical network to which this netscaler device belongs to</td>
</tr>
<tr>
<td style="width:200px;"><strong>podids</strong></td><td style="width:500px;">Used when NetScaler device is provider of EIP service. This parameter represents the list of pod's, for which there exists a policy based route on datacenter L3 router to route pod's subnet IP to a NetScaler device.</td>
</tr>
<tr>
<td style="width:200px;"><strong>privateinterface</strong></td><td style="width:500px;">the private interface of the load balancer</td>
</tr>
<tr>
<td style="width:200px;"><strong>provider</strong></td><td style="width:500px;">name of the provider</td>
</tr>
<tr>
<td style="width:200px;"><strong>publicinterface</strong></td><td style="width:500px;">the public interface of the load balancer</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<div id="comments_thread">
<script type="text/javascript" src="https://comments.apache.org/show_comments.lua?site=test" async="true"></script>
<noscript>
<iframe width="930" height="500" src="https://comments.apache.org/iframe.lua?site=test&page=4.2.0/rootadmin"></iframe>
</noscript>
</div>
<div id="footer_mainmaster">
<p>Copyright © 2015 The Apache Software Foundation, Licensed under the
<a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0.</a>
<br>
Apache, CloudStack, Apache CloudStack, the Apache CloudStack logo, the CloudMonkey logo and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
</div>
</div>
</div>
</div>
</body>
</html>
| apache/cloudstack-www | source/api/apidocs-4.13/apis/registerNetscalerControlCenter.html | HTML | apache-2.0 | 5,698 |
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="keywords" content="W3C SVG 1.1 2nd Edition Test Suite"/>
<meta name="description" content="W3C SVG 1.1 2nd Edition Object Test Suite"/>
<title>
<d:testDescription href='http://www.w3.org/TR/SVG11/painting.html#Markers' xmlns='http://www.w3.org/1999/xhtml'>
<p>
Test all the 'overflow' property values except 'inherit' on the 'marker' element.
</p>
<p>
Each column tests a value of the 'overflow' property.
The first row uses the 'marker' property to set the same marker on start-, mid- and end-points on the path.
The second row uses 'marker-start', 'marker-mid' and 'marker-end' to give each point its own marker.
The third row uses the 'marker' property like the first row, but here the marker has orient="auto" set.
</p>
</d:testDescription>
</title>
<style type="text/css">
<!--
.bodytext { font-family:verdana, helvetica, sans-serif; font-size: 12pt; line-height: 125%; text-align: Left; margin-top: 0; margin-bottom: 0 }
.pageTitle { line-height: 150%; font-size: 20pt; font-weight : 900; margin-bottom: 20pt }
.pageSubTitle { color : blue; line-height: 100%; font-size: 24pt; font-weight : 900 }
.openChapter { color : blue; line-height: 125%; font-weight : 900 }
.openSection { color : blue; line-height: 125%; font-weight : 900 }
.info { color : black; line-height: 110%; font-size: 10pt; font-weight : 100 }
p { margin-top:0; margin-bottom:0; padding-top:0; padding-bottom:0 }
blockquote { margin-top:0; margin-bottom:0; padding-top:0; padding-bottom:0 }
.opscript { margin-left: 3%; margin-right: 3%; }
.opscript p { margin-top: 0.7em }
.navbar { background: black; color: white; font-weight: bold }
a,a:visited { color: blue }
-->
</style>
</head>
<body class="bodytext">
<table align="center" border="0" cellspacing="0" cellpadding="10">
<tr>
<td align="center" colspan="3">
<table border="0" cellpadding="8">
<tr>
</tr>
<tr class="navbar">
<td align="center">
SVG Image - The test
</td>
<td align="center">
PNG Image - The reference
</td>
</tr>
<tr>
<td align="right" >
<object id="test" data="http://t/core/standards/SVG/Testsuites/W3C-1_1F2/harness/htmlObjectMini/modified/svg/test/painting-marker-05-f.svg" width="480" height="360" type="image/svg+xml"> </object>
</td>
<td align="left">
<img id="ref" alt="raster image of painting-marker-05-f.svg" src="http://t/core/standards/SVG/Testsuites/W3C-1_1F2/harness/htmlObjectMini/modified/svg/ref/painting-marker-05-f.png " width="480" height="360"/>
</td>
</tr>
</table>
</td>
</tr>
</table>
<h2 id="testdescription">
Test Description
</h2>
<div>
<p>
<d:testDescription href='http://www.w3.org/TR/SVG11/painting.html#Markers' xmlns='http://www.w3.org/1999/xhtml'>
<p>
Test all the 'overflow' property values except 'inherit' on the 'marker' element.
</p>
<p>
Each column tests a value of the 'overflow' property.
The first row uses the 'marker' property to set the same marker on start-, mid- and end-points on the path.
The second row uses 'marker-start', 'marker-mid' and 'marker-end' to give each point its own marker.
The third row uses the 'marker' property like the first row, but here the marker has orient="auto" set.
</p>
</d:testDescription>
</p>
</div>
<div class="opscript">
<h2 id="operatorscript">
Operator Script
</h2>
<div>
<p><d:operatorScript xmlns='http://www.w3.org/1999/xhtml'>
<p>
Run the test. No interaction required.
</p>
</d:operatorScript></p>
</div>
<h2 id="passcriteria">
Pass Criteria
</h2>
<div>
<p>
<d:passCriteria xmlns='http://www.w3.org/1999/xhtml'>
<p>
The test has passed if:
The columns labeled 'visible' and 'auto' show markers without clipping them.
All other columns show clipped markers.
The rendered picture matches the reference image, except for possible
variations in the labelling text (per CSS2 rules).
</p>
</d:passCriteria>
</p>
</div>
</div>
</div>
</body>
</html>
</body> </html>
| frivoal/presto-testo | SVG/Testsuites/W3C-1_1F2/harness/htmlObjectMini/modified/painting-marker-05-f.html | HTML | bsd-3-clause | 4,915 |
<!doctype html>
<title>/resources/media/apple/sample.mov/sample-qt5.mov</title>
<script src=../../framework.js></script>
<script>
// Format: Quicktime
// Audio: QDesign Music v.2
// Video: Sorensen video v.1
expectedChannels = 2;
expectedDuration = 5.0;
expectedFrameRate = 12/1;
expectedHeight = 240;
expectedSampleRate = 22050;
expectedWidth = 190;
type = 'video/quicktime; codecs=QDM2,SVQ1';
</script>
<pre>FAIL (script didn't run)</pre>
| frivoal/presto-testo | core/standards/web-apps/media/formats/apple/sample.mov/sample-qt5.mov.html | HTML | bsd-3-clause | 441 |
{% extends '!layout.html' %}
{%- block sidebarsearch %}
{{ super() }}
<div id="searchbox">
<h3>Google Search</h3>
<form method="get" action="http://www.google.com/search">
<table border="0" cellpadding="0">
<tr><td>
<input type="text" name="q" size="20"
maxlength="255" value="" />
<input type="submit" value="Go" /></td></tr>
<tr><td align="center" style="font-size:75%; color: #FFFFFF;">
<input type="checkbox" name="sitesearch"
value="http://github.enthought.com/mayavi/mayavi/" checked /> only search Mayavi documentation<br />
</td></tr></table>
</form>
</div>
<hr/>
<div id="searchbox">
<a href="http://docs.enthought.com/mayavi/mayavi/misc.html#citing-mayavi"><h3>Citing Mayavi</h3></a>
<p style="font-size:85%; color: #FFFFFF;">
If you publish articles using Mayavi, please
<strong><a href="misc.html#citing-mayavi">cite
Mayavi</a></strong>. We need
these citations to justify time and resources on the software.
</p>
</div>
{% endblock %}
{% block extrahead %}
<style type="text/css">
body {
/* Very bottom copyright, etc. info */
background: #4d598d;
}
.documentwrapper {
/* Blank area on left bar */
background: #24326e;
}
.related {
/* Long horizontal nav bars */
background: #3c4b8a!important;
}
.sphinxsidebarwrapper {
/* Filled part of left sidebar */
background: #24326e;
}
a {
color: #253370;
}
.sphinxsidebarwrapper a {
color: #f2f2f2!important;
}
</style>
{% endblock %}
| dmsurti/mayavi | docs/source/mayavi/_templates/layout.html | HTML | bsd-3-clause | 1,544 |
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
<title>The GHC Commentary - Mindboggling Makefiles</title>
</head>
<body BGCOLOR="FFFFFF">
<h1>The GHC Commentary - Mindboggling Makefiles</h1>
<p>
The size and structure of GHC's makefiles makes it quite easy to scream
out loud - in pain - during the process of tracking down problems in the
make system or when attempting to alter it. GHC's <a
href="http://ghc.haskell.org/trac/ghc/wiki/Building">Building
Guide</a> has valuable information on <a
href="http://ghc.haskell.org/trac/ghc/wiki/Building/BuildSystem">the
makefile architecture.</a>
<h4>A maze of twisty little passages, all alike</h4>
<p>
The <code>fptools/</code> toplevel and the various project directories
contain not only a <code>Makefile</code> each, but there are
subdirectories of name <code>mk/</code> at various levels that contain
rules, targets, and so on specific to a project - or, in the case of the
toplevel, the default rules for the whole system. Each <code>mk/</code>
directory contains a file <code>boilerplate.mk</code> that ties the
various other makefiles together. Files called <code>target.mk</code>,
<code>paths.mk</code>, and <code>suffix.mk</code> contain make targets,
definitions of variables containing paths, and suffix rules,
respectively.
<p>
One particularly nasty trick used in this hierarchy of makefiles is the
way in which the variable <code>$(TOP)</code> is used. AFAIK,
<code>$(TOP)</code> always points to a directory containing an
<code>mk/</code> subdirectory; however, it not necessarily points to the
toplevel <code>fptools/</code> directory. For example, within the GHC
subtree, <code>$(TOP)</code> points to <code>fptools/ghc/</code>.
However, some of the makefiles in <code>fptools/ghc/mk/</code> will then
<em>temporarily</em> redefine <code>$(TOP)</code> to point a level
higher (i.e., to <code>fptools/</code>) while they are including the
toplevel boilerplate. After that <code>$(TOP)</code> is redefined to
whatever value it had before including makefiles from higher up in the
hierarchy.
<p><small>
<!-- hhmts start -->
Last modified: Wed Aug 22 16:46:33 GMT Daylight Time 2001
<!-- hhmts end -->
</small>
</body>
</html>
| lukexi/ghc-7.8-arm64 | docs/comm/genesis/makefiles.html | HTML | bsd-3-clause | 2,482 |
<!doctype html>
<!-- This file is generated by build.py. -->
<title>img wide-viewBox.svg; overflow:hidden; -o-object-fit:contain; -o-object-position:left right /* INVALID */</title>
<link rel="stylesheet" href="../../support/reftests.css">
<link rel='match' href='hidden_auto_left_left-ref.html'>
<style>
#test > * { overflow:hidden; -o-object-fit:contain; -o-object-position:left right /* INVALID */ }
</style>
<div id="test">
<img src="../../support/wide-viewBox.svg">
</div>
| frivoal/presto-testo | css/image-fit/reftests/img-svg-wide-viewBox/hidden_contain_left_right.html | HTML | bsd-3-clause | 480 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Slider Cluster Demo - Jssor Slider, Carousel, Slideshow with Javascript Source Code</title>
<!-- Caption Style -->
<style>
.captionOrange, .captionBlue, .captionBlack, .captionSymbol
{
display: block;
color: #fff;
font-size: 20px;
line-height: 30px;
text-align: center;
border-radius: 4px;
}
.captionOrange
{
background: #EB5100;
background-color: rgba(235, 81, 0, 0.6);
}
.captionBlue
{
background: #746FBD;
background-color: rgba(21, 21, 120, 0.6);
}
.captionBlack
{
background: #000;
background-color: rgba(0, 0, 0, 0.4);
}
.captionSymbol
{
border-radius: 100px !important;
font-weight: 400 !important;
font-size: 26px !important;
background: #000;
background-color: rgba(0, 0, 0, 0.4);
}
.captionTextBlack
{
display: block;
color: #000;
font-size: 20px;
line-height: 30px;
}
.captionTextWhite
{
display: block;
color: #fff;
font-size: 20px;
line-height: 30px;
}
a.captionOrange, a.captionOrange:active, a.captionOrange:visited,a.captionTextWhite, a.captionTextWhite:active, a.captionTextWhite:visited
{
color: #fff;
text-decoration: none;
}
a.captionOrange:hover
{
color: #eb5100;
text-decoration: underline;
background-color: #eeeeee;
background-color: rgba(238, 238, 238, 0.7);
}
a.captionTextBlack, a.captionTextBlack:active, a.captionTextBlack:visited
{
color: #000;
text-decoration: none;
}
a.captionTextWhite:hover
{
color: #eb5100;
text-decoration: underline;
}
a.captionTextBlack:hover
{
color: #eb5100;
text-decoration: underline;
}
.bricon
{
background: url(../img/browser-icons.png);
}
</style>
<style>
/* jssor slider bullet navigator skin 01 css */
/*
.jssorb01 div (normal)
.jssorb01 div:hover (normal mouseover)
.jssorb01 .av (active)
.jssorb01 .av:hover (active mouseover)
.jssorb01 .dn (mousedown)
*/
.jssorb01 {
position: absolute;
}
.jssorb01 div, .jssorb01 div:hover, .jssorb01 .av {
position: absolute;
/* size of bullet elment */
width: 12px;
height: 12px;
filter: alpha(opacity=70);
opacity: .7;
overflow: hidden;
cursor: pointer;
border: #000 1px solid;
}
.jssorb01 div { background-color: gray; }
.jssorb01 div:hover, .jssorb01 .av:hover { background-color: #d3d3d3; }
.jssorb01 .av { background-color: #fff; }
.jssorb01 .dn, .jssorb01 .dn:hover { background-color: #555555; }
</style>
<style>
/* jssor slider arrow navigator skin 05 css */
/*
.jssora05l (normal)
.jssora05r (normal)
.jssora05l:hover (normal mouseover)
.jssora05r:hover (normal mouseover)
.jssora05l.jssora05ldn (mousedown)
.jssora05r.jssora05rdn (mousedown)
*/
.jssora05l, .jssora05r {
display: block;
position: absolute;
/* size of arrow element */
width: 40px;
height: 40px;
cursor: pointer;
background: url(../img/a17.png) no-repeat;
overflow: hidden;
}
.jssora05l { background-position: -10px -40px; }
.jssora05r { background-position: -70px -40px; }
.jssora05l:hover { background-position: -130px -40px; }
.jssora05r:hover { background-position: -190px -40px; }
.jssora05l.jssora05ldn { background-position: -250px -40px; }
.jssora05r.jssora05rdn { background-position: -310px -40px; }
</style>
</head>
<body style="margin:0;padding:0; background:#fff; font-family: Arial, Verdana, Sans-Serif;">
<!-- it works the same with all jquery version from 1.x to 2.x -->
<script type="text/javascript" src="../js/jquery-1.9.1.min.js"></script>
<!-- use jssor.slider.mini.js (40KB) instead for release -->
<!-- jssor.slider.mini.js = (jssor.js + jssor.slider.js) -->
<script type="text/javascript" src="../js/jssor.js"></script>
<script type="text/javascript" src="../js/jssor.slider.js"></script>
<script>
jQuery(document).ready(function ($) {
//Reference http://www.jssor.com/development/slider-with-slideshow-jquery.html
//Reference http://www.jssor.com/development/tool-slideshow-transition-viewer.html
var _SlideshowTransitions = [
//Rotate Overlap
{ $Duration: 1200, $Zoom: 11, $Rotate: -1, $Easing: { $Zoom: $JssorEasing$.$EaseInQuad, $Opacity: $JssorEasing$.$EaseLinear, $Rotate: $JssorEasing$.$EaseInQuad }, $Opacity: 2, $Round: { $Rotate: 0.5 }, $Brother: { $Duration: 1200, $Zoom: 1, $Rotate: 1, $Easing: $JssorEasing$.$EaseSwing, $Opacity: 2, $Round: { $Rotate: 0.5 }, $Shift: 90 } },
//Switch
{ $Duration: 1400, x: 0.25, $Zoom: 1.5, $Easing: { $Left: $JssorEasing$.$EaseInWave, $Zoom: $JssorEasing$.$EaseInSine }, $Opacity: 2, $ZIndex: -10, $Brother: { $Duration: 1400, x: -0.25, $Zoom: 1.5, $Easing: { $Left: $JssorEasing$.$EaseInWave, $Zoom: $JssorEasing$.$EaseInSine }, $Opacity: 2, $ZIndex: -10 } },
//Rotate Relay
{ $Duration: 1200, $Zoom: 11, $Rotate: 1, $Easing: { $Opacity: $JssorEasing$.$EaseLinear, $Rotate: $JssorEasing$.$EaseInQuad }, $Opacity: 2, $Round: { $Rotate: 1 }, $ZIndex: -10, $Brother: { $Duration: 1200, $Zoom: 11, $Rotate: -1, $Easing: { $Opacity: $JssorEasing$.$EaseLinear, $Rotate: $JssorEasing$.$EaseInQuad }, $Opacity: 2, $Round: { $Rotate: 1 }, $ZIndex: -10, $Shift: 600 } },
//Doors
{ $Duration: 1500, x: 0.5, $Cols: 2, $ChessMode: { $Column: 3 }, $Easing: { $Left: $JssorEasing$.$EaseInOutCubic }, $Opacity: 2, $Brother: { $Duration: 1500, $Opacity: 2 } },
//Rotate in+ out-
{ $Duration: 1500, x: -0.3, y: 0.5, $Zoom: 1, $Rotate: 0.1, $During: { $Left: [0.6, 0.4], $Top: [0.6, 0.4], $Rotate: [0.6, 0.4], $Zoom: [0.6, 0.4] }, $Easing: { $Left: $JssorEasing$.$EaseInQuad, $Top: $JssorEasing$.$EaseInQuad, $Opacity: $JssorEasing$.$EaseLinear, $Rotate: $JssorEasing$.$EaseInQuad }, $Opacity: 2, $Brother: { $Duration: 1000, $Zoom: 11, $Rotate: -0.5, $Easing: { $Opacity: $JssorEasing$.$EaseLinear, $Rotate: $JssorEasing$.$EaseInQuad }, $Opacity: 2, $Shift: 200 } },
//Fly Twins
{ $Duration: 1500, x: 0.3, $During: { $Left: [0.6, 0.4] }, $Easing: { $Left: $JssorEasing$.$EaseInQuad, $Opacity: $JssorEasing$.$EaseLinear }, $Opacity: 2, $Outside: true, $Brother: { $Duration: 1000, x: -0.3, $Easing: { $Left: $JssorEasing$.$EaseInQuad, $Opacity: $JssorEasing$.$EaseLinear }, $Opacity: 2 } },
//Rotate in- out+
{ $Duration: 1500, $Zoom: 11, $Rotate: 0.5, $During: { $Left: [0.4, 0.6], $Top: [0.4, 0.6], $Rotate: [0.4, 0.6], $Zoom: [0.4, 0.6] }, $Easing: { $Opacity: $JssorEasing$.$EaseLinear, $Rotate: $JssorEasing$.$EaseInQuad }, $Opacity: 2, $Brother: { $Duration: 1000, $Zoom: 1, $Rotate: -0.5, $Easing: { $Opacity: $JssorEasing$.$EaseLinear, $Rotate: $JssorEasing$.$EaseInQuad }, $Opacity: 2, $Shift: 200 } },
//Rotate Axis up overlap
{ $Duration: 1200, x: 0.25, y: 0.5, $Rotate: -0.1, $Easing: { $Left: $JssorEasing$.$EaseInQuad, $Top: $JssorEasing$.$EaseInQuad, $Opacity: $JssorEasing$.$EaseLinear, $Rotate: $JssorEasing$.$EaseInQuad }, $Opacity: 2, $Brother: { $Duration: 1200, x: -0.1, y: -0.7, $Rotate: 0.1, $Easing: { $Left: $JssorEasing$.$EaseInQuad, $Top: $JssorEasing$.$EaseInQuad, $Opacity: $JssorEasing$.$EaseLinear, $Rotate: $JssorEasing$.$EaseInQuad }, $Opacity: 2 } },
//Chess Replace TB
{ $Duration: 1600, x: 1, $Rows: 2, $ChessMode: { $Row: 3 }, $Easing: { $Left: $JssorEasing$.$EaseInOutQuart, $Opacity: $JssorEasing$.$EaseLinear }, $Opacity: 2, $Brother: { $Duration: 1600, x: -1, $Rows: 2, $ChessMode: { $Row: 3 }, $Easing: { $Left: $JssorEasing$.$EaseInOutQuart, $Opacity: $JssorEasing$.$EaseLinear }, $Opacity: 2 } },
//Chess Replace LR
{ $Duration: 1600, y: -1, $Cols: 2, $ChessMode: { $Column: 12 }, $Easing: { $Top: $JssorEasing$.$EaseInOutQuart, $Opacity: $JssorEasing$.$EaseLinear }, $Opacity: 2, $Brother: { $Duration: 1600, y: 1, $Cols: 2, $ChessMode: { $Column: 12 }, $Easing: { $Top: $JssorEasing$.$EaseInOutQuart, $Opacity: $JssorEasing$.$EaseLinear }, $Opacity: 2 } },
//Shift TB
{ $Duration: 1200, y: 1, $Easing: { $Top: $JssorEasing$.$EaseInOutQuart, $Opacity: $JssorEasing$.$EaseLinear }, $Opacity: 2, $Brother: { $Duration: 1200, y: -1, $Easing: { $Top: $JssorEasing$.$EaseInOutQuart, $Opacity: $JssorEasing$.$EaseLinear }, $Opacity: 2 } },
//Shift LR
{ $Duration: 1200, x: 1, $Easing: { $Left: $JssorEasing$.$EaseInOutQuart, $Opacity: $JssorEasing$.$EaseLinear }, $Opacity: 2, $Brother: { $Duration: 1200, x: -1, $Easing: { $Left: $JssorEasing$.$EaseInOutQuart, $Opacity: $JssorEasing$.$EaseLinear }, $Opacity: 2 } },
//Return TB
{ $Duration: 1200, y: -1, $Easing: { $Top: $JssorEasing$.$EaseInOutQuart, $Opacity: $JssorEasing$.$EaseLinear }, $Opacity: 2, $ZIndex: -10, $Brother: { $Duration: 1200, y: -1, $Easing: { $Top: $JssorEasing$.$EaseInOutQuart, $Opacity: $JssorEasing$.$EaseLinear }, $Opacity: 2, $ZIndex: -10, $Shift: -100 } },
//Return LR
{ $Duration: 1200, x: 1, $Delay: 40, $Cols: 6, $Formation: $JssorSlideshowFormations$.$FormationStraight, $Easing: { $Left: $JssorEasing$.$EaseInOutQuart, $Opacity: $JssorEasing$.$EaseLinear }, $Opacity: 2, $ZIndex: -10, $Brother: { $Duration: 1200, x: 1, $Delay: 40, $Cols: 6, $Formation: $JssorSlideshowFormations$.$FormationStraight, $Easing: { $Top: $JssorEasing$.$EaseInOutQuart, $Opacity: $JssorEasing$.$EaseLinear }, $Opacity: 2, $ZIndex: -10, $Shift: -100 } },
//Rotate Axis down
{ $Duration: 1500, x: -0.1, y: -0.7, $Rotate: 0.1, $During: { $Left: [0.6, 0.4], $Top: [0.6, 0.4], $Rotate: [0.6, 0.4] }, $Easing: { $Left: $JssorEasing$.$EaseInQuad, $Top: $JssorEasing$.$EaseInQuad, $Opacity: $JssorEasing$.$EaseLinear, $Rotate: $JssorEasing$.$EaseInQuad }, $Opacity: 2, $Brother: { $Duration: 1000, x: 0.2, y: 0.5, $Rotate: -0.1, $Easing: { $Left: $JssorEasing$.$EaseInQuad, $Top: $JssorEasing$.$EaseInQuad, $Opacity: $JssorEasing$.$EaseLinear, $Rotate: $JssorEasing$.$EaseInQuad }, $Opacity: 2 } },
//Extrude Replace
{ $Duration: 1600, x: -0.2, $Delay: 40, $Cols: 12, $During: { $Left: [0.4, 0.6] }, $SlideOut: true, $Formation: $JssorSlideshowFormations$.$FormationStraight, $Assembly: 260, $Easing: { $Left: $JssorEasing$.$EaseInOutExpo, $Opacity: $JssorEasing$.$EaseInOutQuad }, $Opacity: 2, $Outside: true, $Round: { $Top: 0.5 }, $Brother: { $Duration: 1000, x: 0.2, $Delay: 40, $Cols: 12, $Formation: $JssorSlideshowFormations$.$FormationStraight, $Assembly: 1028, $Easing: { $Left: $JssorEasing$.$EaseInOutExpo, $Opacity: $JssorEasing$.$EaseInOutQuad }, $Opacity: 2, $Round: { $Top: 0.5 } } }
];
//Reference http://www.jssor.com/development/slider-with-caption-jquery.html
//Reference http://www.jssor.com/development/reference-ui-definition.html#captiondefinition
//Reference http://www.jssor.com/development/tool-caption-transition-viewer.html
var captionTransitions = [];
var t_tr = { $Duration: 700, x: -0.6, y: 0.6, $Easing: { $Left: $JssorEasing$.$EaseInOutSine, $Top: $JssorEasing$.$EaseInOutSine }, $Opacity: 2 };
var t_tr_ib = { $Duration: 900, x: -0.6, y: 0.6, $Easing: { $Left: $JssorEasing$.$EaseInOutBack, $Top: $JssorEasing$.$EaseInOutBack }, $Opacity: 2 };
var t_rtt_tr = { $Duration: 700, x: -0.6, y: 0.6, $Zoom: 11, $Rotate: 1, $Easing: { $Left: $JssorEasing$.$EaseInCubic, $Top: $JssorEasing$.$EaseInCubic, $Zoom: $JssorEasing$.$EaseInCubic, $Opacity: $JssorEasing$.$EaseLinear, $Rotate: $JssorEasing$.$EaseInCubic }, $Opacity: 2, $Round: { $Rotate: 0.8} };
var t_rtt_360 = { $Duration: 800, $Rotate: 1, $Easing: { $Opacity: $JssorEasing$.$EaseLinear, $Rotate: $JssorEasing$.$EaseInQuad }, $Opacity: 2 };
var t_clip_lr = { $Duration: 900, $Clip: 3, $Easing: { $Clip: $JssorEasing$.$EaseInOutCubic }, $Opacity: 2 };
var t_zm = { $Duration: 700, $Zoom: 1, $Easing: $JssorEasing$.$EaseInCubic, $Opacity: 2 };
var t_b_ = { $Duration: 700, y: -0.6, $Rotate: 0.05, $Easing: { $Top: $JssorEasing$.$EaseInOutSine }, $Opacity: 2 };
captionTransitions["TEAM_1"] = [[t_rtt_360, t_zm], [t_zm, t_rtt_tr]];
captionTransitions["TEAM_2"] = [t_rtt_360, t_clip_lr, t_zm, t_b_];
captionTransitions["L|IB"] = { $Duration: 900, x: 0.6, $Easing: { $Left: $JssorEasing$.$EaseInOutBack }, $Opacity: 2 };
captionTransitions["L|EP"] = { $Duration: 900, x: 0.6, $Easing: { $Left: $JssorEasing$.$EaseInOutExpo }, $Opacity: 2 };
captionTransitions["L*IB"] = { $Duration: 900, x: 0.6, $Zoom: 3, $Rotate: -0.3, $Easing: { $Left: $JssorEasing$.$EaseInCubic, $Rotate: $JssorEasing$.$EaseInBack }, $Opacity: 2 };
captionTransitions["B*IB"] = { $Duration: 900, y: -0.6, $Zoom: 3, $Rotate: -0.3, $Easing: { $Top: $JssorEasing$.$EaseInCubic, $Rotate: $JssorEasing$.$EaseInBack }, $Opacity: 2 };
captionTransitions["T|IE*IE"] = { $Duration: 1800, y: 0.8, $Zoom: 11, $Rotate: -1.5, $Easing: { $Top: $JssorEasing$.$EaseInOutElastic, $Zoom: $JssorEasing$.$EaseInElastic, $Rotate: $JssorEasing$.$EaseInOutElastic }, $Opacity: 2, $During: { $Zoom: [0, 0.8], $Opacity: [0, 0.7] }, $Round: { $Rotate: 0.5} };
captionTransitions["CLIP|L"] = { $Duration: 800, $Clip: 1, $Easing: { $Clip: $JssorEasing$.$EaseInOutCubic }, $Opacity: 2 };
captionTransitions["CLIP|LR"] = t_clip_lr;
captionTransitions["RTT|360"] = t_rtt_360;
captionTransitions["RTT*JUP|BR"] = { $Duration: 1000, x: -0.5, y: -0.8, $Zoom: 11, $Rotate: 0.2, $Easing: { $Left: $JssorEasing$.$EaseInCubic, $Top: $JssorEasing$.$EaseLinear, $Zoom: $JssorEasing$.$EaseInCubic }, $Opacity: 2, $During: { $Left: [0, 0.5]} };
captionTransitions["RTT*JDN|L"] = { $Duration: 1200, x: 0.3, $Zoom: 11, $Rotate: 0.2, $Easing: { $Left: $JssorEasing$.$EaseOutCubic, $Zoom: $JssorEasing$.$EaseInCubic }, $Opacity: 2, $During: { $Left: [0, 0.5]} };
captionTransitions["SPACESHIP|LB"] = { $Duration: 1000, x: 1, y: -0.1, $Zoom: 3, $Rotate: -0.1, $Easing: { $Left: $JssorEasing$.$EaseInQuint, $Top: $JssorEasing$.$EaseInWave, $Opacity: $JssorEasing$.$EaseInQuint }, $Opacity: 2 };
captionTransitions["SPACESHIP|RB"] = { $Duration: 1000, x: -1, y: -0.1, $Zoom: 3, $Rotate: 0.1, $Easing: { $Left: $JssorEasing$.$EaseInQuint, $Top: $JssorEasing$.$EaseInWave, $Opacity: $JssorEasing$.$EaseInQuint }, $Opacity: 2 };
captionTransitions["ZM"] = { $Duration: 600, $Zoom: 1, $Easing: $JssorEasing$.$EaseInCubic, $Opacity: 2 };
var captionTransitions_childSliders = [
//R|IB
{$Duration: 900, x: -0.6, $Easing: { $Left: $JssorEasing$.$EaseInOutBack }, $Opacity: 2 }
//B|IB
, { $Duration: 900, y: -0.6, $Easing: { $Top: $JssorEasing$.$EaseInOutBack }, $Opacity: 2 }
//R*|IB
, { $Duration: 900, x: -0.6, $Zoom: 3, $Rotate: -0.3, $Easing: { $Left: $JssorEasing$.$EaseInCubic, $Rotate: $JssorEasing$.$EaseInBack }, $Opacity: 2 }
//B*|IB
, { $Duration: 900, y: -0.6, $Zoom: 3, $Rotate: -0.3, $Easing: { $Top: $JssorEasing$.$EaseInCubic, $Rotate: $JssorEasing$.$EaseInBack }, $Opacity: 2 }
//R-*|IB
, { $Duration: 900, x: -0.7, $Rotate: 0.5, $Easing: { $Left: $JssorEasing$.$EaseInCubic, $Opacity: $JssorEasing$.$EaseInQuad, $Rotate: $JssorEasing$.$EaseInBack }, $Opacity: 2, $During: { $Left: [0.2, 0.8]} }
//B-*|IB
, { $Duration: 900, y: -0.7, $Rotate: 0.5, $Easing: { $Top: $JssorEasing$.$EaseInCubic, $Opacity: $JssorEasing$.$EaseInQuad, $Rotate: $JssorEasing$.$EaseInBack }, $Opacity: 2, $During: { $Top: [0.2, 0.8]} }
//CLIP|LR
, { $Duration: 900, $Clip: 3, $Easing: { $Clip: $JssorEasing$.$EaseInOutCubic }, $Opacity: 2 }
//CLIP|TB
, { $Duration: 900, $Clip: 12, $Easing: { $Clip: $JssorEasing$.$EaseInOutCubic }, $Opacity: 2 }
//CLIP|L
, { $Duration: 800, $Clip: 1, $Easing: { $Clip: $JssorEasing$.$EaseInOutCubic }, $Opacity: 2 }
//ZM*JDN|RB
, { $Duration: 1200, x: -0.8, y: -0.5, $Zoom: 11, $Easing: { $Left: $JssorEasing$.$EaseLinear, $Top: $JssorEasing$.$EaseOutCubic, $Zoom: $JssorEasing$.$EaseInCubic }, $Opacity: 2, $During: { $Top: [0, 0.5]} }
//RTT*JUP|RB
, { $Duration: 1200, x: -0.8, y: -0.5, $Zoom: 11, $Rotate: 0.2, $Easing: { $Left: $JssorEasing$.$EaseLinear, $Top: $JssorEasing$.$EaseInCubic, $Zoom: $JssorEasing$.$EaseInCubic }, $Opacity: 2, $During: { $Top: [0, 0.5]} }
//TORTUOUS|VB
, { $Duration: 1800, y: -0.2, $Zoom: 1, $Easing: { $Top: $JssorEasing$.$EaseOutWave, $Zoom: $JssorEasing$.$EaseOutCubic }, $Opacity: 2, $During: { $Top: [0, 0.7] }, $Round: { $Top: 1.3} }
];
var slider1Options = {
$AutoPlayInterval: 3000, //[Optional] Interval (in milliseconds) to go for next slide since the previous stopped if the slider is auto playing, default value is 3000
$DragOrientation: 0, //[Optional] Orientation to drag slide, 0 no drag, 1 horizental, 2 vertical, 3 either, default value is 1 (Note that the $DragOrientation should be the same as $PlayOrientation when $DisplayPieces is greater than 1, or parking position is not 0)
$CaptionSliderOptions: { //[Optional] Options which specifies how to animate caption
$Class: $JssorCaptionSlider$, //[Required] Class to create instance to animate caption
$CaptionTransitions: captionTransitions_childSliders, //[Required] An array of caption transitions to play caption, see caption transition section at jssor slideshow transition builder
$PlayInMode: 1, //[Optional] 0 None (no play), 1 Chain (goes after main slide), 3 Chain Flatten (goes after main slide and flatten all caption animations), default value is 1
$PlayOutMode: 3 //[Optional] 0 None (no play), 1 Chain (goes before main slide), 3 Chain Flatten (goes before main slide and flatten all caption animations), default value is 1
},
$BulletNavigatorOptions: { //[Optional] Options to specify and enable navigator or not
$Class: $JssorBulletNavigator$, //[Required] Class to create navigator instance
$ChanceToShow: 2, //[Required] 0 Never, 1 Mouse Over, 2 Always
$SpacingX: 10, //[Optional] Horizontal space between each item in pixel, default value is 0
$SpacingY: 10 //[Optional] Vertical space between each item in pixel, default value is 0
},
$ArrowNavigatorOptions: {
$Class: $JssorArrowNavigator$, //[Requried] Class to create arrow navigator instance
$ChanceToShow: 2 //[Required] 0 Never, 1 Mouse Over, 2 Always
}
};
var jssorSlider1 = new $JssorSlider$("slider1_container", slider1Options);
var slider2Options = {
$AutoPlayInterval: 3000, //[Optional] Interval (in milliseconds) to go for next slide since the previous stopped if the slider is auto playing, default value is 3000
$DragOrientation: 0, //[Optional] Orientation to drag slide, 0 no drag, 1 horizental, 2 vertical, 3 either, default value is 1 (Note that the $DragOrientation should be the same as $PlayOrientation when $DisplayPieces is greater than 1, or parking position is not 0)
$SlideshowOptions: { //[Optional] Options to specify and enable slideshow or not
$Class: $JssorSlideshowRunner$, //[Required] Class to create instance of slideshow
$Transitions: _SlideshowTransitions, //[Required] An array of slideshow transitions to play slideshow
$TransitionsOrder: 1, //[Optional] The way to choose transition to play slide, 1 Sequence, 0 Random
$ShowLink: true //[Optional] Whether to bring slide link on top of the slider when slideshow is running, default value is false
},
$CaptionSliderOptions: { //[Optional] Options which specifies how to animate caption
$Class: $JssorCaptionSlider$, //[Required] Class to create instance to animate caption
$CaptionTransitions: captionTransitions_childSliders, //[Required] An array of caption transitions to play caption, see caption transition section at jssor slideshow transition builder
$PlayInMode: 1, //[Optional] 0 None (no play), 1 Chain (goes after main slide), 3 Chain Flatten (goes after main slide and flatten all caption animations), default value is 1
$PlayOutMode: 3 //[Optional] 0 None (no play), 1 Chain (goes before main slide), 3 Chain Flatten (goes before main slide and flatten all caption animations), default value is 1
},
$BulletNavigatorOptions: { //[Optional] Options to specify and enable navigator or not
$Class: $JssorBulletNavigator$, //[Required] Class to create navigator instance
$ChanceToShow: 2, //[Required] 0 Never, 1 Mouse Over, 2 Always
$SpacingX: 10, //[Optional] Horizontal space between each item in pixel, default value is 0
$SpacingY: 10 //[Optional] Vertical space between each item in pixel, default value is 0
},
$ArrowNavigatorOptions: {
$Class: $JssorArrowNavigator$, //[Requried] Class to create arrow navigator instance
$ChanceToShow: 2 //[Required] 0 Never, 1 Mouse Over, 2 Always
}
};
var jssorSlider2 = new $JssorSlider$("slider2_container", slider2Options);
var bannerSlider_slideshowTransitions = [
//Fade in R
{$Duration: 1200, x: -0.3, $During: { $Left: [0.3, 0.7] }, $Easing: { $Left: $JssorEasing$.$EaseInCubic, $Opacity: $JssorEasing$.$EaseLinear }, $Opacity: 2 }
//Fade out L
, { $Duration: 1200, x: 0.3, $SlideOut: true, $Easing: { $Left: $JssorEasing$.$EaseInCubic, $Opacity: $JssorEasing$.$EaseLinear }, $Opacity: 2 }
];
var slider3Options = {
$AutoPlayInterval: 3000, //[Optional] Interval (in milliseconds) to go for next slide since the previous stopped if the slider is auto playing, default value is 3000
$DragOrientation: 0, //[Optional] Orientation to drag slide, 0 no drag, 1 horizental, 2 vertical, 3 either, default value is 1 (Note that the $DragOrientation should be the same as $PlayOrientation when $DisplayPieces is greater than 1, or parking position is not 0)
$SlideshowOptions: { //[Optional] Options to specify and enable slideshow or not
$Class: $JssorSlideshowRunner$, //[Required] Class to create instance of slideshow
$Transitions: bannerSlider_slideshowTransitions, //[Required] An array of slideshow transitions to play slideshow
$TransitionsOrder: 1, //[Optional] The way to choose transition to play slide, 1 Sequence, 0 Random
$ShowLink: true //[Optional] Whether to bring slide link on top of the slider when slideshow is running, default value is false
},
$BulletNavigatorOptions: { //[Optional] Options to specify and enable navigator or not
$Class: $JssorBulletNavigator$, //[Required] Class to create navigator instance
$ChanceToShow: 2, //[Required] 0 Never, 1 Mouse Over, 2 Always
$SpacingX: 10, //[Optional] Horizontal space between each item in pixel, default value is 0
$SpacingY: 10 //[Optional] Vertical space between each item in pixel, default value is 0
},
$ArrowNavigatorOptions: {
$Class: $JssorArrowNavigator$, //[Requried] Class to create arrow navigator instance
$ChanceToShow: 2 //[Required] 0 Never, 1 Mouse Over, 2 Always
},
$ThumbnailNavigatorOptions: {
$Class: $JssorThumbnailNavigator$, //[Required] Class to create thumbnail navigator instance
$ChanceToShow: 2, //[Required] 0 Never, 1 Mouse Over, 2 Always
$ActionMode: 0, //[Optional] 0 None, 1 act by click, 2 act by mouse hover, 3 both, default value is 1
$DisableDrag: true //[Optional] Disable drag or not, default value is false
}
};
var jssorSlider3 = new $JssorSlider$("slider3_container", slider3Options);
function IsBrowserIe8Earlier() {
var isBrowserIe8Earlier;
var app = navigator.appName;
var ua = navigator.userAgent;
if (app == "Microsoft Internet Explorer" &&
!!window.attachEvent && !!window.ActiveXObject) {
var ieOffset = ua.indexOf("MSIE");
browserRuntimeVersion = document.documentMode || parseFloat(ua.substring(ieOffset + 5, ua.indexOf(";", ieOffset)));
isBrowserIe8Earlier = browserRuntimeVersion < 8;
}
}
var sliderClusterSlideshowOptions = IsBrowserIe8Earlier() ? null : { //[Optional] Options to specify and enable slideshow or not
$Class: $JssorSlideshowRunner$, //[Required] Class to create instance of slideshow
$Transitions: _SlideshowTransitions, //[Required] An array of slideshow transitions to play slideshow
$TransitionsOrder: 1, //[Optional] The way to choose transition to play slide, 1 Sequence, 0 Random
$ShowLink: true //[Optional] Whether to bring slide link on top of the slider when slideshow is running, default value is false
};
var slidercOptions = {
$AutoPlay: false, //[Optional] Whether to auto play, to enable slideshow, this option must be set to true, default value is false
$AutoPlayInterval: 3000, //[Optional] Interval (in milliseconds) to go for next slide since the previous stopped if the slider is auto playing, default value is 3000
$PauseOnHover: 1, //[Optional] Whether to pause when mouse over if a slider is auto playing, 0 no pause, 1 pause for desktop, 2 pause for touch device, 3 pause for desktop and touch device, 4 freeze for desktop, 8 freeze for touch device, 12 freeze for desktop and touch device, default value is 1
$ArrowKeyNavigation: true, //Allows arrow key to navigate or not
$SlideDuration: 800, //[Optional] Specifies default duration (swipe) for slide in milliseconds, default value is 500
$UISearchMode: 0, //[Optional] The way (0 parellel, 1 recursive, default value is 1) to search UI components (slides container, loading screen, navigator container, arrow navigator container, thumbnail navigator container etc).
$DragOrientation: 3, //[Optional] Orientation to drag slide, 0 no drag, 1 horizental, 2 vertical, 3 either, default value is 1 (Note that the $DragOrientation should be the same as $PlayOrientation when $DisplayPieces is greater than 1, or parking position is not 0)
$SlideshowOptions: sliderClusterSlideshowOptions,
$CaptionSliderOptions: { //[Optional] Options which specifies how to animate caption
$Class: $JssorCaptionSlider$, //[Required] Class to create instance to animate caption
$CaptionTransitions: captionTransitions, //[Required] An array of caption transitions to play caption, see caption transition section at jssor slideshow transition builder
$PlayInMode: 1, //[Optional] 0 None (no play), 1 Chain (goes after main slide), 3 Chain Flatten (goes after main slide and flatten all caption animations), default value is 1
$PlayOutMode: 3 //[Optional] 0 None (no play), 1 Chain (goes before main slide), 3 Chain Flatten (goes before main slide and flatten all caption animations), default value is 1
},
$ArrowNavigatorOptions: { //[Optional] Options to specify and enable arrow navigator or not
$Class: $JssorArrowNavigator$, //[Requried] Class to create arrow navigator instance
$ChanceToShow: 1, //[Required] 0 Never, 1 Mouse Over, 2 Always
$AutoCenter: 2 //[Optional] Auto center arrows in parent container, 0 No, 1 Horizontal, 2 Vertical, 3 Both, default value is 0
},
$BulletNavigatorOptions: { //[Optional] Options to specify and enable navigator or not
$Class: $JssorBulletNavigator$, //[Required] Class to create navigator instance
$ChanceToShow: 2, //[Required] 0 Never, 1 Mouse Over, 2 Always
$AutoCenter: 1, //[Optional] Auto center navigator in parent container, 0 None, 1 Horizontal, 2 Vertical, 3 Both, default value is 0
$SpacingX: 4, //[Optional] Horizontal space between each item in pixel, default value is 0
$SpacingY: 4 //[Optional] Vertical space between each item in pixel, default value is 0
}
};
var jssorSliderc = new $JssorSlider$("sliderc_container", slidercOptions);
//responsive code begin
//you can remove responsive code if you don't want the slider scales while window resizes
function ScaleSlider() {
var parentWidth = jssorSliderc.$Elmt.parentNode.clientWidth;
if (parentWidth)
jssorSliderc.$ScaleWidth(Math.max(Math.min(parentWidth, 960), 300));
else
window.setTimeout(ScaleSlider, 30);
}
ScaleSlider();
$(window).bind("load", ScaleSlider);
$(window).bind("resize", ScaleSlider);
$(window).bind("orientationchange", ScaleSlider);
//responsive code end
//slider cluster controller code begin
function SliderCluster(mainSlider, autoPlayInterval) {
var _Self = this;
var _NestedSliders = [];
var _NestedSliderCurrent;
var _CaptionInCounter = 0;
function OnChildSliderStateChange(currentIndex, progress, progressBegin, idleBegin, idleEnd, progressEnd) {
if (progress == idleBegin) {
if (!(++_CaptionInCounter % 4)) {
_NestedSliderCurrent && _NestedSliderCurrent.$Pause();
mainSlider.$Play(true);
}
}
}
function OnMainSliderStateChange(currentIndex, progress, progressBegin, idleBegin, idleEnd, progressEnd) {
_NestedSliderCurrent = _NestedSliders[currentIndex];
if (_NestedSliderCurrent) {
if (progress == idleBegin) {
mainSlider.$Pause();
_NestedSliderCurrent.$Play(true);
}
else if (progress == progressBegin) {
_CaptionInCounter = 0;
mainSlider.$Play(true);
}
}
}
function OnMainSliderSwipeStart(position, virtualPosition) {
_NestedSliderCurrent && _NestedSliderCurrent.$Pause();
mainSlider.$Pause();
}
function OnMainSliderPark(slideIndex, fromIndex) {
_CaptionInCounter = 0;
mainSlider.$Play();
}
_Self.$AddChildSlider = function (childSlider, slideIndex) {
_NestedSliders[slideIndex] = childSlider;
childSlider.$On($JssorSlider$.$EVT_STATE_CHANGE, OnChildSliderStateChange);
};
_Self.$Start = function () {
mainSlider.$On($JssorSlider$.$EVT_PARK, OnMainSliderPark);
mainSlider.$On($JssorSlider$.$EVT_STATE_CHANGE, OnMainSliderStateChange);
mainSlider.$On($JssorSlider$.$EVT_SWIPE_START, OnMainSliderSwipeStart);
mainSlider.$Play(true);
}
}
var sliderCluster = new SliderCluster(jssorSliderc);
sliderCluster.$AddChildSlider(jssorSlider1, 0);
sliderCluster.$AddChildSlider(jssorSlider2, 1);
sliderCluster.$AddChildSlider(jssorSlider3, 2);
sliderCluster.$Start();
//slider cluster controller code end
});
</script>
<div style="position: relative; margin-top: 10px; top: 0px; left: 0px; width:100%; text-align: center; background-image: url(../img/home/back-dice-02.jpg); border-top: 1px solid gray; border-bottom: 1px solid gray; overflow: hidden;">
<!-- Jssor Slider Begin -->
<!-- To move inline styles to css file/block, please specify a class name for each element. -->
<div id="sliderc_container" style="position: relative; margin: 0 auto; width: 960px;
height: 450px; text-align: left; overflow: hidden;">
<!-- Slides Container -->
<div u="slides" style="cursor: move; position: absolute; left: 0px; top: 0px; width: 960px; height: 450px;
overflow: hidden;">
<div>
<!-- Jssor Slider Begin -->
<!-- To move inline styles to css file/block, please specify a class name for each element. -->
<div id="slider1_container" style="position: relative; top: 90px; left: 0px; width: 600px;
height: 300px; overflow: hidden; border-radius: 8px;">
<!-- Loading Screen -->
<div u="loading" style="position: absolute; top: 0px; left: 0px;">
<div style="filter: alpha(opacity=70); opacity:0.7; position: absolute; display: block;
background-color: #000; top: 0px; left: 0px;width: 100%;height:100%;">
</div>
<div style="position: absolute; display: block; background: url(../img/loading.gif) no-repeat center center;
top: 0px; left: 0px;width: 100%;height:100%;">
</div>
</div>
<!-- Slides Container -->
<div u="slides" style="cursor: move; position: absolute; left: 0px; top: 0px; width: 600px; height: 300px; overflow: hidden;">
<div>
<a u="image" href="http://www.jssor.com/demos/image-slider.html"><img src="../img/photography/002.jpg" alt="image slider" /></a>
<div u=caption t="*" class="captionOrange" style="position:absolute; left:20px; top: 30px; width:300px; height:30px;">
mobile ready, touch swipe
</div>
</div>
<div>
<a u="image" href="http://www.jssor.com/demos/image-slider.html"><img src="../img/photography/003.jpg" alt="jqeury image slider" /></a>
<div u=caption t="*" class="captionOrange" style="position:absolute; left:20px; top: 30px; width:300px; height:30px;">
finger catchable right to left
</div>
</div>
<div>
<a u="image" href="http://www.jssor.com/demos/image-slider.html"><img src="../img/photography/004.jpg" alt="responsive image slider" /></a>
<div u=caption t="*" class="captionOrange" style="position:absolute; left:20px; top: 30px; width:300px; height:30px;">
responsive, scale smoothly
</div>
</div>
<div>
<a u="image" href="http://www.jssor.com/demos/image-slider.html"><img src="../img/photography/005.jpg" alt="touch swipe image slider" /></a>
<div u=caption t="*" class="captionOrange" style="position:absolute; left:20px; top: 30px; width:300px; height:30px;">
random caption transition
</div>
</div>
</div>
<!--#region Bullet Navigator Skin Begin -->
<!-- Help: http://www.jssor.com/development/slider-with-bullet-navigator-jquery.html -->
<!-- bullet navigator container -->
<div u="navigator" class="jssorb01" style="bottom: 16px; right: 10px;">
<!-- bullet navigator item prototype -->
<div u="prototype"></div>
</div>
<!--#endregion Bullet Navigator Skin End -->
<!--#region Arrow Navigator Skin Begin -->
<!-- Help: http://www.jssor.com/development/slider-with-arrow-navigator-jquery.html -->
<style>
/* jssor slider arrow navigator skin 02 css */
/*
.jssora02l (normal)
.jssora02r (normal)
.jssora02l:hover (normal mouseover)
.jssora02r:hover (normal mouseover)
.jssora02l.jssora02ldn (mousedown)
.jssora02r.jssora02rdn (mousedown)
*/
.jssora02l, .jssora02r {
display: block;
position: absolute;
/* size of arrow element */
width: 55px;
height: 55px;
cursor: pointer;
background: url(../img/a02.png) no-repeat;
overflow: hidden;
}
.jssora02l { background-position: -3px -33px; }
.jssora02r { background-position: -63px -33px; }
.jssora02l:hover { background-position: -123px -33px; }
.jssora02r:hover { background-position: -183px -33px; }
.jssora02l.jssora02ldn { background-position: -3px -33px; }
.jssora02r.jssora02rdn { background-position: -63px -33px; }
</style>
<!-- Arrow Left -->
<span u="arrowleft" class="jssora02l" style="top: 123px; left: 8px;">
</span>
<!-- Arrow Right -->
<span u="arrowright" class="jssora02r" style="top: 123px; right: 8px;">
</span>
<!--#endregion Arrow Navigator Skin End -->
<a style="display: none" href="http://www.jssor.com">Bootstrap Slider</a>
</div>
<!-- Jssor Slider End -->
<div u="caption" t="RTT*JUP|BR" t2="SPACESHIP|RB" style="position: absolute; left: 0px;top:30px;width:600px;height:30px;font-size:28px;color:#fff;line-height:30px; text-align: center;">
widely used image slider example
</div>
<div style="position: absolute; top: 110px; left: 640px; width: 320px; height: 250px;">
<div u="caption" t="TEAM_1" d="-200" du="50%" class="captionSymbol" style="position: absolute; top: 10px; left: 0px; width: 30px; height: 30px;">+</div>
<div u="caption" t="TEAM_1" d="-200" y="100%" class="captionOrange" style="position: absolute; top: 10px; left: 40px; width: 280px; height: 30px;">
mobile ready, drag move
</div>
<div u="caption" t="TEAM_1" d="-200" du="50%" class="captionSymbol" style="position: absolute; top: 60px; left: 0px; width: 30px; height: 30px;" debug-id="team-caption">+</div>
<div u="caption" t="TEAM_1" d="-200" y="50%" class="captionOrange" style="position: absolute; top: 60px; left: 40px; width: 280px; height: 30px;">
touch swipe, touch freeze
</div>
<div u="caption" t="TEAM_1" d="-200" du="50%" class="captionSymbol" style="position: absolute; top: 110px; left: 0px; width: 30px; height: 30px;">+</div>
<div u="caption" t="TEAM_1" d="-200" y="0" class="captionOrange" style="position: absolute; top: 110px; left: 40px; width: 280px; height: 30px;">
responsive, scale smoothly
</div>
<div u="caption" t="TEAM_1" d="-200" du="50%" class="captionSymbol" style="position: absolute; top: 160px; left: 0px; width: 30px; height: 30px;">+</div>
<div u="caption" t="TEAM_1" d="-200" y="-50%" class="captionOrange" style="position: absolute; top: 160px; left: 40px; width: 280px; height: 30px;">
random caption transition
</div>
<div u="caption" t="TEAM_1" d="-200" du="50%" class="captionSymbol" style="position: absolute; top: 210px; left: 0px; width: 30px; height: 30px;">+</div>
<div u="caption" t="TEAM_1" d="-200" y="-100%" class="captionOrange" style="position: absolute; top: 210px; left: 40px; width: 280px; height: 30px;">
arrow key navigation
</div>
</div>
</div>
<div>
<!-- Jssor Slider Begin -->
<!-- To move inline styles to css file/block, please specify a class name for each element. -->
<div id="slider2_container" style="position: relative; top: 30px; left: 360px; width: 600px;
height: 300px; overflow: hidden; border-radius: 8px; zoom: 1; filter: matrix">
<!-- Loading Screen -->
<div u="loading" style="position: absolute; top: 0px; left: 0px;">
<div style="filter: alpha(opacity=70); opacity:0.7; position: absolute; display: block;
background-color: #000; top: 0px; left: 0px;width: 100%;height:100%;">
</div>
<div style="position: absolute; display: block; background: url(../img/loading.gif) no-repeat center center;
top: 0px; left: 0px;width: 100%;height:100%;">
</div>
</div>
<!-- Slides Container -->
<div u="slides" style="cursor: move; position: absolute; left: 0px; top: 0px; width: 600px; height: 300px;
overflow: hidden;">
<div>
<a u=image href="http://www.jssor.com/demos/banner-rotator.html"><img src="../img/photography/002.jpg" alt="banner rotator" /></a>
<div u=caption t="*" class="captionOrange" style="position:absolute; left:20px; top: 30px; width:300px; height:30px;">
slideshow transition twins
</div>
</div>
<div>
<a u=image href="http://www.jssor.com/demos/banner-rotator.html"><img src="../img/photography/003.jpg" alt="jquery banner rotator" /></a>
<div u=caption t="*" class="captionOrange" style="position:absolute; left:20px; top: 30px; width:300px; height:30px;">
random caption transition
</div>
</div>
<div>
<a u=image href="http://www.jssor.com/demos/banner-rotator.html"><img src="../img/photography/004.jpg" alt="responsive banner rotator" /></a>
<div u=caption t="*" class="captionOrange" style="position:absolute; left:20px; top: 30px; width:300px; height:30px;">
mobile ready, touch swipe
</div>
</div>
<div>
<a u=image href="http://www.jssor.com/demos/banner-rotator.html"><img src="../img/photography/005.jpg" alt="touch swipe banner rotator" /></a>
<div u=caption t="*" class="captionOrange" style="position:absolute; left:20px; top: 30px; width:300px; height:30px;">
responsive, scale smoothly
</div>
</div>
</div>
<!--#region Bullet Navigator Skin Begin -->
<!-- Help: http://www.jssor.com/development/slider-with-bullet-navigator-jquery.html -->
<!-- bullet navigator container -->
<div u="navigator" class="jssorb01" style="bottom: 16px; right: 10px;">
<!-- bullet navigator item prototype -->
<div u="prototype"></div>
</div>
<!--#endregion Bullet Navigator Skin End -->
<!--#region Arrow Navigator Skin Begin -->
<!-- Arrow Left -->
<span u="arrowleft" class="jssora05l" style="top: 123px; left: 8px;">
</span>
<!-- Arrow Right -->
<span u="arrowright" class="jssora05r" style="top: 123px; right: 8px;">
</span>
<!--#endregion Arrow Navigator Skin End -->
<a style="display: none" href="http://www.jssor.com">Bootstrap Slider</a>
</div>
<!-- Jssor Slider End -->
<div u="caption" t="T|IE*IE" t2="B*IB" style="position: absolute; left: 360px;top:360px;width:600px;height:30px;font-size:28px;color:#fff;line-height:30px; text-align: center;">
worldwide popular banner rotator example
</div>
<a class="captionTextBlack" u="caption" t="CLIP|L" d="-200" href="http://www.jssor.com/development/tool-caption-transition-viewer.html"
style="position: absolute; top: 30px; left: 0px; width: 320px; height: 30px; font-size: 26px; background-color:transparent;">390+
caption transitions</a>
<div u="caption" t="ZM" t2="NO" style="position: absolute; top: 80px; left: 0px; width: 320px; height: 80px;">
<div u="caption" t2="TEAM_2" class="captionOrange" style="position: absolute; top: 0px; left: 0px; width: 200px; height: 30px;">
caption can be
</div>
<div u="caption" t2="TEAM_2" class="captionBlack" style="position: absolute; top: 40px; left: 0px; width: 100px; height: 30px;">
in team
</div>
<div u="caption" t2="TEAM_2" class="captionBlack" style="position: absolute; top: 40px; left: 130px; width: 100px; height: 30px;">
nested
</div>
</div>
<a class="captionTextBlack" u="caption" t="L|EP" href="http://www.jssor.com/development/tool-slideshow-transition-viewer.html"
style="position: absolute; top: 210px; left: 0px; width: 320px; height: 30px; font-size: 26px; background-color:transparent;">360+
slideshow transitions</a>
<div u="caption" t="B*IB" t2="NO" style="position: absolute; top: 260px; left: 0px; width: 320px; height: 80px;">
<div u="caption" t2="TEAM_2" class="captionOrange" style="position: absolute; top: 0px; left: 0px; width: 200px; height: 30px;">
slideshow can play
</div>
<div u="caption" t2="TEAM_2" class="captionBlack" style="position: absolute; top: 40px; left: 0px; width: 100px; height: 30px;">
inside
</div>
<div u="caption" t2="TEAM_2" class="captionBlack" style="position: absolute; top: 40px; left: 130px; width: 100px; height: 30px;">
outside
</div>
</div>
</div>
<div>
<!-- Jssor Slider Begin -->
<!-- To move inline styles to css file/block, please specify a class name for each element. -->
<div id="slider3_container" style="position: relative; top: 90px; left: 360px; width: 600px;
height: 300px; overflow: hidden; border-radius: 8px;">
<!-- Loading Screen -->
<div u="loading" style="position: absolute; top: 0px; left: 0px;">
<div style="filter: alpha(opacity=70); opacity:0.7; position: absolute; display: block;
background-color: #000; top: 0px; left: 0px;width: 100%;height:100%;">
</div>
<div style="position: absolute; display: block; background: url(../img/loading.gif) no-repeat center center;
top: 0px; left: 0px;width: 100%;height:100%;">
</div>
</div>
<!-- Slides Container -->
<div u="slides" style="cursor: move; position: absolute; left: 0px; top: 0px; width: 600px; height: 300px;
overflow: hidden;">
<div>
<a u=image href="http://www.jssor.com/demos/banner-slider.html"><img src="../img/photography/002.jpg" alt="banner slider" /></a>
<div u="thumb">Do you notice it is draggable by mouse/finger?</div>
</div>
<div>
<a u=image href="http://www.jssor.com/demos/banner-slider.html"><img src="../img/photography/003.jpg" alt="jquery banner slider" /></a>
<div u="thumb">Did you drag by either horizontal or vertical?</div>
</div>
<div>
<a u=image href="http://www.jssor.com/demos/banner-slider.html"><img src="../img/photography/004.jpg" alt="responsive banner slider" /></a>
<div u="thumb">Do you notice navigator responses when drag?</div>
</div>
<div>
<a u=image href="http://www.jssor.com/demos/banner-slider.html"><img src="../img/photography/005.jpg" alt="touch swipe banner slider" /></a>
<div u="thumb">Do you notice arrow responses when click?</div>
</div>
</div>
<!--#region Thumbnail Navigator Skin Begin -->
<!-- Help: http://www.jssor.com/development/slider-with-thumbnail-navigator-jquery.html -->
<!-- thumbnail navigator container -->
<div u="thumbnavigator" class="slider3-T" style="position: absolute; bottom: 0px; left: 0px; height:45px; width:600px;">
<div style="filter: alpha(opacity=40); opacity:0.4; position: absolute; display: block;
background-color: #000; top: 0px; left: 0px; width: 100%; height: 100%;">
</div>
<!-- Thumbnail Item Skin Begin -->
<div u="slides">
<div u="prototype" style="POSITION: absolute; WIDTH: 600px; HEIGHT: 45px; TOP: 0; LEFT: 0;">
<div u="thumbnailtemplate" style="font-family: verdana; font-weight: normal; POSITION: absolute; WIDTH: 100%; HEIGHT: 100%; TOP: 0; LEFT: 0; color:#fff; line-height: 45px; font-size:20px; padding-left:10px;"></div>
</div>
</div>
<!-- Thumbnail Item Skin End -->
</div>
<!--#endregion ThumbnailNavigator Skin End -->
<!--#region Bullet Navigator Skin Begin -->
<!-- Help: http://www.jssor.com/development/slider-with-bullet-navigator-jquery.html -->
<!-- bullet navigator container -->
<div u="navigator" class="jssorb01" style="bottom: 16px; right: 10px;">
<!-- bullet navigator item prototype -->
<div u="prototype"></div>
</div>
<!--#endregion Bullet Navigator Skin End -->
<!--#region Arrow Navigator Skin Begin -->
<!-- Arrow Left -->
<span u="arrowleft" class="jssora05l" style="top: 123px; left: 8px;">
</span>
<!-- Arrow Right -->
<span u="arrowright" class="jssora05r" style="top: 123px; right: 8px;">
</span>
<!--#endregion Arrow Navigator Skin End -->
<a style="display: none" href="http://www.jssor.com">Bootstrap Slider</a>
</div>
<!-- Jssor Slider End -->
<div u="caption" t="L*IB" t2="SPACESHIP|LB" style="position: absolute; left: 360px;top:30px;width:600px;height:30px;font-size:28px;color:#fff;line-height:30px; text-align: center;">
supper scalable banner slider example
</div>
<div class="captionTextBlack" u="caption" t="CLIP|LR" d="-200"
style="position: absolute; top: 60px; left: 0px; width: 320px; height: 30px; font-size: 26px; background-color:transparent;">deep ui comstomization</div>
<div u="caption" t2="ZM" style="position: absolute; top: 120px; left: 0px; width: 320px; height: 120px;">
<div u="caption" class="captionOrange" t="TEAM_2" t2="NO" d=-300 style="position: absolute; top: 0px; left: 0px; width: 200px; height: 30px;">
image thumbnail
</div>
<div u="caption" class="captionBlack" t="TEAM_2" t2="NO" d=-300 style="position: absolute; top: 40px; left: 0px; width: 200px; height: 30px;">
text thumbnail
</div>
<div u="caption" class="captionBlack" t="TEAM_2" t2="NO" d=-300 style="position: absolute; top: 80px; left: 00px; width: 200px; height: 30px;">
mixed thumbnail
</div>
</div>
<div u="caption" t="RTT|360" t2="NO" style="position: absolute; top: 290px; left: 0px; width: 320px; height: 80px;">
<div u="caption" class="captionOrange" t2="TEAM_2" style="position: absolute; top: 0px; left: 0px; width: 120px; height: 30px;">
bullets
</div>
<div u="caption" class="captionOrange" t2="TEAM_2" style="position: absolute; top: 40px; left: 0px; width: 120px; height: 30px;">
thumbnails
</div>
<div u="caption" class="captionBlack" t2="TEAM_2" style="position: absolute; top: 20px; left: 130px; width: 30px; height: 30px;">
in
</div>
<div u="caption" class="captionBlack" t2="TEAM_2" style="position: absolute; top: 0px; left: 170px; width: 120px; height: 30px;">
horizontal
</div>
<div u="caption" class="captionBlack" t2="TEAM_2" style="position: absolute; top: 40px; left: 170px; width: 120px; height: 30px;">
vertical
</div>
</div>
</div>
</div>
<!--#region Bullet Navigator Skin Begin -->
<!-- Help: http://www.jssor.com/development/slider-with-bullet-navigator-jquery.html -->
<style>
/* jssor slider bullet navigator skin 03 css */
/*
.jssorb03 div (normal)
.jssorb03 div:hover (normal mouseover)
.jssorb03 .av (active)
.jssorb03 .av:hover (active mouseover)
.jssorb03 .dn (mousedown)
*/
.jssorb03 {
position: absolute;
}
.jssorb03 div, .jssorb03 div:hover, .jssorb03 .av {
position: absolute;
/* size of bullet elment */
width: 21px;
height: 21px;
text-align: center;
line-height: 21px;
color: white;
font-size: 12px;
background: url(../img/b03.png) no-repeat;
overflow: hidden;
cursor: pointer;
}
.jssorb03 div { background-position: -5px -4px; }
.jssorb03 div:hover, .jssorb03 .av:hover { background-position: -35px -4px; }
.jssorb03 .av { background-position: -65px -4px; }
.jssorb03 .dn, .jssorb03 .dn:hover { background-position: -95px -4px; }
</style>
<!-- bullet navigator container -->
<div u="navigator" class="jssorb03" style="bottom: 16px; right: 6px;">
<!-- bullet navigator item prototype -->
<div u="prototype"><div u="numbertemplate"></div></div>
</div>
<!--#endregion Bullet Navigator Skin End -->
<!--#region Arrow Navigator Skin Begin -->
<!-- Help: http://www.jssor.com/development/slider-with-arrow-navigator-jquery.html -->
<style>
/* jssor slider arrow navigator skin 20 css */
/*
.jssora20l (normal)
.jssora20r (normal)
.jssora20l:hover (normal mouseover)
.jssora20r:hover (normal mouseover)
.jssora20l.jssora20ldn (mousedown)
.jssora20r.jssora20rdn (mousedown)
*/
.jssora20l, .jssora20r {
display: block;
position: absolute;
/* size of arrow element */
width: 55px;
height: 55px;
cursor: pointer;
background: url(../img/a20.png) no-repeat;
overflow: hidden;
}
.jssora20l { background-position: -3px -33px; }
.jssora20r { background-position: -63px -33px; }
.jssora20l:hover { background-position: -123px -33px; }
.jssora20r:hover { background-position: -183px -33px; }
.jssora20l.jssora20ldn { background-position: -243px -33px; }
.jssora20r.jssora20rdn { background-position: -303px -33px; }
</style>
<!-- Arrow Left -->
<span u="arrowleft" class="jssora20l" style="top: 123px; left: 8px;">
</span>
<!-- Arrow Right -->
<span u="arrowright" class="jssora20r" style="top: 123px; right: 8px;">
</span>
<!--#endregion Arrow Navigator Skin End -->
<a style="display: none" href="http://www.jssor.com">Bootstrap Slider</a>
</div>
<!-- Jssor Slider End -->
</div>
</body>
</html> | anawatom/lavandula | web/web-assets/jssorslider/demos-jquery/slider-cluster.source.html | HTML | bsd-3-clause | 66,045 |
<!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>Core Plot (iOS): Class Members - Properties</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="customdoxygen.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="core-plot-logo.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Core Plot (iOS)
</div>
<div id="projectbrief">Cocoa plotting framework for Mac OS X and iOS</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.6.1 -->
<script type="text/javascript" src="dynsections.js"></script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="modules.html"><span>Animation & Constants</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li class="current"><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="navrow3" class="tabs2">
<ul class="tablist">
<li><a href="functions.html"><span>All</span></a></li>
<li><a href="functions_func.html"><span>Functions</span></a></li>
<li><a href="functions_vars.html"><span>Variables</span></a></li>
<li class="current"><a href="functions_prop.html"><span>Properties</span></a></li>
</ul>
</div>
<div id="navrow4" class="tabs3">
<ul class="tablist">
<li><a href="functions_prop.html#index_a"><span>a</span></a></li>
<li><a href="functions_prop_0x62.html#index_b"><span>b</span></a></li>
<li><a href="functions_prop_0x63.html#index_c"><span>c</span></a></li>
<li><a href="functions_prop_0x64.html#index_d"><span>d</span></a></li>
<li><a href="functions_prop_0x65.html#index_e"><span>e</span></a></li>
<li><a href="functions_prop_0x66.html#index_f"><span>f</span></a></li>
<li><a href="functions_prop_0x67.html#index_g"><span>g</span></a></li>
<li><a href="functions_prop_0x68.html#index_h"><span>h</span></a></li>
<li><a href="functions_prop_0x69.html#index_i"><span>i</span></a></li>
<li><a href="functions_prop_0x6c.html#index_l"><span>l</span></a></li>
<li><a href="functions_prop_0x6d.html#index_m"><span>m</span></a></li>
<li><a href="functions_prop_0x6e.html#index_n"><span>n</span></a></li>
<li><a href="functions_prop_0x6f.html#index_o"><span>o</span></a></li>
<li><a href="functions_prop_0x70.html#index_p"><span>p</span></a></li>
<li><a href="functions_prop_0x72.html#index_r"><span>r</span></a></li>
<li><a href="functions_prop_0x73.html#index_s"><span>s</span></a></li>
<li><a href="functions_prop_0x74.html#index_t"><span>t</span></a></li>
<li><a href="functions_prop_0x75.html#index_u"><span>u</span></a></li>
<li><a href="functions_prop_0x76.html#index_v"><span>v</span></a></li>
<li><a href="functions_prop_0x78.html#index_x"><span>x</span></a></li>
<li class="current"><a href="functions_prop_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('functions_prop_0x79.html','');
</script>
<div id="doc-content">
<div class="contents">
 
<h3><a class="anchor" id="index_y"></a>- y -</h3><ul>
<li>yAxis
: <a class="el" href="interface_c_p_t_x_y_axis_set.html#ac3aebb225f7c85d743369575db5b15ac">CPTXYAxisSet</a>
</li>
<li>yRange
: <a class="el" href="interface_c_p_t_x_y_plot_space.html#a26ded2764b895a4c656136b581f8d67c">CPTXYPlotSpace</a>
</li>
<li>yScaleType
: <a class="el" href="interface_c_p_t_x_y_plot_space.html#a5713690a3015d43e5136a751d7c3635d">CPTXYPlotSpace</a>
</li>
</ul>
</div><!-- contents -->
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="footer">Generated by <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a></li>
</ul>
</div>
</body>
</html>
| escoz/core-plot | documentation/html/iOS/functions_prop_0x79.html | HTML | bsd-3-clause | 5,295 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<TITLE>
Uses of Class org.apache.poi.hwmf.record.HwmfText.WmfSetTextJustification (POI API Documentation)
</TITLE>
<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 org.apache.poi.hwmf.record.HwmfText.WmfSetTextJustification (POI API Documentation)";
}
}
</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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/poi/hwmf/record/HwmfText.WmfSetTextJustification.html" title="class in org.apache.poi.hwmf.record"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/poi/hwmf/record/\class-useHwmfText.WmfSetTextJustification.html" target="_top"><B>FRAMES</B></A>
<A HREF="HwmfText.WmfSetTextJustification.html" target="_top"><B>NO FRAMES</B></A>
<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>org.apache.poi.hwmf.record.HwmfText.WmfSetTextJustification</B></H2>
</CENTER>
No usage of org.apache.poi.hwmf.record.HwmfText.WmfSetTextJustification
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/poi/hwmf/record/HwmfText.WmfSetTextJustification.html" title="class in org.apache.poi.hwmf.record"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/poi/hwmf/record/\class-useHwmfText.WmfSetTextJustification.html" target="_top"><B>FRAMES</B></A>
<A HREF="HwmfText.WmfSetTextJustification.html" target="_top"><B>NO FRAMES</B></A>
<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>
<i>Copyright 2016 The Apache Software Foundation or
its licensors, as applicable.</i>
</BODY>
</HTML>
| Sebaxtian/KDD | poi-3.14/docs/apidocs/org/apache/poi/hwmf/record/class-use/HwmfText.WmfSetTextJustification.html | HTML | mit | 6,359 |
---
layout: post
authors: ["Jeff Carver"]
title: "Test-Driven Development in Scientific Computing"
date: 2014-01-07
time: "12:30:00"
category: ["Research"]
---
<p>
Aziz Nanthaamornphong and Dr. Jeffrey Carver
at the University of Alabama
are conducting a survey of software development practices among computational scientists.
This survey seeks to understand test-driven development in computational science and engineering domains,
and should take approximately 15 minutes to complete.
The survey can be found at:
</p>
<blockquote>
<a href="http://goo.gl/9T2BIq">http://goo.gl/9T2BIq</a>
</blockquote>
<p>
This survey study has been approved by the University of Alabama Institutional Review Board (IRB);
for questions contact <a href="mailto:carver_at_cs_dot_ua_dot_edu">Jeffrey Carver</a>.
</p>
<!--more-->
| ErinBecker/website | _posts/2014/01/2014-01-07-tdd-in-science.html | HTML | mit | 829 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Type definition year_based_generator</title>
<link rel="stylesheet" href="../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
<link rel="home" href="../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
<link rel="up" href="../../date_time/doxy.html#header.boost.date_time.gregorian.gregorian_types_hpp" title="Header <boost/date_time/gregorian/gregorian_types.hpp>">
<link rel="prev" href="greg_year.html" title="Class greg_year">
<link rel="next" href="special_value_from_string.html" title="Function special_value_from_string">
</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="greg_year.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../date_time/doxy.html#header.boost.date_time.gregorian.gregorian_types_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="special_value_from_string.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.gregorian.year_based_generator"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Type definition year_based_generator</span></h2>
<p>year_based_generator — A unifying date_generator base type. </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: <<a class="link" href="../../date_time/doxy.html#header.boost.date_time.gregorian.gregorian_types_hpp" title="Header <boost/date_time/gregorian/gregorian_types.hpp>">boost/date_time/gregorian/gregorian_types.hpp</a>>
</span>
<span class="keyword">typedef</span> <span class="identifier">date_time</span><span class="special">::</span><span class="identifier">year_based_generator</span><span class="special"><</span> <a class="link" href="date.html" title="Class date">date</a> <span class="special">></span> <span class="identifier">year_based_generator</span><span class="special">;</span></pre></div>
<div class="refsect1">
<a name="id-1.3.14.15.4.19.4.4"></a><h2>Description</h2>
<p>A unifying date_generator base type for: partial_date, nth_day_of_the_week_in_month, first_day_of_the_week_in_month, and last_day_of_the_week_in_month </p>
</div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2001-2005 CrystalClear Software, Inc<p>Subject to the Boost Software License, Version 1.0. (See accompanying file
<code class="filename">LICENSE_1_0.txt</code> 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="greg_year.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../date_time/doxy.html#header.boost.date_time.gregorian.gregorian_types_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="special_value_from_string.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
| nawawi/poedit | deps/boost/doc/html/boost/gregorian/year_based_generator.html | HTML | mit | 4,433 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.