text
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><html lang=en><head><title>Redirecting…</title><link rel=canonical href=/v1.5/pt-br/docs/concepts/what-is-istio/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=/v1.5/pt-br/docs/concepts/what-is-istio/"></head><body><h1>Redirecting…</h1><a href=/v1.5/pt-br/docs/concepts/what-is-istio/>Click here if you are not redirected.</a></body></html> | istio/istio.io | archive/v1.5/docs/concepts/what-is-istio/overview/index.html | HTML | apache-2.0 | 415 |
<!DOCTYPE html>
<html>
<body>
<h1>Hello WAMP/Browser - backend</h1>
<p>Open JavaScript console to watch output.</p>
<script>AUTOBAHN_DEBUG = false;</script>
<script src="/shared/autobahn/autobahn.min.js"></script>
<script>
// the URL of the WAMP Router (Crossbar.io)
//
var wsuri;
if (document.location.origin == "file://") {
wsuri = "ws://127.0.0.1:8080/ws";
} else {
wsuri = (document.location.protocol === "http:" ? "ws:" : "wss:") + "//" +
document.location.host + "/ws";
}
// the WAMP connection to the Router
//
var connection = new autobahn.Connection({
url: wsuri,
realm: "realm1"
});
// timers
//
var t1, t2;
// fired when connection is established and session attached
//
connection.onopen = function (session, details) {
console.log("Connected");
// SUBSCRIBE to a topic and receive events
//
function onhello (args) {
var msg = args[0];
console.log("event for 'onhello' received: " + msg);
}
session.subscribe('com.example.onhello', onhello).then(
function (sub) {
console.log("subscribed to topic 'onhello'");
},
function (err) {
console.log("failed to subscribed: " + err);
}
);
// REGISTER a procedure for remote calling
//
function add2 (args) {
var x = args[0];
var y = args[1];
console.log("add2() called with " + x + " and " + y);
return x + y;
}
session.register('com.example.add2', add2).then(
function (reg) {
console.log("procedure add2() registered");
},
function (err) {
console.log("failed to register procedure: " + err);
}
);
// PUBLISH and CALL every second .. forever
//
var counter = 0;
setInterval(function () {
// PUBLISH an event
//
session.publish('com.example.oncounter', [counter]);
console.log("published to 'oncounter' with counter " + counter);
// CALL a remote procedure
//
session.call('com.example.mul2', [counter, 3]).then(
function (res) {
console.log("mul2() called with result: " + res);
},
function (err) {
if (err.error !== 'wamp.error.no_such_procedure') {
console.log('call of mul2() failed: ' + err);
}
}
);
counter += 1;
}, 1000);
};
// fired when connection was lost (or could not be established)
//
connection.onclose = function (reason, details) {
console.log("Connection lost: " + reason);
if (t1) {
clearInterval(t1);
t1 = null;
}
if (t2) {
clearInterval(t2);
t2 = null;
}
}
// now actually open the connection
//
connection.open();
</script>
</body>
</html>
| crossbario/crossbar-examples | hello/browser/web/backend.html | HTML | apache-2.0 | 3,581 |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>ip::address::from_string</title>
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="../../../boost_asio.html" title="Boost.Asio">
<link rel="up" href="../ip__address.html" title="ip::address">
<link rel="prev" href="address/overload4.html" title="ip::address::address (4 of 4 overloads)">
<link rel="next" href="from_string/overload1.html" title="ip::address::from_string (1 of 4 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="address/overload4.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../ip__address.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="from_string/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.ip__address.from_string"></a><a class="link" href="from_string.html" title="ip::address::from_string">ip::address::from_string</a>
</h4></div></div></div>
<p>
<a class="indexterm" name="idp85561320"></a>
Create an address from an IPv4 address string in
dotted decimal form, or from an IPv6 address in hexadecimal notation.
</p>
<pre class="programlisting"><span class="keyword">static</span> <span class="identifier">address</span> <a class="link" href="from_string/overload1.html" title="ip::address::from_string (1 of 4 overloads)">from_string</a><span class="special">(</span>
<span class="keyword">const</span> <span class="keyword">char</span> <span class="special">*</span> <span class="identifier">str</span><span class="special">);</span>
<span class="emphasis"><em>» <a class="link" href="from_string/overload1.html" title="ip::address::from_string (1 of 4 overloads)">more...</a></em></span>
<span class="keyword">static</span> <span class="identifier">address</span> <a class="link" href="from_string/overload2.html" title="ip::address::from_string (2 of 4 overloads)">from_string</a><span class="special">(</span>
<span class="keyword">const</span> <span class="keyword">char</span> <span class="special">*</span> <span class="identifier">str</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="from_string/overload2.html" title="ip::address::from_string (2 of 4 overloads)">more...</a></em></span>
<span class="keyword">static</span> <span class="identifier">address</span> <a class="link" href="from_string/overload3.html" title="ip::address::from_string (3 of 4 overloads)">from_string</a><span class="special">(</span>
<span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <span class="special">&</span> <span class="identifier">str</span><span class="special">);</span>
<span class="emphasis"><em>» <a class="link" href="from_string/overload3.html" title="ip::address::from_string (3 of 4 overloads)">more...</a></em></span>
<span class="keyword">static</span> <span class="identifier">address</span> <a class="link" href="from_string/overload4.html" title="ip::address::from_string (4 of 4 overloads)">from_string</a><span class="special">(</span>
<span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <span class="special">&</span> <span class="identifier">str</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="from_string/overload4.html" title="ip::address::from_string (4 of 4 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="address/overload4.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../ip__address.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="from_string/overload1.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
| NixaSoftware/CVis | venv/bin/doc/html/boost_asio/reference/ip__address/from_string.html | HTML | apache-2.0 | 6,168 |
{% extends "layout.html" %}
{% import '_macros/activity_log.html' as activity_log %}
{% set show_company_breakdown = (not company) and (not user_id) %}
{% set show_engineer_breakdown = (not user_id) %}
{% set show_bp_breakdown = (metric in ['bpd', 'bpc']) %}
{% set show_module_breakdown = (not module) %}
{% set show_user_activity = (user_id) %}
{% set show_module_activity = (module) and (not user_id) %}
{% set show_activity = (show_user_activity) or (show_module_activity) %}
{% set show_user_contribution = (user_id) or (company) %}
{% set show_module_contribution = (module) and (not user_id) %}
{% set show_contribution = (show_user_contribution) or (show_module_contribution) %}
{% set show_user_profile = (user_id) %}
{% set show_top_mentors_options = (metric == 'tm_marks') %}
{% set show_review_ratio = (metric in ['marks', 'tm_marks']) %}
{% block scripts %}
<script type="text/javascript">
renderTimeline();
{% if show_company_breakdown %}
renderTableAndChart("/api/1.0/stats/companies", "company_container", "company_table", "company_chart", "company");
{% endif %}
{% if show_engineer_breakdown %}
{% if show_review_ratio %}
renderTableAndChart("/api/1.0/stats/engineers", "engineer_container", "engineer_table", "engineer_chart", "user_id",
["index", "link", "mark_ratio", "metric"]);
{% else %}
renderTableAndChart("/api/1.0/stats/engineers", "engineer_container", "engineer_table", "engineer_chart", "user_id");
{% endif %}
{% endif %}
{% if show_bp_breakdown %}
renderTableAndChart("/api/1.0/stats/bp", "bp_container", "bp_table", "bp_chart", "name",
["index", "link", "status", "date", "metric"]);
{% endif %}
{% if show_module_breakdown %}
renderTableAndChart("/api/1.0/stats/modules", "module_container", "module_table", "module_chart", "module");
{% endif %}
{% if show_user_profile %}
$(document).ready(function () {
$.ajax({
url: make_uri("/api/1.0/users/{{ user_id }}"),
dataType: "json",
success: function (data) {
$("#user_profile_template").tmpl(data["user"]).appendTo("#user_profile_container");
}
});
});
{% endif %}
{% if show_contribution %}
$(document).ready(function () {
$.ajax({
url: make_uri("/api/1.0/contribution"),
dataType: "json",
success: function (data) {
$("#contribution_template").tmpl(data["contribution"]).appendTo("#contribution_container");
}
});
});
{% endif %}
</script>
{# Templates #}
<script id="user_profile_template" type="text/x-jquery-tmpl">
{% raw %}
<div>
<div style="float: left;"><img src="${gravatar}"></div>
<div style="margin-left: 90px;">
<h2>${user_name}</h2>
<div>Company: {%html company_link %}
[<span style="font-style: italic;"><a
href="https://wiki.openstack.org/wiki/Stackalytics#Company_affiliation" style="color: grey" target="_blank">how to change↗</a></span>]
</div>
{%if launchpad_id != '' %}
<div>Launchpad: <a href="https://launchpad.net/~${launchpad_id}">${launchpad_id}</a></div>
{%/if%}
</div>
</div>
{% endraw %}
</script>
<script id="contribution_template" type="text/x-jquery-tmpl">
{% raw %}
<h2>Contribution Summary</h2>
<div>Total commits: <b>${commit_count}</b></div>
<div>Total LOC: <b>${loc}</b></div>
<div>Review stat (-2, -1, +1, +2, A): <b>${marks["-2"]}, ${marks["-1"]}, ${marks["1"]}, ${marks["2"]}, ${marks["A"]}</b></div>
{% endraw %}
<div>Draft Blueprints: <b>${drafted_blueprint_count}</b></div>
<div>Completed Blueprints: <b>${completed_blueprint_count}</b></div>
<div>Emails: <b>${email_count}</b></div>
{% if module %}
<div><b><a href="/report/reviews/{{ module }}/open" target="_blank">Show open reviews for {{ module }}↗</a></b></div>
<div><b><a href="/report/contribution/{{ module }}/30" target="_blank">Contribution for the last 30 days in {{ module }}↗</a></b></div>
<div><b><a href="/report/contribution/{{ module }}/90" target="_blank">Contribution for the last 90 days in {{ module }}↗</a></b></div>
{% endif %}
{% if company %}
<div><b><a href="/report/companies/{{ company }}" target="_blank">Show activity report for {{ company_original }}↗</a></b></div>
{% endif %}
{% if user_id %}
<div><b><a href="/report/users/{{ user_id }}" target="_blank">Show activity report for {{ user_id }}↗</a></b></div>
{% endif %}
</script>
{% endblock %}
{% block report_options %}
{% if show_top_mentors_options %}
<script type='text/javascript'>
$(document).ready(function () {
$('#review_nth').val('{{ review_nth }}');
$("#review_nth").select2();
});
function make_options() {
var options = make_std_options();
options['review_nth'] = $('#review_nth').val();
return options;
}
function reload() {
window.location.search = $.map(make_options(),function (val, index) {
return index + "=" + val;
}).join("&")
}
$(document).on('change', '#review_nth', function (evt) {
reload();
});
</script>
<div class="drop" style="margin-top: 1em;">
<label for="review_nth">Aggregate stats for first # reviews</label>
<select id="review_nth" name="review_nth"
style="min-width: 140px;"
data-placeholder="Select review #">
<option></option>
{% set review_number_options = [1, 2, 3, 4, 5, 10, 15] %}
{% for option in review_number_options %}
<option value="{{ option }}">{{ option }}</option>
{% endfor %}
</select>
</div>
{% endif %}
{% endblock %}
{% block left_frame %}
{% if show_company_breakdown %}
<div id="company_container">
<h2>Contribution by companies</h2>
<div id="company_chart" style="width: 100%; height: 350px; margin-bottom: 1em;"></div>
<table id="company_table" class="display">
<thead>
<tr>
<th>#</th>
<th>Company</th>
<th>{{ metric_label }}</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<div class="spacer"></div>
</div>
{% endif %}
{% if show_engineer_breakdown %}
<div id="engineer_container">
<h2>Contribution by engineers</h2>
<div id="engineer_chart" style="width: 100%; height: 350px; margin-bottom: 1em;"></div>
<table id="engineer_table" class="display">
<thead>
<tr>
<th>#</th>
<th>Engineer</th>
{% if show_review_ratio %}
<th>-2|-1|+1|+2|A (+/- ratio)</th>
{% endif %}
<th>{{ metric_label }}</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<div class="spacer"></div>
</div>
{% endif %}
{% if show_user_profile %}
<div id="user_profile_container" style="margin-bottom: 2em;"></div>
{% endif %}
{% if show_user_activity %}
{{ activity_log.show_activity_log(gravatar_size=32, show_all=False) }}
{% endif %}
{% if show_module_contribution %}
<div id="contribution_container"></div>
{% endif %}
{% endblock %}
{% block right_frame %}
{% if show_module_breakdown %}
<div id="module_container">
<h2>Contribution by modules</h2>
<div id="module_chart" style="width: 100%; height: 350px; margin-bottom: 1em;"></div>
<table id="module_table" class="display">
<thead>
<tr>
<th>#</th>
<th>Module</th>
<th>{{ metric_label }}</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<div class="spacer"></div>
</div>
{% endif %}
{% if show_bp_breakdown %}
<div id="bp_container">
<h2>Blueprint popularity</h2>
<div style="font-style: italic;">
This metric shows how many times a blueprint was mentioned in emails and commit messages.
</div>
<div id="bp_chart" style="width: 100%; height: 350px; margin-bottom: 1em;"></div>
<table id="bp_table" class="display">
<thead>
<tr>
<th>#</th>
<th>Blueprint</th>
<th>Status</th>
<th>Date</th>
<th>Mentions</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<div class="spacer"></div>
</div>
{% endif %}
{% if show_user_contribution %}
<div id="contribution_container"></div>
{% endif %}
{% if show_module_activity %}
{{ activity_log.show_activity_log(gravatar_size=32, show_all=False) }}
{% endif %}
{% endblock %}
| tellesnobrega/stackalytics | dashboard/templates/overview.html | HTML | apache-2.0 | 9,219 |
<?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" lang="en-us" xml:lang="en-us">
<!--
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.
-->
<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="reference" name="DC.Type" />
<meta name="DC.Title" content="password=userPassword attribute" />
<meta content="password=userPassword database connection URL attribute" name="DC.subject" />
<meta content="password=userPassword database connection URL attribute" name="keywords" />
<meta scheme="URI" name="DC.Relation" content="rrefattrib24612.html" />
<meta content="XHTML" name="DC.Format" />
<meta content="rrefattrib42686" name="DC.Identifier" />
<meta content="en-us" name="DC.Language" />
<link href="commonltr.css" type="text/css" rel="stylesheet" />
<title>password=userPassword attribute</title>
</head>
<body id="rrefattrib42686"><a name="rrefattrib42686"><!-- --></a>
<h1 class="topictitle1">password=userPassword attribute</h1>
<div>
<div class="section"><h2 class="sectiontitle">Function</h2> <p>A valid password for the given user name. </p>
</div>
<div class="section"><h2 class="sectiontitle">Combining with other attributes</h2> <p>Use
in conjunction with the <em><a href="rrefattrib10035.html#rrefattrib10035">user=userName</a></em> attribute.</p>
</div>
<div class="example"><h2 class="sectiontitle">Example</h2>
<pre><strong>jdbc:derby:toursDB;user=jack;password=upTheHill</strong></pre>
</div>
</div>
<div>
<div class="familylinks">
<div class="parentlink"><strong>Parent topic:</strong> <a href="rrefattrib24612.html" title="Derby allows you to supply a list of attributes to its database connection URL, which is a JDBC feature.">Setting attributes for the database connection URL</a></div>
</div>
</div>
</body>
</html>
| Kerensky256/Database | docs/html/ref/rrefattrib42686.html | HTML | apache-2.0 | 3,136 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<title>RawDataBlock (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="RawDataBlock (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/RawDataBlock.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/poifs/storage/PropertyBlock.html" title="class in org.apache.poi.poifs.storage"><span class="strong">PREV CLASS</span></a></li>
<li><a href="../../../../../org/apache/poi/poifs/storage/RawDataBlockList.html" title="class in org.apache.poi.poifs.storage"><span class="strong">NEXT CLASS</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/poi/poifs/storage/RawDataBlock.html" target="_top">FRAMES</a></li>
<li><a href="RawDataBlock.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><a href="#constructor_summary">CONSTR</a> | </li>
<li><a href="#method_summary">METHOD</a></li>
</ul>
<ul class="subNavList">
<li>DETAIL: </li>
<li>FIELD | </li>
<li><a href="#constructor_detail">CONSTR</a> | </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.poifs.storage</p>
<h2 title="Class RawDataBlock" class="title">Class RawDataBlock</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>org.apache.poi.poifs.storage.RawDataBlock</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><a href="../../../../../org/apache/poi/poifs/storage/ListManagedBlock.html" title="interface in org.apache.poi.poifs.storage">ListManagedBlock</a></dd>
</dl>
<hr>
<br>
<pre>public class <strong>RawDataBlock</strong>
extends java.lang.Object
implements <a href="../../../../../org/apache/poi/poifs/storage/ListManagedBlock.html" title="interface in org.apache.poi.poifs.storage">ListManagedBlock</a></pre>
<div class="block">A big block created from an InputStream, holding the raw data</div>
<dl><dt><span class="strong">Author:</span></dt>
<dd>Marc Johnson (mjohnson at apache dot org</dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" 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><strong><a href="../../../../../org/apache/poi/poifs/storage/RawDataBlock.html#RawDataBlock(java.io.InputStream)">RawDataBlock</a></strong>(java.io.InputStream stream)</code>
<div class="block">Constructor RawDataBlock</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><strong><a href="../../../../../org/apache/poi/poifs/storage/RawDataBlock.html#RawDataBlock(java.io.InputStream, int)">RawDataBlock</a></strong>(java.io.InputStream stream,
int blockSize)</code>
<div class="block">Constructor RawDataBlock</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="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>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/poifs/storage/RawDataBlock.html#eof()">eof</a></strong>()</code>
<div class="block">When we read the data, did we hit end of file?</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/poifs/storage/RawDataBlock.html#getBigBlockSize()">getBigBlockSize</a></strong>()</code>
<div class="block">What's the big block size?</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>byte[]</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/poifs/storage/RawDataBlock.html#getData()">getData</a></strong>()</code>
<div class="block">Get the data from the block</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/poifs/storage/RawDataBlock.html#hasData()">hasData</a></strong>()</code>
<div class="block">Did we actually find any data to read? It's possible,
in the event of a short last block, to both have hit
the EoF, but also to have data</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/poifs/storage/RawDataBlock.html#toString()">toString</a></strong>()</code> </td>
</tr>
</table>
<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, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="RawDataBlock(java.io.InputStream)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>RawDataBlock</h4>
<pre>public RawDataBlock(java.io.InputStream stream)
throws java.io.IOException</pre>
<div class="block">Constructor RawDataBlock</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>stream</code> - the InputStream from which the data will be read</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code> - on I/O errors, and if an insufficient
amount of data is read (the InputStream must
be an exact multiple of the block size)</dd></dl>
</li>
</ul>
<a name="RawDataBlock(java.io.InputStream, int)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>RawDataBlock</h4>
<pre>public RawDataBlock(java.io.InputStream stream,
int blockSize)
throws java.io.IOException</pre>
<div class="block">Constructor RawDataBlock</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>stream</code> - the InputStream from which the data will be read</dd><dd><code>blockSize</code> - the size of the POIFS blocks, normally 512 bytes
<a href="../../../../../org/apache/poi/poifs/common/POIFSConstants.html#SMALLER_BIG_BLOCK_SIZE"><code>POIFSConstants.SMALLER_BIG_BLOCK_SIZE</code></a></dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code> - on I/O errors, and if an insufficient
amount of data is read (the InputStream must
be an exact multiple of the block size)</dd></dl>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="eof()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>eof</h4>
<pre>public boolean eof()</pre>
<div class="block">When we read the data, did we hit end of file?</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>true if the EoF was hit during this block, or
false if not. If you have a dodgy short last block, then
it's possible to both have data, and also hit EoF...</dd></dl>
</li>
</ul>
<a name="hasData()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>hasData</h4>
<pre>public boolean hasData()</pre>
<div class="block">Did we actually find any data to read? It's possible,
in the event of a short last block, to both have hit
the EoF, but also to have data</div>
</li>
</ul>
<a name="toString()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>toString</h4>
<pre>public java.lang.String toString()</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code>toString</code> in class <code>java.lang.Object</code></dd>
</dl>
</li>
</ul>
<a name="getData()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getData</h4>
<pre>public byte[] getData()
throws java.io.IOException</pre>
<div class="block">Get the data from the block</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../../../org/apache/poi/poifs/storage/ListManagedBlock.html#getData()">getData</a></code> in interface <code><a href="../../../../../org/apache/poi/poifs/storage/ListManagedBlock.html" title="interface in org.apache.poi.poifs.storage">ListManagedBlock</a></code></dd>
<dt><span class="strong">Returns:</span></dt><dd>the block's data as a byte array</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code> - if there is no data</dd></dl>
</li>
</ul>
<a name="getBigBlockSize()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getBigBlockSize</h4>
<pre>public int getBigBlockSize()</pre>
<div class="block">What's the big block size?</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/RawDataBlock.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/poifs/storage/PropertyBlock.html" title="class in org.apache.poi.poifs.storage"><span class="strong">PREV CLASS</span></a></li>
<li><a href="../../../../../org/apache/poi/poifs/storage/RawDataBlockList.html" title="class in org.apache.poi.poifs.storage"><span class="strong">NEXT CLASS</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/poi/poifs/storage/RawDataBlock.html" target="_top">FRAMES</a></li>
<li><a href="RawDataBlock.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><a href="#constructor_summary">CONSTR</a> | </li>
<li><a href="#method_summary">METHOD</a></li>
</ul>
<ul class="subNavList">
<li>DETAIL: </li>
<li>FIELD | </li>
<li><a href="#constructor_detail">CONSTR</a> | </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/poifs/storage/RawDataBlock.html | HTML | apache-2.0 | 14,026 |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Class template splaytree</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="../../intrusive/reference.html#header.boost.intrusive.splaytree_hpp" title="Header <boost/intrusive/splaytree.hpp>">
<link rel="prev" href="splay_set_member_hook.html" title="Class template splay_set_member_hook">
<link rel="next" href="make_splaytree.html" title="Struct template make_splaytree">
</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="splay_set_member_hook.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../intrusive/reference.html#header.boost.intrusive.splaytree_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="make_splaytree.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.intrusive.splaytree"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Class template splaytree</span></h2>
<p>boost::intrusive::splaytree</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="../../intrusive/reference.html#header.boost.intrusive.splaytree_hpp" title="Header <boost/intrusive/splaytree.hpp>">boost/intrusive/splaytree.hpp</a>>
</span><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">,</span> <span class="keyword">class</span><span class="special">...</span> Options<span class="special">></span>
<span class="keyword">class</span> <a class="link" href="splaytree.html" title="Class template splaytree">splaytree</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">Config</span><span class="special">::</span><span class="identifier">value_traits</span> <a name="boost.intrusive.splaytree.value_traits"></a><span class="identifier">value_traits</span><span class="special">;</span>
<span class="keyword">typedef</span> <span class="identifier">real_value_traits</span><span class="special">::</span><span class="identifier">pointer</span> <a name="boost.intrusive.splaytree.pointer"></a><span class="identifier">pointer</span><span class="special">;</span>
<span class="keyword">typedef</span> <span class="identifier">real_value_traits</span><span class="special">::</span><span class="identifier">const_pointer</span> <a name="boost.intrusive.splaytree.const_pointer"></a><span class="identifier">const_pointer</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="pointer_traits.html" title="Struct template pointer_traits">pointer_traits</a><span class="special"><</span> <span class="identifier">pointer</span> <span class="special">></span><span class="special">::</span><span class="identifier">element_type</span> <a name="boost.intrusive.splaytree.value_type"></a><span class="identifier">value_type</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="pointer_traits.html" title="Struct template pointer_traits">pointer_traits</a><span class="special"><</span> <span class="identifier">pointer</span> <span class="special">></span><span class="special">::</span><span class="identifier">reference</span> <a name="boost.intrusive.splaytree.reference"></a><span class="identifier">reference</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="pointer_traits.html" title="Struct template pointer_traits">pointer_traits</a><span class="special"><</span> <span class="identifier">const_pointer</span> <span class="special">></span><span class="special">::</span><span class="identifier">reference</span> <a name="boost.intrusive.splaytree.const_reference"></a><span class="identifier">const_reference</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="pointer_traits.html" title="Struct template pointer_traits">pointer_traits</a><span class="special"><</span> <span class="identifier">pointer</span> <span class="special">></span><span class="special">::</span><span class="identifier">difference_type</span> <a name="boost.intrusive.splaytree.difference_type"></a><span class="identifier">difference_type</span><span class="special">;</span>
<span class="keyword">typedef</span> <span class="identifier">Config</span><span class="special">::</span><span class="identifier">size_type</span> <a name="boost.intrusive.splaytree.size_type"></a><span class="identifier">size_type</span><span class="special">;</span>
<span class="keyword">typedef</span> <span class="identifier">value_type</span> <a name="boost.intrusive.splaytree.key_type"></a><span class="identifier">key_type</span><span class="special">;</span>
<span class="keyword">typedef</span> <span class="identifier">Config</span><span class="special">::</span><span class="identifier">compare</span> <a name="boost.intrusive.splaytree.value_compare"></a><span class="identifier">value_compare</span><span class="special">;</span>
<span class="keyword">typedef</span> <span class="identifier">value_compare</span> <a name="boost.intrusive.splaytree.key_compare"></a><span class="identifier">key_compare</span><span class="special">;</span>
<span class="keyword">typedef</span> <span class="identifier">tree_iterator</span><span class="special"><</span> <a class="link" href="splaytree.html" title="Class template splaytree">splaytree</a><span class="special">,</span> <span class="keyword">false</span> <span class="special">></span> <a name="boost.intrusive.splaytree.iterator"></a><span class="identifier">iterator</span><span class="special">;</span>
<span class="keyword">typedef</span> <span class="identifier">tree_iterator</span><span class="special"><</span> <a class="link" href="splaytree.html" title="Class template splaytree">splaytree</a><span class="special">,</span> <span class="keyword">true</span> <span class="special">></span> <a name="boost.intrusive.splaytree.const_iterator"></a><span class="identifier">const_iterator</span><span class="special">;</span>
<span class="keyword">typedef</span> <span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a name="boost.intrusive.splaytree.reverse_iterator"></a><span class="identifier">reverse_iterator</span><span class="special">;</span>
<span class="keyword">typedef</span> <span class="emphasis"><em><span class="identifier">unspecified</span></em></span> <a name="boost.intrusive.splaytree.const_reverse_iterator"></a><span class="identifier">const_reverse_iterator</span><span class="special">;</span>
<span class="keyword">typedef</span> <span class="identifier">real_value_traits</span><span class="special">::</span><span class="identifier">node_traits</span> <a name="boost.intrusive.splaytree.node_traits"></a><span class="identifier">node_traits</span><span class="special">;</span>
<span class="keyword">typedef</span> <span class="identifier">node_traits</span><span class="special">::</span><span class="identifier">node</span> <a name="boost.intrusive.splaytree.node"></a><span class="identifier">node</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="pointer_traits.html" title="Struct template pointer_traits">pointer_traits</a><span class="special"><</span> <span class="identifier">pointer</span> <span class="special">></span><span class="special">::</span><span class="keyword">template</span> <span class="identifier">rebind_pointer</span><span class="special"><</span> <span class="identifier">node</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <a name="boost.intrusive.splaytree.node_ptr"></a><span class="identifier">node_ptr</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="pointer_traits.html" title="Struct template pointer_traits">pointer_traits</a><span class="special"><</span> <span class="identifier">pointer</span> <span class="special">></span><span class="special">::</span><span class="keyword">template</span> <span class="identifier">rebind_pointer</span><span class="special"><</span> <span class="keyword">const</span> <span class="identifier">node</span> <span class="special">></span><span class="special">::</span><span class="identifier">type</span> <a name="boost.intrusive.splaytree.const_node_ptr"></a><span class="identifier">const_node_ptr</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="splaytree_algorithms.html" title="Class template splaytree_algorithms">splaytree_algorithms</a><span class="special"><</span> <span class="identifier">node_traits</span> <span class="special">></span> <a name="boost.intrusive.splaytree.node_algorithms"></a><span class="identifier">node_algorithms</span><span class="special">;</span>
<span class="keyword">typedef</span> <span class="identifier">node_algorithms</span><span class="special">::</span><span class="identifier">insert_commit_data</span> <a name="boost.intrusive.splaytree.insert_commit_data"></a><span class="identifier">insert_commit_data</span><span class="special">;</span>
<span class="comment">// <a class="link" href="splaytree.html#boost.intrusive.splaytreeconstruct-copy-destruct">construct/copy/destruct</a></span>
<span class="keyword">explicit</span> <a class="link" href="splaytree.html#idp29512544-bb"><span class="identifier">splaytree</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">value_compare</span> <span class="special">&</span> <span class="special">=</span> <span class="identifier">value_compare</span><span class="special">(</span><span class="special">)</span><span class="special">,</span>
<span class="keyword">const</span> <span class="identifier">value_traits</span> <span class="special">&</span> <span class="special">=</span> <span class="identifier">value_traits</span><span class="special">(</span><span class="special">)</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Iterator<span class="special">></span>
<a class="link" href="splaytree.html#idp29515248-bb"><span class="identifier">splaytree</span></a><span class="special">(</span><span class="keyword">bool</span><span class="special">,</span> <span class="identifier">Iterator</span><span class="special">,</span> <span class="identifier">Iterator</span><span class="special">,</span>
<span class="keyword">const</span> <span class="identifier">value_compare</span> <span class="special">&</span> <span class="special">=</span> <span class="identifier">value_compare</span><span class="special">(</span><span class="special">)</span><span class="special">,</span>
<span class="keyword">const</span> <span class="identifier">value_traits</span> <span class="special">&</span> <span class="special">=</span> <span class="identifier">value_traits</span><span class="special">(</span><span class="special">)</span><span class="special">)</span><span class="special">;</span>
<a class="link" href="splaytree.html#idp29519952-bb"><span class="identifier">splaytree</span></a><span class="special">(</span><span class="identifier">BOOST_RV_REF</span><span class="special">(</span><a class="link" href="splaytree.html" title="Class template splaytree">splaytree</a><span class="special">)</span><span class="special">)</span><span class="special">;</span>
splaytree& <a class="link" href="splaytree.html#idp29521056-bb"><span class="keyword">operator</span><span class="special">=</span></a><span class="special">(</span><span class="identifier">BOOST_RV_REF</span><span class="special">(</span><a class="link" href="splaytree.html" title="Class template splaytree">splaytree</a><span class="special">)</span><span class="special">)</span><span class="special">;</span>
<a class="link" href="splaytree.html#idp29522288-bb"><span class="special">~</span><span class="identifier">splaytree</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span>
<span class="comment">// <a class="link" href="splaytree.html#idp29297520-bb">public member functions</a></span>
<span class="keyword">const</span> <span class="identifier">real_value_traits</span> <span class="special">&</span> <a class="link" href="splaytree.html#idp29297728-bb"><span class="identifier">get_real_value_traits</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="identifier">real_value_traits</span> <span class="special">&</span> <a class="link" href="splaytree.html#idp29298224-bb"><span class="identifier">get_real_value_traits</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span>
<span class="identifier">iterator</span> <a class="link" href="splaytree.html#idp29298720-bb"><span class="identifier">begin</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span>
<span class="identifier">const_iterator</span> <a class="link" href="splaytree.html#idp29300544-bb"><span class="identifier">begin</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="identifier">const_iterator</span> <a class="link" href="splaytree.html#idp29302384-bb"><span class="identifier">cbegin</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="identifier">iterator</span> <a class="link" href="splaytree.html#idp29304224-bb"><span class="identifier">end</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span>
<span class="identifier">const_iterator</span> <a class="link" href="splaytree.html#idp29306048-bb"><span class="identifier">end</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="identifier">const_iterator</span> <a class="link" href="splaytree.html#idp29307872-bb"><span class="identifier">cend</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="identifier">reverse_iterator</span> <a class="link" href="splaytree.html#idp29309696-bb"><span class="identifier">rbegin</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span>
<span class="identifier">const_reverse_iterator</span> <a class="link" href="splaytree.html#idp29311552-bb"><span class="identifier">rbegin</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="identifier">const_reverse_iterator</span> <a class="link" href="splaytree.html#idp29313424-bb"><span class="identifier">crbegin</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="identifier">reverse_iterator</span> <a class="link" href="splaytree.html#idp29315296-bb"><span class="identifier">rend</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span>
<span class="identifier">const_reverse_iterator</span> <a class="link" href="splaytree.html#idp29317152-bb"><span class="identifier">rend</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="identifier">const_reverse_iterator</span> <a class="link" href="splaytree.html#idp29319008-bb"><span class="identifier">crend</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="identifier">value_compare</span> <a class="link" href="splaytree.html#idp29320864-bb"><span class="identifier">value_comp</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="keyword">bool</span> <a class="link" href="splaytree.html#idp29322720-bb"><span class="identifier">empty</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="identifier">size_type</span> <a class="link" href="splaytree.html#idp29324528-bb"><span class="identifier">size</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="keyword">void</span> <a class="link" href="splaytree.html#idp29326448-bb"><span class="identifier">swap</span></a><span class="special">(</span><a class="link" href="splaytree.html" title="Class template splaytree">splaytree</a> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="identifier">iterator</span> <a class="link" href="splaytree.html#idp29328784-bb"><span class="identifier">insert_equal</span></a><span class="special">(</span><span class="identifier">reference</span><span class="special">)</span><span class="special">;</span>
<span class="identifier">iterator</span> <a class="link" href="splaytree.html#idp29332000-bb"><span class="identifier">insert_equal</span></a><span class="special">(</span><span class="identifier">const_iterator</span><span class="special">,</span> <span class="identifier">reference</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Iterator<span class="special">></span> <span class="keyword">void</span> <a class="link" href="splaytree.html#idp29335744-bb"><span class="identifier">insert_equal</span></a><span class="special">(</span><span class="identifier">Iterator</span><span class="special">,</span> <span class="identifier">Iterator</span><span class="special">)</span><span class="special">;</span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">pair</span><span class="special"><</span> <span class="identifier">iterator</span><span class="special">,</span> <span class="keyword">bool</span> <span class="special">></span> <a class="link" href="splaytree.html#idp29339840-bb"><span class="identifier">insert_unique</span></a><span class="special">(</span><span class="identifier">reference</span><span class="special">)</span><span class="special">;</span>
<span class="identifier">iterator</span> <a class="link" href="splaytree.html#idp29342976-bb"><span class="identifier">insert_unique</span></a><span class="special">(</span><span class="identifier">const_iterator</span><span class="special">,</span> <span class="identifier">reference</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Iterator<span class="special">></span> <span class="keyword">void</span> <a class="link" href="splaytree.html#idp29346608-bb"><span class="identifier">insert_unique</span></a><span class="special">(</span><span class="identifier">Iterator</span><span class="special">,</span> <span class="identifier">Iterator</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">pair</span><span class="special"><</span> <span class="identifier">iterator</span><span class="special">,</span> <span class="keyword">bool</span> <span class="special">></span>
<a class="link" href="splaytree.html#idp29350656-bb"><span class="identifier">insert_unique_check</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span><span class="special">,</span> <span class="identifier">KeyValueCompare</span><span class="special">,</span>
<span class="identifier">insert_commit_data</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">pair</span><span class="special"><</span> <span class="identifier">iterator</span><span class="special">,</span> <span class="keyword">bool</span> <span class="special">></span>
<a class="link" href="splaytree.html#idp29357072-bb"><span class="identifier">insert_unique_check</span></a><span class="special">(</span><span class="identifier">const_iterator</span><span class="special">,</span> <span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span><span class="special">,</span> <span class="identifier">KeyValueCompare</span><span class="special">,</span>
<span class="identifier">insert_commit_data</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="identifier">iterator</span> <a class="link" href="splaytree.html#idp29363952-bb"><span class="identifier">insert_unique_commit</span></a><span class="special">(</span><span class="identifier">reference</span><span class="special">,</span> <span class="keyword">const</span> <span class="identifier">insert_commit_data</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="identifier">iterator</span> <a class="link" href="splaytree.html#idp29368656-bb"><span class="identifier">erase</span></a><span class="special">(</span><span class="identifier">const_iterator</span><span class="special">)</span><span class="special">;</span>
<span class="identifier">iterator</span> <a class="link" href="splaytree.html#idp29371360-bb"><span class="identifier">erase</span></a><span class="special">(</span><span class="identifier">const_iterator</span><span class="special">,</span> <span class="identifier">const_iterator</span><span class="special">)</span><span class="special">;</span>
<span class="identifier">size_type</span> <a class="link" href="splaytree.html#idp29374464-bb"><span class="identifier">erase</span></a><span class="special">(</span><span class="identifier">const_reference</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">size_type</span> <a class="link" href="splaytree.html#idp29377584-bb"><span class="identifier">erase</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span><span class="special">,</span> <span class="identifier">KeyValueCompare</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Disposer<span class="special">></span>
<span class="identifier">iterator</span> <a class="link" href="splaytree.html#idp29381776-bb"><span class="identifier">erase_and_dispose</span></a><span class="special">(</span><span class="identifier">const_iterator</span><span class="special">,</span> <span class="identifier">Disposer</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Disposer<span class="special">></span>
<span class="identifier">iterator</span> <a class="link" href="splaytree.html#idp29385728-bb"><span class="identifier">erase_and_dispose</span></a><span class="special">(</span><span class="identifier">const_iterator</span><span class="special">,</span> <span class="identifier">const_iterator</span><span class="special">,</span> <span class="identifier">Disposer</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Disposer<span class="special">></span>
<span class="identifier">size_type</span> <a class="link" href="splaytree.html#idp29390080-bb"><span class="identifier">erase_and_dispose</span></a><span class="special">(</span><span class="identifier">const_reference</span><span class="special">,</span> <span class="identifier">Disposer</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">,</span> <span class="keyword">typename</span> Disposer<span class="special">></span>
<span class="identifier">size_type</span> <a class="link" href="splaytree.html#idp29394512-bb"><span class="identifier">erase_and_dispose</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span><span class="special">,</span> <span class="identifier">KeyValueCompare</span><span class="special">,</span> <span class="identifier">Disposer</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">void</span> <a class="link" href="splaytree.html#idp29399808-bb"><span class="identifier">clear</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Disposer<span class="special">></span> <span class="keyword">void</span> <a class="link" href="splaytree.html#idp29402224-bb"><span class="identifier">clear_and_dispose</span></a><span class="special">(</span><span class="identifier">Disposer</span><span class="special">)</span><span class="special">;</span>
<span class="identifier">size_type</span> <a class="link" href="splaytree.html#idp29405376-bb"><span class="identifier">count</span></a><span class="special">(</span><span class="identifier">const_reference</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">size_type</span> <a class="link" href="splaytree.html#idp29407648-bb"><span class="identifier">count</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span><span class="special">,</span> <span class="identifier">KeyValueCompare</span><span class="special">)</span><span class="special">;</span>
<span class="identifier">size_type</span> <a class="link" href="splaytree.html#idp29410944-bb"><span class="identifier">count_dont_splay</span></a><span class="special">(</span><span class="identifier">const_reference</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">size_type</span> <a class="link" href="splaytree.html#idp29413232-bb"><span class="identifier">count_dont_splay</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span><span class="special">,</span> <span class="identifier">KeyValueCompare</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="identifier">iterator</span> <a class="link" href="splaytree.html#idp29416544-bb"><span class="identifier">lower_bound</span></a><span class="special">(</span><span class="identifier">const_reference</span><span class="special">)</span><span class="special">;</span>
<span class="identifier">const_iterator</span> <a class="link" href="splaytree.html#idp29418784-bb"><span class="identifier">lower_bound_dont_splay</span></a><span class="special">(</span><span class="identifier">const_reference</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">iterator</span> <a class="link" href="splaytree.html#idp29421024-bb"><span class="identifier">lower_bound</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span><span class="special">,</span> <span class="identifier">KeyValueCompare</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">const_iterator</span>
<a class="link" href="splaytree.html#idp29424272-bb"><span class="identifier">lower_bound_dont_splay</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span><span class="special">,</span> <span class="identifier">KeyValueCompare</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="identifier">iterator</span> <a class="link" href="splaytree.html#idp29427536-bb"><span class="identifier">upper_bound</span></a><span class="special">(</span><span class="identifier">const_reference</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">iterator</span> <a class="link" href="splaytree.html#idp29429760-bb"><span class="identifier">upper_bound</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span><span class="special">,</span> <span class="identifier">KeyValueCompare</span><span class="special">)</span><span class="special">;</span>
<span class="identifier">const_iterator</span> <a class="link" href="splaytree.html#idp29433040-bb"><span class="identifier">upper_bound_dont_splay</span></a><span class="special">(</span><span class="identifier">const_reference</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">const_iterator</span>
<a class="link" href="splaytree.html#idp29435264-bb"><span class="identifier">upper_bound_dont_splay</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span><span class="special">,</span> <span class="identifier">KeyValueCompare</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="identifier">iterator</span> <a class="link" href="splaytree.html#idp29438544-bb"><span class="identifier">find</span></a><span class="special">(</span><span class="identifier">const_reference</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">iterator</span> <a class="link" href="splaytree.html#idp29440768-bb"><span class="identifier">find</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span><span class="special">,</span> <span class="identifier">KeyValueCompare</span><span class="special">)</span><span class="special">;</span>
<span class="identifier">const_iterator</span> <a class="link" href="splaytree.html#idp29444016-bb"><span class="identifier">find_dont_splay</span></a><span class="special">(</span><span class="identifier">const_reference</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">const_iterator</span> <a class="link" href="splaytree.html#idp29446224-bb"><span class="identifier">find_dont_splay</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span><span class="special">,</span> <span class="identifier">KeyValueCompare</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">pair</span><span class="special"><</span> <span class="identifier">iterator</span><span class="special">,</span> <span class="identifier">iterator</span> <span class="special">></span> <a class="link" href="splaytree.html#idp29449456-bb"><span class="identifier">equal_range</span></a><span class="special">(</span><span class="identifier">const_reference</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">pair</span><span class="special"><</span> <span class="identifier">iterator</span><span class="special">,</span> <span class="identifier">iterator</span> <span class="special">></span>
<a class="link" href="splaytree.html#idp29451760-bb"><span class="identifier">equal_range</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span><span class="special">,</span> <span class="identifier">KeyValueCompare</span><span class="special">)</span><span class="special">;</span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">pair</span><span class="special"><</span> <span class="identifier">const_iterator</span><span class="special">,</span> <span class="identifier">const_iterator</span> <span class="special">></span>
<a class="link" href="splaytree.html#idp29455088-bb"><span class="identifier">equal_range_dont_splay</span></a><span class="special">(</span><span class="identifier">const_reference</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">pair</span><span class="special"><</span> <span class="identifier">const_iterator</span><span class="special">,</span> <span class="identifier">const_iterator</span> <span class="special">></span>
<a class="link" href="splaytree.html#idp29457408-bb"><span class="identifier">equal_range_dont_splay</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span><span class="special">,</span> <span class="identifier">KeyValueCompare</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">pair</span><span class="special"><</span> <span class="identifier">iterator</span><span class="special">,</span> <span class="identifier">iterator</span> <span class="special">></span>
<a class="link" href="splaytree.html#idp29460752-bb"><span class="identifier">bounded_range</span></a><span class="special">(</span><span class="identifier">const_reference</span><span class="special">,</span> <span class="identifier">const_reference</span><span class="special">,</span> <span class="keyword">bool</span><span class="special">,</span> <span class="keyword">bool</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">pair</span><span class="special"><</span> <span class="identifier">iterator</span><span class="special">,</span> <span class="identifier">iterator</span> <span class="special">></span>
<a class="link" href="splaytree.html#idp29465456-bb"><span class="identifier">bounded_range</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span><span class="special">,</span> <span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span><span class="special">,</span> <span class="identifier">KeyValueCompare</span><span class="special">,</span> <span class="keyword">bool</span><span class="special">,</span>
<span class="keyword">bool</span><span class="special">)</span><span class="special">;</span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">pair</span><span class="special"><</span> <span class="identifier">const_iterator</span><span class="special">,</span> <span class="identifier">const_iterator</span> <span class="special">></span>
<a class="link" href="splaytree.html#idp29471344-bb"><span class="identifier">bounded_range</span></a><span class="special">(</span><span class="identifier">const_reference</span><span class="special">,</span> <span class="identifier">const_reference</span><span class="special">,</span> <span class="keyword">bool</span><span class="special">,</span> <span class="keyword">bool</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">pair</span><span class="special"><</span> <span class="identifier">const_iterator</span><span class="special">,</span> <span class="identifier">const_iterator</span> <span class="special">></span>
<a class="link" href="splaytree.html#idp29476064-bb"><span class="identifier">bounded_range</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span><span class="special">,</span> <span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span><span class="special">,</span> <span class="identifier">KeyValueCompare</span><span class="special">,</span> <span class="keyword">bool</span><span class="special">,</span>
<span class="keyword">bool</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Cloner<span class="special">,</span> <span class="keyword">typename</span> Disposer<span class="special">></span>
<span class="keyword">void</span> <a class="link" href="splaytree.html#idp29481968-bb"><span class="identifier">clone_from</span></a><span class="special">(</span><span class="keyword">const</span> <a class="link" href="splaytree.html" title="Class template splaytree">splaytree</a> <span class="special">&</span><span class="special">,</span> <span class="identifier">Cloner</span><span class="special">,</span> <span class="identifier">Disposer</span><span class="special">)</span><span class="special">;</span>
<span class="identifier">pointer</span> <a class="link" href="splaytree.html#idp29486736-bb"><span class="identifier">unlink_leftmost_without_rebalance</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">void</span> <a class="link" href="splaytree.html#idp29489216-bb"><span class="identifier">splay_up</span></a><span class="special">(</span><span class="identifier">iterator</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">iterator</span> <a class="link" href="splaytree.html#idp29491920-bb"><span class="identifier">splay_down</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span><span class="special">,</span> <span class="identifier">KeyValueCompare</span><span class="special">)</span><span class="special">;</span>
<span class="identifier">iterator</span> <a class="link" href="splaytree.html#idp29495824-bb"><span class="identifier">splay_down</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">value_type</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">void</span> <a class="link" href="splaytree.html#idp29498592-bb"><span class="identifier">replace_node</span></a><span class="special">(</span><span class="identifier">iterator</span><span class="special">,</span> <span class="identifier">reference</span><span class="special">)</span><span class="special">;</span>
<span class="identifier">iterator</span> <a class="link" href="splaytree.html#idp29502304-bb"><span class="identifier">iterator_to</span></a><span class="special">(</span><span class="identifier">reference</span><span class="special">)</span><span class="special">;</span>
<span class="identifier">const_iterator</span> <a class="link" href="splaytree.html#idp29504992-bb"><span class="identifier">iterator_to</span></a><span class="special">(</span><span class="identifier">const_reference</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="keyword">void</span> <a class="link" href="splaytree.html#idp29507696-bb"><span class="identifier">rebalance</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span>
<span class="identifier">iterator</span> <a class="link" href="splaytree.html#idp29509488-bb"><span class="identifier">rebalance_subtree</span></a><span class="special">(</span><span class="identifier">iterator</span><span class="special">)</span><span class="special">;</span>
<span class="comment">// <a class="link" href="splaytree.html#idp29524320-bb">public static functions</a></span>
<span class="keyword">static</span> <a class="link" href="splaytree.html" title="Class template splaytree">splaytree</a> <span class="special">&</span> <a class="link" href="splaytree.html#idp29524528-bb"><span class="identifier">container_from_end_iterator</span></a><span class="special">(</span><span class="identifier">iterator</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">static</span> <span class="keyword">const</span> <a class="link" href="splaytree.html" title="Class template splaytree">splaytree</a> <span class="special">&</span> <a class="link" href="splaytree.html#idp29527408-bb"><span class="identifier">container_from_end_iterator</span></a><span class="special">(</span><span class="identifier">const_iterator</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">static</span> <a class="link" href="splaytree.html" title="Class template splaytree">splaytree</a> <span class="special">&</span> <a class="link" href="splaytree.html#idp29530288-bb"><span class="identifier">container_from_iterator</span></a><span class="special">(</span><span class="identifier">iterator</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">static</span> <span class="keyword">const</span> <a class="link" href="splaytree.html" title="Class template splaytree">splaytree</a> <span class="special">&</span> <a class="link" href="splaytree.html#idp29533152-bb"><span class="identifier">container_from_iterator</span></a><span class="special">(</span><span class="identifier">const_iterator</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">static</span> <span class="identifier">iterator</span> <a class="link" href="splaytree.html#idp29536032-bb"><span class="identifier">s_iterator_to</span></a><span class="special">(</span><span class="identifier">reference</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">static</span> <span class="identifier">const_iterator</span> <a class="link" href="splaytree.html#idp29539408-bb"><span class="identifier">s_iterator_to</span></a><span class="special">(</span><span class="identifier">const_reference</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">static</span> <span class="keyword">void</span> <a class="link" href="splaytree.html#idp29542816-bb"><span class="identifier">init_node</span></a><span class="special">(</span><span class="identifier">reference</span><span class="special">)</span><span class="special">;</span>
<span class="comment">// <a class="link" href="splaytree.html#idp29545952-bb">private static functions</a></span>
<span class="keyword">static</span> <a class="link" href="splaytree.html" title="Class template splaytree">splaytree</a> <span class="special">&</span> <a class="link" href="splaytree.html#idp29546160-bb"><span class="identifier">priv_container_from_end_iterator</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">const_iterator</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">static</span> <a class="link" href="splaytree.html" title="Class template splaytree">splaytree</a> <span class="special">&</span> <a class="link" href="splaytree.html#idp29547232-bb"><span class="identifier">priv_container_from_iterator</span></a><span class="special">(</span><span class="keyword">const</span> <span class="identifier">const_iterator</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<span class="comment">// public data members</span>
<span class="keyword">static</span> <span class="keyword">const</span> <span class="keyword">bool</span> <span class="identifier">constant_time_size</span><span class="special">;</span>
<span class="keyword">static</span> <span class="keyword">const</span> <span class="keyword">bool</span> <span class="identifier">stateful_value_traits</span><span class="special">;</span>
<span class="special">}</span><span class="special">;</span></pre></div>
<div class="refsect1">
<a name="idp107539968"></a><h2>Description</h2>
<p>The class template splaytree is an intrusive splay tree container that is used to construct intrusive <a class="link" href="splay_set.html" title="Class template splay_set">splay_set</a> and <a class="link" href="splay_multiset.html" title="Class template splay_multiset">splay_multiset</a> containers. The no-throw guarantee holds only, if the value_compare object doesn't throw.</p>
<p>The template parameter <code class="computeroutput">T</code> is the type to be managed by the container. The user can specify additional options and if no options are provided default options are used.</p>
<p>The container supports the following options: <code class="computeroutput">base_hook<>/member_hook<>/value_traits<></code>, <code class="computeroutput">constant_time_size<></code>, <code class="computeroutput">size_type<></code> and <code class="computeroutput">compare<></code>. </p>
<div class="refsect2">
<a name="idp107543696"></a><h3>
<a name="boost.intrusive.splaytreeconstruct-copy-destruct"></a><code class="computeroutput">splaytree</code>
public
construct/copy/destruct</h3>
<div class="orderedlist"><ol class="orderedlist" type="1">
<li class="listitem">
<pre class="literallayout"><span class="keyword">explicit</span> <a name="idp29512544-bb"></a><span class="identifier">splaytree</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">value_compare</span> <span class="special">&</span> cmp <span class="special">=</span> <span class="identifier">value_compare</span><span class="special">(</span><span class="special">)</span><span class="special">,</span>
<span class="keyword">const</span> <span class="identifier">value_traits</span> <span class="special">&</span> v_traits <span class="special">=</span> <span class="identifier">value_traits</span><span class="special">(</span><span class="special">)</span><span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Constructs an empty tree.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Constant.</p>
<p><span class="bold"><strong>Throws</strong></span>: If value_traits::node_traits::node constructor throws (this does not happen with predefined Boost.Intrusive hooks) or the copy constructorof the value_compare object throws. Basic guarantee. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Iterator<span class="special">></span>
<a name="idp29515248-bb"></a><span class="identifier">splaytree</span><span class="special">(</span><span class="keyword">bool</span> unique<span class="special">,</span> <span class="identifier">Iterator</span> b<span class="special">,</span> <span class="identifier">Iterator</span> e<span class="special">,</span>
<span class="keyword">const</span> <span class="identifier">value_compare</span> <span class="special">&</span> cmp <span class="special">=</span> <span class="identifier">value_compare</span><span class="special">(</span><span class="special">)</span><span class="special">,</span>
<span class="keyword">const</span> <span class="identifier">value_traits</span> <span class="special">&</span> v_traits <span class="special">=</span> <span class="identifier">value_traits</span><span class="special">(</span><span class="special">)</span><span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Requires</strong></span>: Dereferencing iterator must yield an lvalue of type value_type. cmp must be a comparison function that induces a strict weak ordering.</p>
<p><span class="bold"><strong>Effects</strong></span>: Constructs an empty tree and inserts elements from [b, e).</p>
<p><span class="bold"><strong>Complexity</strong></span>: Linear in N if [b, e) is already sorted using comp and otherwise amortized N * log N, where N is the distance between first and last.</p>
<p><span class="bold"><strong>Throws</strong></span>: If value_traits::node_traits::node constructor throws (this does not happen with predefined Boost.Intrusive hooks) or the copy constructor/operator() of the value_compare object throws. Basic guarantee. </p>
</li>
<li class="listitem">
<pre class="literallayout"><a name="idp29519952-bb"></a><span class="identifier">splaytree</span><span class="special">(</span><span class="identifier">BOOST_RV_REF</span><span class="special">(</span><a class="link" href="splaytree.html" title="Class template splaytree">splaytree</a><span class="special">)</span> x<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: to-do </p>
</li>
<li class="listitem">
<pre class="literallayout">splaytree& <a name="idp29521056-bb"></a><span class="keyword">operator</span><span class="special">=</span><span class="special">(</span><span class="identifier">BOOST_RV_REF</span><span class="special">(</span><a class="link" href="splaytree.html" title="Class template splaytree">splaytree</a><span class="special">)</span> x<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: to-do </p>
</li>
<li class="listitem">
<pre class="literallayout"><a name="idp29522288-bb"></a><span class="special">~</span><span class="identifier">splaytree</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Detaches all elements from this. The objects in the set are not deleted (i.e. no destructors are called), but the nodes according to the <code class="computeroutput"><a class="link" href="value_traits.html" title="Struct template value_traits">value_traits</a></code> template parameter are reinitialized and thus can be reused.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Linear to the number of elements on the container. if it's a safe-mode or auto-unlink value_type. Constant time otherwise.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
</ol></div>
</div>
<div class="refsect2">
<a name="idp107575984"></a><h3>
<a name="idp29297520-bb"></a><code class="computeroutput">splaytree</code> public member functions</h3>
<div class="orderedlist"><ol class="orderedlist" type="1">
<li class="listitem"><pre class="literallayout"><span class="keyword">const</span> <span class="identifier">real_value_traits</span> <span class="special">&</span> <a name="idp29297728-bb"></a><span class="identifier">get_real_value_traits</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre></li>
<li class="listitem"><pre class="literallayout"><span class="identifier">real_value_traits</span> <span class="special">&</span> <a name="idp29298224-bb"></a><span class="identifier">get_real_value_traits</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre></li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">iterator</span> <a name="idp29298720-bb"></a><span class="identifier">begin</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Returns an iterator pointing to the beginning of the tree.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Constant.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">const_iterator</span> <a name="idp29300544-bb"></a><span class="identifier">begin</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Returns a const_iterator pointing to the beginning of the tree.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Constant.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">const_iterator</span> <a name="idp29302384-bb"></a><span class="identifier">cbegin</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Returns a const_iterator pointing to the beginning of the tree.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Constant.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">iterator</span> <a name="idp29304224-bb"></a><span class="identifier">end</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Returns an iterator pointing to the end of the tree.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Constant.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">const_iterator</span> <a name="idp29306048-bb"></a><span class="identifier">end</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Returns a const_iterator pointing to the end of the tree.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Constant.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">const_iterator</span> <a name="idp29307872-bb"></a><span class="identifier">cend</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Returns a const_iterator pointing to the end of the tree.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Constant.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">reverse_iterator</span> <a name="idp29309696-bb"></a><span class="identifier">rbegin</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Returns a reverse_iterator pointing to the beginning of the reversed tree.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Constant.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">const_reverse_iterator</span> <a name="idp29311552-bb"></a><span class="identifier">rbegin</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Returns a const_reverse_iterator pointing to the beginning of the reversed tree.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Constant.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">const_reverse_iterator</span> <a name="idp29313424-bb"></a><span class="identifier">crbegin</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Returns a const_reverse_iterator pointing to the beginning of the reversed tree.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Constant.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">reverse_iterator</span> <a name="idp29315296-bb"></a><span class="identifier">rend</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Returns a reverse_iterator pointing to the end of the reversed tree.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Constant.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">const_reverse_iterator</span> <a name="idp29317152-bb"></a><span class="identifier">rend</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Returns a const_reverse_iterator pointing to the end of the reversed tree.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Constant.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">const_reverse_iterator</span> <a name="idp29319008-bb"></a><span class="identifier">crend</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Returns a const_reverse_iterator pointing to the end of the reversed tree.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Constant.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">value_compare</span> <a name="idp29320864-bb"></a><span class="identifier">value_comp</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Returns the value_compare object used by the tree.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Constant.</p>
<p><span class="bold"><strong>Throws</strong></span>: If value_compare copy-constructor throws. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">bool</span> <a name="idp29322720-bb"></a><span class="identifier">empty</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Returns true if the container is empty.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Constant.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">size_type</span> <a name="idp29324528-bb"></a><span class="identifier">size</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Returns the number of elements stored in the tree.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Linear to elements contained in *this if constant-time size option is disabled. Constant time otherwise.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">void</span> <a name="idp29326448-bb"></a><span class="identifier">swap</span><span class="special">(</span><a class="link" href="splaytree.html" title="Class template splaytree">splaytree</a> <span class="special">&</span> other<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Swaps the contents of two splaytrees.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Constant.</p>
<p><span class="bold"><strong>Throws</strong></span>: If the comparison functor's swap call throws. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">iterator</span> <a name="idp29328784-bb"></a><span class="identifier">insert_equal</span><span class="special">(</span><span class="identifier">reference</span> value<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Requires</strong></span>: value must be an lvalue</p>
<p><span class="bold"><strong>Effects</strong></span>: Inserts value into the tree before the lower bound.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Average complexity for insert element is amortized logarithmic.</p>
<p><span class="bold"><strong>Throws</strong></span>: If the internal value_compare ordering function throws. Strong guarantee.</p>
<p><span class="bold"><strong>Note</strong></span>: Does not affect the validity of iterators and references. No copy-constructors are called. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">iterator</span> <a name="idp29332000-bb"></a><span class="identifier">insert_equal</span><span class="special">(</span><span class="identifier">const_iterator</span> hint<span class="special">,</span> <span class="identifier">reference</span> value<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Requires</strong></span>: value must be an lvalue, and "hint" must be a valid iterator.</p>
<p><span class="bold"><strong>Effects</strong></span>: Inserts x into the tree, using "hint" as a hint to where it will be inserted. If "hint" is the upper_bound the insertion takes constant time (two comparisons in the worst case)</p>
<p><span class="bold"><strong>Complexity</strong></span>: Amortized logarithmic in general, but it is amortized constant time if t is inserted immediately before hint.</p>
<p><span class="bold"><strong>Throws</strong></span>: If the internal value_compare ordering function throws. Strong guarantee.</p>
<p><span class="bold"><strong>Note</strong></span>: Does not affect the validity of iterators and references. No copy-constructors are called. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Iterator<span class="special">></span> <span class="keyword">void</span> <a name="idp29335744-bb"></a><span class="identifier">insert_equal</span><span class="special">(</span><span class="identifier">Iterator</span> b<span class="special">,</span> <span class="identifier">Iterator</span> e<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Requires</strong></span>: Dereferencing iterator must yield an lvalue of type value_type.</p>
<p><span class="bold"><strong>Effects</strong></span>: Inserts a each element of a range into the tree before the upper bound of the key of each element.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Insert range is in general amortized O(N * log(N)), where N is the size of the range. However, it is linear in N if the range is already sorted by value_comp().</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing.</p>
<p><span class="bold"><strong>Note</strong></span>: Does not affect the validity of iterators and references. No copy-constructors are called. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">std</span><span class="special">::</span><span class="identifier">pair</span><span class="special"><</span> <span class="identifier">iterator</span><span class="special">,</span> <span class="keyword">bool</span> <span class="special">></span> <a name="idp29339840-bb"></a><span class="identifier">insert_unique</span><span class="special">(</span><span class="identifier">reference</span> value<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Requires</strong></span>: value must be an lvalue</p>
<p><span class="bold"><strong>Effects</strong></span>: Inserts value into the tree if the value is not already present.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Amortized logarithmic.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing.</p>
<p><span class="bold"><strong>Note</strong></span>: Does not affect the validity of iterators and references. No copy-constructors are called. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">iterator</span> <a name="idp29342976-bb"></a><span class="identifier">insert_unique</span><span class="special">(</span><span class="identifier">const_iterator</span> hint<span class="special">,</span> <span class="identifier">reference</span> value<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Requires</strong></span>: value must be an lvalue, and "hint" must be a valid iterator</p>
<p><span class="bold"><strong>Effects</strong></span>: Tries to insert x into the tree, using "hint" as a hint to where it will be inserted.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Amortized logarithmic in general, but it is amortized constant time (two comparisons in the worst case) if t is inserted immediately before hint.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing.</p>
<p><span class="bold"><strong>Note</strong></span>: Does not affect the validity of iterators and references. No copy-constructors are called. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Iterator<span class="special">></span> <span class="keyword">void</span> <a name="idp29346608-bb"></a><span class="identifier">insert_unique</span><span class="special">(</span><span class="identifier">Iterator</span> b<span class="special">,</span> <span class="identifier">Iterator</span> e<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Requires</strong></span>: Dereferencing iterator must yield an lvalue of type value_type.</p>
<p><span class="bold"><strong>Effects</strong></span>: Tries to insert each element of a range into the tree.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Insert range is in general amortized O(N * log(N)), where N is the size of the range. However, it is linear in N if the range is already sorted by value_comp().</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing.</p>
<p><span class="bold"><strong>Note</strong></span>: Does not affect the validity of iterators and references. No copy-constructors are called. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">pair</span><span class="special"><</span> <span class="identifier">iterator</span><span class="special">,</span> <span class="keyword">bool</span> <span class="special">></span>
<a name="idp29350656-bb"></a><span class="identifier">insert_unique_check</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span> key<span class="special">,</span> <span class="identifier">KeyValueCompare</span> key_value_comp<span class="special">,</span>
<span class="identifier">insert_commit_data</span> <span class="special">&</span> commit_data<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Requires</strong></span>: key_value_comp must be a comparison function that induces the same strict weak ordering as value_compare. The difference is that key_value_comp compares an arbitrary key with the contained values.</p>
<p><span class="bold"><strong>Effects</strong></span>: Checks if a value can be inserted in the container, using a user provided key instead of the value itself.</p>
<p><span class="bold"><strong>Returns</strong></span>: If there is an equivalent value returns a pair containing an iterator to the already present value and false. If the value can be inserted returns true in the returned pair boolean and fills "commit_data" that is meant to be used with the "insert_commit" function.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Average complexity is at most logarithmic.</p>
<p><span class="bold"><strong>Throws</strong></span>: If the key_value_comp ordering function throws. Strong guarantee.</p>
<p><span class="bold"><strong>Notes</strong></span>: This function is used to improve performance when constructing a value_type is expensive: if there is an equivalent value the constructed object must be discarded. Many times, the part of the node that is used to impose the order is much cheaper to construct than the value_type and this function offers the possibility to use that part to check if the insertion will be successful.</p>
<p>If the check is successful, the user can construct the value_type and use "insert_commit" to insert the object in constant-time. This gives a total logarithmic complexity to the insertion: check(O(log(N)) + commit(O(1)).</p>
<p>"commit_data" remains valid for a subsequent "insert_commit" only if no more objects are inserted or erased from the container. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">pair</span><span class="special"><</span> <span class="identifier">iterator</span><span class="special">,</span> <span class="keyword">bool</span> <span class="special">></span>
<a name="idp29357072-bb"></a><span class="identifier">insert_unique_check</span><span class="special">(</span><span class="identifier">const_iterator</span> hint<span class="special">,</span> <span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span> key<span class="special">,</span>
<span class="identifier">KeyValueCompare</span> key_value_comp<span class="special">,</span>
<span class="identifier">insert_commit_data</span> <span class="special">&</span> commit_data<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Requires</strong></span>: key_value_comp must be a comparison function that induces the same strict weak ordering as value_compare. The difference is that key_value_comp compares an arbitrary key with the contained values.</p>
<p><span class="bold"><strong>Effects</strong></span>: Checks if a value can be inserted in the container, using a user provided key instead of the value itself, using "hint" as a hint to where it will be inserted.</p>
<p><span class="bold"><strong>Returns</strong></span>: If there is an equivalent value returns a pair containing an iterator to the already present value and false. If the value can be inserted returns true in the returned pair boolean and fills "commit_data" that is meant to be used with the "insert_commit" function.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Logarithmic in general, but it's amortized constant time if t is inserted immediately before hint.</p>
<p><span class="bold"><strong>Throws</strong></span>: If the key_value_comp ordering function throws. Strong guarantee.</p>
<p><span class="bold"><strong>Notes</strong></span>: This function is used to improve performance when constructing a value_type is expensive: if there is an equivalent value the constructed object must be discarded. Many times, the part of the constructing that is used to impose the order is much cheaper to construct than the value_type and this function offers the possibility to use that key to check if the insertion will be successful.</p>
<p>If the check is successful, the user can construct the value_type and use "insert_commit" to insert the object in constant-time. This can give a total constant-time complexity to the insertion: check(O(1)) + commit(O(1)).</p>
<p>"commit_data" remains valid for a subsequent "insert_commit" only if no more objects are inserted or erased from the container. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">iterator</span> <a name="idp29363952-bb"></a><span class="identifier">insert_unique_commit</span><span class="special">(</span><span class="identifier">reference</span> value<span class="special">,</span>
<span class="keyword">const</span> <span class="identifier">insert_commit_data</span> <span class="special">&</span> commit_data<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Requires</strong></span>: value must be an lvalue of type value_type. commit_data must have been obtained from a previous call to "insert_check". No objects should have been inserted or erased from the container between the "insert_check" that filled "commit_data" and the call to "insert_commit".</p>
<p><span class="bold"><strong>Effects</strong></span>: Inserts the value in the <code class="computeroutput"><a class="link" href="avl_set.html" title="Class template avl_set">avl_set</a></code> using the information obtained from the "commit_data" that a previous "insert_check" filled.</p>
<p><span class="bold"><strong>Returns</strong></span>: An iterator to the newly inserted object.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Constant time.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing.</p>
<p><span class="bold"><strong>Notes</strong></span>: This function has only sense if a "insert_check" has been previously executed to fill "commit_data". No value should be inserted or erased between the "insert_check" and "insert_commit" calls. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">iterator</span> <a name="idp29368656-bb"></a><span class="identifier">erase</span><span class="special">(</span><span class="identifier">const_iterator</span> i<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Erases the element pointed to by pos.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Average complexity for erase element is constant time.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing.</p>
<p><span class="bold"><strong>Note</strong></span>: Invalidates the iterators (but not the references) to the erased elements. No destructors are called. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">iterator</span> <a name="idp29371360-bb"></a><span class="identifier">erase</span><span class="special">(</span><span class="identifier">const_iterator</span> b<span class="special">,</span> <span class="identifier">const_iterator</span> e<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Erases the range pointed to by b end e.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Average complexity for erase range is amortized O(log(size() + N)), where N is the number of elements in the range.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing.</p>
<p><span class="bold"><strong>Note</strong></span>: Invalidates the iterators (but not the references) to the erased elements. No destructors are called. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">size_type</span> <a name="idp29374464-bb"></a><span class="identifier">erase</span><span class="special">(</span><span class="identifier">const_reference</span> value<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Erases all the elements with the given value.</p>
<p><span class="bold"><strong>Returns</strong></span>: The number of erased elements.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Amortized O(log(size() + N).</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing.</p>
<p><span class="bold"><strong>Note</strong></span>: Invalidates the iterators (but not the references) to the erased elements. No destructors are called. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">size_type</span> <a name="idp29377584-bb"></a><span class="identifier">erase</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span> key<span class="special">,</span> <span class="identifier">KeyValueCompare</span> comp<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Erases all the elements with the given key. according to the comparison functor "comp".</p>
<p><span class="bold"><strong>Returns</strong></span>: The number of erased elements.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Amortized O(log(size() + N).</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing.</p>
<p><span class="bold"><strong>Note</strong></span>: Invalidates the iterators (but not the references) to the erased elements. No destructors are called. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Disposer<span class="special">></span>
<span class="identifier">iterator</span> <a name="idp29381776-bb"></a><span class="identifier">erase_and_dispose</span><span class="special">(</span><span class="identifier">const_iterator</span> i<span class="special">,</span> <span class="identifier">Disposer</span> disposer<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Requires</strong></span>: Disposer::operator()(pointer) shouldn't throw.</p>
<p><span class="bold"><strong>Effects</strong></span>: Erases the element pointed to by pos. Disposer::operator()(pointer) is called for the removed element.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Average complexity for erase element is constant time.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing.</p>
<p><span class="bold"><strong>Note</strong></span>: Invalidates the iterators to the erased elements. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Disposer<span class="special">></span>
<span class="identifier">iterator</span> <a name="idp29385728-bb"></a><span class="identifier">erase_and_dispose</span><span class="special">(</span><span class="identifier">const_iterator</span> b<span class="special">,</span> <span class="identifier">const_iterator</span> e<span class="special">,</span>
<span class="identifier">Disposer</span> disposer<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Requires</strong></span>: Disposer::operator()(pointer) shouldn't throw.</p>
<p><span class="bold"><strong>Effects</strong></span>: Erases the range pointed to by b end e. Disposer::operator()(pointer) is called for the removed elements.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Average complexity for erase range is amortized O(log(size() + N)), where N is the number of elements in the range.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing.</p>
<p><span class="bold"><strong>Note</strong></span>: Invalidates the iterators to the erased elements. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Disposer<span class="special">></span>
<span class="identifier">size_type</span> <a name="idp29390080-bb"></a><span class="identifier">erase_and_dispose</span><span class="special">(</span><span class="identifier">const_reference</span> value<span class="special">,</span> <span class="identifier">Disposer</span> disposer<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Requires</strong></span>: Disposer::operator()(pointer) shouldn't throw.</p>
<p><span class="bold"><strong>Effects</strong></span>: Erases all the elements with the given value. Disposer::operator()(pointer) is called for the removed elements.</p>
<p><span class="bold"><strong>Returns</strong></span>: The number of erased elements.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Amortized O(log(size() + N).</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing.</p>
<p><span class="bold"><strong>Note</strong></span>: Invalidates the iterators (but not the references) to the erased elements. No destructors are called. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">,</span> <span class="keyword">typename</span> Disposer<span class="special">></span>
<span class="identifier">size_type</span> <a name="idp29394512-bb"></a><span class="identifier">erase_and_dispose</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span> key<span class="special">,</span> <span class="identifier">KeyValueCompare</span> comp<span class="special">,</span>
<span class="identifier">Disposer</span> disposer<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Requires</strong></span>: Disposer::operator()(pointer) shouldn't throw.</p>
<p><span class="bold"><strong>Effects</strong></span>: Erases all the elements with the given key. according to the comparison functor "comp". Disposer::operator()(pointer) is called for the removed elements.</p>
<p><span class="bold"><strong>Returns</strong></span>: The number of erased elements.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Amortized O(log(size() + N).</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing.</p>
<p><span class="bold"><strong>Note</strong></span>: Invalidates the iterators to the erased elements. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">void</span> <a name="idp29399808-bb"></a><span class="identifier">clear</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Erases all of the elements.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Linear to the number of elements on the container. if it's a safe-mode or auto-unlink value_type. Constant time otherwise.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing.</p>
<p><span class="bold"><strong>Note</strong></span>: Invalidates the iterators (but not the references) to the erased elements. No destructors are called. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Disposer<span class="special">></span> <span class="keyword">void</span> <a name="idp29402224-bb"></a><span class="identifier">clear_and_dispose</span><span class="special">(</span><span class="identifier">Disposer</span> disposer<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Erases all of the elements calling disposer(p) for each node to be erased. <span class="bold"><strong>Complexity</strong></span>: Amortized O(log(size() + N)), where N is the number of elements in the container.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing.</p>
<p><span class="bold"><strong>Note</strong></span>: Invalidates the iterators (but not the references) to the erased elements. Calls N times to disposer functor. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">size_type</span> <a name="idp29405376-bb"></a><span class="identifier">count</span><span class="special">(</span><span class="identifier">const_reference</span> value<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Returns the number of contained elements with the given value</p>
<p><span class="bold"><strong>Complexity</strong></span>: Amortized logarithmic to the number of elements contained plus lineal to number of objects with the given value.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">size_type</span> <a name="idp29407648-bb"></a><span class="identifier">count</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span> key<span class="special">,</span> <span class="identifier">KeyValueCompare</span> comp<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Returns the number of contained elements with the given key</p>
<p><span class="bold"><strong>Complexity</strong></span>: Amortized logarithmic to the number of elements contained plus lineal to number of objects with the given key.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">size_type</span> <a name="idp29410944-bb"></a><span class="identifier">count_dont_splay</span><span class="special">(</span><span class="identifier">const_reference</span> value<span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Returns the number of contained elements with the given value</p>
<p><span class="bold"><strong>Complexity</strong></span>: Amortized logarithmic to the number of elements contained plus lineal to number of objects with the given value.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">size_type</span> <a name="idp29413232-bb"></a><span class="identifier">count_dont_splay</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span> key<span class="special">,</span> <span class="identifier">KeyValueCompare</span> comp<span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Returns the number of contained elements with the given key</p>
<p><span class="bold"><strong>Complexity</strong></span>: Amortized logarithmic to the number of elements contained plus lineal to number of objects with the given key.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">iterator</span> <a name="idp29416544-bb"></a><span class="identifier">lower_bound</span><span class="special">(</span><span class="identifier">const_reference</span> value<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Returns an iterator to the first element whose key is not less than k or end() if that element does not exist.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Amortized logarithmic.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">const_iterator</span> <a name="idp29418784-bb"></a><span class="identifier">lower_bound_dont_splay</span><span class="special">(</span><span class="identifier">const_reference</span> value<span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Returns an iterator to the first element whose key is not less than k or end() if that element does not exist.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Logarithmic.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">iterator</span> <a name="idp29421024-bb"></a><span class="identifier">lower_bound</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span> key<span class="special">,</span> <span class="identifier">KeyValueCompare</span> comp<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Returns an iterator to the first element whose key is not less than k or end() if that element does not exist.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Logarithmic.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">const_iterator</span>
<a name="idp29424272-bb"></a><span class="identifier">lower_bound_dont_splay</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span> key<span class="special">,</span> <span class="identifier">KeyValueCompare</span> comp<span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Returns a const iterator to the first element whose key is not less than k or end() if that element does not exist.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Logarithmic.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">iterator</span> <a name="idp29427536-bb"></a><span class="identifier">upper_bound</span><span class="special">(</span><span class="identifier">const_reference</span> value<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Returns an iterator to the first element whose key is greater than k or end() if that element does not exist.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Amortized logarithmic.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">iterator</span> <a name="idp29429760-bb"></a><span class="identifier">upper_bound</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span> key<span class="special">,</span> <span class="identifier">KeyValueCompare</span> comp<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Returns an iterator to the first element whose key is greater than k according to comp or end() if that element does not exist.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Amortized logarithmic.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">const_iterator</span> <a name="idp29433040-bb"></a><span class="identifier">upper_bound_dont_splay</span><span class="special">(</span><span class="identifier">const_reference</span> value<span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Returns an iterator to the first element whose key is greater than k or end() if that element does not exist.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Logarithmic.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">const_iterator</span>
<a name="idp29435264-bb"></a><span class="identifier">upper_bound_dont_splay</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span> key<span class="special">,</span> <span class="identifier">KeyValueCompare</span> comp<span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Returns an iterator to the first element whose key is greater than k according to comp or end() if that element does not exist.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Logarithmic.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">iterator</span> <a name="idp29438544-bb"></a><span class="identifier">find</span><span class="special">(</span><span class="identifier">const_reference</span> value<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Finds an iterator to the first element whose key is k or end() if that element does not exist.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Amortized logarithmic.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">iterator</span> <a name="idp29440768-bb"></a><span class="identifier">find</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span> key<span class="special">,</span> <span class="identifier">KeyValueCompare</span> comp<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Finds an iterator to the first element whose key is k or end() if that element does not exist.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Amortized logarithmic.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">const_iterator</span> <a name="idp29444016-bb"></a><span class="identifier">find_dont_splay</span><span class="special">(</span><span class="identifier">const_reference</span> value<span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Finds a const_iterator to the first element whose key is k or end() if that element does not exist.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Logarithmic.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">const_iterator</span>
<a name="idp29446224-bb"></a><span class="identifier">find_dont_splay</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span> key<span class="special">,</span> <span class="identifier">KeyValueCompare</span> comp<span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Finds a const_iterator to the first element whose key is k or end() if that element does not exist.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Logarithmic.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">std</span><span class="special">::</span><span class="identifier">pair</span><span class="special"><</span> <span class="identifier">iterator</span><span class="special">,</span> <span class="identifier">iterator</span> <span class="special">></span> <a name="idp29449456-bb"></a><span class="identifier">equal_range</span><span class="special">(</span><span class="identifier">const_reference</span> value<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Finds a range containing all elements whose key is k or an empty range that indicates the position where those elements would be if they there is no elements with key k.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Amortized logarithmic.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">pair</span><span class="special"><</span> <span class="identifier">iterator</span><span class="special">,</span> <span class="identifier">iterator</span> <span class="special">></span>
<a name="idp29451760-bb"></a><span class="identifier">equal_range</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span> key<span class="special">,</span> <span class="identifier">KeyValueCompare</span> comp<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Finds a range containing all elements whose key is k or an empty range that indicates the position where those elements would be if they there is no elements with key k.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Amortized logarithmic.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">std</span><span class="special">::</span><span class="identifier">pair</span><span class="special"><</span> <span class="identifier">const_iterator</span><span class="special">,</span> <span class="identifier">const_iterator</span> <span class="special">></span>
<a name="idp29455088-bb"></a><span class="identifier">equal_range_dont_splay</span><span class="special">(</span><span class="identifier">const_reference</span> value<span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Finds a range containing all elements whose key is k or an empty range that indicates the position where those elements would be if they there is no elements with key k.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Logarithmic.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">pair</span><span class="special"><</span> <span class="identifier">const_iterator</span><span class="special">,</span> <span class="identifier">const_iterator</span> <span class="special">></span>
<a name="idp29457408-bb"></a><span class="identifier">equal_range_dont_splay</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span> key<span class="special">,</span> <span class="identifier">KeyValueCompare</span> comp<span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Finds a range containing all elements whose key is k or an empty range that indicates the position where those elements would be if they there is no elements with key k.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Logarithmic.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">std</span><span class="special">::</span><span class="identifier">pair</span><span class="special"><</span> <span class="identifier">iterator</span><span class="special">,</span> <span class="identifier">iterator</span> <span class="special">></span>
<a name="idp29460752-bb"></a><span class="identifier">bounded_range</span><span class="special">(</span><span class="identifier">const_reference</span> lower_value<span class="special">,</span> <span class="identifier">const_reference</span> upper_value<span class="special">,</span>
<span class="keyword">bool</span> left_closed<span class="special">,</span> <span class="keyword">bool</span> right_closed<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Requires</strong></span>: 'lower_value' must not be greater than 'upper_value'. If 'lower_value' == 'upper_value', ('left_closed' || 'right_closed') must be false.</p>
<p><span class="bold"><strong>Effects</strong></span>: Returns an a pair with the following criteria:</p>
<p>first = lower_bound(lower_key) if left_closed, upper_bound(lower_key) otherwise</p>
<p>second = upper_bound(upper_key) if right_closed, lower_bound(upper_key) otherwise</p>
<p><span class="bold"><strong>Complexity</strong></span>: Logarithmic.</p>
<p><span class="bold"><strong>Throws</strong></span>: If the predicate throws.</p>
<p><span class="bold"><strong>Note</strong></span>: This function can be more efficient than calling upper_bound and lower_bound for lower_value and upper_value. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">pair</span><span class="special"><</span> <span class="identifier">iterator</span><span class="special">,</span> <span class="identifier">iterator</span> <span class="special">></span>
<a name="idp29465456-bb"></a><span class="identifier">bounded_range</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span> lower_key<span class="special">,</span> <span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span> upper_key<span class="special">,</span>
<span class="identifier">KeyValueCompare</span> comp<span class="special">,</span> <span class="keyword">bool</span> left_closed<span class="special">,</span> <span class="keyword">bool</span> right_closed<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Requires</strong></span>: KeyValueCompare is a function object that induces a strict weak ordering compatible with the strict weak ordering used to create the the tree. 'lower_key' must not be greater than 'upper_key' according to 'comp'. If 'lower_key' == 'upper_key', ('left_closed' || 'right_closed') must be false.</p>
<p><span class="bold"><strong>Effects</strong></span>: Returns an a pair with the following criteria:</p>
<p>first = lower_bound(lower_key, comp) if left_closed, upper_bound(lower_key, comp) otherwise</p>
<p>second = upper_bound(upper_key, comp) if right_closed, lower_bound(upper_key, comp) otherwise</p>
<p><span class="bold"><strong>Complexity</strong></span>: Logarithmic.</p>
<p><span class="bold"><strong>Throws</strong></span>: If "comp" throws.</p>
<p><span class="bold"><strong>Note</strong></span>: This function can be more efficient than calling upper_bound and lower_bound for lower_key and upper_key. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">std</span><span class="special">::</span><span class="identifier">pair</span><span class="special"><</span> <span class="identifier">const_iterator</span><span class="special">,</span> <span class="identifier">const_iterator</span> <span class="special">></span>
<a name="idp29471344-bb"></a><span class="identifier">bounded_range</span><span class="special">(</span><span class="identifier">const_reference</span> lower_value<span class="special">,</span> <span class="identifier">const_reference</span> upper_value<span class="special">,</span>
<span class="keyword">bool</span> left_closed<span class="special">,</span> <span class="keyword">bool</span> right_closed<span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Requires</strong></span>: 'lower_value' must not be greater than 'upper_value'. If 'lower_value' == 'upper_value', ('left_closed' || 'right_closed') must be false.</p>
<p><span class="bold"><strong>Effects</strong></span>: Returns an a pair with the following criteria:</p>
<p>first = lower_bound(lower_key) if left_closed, upper_bound(lower_key) otherwise</p>
<p>second = upper_bound(upper_key) if right_closed, lower_bound(upper_key) otherwise</p>
<p><span class="bold"><strong>Complexity</strong></span>: Logarithmic.</p>
<p><span class="bold"><strong>Throws</strong></span>: If the predicate throws.</p>
<p><span class="bold"><strong>Note</strong></span>: This function can be more efficient than calling upper_bound and lower_bound for lower_value and upper_value. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">pair</span><span class="special"><</span> <span class="identifier">const_iterator</span><span class="special">,</span> <span class="identifier">const_iterator</span> <span class="special">></span>
<a name="idp29476064-bb"></a><span class="identifier">bounded_range</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span> lower_key<span class="special">,</span> <span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span> upper_key<span class="special">,</span>
<span class="identifier">KeyValueCompare</span> comp<span class="special">,</span> <span class="keyword">bool</span> left_closed<span class="special">,</span> <span class="keyword">bool</span> right_closed<span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Requires</strong></span>: KeyValueCompare is a function object that induces a strict weak ordering compatible with the strict weak ordering used to create the the tree. 'lower_key' must not be greater than 'upper_key' according to 'comp'. If 'lower_key' == 'upper_key', ('left_closed' || 'right_closed') must be false.</p>
<p><span class="bold"><strong>Effects</strong></span>: Returns an a pair with the following criteria:</p>
<p>first = lower_bound(lower_key, comp) if left_closed, upper_bound(lower_key, comp) otherwise</p>
<p>second = upper_bound(upper_key, comp) if right_closed, lower_bound(upper_key, comp) otherwise</p>
<p><span class="bold"><strong>Complexity</strong></span>: Logarithmic.</p>
<p><span class="bold"><strong>Throws</strong></span>: If "comp" throws.</p>
<p><span class="bold"><strong>Note</strong></span>: This function can be more efficient than calling upper_bound and lower_bound for lower_key and upper_key. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Cloner<span class="special">,</span> <span class="keyword">typename</span> Disposer<span class="special">></span>
<span class="keyword">void</span> <a name="idp29481968-bb"></a><span class="identifier">clone_from</span><span class="special">(</span><span class="keyword">const</span> <a class="link" href="splaytree.html" title="Class template splaytree">splaytree</a> <span class="special">&</span> src<span class="special">,</span> <span class="identifier">Cloner</span> cloner<span class="special">,</span> <span class="identifier">Disposer</span> disposer<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Requires</strong></span>: Disposer::operator()(pointer) shouldn't throw. Cloner should yield to nodes equivalent to the original nodes.</p>
<p><span class="bold"><strong>Effects</strong></span>: Erases all the elements from *this calling Disposer::operator()(pointer), clones all the elements from src calling Cloner::operator()(const_reference ) and inserts them on *this. Copies the predicate from the source container.</p>
<p>If cloner throws, all cloned elements are unlinked and disposed calling Disposer::operator()(pointer).</p>
<p><span class="bold"><strong>Complexity</strong></span>: Linear to erased plus inserted elements.</p>
<p><span class="bold"><strong>Throws</strong></span>: If cloner throws or predicate copy assignment throws. Basic guarantee. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">pointer</span> <a name="idp29486736-bb"></a><span class="identifier">unlink_leftmost_without_rebalance</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Unlinks the leftmost node from the tree.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Average complexity is constant time.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing.</p>
<p><span class="bold"><strong>Notes</strong></span>: This function breaks the tree and the tree can only be used for more unlink_leftmost_without_rebalance calls. This function is normally used to achieve a step by step controlled destruction of the tree. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">void</span> <a name="idp29489216-bb"></a><span class="identifier">splay_up</span><span class="special">(</span><span class="identifier">iterator</span> i<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Requires</strong></span>: i must be a valid iterator of *this.</p>
<p><span class="bold"><strong>Effects</strong></span>: Rearranges the splay set so that the element pointed by i is placed as the root of the tree, improving future searches of this value.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Amortized logarithmic.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> KeyType<span class="special">,</span> <span class="keyword">typename</span> KeyValueCompare<span class="special">></span>
<span class="identifier">iterator</span> <a name="idp29491920-bb"></a><span class="identifier">splay_down</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">KeyType</span> <span class="special">&</span> key<span class="special">,</span> <span class="identifier">KeyValueCompare</span> comp<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Rearranges the splay set so that if *this stores an element with a key equivalent to value the element is placed as the root of the tree. If the element is not present returns the last node compared with the key. If the tree is empty, end() is returned.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Amortized logarithmic.</p>
<p><span class="bold"><strong>Returns</strong></span>: An iterator to the new root of the tree, end() if the tree is empty.</p>
<p><span class="bold"><strong>Throws</strong></span>: If the comparison functor throws. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">iterator</span> <a name="idp29495824-bb"></a><span class="identifier">splay_down</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">value_type</span> <span class="special">&</span> value<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Rearranges the splay set so that if *this stores an element with a key equivalent to value the element is placed as the root of the tree.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Amortized logarithmic.</p>
<p><span class="bold"><strong>Returns</strong></span>: An iterator to the new root of the tree, end() if the tree is empty.</p>
<p><span class="bold"><strong>Throws</strong></span>: If the predicate throws. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">void</span> <a name="idp29498592-bb"></a><span class="identifier">replace_node</span><span class="special">(</span><span class="identifier">iterator</span> replace_this<span class="special">,</span> <span class="identifier">reference</span> with_this<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Requires</strong></span>: replace_this must be a valid iterator of *this and with_this must not be inserted in any tree.</p>
<p><span class="bold"><strong>Effects</strong></span>: Replaces replace_this in its position in the tree with with_this. The tree does not need to be rebalanced.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Constant.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing.</p>
<p><span class="bold"><strong>Note</strong></span>: This function will break container ordering invariants if with_this is not equivalent to *replace_this according to the ordering rules. This function is faster than erasing and inserting the node, since no rebalancing or comparison is needed. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">iterator</span> <a name="idp29502304-bb"></a><span class="identifier">iterator_to</span><span class="special">(</span><span class="identifier">reference</span> value<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Requires</strong></span>: value must be an lvalue and shall be in a set of appropriate type. Otherwise the behavior is undefined.</p>
<p><span class="bold"><strong>Effects</strong></span>: Returns: a valid iterator i belonging to the set that points to the value</p>
<p><span class="bold"><strong>Complexity</strong></span>: Constant.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">const_iterator</span> <a name="idp29504992-bb"></a><span class="identifier">iterator_to</span><span class="special">(</span><span class="identifier">const_reference</span> value<span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Requires</strong></span>: value must be an lvalue and shall be in a set of appropriate type. Otherwise the behavior is undefined.</p>
<p><span class="bold"><strong>Effects</strong></span>: Returns: a valid const_iterator i belonging to the set that points to the value</p>
<p><span class="bold"><strong>Complexity</strong></span>: Constant.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">void</span> <a name="idp29507696-bb"></a><span class="identifier">rebalance</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Effects</strong></span>: Rebalances the tree.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Linear. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="identifier">iterator</span> <a name="idp29509488-bb"></a><span class="identifier">rebalance_subtree</span><span class="special">(</span><span class="identifier">iterator</span> root<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Requires</strong></span>: old_root is a node of a tree.</p>
<p><span class="bold"><strong>Effects</strong></span>: Rebalances the subtree rooted at old_root.</p>
<p><span class="bold"><strong>Returns</strong></span>: The new root of the subtree.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Linear to the elements in the subtree. </p>
</li>
</ol></div>
</div>
<div class="refsect2">
<a name="idp107993152"></a><h3>
<a name="idp29524320-bb"></a><code class="computeroutput">splaytree</code> public static functions</h3>
<div class="orderedlist"><ol class="orderedlist" type="1">
<li class="listitem">
<pre class="literallayout"><span class="keyword">static</span> <a class="link" href="splaytree.html" title="Class template splaytree">splaytree</a> <span class="special">&</span> <a name="idp29524528-bb"></a><span class="identifier">container_from_end_iterator</span><span class="special">(</span><span class="identifier">iterator</span> end_iterator<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Precondition</strong></span>: end_iterator must be a valid end iterator of splaytree.</p>
<p><span class="bold"><strong>Effects</strong></span>: Returns a const reference to the splaytree associated to the end iterator</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Constant. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">static</span> <span class="keyword">const</span> <a class="link" href="splaytree.html" title="Class template splaytree">splaytree</a> <span class="special">&</span>
<a name="idp29527408-bb"></a><span class="identifier">container_from_end_iterator</span><span class="special">(</span><span class="identifier">const_iterator</span> end_iterator<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Precondition</strong></span>: end_iterator must be a valid end const_iterator of splaytree.</p>
<p><span class="bold"><strong>Effects</strong></span>: Returns a const reference to the splaytree associated to the end iterator</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Constant. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">static</span> <a class="link" href="splaytree.html" title="Class template splaytree">splaytree</a> <span class="special">&</span> <a name="idp29530288-bb"></a><span class="identifier">container_from_iterator</span><span class="special">(</span><span class="identifier">iterator</span> it<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Precondition</strong></span>: it must be a valid iterator of rbtree.</p>
<p><span class="bold"><strong>Effects</strong></span>: Returns a const reference to the tree associated to the iterator</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Logarithmic. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">static</span> <span class="keyword">const</span> <a class="link" href="splaytree.html" title="Class template splaytree">splaytree</a> <span class="special">&</span> <a name="idp29533152-bb"></a><span class="identifier">container_from_iterator</span><span class="special">(</span><span class="identifier">const_iterator</span> it<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Precondition</strong></span>: it must be a valid end const_iterator of rbtree.</p>
<p><span class="bold"><strong>Effects</strong></span>: Returns a const reference to the tree associated to the iterator</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Logarithmic. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">static</span> <span class="identifier">iterator</span> <a name="idp29536032-bb"></a><span class="identifier">s_iterator_to</span><span class="special">(</span><span class="identifier">reference</span> value<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Requires</strong></span>: value must be an lvalue and shall be in a set of appropriate type. Otherwise the behavior is undefined.</p>
<p><span class="bold"><strong>Effects</strong></span>: Returns: a valid iterator i belonging to the set that points to the value</p>
<p><span class="bold"><strong>Complexity</strong></span>: Constant.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing.</p>
<p><span class="bold"><strong>Note</strong></span>: This static function is available only if the <span class="emphasis"><em>value traits</em></span> is stateless. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">static</span> <span class="identifier">const_iterator</span> <a name="idp29539408-bb"></a><span class="identifier">s_iterator_to</span><span class="special">(</span><span class="identifier">const_reference</span> value<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Requires</strong></span>: value must be an lvalue and shall be in a set of appropriate type. Otherwise the behavior is undefined.</p>
<p><span class="bold"><strong>Effects</strong></span>: Returns: a valid const_iterator i belonging to the set that points to the value</p>
<p><span class="bold"><strong>Complexity</strong></span>: Constant.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing.</p>
<p><span class="bold"><strong>Note</strong></span>: This static function is available only if the <span class="emphasis"><em>value traits</em></span> is stateless. </p>
</li>
<li class="listitem">
<pre class="literallayout"><span class="keyword">static</span> <span class="keyword">void</span> <a name="idp29542816-bb"></a><span class="identifier">init_node</span><span class="special">(</span><span class="identifier">reference</span> value<span class="special">)</span><span class="special">;</span></pre>
<p><span class="bold"><strong>Requires</strong></span>: value shall not be in a tree.</p>
<p><span class="bold"><strong>Effects</strong></span>: init_node puts the hook of a value in a well-known default state.</p>
<p><span class="bold"><strong>Throws</strong></span>: Nothing.</p>
<p><span class="bold"><strong>Complexity</strong></span>: Constant time.</p>
<p><span class="bold"><strong>Note</strong></span>: This function puts the hook in the well-known default state used by auto_unlink and safe hooks. </p>
</li>
</ol></div>
</div>
<div class="refsect2">
<a name="idp108030496"></a><h3>
<a name="idp29545952-bb"></a><code class="computeroutput">splaytree</code> private static functions</h3>
<div class="orderedlist"><ol class="orderedlist" type="1">
<li class="listitem"><pre class="literallayout"><span class="keyword">static</span> <a class="link" href="splaytree.html" title="Class template splaytree">splaytree</a> <span class="special">&</span>
<a name="idp29546160-bb"></a><span class="identifier">priv_container_from_end_iterator</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">const_iterator</span> <span class="special">&</span> end_iterator<span class="special">)</span><span class="special">;</span></pre></li>
<li class="listitem"><pre class="literallayout"><span class="keyword">static</span> <a class="link" href="splaytree.html" title="Class template splaytree">splaytree</a> <span class="special">&</span> <a name="idp29547232-bb"></a><span class="identifier">priv_container_from_iterator</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">const_iterator</span> <span class="special">&</span> it<span class="special">)</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 Olaf Krzikalla<br>Copyright © 2006-2012 Ion Gaztanaga<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="splay_set_member_hook.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../intrusive/reference.html#header.boost.intrusive.splaytree_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="make_splaytree.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
| ryancoleman/autodock-vina | boost_1_54_0/doc/html/boost/intrusive/splaytree.html | HTML | apache-2.0 | 137,892 |
<!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=utf-8">
<title>Flot Examples</title>
<link href="layout.css" rel="stylesheet" type="text/css">
<!--[if lte IE 8]>
<script language="javascript" type="text/javascript" src="../excanvas.min.js"></script><![endif]-->
<script language="javascript" type="text/javascript" src="../jquery.js"></script>
<script language="javascript" type="text/javascript" src="../jquery.flot.js"></script>
</head>
<body>
<h1>Flot Examples</h1>
<div id="placeholder" style="width:600px;height:300px;"></div>
<p>Flot has support for simple background decorations such as
lines and rectangles. They can be useful for marking up certain
areas. You can easily add any HTML you need with standard DOM
manipulation, e.g. for labels. For drawing custom shapes there is
also direct access to the canvas.</p>
<script type="text/javascript">
$(function () {
// generate a dataset
var d1 = [];
for (var i = 0; i < 20; ++i)
d1.push([i, Math.sin(i)]);
var data = [{data: d1, label: "Pressure", color: "#333"}];
// setup background areas
var markings = [
{color: '#f6f6f6', yaxis: {from: 1}},
{color: '#f6f6f6', yaxis: {to: -1}},
{color: '#000', lineWidth: 1, xaxis: {from: 2, to: 2}},
{color: '#000', lineWidth: 1, xaxis: {from: 8, to: 8}}
];
var placeholder = $("#placeholder");
// plot it
var plot = $.plot(placeholder, data, {
bars: {show: true, barWidth: 0.5, fill: 0.9},
xaxis: {ticks: [], autoscaleMargin: 0.02},
yaxis: {min: -2, max: 2},
grid: {markings: markings}
});
// add labels
var o;
o = plot.pointOffset({x: 2, y: -1.2});
// we just append it to the placeholder which Flot already uses
// for positioning
placeholder.append('<div style="position:absolute;left:' + (o.left + 4) + 'px;top:' + o.top + 'px;color:#666;font-size:smaller">Warming up</div>');
o = plot.pointOffset({x: 8, y: -1.2});
placeholder.append('<div style="position:absolute;left:' + (o.left + 4) + 'px;top:' + o.top + 'px;color:#666;font-size:smaller">Actual measurements</div>');
// draw a little arrow on top of the last label to demonstrate
// canvas drawing
var ctx = plot.getCanvas().getContext("2d");
ctx.beginPath();
o.left += 4;
ctx.moveTo(o.left, o.top);
ctx.lineTo(o.left, o.top - 10);
ctx.lineTo(o.left + 10, o.top - 5);
ctx.lineTo(o.left, o.top);
ctx.fillStyle = "#000";
ctx.fill();
});
</script>
</body>
</html>
| tanvirshuvo/abtec | target/ABTeC/resources/assets/flot/examples/annotating.html | HTML | apache-2.0 | 2,859 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.6.0_36) on Sat Jan 23 15:54:21 CST 2016 -->
<title>JarScheduler.ResourceRequestDetail</title>
<meta name="date" content="2016-01-23">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="JarScheduler.ResourceRequestDetail";
}
//-->
</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="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="../../../../io/gearpump/streaming/appmaster/JarScheduler.html" title="class in io.gearpump.streaming.appmaster"><span class="strong">PREV CLASS</span></a></li>
<li><a href="../../../../io/gearpump/streaming/appmaster/JarScheduler.ResourceRequestDetail$.html" title="class in io.gearpump.streaming.appmaster"><span class="strong">NEXT CLASS</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?io/gearpump/streaming/appmaster/JarScheduler.ResourceRequestDetail.html" target="_top">FRAMES</a></li>
<li><a href="JarScheduler.ResourceRequestDetail.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><a href="#constructor_summary">CONSTR</a> | </li>
<li><a href="#method_summary">METHOD</a></li>
</ul>
<ul class="subNavList">
<li>DETAIL: </li>
<li>FIELD | </li>
<li><a href="#constructor_detail">CONSTR</a> | </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">io.gearpump.streaming.appmaster</p>
<h2 title="Class JarScheduler.ResourceRequestDetail" class="title">Class JarScheduler.ResourceRequestDetail</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>io.gearpump.streaming.appmaster.JarScheduler.ResourceRequestDetail</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>java.io.Serializable, scala.Equals, scala.Product</dd>
</dl>
<dl>
<dt>Enclosing class:</dt>
<dd><a href="../../../../io/gearpump/streaming/appmaster/JarScheduler.html" title="class in io.gearpump.streaming.appmaster">JarScheduler</a></dd>
</dl>
<hr>
<br>
<pre>public static class <strong>JarScheduler.ResourceRequestDetail</strong>
extends java.lang.Object
implements scala.Product, scala.Serializable</pre>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../serialized-form.html#io.gearpump.streaming.appmaster.JarScheduler.ResourceRequestDetail">Serialized Form</a></dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" 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><strong><a href="../../../../io/gearpump/streaming/appmaster/JarScheduler.ResourceRequestDetail.html#JarScheduler.ResourceRequestDetail(io.gearpump.cluster.AppJar, io.gearpump.cluster.scheduler.ResourceRequest[])">JarScheduler.ResourceRequestDetail</a></strong>(io.gearpump.cluster.AppJar jar,
io.gearpump.cluster.scheduler.ResourceRequest[] requests)</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== 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>io.gearpump.cluster.AppJar</code></td>
<td class="colLast"><code><strong><a href="../../../../io/gearpump/streaming/appmaster/JarScheduler.ResourceRequestDetail.html#jar()">jar</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>io.gearpump.cluster.scheduler.ResourceRequest[]</code></td>
<td class="colLast"><code><strong><a href="../../../../io/gearpump/streaming/appmaster/JarScheduler.ResourceRequestDetail.html#requests()">requests</a></strong>()</code> </td>
</tr>
</table>
<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>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_scala.Product">
<!-- -->
</a>
<h3>Methods inherited from interface scala.Product</h3>
<code>productArity, productElement, productIterator, productPrefix</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_scala.Equals">
<!-- -->
</a>
<h3>Methods inherited from interface scala.Equals</h3>
<code>canEqual, equals</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="JarScheduler.ResourceRequestDetail(io.gearpump.cluster.AppJar, io.gearpump.cluster.scheduler.ResourceRequest[])">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>JarScheduler.ResourceRequestDetail</h4>
<pre>public JarScheduler.ResourceRequestDetail(io.gearpump.cluster.AppJar jar,
io.gearpump.cluster.scheduler.ResourceRequest[] requests)</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="jar()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>jar</h4>
<pre>public io.gearpump.cluster.AppJar jar()</pre>
</li>
</ul>
<a name="requests()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>requests</h4>
<pre>public io.gearpump.cluster.scheduler.ResourceRequest[] requests()</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><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="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="../../../../io/gearpump/streaming/appmaster/JarScheduler.html" title="class in io.gearpump.streaming.appmaster"><span class="strong">PREV CLASS</span></a></li>
<li><a href="../../../../io/gearpump/streaming/appmaster/JarScheduler.ResourceRequestDetail$.html" title="class in io.gearpump.streaming.appmaster"><span class="strong">NEXT CLASS</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?io/gearpump/streaming/appmaster/JarScheduler.ResourceRequestDetail.html" target="_top">FRAMES</a></li>
<li><a href="JarScheduler.ResourceRequestDetail.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><a href="#constructor_summary">CONSTR</a> | </li>
<li><a href="#method_summary">METHOD</a></li>
</ul>
<ul class="subNavList">
<li>DETAIL: </li>
<li>FIELD | </li>
<li><a href="#constructor_detail">CONSTR</a> | </li>
<li><a href="#method_detail">METHOD</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
| stanleyxu2005/gearpump.github.io | releases/0.7.5/api/java/io/gearpump/streaming/appmaster/JarScheduler.ResourceRequestDetail.html | HTML | apache-2.0 | 10,536 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.6.0_36) on Sat Jan 23 15:54:20 CST 2016 -->
<title>AppMasterToExecutor.StartTask</title>
<meta name="date" content="2016-01-23">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="AppMasterToExecutor.StartTask";
}
//-->
</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="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="../../../io/gearpump/streaming/AppMasterToExecutor.StartDynamicDag$.html" title="class in io.gearpump.streaming"><span class="strong">PREV CLASS</span></a></li>
<li><a href="../../../io/gearpump/streaming/AppMasterToExecutor.StartTask$.html" title="class in io.gearpump.streaming"><span class="strong">NEXT CLASS</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?io/gearpump/streaming/AppMasterToExecutor.StartTask.html" target="_top">FRAMES</a></li>
<li><a href="AppMasterToExecutor.StartTask.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><a href="#constructor_summary">CONSTR</a> | </li>
<li><a href="#method_summary">METHOD</a></li>
</ul>
<ul class="subNavList">
<li>DETAIL: </li>
<li>FIELD | </li>
<li><a href="#constructor_detail">CONSTR</a> | </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">io.gearpump.streaming</p>
<h2 title="Class AppMasterToExecutor.StartTask" class="title">Class AppMasterToExecutor.StartTask</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>io.gearpump.streaming.AppMasterToExecutor.StartTask</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>java.io.Serializable, scala.Equals, scala.Product</dd>
</dl>
<dl>
<dt>Enclosing class:</dt>
<dd><a href="../../../io/gearpump/streaming/AppMasterToExecutor.html" title="class in io.gearpump.streaming">AppMasterToExecutor</a></dd>
</dl>
<hr>
<br>
<pre>public static class <strong>AppMasterToExecutor.StartTask</strong>
extends java.lang.Object
implements scala.Product, scala.Serializable</pre>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../serialized-form.html#io.gearpump.streaming.AppMasterToExecutor.StartTask">Serialized Form</a></dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" 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><strong><a href="../../../io/gearpump/streaming/AppMasterToExecutor.StartTask.html#AppMasterToExecutor.StartTask(io.gearpump.streaming.task.TaskId)">AppMasterToExecutor.StartTask</a></strong>(<a href="../../../io/gearpump/streaming/task/TaskId.html" title="class in io.gearpump.streaming.task">TaskId</a> taskId)</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== 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="../../../io/gearpump/streaming/task/TaskId.html" title="class in io.gearpump.streaming.task">TaskId</a></code></td>
<td class="colLast"><code><strong><a href="../../../io/gearpump/streaming/AppMasterToExecutor.StartTask.html#taskId()">taskId</a></strong>()</code> </td>
</tr>
</table>
<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>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_scala.Product">
<!-- -->
</a>
<h3>Methods inherited from interface scala.Product</h3>
<code>productArity, productElement, productIterator, productPrefix</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_scala.Equals">
<!-- -->
</a>
<h3>Methods inherited from interface scala.Equals</h3>
<code>canEqual, equals</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="AppMasterToExecutor.StartTask(io.gearpump.streaming.task.TaskId)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>AppMasterToExecutor.StartTask</h4>
<pre>public AppMasterToExecutor.StartTask(<a href="../../../io/gearpump/streaming/task/TaskId.html" title="class in io.gearpump.streaming.task">TaskId</a> taskId)</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="taskId()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>taskId</h4>
<pre>public <a href="../../../io/gearpump/streaming/task/TaskId.html" title="class in io.gearpump.streaming.task">TaskId</a> taskId()</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><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="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="../../../io/gearpump/streaming/AppMasterToExecutor.StartDynamicDag$.html" title="class in io.gearpump.streaming"><span class="strong">PREV CLASS</span></a></li>
<li><a href="../../../io/gearpump/streaming/AppMasterToExecutor.StartTask$.html" title="class in io.gearpump.streaming"><span class="strong">NEXT CLASS</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?io/gearpump/streaming/AppMasterToExecutor.StartTask.html" target="_top">FRAMES</a></li>
<li><a href="AppMasterToExecutor.StartTask.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><a href="#constructor_summary">CONSTR</a> | </li>
<li><a href="#method_summary">METHOD</a></li>
</ul>
<ul class="subNavList">
<li>DETAIL: </li>
<li>FIELD | </li>
<li><a href="#constructor_detail">CONSTR</a> | </li>
<li><a href="#method_detail">METHOD</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
| stanleyxu2005/gearpump.github.io | releases/0.7.5/api/java/io/gearpump/streaming/AppMasterToExecutor.StartTask.html | HTML | apache-2.0 | 9,855 |
<!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_0) on Wed Jul 21 15:54:31 PDT 2010 -->
<TITLE>
com.google.template.soy.parsepasses (Soy Complete)
</TITLE>
<META NAME="date" CONTENT="2010-07-21">
<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="com.google.template.soy.parsepasses (Soy Complete)";
}
}
</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="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</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">
<A HREF="../../../../../com/google/template/soy/parseinfo/passes/package-summary.html"><B>PREV PACKAGE</B></A>
<A HREF="../../../../../com/google/template/soy/shared/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?com/google/template/soy/parsepasses/package-summary.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-summary.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>
<H2>
Package com.google.template.soy.parsepasses
</H2>
Compiler passes used in parsing.
<P>
<B>See:</B>
<BR>
<A HREF="#package_description"><B>Description</B></A>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../../com/google/template/soy/parsepasses/CheckOverridesVisitor.html" title="class in com.google.template.soy.parsepasses">CheckOverridesVisitor</A></B></TD>
<TD>Visitor for processing overrides.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../../com/google/template/soy/parsepasses/HandleCssCommandVisitor.html" title="class in com.google.template.soy.parsepasses">HandleCssCommandVisitor</A></B></TD>
<TD>Visitor for handling 'css' commands.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../../com/google/template/soy/parsepasses/InferSafePrintNodesVisitor.html" title="class in com.google.template.soy.parsepasses">InferSafePrintNodesVisitor</A></B></TD>
<TD>Visitor for inferring safe <code>PrintNode</code>s and optionally adding the <code>|noAutoescape</code>
directive to each <code>PrintNode</code> inferred to be safe.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../../com/google/template/soy/parsepasses/PerformAutoescapeVisitor.html" title="class in com.google.template.soy.parsepasses">PerformAutoescapeVisitor</A></B></TD>
<TD>Visitor for performing autoescape (for templates that have autoescape turned on, ensure there is
HTML-escaping on all 'print' nodes).</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../../com/google/template/soy/parsepasses/PrependNamespacesVisitor.html" title="class in com.google.template.soy.parsepasses">PrependNamespacesVisitor</A></B></TD>
<TD>Visitor for prepending namespaces to the names for <code>TemplateNode</code>s and <code>CallNode</code>s
(so that the resulting names are all full names instead of partial names).</TD>
</TR>
</TABLE>
<P>
<A NAME="package_description"><!-- --></A><H2>
Package com.google.template.soy.parsepasses Description
</H2>
<P>
Compiler passes used in parsing.
<P>
<P>
<DL>
</DL>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</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">
<A HREF="../../../../../com/google/template/soy/parseinfo/passes/package-summary.html"><B>PREV PACKAGE</B></A>
<A HREF="../../../../../com/google/template/soy/shared/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?com/google/template/soy/parsepasses/package-summary.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-summary.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>
<div id="footer">
<div id="footerlogo" style="float:left">
<img src="http://www.google.com/images/art.gif"
alt="Google colored balls">
</div>
<div id="copyright" style="float:left">
<p>
© 2009 Google -
<a href="http://www.google.com/privacy.html">Privacy Policy</a> -
<a href="http://www.google.com/terms_of_service.html">Terms and Conditions</a> -
<a href="http://www.google.com/about.html">About Google</a>
</p>
</div>
</div>
</BODY>
</HTML>
| prop/closure-templates | javadoc-complete/com/google/template/soy/parsepasses/package-summary.html | HTML | apache-2.0 | 8,755 |
<div>
<h3>第十二章</h3>
<p>1撒母耳谓以色列众曰、尔所求于我者、我悉允之、立王治尔、</p>
<p>2今有王出入于尔前、我已年迈皓首、我子与尔相处、我自幼出入于尔前、至于今日、</p>
<p>3我在此、尔于耶和华及其受膏者前、可为我证、我曾强取何人之牛、劫夺何人之驴、欺侮何人、苛虐何人、受赇于何人之手、以蔽我目、若有、我必偿之、</p>
<p>4佥曰、尔末尝欺我虐我、亦未尝受何物于人手、</p>
<p>5曰、今日耶和华为证、其受膏者亦为证、汝于我手、索之无获、佥曰、彼为证、</p>
<p>6撒母耳语民曰、昔立摩西亚伦导尔列祖出埃及者、即耶和华也、</p>
<p>7尔当屹立、我于耶和华前、将以耶和华为尔及尔列祖、所行之义事、与尔辨之、</p>
<p>8雅各既至埃及、尔祖吁耶和华、耶和华遣摩西亚伦导之出、使居斯土、</p>
<p>9惟彼忘其上帝耶和华、耶和华付之于夏琐军长西西拉、及非利士人、与摩押王之手、遂与之战、</p>
<p>10尔祖吁耶和华曰、我干罪戾、因离弃耶和华、事诸巴力、与亚斯他录、今求拯我于敌手、我必事尔、</p>
<p>11耶和华遣耶路巴力、比但、耶弗他、及撒母耳、援尔于四周敌人之手、尔则安居、</p>
<p>12尔见亚扪王拿辖来攻尔、则谓我曰、必有一王治我、是时尔上帝耶和华为尔之王、</p>
<p>13今观尔曹所求所简之王、耶和华立王治尔、</p>
<p>14如尔寅畏耶和华、而服事之、听从其言、不违其命、且与治尔之王、顺从尔上帝耶和华、则善矣、</p>
<p>15如弗听从耶和华之言、背逆其命、则耶和华之手必敌尔、如昔敌尔祖然、</p>
<p>16今当屹立、观耶和华于尔目前、所行之大事、</p>
<p>17今非刈麦之时乎、我吁耶和华、彼将发雷降雨、令尔明知尔求立王、乃为大恶于耶和华前、</p>
<p>18撒母耳遂吁耶和华、是日耶和华发雷降雨、众民甚畏耶和华、与撒母耳、</p>
<p>19告撒母耳曰、尔为仆祈尔上帝耶和华、免我死亡、我之求王、乃加罪于罪也、</p>
<p>20撒母耳曰、毋畏、汝诚行此诸恶、然勿转离不从耶和华、惟尽心服事之、</p>
<p>21其勿偏离、从事虚伪、不能益尔、不能救尔之物、以其虚伪故也、</p>
<p>22耶和华既喜立尔为己民、必因其大名、不汝离弃、</p>
<p>23若我、决不止息为尔祈祷、而获罪于耶和华、必以善道正途训尔、</p>
<p>24惟当寅畏耶和华、专诚尽心服事之、念其为尔所行之大事、</p>
<p>25如尔仍行恶、则尔与尔之王、俱必灭亡、</p>
</div>
| yighu/wenli | wenliandroid/unpacked/assets/www/chapter332.html | HTML | apache-2.0 | 2,756 |
<!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=UTF-8">
<meta content="Apache Forrest" name="Generator">
<meta name="Forrest-version" content="0.8">
<meta name="Forrest-skin-name" content="pelt">
<title>
Permissions Guide
</title>
<link type="text/css" href="skin/basic.css" rel="stylesheet">
<link media="screen" type="text/css" href="skin/screen.css" rel="stylesheet">
<link media="print" type="text/css" href="skin/print.css" rel="stylesheet">
<link type="text/css" href="skin/profile.css" rel="stylesheet">
<script src="skin/getBlank.js" language="javascript" type="text/javascript"></script><script src="skin/getMenu.js" language="javascript" type="text/javascript"></script><script src="skin/fontsize.js" language="javascript" type="text/javascript"></script>
<link rel="shortcut icon" href="images/favicon.ico">
</head>
<body onload="init()">
<script type="text/javascript">ndeSetTextSize();</script>
<div id="top">
<!--+
|breadtrail
+-->
<div class="breadtrail">
<a href="http://www.apache.org/">Apache</a> > <a href="http://hadoop.apache.org/">Hadoop</a> > <a href="http://hadoop.apache.org/core/">Core</a><script src="skin/breadcrumbs.js" language="JavaScript" type="text/javascript"></script>
</div>
<!--+
|header
+-->
<div class="header">
<!--+
|start group logo
+-->
<div class="grouplogo">
<a href="http://hadoop.apache.org/"><img class="logoImage" alt="Hadoop" src="images/hadoop-logo.jpg" title="Apache Hadoop"></a>
</div>
<!--+
|end group logo
+-->
<!--+
|start Project Logo
+-->
<div class="projectlogo">
<a href="http://hadoop.apache.org/hdfs/"><img class="logoImage" alt="Hadoop" src="images/hdfs-logo.jpg" title="Scalable Computing Platform"></a>
</div>
<!--+
|end Project Logo
+-->
<!--+
|start Search
+-->
<div class="searchbox">
<form action="http://www.google.com/search" method="get" class="roundtopsmall">
<input value="hadoop.apache.org" name="sitesearch" type="hidden"><input onFocus="getBlank (this, 'Search the site with google');" size="25" name="q" id="query" type="text" value="Search the site with google">
<input name="Search" value="Search" type="submit">
</form>
</div>
<!--+
|end search
+-->
<!--+
|start Tabs
+-->
<ul id="tabs">
<li>
<a class="unselected" href="http://hadoop.apache.org/hdfs/">Project</a>
</li>
<li>
<a class="unselected" href="http://wiki.apache.org/hadoop/hdfs">Wiki</a>
</li>
<li class="current">
<a class="selected" href="index.html">HDFS 0.21 Documentation</a>
</li>
</ul>
<!--+
|end Tabs
+-->
</div>
</div>
<div id="main">
<div id="publishedStrip">
<!--+
|start Subtabs
+-->
<div id="level2tabs"></div>
<!--+
|end Endtabs
+-->
<script type="text/javascript"><!--
document.write("Last Published: " + document.lastModified);
// --></script>
</div>
<!--+
|breadtrail
+-->
<div class="breadtrail">
</div>
<!--+
|start Menu, mainarea
+-->
<!--+
|start Menu
+-->
<div id="menu">
<div onclick="SwitchMenu('menu_1.1', 'skin/')" id="menu_1.1Title" class="menutitle">Getting Started</div>
<div id="menu_1.1" class="menuitemgroup">
<div class="menuitem">
<a href="hdfs_user_guide.html">HDFS Users </a>
</div>
<div class="menuitem">
<a href="hdfs_design.html">HDFS Architecture</a>
</div>
</div>
<div onclick="SwitchMenu('menu_selected_1.2', 'skin/')" id="menu_selected_1.2Title" class="menutitle" style="background-image: url('skin/images/chapter_open.gif');">Guides</div>
<div id="menu_selected_1.2" class="selectedmenuitemgroup" style="display: block;">
<div class="menupage">
<div class="menupagetitle">Permissions</div>
</div>
<div class="menuitem">
<a href="hdfs_quota_admin_guide.html">Quotas</a>
</div>
<div class="menuitem">
<a href="SLG_user_guide.html">Synthetic Load Generator</a>
</div>
<div class="menuitem">
<a href="hdfs_imageviewer.html">Offline Image Viewer</a>
</div>
<div class="menuitem">
<a href="hdfsproxy.html">HDFS Proxy</a>
</div>
<div class="menuitem">
<a href="faultinject_framework.html">Fault Injection</a>
</div>
<div class="menuitem">
<a href="libhdfs.html">C API libhdfs</a>
</div>
</div>
<div onclick="SwitchMenu('menu_1.3', 'skin/')" id="menu_1.3Title" class="menutitle">Miscellaneous</div>
<div id="menu_1.3" class="menuitemgroup">
<div class="menuitem">
<a href="api/index.html">API Docs</a>
</div>
<div class="menuitem">
<a href="jdiff/changes.html">API Changes</a>
</div>
<div class="menuitem">
<a href="http://wiki.apache.org/hadoop/HDFS">Wiki</a>
</div>
<div class="menuitem">
<a href="http://wiki.apache.org/hadoop/HDFS/FAQ">FAQ</a>
</div>
<div class="menuitem">
<a href="releasenotes.html">Release Notes</a>
</div>
<div class="menuitem">
<a href="changes.html">Change Log</a>
</div>
</div>
<div id="credit"></div>
<div id="roundbottom">
<img style="display: none" class="corner" height="15" width="15" alt="" src="skin/images/rc-b-l-15-1body-2menu-3menu.png"></div>
<!--+
|alternative credits
+-->
<div id="credit2"></div>
</div>
<!--+
|end Menu
+-->
<!--+
|start content
+-->
<div id="content">
<div title="Portable Document Format" class="pdflink">
<a class="dida" href="hdfs_permissions_guide.pdf"><img alt="PDF -icon" src="skin/images/pdfdoc.gif" class="skin"><br>
PDF</a>
</div>
<h1>
Permissions Guide
</h1>
<div id="minitoc-area">
<ul class="minitoc">
<li>
<a href="#Overview">Overview</a>
</li>
<li>
<a href="#User+Identity">User Identity</a>
</li>
<li>
<a href="#Understanding+the+Implementation">Understanding the Implementation</a>
</li>
<li>
<a href="#Changes+to+the+File+System+API">Changes to the File System API</a>
</li>
<li>
<a href="#Changes+to+the+Application+Shell">Changes to the Application Shell</a>
</li>
<li>
<a href="#The+Super-User">The Super-User</a>
</li>
<li>
<a href="#The+Web+Server">The Web Server</a>
</li>
<li>
<a href="#On-line+Upgrade">On-line Upgrade</a>
</li>
<li>
<a href="#Configuration+Parameters">Configuration Parameters</a>
</li>
</ul>
</div>
<a name="N1000D"></a><a name="Overview"></a>
<h2 class="h3">Overview</h2>
<div class="section">
<p>
The Hadoop Distributed File System (HDFS) implements a permissions model for files and directories that shares much of the POSIX model.
Each file and directory is associated with an <em>owner</em> and a <em>group</em>. The file or directory has separate permissions for the
user that is the owner, for other users that are members of the group, and for all other users.
For files, the <em>r</em> permission is required to read the file, and the <em>w</em> permission is required to write or append to the file.
For directories, the <em>r</em> permission is required to list the contents of the directory, the <em>w</em> permission is required to create
or delete files or directories, and the <em>x</em> permission is required to access a child of the directory.
</p>
<p>
In contrast to the POSIX model, there are no <em>setuid</em> or <em>setgid</em> bits for files as there is no notion of executable files.
For directories, there are no <em>setuid</em> or <em>setgid</em> bits directory as a simplification. The <em>Sticky bit</em> can be set
on directories, preventing anyone except the superuser, directory owner or file owner from deleting or moving the files within the directory.
Setting the sticky bit for a file has no effect. Collectively, the permissions of a file or directory are its <em>mode</em>. In general, Unix
customs for representing and displaying modes will be used, including the use of octal numbers in this description. When a file or directory
is created, its owner is the user identity of the client process, and its group is the group of the parent directory (the BSD rule).
</p>
<p>
Each client process that accesses HDFS has a two-part identity composed of the <em>user name</em>, and <em>groups list</em>.
Whenever HDFS must do a permissions check for a file or directory <span class="codefrag">foo</span> accessed by a client process,
</p>
<ul>
<li>
If the user name matches the owner of <span class="codefrag">foo</span>, then the owner permissions are tested;
</li>
<li>
Else if the group of <span class="codefrag">foo</span> matches any of member of the groups list, then the group permissions are tested;
</li>
<li>
Otherwise the other permissions of <span class="codefrag">foo</span> are tested.
</li>
</ul>
<p>
If a permissions check fails, the client operation fails.
</p>
</div>
<a name="N10065"></a><a name="User+Identity"></a>
<h2 class="h3">User Identity</h2>
<div class="section">
<p>
In this release of Hadoop the identity of a client process is just whatever the host operating system says it is. For Unix-like systems,
</p>
<ul>
<li>
The user name is the equivalent of <span class="codefrag">`whoami`</span>;
</li>
<li>
The group list is the equivalent of <span class="codefrag">`bash -c groups`</span>.
</li>
</ul>
<p>
In the future there will be other ways of establishing user identity (think Kerberos, LDAP, and others). There is no expectation that
this first method is secure in protecting one user from impersonating another. This user identity mechanism combined with the
permissions model allows a cooperative community to share file system resources in an organized fashion.
</p>
<p>
In any case, the user identity mechanism is extrinsic to HDFS itself. There is no provision within HDFS for creating user identities,
establishing groups, or processing user credentials.
</p>
</div>
<a name="N10083"></a><a name="Understanding+the+Implementation"></a>
<h2 class="h3">Understanding the Implementation</h2>
<div class="section">
<p>
Each file or directory operation passes the full path name to the name node, and the permissions checks are applied along the
path for each operation. The client framework will implicitly associate the user identity with the connection to the name node,
reducing the need for changes to the existing client API. It has always been the case that when one operation on a file succeeds,
the operation might fail when repeated because the file, or some directory on the path, no longer exists. For instance, when the
client first begins reading a file, it makes a first request to the name node to discover the location of the first blocks of the file.
A second request made to find additional blocks may fail. On the other hand, deleting a file does not revoke access by a client
that already knows the blocks of the file. With the addition of permissions, a client's access to a file may be withdrawn between
requests. Again, changing permissions does not revoke the access of a client that already knows the file's blocks.
</p>
<p>
The MapReduce framework delegates the user identity by passing strings without special concern for confidentiality. The owner
and group of a file or directory are stored as strings; there is no conversion from user and group identity numbers as is conventional in Unix.
</p>
<p>
The permissions features of this release did not require any changes to the behavior of data nodes. Blocks on the data nodes
do not have any of the <em>Hadoop</em> ownership or permissions attributes associated with them.
</p>
</div>
<a name="N10096"></a><a name="Changes+to+the+File+System+API"></a>
<h2 class="h3">Changes to the File System API</h2>
<div class="section">
<p>
All methods that use a path parameter will throw <span class="codefrag">AccessControlException</span> if permission checking fails.
</p>
<p>New methods:</p>
<ul>
<li>
<span class="codefrag">public FSDataOutputStream create(Path f, FsPermission permission, boolean overwrite, int bufferSize, short
replication, long blockSize, Progressable progress) throws IOException;</span>
</li>
<li>
<span class="codefrag">public boolean mkdirs(Path f, FsPermission permission) throws IOException;</span>
</li>
<li>
<span class="codefrag">public void setPermission(Path p, FsPermission permission) throws IOException;</span>
</li>
<li>
<span class="codefrag">public void setOwner(Path p, String username, String groupname) throws IOException;</span>
</li>
<li>
<span class="codefrag">public FileStatus getFileStatus(Path f) throws IOException;</span> will additionally return the user,
group and mode associated with the path.
</li>
</ul>
<p>
The mode of a new file or directory is restricted my the <span class="codefrag">umask</span> set as a configuration parameter.
When the existing <span class="codefrag">create(path, …)</span> method (<em>without</em> the permission parameter)
is used, the mode of the new file is <span class="codefrag">666 & ^umask</span>. When the
new <span class="codefrag">create(path, </span><em>permission</em><span class="codefrag">, …)</span> method
(<em>with</em> the permission parameter <em>P</em>) is used, the mode of the new file is
<span class="codefrag">P & ^umask & 666</span>. When a new directory is
created with the existing <span class="codefrag">mkdirs(path)</span> method (<em>without</em> the permission parameter),
the mode of the new directory is <span class="codefrag">777 & ^umask</span>. When the
new <span class="codefrag">mkdirs(path, </span><em>permission</em> <span class="codefrag">)</span> method (<em>with</em> the
permission parameter <em>P</em>) is used, the mode of new directory is
<span class="codefrag">P & ^umask & 777</span>.
</p>
</div>
<a name="N10100"></a><a name="Changes+to+the+Application+Shell"></a>
<h2 class="h3">Changes to the Application Shell</h2>
<div class="section">
<p>New operations:</p>
<ul>
<li>
<span class="codefrag">chmod [-R]</span> <em>mode file …</em>
<br>Only the owner of a file or the super-user is permitted to change the mode of a file.
</li>
<li>
<span class="codefrag">chgrp [-R]</span> <em>group file …</em>
<br>The user invoking <span class="codefrag">chgrp</span> must belong to the specified group and be the owner of the file, or be the super-user.
</li>
<li>
<span class="codefrag">chown [-R]</span> <em>[owner][:[group]] file …</em>
<br>The owner of a file may only be altered by a super-user.
</li>
<li>
<span class="codefrag">ls </span> <em>file …</em>
</li>
<li>
<span class="codefrag">lsr </span> <em>file …</em>
<br>The output is reformatted to display the owner, group and mode.
</li>
</ul>
</div>
<a name="N10140"></a><a name="The+Super-User"></a>
<h2 class="h3">The Super-User</h2>
<div class="section">
<p>
The super-user is the user with the same identity as name node process itself. Loosely, if you started the name
node, then you are the super-user. The super-user can do anything in that permissions checks never fail for the
super-user. There is no persistent notion of who <em>was</em> the super-user; when the name node is started
the process identity determines who is the super-user <em>for now</em>. The HDFS super-user does not have
to be the super-user of the name node host, nor is it necessary that all clusters have the same super-user. Also,
an experimenter running HDFS on a personal workstation, conveniently becomes that installation's super-user
without any configuration.
</p>
<p>
In addition, the administrator my identify a distinguished group using a configuration parameter. If set, members
of this group are also super-users.
</p>
</div>
<a name="N10153"></a><a name="The+Web+Server"></a>
<h2 class="h3">The Web Server</h2>
<div class="section">
<p>
The identity of the web server is a configuration parameter. That is, the name node has no notion of the identity of
the <em>real</em> user, but the web server behaves as if it has the identity (user and groups) of a user chosen
by the administrator. Unless the chosen identity matches the super-user, parts of the name space may be invisible
to the web server.</p>
</div>
<a name="N10160"></a><a name="On-line+Upgrade"></a>
<h2 class="h3">On-line Upgrade</h2>
<div class="section">
<p>
If a cluster starts with a version 0.15 data set (<span class="codefrag">fsimage</span>), all files and directories will have
owner <em>O</em>, group <em>G</em>, and mode <em>M</em>, where <em>O</em> and <em>G</em>
are the user and group identity of the super-user, and <em>M</em> is a configuration parameter. </p>
</div>
<a name="N1017F"></a><a name="Configuration+Parameters"></a>
<h2 class="h3">Configuration Parameters</h2>
<div class="section">
<ul>
<li>
<span class="codefrag">dfs.permissions = true </span>
<br>If <span class="codefrag">yes</span> use the permissions system as described here. If <span class="codefrag">no</span>, permission
<em>checking</em> is turned off, but all other behavior is unchanged. Switching from one parameter
value to the other does not change the mode, owner or group of files or directories.
<br>Regardless of whether permissions are on or off, <span class="codefrag">chmod</span>, <span class="codefrag">chgrp</span> and
<span class="codefrag">chown</span> <em>always</em> check permissions. These functions are only useful in the
permissions context, and so there is no backwards compatibility issue. Furthermore, this allows
administrators to reliably set owners and permissions in advance of turning on regular permissions checking.
</li>
<li>
<span class="codefrag">dfs.web.ugi = webuser,webgroup</span>
<br>The user name to be used by the web server. Setting this to the name of the super-user allows any
web client to see everything. Changing this to an otherwise unused identity allows web clients to see
only those things visible using "other" permissions. Additional groups may be added to the comma-separated list.
</li>
<li>
<span class="codefrag">dfs.permissions.supergroup = supergroup</span>
<br>The name of the group of super-users.
</li>
<li>
<span class="codefrag">dfs.upgrade.permission = 0777</span>
<br>The choice of initial mode during upgrade. The <em>x</em> permission is <em>never</em> set for files.
For configuration files, the decimal value <em>511<sub>10</sub></em> may be used.
</li>
<li>
<span class="codefrag">dfs.umask = 022</span>
<br>The <span class="codefrag">umask</span> used when creating files and directories. For configuration files, the decimal
value <em>18<sub>10</sub></em> may be used.
</li>
</ul>
</div>
</div>
<!--+
|end content
+-->
<div class="clearboth"> </div>
</div>
<div id="footer">
<!--+
|start bottomstrip
+-->
<div class="lastmodified">
<script type="text/javascript"><!--
document.write("Last Published: " + document.lastModified);
// --></script>
</div>
<div class="copyright">
Copyright ©
2009 <a href="http://www.apache.org/licenses/">The Apache Software Foundation.</a>
</div>
<!--+
|end bottomstrip
+-->
</div>
</body>
</html>
| jayantgolhar/Hadoop-0.21.0 | hdfs/docs/hdfs_permissions_guide.html | HTML | apache-2.0 | 19,195 |
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- template designed by Marco Von Ballmoos -->
<title>Docs for page LoggerFilter.php</title>
<link rel="stylesheet" href="../media/stylesheet.css" />
<script src="../media/lib/classTree.js"></script>
<script language="javascript" type="text/javascript">
var imgPlus = new Image();
var imgMinus = new Image();
imgPlus.src = "../media/images/plus.png";
imgMinus.src = "../media/images/minus.png";
function showNode(Node){
switch(navigator.family){
case 'nn4':
// Nav 4.x code fork...
var oTable = document.layers["span" + Node];
var oImg = document.layers["img" + Node];
break;
case 'ie4':
// IE 4/5 code fork...
var oTable = document.all["span" + Node];
var oImg = document.all["img" + Node];
break;
case 'gecko':
// Standards Compliant code fork...
var oTable = document.getElementById("span" + Node);
var oImg = document.getElementById("img" + Node);
break;
}
oImg.src = imgMinus.src;
oTable.style.display = "block";
}
function hideNode(Node){
switch(navigator.family){
case 'nn4':
// Nav 4.x code fork...
var oTable = document.layers["span" + Node];
var oImg = document.layers["img" + Node];
break;
case 'ie4':
// IE 4/5 code fork...
var oTable = document.all["span" + Node];
var oImg = document.all["img" + Node];
break;
case 'gecko':
// Standards Compliant code fork...
var oTable = document.getElementById("span" + Node);
var oImg = document.getElementById("img" + Node);
break;
}
oImg.src = imgPlus.src;
oTable.style.display = "none";
}
function nodeIsVisible(Node){
switch(navigator.family){
case 'nn4':
// Nav 4.x code fork...
var oTable = document.layers["span" + Node];
break;
case 'ie4':
// IE 4/5 code fork...
var oTable = document.all["span" + Node];
break;
case 'gecko':
// Standards Compliant code fork...
var oTable = document.getElementById("span" + Node);
break;
}
return (oTable && oTable.style.display == "block");
}
function toggleNodeVisibility(Node){
if (nodeIsVisible(Node)){
hideNode(Node);
}else{
showNode(Node);
}
}
</script>
</head>
<body>
<div class="page-body">
<h2 class="file-name">/LoggerFilter.php</h2>
<a name="sec-description"></a>
<div class="info-box">
<div class="info-box-title">Description</div>
<div class="nav-bar">
<span class="disabled">Description</span> |
<a href="#sec-classes">Classes</a>
</div>
<div class="info-box-body">
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">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.</p>
<p class="description"><p>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</p><p>http://www.apache.org/licenses/LICENSE-2.0</p><p>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.</p></p>
</div>
</div>
<a name="sec-classes"></a>
<div class="info-box">
<div class="info-box-title">Classes</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<span class="disabled">Classes</span>
</div>
<div class="info-box-body">
<table cellpadding="2" cellspacing="0" class="class-table">
<tr>
<th class="class-table-header">Class</th>
<th class="class-table-header">Description</th>
</tr>
<tr>
<td style="padding-right: 2em; vertical-align: top">
<a href="../log4php/LoggerFilter.html">LoggerFilter</a>
</td>
<td>
Users should extend this class to implement customized logging
</td>
</tr>
</table>
</div>
</div>
<p class="notes" id="credit">
Documentation generated on Fri, 27 Nov 2009 07:44:49 +0100 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.3</a>
</p>
</div></body>
</html> | kikov79/scalr | app/src/externals/apache-log4php-2.0.0-incubating/docs/log4php/_LoggerFilter.php.html | HTML | apache-2.0 | 4,942 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="zh">
<head>
<!-- Generated by javadoc (1.8.0_31) on Mon Feb 02 16:43:55 CST 2015 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>程序包 org.jb2011.lnf.beautyeye.widget的使用</title>
<meta name="date" content="2015-02-02">
<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="\u7A0B\u5E8F\u5305 org.jb2011.lnf.beautyeye.widget\u7684\u4F7F\u7528";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>您的浏览器已禁用 JavaScript。</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="跳过导航链接">跳过导航链接</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="导航">
<li><a href="../../../../../overview-summary.html">概览</a></li>
<li><a href="package-summary.html">程序包</a></li>
<li>类</li>
<li class="navBarCell1Rev">使用</li>
<li><a href="package-tree.html">树</a></li>
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
<li><a href="../../../../../help-doc.html">帮助</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>上一个</li>
<li>下一个</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/jb2011/lnf/beautyeye/widget/package-use.html" target="_top">框架</a></li>
<li><a href="package-use.html" target="_top">无框架</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">所有类</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 title="程序包的使用 org.jb2011.lnf.beautyeye.widget" class="title">程序包的使用<br>org.jb2011.lnf.beautyeye.widget</h1>
</div>
<div class="contentContainer">
<ul class="blockList">
<li class="blockList">
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表程序包和解释">
<caption><span>使用<a href="../../../../../org/jb2011/lnf/beautyeye/widget/package-summary.html">org.jb2011.lnf.beautyeye.widget</a>的程序包</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">程序包</th>
<th class="colLast" scope="col">说明</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#org.jb2011.lnf.beautyeye.widget">org.jb2011.lnf.beautyeye.widget</a></td>
<td class="colLast">
<div class="block">本包内包含了若干Swing可重用组件及实用方法。</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.jb2011.lnf.beautyeye.widget">
<!-- -->
</a>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表类和解释">
<caption><span><a href="../../../../../org/jb2011/lnf/beautyeye/widget/package-summary.html">org.jb2011.lnf.beautyeye.widget</a>使用的<a href="../../../../../org/jb2011/lnf/beautyeye/widget/package-summary.html">org.jb2011.lnf.beautyeye.widget</a>中的类</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">类和说明</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colOne"><a href="../../../../../org/jb2011/lnf/beautyeye/widget/class-use/__Icon9Factory__.html#org.jb2011.lnf.beautyeye.widget">__Icon9Factory__</a>
<div class="block">NinePatch图片(*.9.png)工厂类.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><a href="../../../../../org/jb2011/lnf/beautyeye/widget/class-use/FocusListenerImpl.html#org.jb2011.lnf.beautyeye.widget">FocusListenerImpl</a>
<div class="block">焦点改变时的监听器实现类.</div>
</td>
</tr>
<tr class="altColor">
<td class="colOne"><a href="../../../../../org/jb2011/lnf/beautyeye/widget/class-use/ImageBgPanel.html#org.jb2011.lnf.beautyeye.widget">ImageBgPanel</a>
<div class="block">一个使用NinePatch图作为背景的面板实现类.</div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="跳过导航链接">跳过导航链接</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="导航">
<li><a href="../../../../../overview-summary.html">概览</a></li>
<li><a href="package-summary.html">程序包</a></li>
<li>类</li>
<li class="navBarCell1Rev">使用</li>
<li><a href="package-tree.html">树</a></li>
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
<li><a href="../../../../../help-doc.html">帮助</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>上一个</li>
<li>下一个</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/jb2011/lnf/beautyeye/widget/package-use.html" target="_top">框架</a></li>
<li><a href="package-use.html" target="_top">无框架</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
| xiruibing/beautyeye | doc/api_doc/org/jb2011/lnf/beautyeye/widget/package-use.html | HTML | apache-2.0 | 6,451 |
<div style="padding-bottom: 50px;">
<a id="orchestrator-configuration-unlock-btn"
ng-disabled="orchestrator.state !== 'CONNECTED' || !lock"
class="pull-right btn btn-primary ng-binding ng-scope"
ng-click="$event.stopPropagation();"
confirm="{{'ORCHESTRATORS.CONFIGURATION.UNLOCK-BTN-CONTENT' | translate}}"
confirm-title="{{'ORCHESTRATORS.CONFIGURATION.UNLOCK-BTN-TITLE' | translate }}"
confirm-placement="left"
confirm-handler="toggleLock()">
<i class="fa fa-lock"></i> {{'ORCHESTRATORS.CONFIGURATION.UNLOCK-BTN-TITLE' | translate }}
</a>
</div>
<!-- GLOBAL CONFIG -->
<div class="form-horizontal" role="form" style="margin-bottom:20px">
<div class="panel panel-default form-panel">
<div class="panel-heading">
<h4 class="ng-binding" style="display: inline;">{{'CLOUDS.ADMINISTRATION.GLOBAL.TITLE' | translate}}</h4>
</div>
<div class="panel-body">
<div class="">
<label class="ng-scope ng-binding" tooltip="{{'CLOUDS.ADMINISTRATION.GLOBAL.DEPLOYMENT_NAME' | translate}}" tooltip-trigger="mouseenter">
{{'CLOUDS.ADMINISTRATION.GLOBAL.DEPLOYMENT_NAME' | translate}}
</label>
<simple-modal class="pull-right" title="{{ 'CLOUDS.ADMINISTRATION.HELP.TITLE' | translate}}" content="{{ 'CLOUDS.ADMINISTRATION.HELP.CONTENT' | translate}}" primary="true"> </simple-modal>
</div>
<div
ng-if="orchestrator.state === 'CONNECTED' && lock"
id="deploymentNamePattern">
{{orchestrator.deploymentNamePattern}}
</div>
<div
ng-if="orchestrator.state !== 'CONNECTED' || !lock"
editable-text="orchestrator.deploymentNamePattern" id="deploymentNamePattern" buttons="no" e-style="width:90%;" e-required e-class="input-sm;" onBeforesave="updateDeploymentNamePattern($data)" blur="submit">
{{orchestrator.deploymentNamePattern}} <i class="fa fa-edit"></i>
</div>
</div>
</div>
</div>
<!-- DRIVER CONFIG -->
<div>
<div ng-if="orchestrator.state !== 'CONNECTED' || !lock">
<div ng-if="configuration && configurationDefinition">
<generic-form root-object="configuration"
form-title="{{'CLOUDS.ADMINISTRATION.DRIVER.TITLE' | translate}}"
type="configurationDefinition"
form-style="window"
suggest="suggest(searchConfiguration, text)"
save="saveConfiguration(object)"
automatic-save="lock"
is-read-only="false">
</generic-form>
</div>
</div>
<div ng-if="orchestrator.state === 'CONNECTED' && lock">
<div ng-if="configuration && configurationDefinition">
<generic-form root-object="configuration"
form-title="{{'CLOUDS.ADMINISTRATION.DRIVER.TITLE' | translate}}"
type="configurationDefinition"
form-style="window"
is-read-only="true">
</generic-form>
</div>
</div>
</div>
| PierreLemordant/alien4cloud | alien4cloud-ui/src/main/webapp/views/orchestrators/orchestrator_configuration.html | HTML | apache-2.0 | 2,867 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//www.w3.org/TR/html4/strict.dtd">
<HTML style="overflow:auto;">
<HEAD>
<meta name="generator" content="JDiff v1.1.0">
<!-- Generated by the JDiff Javadoc doclet -->
<!-- (http://www.jdiff.org) -->
<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
<TITLE>
org.apache.http.protocol.RequestContent
</TITLE>
<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
<noscript>
<style type="text/css">
body{overflow:auto;}
#body-content{position:relative; top:0;}
#doc-content{overflow:visible;border-left:3px solid #666;}
#side-nav{padding:0;}
#side-nav .toggle-list ul {display:block;}
#resize-packages-nav{border-bottom:3px solid #666;}
</style>
</noscript>
<style type="text/css">
</style>
</HEAD>
<BODY>
<!-- Start of nav bar -->
<a name="top"></a>
<div id="header" style="margin-bottom:0;padding-bottom:0;">
<div id="headerLeft">
<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
</div>
<div id="headerRight">
<div id="headerLinks">
<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
<span class="text">
<!-- <a href="#">English</a> | -->
<nobr><a href="//developer.android.com" target="_top">Android Developers</a> | <a href="//www.android.com" target="_top">Android.com</a></nobr>
</span>
</div>
<div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
<table class="diffspectable">
<tr>
<td colspan="2" class="diffspechead">API Diff Specification</td>
</tr>
<tr>
<td class="diffspec" style="padding-top:.25em">To Level:</td>
<td class="diffvaluenew" style="padding-top:.25em">22</td>
</tr>
<tr>
<td class="diffspec">From Level:</td>
<td class="diffvalueold">21</td>
</tr>
<tr>
<td class="diffspec">Generated</td>
<td class="diffvalue">2015.02.19 13:16</td>
</tr>
</table>
</div><!-- End and-diff-id -->
<div class="and-diff-id" style="margin-right:8px;">
<table class="diffspectable">
<tr>
<td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
</tr>
</table>
</div> <!-- End and-diff-id -->
</div> <!-- End headerRight -->
</div> <!-- End header -->
<div id="body-content" xstyle="padding:12px;padding-right:18px;">
<div id="doc-content" style="position:relative;">
<div id="mainBodyFluid">
<H2>
Class org.apache.http.protocol.<A HREF="../../../../reference/org/apache/http/protocol/RequestContent.html" target="_top"><font size="+2"><code>RequestContent</code></font></A>
</H2>
<p><b>Now deprecated</b>.<br>
<a NAME="constructors"></a>
<a NAME="methods"></a>
<a NAME="fields"></a>
</div>
<div id="footer">
<div id="copyright">
Except as noted, this content is licensed under
<a href="//creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
For details and restrictions, see the <a href="/license.html">Content License</a>.
</div>
<div id="footerlinks">
<p>
<a href="//www.android.com/terms.html">Site Terms of Service</a> -
<a href="//www.android.com/privacy.html">Privacy Policy</a> -
<a href="//www.android.com/branding.html">Brand Guidelines</a>
</p>
</div>
</div> <!-- end footer -->
</div><!-- end doc-content -->
</div> <!-- end body-content -->
<script src="//www.google-analytics.com/ga.js" type="text/javascript">
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-5831155-1");
pageTracker._setAllowAnchor(true);
pageTracker._initData();
pageTracker._trackPageview();
} catch(e) {}
</script>
</BODY>
</HTML>
| Ant-Droid/android_frameworks_base_OLD | docs/html/sdk/api_diff/22/changes/org.apache.http.protocol.RequestContent.html | HTML | apache-2.0 | 4,252 |
<!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=utf-8" >
<meta name="google-site-verification" content="GcrnbgZkRkwn51jQmX7QBaMKSymq1h-iG8G_xeILIkM" />
<title>How early DevOps investment greased the wheels of acquisition for Niche.co</title>
<meta name="author" content="Speaker 56" >
<link rel="alternate" type="application/rss+xml" title="devopsdays RSS Feed" href="http://www.devopsdays.org/feed/" >
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load('jquery', '1.3.2');
</script>
<!---This is a combined jAmpersand, jqwindont , jPullquote -->
<script type="text/javascript" src="/js/devops.js"></script>
<!--- Blueprint CSS Framework Screen + Fancytype-Screen + jedi.css -->
<link rel="stylesheet" href="/css/devops.min.css" type="text/css" media="screen, projection">
<link rel="stylesheet" href="/css/blueprint/print.css" type="text/css" media="print">
<!--[if IE]>
<link rel="stylesheet" href="/css/blueprint/ie.css" type="text/css" media="screen, projection">
<![endif]-->
<!--
Customize the labels on the map
*References*
- http://code.google.com/apis/maps/documentation/javascript/maptypes.html#StyledMaps
- http://google-maps-utility-library-v3.googlecode.com/svn/tags/markerwithlabel/1.1/examples/basic.html
-->
<link href="/css/googlemaps.css" rel="stylesheet">
</head>
<body onload="initialize()">
<div class="container ">
<div class="span-24 last" id="header">
<div class="span-16 first">
<img src="/images/devopsdays-banner.png" title="devopsdays banner" width="801" height="115" alt="devopdays banner" ><br>
</div>
<div class="span-8 last">
</div>
</div>
<div class="span-24 last">
<div id="headermenu">
<table >
<tr>
<td>
<a href="/"><img alt="home" title="home" src="/images/home.png"></a>
<a href="/">Home</a>
</td>
<td>
<a href="/contact/"><img alt="contact" title="contact" src="/images/contact.png"></a>
<a href="/contact/">Contact</a>
</td>
<td>
<a href="/events/"><img alt="events" title="events" src="/images/events.png"></a>
<a href="/events/">Events</a>
</td>
<td>
<a href="/presentations/"><img alt="presentations" title="presentations" src="/images/presentations.png"></a>
<a href="/presentations/">Presentations</a>
</td>
<td>
<a href="/blog/"><img alt="blog" title="blog" src="/images/blog.png"></a>
<a href="/blog/">Blog</a>
</td>
</tr>
</table>
</div>
</div>
<div class="span-24 last" id="header">
<div class="span-15 first">
<h1>How early DevOps investment greased the wheels of acquisition for Niche.co </h1>
</div>
<div class="span-8 last">
<div>
<a href="/feed"><img width="32px" height="32px" alt="rss" title="rss feed" src="/images/feed.png"></a>
<a href="http://www.twitter.com/devopsdays"><img width="32px" height="32px" alt="twitter" title="twitter" src="/images/twitter.png"></a>
<a href="http://groups.google.com/group/devopsdays"><img width="32px" height="32px" alt="mail" title="mailinglist" src="/images/email.png"></a>
<a href="http://www.facebook.com/group.php?gid=106761636771"><img width="32px" height="32px" alt="mail" title="facebook" src="/images/facebook.png"></a>
<a href="http://www.linkedin.com/groups?home=&gid=2445279"><img width="32px" height="32px" alt="mail" title="linkedin" src="/images/linkedin.png"></a>
</div>
</div>
</div>
<div class="span-15 ">
<div class="span-15 last ">
<p><strong>Abstract:</strong></p>
<p>Niche.co invested early in DevOps and during the acquisition we were presented with hundreds of due diligence questions as well as thrust into SOX compliance requirements shortly after the acquisition. These questions and requirements were 90% covered by the early investment in DevOps and using the DevOps disciplines, mindset, and processes early on in the company.</p>
<p>I would love to discuss and present examples of how subscribing to DevOps practices automatically builds in resiliency, checks & balances, reproducibility, system and user auditing, and more. I will also explore how implementing DevOps early on takes away the strain of growing and scaling quickly and how experimentation and new technologies are less scary for the entire team and management.</p>
<p><strong>Speaker:</strong>
Speaker 56</p>
</div>
<div class="span-15 first last">
<script type="text/javascript">
// var disqus_developer = 1;
</script>
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_shortname = 'devopsdays';
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a>
<hr>
</div>
</div>
<div class="span-8 last">
<div class="span-8 last">
<div style="height:340px">
<a class="twitter-timeline" data-chrome="noheader nofooter" data-tweet-limit=2 data-dnt="true" href="https://twitter.com/devopsdaysmsp/lists/devopsdays" data-widget-id="720829916510466048">Tweets from devopsdays events</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div>
</div>
</div>
<div class="span-17 ">
<div style=" padding-top:18px;" class="span-7 last">
<h1>Past </h1>
</div>
<div class="span-17 ">
<div style="height:700px;" id="quicklinks">
<table>
<tr>
<div style="display:table-cell; vertical-align:top">
<div style="margin:1px;">
<strong>2009</strong><br/>
<a href="/events/2009-ghent/">Ghent 2009</a>
</div>
<br>
<div style="margin:1px;">
<strong>2010</strong><br/>
<a href="/events/2010-sydney/">Sydney 2010</a><br>
<a href="/events/2010-us/">Mountain View 2010</a><br>
<a href="/events/2010-europe/">Hamburg 2010</a><br>
<a href="/events/2010-brazil/">Sao Paulo 2010</a><br>
</div>
</div>
<div style="display:table-cell; vertical-align:top">
<div style="margin:1px;">
<strong>2011</strong><br/>
<a href="/events/2011-boston/">Boston 2011</a><br>
<a href="/events/2011-mountainview/">Mountain View 2011</a><br>
<a href="/events/2011-melbourne/">Melbourne 2011</a><br>
<a href="/events/2011-bangalore/">Bangalore 2011</a><br>
<a href="/events/2011-goteborg/">Göteborg 2011</a><br>
<a href="/events/2011-manila/">Manila 2011</a><br>
</div>
<br>
<div style="margin:1px;">
<strong>2012</strong><br/>
<a href="/events/2012-austin/">Austin 2012</a><br>
<a href="/events/2012-tokyo/">Tokyo 2012</a><br>
<a href="/events/2012-india/">Delhi 2012</a><br>
<a href="/events/2012-mountainview/">Mountain View 2012</a><br>
<a href="/events/2012-italy/">Rome 2012</a><br>
<a href="/events/2012-newyork/">New York 2012</a><br>
</div>
</div>
<div style="display:table-cell; vertical-align:top">
<div style="margin:1px;">
<strong>2013</strong><br/>
<a href="/events/2013-newzealand/">New Zealand 2013</a><br>
<a href="/events/2013-london-spring/">London 2013</a><br>
<a href="/events/2013-paris/">Paris 2013</a><br>
<a href="/events/2013-austin/">Austin 2013</a><br>
<a href="/events/2013-berlin/">Berlin 2013</a><br>
<a href="/events/2013-amsterdam/">Amsterdam 2013</a><br>
<a href="/events/2013-mountainview/">Silicon Valley 2013</a><br>
<a href="/events/2013-downunder">Downunder 2013</a><br>
<a href="/events/2013-india/">Bangalore 2013</a><br/>
<a href="/events/2013-london/">London Autumn 2013</a><br/>
<a href="/events/2013-barcelona/">Barcelona 2013</a><br/>
<a href="/events/2013-vancouver/">Vancouver 2013</a><br/>
<a href="/events/2013-portland/">Portland 2013</a><br/>
<a href="/events/2013-newyork/">New York 2013</a><br/>
<a href="/events/2013-atlanta/">Atlanta 2013</a><br/>
<a href="/events/2013-telaviv/">Tel Aviv 2013</a><br/>
<a href="/events/2013-tokyo/">Tokyo 2013</a><br/>
</div>
</div>
<div style="display:table-cell; vertical-align:top">
<div style="margin:1px;">
<strong>2014</strong><br/>
<a href="/events/2014-nairobi/">Nairobi 2014</a><br/>
<a href="/events/2014-ljubljana/">Ljubljana 2014</a><br/>
<a href="/events/2014-austin/">Austin 2014</a><br/>
<a href="/events/2014-pittsburgh/">Pittsburgh 2014</a><br/>
<a href="/events/2014-amsterdam/">Amsterdam 2014</a><br/>
<a href="/events/2014-siliconvalley/">Silicon Valley 2014</a><br/>
<a href="/events/2014-minneapolis/">Minneapolis 2014</a><br/>
<a href="/events/2014-brisbane/">Brisbane 2014</a><br/>
<a href="/events/2014-boston/">Boston 2014</a><br/>
<a href="/events/2014-toronto/">Toronto 2014</a><br/>
<a href="/events/2014-newyork/">New York 2014</a><br/>
<a href="/events/2014-warsaw/">Warsaw 2014</a><br/>
<a href="/events/2014-chicago/">Chicago 2014</a><br/>
<a href="/events/2014-berlin/">Berlin 2014</a><br/>
<a href="/events/2014-belgium/">Belgium 2014</a><br/>
<a href="/events/2014-helsinki/">Helsinki 2014</a><br/>
<a href="/events/2014-vancouver/">Vancouver 2014</a><br/>
<a href="/events/2014-telaviv/">Tel Aviv 2014</a><br/>
<a href="/events/2014-bangalore/">Bangalore 2014</a><br/>
</div>
</div>
<div style="display:table-cell; vertical-align:top">
<div style="margin:1px;">
<strong>2015</strong><br/>
<a href="/events/2015-ljubljana/">Ljubljana 2015</a><br/>
<a href="/events/2015-paris">Paris 2015</a><br/>
<a href="/events/2015-denver/">Denver 2015</a><br/>
<a href="/events/2015-newyork/">New York 2015</a><br/>
<a href="/events/2015-austin">Austin 2015</a><br/>
<a href="/events/2015-toronto">Toronto 2015</a><br/>
<a href="/events/2015-washington-dc/">Washington, DC 2015</a><br/>
<a href="/events/2015-amsterdam">Amsterdam 2015</a><br/>
<a href="/events/2015-minneapolis/">Minneapolis 2015</a><br/>
<a href="/events/2015-melbourne/">Melbourne 2015</a><br/>
<a href="/events/2015-pittsburgh/">Pittsburgh 2015</a><br/>
<a href="/events/2015-chicago/">Chicago 2015</a><br/>
<a href="/events/2015-bangalore/">Bangalore 2015</a><br/>
<a href="/events/2015-boston/">Boston 2015</a><br/>
<a href="/events/2015-telaviv/">Tel Aviv 2015</a><br/>
<a href="/events/2015-singapore/">Singapore 2015</a><br/>
<a href="/events/2015-berlin/">Berlin 2015</a><br/>
<a href="/events/2015-charlotte">Charlotte 2015</a><br/>
<a href="/events/2015-siliconvalley">Silicon Valley 2015</a><br/>
<a href="/events/2015-detroit">Detroit 2015</a><br/>
<a href="/events/2015-ohio/">Ohio 2015</a><br/>
<a href="/events/2015-warsaw/">Warsaw 2015</a><br/>
</div>
</div>
<div style="display:table-cell; vertical-align:top">
<div style="margin:1px;">
<strong>2016</strong><br/>
<a href="/events/2016-losangeles-1day/">Los Angeles (1 day)</a>
<a href="/events/2016-vancouver/">Vancouver</a><br/>
<a href="/events/2016-london/">London</a><br/>
<a href="/events/2016-denver/">Denver</a><br/>
<a href="/events/2016-atlanta/">Atlanta</a><br/>
</div>
</div>
</tr>
</table>
</div>
</div>
</div>
<div class="span-6 last ">
<div style=" padding-top:18px;" class="span-5 last">
<h1>Future </h1>
</div>
<div class="span-6 last">
<div style="height:700px;" id="quicklinks">
<table>
<tr>
<td>
<strong>2016</strong><br/>
<a href="/events/2016-austin/">Austin - May 2 & 3</a><br/>
<a href="/events/2016-kiel/">Kiel - May 12 & 13</a><br/>
<a href="/events/2016-seattle/">Seattle - May 12 & 13</a><br/>
<a href="/events/2016-toronto/">Toronto - May 26 & 27</a><br/>
<a href="/events/2016-istanbul/">Istanbul - Jun 3 & 4</a><br/>
<a href="/events/2016-washington-dc/">Washington, DC - Jun 8 & 9</a><br/>
<a href="/events/2016-saltlakecity/">Salt Lake City - Jun 14 & 15</a><br/>
<a href="/events/2016-siliconvalley/">Silicon Valley - June 24 & 25</a><br/>
<a href="/events/2016-amsterdam/">Amsterdam - Jun 29, 30 & Jul 1</a><br/>
<a href="/events/2016-minneapolis/">Minneapolis - Jul 20 & 21</a><br/>
<a href="/events/2016-portland/">Portland - Aug 9 & 10</a><br/>
<a href="/events/2016-boston/">Boston - Aug 25 & 26</a><br/>
<a href="/events/2016-chicago/">Chicago - Aug 30 & 31</a><br/>
<a href="/events/2016-oslo/">Oslo - Sep 5 & 6</a><br/>
<a href="/events/2016-dallas/">Dallas - Sep 15 & 16</a><br/>
<a href="/events/2016-newyork/">New York - Sep 23 & 24</a><br/>
<a href="/events/2016-boise/">Boise - Oct 7 & 8</a><br/>
<a href="/events/2016-singapore/">Singapore - Oct 8 & 9</a><br/>
<a href="/events/2016-detroit/">Detroit - Oct 12 & 13</a><br/>
<a href="/events/2016-kansascity/">Kansas City - Oct 20 & 21</a><br/>
<a href="/events/2016-philadelphia/">Philadelphia - Oct 26 & 27</a><br/>
<br/>
<strong>2016, Dates TBD</strong><br/>
<a href="/events/2016-ghent/">Ghent</a><br/>
<a href="/events/2016-raleigh/">Raleigh</a><br/>
<a href="/events/2016-newzealand/">New Zealand</a><br/>
<a href="/events/2016-ohio/">Ohio</a><br/>
<a href="/events/2016-nashville/">Nashville</a><br/>
<a href="/events/2016-madison/">Madison</a><br/>
<a href="/events/2016-capetown/">Cape Town</a><br/>
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-9713393-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>
</body>
</html>
| joelaha/devopsdays-web | static/events/2015-siliconvalley/proposals/How early DevOps investment greased the wheels of acquisition for Niche.co/index.html | HTML | apache-2.0 | 14,853 |
{% load i18n mapentity_tags %}
<img src="{% media_static_fallback "upload/logo-header.png" "images/logo-header.png" %}">
<h2>{{ object.name }}</h2>
<h3>{{ object.districts.0 }}</h3>
<h3>{{ object.cities.0 }}</h3>
<img src="{{ MEDIA_URL|add:object.picture_print.name }}">
<table>
<tr>
<th>
{% trans "Type" %}
</th>
<td>
{{ object.type }}
</td>
</tr>
<tr>
<th>
{% trans "Elevation" %}
</th>
<td>
{{ object.min_elevation }} m
</td>
</tr>
</table>
<p>{{ object.description|safe }}</p>
{% if object.treks.count > 0 %}
<h4>{% trans "Treks" %}</h4>
<table>
{% for other in object.treks.all %}
<tr>
<td>{{ other.name }}</td>
</tr>
{% endfor %}
</table>
{% endif %}
<img src="{{ map_url }}" style="margin-left: auto; margin-right: auto; width: 100%; height: auto; ">
{% if object.pictures.0.legend or object.pictures.0.author %}
<p>{% trans "Attribution" %} : {{ object.pictures.0.legend }} ({{ object.pictures.0.author }})</p>
{% endif %}
<a href="http://geotrek.fr">{% trans "Powered by http://geotrek.fr" %}</a>
| johan--/Geotrek | geotrek/trekking/templates/trekking/poi_public_pdf.html | HTML | bsd-2-clause | 1,069 |
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Time frequency with Stockwell transform in sensor space — MNE 0.11.0 documentation</title>
<link rel="stylesheet" href="../../_static/basic.css" type="text/css" />
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="../../_static/gallery.css" type="text/css" />
<link rel="stylesheet" href="../../_static/bootswatch-3.3.4/flatly/bootstrap.min.css" type="text/css" />
<link rel="stylesheet" href="../../_static/bootstrap-sphinx.css" type="text/css" />
<link rel="stylesheet" href="../../_static/style.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../../',
VERSION: '0.11.0',
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="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<script type="text/javascript" src="../../_static/js/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="../../_static/js/jquery-fix.js"></script>
<script type="text/javascript" src="../../_static/bootstrap-3.3.4/js/bootstrap.min.js"></script>
<script type="text/javascript" src="../../_static/bootstrap-sphinx.js"></script>
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
<link rel="top" title="MNE 0.11.0 documentation" href="../../index.html" />
<link rel="up" title="Examples Gallery" href="../index.html" />
<link rel="next" title="Time-frequency analysis using multitaper method" href="plot_time_frequency_multitaper_sensors.html" />
<link rel="prev" title="Compute the power spectral density of epochs" href="plot_epochs_spectra.html" />
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700' rel='stylesheet' type='text/css'>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-37225609-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>
<script type="text/javascript">
!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);
js.id=id;js.src="http://platform.twitter.com/widgets.js";
fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
</script>
<script type="text/javascript">
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/plusone.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
</script>
<link rel="canonical" href="https://mne.tools/stable/index.html" />
</head>
<body role="document">
<div id="navbar" class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<!-- .btn-navbar is used as the toggle for collapsed navbar content -->
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../../index.html"><img src="../../_static/mne_logo_small.png">
</a>
<span class="navbar-text navbar-version pull-left"><b>0.11.0</b></span>
</div>
<div class="collapse navbar-collapse nav-collapse">
<ul class="nav navbar-nav">
<li><a href="../../getting_started.html">Get started</a></li>
<li><a href="../../tutorials.html">Tutorials</a></li>
<li><a href="../index.html">Gallery</a></li>
<li><a href="../../python_reference.html">API</a></li>
<li><a href="../../manual/index.html">Manual</a></li>
<li><a href="../../faq.html">FAQ</a></li>
<li class="dropdown globaltoc-container">
<a role="button"
id="dLabelGlobalToc"
data-toggle="dropdown"
data-target="#"
href="../../index.html">Site <b class="caret"></b></a>
<ul class="dropdown-menu globaltoc"
role="menu"
aria-labelledby="dLabelGlobalToc"><ul class="current">
<li class="toctree-l1"><a class="reference internal" href="../../getting_started.html">Getting Started</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../whats_new.html">What’s new</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../cite.html">Cite MNE</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../references.html">Related publications</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../tutorials.html">Tutorials</a></li>
<li class="toctree-l1 current"><a class="reference internal" href="../index.html">Examples Gallery</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../manual/index.html">Manual</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../python_reference.html">API Reference</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../faq.html">Frequently Asked Questions</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../advanced_setup.html">Advanced installation and setup</a></li>
<li class="toctree-l1"><a class="reference internal" href="../../mne_cpp.html">MNE with CPP</a></li>
</ul>
</ul>
</li>
<li class="dropdown">
<a role="button"
id="dLabelLocalToc"
data-toggle="dropdown"
data-target="#"
href="#">Page <b class="caret"></b></a>
<ul class="dropdown-menu localtoc"
role="menu"
aria-labelledby="dLabelLocalToc"><ul>
<li><a class="reference internal" href="#">Time frequency with Stockwell transform in sensor space</a></li>
</ul>
</ul>
</li>
</ul>
<form class="navbar-form navbar-right" action="../../search.html" method="get">
<div class="form-group">
<input type="text" name="q" class="form-control" placeholder="Search" />
</div>
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
<div class="sphinxsidebarwrapper">
<p class="logo"><a href="../../index.html">
<img class="logo" src="../../_static/mne_logo_small.png" alt="Logo"/>
</a></p><ul>
<li><a class="reference internal" href="#">Time frequency with Stockwell transform in sensor space</a></li>
</ul>
<li>
<a href="plot_epochs_spectra.html" title="Previous Chapter: Compute the power spectral density of epochs"><span class="glyphicon glyphicon-chevron-left visible-sm"></span><span class="hidden-sm hidden-tablet">« Compute the p...</span>
</a>
</li>
<li>
<a href="plot_time_frequency_multitaper_sensors.html" title="Next Chapter: Time-frequency analysis using multitaper method"><span class="glyphicon glyphicon-chevron-right visible-sm"></span><span class="hidden-sm hidden-tablet">Time-frequenc... »</span>
</a>
</li>
<form action="../../search.html" method="get">
<div class="form-group">
<input type="text" name="q" class="form-control" placeholder="Search" />
</div>
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
</div>
<div class="col-md-12 content">
<div class="section" id="time-frequency-with-stockwell-transform-in-sensor-space">
<span id="sphx-glr-auto-examples-time-frequency-plot-stockwell-py"></span><h1>Time frequency with Stockwell transform in sensor space<a class="headerlink" href="#time-frequency-with-stockwell-transform-in-sensor-space" title="Permalink to this headline">¶</a></h1>
<p>This script shows how to compute induced power and intertrial coherence
using the Stockwell transform, a.k.a. S-Transform.</p>
<div class="highlight-python"><div class="highlight"><pre><span></span><span class="c1"># Authors: Denis A. Engemann <[email protected]></span>
<span class="c1"># Alexandre Gramfort <[email protected]></span>
<span class="c1">#</span>
<span class="c1"># License: BSD (3-clause)</span>
<span class="kn">import</span> <span class="nn">mne</span>
<span class="kn">from</span> <span class="nn">mne</span> <span class="kn">import</span> <span class="n">io</span>
<span class="kn">from</span> <span class="nn">mne.time_frequency</span> <span class="kn">import</span> <a href="../../generated/mne.time_frequency.tfr_stockwell.html#mne.time_frequency.tfr_stockwell"><span class="n">tfr_stockwell</span></a>
<span class="kn">from</span> <span class="nn">mne.datasets</span> <span class="kn">import</span> <span class="n">somato</span>
<span class="k">print</span><span class="p">(</span><span class="n">__doc__</span><span class="p">)</span>
</pre></div>
</div>
<p>Set parameters</p>
<div class="highlight-python"><div class="highlight"><pre><span></span><span class="n">data_path</span> <span class="o">=</span> <span class="n">somato</span><span class="o">.</span><span class="n">data_path</span><span class="p">()</span>
<span class="n">raw_fname</span> <span class="o">=</span> <span class="n">data_path</span> <span class="o">+</span> <span class="s1">'/MEG/somato/sef_raw_sss.fif'</span>
<span class="n">event_id</span><span class="p">,</span> <span class="n">tmin</span><span class="p">,</span> <span class="n">tmax</span> <span class="o">=</span> <span class="mi">1</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.</span><span class="p">,</span> <span class="mf">3.</span>
<span class="c1"># Setup for reading the raw data</span>
<span class="n">raw</span> <span class="o">=</span> <a href="../../generated/mne.io.Raw.html#mne.io.Raw"><span class="n">io</span><span class="o">.</span><span class="n">Raw</span></a><span class="p">(</span><span class="n">raw_fname</span><span class="p">)</span>
<span class="n">baseline</span> <span class="o">=</span> <span class="p">(</span><span class="bp">None</span><span class="p">,</span> <span class="mi">0</span><span class="p">)</span>
<span class="n">events</span> <span class="o">=</span> <span class="n">mne</span><span class="o">.</span><span class="n">find_events</span><span class="p">(</span><span class="n">raw</span><span class="p">,</span> <span class="n">stim_channel</span><span class="o">=</span><span class="s1">'STI 014'</span><span class="p">)</span>
<span class="c1"># picks MEG gradiometers</span>
<span class="n">picks</span> <span class="o">=</span> <a href="../../generated/mne.pick_types.html#mne.pick_types"><span class="n">mne</span><span class="o">.</span><span class="n">pick_types</span></a><span class="p">(</span><span class="n">raw</span><span class="o">.</span><span class="n">info</span><span class="p">,</span> <span class="n">meg</span><span class="o">=</span><span class="s1">'grad'</span><span class="p">,</span> <span class="n">eeg</span><span class="o">=</span><span class="bp">False</span><span class="p">,</span> <span class="n">eog</span><span class="o">=</span><span class="bp">True</span><span class="p">,</span> <span class="n">stim</span><span class="o">=</span><span class="bp">False</span><span class="p">)</span>
<span class="n">epochs</span> <span class="o">=</span> <a href="../../generated/mne.Epochs.html#mne.Epochs"><span class="n">mne</span><span class="o">.</span><span class="n">Epochs</span></a><span class="p">(</span><span class="n">raw</span><span class="p">,</span> <span class="n">events</span><span class="p">,</span> <span class="n">event_id</span><span class="p">,</span> <span class="n">tmin</span><span class="p">,</span> <span class="n">tmax</span><span class="p">,</span> <span class="n">picks</span><span class="o">=</span><span class="n">picks</span><span class="p">,</span>
<span class="n">baseline</span><span class="o">=</span><span class="n">baseline</span><span class="p">,</span> <span class="n">reject</span><span class="o">=</span><span class="nb">dict</span><span class="p">(</span><span class="n">grad</span><span class="o">=</span><span class="mf">4000e-13</span><span class="p">,</span> <span class="n">eog</span><span class="o">=</span><span class="mf">350e-6</span><span class="p">),</span>
<span class="n">preload</span><span class="o">=</span><span class="bp">True</span><span class="p">)</span>
</pre></div>
</div>
<p>Calculate power and intertrial coherence</p>
<div class="highlight-python"><div class="highlight"><pre><span></span><span class="n">epochs</span> <span class="o">=</span> <span class="n">epochs</span><span class="o">.</span><span class="n">pick_channels</span><span class="p">([</span><span class="n">epochs</span><span class="o">.</span><span class="n">ch_names</span><span class="p">[</span><span class="mi">82</span><span class="p">]])</span> <span class="c1"># reduce computation</span>
<span class="n">power</span><span class="p">,</span> <span class="n">itc</span> <span class="o">=</span> <a href="../../generated/mne.time_frequency.tfr_stockwell.html#mne.time_frequency.tfr_stockwell"><span class="n">tfr_stockwell</span></a><span class="p">(</span><span class="n">epochs</span><span class="p">,</span> <span class="n">fmin</span><span class="o">=</span><span class="mf">6.</span><span class="p">,</span> <span class="n">fmax</span><span class="o">=</span><span class="mf">30.</span><span class="p">,</span> <span class="n">decim</span><span class="o">=</span><span class="mi">4</span><span class="p">,</span> <span class="n">n_jobs</span><span class="o">=</span><span class="mi">1</span><span class="p">,</span>
<span class="n">width</span><span class="o">=.</span><span class="mi">3</span><span class="p">,</span> <span class="n">return_itc</span><span class="o">=</span><span class="bp">True</span><span class="p">)</span>
<span class="n">power</span><span class="o">.</span><span class="n">plot</span><span class="p">([</span><span class="mi">0</span><span class="p">],</span> <span class="n">baseline</span><span class="o">=</span><span class="p">(</span><span class="o">-</span><span class="mf">0.5</span><span class="p">,</span> <span class="mi">0</span><span class="p">),</span> <span class="n">mode</span><span class="o">=</span><span class="bp">None</span><span class="p">,</span> <span class="n">title</span><span class="o">=</span><span class="s1">'S-transform (power)'</span><span class="p">)</span>
<span class="n">itc</span><span class="o">.</span><span class="n">plot</span><span class="p">([</span><span class="mi">0</span><span class="p">],</span> <span class="n">baseline</span><span class="o">=</span><span class="bp">None</span><span class="p">,</span> <span class="n">mode</span><span class="o">=</span><span class="bp">None</span><span class="p">,</span> <span class="n">title</span><span class="o">=</span><span class="s1">'S-transform (ITC)'</span><span class="p">)</span>
</pre></div>
</div>
<ul class="sphx-glr-horizontal">
<li><a class="first reference internal image-reference" href="../../_images/sphx_glr_plot_stockwell_001.png"><img alt="../../_images/sphx_glr_plot_stockwell_001.png" src="../../_images/sphx_glr_plot_stockwell_001.png" style="width: 376.0px; height: 282.0px;" /></a>
</li>
<li><a class="first reference internal image-reference" href="../../_images/sphx_glr_plot_stockwell_002.png"><img alt="../../_images/sphx_glr_plot_stockwell_002.png" src="../../_images/sphx_glr_plot_stockwell_002.png" style="width: 376.0px; height: 282.0px;" /></a>
</li>
</ul>
<p class="sphx-glr-script-out">Out:</p>
<div class="sphx-glr-script-out highlight-python"><div class="highlight"><pre><span></span>The input signal is shorter (1202) than "n_fft" (2048). Applying zero padding.
</pre></div>
</div>
<p><strong>Total running time of the script:</strong>
(0 minutes 3.792 seconds)</p>
<div class="sphx-glr-download container">
<strong>Download Python source code:</strong> <a class="reference download internal" href="../../_downloads/plot_stockwell.py" download=""><code class="xref download docutils literal"><span class="pre">plot_stockwell.py</span></code></a></div>
<div class="sphx-glr-download container">
<strong>Download IPython notebook:</strong> <a class="reference download internal" href="../../_downloads/plot_stockwell.ipynb" download=""><code class="xref download docutils literal"><span class="pre">plot_stockwell.ipynb</span></code></a></div>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="container">
<p class="pull-right">
<a href="#">Back to top</a>
<br/>
</p>
<p>
© Copyright 2012-2016, MNE Developers.<br/>
</p>
</div>
</footer>
<script src="https://mne.tools/versionwarning.js"></script>
</body>
</html> | mne-tools/mne-tools.github.io | 0.14/auto_examples/time_frequency/plot_stockwell.html | HTML | bsd-3-clause | 18,039 |
<!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>ViewerModel xref</title>
<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
</head>
<body>
<div id="overview"><a href="../../../../../../../apidocs/net/sourceforge/pmd/util/viewer/model/ViewerModel.html">View Javadoc</a></div><pre>
<a class="jxr_linenumber" name="1" href="#1">1</a> <strong class="jxr_keyword">package</strong> net.sourceforge.pmd.util.viewer.model;
<a class="jxr_linenumber" name="2" href="#2">2</a>
<a class="jxr_linenumber" name="3" href="#3">3</a> <strong class="jxr_keyword">import</strong> java.io.StringReader;
<a class="jxr_linenumber" name="4" href="#4">4</a> <strong class="jxr_keyword">import</strong> java.util.ArrayList;
<a class="jxr_linenumber" name="5" href="#5">5</a> <strong class="jxr_keyword">import</strong> java.util.List;
<a class="jxr_linenumber" name="6" href="#6">6</a>
<a class="jxr_linenumber" name="7" href="#7">7</a> <strong class="jxr_keyword">import</strong> net.sourceforge.pmd.lang.LanguageVersion;
<a class="jxr_linenumber" name="8" href="#8">8</a> <strong class="jxr_keyword">import</strong> net.sourceforge.pmd.lang.LanguageVersionHandler;
<a class="jxr_linenumber" name="9" href="#9">9</a> <strong class="jxr_keyword">import</strong> net.sourceforge.pmd.lang.ast.Node;
<a class="jxr_linenumber" name="10" href="#10">10</a> <strong class="jxr_keyword">import</strong> net.sourceforge.pmd.lang.ast.xpath.DocumentNavigator;
<a class="jxr_linenumber" name="11" href="#11">11</a> <strong class="jxr_keyword">import</strong> net.sourceforge.pmd.lang.java.ast.ASTCompilationUnit;
<a class="jxr_linenumber" name="12" href="#12">12</a> <strong class="jxr_keyword">import</strong> net.sourceforge.pmd.lang.java.ast.ParseException;
<a class="jxr_linenumber" name="13" href="#13">13</a>
<a class="jxr_linenumber" name="14" href="#14">14</a> <strong class="jxr_keyword">import</strong> org.jaxen.BaseXPath;
<a class="jxr_linenumber" name="15" href="#15">15</a> <strong class="jxr_keyword">import</strong> org.jaxen.JaxenException;
<a class="jxr_linenumber" name="16" href="#16">16</a> <strong class="jxr_keyword">import</strong> org.jaxen.XPath;
<a class="jxr_linenumber" name="17" href="#17">17</a>
<a class="jxr_linenumber" name="18" href="#18">18</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../net/sourceforge/pmd/util/viewer/model/ViewerModel.html">ViewerModel</a> {
<a class="jxr_linenumber" name="19" href="#19">19</a>
<a class="jxr_linenumber" name="20" href="#20">20</a> <strong class="jxr_keyword">private</strong> List<ViewerModelListener> listeners;
<a class="jxr_linenumber" name="21" href="#21">21</a> <strong class="jxr_keyword">private</strong> <a href="../../../../../../net/sourceforge/pmd/lang/ast/Node.html">Node</a> rootNode;
<a class="jxr_linenumber" name="22" href="#22">22</a> <strong class="jxr_keyword">private</strong> List<Node> evaluationResults;
<a class="jxr_linenumber" name="23" href="#23">23</a>
<a class="jxr_linenumber" name="24" href="#24">24</a> <strong class="jxr_keyword">public</strong> <a href="../../../../../../net/sourceforge/pmd/util/viewer/model/ViewerModel.html">ViewerModel</a>() {
<a class="jxr_linenumber" name="25" href="#25">25</a> listeners = <strong class="jxr_keyword">new</strong> ArrayList<ViewerModelListener>(5);
<a class="jxr_linenumber" name="26" href="#26">26</a> }
<a class="jxr_linenumber" name="27" href="#27">27</a>
<a class="jxr_linenumber" name="28" href="#28">28</a> <strong class="jxr_keyword">public</strong> <a href="../../../../../../net/sourceforge/pmd/lang/ast/Node.html">Node</a> getRootNode() {
<a class="jxr_linenumber" name="29" href="#29">29</a> <strong class="jxr_keyword">return</strong> rootNode;
<a class="jxr_linenumber" name="30" href="#30">30</a> }
<a class="jxr_linenumber" name="31" href="#31">31</a>
<a class="jxr_linenumber" name="32" href="#32">32</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="33" href="#33">33</a> <em class="jxr_javadoccomment"> * commits source code to the model.</em>
<a class="jxr_linenumber" name="34" href="#34">34</a> <em class="jxr_javadoccomment"> * all existing source will be replaced</em>
<a class="jxr_linenumber" name="35" href="#35">35</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="36" href="#36">36</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> commitSource(String source, <a href="../../../../../../net/sourceforge/pmd/lang/LanguageVersion.html">LanguageVersion</a> languageVersion) {
<a class="jxr_linenumber" name="37" href="#37">37</a> LanguageVersionHandler languageVersionHandler = languageVersion.getLanguageVersionHandler();
<a class="jxr_linenumber" name="38" href="#38">38</a> ASTCompilationUnit compilationUnit = (ASTCompilationUnit) languageVersionHandler
<a class="jxr_linenumber" name="39" href="#39">39</a> .getParser(languageVersionHandler.getDefaultParserOptions()).parse(<strong class="jxr_keyword">null</strong>, <strong class="jxr_keyword">new</strong> StringReader(source));
<a class="jxr_linenumber" name="40" href="#40">40</a> rootNode = compilationUnit;
<a class="jxr_linenumber" name="41" href="#41">41</a> fireViewerModelEvent(<strong class="jxr_keyword">new</strong> <a href="../../../../../../net/sourceforge/pmd/util/viewer/model/ViewerModelEvent.html">ViewerModelEvent</a>(<strong class="jxr_keyword">this</strong>, ViewerModelEvent.CODE_RECOMPILED));
<a class="jxr_linenumber" name="42" href="#42">42</a> }
<a class="jxr_linenumber" name="43" href="#43">43</a>
<a class="jxr_linenumber" name="44" href="#44">44</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="45" href="#45">45</a> <em class="jxr_javadoccomment"> * determines whether the model has a compiled tree at it's disposal</em>
<a class="jxr_linenumber" name="46" href="#46">46</a> <em class="jxr_javadoccomment"> *</em>
<a class="jxr_linenumber" name="47" href="#47">47</a> <em class="jxr_javadoccomment"> * @return true if there is an AST, false otherwise</em>
<a class="jxr_linenumber" name="48" href="#48">48</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="49" href="#49">49</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> hasCompiledTree() {
<a class="jxr_linenumber" name="50" href="#50">50</a> <strong class="jxr_keyword">return</strong> rootNode != <strong class="jxr_keyword">null</strong>;
<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> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="54" href="#54">54</a> <em class="jxr_javadoccomment"> * evaluates the given XPath expression against the current tree</em>
<a class="jxr_linenumber" name="55" href="#55">55</a> <em class="jxr_javadoccomment"> *</em>
<a class="jxr_linenumber" name="56" href="#56">56</a> <em class="jxr_javadoccomment"> * @param xPath XPath expression to be evaluated</em>
<a class="jxr_linenumber" name="57" href="#57">57</a> <em class="jxr_javadoccomment"> * @param evaluator object which requests the evaluation</em>
<a class="jxr_linenumber" name="58" href="#58">58</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="59" href="#59">59</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> evaluateXPathExpression(String xPath, Object evaluator) <strong class="jxr_keyword">throws</strong> ParseException, JaxenException {
<a class="jxr_linenumber" name="60" href="#60">60</a> XPath xpath = <strong class="jxr_keyword">new</strong> BaseXPath(xPath, <strong class="jxr_keyword">new</strong> <a href="../../../../../../net/sourceforge/pmd/lang/ast/xpath/DocumentNavigator.html">DocumentNavigator</a>());
<a class="jxr_linenumber" name="61" href="#61">61</a> evaluationResults = xpath.selectNodes(rootNode);
<a class="jxr_linenumber" name="62" href="#62">62</a> fireViewerModelEvent(<strong class="jxr_keyword">new</strong> <a href="../../../../../../net/sourceforge/pmd/util/viewer/model/ViewerModelEvent.html">ViewerModelEvent</a>(evaluator, ViewerModelEvent.PATH_EXPRESSION_EVALUATED));
<a class="jxr_linenumber" name="63" href="#63">63</a> }
<a class="jxr_linenumber" name="64" href="#64">64</a>
<a class="jxr_linenumber" name="65" href="#65">65</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="66" href="#66">66</a> <em class="jxr_javadoccomment"> * retrieves the results of last evaluation</em>
<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"> * @return a list containing the nodes selected by the last XPath expression</em>
<a class="jxr_linenumber" name="69" href="#69">69</a> <em class="jxr_javadoccomment"> * <p/></em>
<a class="jxr_linenumber" name="70" href="#70">70</a> <em class="jxr_javadoccomment"> * evaluation</em>
<a class="jxr_linenumber" name="71" href="#71">71</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="72" href="#72">72</a> <strong class="jxr_keyword">public</strong> List<Node> getLastEvaluationResults() {
<a class="jxr_linenumber" name="73" href="#73">73</a> <strong class="jxr_keyword">return</strong> evaluationResults;
<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> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="77" href="#77">77</a> <em class="jxr_javadoccomment"> * selects the given node in the AST</em>
<a class="jxr_linenumber" name="78" href="#78">78</a> <em class="jxr_javadoccomment"> *</em>
<a class="jxr_linenumber" name="79" href="#79">79</a> <em class="jxr_javadoccomment"> * @param node node to be selected</em>
<a class="jxr_linenumber" name="80" href="#80">80</a> <em class="jxr_javadoccomment"> * @param selector object which requests the selection</em>
<a class="jxr_linenumber" name="81" href="#81">81</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="82" href="#82">82</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> selectNode(<a href="../../../../../../net/sourceforge/pmd/lang/ast/Node.html">Node</a> node, Object selector) {
<a class="jxr_linenumber" name="83" href="#83">83</a> fireViewerModelEvent(<strong class="jxr_keyword">new</strong> <a href="../../../../../../net/sourceforge/pmd/util/viewer/model/ViewerModelEvent.html">ViewerModelEvent</a>(selector, ViewerModelEvent.NODE_SELECTED, node));
<a class="jxr_linenumber" name="84" href="#84">84</a> }
<a class="jxr_linenumber" name="85" href="#85">85</a>
<a class="jxr_linenumber" name="86" href="#86">86</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="87" href="#87">87</a> <em class="jxr_javadoccomment"> * appends the given fragment to the XPath expression</em>
<a class="jxr_linenumber" name="88" href="#88">88</a> <em class="jxr_javadoccomment"> *</em>
<a class="jxr_linenumber" name="89" href="#89">89</a> <em class="jxr_javadoccomment"> * @param pathFragment fragment to be added</em>
<a class="jxr_linenumber" name="90" href="#90">90</a> <em class="jxr_javadoccomment"> * @param appender object that is trying to append the fragment</em>
<a class="jxr_linenumber" name="91" href="#91">91</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="92" href="#92">92</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> appendToXPathExpression(String pathFragment, Object appender) {
<a class="jxr_linenumber" name="93" href="#93">93</a> fireViewerModelEvent(<strong class="jxr_keyword">new</strong> <a href="../../../../../../net/sourceforge/pmd/util/viewer/model/ViewerModelEvent.html">ViewerModelEvent</a>(appender, ViewerModelEvent.PATH_EXPRESSION_APPENDED, pathFragment));
<a class="jxr_linenumber" name="94" href="#94">94</a> }
<a class="jxr_linenumber" name="95" href="#95">95</a>
<a class="jxr_linenumber" name="96" href="#96">96</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> addViewerModelListener(<a href="../../../../../../net/sourceforge/pmd/util/viewer/model/ViewerModelListener.html">ViewerModelListener</a> l) {
<a class="jxr_linenumber" name="97" href="#97">97</a> listeners.add(l);
<a class="jxr_linenumber" name="98" href="#98">98</a> }
<a class="jxr_linenumber" name="99" href="#99">99</a>
<a class="jxr_linenumber" name="100" href="#100">100</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> removeViewerModelListener(<a href="../../../../../../net/sourceforge/pmd/util/viewer/model/ViewerModelListener.html">ViewerModelListener</a> l) {
<a class="jxr_linenumber" name="101" href="#101">101</a> listeners.remove(l);
<a class="jxr_linenumber" name="102" href="#102">102</a> }
<a class="jxr_linenumber" name="103" href="#103">103</a>
<a class="jxr_linenumber" name="104" href="#104">104</a> <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">void</strong> fireViewerModelEvent(<a href="../../../../../../net/sourceforge/pmd/util/viewer/model/ViewerModelEvent.html">ViewerModelEvent</a> e) {
<a class="jxr_linenumber" name="105" href="#105">105</a> <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">int</strong> i = 0; i < listeners.size(); i++) {
<a class="jxr_linenumber" name="106" href="#106">106</a> listeners.get(i).viewerModelChanged(e);
<a class="jxr_linenumber" name="107" href="#107">107</a> }
<a class="jxr_linenumber" name="108" href="#108">108</a> }
<a class="jxr_linenumber" name="109" href="#109">109</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/util/viewer/model/ViewerModel.html | HTML | bsd-3-clause | 14,664 |
{% extends 'pypi_packages/base.html' %}
{% block title %}Manage {{ release }}{% endblock %}
{% block content %}
<h1>Manage {{ release }}</h1>
<div>
<form action="" method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Submit" />
</form>
</div>
{% endblock %}
| hsmade/djangopypi2 | djangopypi2/apps/pypi_packages/templates/pypi_packages/release_manage.html | HTML | bsd-3-clause | 293 |
<html>
<head>
<title>About Java Outline Editor</title>
</head>
<body>
<h2>About Jave Outline Editor</h2>
<hr>
<table border="0" cellpadding="0" cellspacing="4">
<tr valign="top">
<td align="right"><nobr><b>Version:</b></nobr></td>
<td>1.8.10.6<br></td>
</tr>
<tr valign="top">
<td align="right"><nobr><b>Released On:</b></nobr></td>
<td>06/03/04. <a href="release_notes.html#release_notes">Release Notes</a><br></td>
</tr>
<tr valign="top">
<td align="right"><nobr><b>Credits:</b></nobr></td>
<td>
Maynard Demmon, <a href="mailto:[email protected]">[email protected]</a><br>
Stanley Krute<br>
Steven Spencer<br>
Daniel Ericsson<br>
</td>
</tr>
<tr valign="top">
<td align="right"><nobr><b>Copyright Notices:</b></nobr></td>
<td>
Copyright holders are listed in chronological order by date of first contribution to the code base.<br>
<br>
Portions Copyright 2000-2004 by Maynard Demmon. All rights reserved.<br>
Portions Copyright 2001 by Steven Spencer. All rights reserved.<br>
Portions Copyright 2001-2002 by Stanley Krute. All rights reserved.<br>
Portions Copyright 2001 by Daniel Ericsson. All rights reserved.<br>
</td>
</tr>
<tr valign="top">
<td align="right"><nobr><b>JOE License:</b></nobr></td>
<td>
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
<ul>
<li>Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.<br></li>
<li>Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.<br></li>
<li>Neither the names "Java Outline Editor", "JOE" nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.</li>
</ul>
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.<br>
</td>
</tr>
<tr valign="top">
<td align="right"><nobr><b>Website:</b></nobr></td>
<td><a href="http://outliner.sourceforge.net/">http://outliner.sourceforge.net/</a><br></td>
</tr>
</table>
</body>
</html>
| hashrock/JavaOutlineEditor | src/rsrc/about.html | HTML | bsd-3-clause | 3,091 |
<!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.12"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>EDDA: src/distributions/estimate_gmm.h 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">EDDA
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.12 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
</script>
<div id="main-nav"></div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="dir_68267d1309a1af8e8297ef4c3efbcdba.html">src</a></li><li class="navelem"><a class="el" href="dir_cd76bb8ea6b64c9528b9693739029e1f.html">distributions</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#namespaces">Namespaces</a> |
<a href="#func-members">Functions</a> </div>
<div class="headertitle">
<div class="title">estimate_gmm.h File Reference</div> </div>
</div><!--header-->
<div class="contents">
<div class="textblock"><code>#include <iostream></code><br />
<code>#include <cmath></code><br />
<code>#include <vector></code><br />
<code>#include <<a class="el" href="interpolator_8h_source.html">core/interpolator.h</a>></code><br />
<code>#include <<a class="el" href="gaussian__mixture_8h_source.html">distributions/gaussian_mixture.h</a>></code><br />
</div>
<p><a href="estimate__gmm_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="namespaces"></a>
Namespaces</h2></td></tr>
<tr class="memitem:namespaceedda"><td class="memItemLeft" align="right" valign="top">  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceedda.html">edda</a></td></tr>
<tr class="memdesc:namespaceedda"><td class="mdescLeft"> </td><td class="mdescRight">Experimental functionality. <br /></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="func-members"></a>
Functions</h2></td></tr>
<tr class="memitem:a86f6ef9cc6522926fc4bc18985e132d5"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceedda.html#a86f6ef9cc6522926fc4bc18985e132d5">edda::check_convergence</a> (double fmax, double fmin, double ftol)</td></tr>
<tr class="memdesc:a86f6ef9cc6522926fc4bc18985e132d5"><td class="mdescLeft"> </td><td class="mdescRight">EM helper function. <a href="namespaceedda.html#a86f6ef9cc6522926fc4bc18985e132d5">More...</a><br /></td></tr>
<tr class="separator:a86f6ef9cc6522926fc4bc18985e132d5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9d438e50e5dc488e5d812cea23ac606a"><td class="memItemLeft" align="right" valign="top">double </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceedda.html#a9d438e50e5dc488e5d812cea23ac606a">edda::eval_gaussian_density</a> (double mean, double sigma, double val)</td></tr>
<tr class="memdesc:a9d438e50e5dc488e5d812cea23ac606a"><td class="mdescLeft"> </td><td class="mdescRight">EM helper function. <a href="namespaceedda.html#a9d438e50e5dc488e5d812cea23ac606a">More...</a><br /></td></tr>
<tr class="separator:a9d438e50e5dc488e5d812cea23ac606a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0277b5151ce74008ef5a91e0f3c70937"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceedda.html#a0277b5151ce74008ef5a91e0f3c70937">edda::update_parameters</a> (int n, double *data, int k, double *prob, double *mean, double *sd, double **class_prob)</td></tr>
<tr class="memdesc:a0277b5151ce74008ef5a91e0f3c70937"><td class="mdescLeft"> </td><td class="mdescRight">EM helper function. <a href="namespaceedda.html#a0277b5151ce74008ef5a91e0f3c70937">More...</a><br /></td></tr>
<tr class="separator:a0277b5151ce74008ef5a91e0f3c70937"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac61d9325dd77e388d2f85ca345b11754"><td class="memItemLeft" align="right" valign="top">double </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceedda.html#ac61d9325dd77e388d2f85ca345b11754">edda::classprob</a> (int j, double x, int k, double *prob, double *mean, double *sd)</td></tr>
<tr class="memdesc:ac61d9325dd77e388d2f85ca345b11754"><td class="mdescLeft"> </td><td class="mdescRight">EM helper function. <a href="namespaceedda.html#ac61d9325dd77e388d2f85ca345b11754">More...</a><br /></td></tr>
<tr class="separator:ac61d9325dd77e388d2f85ca345b11754"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a17578e6edb597deb5437a8ef81a0368c"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceedda.html#a17578e6edb597deb5437a8ef81a0368c">edda::update_class_prob</a> (int n, double *data, int k, double *prob, double *mean, double *sd, double **class_prob)</td></tr>
<tr class="memdesc:a17578e6edb597deb5437a8ef81a0368c"><td class="mdescLeft"> </td><td class="mdescRight">EM helper function. <a href="namespaceedda.html#a17578e6edb597deb5437a8ef81a0368c">More...</a><br /></td></tr>
<tr class="separator:a17578e6edb597deb5437a8ef81a0368c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3cd88e2836805d8b67720a7ea3559945"><td class="memItemLeft" align="right" valign="top">double </td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceedda.html#a3cd88e2836805d8b67720a7ea3559945">edda::computeLogLikelihood</a> (int n, double *data, int k, double *prob, double *mean, double *sd)</td></tr>
<tr class="memdesc:a3cd88e2836805d8b67720a7ea3559945"><td class="mdescLeft"> </td><td class="mdescRight">EM helper function. <a href="namespaceedda.html#a3cd88e2836805d8b67720a7ea3559945">More...</a><br /></td></tr>
<tr class="separator:a3cd88e2836805d8b67720a7ea3559945"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adf290c6f2f0638ac28e9c459293d674f"><td class="memTemplParams" colspan="2">template<int GMMs> </td></tr>
<tr class="memitem:adf290c6f2f0638ac28e9c459293d674f"><td class="memTemplItemLeft" align="right" valign="top">void </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="namespaceedda.html#adf290c6f2f0638ac28e9c459293d674f">edda::eddaComputeEM</a> (double *samples, int numSamples, dist::GaussianMixture< GMMs > *new_gmm)</td></tr>
<tr class="separator:adf290c6f2f0638ac28e9c459293d674f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac9b0cfdf55fb9252d59749ffb800e527"><td class="memTemplParams" colspan="2">template<int GMMs> </td></tr>
<tr class="memitem:ac9b0cfdf55fb9252d59749ffb800e527"><td class="memTemplItemLeft" align="right" valign="top">bool </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="namespaceedda.html#ac9b0cfdf55fb9252d59749ffb800e527">edda::testforMatch</a> (double val, dist::GaussianMixture< GMMs > *currentGMM, std::vector< float > *valList, std::vector< float > *distList)</td></tr>
<tr class="memdesc:ac9b0cfdf55fb9252d59749ffb800e527"><td class="mdescLeft"> </td><td class="mdescRight">Incremental update helper function. <a href="namespaceedda.html#ac9b0cfdf55fb9252d59749ffb800e527">More...</a><br /></td></tr>
<tr class="separator:ac9b0cfdf55fb9252d59749ffb800e527"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ada3481b5e318feefa332d69f067f445c"><td class="memTemplParams" colspan="2">template<int GMMs> </td></tr>
<tr class="memitem:ada3481b5e318feefa332d69f067f445c"><td class="memTemplItemLeft" align="right" valign="top">void </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="namespaceedda.html#ada3481b5e318feefa332d69f067f445c">edda::eddaUpdateGMMIncremental</a> (double *samples, int numSamples, dist::GaussianMixture< GMMs > *new_gmm)</td></tr>
<tr class="separator:ada3481b5e318feefa332d69f067f445c"><td class="memSeparator" colspan="2"> </td></tr>
</table>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Tue Nov 15 2016 16:22:27 for EDDA by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.12
</small></address>
</body>
</html>
| GRAVITYLab/edda | html/estimate__gmm_8h.html | HTML | mit | 10,348 |
<!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_07) on Tue May 28 14:16:23 BST 2013 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Uses of Class org.neo4j.helpers.collection.LimitingIterator (Neo4j Community 2.0.0-M03 API)</title>
<meta name="date" content="2013-05-28">
<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.neo4j.helpers.collection.LimitingIterator (Neo4j Community 2.0.0-M03 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../org/neo4j/helpers/collection/LimitingIterator.html" title="class in org.neo4j.helpers.collection">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../overview-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>Neo4j Community</em></div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/neo4j/helpers/collection/class-use/LimitingIterator.html" target="_top">Frames</a></li>
<li><a href="LimitingIterator.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.neo4j.helpers.collection.LimitingIterator" class="title">Uses of Class<br>org.neo4j.helpers.collection.LimitingIterator</h2>
</div>
<div class="classUseContainer">No usage of org.neo4j.helpers.collection.LimitingIterator</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/neo4j/helpers/collection/LimitingIterator.html" title="class in org.neo4j.helpers.collection">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../../../../../overview-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>Neo4j Community</em></div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/neo4j/helpers/collection/class-use/LimitingIterator.html" target="_top">Frames</a></li>
<li><a href="LimitingIterator.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2002-2013 <a href="http://neo4j.org/">The Neo4j Graph Database Project</a>. All Rights Reserved.</small></p>
</body>
</html>
| LeArNalytics/LeArNalytics | neo4j/neo4j-community-2.0.0-M03/doc/java/api/org/neo4j/helpers/collection/class-use/LimitingIterator.html | HTML | mit | 4,649 |
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>three.js webgl - marching cubes</title>
<meta charset="utf-8">
<style>
body {
color: #fff;
font-family: Monospace;
font-size: 13px;
text-align: center;
background-color: #000;
margin: 0px;
overflow: hidden;
}
#info {
color: #ffffff;
position: absolute;
top: 0px;
width: 100%;
padding: 5px;
}
a {
color: gold;
}
#oldie {
font-family: monospace;
font-size: 13px;
text-align: center;
background: rgb(0, 0, 50);
color: #fff;
padding: 1em;
width: 475px;
margin: 5em auto 0;
display: none;
}
#stats { position: absolute; top:0; left: 0 }
#stats #fps { background: transparent !important }
#stats #fps #fpsText { color: #aaa !important }
#stats #fps #fpsGraph { display: none }
</style>
</head>
<body>
<div id="container"></div>
<div id="info">
<a href="http://threejs.org" target="_blank">three.js</a> -
marching cubes -
[based on greggman's <a href="http://webglsamples.googlecode.com/hg/blob/blob.html">blob</a>, original code by Henrik Rydgård]
</div>
<script src="../build/three.min.js"></script>
<script src="js/controls/TrackballControls.js"></script>
<script src="js/shaders/CopyShader.js"></script>
<script src="js/shaders/FXAAShader.js"></script>
<script src="js/shaders/HorizontalTiltShiftShader.js"></script>
<script src="js/shaders/VerticalTiltShiftShader.js"></script>
<script src="js/postprocessing/EffectComposer.js"></script>
<script src="js/postprocessing/RenderPass.js"></script>
<script src="js/postprocessing/BloomPass.js"></script>
<script src="js/postprocessing/ShaderPass.js"></script>
<script src="js/postprocessing/MaskPass.js"></script>
<script src="js/postprocessing/SavePass.js"></script>
<script src="js/MarchingCubes.js"></script>
<script src="js/ShaderToon.js"></script>
<script src="js/Detector.js"></script>
<script src="js/libs/stats.min.js"></script>
<script src="js/libs/dat.gui.min.js"></script>
<script>
if ( ! Detector.webgl ) Detector.addGetWebGLMessage();
var MARGIN = 0;
var SCREEN_WIDTH = window.innerWidth;
var SCREEN_HEIGHT = window.innerHeight - 2 * MARGIN;
var container, stats;
var camera, scene, renderer;
var mesh, texture, geometry, materials, material, current_material;
var light, pointLight, ambientLight;
var effect, resolution, numBlobs;
var composer, effectFXAA, hblur, vblur;
var effectController;
var time = 0;
var clock = new THREE.Clock();
init();
animate();
function init() {
container = document.getElementById( 'container' );
// CAMERA
camera = new THREE.PerspectiveCamera( 45, SCREEN_WIDTH / SCREEN_HEIGHT, 1, 10000 );
camera.position.set( -500, 500, 1500 );
// SCENE
scene = new THREE.Scene();
// LIGHTS
light = new THREE.DirectionalLight( 0xffffff );
light.position.set( 0.5, 0.5, 1 );
scene.add( light );
pointLight = new THREE.PointLight( 0xff3300 );
pointLight.position.set( 0, 0, 100 );
scene.add( pointLight );
ambientLight = new THREE.AmbientLight( 0x080808 );
scene.add( ambientLight );
// MATERIALS
materials = generateMaterials();
current_material = "shiny";
// MARCHING CUBES
resolution = 28;
numBlobs = 10;
effect = new THREE.MarchingCubes( resolution, materials[ current_material ].m, true, true );
effect.position.set( 0, 0, 0 );
effect.scale.set( 700, 700, 700 );
effect.enableUvs = false;
effect.enableColors = false;
scene.add( effect );
// RENDERER
renderer = new THREE.WebGLRenderer( { clearColor: 0x050505, clearAlpha: 1, alpha: false } );
renderer.setSize( SCREEN_WIDTH, SCREEN_HEIGHT );
renderer.domElement.style.position = "absolute";
renderer.domElement.style.top = MARGIN + "px";
renderer.domElement.style.left = "0px";
container.appendChild( renderer.domElement );
//
renderer.gammaInput = true;
renderer.gammaOutput = true;
renderer.physicallyBasedShading = true;
// CONTROLS
controls = new THREE.TrackballControls( camera, renderer.domElement );
// STATS
stats = new Stats();
container.appendChild( stats.domElement );
// COMPOSER
renderer.autoClear = false;
var renderTargetParameters = { minFilter: THREE.LinearFilter, magFilter: THREE.LinearFilter, format: THREE.RGBFormat, stencilBuffer: false };
renderTarget = new THREE.WebGLRenderTarget( SCREEN_WIDTH, SCREEN_HEIGHT, renderTargetParameters );
effectFXAA = new THREE.ShaderPass( THREE.FXAAShader );
hblur = new THREE.ShaderPass( THREE.HorizontalTiltShiftShader );
vblur = new THREE.ShaderPass( THREE.VerticalTiltShiftShader );
var bluriness = 8;
hblur.uniforms[ 'h' ].value = bluriness / SCREEN_WIDTH;
vblur.uniforms[ 'v' ].value = bluriness / SCREEN_HEIGHT;
hblur.uniforms[ 'r' ].value = vblur.uniforms[ 'r' ].value = 0.5;
effectFXAA.uniforms[ 'resolution' ].value.set( 1 / SCREEN_WIDTH, 1 / SCREEN_HEIGHT );
composer = new THREE.EffectComposer( renderer, renderTarget );
var renderModel = new THREE.RenderPass( scene, camera );
vblur.renderToScreen = true;
//effectFXAA.renderToScreen = true;
composer = new THREE.EffectComposer( renderer, renderTarget );
composer.addPass( renderModel );
composer.addPass( effectFXAA );
composer.addPass( hblur );
composer.addPass( vblur );
// GUI
setupGui();
// EVENTS
window.addEventListener( 'resize', onWindowResize, false );
}
//
function onWindowResize( event ) {
SCREEN_WIDTH = window.innerWidth;
SCREEN_HEIGHT = window.innerHeight - 2 * MARGIN;
camera.aspect = SCREEN_WIDTH / SCREEN_HEIGHT;
camera.updateProjectionMatrix();
renderer.setSize( SCREEN_WIDTH, SCREEN_HEIGHT );
composer.setSize( SCREEN_WIDTH, SCREEN_HEIGHT );
hblur.uniforms[ 'h' ].value = 4 / SCREEN_WIDTH;
vblur.uniforms[ 'v' ].value = 4 / SCREEN_HEIGHT;
effectFXAA.uniforms[ 'resolution' ].value.set( 1 / SCREEN_WIDTH, 1 / SCREEN_HEIGHT );
}
function generateMaterials() {
// environment map
var path = "textures/cube/SwedishRoyalCastle/";
var format = '.jpg';
var urls = [
path + 'px' + format, path + 'nx' + format,
path + 'py' + format, path + 'ny' + format,
path + 'pz' + format, path + 'nz' + format
];
var reflectionCube = THREE.ImageUtils.loadTextureCube( urls );
reflectionCube.format = THREE.RGBFormat;
var refractionCube = new THREE.Texture( reflectionCube.image, new THREE.CubeRefractionMapping() );
reflectionCube.format = THREE.RGBFormat;
// toons
var toonMaterial1 = createShaderMaterial( "toon1", light, ambientLight ),
toonMaterial2 = createShaderMaterial( "toon2", light, ambientLight ),
hatchingMaterial = createShaderMaterial( "hatching", light, ambientLight ),
hatchingMaterial2 = createShaderMaterial( "hatching", light, ambientLight ),
dottedMaterial = createShaderMaterial( "dotted", light, ambientLight ),
dottedMaterial2 = createShaderMaterial( "dotted", light, ambientLight );
hatchingMaterial2.uniforms.uBaseColor.value.setRGB( 0, 0, 0 );
hatchingMaterial2.uniforms.uLineColor1.value.setHSV( 0, 0.9, 0.9 );
hatchingMaterial2.uniforms.uLineColor2.value.setHSV( 0, 0.9, 0.9 );
hatchingMaterial2.uniforms.uLineColor3.value.setHSV( 0, 0.9, 0.9 );
hatchingMaterial2.uniforms.uLineColor4.value.setHSV( 0.1, 0.9, 0.9 );
dottedMaterial2.uniforms.uBaseColor.value.setRGB( 0, 0, 0 );
dottedMaterial2.uniforms.uLineColor1.value.setHSV( 0.05, 1.0, 1.0 );
var texture = THREE.ImageUtils.loadTexture( "textures/ash_uvgrid01.jpg" );
texture.wrapS = texture.wrapT = THREE.RepeatWrapping;
var materials = {
"chrome" :
{
m: new THREE.MeshLambertMaterial( { color: 0xffffff, envMap: reflectionCube } ),
h: 0, s: 0, v: 1
},
"liquid" :
{
m: new THREE.MeshLambertMaterial( { color: 0xffffff, envMap: refractionCube, refractionRatio: 0.85 } ),
h: 0, s: 0, v: 1
},
"shiny" :
{
m: new THREE.MeshPhongMaterial( { color: 0x550000, specular: 0x440000, envMap: reflectionCube, combine: THREE.MixOperation, reflectivity: 0.3, metal: true } ),
h: 0, s: 0.9, v: 0.3
},
"matte" :
{
m: new THREE.MeshPhongMaterial( { color: 0x000000, specular: 0x111111, shininess: 1 } ),
h: 0, s: 0, v: 1
},
"flat" :
{
m: new THREE.MeshPhongMaterial( { color: 0x000000, specular: 0x111111, shininess: 1, shading: THREE.FlatShading } ),
h: 0, s: 0, v: 1
},
"textured" :
{
m: new THREE.MeshPhongMaterial( { color: 0xffffff, specular: 0x111111, shininess: 1, map: texture } ),
h: 0, s: 0, v: 1
},
"colors" :
{
m: new THREE.MeshPhongMaterial( { color: 0xffffff, specular: 0xffffff, shininess: 2, vertexColors: THREE.VertexColors } ),
h: 0, s: 0, v: 1
},
"plastic" :
{
m: new THREE.MeshPhongMaterial( { color: 0x000000, specular: 0x888888, ambient: 0x000000, shininess: 250 } ),
h: 0.6, s: 0.9, v: 0.2
},
"toon1" :
{
m: toonMaterial1,
h: 0.2, s: 0.5, v: 1
},
"toon2" :
{
m: toonMaterial2,
h: 0.4, s: 0.5, v: 1
},
"hatching" :
{
m: hatchingMaterial,
h: 0.2, s: 0.2, v: 1
},
"hatching2" :
{
m: hatchingMaterial2,
h: 0.0, s: 0.9, v: 0.9
},
"dotted" :
{
m: dottedMaterial,
h: 0.2, s: 0.2, v: 1
},
"dotted2" :
{
m: dottedMaterial2,
h: 0.1, s: 1.0, v: 1
}
};
return materials;
}
function createShaderMaterial( id, light, ambientLight ) {
var shader = THREE.ShaderToon[ id ];
var u = THREE.UniformsUtils.clone( shader.uniforms );
var vs = shader.vertexShader;
var fs = shader.fragmentShader;
var material = new THREE.ShaderMaterial( { uniforms: u, vertexShader: vs, fragmentShader: fs } );
material.uniforms.uDirLightPos.value = light.position;
material.uniforms.uDirLightColor.value = light.color;
material.uniforms.uAmbientLightColor.value = ambientLight.color;
return material;
}
//
function setupGui() {
var createHandler = function( id ) {
return function() {
var mat_old = materials[ current_material ];
mat_old.h = m_h.getValue();
mat_old.s = m_s.getValue();
mat_old.v = m_v.getValue();
current_material = id;
var mat = materials[ id ];
effect.material = mat.m;
m_h.setValue( mat.h );
m_s.setValue( mat.s );
m_v.setValue( mat.v );
if ( current_material === "textured" ) {
effect.enableUvs = true;
} else {
effect.enableUvs = false;
}
if ( current_material === "colors" ) {
effect.enableColors = true;
} else {
effect.enableColors = false;
}
};
};
effectController = {
material: "shiny",
speed : 1.0,
numBlobs: 10,
resolution: 28,
isolation: 80,
floor: true,
wallx: false,
wallz: false,
hue: 0.0,
saturation: 0.9,
value: 0.3,
lhue: 0.04,
lsaturation: 1.0,
lvalue: 1.0,
lx: 0.5,
ly: 0.5,
lz: 1.0,
postprocessing: false,
dummy: function() {
}
};
var h, m_h, m_s, m_v;
var gui = new dat.GUI();
// material (type)
h = gui.addFolder( "Materials" );
for ( var m in materials ) {
effectController[ m ] = createHandler( m );
h.add( effectController, m ).name( m );
}
// material (color)
h = gui.addFolder( "Material color" );
m_h = h.add( effectController, "hue", 0.0, 1.0, 0.025 );
m_s = h.add( effectController, "saturation", 0.0, 1.0, 0.025 );
m_v = h.add( effectController, "value", 0.0, 1.0, 0.025 );
// light (point)
h = gui.addFolder( "Point light color" );
h.add( effectController, "lhue", 0.0, 1.0, 0.025 ).name("hue");
h.add( effectController, "lsaturation", 0.0, 1.0, 0.025 ).name("saturation");
h.add( effectController, "lvalue", 0.0, 1.0, 0.025 ).name("value");
// light (directional)
h = gui.addFolder( "Directional light orientation" );
h.add( effectController, "lx", -1.0, 1.0, 0.025 ).name("x");
h.add( effectController, "ly", -1.0, 1.0, 0.025 ).name("y");
h.add( effectController, "lz", -1.0, 1.0, 0.025 ).name("z");
// simulation
h = gui.addFolder( "Simulation" );
h.add( effectController, "speed", 0.1, 8.0, 0.05 );
h.add( effectController, "numBlobs", 1, 50, 1 );
h.add( effectController, "resolution", 14, 40, 1 );
h.add( effectController, "isolation", 10, 300, 1 );
h.add( effectController, "floor" );
h.add( effectController, "wallx" );
h.add( effectController, "wallz" );
// rendering
h = gui.addFolder( "Rendering" );
h.add( effectController, "postprocessing" );
}
// this controls content of marching cubes voxel field
function updateCubes( object, time, numblobs, floor, wallx, wallz ) {
object.reset();
// fill the field with some metaballs
var i, ballx, bally, ballz, subtract, strength;
subtract = 12;
strength = 1.2 / ( ( Math.sqrt( numblobs ) - 1 ) / 4 + 1 );
for ( i = 0; i < numblobs; i ++ ) {
ballx = Math.sin( i + 1.26 * time * ( 1.03 + 0.5 * Math.cos( 0.21 * i ) ) ) * 0.27 + 0.5;
bally = Math.abs( Math.cos( i + 1.12 * time * Math.cos( 1.22 + 0.1424 * i ) ) ) * 0.77; // dip into the floor
ballz = Math.cos( i + 1.32 * time * 0.1 * Math.sin( ( 0.92 + 0.53 * i ) ) ) * 0.27 + 0.5;
object.addBall(ballx, bally, ballz, strength, subtract);
}
if ( floor ) object.addPlaneY( 2, 12 );
if ( wallz ) object.addPlaneZ( 2, 12 );
if ( wallx ) object.addPlaneX( 2, 12 );
}
//
function animate() {
requestAnimationFrame( animate );
render();
stats.update();
}
function render() {
var delta = clock.getDelta();
time += delta * effectController.speed * 0.5;
controls.update( delta );
// marching cubes
if ( effectController.resolution !== resolution ) {
resolution = effectController.resolution;
effect.init( resolution );
}
if ( effectController.isolation !== effect.isolation ) {
effect.isolation = effectController.isolation;
}
updateCubes( effect, time, effectController.numBlobs, effectController.floor, effectController.wallx, effectController.wallz );
// materials
if ( effect.material instanceof THREE.ShaderMaterial ) {
if ( current_material === "dotted2" ) {
effect.material.uniforms.uLineColor1.value.setHSV( effectController.hue, effectController.saturation, effectController.value );
} else if ( current_material === "hatching2" ) {
u = effect.material.uniforms;
u.uLineColor1.value.setHSV( effectController.hue, effectController.saturation, effectController.value );
u.uLineColor2.value.setHSV( effectController.hue, effectController.saturation, effectController.value );
u.uLineColor3.value.setHSV( effectController.hue, effectController.saturation, effectController.value );
u.uLineColor4.value.setHSV( ( effectController.hue + 0.2 % 1.0 ), effectController.saturation, effectController.value );
} else {
effect.material.uniforms.uBaseColor.value.setHSV( effectController.hue, effectController.saturation, effectController.value );
}
} else {
effect.material.color.setHSV( effectController.hue, effectController.saturation, effectController.value );
}
// lights
light.position.set( effectController.lx, effectController.ly, effectController.lz );
light.position.normalize();
pointLight.color.setHSV( effectController.lhue, effectController.lsaturation, effectController.lvalue );
// render
if ( effectController.postprocessing ) {
composer.render( delta );
} else {
renderer.clear();
renderer.render( scene, camera );
}
}
</script>
</body>
</html>
| pixelsandcandy/sandbox-js | threeJS/mrdoob-three.js-3b4457e/examples/webgl_marching_cubes.html | HTML | mit | 15,801 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="iso-8859-1">
<title>org.apache.commons.net.telnet Class Hierarchy (Commons Net 3.3 API)</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="org.apache.commons.net.telnet Class Hierarchy (Commons Net 3.3 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</li>
<li>Use</li>
<li class="navBarCell1Rev">Tree</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/commons/net/smtp/package-tree.html">Prev</a></li>
<li><a href="../../../../../org/apache/commons/net/tftp/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/commons/net/telnet/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 org.apache.commons.net.telnet</h1>
<span class="strong">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.<a href="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang"><span class="strong">Object</span></a>
<ul>
<li type="circle">org.apache.commons.net.<a href="../../../../../org/apache/commons/net/SocketClient.html" title="class in org.apache.commons.net"><span class="strong">SocketClient</span></a>
<ul>
<li type="circle">org.apache.commons.net.telnet.<a href="../../../../../org/apache/commons/net/telnet/TelnetClient.html" title="class in org.apache.commons.net.telnet"><span class="strong">TelnetClient</span></a></li>
</ul>
</li>
<li type="circle">org.apache.commons.net.telnet.<a href="../../../../../org/apache/commons/net/telnet/TelnetCommand.html" title="class in org.apache.commons.net.telnet"><span class="strong">TelnetCommand</span></a></li>
<li type="circle">org.apache.commons.net.telnet.<a href="../../../../../org/apache/commons/net/telnet/TelnetOption.html" title="class in org.apache.commons.net.telnet"><span class="strong">TelnetOption</span></a></li>
<li type="circle">org.apache.commons.net.telnet.<a href="../../../../../org/apache/commons/net/telnet/TelnetOptionHandler.html" title="class in org.apache.commons.net.telnet"><span class="strong">TelnetOptionHandler</span></a>
<ul>
<li type="circle">org.apache.commons.net.telnet.<a href="../../../../../org/apache/commons/net/telnet/EchoOptionHandler.html" title="class in org.apache.commons.net.telnet"><span class="strong">EchoOptionHandler</span></a></li>
<li type="circle">org.apache.commons.net.telnet.<a href="../../../../../org/apache/commons/net/telnet/SimpleOptionHandler.html" title="class in org.apache.commons.net.telnet"><span class="strong">SimpleOptionHandler</span></a></li>
<li type="circle">org.apache.commons.net.telnet.<a href="../../../../../org/apache/commons/net/telnet/SuppressGAOptionHandler.html" title="class in org.apache.commons.net.telnet"><span class="strong">SuppressGAOptionHandler</span></a></li>
<li type="circle">org.apache.commons.net.telnet.<a href="../../../../../org/apache/commons/net/telnet/TerminalTypeOptionHandler.html" title="class in org.apache.commons.net.telnet"><span class="strong">TerminalTypeOptionHandler</span></a></li>
<li type="circle">org.apache.commons.net.telnet.<a href="../../../../../org/apache/commons/net/telnet/WindowSizeOptionHandler.html" title="class in org.apache.commons.net.telnet"><span class="strong">WindowSizeOptionHandler</span></a></li>
</ul>
</li>
<li type="circle">java.lang.<a href="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><span class="strong">Throwable</span></a> (implements java.io.<a href="http://download.oracle.com/javase/1.5.0/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a>)
<ul>
<li type="circle">java.lang.<a href="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang"><span class="strong">Exception</span></a>
<ul>
<li type="circle">org.apache.commons.net.telnet.<a href="../../../../../org/apache/commons/net/telnet/InvalidTelnetOptionException.html" title="class in org.apache.commons.net.telnet"><span class="strong">InvalidTelnetOptionException</span></a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h2 title="Interface Hierarchy">Interface Hierarchy</h2>
<ul>
<li type="circle">org.apache.commons.net.telnet.<a href="../../../../../org/apache/commons/net/telnet/TelnetInputListener.html" title="interface in org.apache.commons.net.telnet"><span class="strong">TelnetInputListener</span></a></li>
<li type="circle">org.apache.commons.net.telnet.<a href="../../../../../org/apache/commons/net/telnet/TelnetNotificationHandler.html" title="interface in org.apache.commons.net.telnet"><span class="strong">TelnetNotificationHandler</span></a></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>Class</li>
<li>Use</li>
<li class="navBarCell1Rev">Tree</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/commons/net/smtp/package-tree.html">Prev</a></li>
<li><a href="../../../../../org/apache/commons/net/tftp/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/commons/net/telnet/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 ======= -->
<p class="legalCopy"><small>Copyright © 2001-2013 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All Rights Reserved.</small></p>
</body>
</html>
| asad/MCEDS | lib/commons-net-3.3/apidocs/org/apache/commons/net/telnet/package-tree.html | HTML | mit | 8,465 |
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns="http://www.w3.org/1999/html">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Moskito WebUI</title>
<link href='http://fonts.googleapis.com/css?family=Lato:100,300,400,700' rel='stylesheet' type='text/css'>
<link type="text/css" rel="stylesheet" href="http://fonts.googleapis.com/css?family=Mr+Bedfort">
<link type="text/css" rel="stylesheet" rev="stylesheet" href="../ext/bootstrap-3.1.1/css/bootstrap.css" />
<link type="text/css" rel="stylesheet" rev="stylesheet" href="../ext/custom-scrollbar/jquery.mCustomScrollbar.css" />
<link type="text/css" rel="stylesheet" rev="stylesheet" href="../ext/bootstrap-sortable/contents/bootstrap-sortable.css" />
<link type="text/css" rel="stylesheet" href="../ext/font-awesome-4.0.3/css/font-awesome.css">
<link type="text/css" rel="stylesheet" rev="stylesheet" href="../ext/select2-3.4.6/select2.css" />
<link type="text/css" rel="stylesheet" rev="stylesheet" href="../int/css/common.css" />
<!--[if lt IE 9]><script src="../int/js/ie8-responsive-file-warning.js"></script><![endif]-->
<!--[if lt IE 8]><link type="text/css" rel="stylesheet" rev="stylesheet" href="../static-int/css/bootstrap-ie7.css" /><![endif]-->
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
</head>
<body class="status-yellow home-page">
<script src="../ext/jquery-1.10.2/jquery-1.10.2.min.js" type="text/javascript"></script>
<script src="../ext/bootstrap-3.1.1/js/bootstrap.min.js" type="text/javascript"></script>
<script src="../ext/tablesorter/jquery.tablesorter.js" type="text/javascript"></script>
<script src="../ext/custom-scrollbar/jquery.mCustomScrollbar.js"></script>
<script src="../ext/select2-3.4.6/select2.js" type="text/javascript"></script>
<script src="../int/js/common.js" type="text/javascript"></script>
<header id="header" class="navbar navbar-fixed-top navbar-default">
<span class="caret-aside pull-left tooltip-bottom" title="Close/Open">
<i class="fa fa-caret-left"></i>
</span>
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="navbar-collapse collapse">
<form role="form" class="navbar-form navbar-left">
<div class="form-group">
<select class="select2" data-placeholder="Interval">
<option value="mskShowAllProducers?ts=1395951429786&pInterval=snapshot">
snapshot
</option>
<option selected="selected" value="mskShowAllProducers?ts=1395951429786&pInterval=default">
default
</option>
<option value="mskShowAllProducers?ts=1395951429786&pInterval=1m">
1m
</option>
<option value="mskShowAllProducers?ts=1395951429786&pInterval=5m">
5m
</option>
<option value="mskShowAllProducers?ts=1395951429786&pInterval=15m">
15m
</option>
<option value="mskShowAllProducers?ts=1395951429786&pInterval=1h">
1h
</option>
<option value="mskShowAllProducers?ts=1395951429786&pInterval=12h">
12h
</option>
<option value="mskShowAllProducers?ts=1395951429786&pInterval=1d">
1d
</option>
</select>
</div>
<div class="form-group">
<select class="select2" data-placeholder="Interval">
<option value="mskShowAllProducers?ts=1395955899582&pUnit=SECONDS">
SECONDS
</option>
<option selected="selected" value="mskShowAllProducers?ts=1395955899582&pUnit=MILLISECONDS">
MILLISECONDS
</option>
<option value="mskShowAllProducers?ts=1395955899582&pUnit=MICROSECONDS">
MICROSECONDS
</option>
<option value="mskShowAllProducers?ts=1395955899582&pUnit=NANOSECONDS">
NANOSECONDS
</option>
</select>
</div>
</form>
<ul class="nav navbar-nav pull-right">
<li><a href="">Autoreload OF</a></li>
<li><a href="">Export</a></li>
<li><a href="">Help</a></li>
</ul>
</div>
</header>
<aside id="aside" class="scrollbar">
<div class="header-box">
<span class="version">v 2.5.0-SNAPSHOT</span>
<i class="logo"></i>
<span class="logo-title">MoSKito Inspect</span>
</div>
<ul class="nav nav-sidebar">
<li><a href="producers.html">Producers <i class="fa fa-wrench"></i></a></li>
<li><a href="journeys.html">Journeys <i class="fa fa-eye"></i></a></li>
<li><a href="thresholds.html">Thresholds <i class="fa fa-dot-circle-o"></i></a></li>
<li><a href="accumulators.html">Accumulators <i class="fa fa-signal"></i></a></li>
<li>
<a href="threads.html">Threads <i class="fa fa-bars"></i></a>
<ul class="nav sub-menu">
<li><a href="threads_list.html">List <i class="fa fa-list"></i></a></li>
<li><a href="threads_dump.html">Dump <i class="fa fa-upload"></i></a></li>
<li><a href="threads_history.html">History <i class="fa fa-file-text"></i></a></li>
</ul>
</li>
<li>
<a href="#">Everything else <i class="fa fa-bookmark"></i></a>
<ul class="nav sub-menu">
<li><a href="else_config.html">Config <i class="fa fa-cog"></i></a></li>
<li><a href="else_mbeans.html">MBeans <i class="fa fa-briefcase"></i></a></li>
<li><a href="else_libs.html">Libs <i class="fa fa-file-text"></i></a></li>
<li><a href="else_plugins.html">Plugins <i class="fa fa-cloud"></i></a></li>
<li><a href="else_update.html">Update <i class="fa fa-upload"></i></a></li>
</ul>
</li>
</ul>
</aside>
<section id="main">
<div class="content">
<img src="../int/img/moskito.png" height="100">
<h1>MoSKito minimal</h1>
<span class="liner"></span>
<p>
This is a very minimal installation allowing you to make a first glance at MoSKito. It will help you monitor threads and memory of your current webcontainer, but that's actually it.
For all the powerful features of MoSKito visit
</p>
<a href="http://www.moskito.org/" class="btn btn-primary">MoSKito homepage</a>
<a href="https://confluence.opensource.anotheria.net/display/MSK/Home" class="btn btn-primary">MoSKito Confluence Space</a>
</div>
</section>
</body>
</html>
| esmakula/moskito | moskito-webui/src/main/wireframes/index.html | HTML | mit | 8,429 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<!-- Mirrored from lis.ly.gov.tw/lghtml/lawstat/version2/01734/ by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 24 Mar 2013 09:01:54 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1" /><!-- /Added by HTTrack -->
<head>
<title>Index of /lghtml/lawstat/version2/01734</title>
</head>
<body>
<h1>Index of /lghtml/lawstat/version2/01734</h1>
<ul><li><a href="../index.html"> Parent Directory</a></li>
<li><a href="01734100120900.html"> 01734100120900.htm</a></li>
<li><a href="01734100121400.html"> 01734100121400.htm</a></li>
<li><a href="01734102010400.html"> 01734102010400.htm</a></li>
<li><a href="0173484071300.html"> 0173484071300.htm</a></li>
<li><a href="0173489063000.html"> 0173489063000.htm</a></li>
<li><a href="0173491122400.html"> 0173491122400.htm</a></li>
<li><a href="0173495050500.html"> 0173495050500.htm</a></li>
<li><a href="0173498110600.html"> 0173498110600.htm</a></li>
<li><a href="0173499110500.html"> 0173499110500.htm</a></li>
</ul>
</body>
<!-- Mirrored from lis.ly.gov.tw/lghtml/lawstat/version2/01734/ by HTTrack Website Copier/3.x [XR&CO'2010], Sun, 24 Mar 2013 09:01:54 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=ISO-8859-1" /><!-- /Added by HTTrack -->
</html>
| g0v/laweasyread-data | rawdata/utf8_lawstat/version2/01734/index.html | HTML | mit | 1,365 |
{% extends "layout/base.html" %}
{% block content %}
<div class="container">
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">Details</h3>
</div>
<div class="panel-body">
<div class="col-md-6">
<label class="col-md-4">Datacenter</label>
<div class="col-md-8">
<span>{{ vlan.primaryRouter.datacenter.name }}</span>
</div>
</div>
<div class="col-md-6">
<label class="col-md-4">Primary Router</label>
<div class="col-md-8">
<span class="form-control-static">{{ vlan.primaryRouter.fullyQualifiedDomainName }}</span>
</div>
</div>
<div class="col-md-6">
<label class="col-md-4">Firewall</label>
<div class="col-md-8">
<span class="form-control-static">{% if vlan.firewallInterfaces %}Yes{% else %}No{% endif %}</span>
</div>
</div>
</div>
</div>
</div>
{% if vlan.subnets %}
<div class="container">
<h3>Subnets</h3>
<table class="table table-striped table-bordered" id="subnet_table">
<thead>
<tr>
<th>Identifier</th>
<th>Gateway</th>
<th>Netmask</th>
<th>Type</th>
<th>Usable IPs</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{% for subnet in vlan.subnets %}
<tr>
<td>{{ subnet.networkIdentifier }}</td>
<td>{{ subnet.gateway }}</td>
<td>{{ subnet.netmask }}</td>
<td>{{ subnet.subnetType }}</td>
<td>{{ subnet.usableIpAddressCount }}</td>
<td>
<a href="{{ url_for('.subnet_view', subnet_id=subnet.id) }}" class="btn btn-primary btn-xs">View</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endif %}
{% if vlan.virtualGuests %}
<div class="container">
<h3>Virtual Machines</h3>
<table class="table table-striped table-bordered" id="vm_table">
<thead>
<tr>
<th>Hostname</th>
<th>Domain</th>
<th>IP</th>
{% if 'vm' in config.installed_blueprints %}
<th>Actions</th>
{% endif %}
</tr>
</thead>
<tbody>
{% for vm in vlan.virtualGuests|sort(attribute='hostname') %}
<tr>
<td>{{ vm.hostname }}</td>
<td>{{ vm.domain }}</td>
<td>{{ vm.primaryIpAddress }}</td>
{% if 'vm' in config.installed_blueprints %}
<td><a href="{{ url_for('vm_module.view', vm_id=vm.id) }}" class="btn btn-primary btn-xs">View</a></td>
{% endif %}
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endif %}
{% if vlan.hardware %}
<div class="container">
<h3>Servers</h3>
<table class="table table-striped table-bordered" id="server_table">
<thead>
<tr>
<th>Hostname</th>
<th>Domain</th>
<th>IP</th>
{% if 'servers' in config.installed_blueprints %}
<th>Actions</th>
{% endif %}
</tr>
</thead>
<tbody>
{% for server in vlan.hardware|sort(attribute='hostname') %}
<tr>
<td>{{ server.hostname }}</td>
<td>{{ server.domain }}</td>
<td>{{ server.primaryIpAddress }}</td>
{% if 'servers' in config.installed_blueprints %}
<td><a href="{{ url_for('server_module.view', server_id=server.id) }}" class="btn btn-primary btn-xs">View</a></td>
{% endif %}
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endif %}
{% endblock %}
| underscorephil/slick | slick/blueprints/network/templates/network_vlan_view.html | HTML | mit | 3,459 |
{% load i18n %}
{% if ACCOUNT_EXPIRED %}
<div class="alert alert-danger">
{% blocktrans with url=EXTEND_URL %}Your account has expired.
Please <a href="{{ url }}">extend your account</a>.{% endblocktrans %}
</div>
{% else %}
{% if ACCOUNT_NOT_ACTIVE %}
<div class="alert alert-danger">
{% blocktrans with url=ACTIVATE_URL %}
Your account is not active. Possibly you are over some limits.
Try to <a href="{{ url }}">activate your account</a>.
{% endblocktrans %}
</div>
{% endif %}
{% if EXPIRE_IN_DAYS >= 0 and EXPIRE_IN_DAYS <= 14 %}
<div class="alert alert-warning">
{% blocktrans with extend_url=EXTEND_URL days_to_expire=EXPIRE_IN_DAYS %}
Your account will expire soon (in {{ days_to_expire }} days).
We recommend to <a href="{{ extend_url }}">extend your account now.</a>
{% endblocktrans %}
</div>
{% endif %}
{% endif %}
| Mercy-Nekesa/sokoapp | sokoapp/plans/templates/plans/expiration_messages.html | HTML | mit | 1,021 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<title>Source code</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<div class="sourceContainer">
<pre><span class="sourceLineNo">001</span>package org.maltparser.parser.history.action;<a name="line.1"></a>
<span class="sourceLineNo">002</span><a name="line.2"></a>
<span class="sourceLineNo">003</span>import org.maltparser.parser.history.GuideHistory;<a name="line.3"></a>
<span class="sourceLineNo">004</span><a name="line.4"></a>
<span class="sourceLineNo">005</span>/**<a name="line.5"></a>
<span class="sourceLineNo">006</span>*<a name="line.6"></a>
<span class="sourceLineNo">007</span>* @author Johan Hall<a name="line.7"></a>
<span class="sourceLineNo">008</span>* @since 1.1<a name="line.8"></a>
<span class="sourceLineNo">009</span>**/<a name="line.9"></a>
<span class="sourceLineNo">010</span>public interface GuideDecision extends ActionDecision {<a name="line.10"></a>
<span class="sourceLineNo">011</span>// public GuideHistory getGuideHistory();<a name="line.11"></a>
<span class="sourceLineNo">012</span> public int numberOfDecisions();<a name="line.12"></a>
<span class="sourceLineNo">013</span>}<a name="line.13"></a>
</pre>
</div>
</body>
</html>
| runelk/maltnob | tools/maltparser-1.8.1/docs/api/src-html/org/maltparser/parser/history/action/GuideDecision.html | HTML | mit | 1,434 |
</div>
<div class="footer"></div>
<x:script/>
</body>
</html> | sexcod/Tiga | html/footer.html | HTML | mit | 89 |
<p>
During the 1920s, Central European type foundries joined the modernists movements in art and design.
Modernism was truly international in scope; only three years after the founding of the German Bauhaus school, several of its painting instructors were already exhibiting their work in Calcutta.
</p>
<p>
Geometric sans serif typefaces have been a popular design element ever since these actors took to the world’s stage.
Poppins is one of the newest comer to this long tradition.
An open source family supporting both Devanagari and Latin, this typeface is an internationalist take on the geometric sans genre.
Many of the Latin glyphs — the ampersand, for instance — are far more constructed and rationalist than in previously released geometric typefaces.
Poppins’s Devanagari design is particularly new.
It is likely the first-ever large Devanagari family in this style that has been brought to market.
</p>
<p>
The Poppins family includes five weights, from Light through Bold.
Each font includes 1014 glyphs, including all of the unique conjunct forms necessary for typesetting Indian languages like Hindi, Marathi, Nepali, etc.
Just like the Latin glyphs, the Devanagari forms in Poppins are based pure geometry (particularly circles).
Poppins’s letters are practically monolinear, although optical corrections have been applied to stroke joints where necessary, to maintain an even colour in text.
The Devanagari base character height and the Latin ascender height are equal; Latin capital letters are shorter than the Devanagari characters, and the Latin x-height is set rather high.
</p>
<p>
The Devanagari glyphs in Poppins were designed by Ninad Kale.
The Latin is from Jonny Pinhorn.
The Indian Type Foundry first published Poppins in 2014.
</p>
<p>
This project is led by Indian Type Foundry, a type foundry based in Ahmedabad, Gujurat, India, who design contemporary Indian typeface families.
To contribute, see <a href="https://github.com/itfoundry/poppins">github.com/itfoundry/poppins</a>
</p>
| BrotherDonkey/wbbjorn | styles/css/fonts/poppins/DESCRIPTION.en_us.html | HTML | mit | 2,029 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
<meta name="msapplication-tap-highlight" content="no"/>
<link rel="stylesheet" href="assets/style.css">
<title>Hammer.js</title>
</head>
<body>
<div class="container">
<div id="hit" class="bg1" style="padding: 30px; height: 200px;">
</div>
<pre id="debug" style="overflow:hidden; background: #eee; padding: 15px;"></pre>
<pre id="log" style="overflow:hidden;"></pre>
</div>
<script src="../../hammer.js"></script>
<script>
Object.prototype.toDirString = function() {
var output = [];
for(var key in this) {
if(this.hasOwnProperty(key)) {
var value = this[key];
if(Array.isArray(value)) {
value = "Array("+ value.length +"):"+ value;
} else if(value instanceof HTMLElement) {
value = value +" ("+ value.outerHTML.substring(0, 50) +"...)";
}
output.push(key +": "+ value);
}
}
return output.join("\n")
};
var el = document.querySelector("#hit");
var log = document.querySelector("#log");
var debug = document.querySelector("#debug");
var mc = new Hammer(el);
mc.get('pinch').set({ enable: true });
mc.on("hammer.input", function(ev) {
debug.innerHTML = ev.srcEvent.type +" "+ ev.eventType +" "+ ev.isFinal;
});
</script>
</body>
</html>
| loki315zx/hammer.js | tests/manual/input.html | HTML | mit | 1,685 |
{% extends 'layout.html' %}
{% block pageTitle %}
State Pension Activation
{% endblock %}
{% block content %}
<!-- #page-container -->
<main id="content" role="main" class="group">
{% include 'includes/parts/phase-banner.html' %}
<div class="grid-row">
<div class="column-two-thirds">
<br/>
<br/>
<h1 class="heading-xlarge">Get your State Pension</h1>
<p>You'll need:</p>
<ul class="list-bullet">
<li>the date of your most recent marriage, civil partnership or divorce</li>
<li>dates of time spent living or working abroad</li>
<li>your personal or joint bank or building society details</li>
</ul>
</br>
<p>
You don't have to do anything if you don't want to get your State Pension
yet. You may get extra money if you put off claiming your State Pension.
</p>
<p>
This service is also available <a href="#">in Welsh (Cymraeg)</a>
</p>
</br>
<div class="form-group" class="get-started" id="get-started" style="margin-bottom: 70px;">
<a href="letter" class="button button-get-started" role="button">Start now</a>
</div>
</div>
</div>
</main><!-- / #page-container -->
{% endblock %}
| gavinelliott/gysp | app/views/sprint13v2/start.html | HTML | mit | 1,155 |
<a href='https://github.com/angular/angular.js/edit/v1.5.x/src/ng/directive/input.js?message=docs(ngValue)%3A%20describe%20your%20change...#L1684' 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.5.0-rc.0/src/ng/directive/input.js#L1684' 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">ngValue</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>Binds the given expression to the value of <code><option></code> or <a href="api/ng/input/input[radio]"><code>input[radio]</code></a>,
so that when the element is selected, the <a href="api/ng/directive/ngModel"><code>ngModel</code></a> of that element is set to
the bound value.</p>
<p><code>ngValue</code> is useful when dynamically generating lists of radio buttons using
<a href="api/ng/directive/ngRepeat"><code>ngRepeat</code></a>, as shown below.</p>
<p>Likewise, <code>ngValue</code> can be used to generate <code><option></code> elements for
the <a href="api/ng/directive/select"><code>select</code></a> element. In that case however, only strings are supported
for the <code>value</code>attribute, so the resulting <code>ngModel</code> will always be a string.
Support for <code>select</code> models with non-string values is available via <code>ngOptions</code>.</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><input [ng-value="string"]> ... </input></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>
ngValue
<div><em>(optional)</em></div>
</td>
<td>
<a href="" class="label type-hint type-hint-string">string</a>
</td>
<td>
<p>angular expression, whose value will be bound to the <code>value</code> attribute
of the <code>input</code> element</p>
</td>
</tr>
</tbody>
</table>
</section>
<h2 id="example">Example</h2><p>
<div>
<a ng-click="openPlunkr('examples/example-ngValue-directive', $event)" class="btn pull-right">
<i class="glyphicon glyphicon-edit"> </i>
Edit in Plunker</a>
<div class="runnable-example"
path="examples/example-ngValue-directive"
name="ngValue-directive"
module="valueExample">
<div class="runnable-example-file"
name="index.html"
language="html"
type="html">
<pre><code><script> angular.module('valueExample', []) .controller('ExampleController', ['$scope', function($scope) { $scope.names = ['pizza', 'unicorns', 'robots']; $scope.my = { favorite: 'unicorns' }; }]); </script> <form ng-controller="ExampleController"> <h2>Which is your favorite?</h2> <label ng-repeat="name in names" for="{{name}}"> {{name}} <input type="radio" ng-model="my.favorite" ng-value="name" id="{{name}}" name="favorite"> </label> <div>You chose {{my.favorite}}</div> </form></code></pre>
</div>
<div class="runnable-example-file"
name="protractor.js"
type="protractor"
language="js">
<pre><code>var favorite = element(by.binding('my.favorite')); it('should initialize to model', function() { expect(favorite.getText()).toContain('unicorns'); }); it('should bind the values to the inputs', function() { element.all(by.model('my.favorite')).get(0).click(); expect(favorite.getText()).toContain('pizza'); });</code></pre>
</div>
<iframe class="runnable-example-frame" src="examples/example-ngValue-directive/index.html" name="example-ngValue-directive"></iframe>
</div>
</div>
</p>
</div>
| confapp/data_manager | vendor/angular-1.5.0-rc.0/docs/partials/api/ng/directive/ngValue.html | HTML | mit | 4,752 |
<!doctype html>
<html>
<title>npm-bin</title>
<meta http-equiv="content-type" value="text/html;utf-8">
<link rel="stylesheet" type="text/css" href="../../static/style.css">
<link rel="canonical" href="https://www.npmjs.org/doc/api/npm-bin.html">
<script async=true src="../../static/toc.js"></script>
<body>
<div id="wrapper">
<h1><a href="../api/npm-bin.html">npm-bin</a></h1> <p>Display npm bin folder</p>
<h2 id="synopsis">SYNOPSIS</h2>
<pre><code>npm.commands.bin(args, cb)
</code></pre><h2 id="description">DESCRIPTION</h2>
<p>Print the folder where npm will install executables.</p>
<p>This function should not be used programmatically. Instead, just refer
to the <code>npm.bin</code> property.</p>
</div>
<table border=0 cellspacing=0 cellpadding=0 id=npmlogo>
<tr><td style="width:180px;height:10px;background:rgb(237,127,127)" colspan=18> </td></tr>
<tr><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)"> </td><td style="width:40px;height:10px;background:#fff" colspan=4> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4> </td><td style="width:40px;height:10px;background:#fff" colspan=4> </td><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)"> </td><td colspan=6 style="width:60px;height:10px;background:#fff"> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4> </td></tr>
<tr><td colspan=2 style="width:20px;height:30px;background:#fff" rowspan=3> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3> </td><td style="width:10px;height:10px;background:#fff" rowspan=3> </td><td style="width:20px;height:10px;background:#fff" rowspan=4 colspan=2> </td><td style="width:10px;height:20px;background:rgb(237,127,127)" rowspan=2> </td><td style="width:10px;height:10px;background:#fff" rowspan=3> </td><td style="width:20px;height:10px;background:#fff" rowspan=3 colspan=2> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3> </td><td style="width:10px;height:10px;background:#fff" rowspan=3> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3> </td></tr>
<tr><td style="width:10px;height:10px;background:#fff" rowspan=2> </td></tr>
<tr><td style="width:10px;height:10px;background:#fff"> </td></tr>
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
</table>
<p id="footer">npm-bin — [email protected]</p>
| r0zar/ember-rails-stocks | stocks/node_modules/ember-cli/node_modules/npm/html/doc/api/npm-bin.html | HTML | mit | 2,883 |
<!--A Design by W3layouts
Author: W3layout
Author URL: http://w3layouts.com
License: Creative Commons Attribution 3.0 Unported
License URL: http://creativecommons.org/licenses/by/3.0/
-->
<!DOCTYPE HTML>
<html>
<head>
<title>Seeking an Job Portal Category Flat Bootstarp Resposive Website Template | About :: w3layouts</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="keywords" content="Seeking Responsive web template, Bootstrap Web Templates, Flat Web Templates, Andriod Compatible web template,
Smartphone Compatible web template, free webdesigns for Nokia, Samsung, LG, SonyErricsson, Motorola web design" />
<script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); function hideURLbar(){ window.scrollTo(0,1); } </script>
<link href="css/bootstrap-3.1.1.min.css" rel='stylesheet' type='text/css' />
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<!-- Custom Theme files -->
<link href="css/style.css" rel='stylesheet' type='text/css' />
<link href='//fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800,900' rel='stylesheet' type='text/css'>
<!----font-Awesome----->
<link href="css/font-awesome.css" rel="stylesheet">
<!----font-Awesome----->
</head>
<body>
<nav class="navbar navbar-default" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"><img src="images/logo.png" alt=""/></a>
</div>
<!--/.navbar-header-->
<div class="navbar-collapse collapse" id="bs-example-navbar-collapse-1" style="height: 1px;">
<ul class="nav navbar-nav">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Jobs<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="location.html">Contract Jobs</a></li>
<li><a href="location.html">Walkin Jobs</a></li>
<li><a href="location.html">Jobs by Location</a></li>
<li><a href="location.html">Jobs by Function</a></li>
<li><a href="location.html">Jobs by Industry</a></li>
<li><a href="location.html">Jobs by Company</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Services<b class="caret"></b></a>
<ul class="dropdown-menu multi-column columns-3">
<div class="row">
<div class="col-sm-4">
<ul class="multi-column-dropdown">
<li><a href="services.html">Action</a></li>
<li><a href="services.html">Another action</a></li>
<li><a href="services.html">Something else here</a></li>
<li class="divider"></li>
<li><a href="services.html">Separated link</a></li>
<li class="divider"></li>
<li><a href="services.html">One more separated link</a></li>
</ul>
</div>
<div class="col-sm-4">
<ul class="multi-column-dropdown">
<li><a href="services.html">Action</a></li>
<li><a href="services.html">Another action</a></li>
<li><a href="services.html">Something else here</a></li>
<li class="divider"></li>
<li><a href="services.html">Separated link</a></li>
<li class="divider"></li>
<li><a href="services.html">One more separated link</a></li>
</ul>
</div>
<div class="col-sm-4">
<ul class="multi-column-dropdown">
<li><a href="services.html">Action</a></li>
<li><a href="services.html">Another action</a></li>
<li><a href="services.html">Something else here</a></li>
<li class="divider"></li>
<li><a href="services.html">Separated link</a></li>
<li class="divider"></li>
<li><a href="services.html">One more separated link</a></li>
</ul>
</div>
</div>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Recruiters<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="login.html">Recruiter Updates</a></li>
<li><a href="recruiters.html">Recruiters you are following</a></li>
<li><a href="codes.html">Shortcodes</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">More<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="jobs.html">Walk-ins</a></li>
<li><a href="jobs.html">Bpo Jobs</a></li>
<li><a href="jobs.html">Teaching Jobs</a></li>
<li><a href="jobs.html">Diploma Jobs</a></li>
<li><a href="jobs.html">Tech Support</a></li>
<li><a href="jobs.html">Finance Jobs</a></li>
<li><a href="jobs.html">Part time Jobs</a></li>
<li><a href="jobs.html">Health Care</a></li>
<li><a href="jobs.html">Hospitality</a></li>
<li><a href="jobs.html">Internships</a></li>
<li><a href="jobs.html">Research Jobs</a></li>
<li><a href="jobs.html">Defence Jobs</a></li>
</ul>
</li>
<li><a href="login.html">Login</a></li>
<li><a href="resume.html">Upload Resume</a></li>
</ul>
</div>
<div class="clearfix"> </div>
</div>
<!--/.navbar-collapse-->
</nav>
<div class="banner_1">
<div class="container">
<div id="search_wrapper1">
<div id="search_form" class="clearfix">
<h1>Start your job search</h1>
<p>
<input type="text" class="text" placeholder=" " value="Enter Keyword(s)" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Enter Keyword(s)';}">
<input type="text" class="text" placeholder=" " value="Location" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Location';}">
<label class="btn2 btn-2 btn2-1b"><input type="submit" value="Find Jobs"></label>
</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="single">
<h2>Advantages</h2>
<div class="about_top">
<div class="col-md-4 box_7">
<div class="list styled custom-list custom-list1">
<ul>
<li><span class="dropcap">1.</span>
<div class="item_content">
<h5><a href="#">nunc nobis videntur parum</a></h5>
<p> anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima. Eodem modo typi, qui nunc nobis videntur paru.</p>
<p class="m_1">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock</p>
</div>
</li>
</ul>
</div>
</div>
<div class="col-md-4 box_7">
<div class="list styled custom-list custom-list1">
<ul>
<li><span class="dropcap">2.</span>
<div class="item_content">
<h5><a href="#">nunc nobis videntur parum</a></h5>
<p> anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima. Eodem modo typi, qui nunc nobis videntur paru.</p>
<p class="m_1">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock</p>
</div>
</li>
</ul>
</div>
</div>
<div class="col-md-4 box_7">
<div class="list styled custom-list custom-list1">
<ul>
<li><span class="dropcap">3.</span>
<div class="item_content">
<h5><a href="#">nunc nobis videntur parum</a></h5>
<p> anteposuerit litterarum formas humanitatis per seacula quarta decima et quinta decima. Eodem modo typi, qui nunc nobis videntur paru.</p>
<p class="m_1">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock</p>
</div>
</li>
</ul>
</div>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
<div class="about_middle">
<div class="container">
<div class="wmuSlider example1">
<div class="wmuSliderWrapper">
<h3>Testimonials</h3>
<article style="position: absolute; width: 100%; opacity: 0;">
<div class="banner-wrap">
<ul class="grid-1">
<li class="grid-1_left">
<img src="images/f5.jpg" class="img-responsive" alt=""/>
</li>
<li class="grid-1_right">
<p>Garcinia cambogia is one of the main
components in one of the best-selling
supplemental weight loss products,
Hydroxycut., and researchers have
concluded that "the evidence for G.
cambogia is not compelling.</p>
<h4><a href="#">annette Doe</a> | Abc Company</h4>
</li>
<div class="clearfix"> </div>
</ul>
</div>
</article>
<article style="position: absolute; width: 100%; opacity: 0;">
<div class="banner-wrap">
<ul class="grid-1">
<li class="grid-1_left">
<img src="images/f6.jpg" class="img-responsive" alt=""/>
</li>
<li class="grid-1_right">
<p>Garcinia cambogia is one of the main
components in one of the best-selling
supplemental weight loss products,
Hydroxycut., and researchers have
concluded that "the evidence for G.
cambogia is not compelling.</p>
<h4><a href="#">annette Doe</a> | Abc Company</h4>
</li>
<div class="clearfix"> </div>
</ul>
</div>
</article>
<article style="position: absolute; width: 100%; opacity: 0;">
<div class="banner-wrap">
<ul class="grid-1">
<li class="grid-1_left">
<img src="images/f7.jpg" class="img-responsive" alt=""/>
</li>
<li class="grid-1_right">
<p>Garcinia cambogia is one of the main
components in one of the best-selling
supplemental weight loss products,
Hydroxycut., and researchers have
concluded that "the evidence for G.
cambogia is not compelling.</p>
<h4><a href="#">annette Doe</a> | Abc Company</h4>
</li>
<div class="clearfix"> </div>
</ul>
</div>
</article>
</div>
<ul class="wmuSliderPagination">
<li><a href="#" class="">0</a></li>
<li><a href="#" class="">1</a></li>
<li><a href="#" class="wmuActive">2</a></li>
</ul>
</div>
<script src="js/jquery.wmuSlider.js"></script>
<script>
$('.example1').wmuSlider();
</script>
</div>
</div>
<div class="about_bottom">
<div class="container">
<h3>Our Team</h3>
<div class="col-md-3 team-member text-center">
<img src="images/f9.jpg" class="img-responsive img-circle1" alt=""/>
<h5>blanditiis iusto</h5>
<h6>Account Manager</h6>
<p>At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti.</p>
<a href="#"><i class="fa fa-facebook fa1"> </i></a>
<a href="#"><i class="fa fa-twitter fa1"> </i></a>
<a href="#"><i class="fa fa-linkedin fa1"> </i></a>
<a href="#"><i class="fa fa-instagram fa1"> </i></a>
</div>
<div class="col-md-3 team-member text-center">
<img src="images/f8.jpg" class="img-responsive img-circle1" alt=""/>
<h5>blanditiis iusto</h5>
<h6>Account Manager</h6>
<p>At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti.</p>
<a href="#"><i class="fa fa-facebook fa1"> </i></a>
<a href="#"><i class="fa fa-twitter fa1"> </i></a>
<a href="#"><i class="fa fa-linkedin fa1"> </i></a>
<a href="#"><i class="fa fa-instagram fa1"> </i></a>
</div>
<div class="col-md-3 team-member text-center">
<img src="images/f10.jpg" class="img-responsive img-circle1" alt=""/>
<h5>blanditiis iusto</h5>
<h6>Account Manager</h6>
<p>At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti.</p>
<a href="#"><i class="fa fa-facebook fa1"> </i></a>
<a href="#"><i class="fa fa-twitter fa1"> </i></a>
<a href="#"><i class="fa fa-linkedin fa1"> </i></a>
<a href="#"><i class="fa fa-instagram fa1"> </i></a>
</div>
<div class="col-md-3 team-member text-center">
<img src="images/f7.jpg" class="img-responsive img-circle1" alt=""/>
<h5>blanditiis iusto</h5>
<h6>Account Manager</h6>
<p>At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti.</p>
<a href="#"><i class="fa fa-facebook fa1"> </i></a>
<a href="#"><i class="fa fa-twitter fa1"> </i></a>
<a href="#"><i class="fa fa-linkedin fa1"> </i></a>
<a href="#"><i class="fa fa-instagram fa1"> </i></a>
</div>
<div class="clearfix"> </div>
</div>
</div>
<div class="footer">
<div class="container">
<div class="col-md-3 grid_3">
<h4>Navigate</h4>
<ul class="f_list f_list1">
<li><a href="index.html">Home</a></li>
<li><a href="login.html">Sign In</a></li>
<li><a href="login.html">Join Now</a></li>
<li><a href="about.html">About</a></li>
</ul>
<ul class="f_list">
<li><a href="features.html">Features</a></li>
<li><a href="terms.html">Terms of use</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="jobs.html">Post a Job</a></li>
</ul>
<div class="clearfix"> </div>
</div>
<div class="col-md-3 grid_3">
<h4>Twitter Widget</h4>
<div class="footer-list">
<ul>
<li><i class="fa fa-twitter tw1"> </i><p><span class="yellow"><a href="#">consectetuer</a></span> adipiscing elit web design</p></li>
<li><i class="fa fa-twitter tw1"> </i><p><span class="yellow"><a href="#">consectetuer</a></span> adipiscing elit web design</p></li>
<li><i class="fa fa-twitter tw1"> </i><p><span class="yellow"><a href="#">consectetuer</a></span> adipiscing elit web design</p></li>
</ul>
</div>
</div>
<div class="col-md-3 grid_3">
<h4>Seeking</h4>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. </p>
</div>
<div class="col-md-3 grid_3">
<h4>Sign up for our newsletter</h4>
<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam.</p>
<form>
<input type="text" class="form-control" placeholder="Enter your email">
<button type="button" class="btn red">Subscribe now!</button>
</form>
</div>
<div class="clearfix"> </div>
</div>
</div>
<div class="footer_bottom">
<div class="container">
<div class="col-sm-2">
<ul class="f_list2">
<li><a href="jobs.html">Russia Jobs</a></li>
<li><a href="jobs.html">Australia Jobs</a></li>
<li><a href="jobs.html">Srilanka Jobs</a></li>
<li><a href="jobs.html">Poland Jobs</a></li>
</ul>
</div>
<div class="col-sm-2">
<ul class="f_list2">
<li><a href="jobs.html">Newzland Jobs</a></li>
<li><a href="jobs.html">Pakistan Jobs</a></li>
<li><a href="jobs.html">Srilanka Jobs</a></li>
<li><a href="jobs.html">Irland Jobs</a></li>
</ul>
</div>
<div class="col-sm-2">
<ul class="f_list2">
<li><a href="jobs.html">Canada Jobs</a></li>
<li><a href="jobs.html">Germany Jobs</a></li>
<li><a href="jobs.html">China Jobs</a></li>
<li><a href="jobs.html">Nepal Jobs</a></li>
</ul>
</div>
<div class="col-sm-6 footer_text">
<p>"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numqua"</p>
</div>
<div class="clearfix"> </div>
<div class="copy">
<p>Copyright © 2015 Seeking . All Rights Reserved . Design by <a href="http://w3layouts.com/" target="_blank">W3layouts</a> </p>
</div>
</div>
</div>
</body>
</html> | anupamroy/jobboard | web/about.html | HTML | mit | 17,773 |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>FieldsWriter</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. Boost.Beast">
<link rel="up" href="../concepts.html" title="Concepts">
<link rel="prev" href="Fields.html" title="Fields">
<link rel="next" href="File.html" title="File">
</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="Fields.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../concepts.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="File.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
<a name="beast.concepts.FieldsWriter"></a><a class="link" href="FieldsWriter.html" title="FieldsWriter">FieldsWriter</a>
</h3></div></div></div>
<p>
A <span class="bold"><strong>FieldsWriter</strong></span> provides a algorithm to obtain
a sequence of buffers representing the complete serialized HTTP/1 header
for a set of fields. The implementation constructs an instance of this type
when needed, and calls into it once to retrieve the buffers.
</p>
<h5>
<a name="beast.concepts.FieldsWriter.h0"></a>
<span class="phrase"><a name="beast.concepts.FieldsWriter.associated_types"></a></span><a class="link" href="FieldsWriter.html#beast.concepts.FieldsWriter.associated_types">Associated
Types</a>
</h5>
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "><li class="listitem">
<a class="link" href="FieldsWriter.html" title="FieldsWriter"><span class="emphasis"><em>FieldsWriter</em></span></a>
</li></ul></div>
<h5>
<a name="beast.concepts.FieldsWriter.h1"></a>
<span class="phrase"><a name="beast.concepts.FieldsWriter.requirements"></a></span><a class="link" href="FieldsWriter.html#beast.concepts.FieldsWriter.requirements">Requirements</a>
</h5>
<div class="warning"><table border="0" summary="Warning">
<tr>
<td rowspan="2" align="center" valign="top" width="25"><img alt="[Warning]" src="../../../../../../doc/src/images/warning.png"></td>
<th align="left">Warning</th>
</tr>
<tr><td align="left" valign="top"><p>
These requirements may undergo non-backward compatible changes in subsequent
versions.
</p></td></tr>
</table></div>
<p>
In this table:
</p>
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem">
<code class="computeroutput"><span class="identifier">W</span></code> denotes a type that
meets the requirements of <span class="bold"><strong>FieldsWriter</strong></span>.
</li>
<li class="listitem">
<code class="computeroutput"><span class="identifier">F</span></code> denotes a <a class="link" href="Fields.html" title="Fields"><span class="emphasis"><em>Fields</em></span></a>
where <code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">is_same</span><span class="special"><</span><span class="identifier">W</span><span class="special">,</span> <span class="identifier">F</span><span class="special">::</span><span class="identifier">writer</span><span class="special">>::</span><span class="identifier">value</span> <span class="special">==</span>
<span class="keyword">true</span></code>.
</li>
<li class="listitem">
<code class="computeroutput"><span class="identifier">a</span></code> is a value of type
<code class="computeroutput"><span class="identifier">W</span></code>.
</li>
<li class="listitem">
<code class="computeroutput"><span class="identifier">f</span></code> is a value of type
<code class="computeroutput"><span class="identifier">F</span></code>.
</li>
<li class="listitem">
<code class="computeroutput"><span class="identifier">v</span></code> is an <code class="computeroutput"><span class="keyword">unsigned</span></code> value representing the HTTP version.
</li>
<li class="listitem">
<code class="computeroutput"><span class="identifier">c</span></code> is an <code class="computeroutput"><span class="keyword">unsigned</span></code> representing the HTTP status-code.
</li>
<li class="listitem">
<code class="computeroutput"><span class="identifier">m</span></code> is a value of type
<a class="link" href="../ref/boost__beast__http__verb.html" title="http::verb"><code class="computeroutput"><span class="identifier">verb</span></code></a>.
</li>
</ul></div>
<div class="table">
<a name="beast.concepts.FieldsWriter.valid_expressions"></a><p class="title"><b>Table 1.42. Valid expressions</b></p>
<div class="table-contents"><table class="table" summary="Valid expressions">
<colgroup>
<col>
<col>
<col>
</colgroup>
<thead><tr>
<th>
<p>
expression
</p>
</th>
<th>
<p>
type
</p>
</th>
<th>
<p>
semantics, pre/post-conditions
</p>
</th>
</tr></thead>
<tbody>
<tr>
<td>
<p>
<code class="computeroutput"><span class="identifier">W</span><span class="special">::</span><span class="identifier">const_buffers_type</span></code>
</p>
</td>
<td>
</td>
<td>
<p>
A type which meets the requirements of <a href="../../../../../../doc/html/boost_asio/reference/ConstBufferSequence.html" target="_top"><span class="emphasis"><em>ConstBufferSequence</em></span></a>.
This is the type of buffer returned by <code class="computeroutput"><span class="identifier">W</span><span class="special">::</span><span class="identifier">get</span></code>.
</p>
</td>
</tr>
<tr>
<td>
<p>
<code class="computeroutput"><span class="identifier">W</span><span class="special">{</span><span class="identifier">f</span><span class="special">,</span><span class="identifier">v</span><span class="special">,</span><span class="identifier">m</span><span class="special">}</span></code>
</p>
</td>
<td>
</td>
<td>
<p>
The implementation calls this constructor to indicate that the
fields being serialized form part of an HTTP request. The lifetime
of <code class="computeroutput"><span class="identifier">f</span></code> is guaranteed
to end no earlier than after the <code class="computeroutput"><span class="identifier">W</span></code>
is destroyed.
</p>
</td>
</tr>
<tr>
<td>
<p>
<code class="computeroutput"><span class="identifier">W</span><span class="special">{</span><span class="identifier">f</span><span class="special">,</span><span class="identifier">v</span><span class="special">,</span><span class="identifier">c</span><span class="special">}</span></code>
</p>
</td>
<td>
</td>
<td>
<p>
The implementation calls this constructor to indicate that the
fields being serialized form part of an HTTP response. The lifetime
of <code class="computeroutput"><span class="identifier">f</span></code> is guaranteed
to end no earlier than after the <code class="computeroutput"><span class="identifier">W</span></code>
is destroyed.
</p>
</td>
</tr>
<tr>
<td>
<p>
<code class="computeroutput"><span class="identifier">W</span><span class="special">{</span><span class="identifier">f</span><span class="special">}</span></code>
</p>
</td>
<td>
</td>
<td>
<p>
The implementation calls this constructor to indicate that the
fields being serialized form part of a chunked encoding final-chunk
trailer. The lifetime of <code class="computeroutput"><span class="identifier">f</span></code>
is guaranteed to end no earlier than after the <code class="computeroutput"><span class="identifier">W</span></code>
is destroyed.
</p>
</td>
</tr>
<tr>
<td>
<p>
<code class="computeroutput"><span class="identifier">a</span><span class="special">.</span><span class="identifier">get</span><span class="special">()</span></code>
</p>
</td>
<td>
<p>
<code class="computeroutput"><span class="identifier">W</span><span class="special">::</span><span class="identifier">const_buffers_type</span></code>
</p>
</td>
<td>
<p>
Called once after construction, this function returns a constant
buffer sequence containing the serialized representation of the
HTTP request or response including the final carriage return linefeed
sequence (<code class="computeroutput"><span class="string">"\r\n"</span></code>).
</p>
<p>
Copies may be made of the returned sequence, but the underlying
memory is still owned by the writer. The implementation will destroy
all copies of the buffer sequence before destroying <code class="computeroutput"><span class="identifier">a</span></code>.
</p>
</td>
</tr>
</tbody>
</table></div>
</div>
<br class="table-break"><h5>
<a name="beast.concepts.FieldsWriter.h2"></a>
<span class="phrase"><a name="beast.concepts.FieldsWriter.exemplar"></a></span><a class="link" href="FieldsWriter.html#beast.concepts.FieldsWriter.exemplar">Exemplar</a>
</h5>
<pre class="programlisting"><span class="keyword">struct</span> <span class="identifier">FieldsWriter</span>
<span class="special">{</span>
<span class="comment">// The type of buffers returned by `get`</span>
<span class="keyword">struct</span> <span class="identifier">const_buffers_type</span><span class="special">;</span>
<span class="comment">// Constructor for requests</span>
<span class="identifier">FieldsWriter</span><span class="special">(</span><span class="identifier">Fields</span> <span class="keyword">const</span><span class="special">&</span> <span class="identifier">f</span><span class="special">,</span> <span class="keyword">unsigned</span> <span class="identifier">version</span><span class="special">,</span> <span class="identifier">verb</span> <span class="identifier">method</span><span class="special">);</span>
<span class="comment">// Constructor for responses</span>
<span class="identifier">FieldsWriter</span><span class="special">(</span><span class="identifier">Fields</span> <span class="keyword">const</span><span class="special">&</span> <span class="identifier">f</span><span class="special">,</span> <span class="keyword">unsigned</span> <span class="identifier">version</span><span class="special">,</span> <span class="keyword">unsigned</span> <span class="identifier">status</span><span class="special">);</span>
<span class="comment">// Returns the serialized header buffers</span>
<span class="identifier">const_buffers_type</span>
<span class="identifier">get</span><span class="special">();</span>
<span class="special">};</span>
</pre>
<h5>
<a name="beast.concepts.FieldsWriter.h3"></a>
<span class="phrase"><a name="beast.concepts.FieldsWriter.models"></a></span><a class="link" href="FieldsWriter.html#beast.concepts.FieldsWriter.models">Models</a>
</h5>
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "><li class="listitem">
<a class="link" href="../ref/boost__beast__http__basic_fields/writer.html" title="http::basic_fields::writer"><code class="computeroutput"><span class="identifier">basic_fields</span><span class="special">::</span><span class="identifier">writer</span></code></a>
</li></ul></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 © 2016-2019 Vinnie
Falco<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="Fields.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../concepts.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="File.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
| davehorton/drachtio-server | deps/boost_1_77_0/libs/beast/doc/html/beast/concepts/FieldsWriter.html | HTML | mit | 14,435 |
<head>
<title>ConvertWriteInt</title>
<link rel=stylesheet href=../../../../css/doc.css type=text/css>
</head>
<body>
<div id="root">
<div id="banner">
</div>
<div id="location">
<table width=100% class="location"><tr>
<td><a href="../../../../index.html">Home</a><td>|</td>
<td><a href=../../../../base/index.html>base</a></td>
<td>|</td><td><a href=../../../../base/src.lib/index.html>src.lib</a></td><td>|</td><td><a href=../../../../base/src.lib/task/index.html>task</a></td><td>|</td><td><a href=../../../../base/src.lib/task/convert/index.html>convert</a></td><td>|</td>
<td>ConvertWriteInt</td>
<td width=100% align=right><a href=../../../../base/src.lib/indexdoc.html>Index</a></td>
</tr>
</table>
</div>
<div id="main">
<h2 class="doctitle">ConvertWriteInt</h2>
<table>
<tr><td class="docsubtitle" valign=top>Syntax</td></tr>
<tr><td></td><td class="docbox" style="font-family: courier;">int ConvertWriteInt(int fp,int32 val);</td></tr>
<tr><td class="docsubtitle" valign=top>Header</td></tr>
<tr><td></td>
<td class="docbox" style="font-family: courier;">base/rconvert.h</td></tr>
<tr><td class=docsubtitle>Library</td></tr>
<tr><td></td><td style="font-family: courier;"><a href="index.html">rcnv</a></td></tr>
<tr><td class="docsubtitle">Description</td></tr>
<tr><td></td><td class="docbody"><p>The <a href="ConvertWriteInt.html"><code>ConvertWriteInt</code></a> function writes a variable of type <code>int32</code> (32-bit integer) to an open file. The bytes are assumed to be in little-endian ordered.</p>
<p>The bytes are written to the file with the filed descriptor given by the argument <em>fd</em> and the 32-bit integer number is given by the argument <em>val</em>.</p>
</td></tr>
<tr><td class="docsubtitle">Returns</td></tr>
<tr><td></td><td>Returns zero on success. On error, a (-1) is returned.</td></tr>
<tr><td class="docsubtitle">Errors</td></tr>
<tr><td></td><td>On error, a (-1) is returned.</td></tr>
<tr><td class="docsubtitle">Example</td></tr>
<tr><td></td><td><br><center>Source Code: <a href="src/ConvertWriteInt.c">ConvertWriteInt.c</a></center><br><table width="540" cellpadding="4"><tr><td class="docbox"><pre width="60">/* ConvertWriteInt.c
=================
Author: R.J.Barnes
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include "rtypes.h"
#include "rconvert.h"
#define FNAME "test.dat"
int main(int argc,char *argv[]) {
int i;
int32 val[8]={1,2,5,-5,6,2,18,-8};
int fd;
fd=open(FNAME,O_WRONLY | O_CREAT);
for (i=0;i<8;i++) ConvertWriteInt(fd,val[i]);
close(fd);
return 0;
}
</pre></td></tr></table><br></td></tr>
</table>
<br><br>
</div>
<div id="tail">
<center><p>
© Johns Hopkins Applied Physics Laboratory 2010
</p></center>
</div>
</div>
</body>
| jspaleta/SuperDARN_MSI_ROS | linux/home/radar/ros.3.6/doc/html/base/src.lib/task/convert/ConvertWriteInt.html | HTML | mit | 2,855 |
<a href='https://github.com/angular/angular.js/edit/v1.2.x/src/Angular.js?message=docs(angular.bootstrap)%3A%20describe%20your%20change...#L1295' 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.2.29/src/Angular.js#L1295' 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">angular.bootstrap</h1>
<ol class="api-profile-header-structure naked-list step-list">
<li>
- function in module <a href="api/ng">ng</a>
</li>
</ol>
</header>
<div class="api-profile-description">
<p>Use this function to manually start up angular application.</p>
<p>See: <a href="guide/bootstrap">Bootstrap</a></p>
<p>Note that ngScenario-based end-to-end tests cannot use this function to bootstrap manually.
They must use <a href="api/ng/directive/ngApp">ngApp</a>.</p>
<p>Angular will detect if it has been loaded into the browser more than once and only allow the
first loaded script to be bootstrapped and will report a warning to the browser console for
each of the subsequent scripts. This prevents strange results in applications, where otherwise
multiple instances of Angular try to work on the DOM.</p>
<p>
<div>
<a ng-click="openPlunkr('examples/example-multi-bootstrap')" class="btn pull-right">
<i class="glyphicon glyphicon-edit"> </i>
Edit in Plunker</a>
<div class="runnable-example"
path="examples/example-multi-bootstrap"
name="multi-bootstrap"
module="multi-bootstrap">
<div class="runnable-example-file"
name="index.html"
language="html"
type="html">
<pre><code><script src="../../../angular.js"></script> <div ng-controller="BrokenTable"> <table> <tr> <th ng-repeat="heading in headings">{{heading}}</th> </tr> <tr ng-repeat="filling in fillings"> <td ng-repeat="fill in filling">{{fill}}</td> </tr> </table> </div></code></pre>
</div>
<div class="runnable-example-file"
name="controller.js"
language="js"
type="js">
<pre><code>var app = angular.module('multi-bootstrap', []) .controller('BrokenTable', function($scope) { $scope.headings = ['One', 'Two', 'Three']; $scope.fillings = [[1, 2, 3], ['A', 'B', 'C'], [7, 8, 9]]; });</code></pre>
</div>
<div class="runnable-example-file"
name="protractor.js"
type="protractor"
language="js">
<pre><code>it('should only insert one table cell for each item in $scope.fillings', function() { expect(element.all(by.css('td')).count()) .toBe(9); });</code></pre>
</div>
<iframe class="runnable-example-frame" src="examples/example-multi-bootstrap/index.html" name="example-multi-bootstrap"></iframe>
</div>
</div>
</p>
</div>
<div>
<h2 id="usage">Usage</h2>
<p><code>angular.bootstrap(element, [modules]);</code></p>
<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>
element
</td>
<td>
<a href="" class="label type-hint type-hint-domelement">DOMElement</a>
</td>
<td>
<p>DOM element which is the root of angular application.</p>
</td>
</tr>
<tr>
<td>
modules
<div><em>(optional)</em></div>
</td>
<td>
<a href="" class="label type-hint type-hint-array">Array<String|Function|Array>=</a>
</td>
<td>
<p>an array of modules to load into the application.
Each item in the array should be the name of a predefined module or a (DI annotated)
function that will be invoked by the injector as a run block.
See: <a href="api/ng/function/angular.module">modules</a></p>
</td>
</tr>
</tbody>
</table>
</section>
<h3>Returns</h3>
<table class="variables-matrix return-arguments">
<tr>
<td><a href="" class="label type-hint type-hint-auto">auto.$injector</a></td>
<td><p>Returns the newly created injector for this app.</p>
</td>
</tr>
</table>
</div>
| dolymood/angular-packages | angular-1.2.29/docs/partials/api/ng/function/angular.bootstrap.html | HTML | mit | 4,714 |
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Expires" content="-1">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<title>105年第十四任總統副總統及第九屆立法委員選舉</title>
<link href="../css/style.css" rel="stylesheet" type="text/css">
<link href="../css/style2.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="../js/ftiens4.js"></script>
<script type="text/javascript" src="../js/ua.js"></script>
<script type="text/javascript" src="../js/func.js"></script>
<script type="text/javascript" src="../js/treeT.js"></script>
<script type="text/javascript" src="../js/refresh.js"></script>
</head>
<body id="main-body">
<div id="main-header">
<div id="main-top">
<a class="main-top-logo" href="#">中央選舉委員會</a>
<ul class="main-top-list">
<li class="main-top-item"><a class="main-top-link main-top-link-home" href="../index.html">回首頁</a></li>
<li class="main-top-item"><a class="main-top-link main-top-link-cec" href="http://2016.cec.gov.tw">中選會網站</a></li>
<li class="main-top-item"><a class="main-top-link main-top-link-english" href="../../en/index.html">English</a></li>
</ul>
</div>
</div>
<div id="main-wrap">
<div id="main-banner">
<div class="slideshow">
<img src="../img/main_bg_2.jpg" width="1024" height="300" alt="background" title="background">
</div>
<div class="main-deco"></div>
<div class="main-title"></div>
<a class="main-pvpe" href="../IDX/indexP1.html">總統副總統選舉</a>
<a class="main-le main-le-current" href="../IDX/indexT.html">立法委員選舉</a>
</div>
<div id="main-container">
<div id="main-content">
<table width="1024" border="1" cellpadding="0" cellspacing="0">
<tr>
<td width="180" valign="top">
<div id="divMenu">
<table border="0">
<tr>
<td><a style="text-decoration:none;color:silver" href="http://www.treemenu.net/" target=_blank></a></td>
</tr>
</table>
<span class="TreeviewSpanArea">
<script>initializeDocument()</script>
<noscript>請開啟Javascript功能</noscript>
</span>
</div>
</td>
<td width="796" valign="top">
<div id="divContent">
<!-- 修改區塊 -->
<table width="100%" border="0" cellpadding="0" cellspacing="4">
<tr>
<td><img src="../images/search.png" alt="候選人得票數" title="候選人得票數"> <b>區域立法委員選舉 屏東縣 第2選舉區 候選人得票數 </b></td>
</tr>
<tr valign="bottom">
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr valign="bottom">
<td class="fontNumber"> <img src="../images/nav.gif" alt="候選人數" title="候選人數"> <img src="../images/nav.gif" alt="候選人數" title="候選人數"> 候選人數:2 <img src="../images/nav.gif" alt="應選人數" title="應選人數"> <img src="../images/nav.gif" alt="應選人數" title="應選人數"> 應選人數:1
<!--<img src="../images/nav.gif" alt="應有婦女當選名額" title="應有婦女當選名額"> <img src="../images/nav.gif" alt="應有婦女當選名額" title="應有婦女當選名額"> 應有婦女當選名額:0-->
</td>
<td align="right">
<select name="selector_order" class="selectC" tabindex="1" id="orderBy" onChange="changeOrder();">
<option value="n">依號次排序</option>
<option value="s">依得票排序</option>
</select>
</td>
</tr>
</table>
</td>
</tr>
<tr valign="top">
<td>
<table width="100%" border="0" cellpadding="6" cellspacing="1" class="tableT">
<tr class="trHeaderT">
<td>註記</td>
<td>號次</td>
<td>姓名</td>
<td>性別</td>
<td>得票數</td>
<td>得票率%</td>
<td>推薦之政黨</td>
</tr>
<tr class="trT">
<td>◎</td>
<td>1</td>
<td>鍾佳濱</td>
<td>男</td>
<td class="tdAlignRight">76,204</td>
<td class="tdAlignRight">52.5476</td>
<td>民主進步黨</td>
</tr>
<tr class="trT">
<td> </td>
<td>2</td>
<td>王進士</td>
<td>男</td>
<td class="tdAlignRight">68,815</td>
<td class="tdAlignRight">47.4524</td>
<td>中國國民黨</td>
</tr>
<tr class="trFooterT">
<td colspan="7" align="right">投開票所數 已送/應送: 177/177 </td>
</tr>
</table>
</td>
</tr>
<tr valign="top">
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="10"></td>
<td valign="top" class="fontNote">
<table>
<tr>
<td>註記說明:</td>
<td align="center">◎</td>
<td>當選註記</td>
</tr>
<tr>
<td></td>
<td align="center">?</td>
<td>同票待抽籤</td>
</tr>
</table>
</td>
<td valign="top" class="fontTimer"><img src="../images/clock2.png" alt="Sat, 16 Jan 2016 23:15:12 +0800" title="Sat, 16 Jan 2016 23:15:12 +0800"> 資料更新時間:01/16 23:15:06 <br>(網頁每3分鐘自動更新一次)</td>
</tr>
<tr>
<td colspan="3" class="fontNote"></td>
</tr>
</table>
</td>
</tr>
</table>
<!-- 修改區塊 -->
</div>
</td>
</tr>
</table>
</div>
<div class="main-footer"></div>
<div id="divFooter">[中央選舉委員會] </div>
<!--main-content-->
</div><!--main-container-->
</div><!--END main-wrap-->
<script>setOrder();</script>
<script>setMenuScrollPosY();</script>
</body>
</html>
| gugod/vote-watch-2016 | data/PIF-2/n707020000000000/20160116154510/page.html | HTML | cc0-1.0 | 6,364 |
<div class="monitor-view">
<div hide-empty="['{{ ctrl.services[0] }}', '{{ ctrl.dependencies[0] }}']">
<div class="widget" ng-if="ctrl.services && ctrl.services.length">
<div class="widget-heading">
<span>Our Services</span>
<span class="pull-right icon-legend-link" ng-click="ctrl.showIconLegend()">Icon Legend</span>
</div>
<div class="widget-body">
<div hide-empty="['{{ ctrl.services[0] }}']">
<div class="monitor-row dash-row clickable"
ng-repeat="service in ctrl.services | orderBy: ['-status', 'name']"
ng-click="ctrl.openStatusWindow(service)">
<span class="pull-left" dash-status="{{service.status}}"></span>
<span class="fa fa-comment-o pull-right" ng-if="ctrl.hasMessage(service)"></span>
<div class="dash-overflow">{{service.name}}</div>
</div>
</div>
</div>
</div>
<div class="widget" ng-if="ctrl.dependencies && ctrl.dependencies.length">
<div class="widget-heading">
Dependent Services
</div>
<div class="widget-body">
<div hide-empty="['{{ ctrl.dependencies[0] }}']">
<div class="monitor-row dash-row"
ng-repeat="service in ctrl.dependencies | orderBy: ['-status', 'name']"
ng-class="{'clickable': ctrl.hasMessage(service)}"
popover="{{service.message}}"
popover-trigger="focus"
popover-placement="left"
tabindex="0"
>
<span class="pull-left" dash-status="{{service.status}}"></span>
<span class="fa fa-comment-o pull-right monitor-has-comment" ng-if="ctrl.hasMessage(service)"></span>
<div class="dash-overflow">{{service.name}}</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--A monitor modal used for the status popup-->
<script type="text/ng-template" id="monitorStatus.html">
<widget-modal widget-modal-title="Status">
<form role="form" ng-submit="ctrl.submit()" novalidate="novalidate">
<div class="form-group">
<label class="control-label">{{::ctrl.service.name}}</label>
<label class="control-label">{{::ctrl.service.url}}</label>
<textarea class="form-control modal-view-status-input" rows="3" ng-model="ctrl.service.message" placeholder="Add a message"></textarea>
</div>
<div class="form-group clearfix">
<div class="monitor-modal-buttons fa fa-2x pull-left">
<span class="btn monitor-button-fail"
ng-class="{'selected':ctrl.service.status == ctrl.statuses.FAIL}"
ng-click="ctrl.setStatus(ctrl.statuses.FAIL)">
<span class="fa-exclamation-circle"></span>
</span>
<span class="btn monitor-button-warn"
ng-class="{'selected':ctrl.service.status == ctrl.statuses.WARN}"
ng-click="ctrl.setStatus(ctrl.statuses.WARN)">
<span class="fa-exclamation-triangle"></span>
</span>
<span class="btn monitor-button-pass"
ng-class="{'selected':ctrl.service.status == ctrl.statuses.PASS}"
ng-click="ctrl.setStatus(ctrl.statuses.PASS)">
<span class="fa-check"></span>
</span>
</div>
<button class="btn btn-primary pull-right" ng-click="ctrl.updateStatus()">Update</button>
</div>
</form>
</widget-modal>
</script> | tabladrum/Hygieia | UI/src/components/widgets/monitor/view.html | HTML | apache-2.0 | 4,047 |
#sys_top
#sys_head
<section class="layout">
#sys_menu
<!-- 列表 -->
<section class="main-content bg-white">
<header class="header navbar bg-white shadow">
<div class="btn-group tool-button">
<a class="btn btn-primary navbar-btn" href="${base}/private/sys/user"><i class="ti-angle-left"></i> 返回</a>
</div>
</header>
<div class="content-wrap">
<div class="wrapper">
<section class="panel">
<form id="userAddForm" role="form" class="form-horizontal parsley-form" data-parsley-validate action="${base}/private/sys/user/add/do" method="post">
<div class="row">
<div class="col-lg-6">
<div class="form-group has-feedback">
<label for="unitName" class="col-sm-2 control-label">所属机构</label>
<div class="col-sm-8">
<div class="input-group">
<input id="unitName" type="text" value="$!parentUnit.name" class="form-control" data-parsley-required="true" placeholder="点击右侧按钮选择" readonly/>
<span class="input-group-btn">
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#dialogSelectUnit"><i class="ti-plus"></i> 选择</button>
</span>
</div>
<input type="hidden" id="unitid" name="unitid" value="$!parentUnit.id" />
</div>
</div>
</div>
<div class="col-lg-6">
<div class="form-group" style="height:44px;">
<label for="roleIds" class="col-sm-2 control-label">角色(多选)</label>
<div class="col-sm-8">
<select tabindex="2" id="roleIds" name="roleIds" data-placeholder="<--选择机构后,选择角色" style="width:100%" multiple class="form-control chosen" data-parsley-required="true">
#foreach($!role in $!roleList)
<option value="$!role.id"> #if("$!role.unitid"=="_system")[系统]#end$!role.name
#end
</select>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="form-group">
<label for="username" class="col-sm-2 control-label">用户名</label>
<div class="col-sm-8">
<input type="text" id="username" tabindex="3" class="form-control" name="u.username" data-parsley-required="true" placeholder="登陆时使用的用户名">
</div>
</div>
</div>
<div class="col-lg-6">
<div class="form-group">
<label for="nickname" class="col-sm-2 control-label">昵称</label>
<div class="col-sm-8">
<input type="text" id="nickname" tabindex="4" class="form-control" name="p.nickname" data-parsley-required="true" placeholder="昵称或姓名">
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="form-group">
<label for="password" class="col-sm-2 control-label">密码</label>
<div class="col-sm-8">
<input id="password" tabindex="5" type="password" class="form-control" name="u.password" data-parsley-required="true" placeholder="密码">
</div>
</div>
</div>
<div class="col-lg-6">
<div class="form-group">
<label for="password2" class="col-sm-2 control-label">密码确认</label>
<div class="col-sm-8">
<input id="password2" type="password" tabindex="6" class="form-control" data-parsley-equalto="#password" data-parsley-required="true" name="eqPassword" placeholder="请再输入一次密码">
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="form-group">
<label for="email" class="col-sm-2 control-label">邮箱</label>
<div class="col-sm-8">
<input id="email" type="text" tabindex="7" name="p.email" data-parsley-type="email" class="form-control" placeholder="电子邮箱地址 [email protected]">
</div>
</div>
</div>
<div class="col-lg-6">
<div class="form-group">
<label for="mobile" class="col-sm-2 control-label">联系方式</label>
<div class="col-sm-8">
<input id="mobile" type="text" tabindex="8" name="p.mobile" class="form-control" data-parsley-type="digits" placeholder="固定电话或手机号码">
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="form-group">
<label for="linkQq" class="col-sm-2 control-label">QQ</label>
<div class="col-sm-8">
<input id="linkQq" type="text" name="p.linkQq" tabindex="10" data-parsley-type="number" class="form-control" placeholder="QQ号码">
</div>
</div>
</div>
<div class="col-lg-6">
<div class="form-group">
<label for="linkWebsite" class="col-sm-2 control-label">主页</label>
<div class="col-sm-8">
<input id="linkWebsite" type="text" name="p.linkWebsite" tabindex="10" data-parsley-type="url" class="form-control" placeholder="http://www.wizzer.cn">
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="form-group">
<label for="address" class="col-sm-2 control-label">住址</label>
<div class="col-sm-8">
<input id="address" type="text" name="p.address" tabindex="10" class="form-control" placeholder="住址">
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="form-group">
<label for="locked" class="col-sm-2 control-label">是否禁用</label>
<div class="col-sm-8 switcha">
<div class="mr15">
<input type="checkbox" id="locked" name="u.locked" class="js-switch-red" >
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-3"></div>
<div class="col-lg-6">
<div class="form-group text-center">
<label></label>
<div>
<button class="btn btn-primary btn-block btn-lg btn-parsley" data-loading-text="正在提交...">提 交</button>
</div>
</div>
</div>
</form>
</section>
</div>
</div>
<a class="exit-offscreen"></a>
</section>
</section>
<!-- 选择机构 -->
<div id="dialogSelectUnit" class="modal fade bs-modal-sm" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title">选择机构</h4>
</div>
<div class="modal-body">
<div class="row">
<div class="col-xs-12">
<div id="jsTreeUnit" class="demo"></div>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">取 消</button>
<button type="button" class="btn btn-primary" onclick="selectUnit()">确认选择</button>
</div>
</div>
</div>
</div>
#sys_buttom
<script src="${base}/include/plugins/jquery.nestable.js"></script>
<script src="${base}/include/js/toast.js"></script>
<script src="${base}/include/js/treetable.js"></script>
<script src="${base}/include/js/datatables.js"></script>
<script src="${base}/include/js/tree.js"></script>
<script src="${base}/include/plugins/jquery.form.js"></script>
<script src="${base}/include/plugins/parsley.min.js"></script>
<script src="${base}/include/js/form.js"></script>
<script src="${base}/include/plugins/switchery/switchery.js"></script>
#if(!$app_language||$app_language=="zh_CN")
<script src="${base}/include/plugins/parsley.zh_cn.js"></script>
#end
<script language="JavaScript">
function initTreeView(){
$("#jsTreeUnit").jstree({
plugins : [ "wholerow"],
core : {
data : {
url : function(node){
return node.id === "#" ? "${base}/private/sys/user/tree" : "${base}/private/sys/user/tree?pid="+node.id
}
},
multiple : false
}
}).on("dblclick.jstree", function(node){
selectUnit();
});
}
//选择机构
function selectUnit(){
var tree = $.jstree.reference("#jsTreeUnit");
var node = tree.get_selected(true);
$("#userAddForm #unitName").val(node[0].text);
$("#userAddForm input[name='unitid']").val(node[0].id);
//根据获取的机构,获取角色列表
jQuery.post("${base}/private/sys/user/unitrole/"+node[0].id,{},function(data){
var roleSelect = $("#userAddForm select[name='roleIds']");
if(data.type="success"&&data.data.length > 0){
var html = "";
for(var i=0;i<data.data.length;i++){
var role = data.data[i];
var t="";
if("_system"==role.unitid){
t="[系统]";
}
html += "<option value='"+role.id+"'>"+t+role.name+"</option>";
}
roleSelect.html(html);
}else{
roleSelect.html("");
Toast.warning("当前机构无角色,请添加角色后再添加用户!");
}
roleSelect.trigger("chosen:updated");
},"json");
$("#dialogSelectUnit").modal("hide");
}
$(document).ready(function () {
initTreeView();
$('#userAddForm').ajaxForm({
dataType: 'json',
beforeSubmit:function(arr, form, options){
if(!$("#unitid").val()){
Toast.error("请选择一个机构!");
return false;
}
var roleIds = $("#userAddForm select[name='roleIds']").val();
if(!roleIds){
Toast.error("至少需要选择一个角色!");
return false;
}
form.find("button:submit").button("loading");
},
success : function(data, statusText, xhr, form) {
if(data.type == "success"){
Toast.success("用户增加成功!");
var unitName = $("#userAddForm #unitName").val();
var roleIds = $("#userAddForm select[name='roleIds']").val();
//重置form
form.resetForm();
//重置select
$("#userAddForm #unitName").val(unitName);
$("#userAddForm select[name='roleIds']").val(roleIds);
$("#userAddForm select[name='roleIds']").trigger("chosen:updated");
}else{
Toast.error(data.content);
}
form.find("button:submit").button("reset");
}
});
});
</script>
</body>
</html>
| sdgdsffdsfff/NutzWk | src/main/webapp/WEB-INF/template/private/sys/user/add.html | HTML | apache-2.0 | 14,579 |
<!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_controller">
<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.16.0.0 Root Admin API Reference
</span>
<p></p>
<h1>enableHAForCluster</h1>
<p>Enables HA cluster-wide</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>clusterid</strong></td><td style="width:500px;"><strong>ID of the cluster</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>displaytext</strong></td><td style="width:500px;">any text associated with the success or failure</td>
</tr>
<tr>
<td style="width:200px;"><strong>success</strong></td><td style="width:500px;">true if operation is executed successfully</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_maincontroller">
<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.16/apis/enableHAForCluster.html | HTML | apache-2.0 | 5,117 |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Chapter 23. Boost.Proto</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="libraries.html" title="Part I. The Boost C++ Libraries (BoostBook Subset)">
<link rel="prev" href="boost/property_tree/xml_parser/write_xml_idp100217776.html" title="Function template write_xml">
<link rel="next" href="proto/users_guide.html" title="Users' Guide">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../boost.png"></td>
<td align="center"><a href="../../index.html">Home</a></td>
<td align="center"><a href="../../libs/libraries.htm">Libraries</a></td>
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
<td align="center"><a href="../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="boost/property_tree/xml_parser/write_xml_idp100217776.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="libraries.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="proto/users_guide.html"><img src="../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="chapter">
<div class="titlepage"><div>
<div><h2 class="title">
<a name="proto"></a>Chapter 23. Boost.Proto</h2></div>
<div><div class="author"><h3 class="author">
<span class="firstname">Eric</span> <span class="surname">Niebler</span>
</h3></div></div>
<div><p class="copyright">Copyright © 2008 Eric Niebler</p></div>
<div><div class="legalnotice">
<a name="proto.legal"></a><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></div>
</div></div>
<div class="toc">
<p><b>Table of Contents</b></p>
<dl class="toc">
<dt><span class="section"><a href="proto.html#boost_proto.preface">Preface</a></span></dt>
<dt><span class="section"><a href="proto/users_guide.html">Users' Guide</a></span></dt>
<dd><dl>
<dt><span class="section"><a href="proto/users_guide.html#boost_proto.users_guide.getting_started">Getting Started</a></span></dt>
<dt><span class="section"><a href="proto/users_guide.html#boost_proto.users_guide.front_end">Fronts Ends: Defining
Terminals and Non-Terminals of Your EDSL</a></span></dt>
<dt><span class="section"><a href="proto/users_guide.html#boost_proto.users_guide.intermediate_form">Intermediate
Form: Understanding and Introspecting Expressions</a></span></dt>
<dt><span class="section"><a href="proto/users_guide.html#boost_proto.users_guide.back_end">Back Ends: Making Expression
Templates Do Useful Work</a></span></dt>
<dt><span class="section"><a href="proto/users_guide.html#boost_proto.users_guide.examples">Examples</a></span></dt>
<dt><span class="section"><a href="proto/users_guide.html#boost_proto.users_guide.resources">Background and Resources</a></span></dt>
<dt><span class="section"><a href="proto/users_guide.html#boost_proto.users_guide.glossary">Glossary</a></span></dt>
</dl></dd>
<dt><span class="section"><a href="proto/reference.html">Reference</a></span></dt>
<dd><dl>
<dt><span class="section"><a href="proto/reference.html#proto.concepts">Concepts</a></span></dt>
<dt><span class="section"><a href="proto/reference.html#proto.reference.classes">Classes</a></span></dt>
<dt><span class="section"><a href="proto/reference.html#proto.reference.functions">Functions</a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.args_hpp">Header <boost/proto/args.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.core_hpp">Header <boost/proto/core.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.debug_hpp">Header <boost/proto/debug.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.deep_copy_hpp">Header <boost/proto/deep_copy.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.domain_hpp">Header <boost/proto/domain.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.eval_hpp">Header <boost/proto/eval.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.expr_hpp">Header <boost/proto/expr.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.extends_hpp">Header <boost/proto/extends.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.functional_hpp">Header <boost/proto/functional.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.functional.fusion_hpp">Header <boost/proto/functional/fusion.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.functional.fusion.at_hpp">Header <boost/proto/functional/fusion/at.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.functional.fusion.pop_back_hpp">Header <boost/proto/functional/fusion/pop_back.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.functional.fusion.pop_front_hpp">Header <boost/proto/functional/fusion/pop_front.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.functional.fusion.push_back_hpp">Header <boost/proto/functional/fusion/push_back.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.functional.fusion.push_front_hpp">Header <boost/proto/functional/fusion/push_front.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.functional.fusion.reverse_hpp">Header <boost/proto/functional/fusion/reverse.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.functional.range.begin_hpp">Header <boost/proto/functional/range/begin.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.functional.range.empty_hpp">Header <boost/proto/functional/range/empty.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.functional.range.end_hpp">Header <boost/proto/functional/range/end.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.functional.range.rbegin_hpp">Header <boost/proto/functional/range/rbegin.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.functional.range.rend_hpp">Header <boost/proto/functional/range/rend.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.functional.range.size_hpp">Header <boost/proto/functional/range/size.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.functional.std_hpp">Header <boost/proto/functional/std.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.functional.std.iterator_hpp">Header <boost/proto/functional/std/iterator.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.functional.std.utility_hpp">Header <boost/proto/functional/std/utility.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.fusion_hpp">Header <boost/proto/fusion.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.generate_hpp">Header <boost/proto/generate.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.literal_hpp">Header <boost/proto/literal.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.make_expr_hpp">Header <boost/proto/make_expr.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.matches_hpp">Header <boost/proto/matches.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.operators_hpp">Header <boost/proto/operators.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.proto_hpp">Header <boost/proto/proto.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.proto_fwd_hpp">Header <boost/proto/proto_fwd.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.proto_typeof_hpp">Header <boost/proto/proto_typeof.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.repeat_hpp">Header <boost/proto/repeat.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.tags_hpp">Header <boost/proto/tags.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.traits_hpp">Header <boost/proto/traits.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.transform_hpp">Header <boost/proto/transform.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.transform.arg_hpp">Header <boost/proto/transform/arg.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.transform.call_hpp">Header <boost/proto/transform/call.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.transform.default_hpp">Header <boost/proto/transform/default.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.transform.env_hpp">Header <boost/proto/transform/env.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.transform.fold_hpp">Header <boost/proto/transform/fold.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.transform.fold_tree_hpp">Header <boost/proto/transform/fold_tree.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.transform.impl_hpp">Header <boost/proto/transform/impl.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.transform.integral_c_hpp">Header <boost/proto/transform/integral_c.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.transform.lazy_hpp">Header <boost/proto/transform/lazy.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.transform.make_hpp">Header <boost/proto/transform/make.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.transform.pass_through_hpp">Header <boost/proto/transform/pass_through.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.transform.when_hpp">Header <boost/proto/transform/when.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.context_hpp">Header <boost/proto/context.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.context.callable_hpp">Header <boost/proto/context/callable.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.context.default_hpp">Header <boost/proto/context/default.hpp></a></span></dt>
<dt><span class="section"><a href="proto/reference.html#header.boost.proto.context.null_hpp">Header <boost/proto/context/null.hpp></a></span></dt>
</dl></dd>
<dt><span class="section"><a href="proto/appendices.html">Appendices</a></span></dt>
<dd><dl>
<dt><span class="section"><a href="proto/appendices.html#boost_proto.appendices.release_notes">Appendix A: Release
Notes</a></span></dt>
<dt><span class="section"><a href="proto/appendices.html#boost_proto.appendices.history">Appendix B: History</a></span></dt>
<dt><span class="section"><a href="proto/appendices.html#boost_proto.appendices.rationale">Appendix C: Rationale</a></span></dt>
<dt><span class="section"><a href="proto/appendices.html#boost_proto.appendices.implementation">Appendix D: Implementation
Notes</a></span></dt>
<dt><span class="section"><a href="proto/appendices.html#boost_proto.appendices.acknowledgements">Appendix E:
Acknowledgements</a></span></dt>
</dl></dd>
</dl>
</div>
<div class="section">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
<a name="boost_proto.preface"></a><a class="link" href="proto.html#boost_proto.preface" title="Preface">Preface</a>
</h2></div></div></div>
<div class="blockquote"><blockquote class="blockquote"><p>
<span class="quote">“<span class="quote">There are more things in heaven and earth, Horatio, than are dreamt
of in your philosophy.</span>”</span>
</p></blockquote></div>
<div class="blockquote"><blockquote class="blockquote"><p>
<span class="bold"><strong><span class="emphasis"><em>-- William Shakespeare</em></span></strong></span>
</p></blockquote></div>
<h4>
<a name="boost_proto.preface.h0"></a>
<span class="phrase"><a name="boost_proto.preface.description"></a></span><a class="link" href="proto.html#boost_proto.preface.description">Description</a>
</h4>
<p>
Proto is a framework for building Embedded Domain-Specific Languages in C++.
It provides tools for constructing, type-checking, transforming and executing
<span class="emphasis"><em>expression templates</em></span><a href="#ftn.boost_proto.preface.f0" class="footnote" name="boost_proto.preface.f0"><sup class="footnote">[6]</sup></a>. More specifically, Proto provides:
</p>
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem">
An expression tree data structure.
</li>
<li class="listitem">
A mechanism for giving expressions additional behaviors and members.
</li>
<li class="listitem">
Operator overloads for building the tree from an expression.
</li>
<li class="listitem">
Utilities for defining the grammar to which an expression must conform.
</li>
<li class="listitem">
An extensible mechanism for immediately executing an expression template.
</li>
<li class="listitem">
An extensible set of tree transformations to apply to expression trees.
</li>
</ul></div>
<h4>
<a name="boost_proto.preface.h1"></a>
<span class="phrase"><a name="boost_proto.preface.motivation"></a></span><a class="link" href="proto.html#boost_proto.preface.motivation">Motivation</a>
</h4>
<p>
Expression Templates are an advanced technique that C++ library developers
use to define embedded mini-languages that target specific problem domains.
The technique has been used to create efficient and easy-to-use libraries for
linear algebra as well as to define C++ parser generators with a readable syntax.
But developing such a library involves writing an inordinate amount of unreadable
and unmaintainable template mumbo-jumbo. Boost.Proto eases the development
of <a class="link" href="proto/users_guide.html#boost_proto.users_guide.glossary.edsl">domain-specific embedded
languages (EDSLs)</a>. Use Proto to define the primitives of your mini-language
and let Proto handle the operator overloading and the construction of the expression
parse tree. Immediately evaluate the expression tree by passing it a function
object. Or transform the expression tree by defining the grammar of your mini-language,
decorated with an assortment of tree transforms provided by Proto or defined
by you. Then use the grammar to give your users short and readable syntax errors
for invalid expressions! No more mumbo-jumbo -- an expression template library
developed with Proto is declarative and readable.
</p>
<p>
In short, Proto is an EDSL for defining EDSLs.
</p>
<h4>
<a name="boost_proto.preface.h2"></a>
<span class="phrase"><a name="boost_proto.preface.how_to_use_this_documentation"></a></span><a class="link" href="proto.html#boost_proto.preface.how_to_use_this_documentation">How
to Use This Documentation</a>
</h4>
<p>
This documentation makes use of the following naming and formatting conventions.
</p>
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem">
Code is in <code class="computeroutput"><span class="identifier">fixed</span> <span class="identifier">width</span>
<span class="identifier">font</span></code> and is syntax-highlighted.
</li>
<li class="listitem">
Replaceable text that you will need to supply is in <em class="replaceable"><code>italics</code></em>.
</li>
<li class="listitem">
If a name refers to a free function, it is specified like this: <code class="computeroutput"><span class="identifier">free_function</span><span class="special">()</span></code>;
that is, it is in code font and its name is followed by <code class="computeroutput"><span class="special">()</span></code>
to indicate that it is a free function.
</li>
<li class="listitem">
If a name refers to a class template, it is specified like this: <code class="computeroutput"><span class="identifier">class_template</span><span class="special"><></span></code>;
that is, it is in code font and its name is followed by <code class="computeroutput"><span class="special"><></span></code>
to indicate that it is a class template.
</li>
<li class="listitem">
If a name refers to a function-like macro, it is specified like this:
<code class="computeroutput"><span class="identifier">MACRO</span><span class="special">()</span></code>;
that is, it is uppercase in code font and its name is followed by <code class="computeroutput"><span class="special">()</span></code> to indicate that it is a function-like
macro. Object-like macros appear without the trailing <code class="computeroutput"><span class="special">()</span></code>.
</li>
<li class="listitem">
Names that refer to <span class="emphasis"><em>concepts</em></span> in the generic programming
sense are specified in CamelCase.
</li>
</ul></div>
<div class="note"><table border="0" summary="Note">
<tr>
<td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="../../doc/src/images/note.png"></td>
<th align="left">Note</th>
</tr>
<tr><td align="left" valign="top"><p>
In addition, notes such as this one specify non-essential information that
provides additional background or rationale.
</p></td></tr>
</table></div>
<p>
Finally, you can mentally add the following to any code fragments in this document:
</p>
<pre class="programlisting"><span class="comment">// Include all of Proto</span>
<span class="preprocessor">#include</span> <span class="special"><</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">proto</span><span class="special">/</span><span class="identifier">proto</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">></span>
<span class="comment">// Create some namespace aliases</span>
<span class="keyword">namespace</span> <span class="identifier">mpl</span> <span class="special">=</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">mpl</span><span class="special">;</span>
<span class="keyword">namespace</span> <span class="identifier">fusion</span> <span class="special">=</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">fusion</span><span class="special">;</span>
<span class="keyword">namespace</span> <span class="identifier">proto</span> <span class="special">=</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">proto</span><span class="special">;</span>
<span class="comment">// Allow unqualified use of Proto's wildcard pattern</span>
<span class="keyword">using</span> <span class="identifier">proto</span><span class="special">::</span><span class="identifier">_</span><span class="special">;</span>
</pre>
</div>
<div class="footnotes">
<br><hr style="width:100; text-align:left;margin-left: 0">
<div id="ftn.boost_proto.preface.f0" class="footnote"><p><a href="#boost_proto.preface.f0" class="para"><sup class="para">[6] </sup></a>
See <a href="http://en.wikipedia.org/wiki/Expression_templates" target="_top">Expression
Templates</a>
</p></div>
</div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"><p><small>Last revised: October 30, 2014 at 10:20:26 GMT</small></p></td>
<td align="right"><div class="copyright-footer"></div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="boost/property_tree/xml_parser/write_xml_idp100217776.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="libraries.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="proto/users_guide.html"><img src="../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
| biospi/seamass-windeps | src/boost_1_57_0/doc/html/proto.html | HTML | apache-2.0 | 22,579 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>States Example</title>
<!-- // [START ms-specific] -->
<!-- IE Specific to remove tap highlight -->
<meta name="msapplication-tap-highlight" content="no">
<!-- // [END ms-specific] -->
<link href='http://fonts.googleapis.com/css?family=Roboto:400,300' rel='stylesheet' type='text/css'>
<style>
body {
background-color: #d3e2fc;
margin: 32px;
font-family: 'Roboto', sans-serif;
color: #ecf0f1;
}
a {
color: #ecf0f1;
}
button {
display: block;
width: 100%;
max-width: 400px;
padding: 16px;
margin: 0 auto 16px auto;
box-sizing: border-box;
border-style: none;
border-radius: 6px;
color: inherit;
font-family: inherit;
font-size: inherit;
text-align:center;
text-decoration: none;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
/* // [START btnstates] */
.btn {
background-color: #4285f4;
}
.btn:hover {
background-color: #296CDB;
}
.btn:focus {
background-color: #0F52C1;
/* The outline parameter surpresses the border
color / outline when focused */
outline: 0;
}
.btn:active {
background-color: #0039A8;
}
/* // [END btnstates] */
/* // [START webkit-specific] */
/* Webkit / Chrome Specific CSS to remove tap
highlight color */
.btn {
-webkit-tap-highlight-color: transparent;
}
/* // [END webkit-specific] */
/* // [START ff-specific] */
/* Firefox Specific CSS to remove button
differences and focus ring */
.btn {
background-image: none;
}
.btn::-moz-focus-inner {
border: 0;
}
/* // [END ff-specific] */
</style>
</head>
<body>
<button class="btn" tabindex="1">Button 1</button>
<button class="btn hover" tabindex="2">Button 2</button>
<button class="btn active" tabindex="3">Button 3</button>
<button class="btn focus" tabindex="4">Button 4</button>
<script>
window.onload = function() {
if(/iP(hone|ad)/.test(window.navigator.userAgent)) {
document.body.addEventListener('touchstart', function() {}, false);
}
};
</script>
<script>
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create','UA-52746336-1');ga('send','pageview');
var isCompleted = {};
function sampleCompleted(sampleName){
if (ga && !isCompleted.hasOwnProperty(sampleName)) {
ga('send', 'event', 'WebCentralSample', sampleName, 'completed');
isCompleted[sampleName] = true;
}
}
</script>
</body>
</html>
| ebidel/WebFundamentals | src/content/en/fundamentals/design-and-ux/input/touch/_code/states-example.html | HTML | apache-2.0 | 3,275 |
<html>
<body>
<h2>Feature of Interest Types</h2>
<p> </p>
<p>Wird beim Registrieren eines neuen Sensors benötigt.</p>
<p> </p>
<p>Das Formular akzeptiert durch Komma separierte URIs.</p>
<p> </p>
<p>
Beispiel: <br>
http://www.opengis.net/def/samplingFeatureType/OGC-OM/2.0/SF_SamplingPoint<br>
</p>
<p> </p>
<img src="images/icon_SOS.png" height="20" width="28"
style="vertical-align: text-top" alt="SensorML" />
<p>Identifier of feature of interest type associated with
observation produced by the sensor</p>
<p> </p>
<p>
<small>XML Path: <br>
/swes:InsertSensor/swes:metadata/sos:SosInsertionMetadata/xsl:for-each[2]/sos:featureOfInterestType
</small>
</p>
<p> </p>
<p>
<small>source: <br> <a
href="http://www.opengeospatial.org/standards/sos">http://www.opengeospatial.org/standards/sos</a>
Sensor Observation Service Interface Standard v.2.0
</small>
</p>
</body>
</html> | nuest/Sensor_SmartEditor | smartsensoreditor-webapp/src/main/webapp/tooltips/SOSFeatureOfInterestTypesLabel_de.html | HTML | apache-2.0 | 964 |
<!DOCTYPE html>
<html lang="en">
<head>
<title>DownloadOptions Structure Reference</title>
<link rel="stylesheet" type="text/css" href="../../css/jazzy.css" />
<link rel="stylesheet" type="text/css" href="../../css/highlight.css" />
<meta charset="utf-8">
<script src="../../js/jquery.min.js" defer></script>
<script src="../../js/jazzy.js" defer></script>
<script src="../../js/lunr.min.js" defer></script>
<script src="../../js/typeahead.jquery.js" defer></script>
<script src="../../js/jazzy.search.js" defer></script>
</head>
<body>
<a name="//apple_ref/swift/Struct/DownloadOptions" class="dashAnchor"></a>
<a title="DownloadOptions Structure Reference"></a>
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../../index.html">
Alamofire Docs
</a>
(85% documented)
</p>
<p class="header-col--secondary">
<form role="search" action="../../search.json">
<input type="text" placeholder="Search documentation" data-typeahead>
</form>
</p>
<p class="header-col header-col--secondary">
<a class="header-link" href="https://github.com/Alamofire/Alamofire">
<img class="header-icon" src="../../img/gh.png"/>
View on GitHub
</a>
</p>
<p class="header-col header-col--secondary">
<a class="header-link" href="dash-feed://https%3A%2F%2Falamofire%2Egithub%2Eio%2FAlamofire%2Fdocsets%2FAlamofire%2Exml">
<img class="header-icon" src="../../img/dash.png"/>
Install in Dash
</a>
</p>
</header>
<p class="breadcrumbs">
<a class="breadcrumb" href="../../index.html">Alamofire Reference</a>
<img class="carat" src="../../img/carat.png" />
DownloadOptions Structure Reference
</p>
<div class="content-wrapper">
<nav class="navigation">
<ul class="nav-groups">
<li class="nav-group-name">
<a class="nav-group-name-link" href="../../Classes.html">Classes</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Classes/DataRequest.html">DataRequest</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Classes/DownloadRequest.html">DownloadRequest</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Classes/DownloadRequest/DownloadOptions.html">– DownloadOptions</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Classes/MultipartFormData.html">MultipartFormData</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Classes/NetworkReachabilityManager.html">NetworkReachabilityManager</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Classes/NetworkReachabilityManager/NetworkReachabilityStatus.html">– NetworkReachabilityStatus</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Classes/NetworkReachabilityManager/ConnectionType.html">– ConnectionType</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Classes/Request.html">Request</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Classes/Request/ValidationResult.html">– ValidationResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Classes/ServerTrustPolicyManager.html">ServerTrustPolicyManager</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Classes/SessionDelegate.html">SessionDelegate</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Classes/SessionManager.html">SessionManager</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Classes/SessionManager/MultipartFormDataEncodingResult.html">– MultipartFormDataEncodingResult</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Classes.html#/s:9Alamofire13StreamRequestC">StreamRequest</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Classes/TaskDelegate.html">TaskDelegate</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Classes/UploadRequest.html">UploadRequest</a>
</li>
</ul>
</li>
<li class="nav-group-name">
<a class="nav-group-name-link" href="../../Enums.html">Enumerations</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Enums/AFError.html">AFError</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Enums/AFError/ParameterEncodingFailureReason.html">– ParameterEncodingFailureReason</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Enums/AFError/MultipartEncodingFailureReason.html">– MultipartEncodingFailureReason</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Enums/AFError/ResponseValidationFailureReason.html">– ResponseValidationFailureReason</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Enums/AFError/ResponseSerializationFailureReason.html">– ResponseSerializationFailureReason</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Enums/HTTPMethod.html">HTTPMethod</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Enums/Result.html">Result</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Enums/ServerTrustPolicy.html">ServerTrustPolicy</a>
</li>
</ul>
</li>
<li class="nav-group-name">
<a class="nav-group-name-link" href="../../Extensions.html">Extensions</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Extensions/Notification.html">Notification</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Extensions/Notification/Name.html">– Name</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Extensions/Notification/Key.html">– Key</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Extensions/String.html">String</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Extensions/URL.html">URL</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Extensions/URLComponents.html">URLComponents</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Extensions/URLRequest.html">URLRequest</a>
</li>
</ul>
</li>
<li class="nav-group-name">
<a class="nav-group-name-link" href="../../Functions.html">Functions</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Functions.html#/s:9Alamofire2eeoiySbAA26NetworkReachabilityManagerC0cD6StatusO_AFtF">==(_:_:)</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Functions.html#/s:9Alamofire8download_6method10parameters8encoding7headers2toAA15DownloadRequestCAA14URLConvertible_p_AA10HTTPMethodOSDySSypGSgAA17ParameterEncoding_pSDyS2SGSg10Foundation3URLV011destinationO0_AI0H7OptionsV7optionstAT_So17NSHTTPURLResponseCtcSgtF">download(_:method:parameters:encoding:headers:to:)</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Functions.html#/s:9Alamofire8download_2toAA15DownloadRequestCAA21URLRequestConvertible_p_10Foundation3URLV011destinationI0_AE0D7OptionsV7optionstAI_So17NSHTTPURLResponseCtcSgtF">download(_:to:)</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Functions.html#/s:9Alamofire8download12resumingWith2toAA15DownloadRequestC10Foundation4DataV_AG3URLV011destinationJ0_AF0F7OptionsV7optionstAK_So17NSHTTPURLResponseCtcSgtF">download(resumingWith:to:)</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Functions.html#/s:9Alamofire7requestyAA11DataRequestCAA21URLRequestConvertible_pF">request(_:)</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Functions.html#/s:9Alamofire7request_6method10parameters8encoding7headersAA11DataRequestCAA14URLConvertible_p_AA10HTTPMethodOSDySSypGSgAA17ParameterEncoding_pSDyS2SGSgtF">request(_:method:parameters:encoding:headers:)</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Functions.html#/s:9Alamofire6stream4withAA13StreamRequestCSo12NSNetServiceC_tF">stream(with:)</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Functions.html#/s:9Alamofire6stream12withHostName4portAA13StreamRequestCSS_SitF">stream(withHostName:port:)</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Functions.html#/s:9Alamofire6upload_2to6method7headersAA13UploadRequestC10Foundation3URLV_AA14URLConvertible_pAA10HTTPMethodOSDyS2SGSgtF">upload(_:to:method:headers:)</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Functions.html#/s:9Alamofire6upload_2to6method7headersAA13UploadRequestC10Foundation4DataV_AA14URLConvertible_pAA10HTTPMethodOSDyS2SGSgtF">upload(_:to:method:headers:)</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Functions.html#/s:9Alamofire6upload_2to6method7headersAA13UploadRequestCSo13NSInputStreamC_AA14URLConvertible_pAA10HTTPMethodOSDyS2SGSgtF">upload(_:to:method:headers:)</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Functions.html#/s:9Alamofire6upload_4withAA13UploadRequestC10Foundation3URLV_AA21URLRequestConvertible_ptF">upload(_:with:)</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Functions.html#/s:9Alamofire6upload_4withAA13UploadRequestC10Foundation4DataV_AA21URLRequestConvertible_ptF">upload(_:with:)</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Functions.html#/s:9Alamofire6upload_4withAA13UploadRequestCSo13NSInputStreamC_AA21URLRequestConvertible_ptF">upload(_:with:)</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Functions.html#/s:9Alamofire6upload17multipartFormData14usingThreshold2to6method7headers18encodingCompletionyyAA09MultipartdE0Cc_s6UInt64VAA14URLConvertible_pAA10HTTPMethodOSDyS2SGSgyAA14SessionManagerC0mdE14EncodingResultOcSgtF">upload(multipartFormData:usingThreshold:to:method:headers:encodingCompletion:)</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Functions.html#/s:9Alamofire6upload17multipartFormData14usingThreshold4with18encodingCompletionyyAA09MultipartdE0Cc_s6UInt64VAA21URLRequestConvertible_pyAA14SessionManagerC0kdE14EncodingResultOcSgtF">upload(multipartFormData:usingThreshold:with:encodingCompletion:)</a>
</li>
</ul>
</li>
<li class="nav-group-name">
<a class="nav-group-name-link" href="../../Protocols.html">Protocols</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Protocols/DataResponseSerializerProtocol.html">DataResponseSerializerProtocol</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Protocols/DownloadResponseSerializerProtocol.html">DownloadResponseSerializerProtocol</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Protocols/ParameterEncoding.html">ParameterEncoding</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Protocols/RequestAdapter.html">RequestAdapter</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Protocols/RequestRetrier.html">RequestRetrier</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Protocols/URLConvertible.html">URLConvertible</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Protocols/URLRequestConvertible.html">URLRequestConvertible</a>
</li>
</ul>
</li>
<li class="nav-group-name">
<a class="nav-group-name-link" href="../../Structs.html">Structures</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Structs/DataResponse.html">DataResponse</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Structs/DataResponseSerializer.html">DataResponseSerializer</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Structs/DefaultDataResponse.html">DefaultDataResponse</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Structs/DefaultDownloadResponse.html">DefaultDownloadResponse</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Structs/DownloadResponse.html">DownloadResponse</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Structs/DownloadResponseSerializer.html">DownloadResponseSerializer</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Structs/JSONEncoding.html">JSONEncoding</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Structs/PropertyListEncoding.html">PropertyListEncoding</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Structs/Timeline.html">Timeline</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Structs/URLEncoding.html">URLEncoding</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Structs/URLEncoding/Destination.html">– Destination</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Structs/URLEncoding/ArrayEncoding.html">– ArrayEncoding</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Structs/URLEncoding/BoolEncoding.html">– BoolEncoding</a>
</li>
</ul>
</li>
<li class="nav-group-name">
<a class="nav-group-name-link" href="../../Typealiases.html">Type Aliases</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Typealiases.html#/s:9Alamofire11HTTPHeadersa">HTTPHeaders</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Typealiases.html#/s:9Alamofire10Parametersa">Parameters</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="../../Typealiases.html#/s:9Alamofire22RequestRetryCompletiona">RequestRetryCompletion</a>
</li>
</ul>
</li>
</ul>
</nav>
<article class="main-content">
<section class="section">
<div class="section-content">
<h1>DownloadOptions</h1>
<div class="declaration">
<div class="language">
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">struct</span> <span class="kt">DownloadOptions</span> <span class="p">:</span> <span class="kt">OptionSet</span></code></pre>
</div>
</div>
<p>A collection of options to be executed prior to moving a downloaded file from the temporary URL to the
destination URL.</p>
</div>
</section>
<section class="section">
<div class="section-content">
<div class="task-group">
<ul class="item-container">
<li class="item">
<div>
<code>
<a name="/s:9Alamofire15DownloadRequestC0B7OptionsV8rawValueSuvp"></a>
<a name="//apple_ref/swift/Property/rawValue" class="dashAnchor"></a>
<a class="token" href="#/s:9Alamofire15DownloadRequestC0B7OptionsV8rawValueSuvp">rawValue</a>
</code>
</div>
<div class="height-container">
<div class="pointer-container"></div>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Returns the raw bitmask value of the option and satisfies the <code>RawRepresentable</code> protocol.</p>
</div>
<div class="declaration">
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="k">let</span> <span class="nv">rawValue</span><span class="p">:</span> <span class="kt">UInt</span></code></pre>
</div>
</div>
</section>
</div>
</li>
<li class="item">
<div>
<code>
<a name="/s:9Alamofire15DownloadRequestC0B7OptionsV29createIntermediateDirectoriesAEvpZ"></a>
<a name="//apple_ref/swift/Variable/createIntermediateDirectories" class="dashAnchor"></a>
<a class="token" href="#/s:9Alamofire15DownloadRequestC0B7OptionsV29createIntermediateDirectoriesAEvpZ">createIntermediateDirectories</a>
</code>
</div>
<div class="height-container">
<div class="pointer-container"></div>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>A <code>DownloadOptions</code> flag that creates intermediate directories for the destination URL if specified.</p>
</div>
<div class="declaration">
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">static</span> <span class="k">let</span> <span class="nv">createIntermediateDirectories</span><span class="p">:</span> <span class="kt"><a href="../../Classes/DownloadRequest.html">DownloadRequest</a></span><span class="o">.</span><span class="kt">DownloadOptions</span></code></pre>
</div>
</div>
</section>
</div>
</li>
<li class="item">
<div>
<code>
<a name="/s:9Alamofire15DownloadRequestC0B7OptionsV18removePreviousFileAEvpZ"></a>
<a name="//apple_ref/swift/Variable/removePreviousFile" class="dashAnchor"></a>
<a class="token" href="#/s:9Alamofire15DownloadRequestC0B7OptionsV18removePreviousFileAEvpZ">removePreviousFile</a>
</code>
</div>
<div class="height-container">
<div class="pointer-container"></div>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>A <code>DownloadOptions</code> flag that removes a previous file from the destination URL if specified.</p>
</div>
<div class="declaration">
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="kd">static</span> <span class="k">let</span> <span class="nv">removePreviousFile</span><span class="p">:</span> <span class="kt"><a href="../../Classes/DownloadRequest.html">DownloadRequest</a></span><span class="o">.</span><span class="kt">DownloadOptions</span></code></pre>
</div>
</div>
</section>
</div>
</li>
<li class="item">
<div>
<code>
<a name="/s:9Alamofire15DownloadRequestC0B7OptionsV8rawValueAESu_tcfc"></a>
<a name="//apple_ref/swift/Method/init(rawValue:)" class="dashAnchor"></a>
<a class="token" href="#/s:9Alamofire15DownloadRequestC0B7OptionsV8rawValueAESu_tcfc">init(rawValue:)</a>
</code>
</div>
<div class="height-container">
<div class="pointer-container"></div>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Creates a <code>DownloadFileDestinationOptions</code> instance with the specified raw value.</p>
</div>
<div class="declaration">
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="kd">public</span> <span class="nf">init</span><span class="p">(</span><span class="nv">rawValue</span><span class="p">:</span> <span class="kt">UInt</span><span class="p">)</span></code></pre>
</div>
</div>
<div>
<h4>Parameters</h4>
<table class="graybox">
<tbody>
<tr>
<td>
<code>
<em>rawValue</em>
</code>
</td>
<td>
<div>
<p>The raw bitmask value for the option.</p>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<div>
<h4>Return Value</h4>
<p>A new log level instance.</p>
</div>
</section>
</div>
</li>
</ul>
</div>
</div>
</section>
</article>
</div>
<section class="footer">
<p>© 2019 <a class="link" href="http://alamofire.org/" target="_blank" rel="external">Alamofire Software Foundation</a>. All rights reserved. (Last updated: 2019-03-27)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.4</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</body>
</div>
</html>
| Drusy/auvergne-webcams-ios | Carthage/Checkouts/AlamofireObjectMapper/Carthage/Checkouts/Alamofire/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DownloadRequest/DownloadOptions.html | HTML | apache-2.0 | 26,376 |
<!DOCTYPE html>
<html lang="en">
<!--
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.
-->
<head>
<meta charset="utf-8" />
<title>ParseEvtx</title>
<link rel="stylesheet" href="/nifi-docs/css/component-usage.css" type="text/css" />
</head>
<body>
<!-- Processor Documentation ================================================== -->
<h2>Description:</h2>
<p>This processor is used to parse Windows event logs in the binary evtx format. The input flow files' content should be evtx files. The processor has 4 outputs:
<ul>
<li>The original unmodified FlowFile</li>
<li>The XML resulting from parsing at the configured granularity</li>
<li>Failed parsing with partial output</li>
<li>Malformed chunk in binary form</li>
</ul>
</p>
<h2>Output XML Example:</h2>
<p>
<pre>
<?xml version="1.0"?>
<Events>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="Service Control Manager" Guid="{555908d1-a6d7-4695-8e1e-26931d2012f4}" Ev
entSourceName="Service Control Manager"/>
<EventID Qualifiers="16384">7036</EventID>
<Version>0</Version>
<Level>4</Level>
<Task>0</Task>
<Opcode>0</Opcode>
<Keywords>0x8080000000000000</Keywords>
<TimeCreated SystemTime="2016-01-08 16:49:47.518"/>
<EventRecordID>780</EventRecordID>
<Correlation ActivityID="" RelatedActivityID=""/>
<Execution ProcessID="480" ThreadID="596"/>
<Channel>System</Channel>
<Computer>win7-pro-vm</Computer>
<Security UserID=""/>
</System>
<EventData>
<Data Name="param1">Workstation</Data>
<Data Name="param2">running</Data>
<Binary>TABhAG4AbQBhAG4AVwBvAHIAawBzAHQAYQB0AGkAbwBuAC8ANAAAAA==</Binary>
</EventData>
</Event>
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="Service Control Manager" Guid="{555908d1-a6d7-4695-8e1e-26931d2012f4}" EventSourceName="Service Control Manager"/>
<EventID Qualifiers="16384">7036</EventID>
<Version>0</Version>
<Level>4</Level>
<Task>0</Task>
<Opcode>0</Opcode>
<Keywords>0x8080000000000000</Keywords>
<TimeCreated SystemTime="2016-01-08 16:49:47.535"/>
<EventRecordID>781</EventRecordID>
<Correlation ActivityID="" RelatedActivityID=""/>
<Execution ProcessID="480" ThreadID="576"/>
<Channel>System</Channel>
<Computer>win7-pro-vm</Computer>
<Security UserID=""/>
</System>
<EventData>
<Data Name="param1">Cryptographic Services</Data>
<Data Name="param2">running</Data>
<Binary>QwByAHkAcAB0AFMAdgBjAC8ANAAAAA==</Binary>
</EventData>
</Event>
</Events>
</pre>
</p>
</body>
</html>
| tequalsme/nifi | nifi-nar-bundles/nifi-evtx-bundle/nifi-evtx-processors/src/main/resources/docs/org.apache.nifi.processors.evtx.ParseEvtx/additionalDetails.html | HTML | apache-2.0 | 4,401 |
<!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_controller">
<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.16.0.0 Root Admin API Reference
</span>
<p></p>
<h1>deleteAlerts</h1>
<p>Delete one or more alerts.</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;"><i>enddate</i></td><td style="width:500px;"><i>end date range to delete alerts (including) this date (use format "yyyy-MM-dd" or the new format "yyyy-MM-ddThh:mm:ss")</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>ids</i></td><td style="width:500px;"><i>the IDs of the alerts</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>startdate</i></td><td style="width:500px;"><i>start date range to delete alerts (including) this date (use format "yyyy-MM-dd" or the new format "yyyy-MM-ddThh:mm:ss")</i></td><td style="width:180px;"><i>false</i></td>
</tr>
<tr>
<td style="width:200px;"><i>type</i></td><td style="width:500px;"><i>delete by alert type</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>displaytext</strong></td><td style="width:500px;">any text associated with the success or failure</td>
</tr>
<tr>
<td style="width:200px;"><strong>success</strong></td><td style="width:500px;">true if operation is executed successfully</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_maincontroller">
<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.16/apis/deleteAlerts.html | HTML | apache-2.0 | 6,119 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="ko">
<head>
<!-- Generated by javadoc (version 1.7.0_21) on Wed Feb 26 23:03:20 KST 2014 -->
<title>Uses of Class etri.sdn.controller.module.statemanager.OxmVisualizer</title>
<meta name="date" content="2014-02-26">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class etri.sdn.controller.module.statemanager.OxmVisualizer";
}
//-->
</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="../../../../../../etri/sdn/controller/module/statemanager/OxmVisualizer.html" title="class in etri.sdn.controller.module.statemanager">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?etri/sdn/controller/module/statemanager/class-use/OxmVisualizer.html" target="_top">Frames</a></li>
<li><a href="OxmVisualizer.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 etri.sdn.controller.module.statemanager.OxmVisualizer" class="title">Uses of Class<br>etri.sdn.controller.module.statemanager.OxmVisualizer</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="../../../../../../etri/sdn/controller/module/statemanager/OxmVisualizer.html" title="class in etri.sdn.controller.module.statemanager">OxmVisualizer</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="#etri.sdn.controller.module.statemanager">etri.sdn.controller.module.statemanager</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="etri.sdn.controller.module.statemanager">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../etri/sdn/controller/module/statemanager/OxmVisualizer.html" title="class in etri.sdn.controller.module.statemanager">OxmVisualizer</a> in <a href="../../../../../../etri/sdn/controller/module/statemanager/package-summary.html">etri.sdn.controller.module.statemanager</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation">
<caption><span>Subclasses of <a href="../../../../../../etri/sdn/controller/module/statemanager/OxmVisualizer.html" title="class in etri.sdn.controller.module.statemanager">OxmVisualizer</a> in <a href="../../../../../../etri/sdn/controller/module/statemanager/package-summary.html">etri.sdn.controller.module.statemanager</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>(package private) class </code></td>
<td class="colLast"><code><strong><a href="../../../../../../etri/sdn/controller/module/statemanager/ByteVisualizer.html" title="class in etri.sdn.controller.module.statemanager">ByteVisualizer</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>(package private) class </code></td>
<td class="colLast"><code><strong><a href="../../../../../../etri/sdn/controller/module/statemanager/DataLayerTypeVisualizer.html" title="class in etri.sdn.controller.module.statemanager">DataLayerTypeVisualizer</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>(package private) class </code></td>
<td class="colLast"><code><strong><a href="../../../../../../etri/sdn/controller/module/statemanager/IntVisualizer.html" title="class in etri.sdn.controller.module.statemanager">IntVisualizer</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>(package private) class </code></td>
<td class="colLast"><code><strong><a href="../../../../../../etri/sdn/controller/module/statemanager/IPAddressVisualizer.html" title="class in etri.sdn.controller.module.statemanager">IPAddressVisualizer</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>(package private) class </code></td>
<td class="colLast"><code><strong><a href="../../../../../../etri/sdn/controller/module/statemanager/MacVisualizer.html" title="class in etri.sdn.controller.module.statemanager">MacVisualizer</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>(package private) class </code></td>
<td class="colLast"><code><strong><a href="../../../../../../etri/sdn/controller/module/statemanager/ShortVisualizer.html" title="class in etri.sdn.controller.module.statemanager">ShortVisualizer</a></strong></code> </td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation">
<caption><span>Fields in <a href="../../../../../../etri/sdn/controller/module/statemanager/package-summary.html">etri.sdn.controller.module.statemanager</a> with type parameters of type <a href="../../../../../../etri/sdn/controller/module/statemanager/OxmVisualizer.html" title="class in etri.sdn.controller.module.statemanager">OxmVisualizer</a></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>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>(package private) java.util.Map<java.lang.Byte,<a href="../../../../../../etri/sdn/controller/module/statemanager/OxmVisualizer.html" title="class in etri.sdn.controller.module.statemanager">OxmVisualizer</a>></code></td>
<td class="colLast"><span class="strong">OFOxmSerializer.</span><code><strong><a href="../../../../../../etri/sdn/controller/module/statemanager/OFOxmSerializer.html#vids">vids</a></strong></code> </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="../../../../../../etri/sdn/controller/module/statemanager/OxmVisualizer.html" title="class in etri.sdn.controller.module.statemanager">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?etri/sdn/controller/module/statemanager/class-use/OxmVisualizer.html" target="_top">Frames</a></li>
<li><a href="OxmVisualizer.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>
| uni2u/iNaaS | Torpedo/doc/etri/sdn/controller/module/statemanager/class-use/OxmVisualizer.html | HTML | apache-2.0 | 9,252 |
<!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_27) on Mon Jul 08 20:19:11 CEST 2013 -->
<TITLE>
MacroInstance.Element (Apache Ant API)
</TITLE>
<META NAME="date" CONTENT="2013-07-08">
<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="MacroInstance.Element (Apache Ant 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="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">
<A HREF="../../../../../org/apache/tools/ant/taskdefs/MacroInstance.html" title="class in org.apache.tools.ant.taskdefs"><B>PREV CLASS</B></A>
<A HREF="../../../../../org/apache/tools/ant/taskdefs/MakeUrl.html" title="class in org.apache.tools.ant.taskdefs"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/tools/ant/taskdefs/MacroInstance.Element.html" target="_top"><B>FRAMES</B></A>
<A HREF="MacroInstance.Element.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: NESTED | FIELD | <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.tools.ant.taskdefs</FONT>
<BR>
Class MacroInstance.Element</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><B>org.apache.tools.ant.taskdefs.MacroInstance.Element</B>
</PRE>
<DL>
<DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../../../org/apache/tools/ant/TaskContainer.html" title="interface in org.apache.tools.ant">TaskContainer</A></DD>
</DL>
<DL>
<DT><B>Enclosing class:</B><DD><A HREF="../../../../../org/apache/tools/ant/taskdefs/MacroInstance.html" title="class in org.apache.tools.ant.taskdefs">MacroInstance</A></DD>
</DL>
<HR>
<DL>
<DT><PRE>public static class <B>MacroInstance.Element</B><DT>extends java.lang.Object<DT>implements <A HREF="../../../../../org/apache/tools/ant/TaskContainer.html" title="interface in org.apache.tools.ant">TaskContainer</A></DL>
</PRE>
<P>
Embedded element in macro instance
<P>
<P>
<HR>
<P>
<!-- ======== 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/tools/ant/taskdefs/MacroInstance.Element.html#MacroInstance.Element()">MacroInstance.Element</A></B>()</CODE>
<BR>
</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> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/taskdefs/MacroInstance.Element.html#addTask(org.apache.tools.ant.Task)">addTask</A></B>(<A HREF="../../../../../org/apache/tools/ant/Task.html" title="class in org.apache.tools.ant">Task</A> nestedTask)</CODE>
<BR>
Add an unknown element (to be snipped into the macroDef instance)</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.util.List<<A HREF="../../../../../org/apache/tools/ant/Task.html" title="class in org.apache.tools.ant">Task</A>></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/taskdefs/MacroInstance.Element.html#getUnknownElements()">getUnknownElements</A></B>()</CODE>
<BR>
</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, toString, 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="MacroInstance.Element()"><!-- --></A><H3>
MacroInstance.Element</H3>
<PRE>
public <B>MacroInstance.Element</B>()</PRE>
<DL>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Method Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="addTask(org.apache.tools.ant.Task)"><!-- --></A><H3>
addTask</H3>
<PRE>
public void <B>addTask</B>(<A HREF="../../../../../org/apache/tools/ant/Task.html" title="class in org.apache.tools.ant">Task</A> nestedTask)</PRE>
<DL>
<DD>Add an unknown element (to be snipped into the macroDef instance)
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../org/apache/tools/ant/TaskContainer.html#addTask(org.apache.tools.ant.Task)">addTask</A></CODE> in interface <CODE><A HREF="../../../../../org/apache/tools/ant/TaskContainer.html" title="interface in org.apache.tools.ant">TaskContainer</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>nestedTask</CODE> - an unknown element</DL>
</DD>
</DL>
<HR>
<A NAME="getUnknownElements()"><!-- --></A><H3>
getUnknownElements</H3>
<PRE>
public java.util.List<<A HREF="../../../../../org/apache/tools/ant/Task.html" title="class in org.apache.tools.ant">Task</A>> <B>getUnknownElements</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>the list of unknown elements</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="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">
<A HREF="../../../../../org/apache/tools/ant/taskdefs/MacroInstance.html" title="class in org.apache.tools.ant.taskdefs"><B>PREV CLASS</B></A>
<A HREF="../../../../../org/apache/tools/ant/taskdefs/MakeUrl.html" title="class in org.apache.tools.ant.taskdefs"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/tools/ant/taskdefs/MacroInstance.Element.html" target="_top"><B>FRAMES</B></A>
<A HREF="MacroInstance.Element.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: NESTED | FIELD | <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>
</BODY>
</HTML>
| jawi/ApacheAnt.docset | Contents/Resources/Documents/api/org/apache/tools/ant/taskdefs/MacroInstance.Element.html | HTML | apache-2.0 | 11,957 |
<html>
<body>
Reports redundant <code>String</code> constructors and calls to methods like <code>toString()</code> or <code>substring()</code>
when they can be replaced with a simplified expressions. For example, calls to these methods can be safely removed in cases
like <code>"string".substring(0)</code>, <code>"string".toString()</code> or <code>new StringBuilder().toString().substring(1,3)</code>.
<p>Example:</p>
<pre>
System.out.println(new String("message"));
</pre>
<p>After the quick-fixes is applied the result looks like:</p>
<pre>
System.out.println("message");
</pre>
<p>
Note that the quick-fix removes the redundant constructor and thus may affect <code>String</code> referential equality.
If you need to preserve it (which is considered a bad practice), suppress the warning or configure settings to ignore
redundant <code>String</code> constructors.
</p>
<!-- tooltip end -->
<p><small>New in 2018.1</small></p>
</body>
</html> | ingokegel/intellij-community | plugins/InspectionGadgets/src/inspectionDescriptions/StringOperationCanBeSimplified.html | HTML | apache-2.0 | 956 |
<!--
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.
-->
<!-- $Id$ -->
<HTML>
<TITLE>org.apache.fop.image2.impl Package</TITLE>
<BODY>
<P>
Contains implementations of image loaders and converters.
</P>
</BODY>
</HTML> | apache/xml-graphics-commons | src/main/java/org/apache/xmlgraphics/image/loader/impl/package.html | HTML | apache-2.0 | 951 |
<script src="{{ site.baseurl }}js/app.js"></script>
| ivankelly/bookkeeper | site/_includes/javascript.html | HTML | apache-2.0 | 52 |
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>The source code</title>
<link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../resources/prettify/prettify.js"></script>
<style type="text/css">
.highlight { display: block; background-color: #ddd; }
</style>
<script type="text/javascript">
function highlight() {
document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
}
</script>
</head>
<body onload="prettyPrint(); highlight();">
<pre class="prettyprint lang-js"><span id='Ext-picker-Color'>/**
</span> * Color picker provides a simple color palette for choosing colors. The picker can be rendered to any container. The
* available default to a standard 40-color palette; this can be customized with the {@link #colors} config.
*
* Typically you will need to implement a handler function to be notified when the user chooses a color from the picker;
* you can register the handler using the {@link #event-select} event, or by implementing the {@link #handler} method.
*
* @example
* Ext.create('Ext.picker.Color', {
* value: '993300', // initial selected color
* renderTo: Ext.getBody(),
* listeners: {
* select: function(picker, selColor) {
* alert(selColor);
* }
* }
* });
*/
Ext.define('Ext.picker.Color', {
extend: 'Ext.Component',
requires: 'Ext.XTemplate',
alias: 'widget.colorpicker',
alternateClassName: 'Ext.ColorPalette',
<span id='Ext-picker-Color-cfg-componentCls'> /**
</span> * @cfg {String} [componentCls='x-color-picker']
* The CSS class to apply to the containing element.
*/
componentCls : Ext.baseCSSPrefix + 'color-picker',
<span id='Ext-picker-Color-cfg-selectedCls'> /**
</span> * @cfg {String} [selectedCls='x-color-picker-selected']
* The CSS class to apply to the selected element
*/
selectedCls: Ext.baseCSSPrefix + 'color-picker-selected',
<span id='Ext-picker-Color-cfg-itemCls'> /**
</span> * @cfg {String} itemCls
* The CSS class to apply to the color picker's items
*/
itemCls: Ext.baseCSSPrefix + 'color-picker-item',
<span id='Ext-picker-Color-cfg-value'> /**
</span> * @cfg {String} value
* The initial color to highlight (should be a valid 6-digit color hex code without the # symbol). Note that the hex
* codes are case-sensitive.
*/
value : null,
<span id='Ext-picker-Color-cfg-clickEvent'> /**
</span> * @cfg {String} clickEvent
* The DOM event that will cause a color to be selected. This can be any valid event name (dblclick, contextmenu).
*/
clickEvent :'click',
<span id='Ext-picker-Color-cfg-allowReselect'> /**
</span> * @cfg {Boolean} allowReselect
* If set to true then reselecting a color that is already selected fires the {@link #event-select} event
*/
allowReselect : false,
<span id='Ext-picker-Color-property-colors'> /**
</span> * @property {String[]} colors
* An array of 6-digit color hex code strings (without the # symbol). This array can contain any number of colors,
* and each hex code should be unique. The width of the picker is controlled via CSS by adjusting the width property
* of the 'x-color-picker' class (or assigning a custom class), so you can balance the number of colors with the
* width setting until the box is symmetrical.
*
* You can override individual colors if needed:
*
* var cp = new Ext.picker.Color();
* cp.colors[0] = 'FF0000'; // change the first box to red
*
* Or you can provide a custom array of your own for complete control:
*
* var cp = new Ext.picker.Color();
* cp.colors = ['000000', '993300', '333300'];
*/
colors : [
'000000', '993300', '333300', '003300', '003366', '000080', '333399', '333333',
'800000', 'FF6600', '808000', '008000', '008080', '0000FF', '666699', '808080',
'FF0000', 'FF9900', '99CC00', '339966', '33CCCC', '3366FF', '800080', '969696',
'FF00FF', 'FFCC00', 'FFFF00', '00FF00', '00FFFF', '00CCFF', '993366', 'C0C0C0',
'FF99CC', 'FFCC99', 'FFFF99', 'CCFFCC', 'CCFFFF', '99CCFF', 'CC99FF', 'FFFFFF'
],
<span id='Ext-picker-Color-cfg-handler'> /**
</span> * @cfg {Function} handler
* A function that will handle the select event of this picker. The handler is passed the following parameters:
*
* - `picker` : ColorPicker
*
* The {@link Ext.picker.Color picker}.
*
* - `color` : String
*
* The 6-digit color hex code (without the # symbol).
*/
<span id='Ext-picker-Color-cfg-scope'> /**
</span> * @cfg {Object} scope
* The scope (`this` reference) in which the `{@link #handler}` function will be called.
*
* Defaults to this Color picker instance.
*/
colorRe: /(?:^|\s)color-(.{6})(?:\s|$)/,
<span id='Ext-picker-Color-cfg-renderTpl'> renderTpl: [
</span> '<tpl for="colors">',
'<a href="#" class="color-{.} {parent.itemCls}" hidefocus="on">',
'<span class="{parent.itemCls}-inner" style="background:#{.}">&#160;</span>',
'</a>',
'</tpl>'
],
<span id='Ext-picker-Color-method-initComponent'> // @private
</span> initComponent : function(){
var me = this;
me.callParent(arguments);
me.addEvents(
<span id='Ext-picker-Color-event-select'> /**
</span> * @event select
* Fires when a color is selected
* @param {Ext.picker.Color} this
* @param {String} color The 6-digit color hex code (without the # symbol)
*/
'select'
);
if (me.handler) {
me.on('select', me.handler, me.scope, true);
}
},
<span id='Ext-picker-Color-method-initRenderData'> // @private
</span> initRenderData : function(){
var me = this;
return Ext.apply(me.callParent(), {
itemCls: me.itemCls,
colors: me.colors
});
},
<span id='Ext-picker-Color-method-onRender'> onRender : function(){
</span> var me = this,
clickEvent = me.clickEvent;
me.callParent(arguments);
me.mon(me.el, clickEvent, me.handleClick, me, {delegate: 'a'});
// always stop following the anchors
if(clickEvent != 'click'){
me.mon(me.el, 'click', Ext.emptyFn, me, {delegate: 'a', stopEvent: true});
}
},
<span id='Ext-picker-Color-method-afterRender'> // @private
</span> afterRender : function(){
var me = this,
value;
me.callParent(arguments);
if (me.value) {
value = me.value;
me.value = null;
me.select(value, true);
}
},
<span id='Ext-picker-Color-method-handleClick'> // @private
</span> handleClick : function(event, target){
var me = this,
color;
event.stopEvent();
if (!me.disabled) {
color = target.className.match(me.colorRe)[1];
me.select(color.toUpperCase());
}
},
<span id='Ext-picker-Color-method-select'> /**
</span> * Selects the specified color in the picker (fires the {@link #event-select} event)
* @param {String} color A valid 6-digit color hex code (# will be stripped if included)
* @param {Boolean} [suppressEvent=false] True to stop the select event from firing.
*/
select : function(color, suppressEvent){
var me = this,
selectedCls = me.selectedCls,
value = me.value,
el;
color = color.replace('#', '');
if (!me.rendered) {
me.value = color;
return;
}
if (color != value || me.allowReselect) {
el = me.el;
if (me.value) {
el.down('a.color-' + value).removeCls(selectedCls);
}
el.down('a.color-' + color).addCls(selectedCls);
me.value = color;
if (suppressEvent !== true) {
me.fireEvent('select', me, color);
}
}
},
<span id='Ext-picker-Color-method-getValue'> /**
</span> * Get the currently selected color value.
* @return {String} value The selected value. Null if nothing is selected.
*/
getValue: function(){
return this.value || null;
}
});
</pre>
</body>
</html>
| cassioozarias/zfextjs | public/extjs/docs/source/Color2.html | HTML | bsd-3-clause | 8,767 |
<!DOCTYPE html>
<html lang="en">
<head>
<title>Protocols Reference</title>
<link rel="stylesheet" type="text/css" href="css/jazzy.css" />
<link rel="stylesheet" type="text/css" href="css/highlight.css" />
<meta charset="utf-8">
<script src="js/jquery.min.js" defer></script>
<script src="js/jazzy.js" defer></script>
<script src="js/lunr.min.js" defer></script>
<script src="js/typeahead.jquery.js" defer></script>
<script src="js/jazzy.search.js" defer></script>
</head>
<body>
<a name="//apple_ref/swift/Section/Protocols" class="dashAnchor"></a>
<a title="Protocols Reference"></a>
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="index.html">
FolioReaderKit Docs
</a>
</p>
<p class="header-col--secondary">
<form role="search" action="search.json">
<input type="text" placeholder="Search documentation" data-typeahead>
</form>
</p>
<p class="header-col header-col--secondary">
<a class="header-link" href="https://github.com/FolioReader/FolioReaderKit">
<img class="header-icon" src="img/gh.png"/>
View on GitHub
</a>
</p>
<p class="header-col header-col--secondary">
<a class="header-link" href="dash-feed://https%3A%2F%2FfolioReader%2Egithub%2Eio%2FFolioReaderKit%2Fdocsets%2FFolioReaderKit%2Exml">
<img class="header-icon" src="img/dash.png"/>
Install in Dash
</a>
</p>
</header>
<p class="breadcrumbs">
<a class="breadcrumb" href="index.html">FolioReaderKit Reference</a>
<img class="carat" src="img/carat.png" />
Protocols Reference
</p>
<div class="content-wrapper">
<nav class="navigation">
<ul class="nav-groups">
<li class="nav-group-name">
<a class="nav-group-name-link" href="Classes.html">Classes</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a class="nav-group-task-link" href="Classes/FRBook.html">FRBook</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="Classes/FRResource.html">FRResource</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="Classes.html#/c:@M@FolioReaderKit@objc(cs)FRResources">FRResources</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="Classes/FRTocReference.html">FRTocReference</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="Classes/FolioReader.html">FolioReader</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="Classes/FolioReaderAudioPlayer.html">FolioReaderAudioPlayer</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="Classes/FolioReaderCenter.html">FolioReaderCenter</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="Classes/FolioReaderConfig.html">FolioReaderConfig</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="Classes/FolioReaderContainer.html">FolioReaderContainer</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="Classes/FolioReaderPage.html">FolioReaderPage</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="Classes/FolioReaderWebView.html">FolioReaderWebView</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="Classes/Highlight.html">Highlight</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="Classes/Highlight.html#/s:14FolioReaderKit9HighlightC08MatchingD0V">– MatchingHighlight</a>
</li>
</ul>
</li>
<li class="nav-group-name">
<a class="nav-group-name-link" href="Enums.html">Enumerations</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a class="nav-group-task-link" href="Enums/FolioReaderError.html">FolioReaderError</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="Enums/FolioReaderFont.html">FolioReaderFont</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="Enums/FolioReaderFontSize.html">FolioReaderFontSize</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="Enums/FolioReaderScrollDirection.html">FolioReaderScrollDirection</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="Enums/HighlightStyle.html">HighlightStyle</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="Enums/MediaOverlayStyle.html">MediaOverlayStyle</a>
</li>
</ul>
</li>
<li class="nav-group-name">
<a class="nav-group-name-link" href="Extensions.html">Extensions</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a class="nav-group-task-link" href="Extensions/UIAlertController.html">UIAlertController</a>
</li>
</ul>
</li>
<li class="nav-group-name">
<a class="nav-group-name-link" href="Protocols.html">Protocols</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a class="nav-group-task-link" href="Protocols/FolioReaderCenterDelegate.html">FolioReaderCenterDelegate</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="Protocols/FolioReaderDelegate.html">FolioReaderDelegate</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="Protocols/FolioReaderPageDelegate.html">FolioReaderPageDelegate</a>
</li>
</ul>
</li>
<li class="nav-group-name">
<a class="nav-group-name-link" href="Structs.html">Structures</a>
<ul class="nav-group-tasks">
<li class="nav-group-task">
<a class="nav-group-task-link" href="Structs/ClassBasedOnClickListener.html">ClassBasedOnClickListener</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="Structs/MediaType.html">MediaType</a>
</li>
<li class="nav-group-task">
<a class="nav-group-task-link" href="Structs/QuoteImage.html">QuoteImage</a>
</li>
</ul>
</li>
</ul>
</nav>
<article class="main-content">
<section class="section">
<div class="section-content">
<h1>Protocols</h1>
<p>The following protocols are available globally.</p>
</div>
</section>
<section class="section">
<div class="section-content">
<div class="task-group">
<ul class="item-container">
<li class="item">
<div>
<code>
<a name="/c:@M@FolioReaderKit@objc(pl)FolioReaderCenterDelegate"></a>
<a name="//apple_ref/swift/Protocol/FolioReaderCenterDelegate" class="dashAnchor"></a>
<a class="token" href="#/c:@M@FolioReaderKit@objc(pl)FolioReaderCenterDelegate">FolioReaderCenterDelegate</a>
</code>
</div>
<div class="height-container">
<div class="pointer-container"></div>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Protocol which is used from <code><a href="Classes/FolioReaderCenter.html">FolioReaderCenter</a></code>s.</p>
<a href="Protocols/FolioReaderCenterDelegate.html" class="slightly-smaller">See more</a>
</div>
<div class="declaration">
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="kd">@objc</span>
<span class="kd">public</span> <span class="kd">protocol</span> <span class="kt">FolioReaderCenterDelegate</span> <span class="p">:</span> <span class="kt">AnyObject</span></code></pre>
</div>
</div>
</section>
</div>
</li>
</ul>
</div>
<div class="task-group">
<div class="task-name-container">
<a name="/Internal%20constants"></a>
<a name="//apple_ref/swift/Section/Internal constants" class="dashAnchor"></a>
<a href="#/Internal%20constants">
<h3 class="section-name">Internal constants</h3>
</a>
</div>
<ul class="item-container">
<li class="item">
<div>
<code>
<a name="/c:@M@FolioReaderKit@objc(pl)FolioReaderDelegate"></a>
<a name="//apple_ref/swift/Protocol/FolioReaderDelegate" class="dashAnchor"></a>
<a class="token" href="#/c:@M@FolioReaderKit@objc(pl)FolioReaderDelegate">FolioReaderDelegate</a>
</code>
</div>
<div class="height-container">
<div class="pointer-container"></div>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>FolioReader actions delegate</p>
<a href="Protocols/FolioReaderDelegate.html" class="slightly-smaller">See more</a>
</div>
<div class="declaration">
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="kd">@objc</span>
<span class="kd">public</span> <span class="kd">protocol</span> <span class="kt">FolioReaderDelegate</span> <span class="p">:</span> <span class="kt">AnyObject</span></code></pre>
</div>
</div>
</section>
</div>
</li>
</ul>
</div>
<div class="task-group">
<ul class="item-container">
<li class="item">
<div>
<code>
<a name="/c:@M@FolioReaderKit@objc(pl)FolioReaderPageDelegate"></a>
<a name="//apple_ref/swift/Protocol/FolioReaderPageDelegate" class="dashAnchor"></a>
<a class="token" href="#/c:@M@FolioReaderKit@objc(pl)FolioReaderPageDelegate">FolioReaderPageDelegate</a>
</code>
</div>
<div class="height-container">
<div class="pointer-container"></div>
<section class="section">
<div class="pointer"></div>
<div class="abstract">
<p>Protocol which is used from <code><a href="Classes/FolioReaderPage.html">FolioReaderPage</a></code>s.</p>
<a href="Protocols/FolioReaderPageDelegate.html" class="slightly-smaller">See more</a>
</div>
<div class="declaration">
<h4>Declaration</h4>
<div class="language">
<p class="aside-title">Swift</p>
<pre class="highlight swift"><code><span class="kd">@objc</span>
<span class="kd">public</span> <span class="kd">protocol</span> <span class="kt">FolioReaderPageDelegate</span> <span class="p">:</span> <span class="kt">AnyObject</span></code></pre>
</div>
</div>
</section>
</div>
</li>
</ul>
</div>
</div>
</section>
</article>
</div>
<section class="footer">
<p>© 2019 <a class="link" href="https://twitter.com/hebertialmeida" target="_blank" rel="external">Heberti Almeida</a>. All rights reserved. (Last updated: 2019-02-21)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.9.5</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</body>
</div>
</html>
| FolioReader/FolioReaderKit | docs/docsets/FolioReaderKit.docset/Contents/Resources/Documents/Protocols.html | HTML | bsd-3-clause | 13,582 |
{% extends "mod_backend/base_mod_backend.html" %}
<!--
@copyright Copyright (c) 2014 Submit Consulting
@author Angel Sullon (@asullom)
@package sad
Descripcion: Create/Update group
-->
{% load i18n crispy_forms_tags %}
{% load l10n %}
{% block breadcrumbs %}
<a href="{% url 'accounts:index' %}">{% trans 'Home' %}</a>
›
<a href="/sad/group/index/">{{opts.verbose_name_plural|capfirst}}</a>
› {{ title }}
{% endblock breadcrumbs %}
{% block content_title %}
{{ opts.verbose_name|capfirst }} | <small>{{ title }}</small>
{% endblock content_title %}
{% block content %}
{% crispy form %}
{% endblock %}
{% block extrajs %}
{{ block.super }}
<script type="text/javascript">
</script>
{% endblock extrajs %}
| tiposaurio/venton | apps/sad/templates/sad/group_form.html | HTML | bsd-3-clause | 739 |
<?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 Mini Test Suite"/>
<title>
SVG 1.1 2nd Edition Test (<object>): filters-overview-01-b.svg
</title>
<link href="harness_mini.css" rel="stylesheet" type="text/css" />
<link rel="prev" href="filters-offset-01-b.html" />
<link rel="index" href="index.html" />
<link rel="next" href="filters-specular-01-f.html" />
<script src="../resources/testharnessreport.js"></script>
</head>
<body class="bodytext">
<div class="linkbar">
<p>
<a href="filters-offset-01-b.html" rel="prev">filters-offset-01-b ←</a>
<a href="index.html" rel="index">index</a>
<a href="filters-specular-01-f.html" rel="next">→ filters-specular-01-f</a>
</p>
</div>
<table border="0" align="center" cellspacing="0" cellpadding="10">
<tr>
<td align="center" colspan="3">
<table border="0" cellpadding="8">
<tr class="navbar">
<td align="center">
SVG Image
</td>
<td align="center">
PNG Image
</td>
</tr>
<tr>
<td align="right">
<object data="../../svg/filters-overview-01-b.svg" width="480" height="360" type="image/svg+xml"><p style="font-size:300%;color:red">FAIL</p></object>
</td>
<td align="left">
<img alt="raster image of filters-overview-01-b.svg" src="../../png/filters-overview-01-b.png" width="480" height="360"/>
</td>
</tr>
</table>
</td>
</tr>
</table>
<div>
<h4 id="operatorscript" onclick="var t = document.getElementById('operatortext'); t.style.display=(t.style.display=='none' ? 'inline' : 'none');">
<em>Operator script (click here to toggle)</em>
</h4>
<div id="operatortext" style="display:none">
<p>
Run the test. No interaction required.
</p>
</div>
</div>
<h4 id="passcriteria">
Pass Criteria
</h4>
<div>
<p>
To pass this test, the UA must render all 6 cases (SourceGraphic, SourceAlpha, BackgroundImage, BackgroundAlpha, FillPaint, StrokePaint) correctly.
</p><ol>
<li>The result for in="SourceGraphic" is a non blurred vertical rectangle (green with dashed stroke) overlayed with three blurred circles (red/green/blue with dashed stroke).</li>
<li>The result for in="SourceAlpha" is a non blurred vertical rectangle (green with dashed stroke) overlayed with three blurred circles (dark gray with dashed stroke).</li>
<li>The result for in="BackgroundImage" is a blurred vertical rectangle (green with dashed stroke).</li>
<li>The result for in="BackgroundAlpha" is blurred vertical rectangle (dark gray with dashed stroke).</li>
<li>The results for in="FillPaint" and in="StrokePaint" are the same. They consists of a non blurred vertical rectangle (green with dashed stroke) overlayed with a blue rectangle with blurred edges.</li>
<li>The size of the blue rectangles are bigger than the blurred circles.</li>
</ol>
</div>
<br />
<div class="linkbar">
<p>
<a href="filters-offset-01-b.html" rel="prev">filters-offset-01-b ←</a>
<a href="index.html" rel="index">index</a>
<a href="filters-specular-01-f.html" rel="next">→ filters-specular-01-f</a>
</p>
</div>
</body>
</html>
| frivoal/presto-testo | SVG/Testsuites/W3C-1_1F2/harness/htmlObjectMiniApproved/filters-overview-01-b.html | HTML | bsd-3-clause | 3,776 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html debug="true">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>FirebugLite 1.4 Event Testing</title>
<script type="text/javascript" src="../content/firebug-lite-dev.js"></script>
<script type="text/javascript">
// http://therealcrisp.xs4all.nl/upload/addEvent_dean.html
// written by Dean Edwards, 2005
// with input from Tino Zijdel - [email protected]
// http://dean.edwards.name/weblog/2005/10/add-event/
function addEvent(element, type, handler)
{
if (element.addEventListener)
element.addEventListener(type, handler, false);
else
{
if (!handler.$$guid) handler.$$guid = addEvent.guid++;
if (!element.events) element.events = {};
var handlers = element.events[type];
if (!handlers)
{
handlers = element.events[type] = {};
if (element['on' + type]) handlers[0] = element['on' + type];
element['on' + type] = handleEvent;
}
handlers[handler.$$guid] = handler;
}
}
addEvent.guid = 1;
function removeEvent(element, type, handler)
{
if (element.removeEventListener)
element.removeEventListener(type, handler, false);
else if (element.events && element.events[type] && handler.$$guid)
delete element.events[type][handler.$$guid];
}
function handleEvent(event)
{
event = event || fixEvent(window.event);
var returnValue = true;
var handlers = this.events[event.type];
for (var i in handlers)
{
if (!Object.prototype[i])
{
this.$$handler = handlers[i];
if (this.$$handler(event) === false) returnValue = false;
}
}
if (this.$$handler) this.$$handler = null;
return returnValue;
}
function fixEvent(event)
{
event.preventDefault = fixEvent.preventDefault;
event.stopPropagation = fixEvent.stopPropagation;
return event;
}
fixEvent.preventDefault = function()
{
this.returnValue = false;
}
fixEvent.stopPropagation = function()
{
this.cancelBubble = true;
}
// This little snippet fixes the problem that the onload attribute on the body-element will overwrite
// previous attached events on the window object for the onload event
if (!window.addEventListener)
{
document.onreadystatechange = function()
{
if (window.onload && window.onload != handleEvent)
{
addEvent(window, 'load', window.onload);
window.onload = handleEvent;
}
}
}
</script>
<style type="text/css">
body {
margin: 0;
font-family: Lucida Grande, sans-serif;
}
</style>
</head>
<body>
<div id="main">
<h1>FirebugLite 1.4 Event Testing</h1>
</div>
</body>
</html> | mdks/Firebug-Mod-Element-Mover | sandbox/sandbox/event/test.html | HTML | bsd-3-clause | 2,631 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>Forms :: submit input : float</title>
<style type="text/css">
form * {
font-family: Ahem;
font-size: 1em;
line-height: 1em;
}
fieldset, div {
background-color: red;
padding: 0;
margin: 1em;
border: none;
width: 2em;
height: 1em;
}
input, span {
font-size: 1em;
line-height: 1em;
color: lime;
padding: 0;
margin: 0;
border: none;
width: 1em;
height: 1em;
float: left;
}
</style>
</head>
<body>
<form action="">
<fieldset>
<input type="submit" value="x">
<input type="submit" value="x">
</fieldset>
<div>
<input type="submit" value="x">
<input type="submit" value="x">
</div>
<div>
<span>x</span>
<span>x</span>
</div>
</form>
<h4>Ahem font required for this test</h4>
<p>you should see three identical, green rectangles, and no red</p>
</body>
</html> | frivoal/presto-testo | core/standards/forms/input-submit-float.html | HTML | bsd-3-clause | 862 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="robots" content="index, follow, all" />
<title>Thelia\Controller\Admin\AttributeController | </title>
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
</head>
<body id="class">
<div class="header">
<ul>
<li><a href="../../../classes.html">Classes</a></li>
<li><a href="../../../namespaces.html">Namespaces</a></li>
<li><a href="../../../interfaces.html">Interfaces</a></li>
<li><a href="../../../traits.html">Traits</a></li>
<li><a href="../../../doc-index.html">Index</a></li>
</ul>
<div id="title"></div>
<div class="type">Class</div>
<h1><a href="../../../Thelia/Controller/Admin.html">Thelia\Controller\Admin</a>\AttributeController</h1>
</div>
<div class="content">
<p> class
<strong>AttributeController</strong> extends <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a></p>
<div class="description">
<p>Manages attributes</p>
<p>
</p>
</div>
<h2>Constants</h2>
<table>
<tr>
<td>TEMPLATE_404</td>
<td class="last">
<p><em>
</em></p>
<p>
</p>
</td>
</tr>
</table>
<h2>Methods</h2>
<table>
<tr>
<td class="type">
</td>
<td class="last">
<a href="#method___construct">__construct</a>()
<p>
</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
<abbr title="Thelia\Controller\Admin\Symfony\Component\HttpFoundation\Response">Response</abbr>
</td>
<td class="last">
<a href="#method_defaultAction">defaultAction</a>()
<p>The default action is displaying the list.</p>
</td>
<td><small>from <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html#method_defaultAction"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a></small></td>
</tr>
<tr>
<td class="type">
<abbr title="Thelia\Controller\Admin\Symfony\Component\HttpFoundation\Response">Response</abbr>
</td>
<td class="last">
<a href="#method_createAction">createAction</a>()
<p>Create a new object</p>
</td>
<td><small>from <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html#method_createAction"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a></small></td>
</tr>
<tr>
<td class="type">
<abbr title="Thelia\Controller\Admin\Symfony\Component\HttpFoundation\Response">Response</abbr>
</td>
<td class="last">
<a href="#method_updateAction">updateAction</a>()
<p>Load a object for modification, and display the edit template.</p>
</td>
<td><small>from <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html#method_updateAction"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a></small></td>
</tr>
<tr>
<td class="type">
<abbr title="Thelia\Controller\Admin\Symfony\Component\HttpFoundation\Response">Response</abbr>
</td>
<td class="last">
<a href="#method_processUpdateAction">processUpdateAction</a>()
<p>Save changes on a modified object, and either go back to the object list, or stay on the edition page.</p>
</td>
<td><small>from <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html#method_processUpdateAction"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a></small></td>
</tr>
<tr>
<td class="type">
</td>
<td class="last">
<a href="#method_updatePositionAction">updatePositionAction</a>()
<p>Update object position (only for objects whichsupport that)</p>
</td>
<td><small>from <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html#method_updatePositionAction"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a></small></td>
</tr>
<tr>
<td class="type">
</td>
<td class="last">
<a href="#method_setToggleVisibilityAction">setToggleVisibilityAction</a>()
<p>Online status toggle (only for object which support it)</p>
</td>
<td><small>from <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html#method_setToggleVisibilityAction"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a></small></td>
</tr>
<tr>
<td class="type">
<abbr title="Thelia\Controller\Admin\Symfony\Component\HttpFoundation\Response">Response</abbr>
</td>
<td class="last">
<a href="#method_deleteAction">deleteAction</a>()
<p>Delete an object</p>
</td>
<td><small>from <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html#method_deleteAction"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a></small></td>
</tr>
<tr>
<td class="type">
</td>
<td class="last">
<a href="#method_removeFromAllTemplates">removeFromAllTemplates</a>()
<p>Remove from all product templates</p>
</td>
<td></td>
</tr>
<tr>
<td class="type">
</td>
<td class="last">
<a href="#method_addToAllTemplates">addToAllTemplates</a>()
<p>Add to all product templates</p>
</td>
<td></td>
</tr>
</table>
<h2>Details</h2>
<h3 id="method___construct">
<div class="location">at line 48</div>
<code> public
<strong>__construct</strong>()</code>
</h3>
<div class="details">
<p>
</p>
<p>
</p>
<div class="tags">
</div>
</div>
<h3 id="method_defaultAction">
<div class="location">in <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html#method_defaultAction"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a> at line 268</div>
<code> public <abbr title="Thelia\Controller\Admin\Symfony\Component\HttpFoundation\Response">Response</abbr>
<strong>defaultAction</strong>()</code>
</h3>
<div class="details">
<p>The default action is displaying the list.</p>
<p>
</p>
<div class="tags">
<h4>Return Value</h4>
<table>
<tr>
<td><abbr title="Thelia\Controller\Admin\Symfony\Component\HttpFoundation\Response">Response</abbr></td>
<td>the response</td>
</tr>
</table>
</div>
</div>
<h3 id="method_createAction">
<div class="location">in <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html#method_createAction"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a> at line 279</div>
<code> public <abbr title="Thelia\Controller\Admin\Symfony\Component\HttpFoundation\Response">Response</abbr>
<strong>createAction</strong>()</code>
</h3>
<div class="details">
<p>Create a new object</p>
<p>
</p>
<div class="tags">
<h4>Return Value</h4>
<table>
<tr>
<td><abbr title="Thelia\Controller\Admin\Symfony\Component\HttpFoundation\Response">Response</abbr></td>
<td>the response</td>
</tr>
</table>
</div>
</div>
<h3 id="method_updateAction">
<div class="location">in <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html#method_updateAction"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a> at line 340</div>
<code> public <abbr title="Thelia\Controller\Admin\Symfony\Component\HttpFoundation\Response">Response</abbr>
<strong>updateAction</strong>()</code>
</h3>
<div class="details">
<p>Load a object for modification, and display the edit template.</p>
<p>
</p>
<div class="tags">
<h4>Return Value</h4>
<table>
<tr>
<td><abbr title="Thelia\Controller\Admin\Symfony\Component\HttpFoundation\Response">Response</abbr></td>
<td>the response</td>
</tr>
</table>
</div>
</div>
<h3 id="method_processUpdateAction">
<div class="location">in <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html#method_processUpdateAction"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a> at line 366</div>
<code> public <abbr title="Thelia\Controller\Admin\Symfony\Component\HttpFoundation\Response">Response</abbr>
<strong>processUpdateAction</strong>()</code>
</h3>
<div class="details">
<p>Save changes on a modified object, and either go back to the object list, or stay on the edition page.</p>
<p>
</p>
<div class="tags">
<h4>Return Value</h4>
<table>
<tr>
<td><abbr title="Thelia\Controller\Admin\Symfony\Component\HttpFoundation\Response">Response</abbr></td>
<td>the response</td>
</tr>
</table>
</div>
</div>
<h3 id="method_updatePositionAction">
<div class="location">in <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html#method_updatePositionAction"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a> at line 431</div>
<code> public
<strong>updatePositionAction</strong>()</code>
</h3>
<div class="details">
<p>Update object position (only for objects whichsupport that)</p>
<p>FIXME: integrate with genericUpdatePositionAction</p>
<div class="tags">
</div>
</div>
<h3 id="method_setToggleVisibilityAction">
<div class="location">in <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html#method_setToggleVisibilityAction"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a> at line 499</div>
<code> public
<strong>setToggleVisibilityAction</strong>()</code>
</h3>
<div class="details">
<p>Online status toggle (only for object which support it)</p>
<p>
</p>
<div class="tags">
</div>
</div>
<h3 id="method_deleteAction">
<div class="location">in <a href="../../../Thelia/Controller/Admin/AbstractCrudController.html#method_deleteAction"><abbr title="Thelia\Controller\Admin\AbstractCrudController">AbstractCrudController</abbr></a> at line 521</div>
<code> public <abbr title="Thelia\Controller\Admin\Symfony\Component\HttpFoundation\Response">Response</abbr>
<strong>deleteAction</strong>()</code>
</h3>
<div class="details">
<p>Delete an object</p>
<p>
</p>
<div class="tags">
<h4>Return Value</h4>
<table>
<tr>
<td><abbr title="Thelia\Controller\Admin\Symfony\Component\HttpFoundation\Response">Response</abbr></td>
<td>the response</td>
</tr>
</table>
</div>
</div>
<h3 id="method_removeFromAllTemplates">
<div class="location">at line 275</div>
<code> public
<strong>removeFromAllTemplates</strong>()</code>
</h3>
<div class="details">
<p>Remove from all product templates</p>
<p>
</p>
<div class="tags">
</div>
</div>
<h3 id="method_addToAllTemplates">
<div class="location">at line 283</div>
<code> public
<strong>addToAllTemplates</strong>()</code>
</h3>
<div class="details">
<p>Add to all product templates</p>
<p>
</p>
<div class="tags">
</div>
</div>
</div>
<div id="footer">
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
</div>
</body>
</html>
| gillesbourgeat/thelia.github.io | api/2.0.0-beta1/Thelia/Controller/Admin/AttributeController.html | HTML | mit | 14,759 |
<html>
<head>
<title>My Homepage - Title B</title>
</head>
<body>
<h1>Title B</h1>
<h3>Description B</h3>
<hr />
<h1>This is another page</h1>
<p>Welcome!</p>
<p>Here's the description again: Description B</p>
<hr />
This is the footer...
</body>
</html>
| heavenwing/Wyam | examples/YamlFrontMatter/output/b.html | HTML | mit | 275 |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Struct template max_assign_base</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="../../../accumulators/reference.html#header.boost.accumulators.numeric.functional_hpp" title="Header <boost/accumulators/numeric/functional.hpp>">
<link rel="prev" href="min_assign_base.html" title="Struct template min_assign_base">
<link rel="next" href="average_base.html" title="Struct template average_base">
</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="min_assign_base.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../accumulators/reference.html#header.boost.accumulators.numeric.functional_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="average_base.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.numeric.functional.max_assign_base"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Struct template max_assign_base</span></h2>
<p>boost::numeric::functional::max_assign_base</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.numeric.functional_hpp" title="Header <boost/accumulators/numeric/functional.hpp>">boost/accumulators/numeric/functional.hpp</a>>
</span><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> Left<span class="special">,</span> <span class="keyword">typename</span> Right<span class="special">,</span> <span class="keyword">typename</span> EnableIf<span class="special">></span>
<span class="keyword">struct</span> <a class="link" href="max_assign_base.html" title="Struct template max_assign_base">max_assign_base</a> <span class="special">:</span> <span class="keyword">public</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">binary_function</span><span class="special"><</span> <span class="identifier">Left</span><span class="special">,</span> <span class="identifier">Right</span><span class="special">,</span> <span class="keyword">void</span> <span class="special">></span> <span class="special">{</span>
<span class="comment">// <a class="link" href="max_assign_base.html#idp27662768-bb">public member functions</a></span>
<span class="keyword">void</span> <a class="link" href="max_assign_base.html#idp27662976-bb"><span class="keyword">operator</span><span class="special">(</span><span class="special">)</span></a><span class="special">(</span><span class="identifier">Left</span> <span class="special">&</span><span class="special">,</span> <span class="identifier">Right</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="idp22354880"></a><h2>Description</h2>
<div class="refsect2">
<a name="idp22355088"></a><h3>
<a name="idp27662768-bb"></a><code class="computeroutput">max_assign_base</code> public member functions</h3>
<div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem"><pre class="literallayout"><span class="keyword">void</span> <a name="idp27662976-bb"></a><span class="keyword">operator</span><span class="special">(</span><span class="special">)</span><span class="special">(</span><span class="identifier">Left</span> <span class="special">&</span> left<span class="special">,</span> <span class="identifier">Right</span> <span class="special">&</span> right<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="min_assign_base.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../accumulators/reference.html#header.boost.accumulators.numeric.functional_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="average_base.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
| mxrrow/zaicoin | src/deps/boost/doc/html/boost/numeric/functional/max_assign_base.html | HTML | mit | 6,130 |
<!DOCTYPE html>
<html>
<head>
<title>GeoExplorer</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="shortcut icon" href="/{{=appname}}/static/favicon.ico" type="image/x-icon">
<!-- Ext resources -->
{{if s3.debug:}}
{{if s3.cdn:}}
<!-- For Sites Hosted on the Public Internet, using Cachefly CDN's version of ExtJS may provide better performance -->
<link href="//extjs.cachefly.net/ext-3.3.1/resources/css/ext-all.css" rel="stylesheet" type="text/css" charset="utf-8" />
<link href="//extjs.cachefly.net/ext-3.3.1/resources/css/xtheme-gray.css" rel="stylesheet" type="text/css" charset="utf-8" />
<script src="//extjs.cachefly.net/ext-3.3.1/adapter/ext/ext-base-debug.js" type="text/javascript"></script>
<script src="//extjs.cachefly.net/ext-3.3.1/ext-all-debug.js" type="text/javascript"></script>
<script src="//extjs.cachefly.net/ext-3.3.1/src/locale/ext-lang-{{=s3.language}}.js" type="text/javascript"></script>
{{else:}}
<link href="/{{=appname}}/static/scripts/ext/resources/css/ext-all.css" rel="stylesheet" type="text/css" charset="utf-8" />
<link href="/{{=appname}}/static/scripts/ext/resources/css/xtheme-gray.css" rel="stylesheet" type="text/css" charset="utf-8" />
<script src="/{{=appname}}/static/scripts/ext/adapter/ext/ext-base-debug.js" type="text/javascript"></script>
<script src="/{{=appname}}/static/scripts/ext/ext-all-debug.js" type="text/javascript"></script>
<script src="/{{=appname}}/static/scripts/ext/src/locale/ext-lang-{{=s3.language}}.js" type="text/javascript"></script>
{{pass}}
{{else:}}
{{if s3.cdn:}}
<!-- For Sites Hosted on the Public Internet, using Cachefly CDN's version of ExtJS may provide better performance -->
<link href="//extjs.cachefly.net/ext-3.3.1/resources/css/ext-all.css" rel="stylesheet" type="text/css" charset="utf-8" />
<link href="//extjs.cachefly.net/ext-3.3.1/resources/css/xtheme-gray.css" rel="stylesheet" type="text/css" charset="utf-8" />
<script src="//extjs.cachefly.net/ext-3.3.1/adapter/ext/ext-base.js" type="text/javascript"></script>
{{else:}}
<link href="/{{=appname}}/static/scripts/ext/resources/css/ext-all.css" rel="stylesheet" type="text/css" charset="utf-8" />
<link href="/{{=appname}}/static/scripts/ext/resources/css/xtheme-gray.css" rel="stylesheet" type="text/css" charset="utf-8" />
<script src="/{{=appname}}/static/scripts/ext/adapter/ext/ext-base.js" type="text/javascript"></script>
{{pass}}
{{pass}}
<script type="text/javascript">
// For IE9, make ExtJS think we're Chrome, not IE6.
// http://www.sencha.com/forum/showthread.php?115849-OPEN-1434-ExtJS-TreePanel-and-IE9
if (Ext.isIE6 && !Ext.isIE9 && /msie 9/i.test(navigator.userAgent)) {
Ext.isIE6 = Ext.isIE = false;
Ext.isChrome = Ext.isIE9 = true;
}
</script>
{{if s3.debug:}}
{{if s3.cdn:}}
<!-- For Sites Hosted on the Public Internet, using Cachefly CDN's version of ExtJS may provide better performance -->
<script src="//extjs.cachefly.net/ext-3.3.1/ext-all-debug.js" type="text/javascript"></script>
<script src="//extjs.cachefly.net/ext-3.3.1/src/locale/ext-lang-{{=s3.language}}.js" type="text/javascript"></script>
{{else:}}
<script src="/{{=appname}}/static/scripts/ext/ext-all-debug.js" type="text/javascript"></script>
<script src="/{{=appname}}/static/scripts/ext/src/locale/ext-lang-{{=s3.language}}.js" type="text/javascript"></script>
{{pass}}
{{else:}}
{{if s3.cdn:}}
<!-- For Sites Hosted on the Public Internet, using Cachefly CDN's version of ExtJS may provide better performance -->
<script src="//extjs.cachefly.net/ext-3.3.1/ext-all.js" type="text/javascript"></script>
<script src="//extjs.cachefly.net/ext-3.3.1/src/locale/ext-lang-{{=s3.language}}.js" type="text/javascript"></script>
{{else:}}
<script src="/{{=appname}}/static/scripts/ext/ext-all.js" type="text/javascript"></script>
<script src="/{{=appname}}/static/scripts/ext/src/locale/ext-lang-{{=s3.language}}.js" type="text/javascript"></script>
{{pass}}
{{pass}}
<!-- Composer -->
<!-- OpenLayers resources -->
<link href="/{{=appname}}/static/styles/gis/style.css" rel="stylesheet" type="text/css" media="screen" charset="utf-8" />
{{if s3.debug:}}
<script type="text/javascript" src="/{{=appname}}/static/scripts/gis/openlayers/lib/OpenLayers.js"></script>
{{else:}}
<script type="text/javascript" src="/{{=appname}}/static/scripts/gis/OpenLayers.js"></script>
{{pass}}
<script type="text/javascript" src="/{{=appname}}/static/scripts/gis/openlayers/lib/OpenLayers/Layer/GoogleNG.js"></script>
<!-- GeoExt resources -->
<link href="/{{=appname}}/static/styles/gis/gx_popup.css" rel="stylesheet" type="text/css" media="screen" charset="utf-8" />
<link href="/{{=appname}}/static/styles/gis/layerlegend.css" rel="stylesheet" type="text/css" media="screen" charset="utf-8" />
<!--<link href="/{{=appname}}/static/styles/gis/gxtheme-gray.css" rel="stylesheet" type="text/css" media="screen" charset="utf-8" />-->
{{if s3.debug:}}
<script type="text/javascript" src="/{{=appname}}/static/scripts/gis/GeoExt/lib/GeoExt.js"></script>
<script type="text/javascript" src="/{{=appname}}/static/scripts/gis/GeoExt/lib/overrides/override-ext-ajax.js"></script>
{{else:}}
<script type="text/javascript" src="/{{=appname}}/static/scripts/gis/GeoExt.js"></script>
<script type="text/javascript" src="/{{=appname}}/static/scripts/gis/geoext/lib/overrides/override-ext-ajax.js"></script>
{{pass}}
<!-- gxp resources -->
<link href="/{{=appname}}/static/styles/gis/gxp.css" rel="stylesheet" type="text/css" media="screen" charset="utf-8" />
{{if s3.debug:}}
<script type="text/javascript" src="/{{=appname}}/static/scripts/gis/gxp/loader.js"></script>
{{else:}}
<script type="text/javascript" src="/{{=appname}}/static/scripts/gis/gxp.js"></script>
{{pass}}
<!-- proj4js resources -->
<!--<script type="text/javascript" src="/{{=appname}}/static/scripts/gis/proj4js/lib/proj4js-compressed.js"></script>-->
<!-- GeoExplorer resources -->
<link href="/{{=appname}}/static/styles/gis/geoexplorer.css" rel="stylesheet" type="text/css" media="screen" charset="utf-8" />
<!--[if IE]><link href="/{{=appname}}/static/styles/gis/ie.css" rel="stylesheet" type="text/css" media="screen" charset="utf-8" /><![endif]-->
<link href="/{{=appname}}/static/styles/gis/color-picker.ux.css" rel="stylesheet" type="text/css" media="screen" charset="utf-8" />
{{if s3.debug:}}
<script type="text/javascript" src="/{{=appname}}/static/scripts/gis/GeoExplorer/GeoExplorer.js"></script>
<script type="text/javascript" src="/{{=appname}}/static/scripts/gis/GeoExplorer/GeoExplorer/Composer.js"></script>
{{else:}}
<script type="text/javascript" src="/{{=appname}}/static/scripts/gis/GeoExplorer.js"></script>
{{pass}}
<script type="text/javascript" src="/{{=appname}}/static/scripts/ext-community-extensions/rowactions/js/RowExpander.js"></script>
<script type="text/javascript" src="/{{=appname}}/static/scripts/gis/GeoExplorer/colorpicker/color-picker.ux.js"></script>
<script type="text/javascript" src="/{{=appname}}/static/scripts/gis/GeoExplorer/colorpicker/ColorManager.js"></script>
<!-- PrintPreview resources -->
<link href="/{{=appname}}/static/styles/gis/printpreview.css" rel="stylesheet" type="text/css" media="screen" charset="utf-8" />
<script type="text/javascript" src="/{{=appname}}/static/scripts/gis/geoext/ux/PrintPreview.js"></script>
<script>
Ext.BLANK_IMAGE_URL = '/{{=appname}}/static/img/gis/openlayers/blank.gif';
OpenLayers.ImgPath = '/{{=appname}}/static/img/gis/openlayers/';
// optionally set locale based on query string parameter
if (GeoExt.Lang) {
GeoExt.Lang.set(OpenLayers.Util.getParameters()["locale"] || GeoExt.Lang.locale);
}
var s3_gis_proxy_url = '/{{=appname}}/gis/proxy?url=';
var s3_gis_geoserver_url = '{{=geoserver_url}}';
var app = new GeoExplorer.Composer({
{{if auth.is_logged_in():}}
authStatus: 200,
{{else:}}
authStatus: 401,
{{pass}}
proxy: s3_gis_proxy_url,
{{if print_service:}}
printService: '{{=print_service}}',
{{else:}}
printService: null,
{{pass}}
about: {
title: "GeoExplorer Demo Map",
'abstract': 'This is a demonstration of GeoExplorer embedded within Sahana',
contact: 'IRC #sahana-eden'
},
defaultSourceType: "gxp_wmscsource",
sources: {
{{if geoserver_url:}}
local: {
url: s3_gis_geoserver_url,
title: 'Local GeoServer',
ptype: 'gxp_wmscsource'
},
{{pass}}
//gxp.js (line 52)
//h.arg is undefined
// b,e,f,g,h){delete this.store;var j="";...dy",this)}.createDelegate(this),0)},
//suite: {
// url: "http://v2.suite.opengeo.org/geoserver/ows",
// title: "Remote Suite GeoServer"
//},
mapquest: {
ptype: "gxp_mapquestsource"
},
osm: {
ptype: "gxp_osmsource"
},
google: {
ptype: "gxp_googlesource"
},
bing: {
ptype: "gxp_bingsource"
},
mapbox: {
ptype: "gxp_mapboxsource"
},
ol: {
ptype: "gxp_olsource"
}
},
map: {
projection: "EPSG:102113",
units: "m",
maxResolution: 156543.0339,
maxExtent: [
-20037508.34, -20037508.34,
20037508.34, 20037508.34
],
layers: [{
source: "google",
title: "Google Roadmap",
name: "ROADMAP",
group: "background"
}, {
source: "ol",
group: "background",
fixed: true,
type: "OpenLayers.Layer",
args: [
"None", {visibility: false}
]
}],
center: [0, 0],
zoom: 2
}
});
</script>
</head>
<body>
</body>
</html>
| flavour/eden | views/gis/geoexplorer.html | HTML | mit | 11,800 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Uses of Class org.apache.commons.math3.random.BitsStreamGenerator (Apache Commons Math 3.5 API)</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.commons.math3.random.BitsStreamGenerator (Apache Commons Math 3.5 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../org/apache/commons/math3/random/BitsStreamGenerator.html" title="class in org.apache.commons.math3.random">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 class="aboutLanguage"><em><script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script></em></div>
</div>
<div class="subNav">
<ul class="navList">
<li>PREV</li>
<li>NEXT</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/apache/commons/math3/random//class-useBitsStreamGenerator.html" target="_top">FRAMES</a></li>
<li><a href="BitsStreamGenerator.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.commons.math3.random.BitsStreamGenerator" class="title">Uses of Class<br>org.apache.commons.math3.random.BitsStreamGenerator</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/commons/math3/random/BitsStreamGenerator.html" title="class in org.apache.commons.math3.random">BitsStreamGenerator</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.commons.math3.random">org.apache.commons.math3.random</a></td>
<td class="colLast">
<div class="block">Random number and random data generators.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.apache.commons.math3.random">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../org/apache/commons/math3/random/BitsStreamGenerator.html" title="class in org.apache.commons.math3.random">BitsStreamGenerator</a> in <a href="../../../../../../org/apache/commons/math3/random/package-summary.html">org.apache.commons.math3.random</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation">
<caption><span>Subclasses of <a href="../../../../../../org/apache/commons/math3/random/BitsStreamGenerator.html" title="class in org.apache.commons.math3.random">BitsStreamGenerator</a> in <a href="../../../../../../org/apache/commons/math3/random/package-summary.html">org.apache.commons.math3.random</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/apache/commons/math3/random/AbstractWell.html" title="class in org.apache.commons.math3.random">AbstractWell</a></strong></code>
<div class="block">This abstract class implements the WELL class of pseudo-random number generator
from François Panneton, Pierre L'Ecuyer and Makoto Matsumoto.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../../../org/apache/commons/math3/random/ISAACRandom.html" title="class in org.apache.commons.math3.random">ISAACRandom</a></strong></code>
<div class="block"><a href="http://burtleburtle.net/bob/rand/isaacafa.html">
ISAAC: a fast cryptographic pseudo-random number generator</a>
<br/>
ISAAC (Indirection, Shift, Accumulate, Add, and Count) generates 32-bit
random numbers.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../../../org/apache/commons/math3/random/MersenneTwister.html" title="class in org.apache.commons.math3.random">MersenneTwister</a></strong></code>
<div class="block">This class implements a powerful pseudo-random number generator
developed by Makoto Matsumoto and Takuji Nishimura during
1996-1997.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../../../org/apache/commons/math3/random/Well1024a.html" title="class in org.apache.commons.math3.random">Well1024a</a></strong></code>
<div class="block">This class implements the WELL1024a pseudo-random number generator
from François Panneton, Pierre L'Ecuyer and Makoto Matsumoto.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../../../org/apache/commons/math3/random/Well19937a.html" title="class in org.apache.commons.math3.random">Well19937a</a></strong></code>
<div class="block">This class implements the WELL19937a pseudo-random number generator
from François Panneton, Pierre L'Ecuyer and Makoto Matsumoto.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../../../org/apache/commons/math3/random/Well19937c.html" title="class in org.apache.commons.math3.random">Well19937c</a></strong></code>
<div class="block">This class implements the WELL19937c pseudo-random number generator
from François Panneton, Pierre L'Ecuyer and Makoto Matsumoto.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../../../org/apache/commons/math3/random/Well44497a.html" title="class in org.apache.commons.math3.random">Well44497a</a></strong></code>
<div class="block">This class implements the WELL44497a pseudo-random number generator
from François Panneton, Pierre L'Ecuyer and Makoto Matsumoto.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../../../org/apache/commons/math3/random/Well44497b.html" title="class in org.apache.commons.math3.random">Well44497b</a></strong></code>
<div class="block">This class implements the WELL44497b pseudo-random number generator
from François Panneton, Pierre L'Ecuyer and Makoto Matsumoto.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../../../org/apache/commons/math3/random/Well512a.html" title="class in org.apache.commons.math3.random">Well512a</a></strong></code>
<div class="block">This class implements the WELL512a pseudo-random number generator
from François Panneton, Pierre L'Ecuyer and Makoto Matsumoto.</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/commons/math3/random/BitsStreamGenerator.html" title="class in org.apache.commons.math3.random">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 class="aboutLanguage"><em><script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script></em></div>
</div>
<div class="subNav">
<ul class="navList">
<li>PREV</li>
<li>NEXT</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/apache/commons/math3/random//class-useBitsStreamGenerator.html" target="_top">FRAMES</a></li>
<li><a href="BitsStreamGenerator.html" target="_top">NO FRAMES</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2003–2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
</html>
| AlexFiliakov/BlackScholesCalculator | src/com/alexfiliakov/blackscholescalc/commons-math3-3.5/docs/apidocs/org/apache/commons/math3/random/class-use/BitsStreamGenerator.html | HTML | mit | 10,644 |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>execution_context::use_service (1 of 2 overloads)</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="../../../../boost_asio.html" title="Boost.Asio">
<link rel="up" href="../use_service.html" title="execution_context::use_service">
<link rel="prev" href="../use_service.html" title="execution_context::use_service">
<link rel="next" href="overload2.html" title="execution_context::use_service (2 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="../use_service.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../use_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="overload2.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h5 class="title">
<a name="boost_asio.reference.execution_context.use_service.overload1"></a><a class="link" href="overload1.html" title="execution_context::use_service (1 of 2 overloads)">execution_context::use_service
(1 of 2 overloads)</a>
</h5></div></div></div>
<p>
Obtain the service object corresponding to the given type.
</p>
<pre class="programlisting">template<
typename <a class="link" href="../../Service.html" title="Service requirements">Service</a>>
friend Service & use_service(
execution_context & e);
</pre>
<p>
This function is used to locate a service object that corresponds to
the given service type. If there is no existing implementation of the
service, then the <a class="link" href="../../execution_context.html" title="execution_context"><code class="computeroutput">execution_context</code></a>
will create a new instance of the service.
</p>
<h6>
<a name="boost_asio.reference.execution_context.use_service.overload1.h0"></a>
<span class="phrase"><a name="boost_asio.reference.execution_context.use_service.overload1.parameters"></a></span><a class="link" href="overload1.html#boost_asio.reference.execution_context.use_service.overload1.parameters">Parameters</a>
</h6>
<div class="variablelist">
<p class="title"><b></b></p>
<dl class="variablelist">
<dt><span class="term">e</span></dt>
<dd><p>
The <a class="link" href="../../execution_context.html" title="execution_context"><code class="computeroutput">execution_context</code></a>
object that owns the service.
</p></dd>
</dl>
</div>
<h6>
<a name="boost_asio.reference.execution_context.use_service.overload1.h1"></a>
<span class="phrase"><a name="boost_asio.reference.execution_context.use_service.overload1.return_value"></a></span><a class="link" href="overload1.html#boost_asio.reference.execution_context.use_service.overload1.return_value">Return
Value</a>
</h6>
<p>
The service interface implementing the specified service type. Ownership
of the service interface is not transferred to the caller.
</p>
<h6>
<a name="boost_asio.reference.execution_context.use_service.overload1.h2"></a>
<span class="phrase"><a name="boost_asio.reference.execution_context.use_service.overload1.requirements"></a></span><a class="link" href="overload1.html#boost_asio.reference.execution_context.use_service.overload1.requirements">Requirements</a>
</h6>
<p>
<span class="emphasis"><em>Header: </em></span><code class="literal">boost/asio/execution_context.hpp</code>
</p>
<p>
<span class="emphasis"><em>Convenience header: </em></span><code class="literal">boost/asio.hpp</code>
</p>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2003-2018 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="../use_service.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../use_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="overload2.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
| nawawi/poedit | deps/boost/doc/html/boost_asio/reference/execution_context/use_service/overload1.html | HTML | mit | 5,705 |
{% extends "base.html" %}
{% block title %}TBA - Main Landing Page{% endblock %}
{% block content %}
<h1>TBA Main Landing Page</h1>
<h2>Page Type</h2>
<p>Choose which landing page to use</p>
<form id="landing_form" action="/admin/main_landing" method="post">
<select name="landing_type">
<option value=""></option>
{% for enum, name in landing_types.items %}
<option value="{{enum}}" {% if current_landing == enum %}selected{% endif %}>{{name}}</option>
{% endfor %}
</select>
<h2>Page Properties</h2>
<table class="table table-slanding_typetriped">
<tr><th>Key</th><th>Value</th></tr>
{% for key,value in current_config.items %}
{% if key != 'current_landing' %}
<tr>
<td>{{key}}</td>
<td><input name="prop_{{key}}" value="{{value}}" placeholder="Value"/></td>
</tr>
{% endif %}
{% endfor %}
<tr>
<td><input name="new_key" placeholder="Add a Property" /></td>
<td><input name="new_value" placeholder="Value" /></td>
</tr>
</table>
<button type="submit" class="btn btn-primary"><span class="glyphicon glyphicon-floppy-disk"></span> Save</button>
</form>
{% endblock %}
| bdaroz/the-blue-alliance | templates/admin/main_landing.html | HTML | mit | 1,100 |
<!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>Chapter 3. Boost.Any</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="libraries.html" title="Part I. The Boost C++ Libraries (BoostBook Subset)">
<link rel="prev" href="align/history.html" title="History">
<link rel="next" href="any/s02.html" title="Examples">
</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="align/history.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="libraries.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="any/s02.html"><img src="../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="chapter">
<div class="titlepage"><div>
<div><h2 class="title">
<a name="any"></a>Chapter 3. Boost.Any</h2></div>
<div><div class="author"><h3 class="author">
<span class="firstname">Kevlin</span> <span class="surname">Henney</span>
</h3></div></div>
<div><p class="copyright">Copyright © 2001 Kevlin Henney</p></div>
<div><div class="legalnotice">
<a name="idp119701808"></a><p>Distributed under 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></div>
</div></div>
<div class="toc">
<p><b>Table of Contents</b></p>
<dl class="toc">
<dt><span class="section"><a href="any.html#idp119704576">Introduction</a></span></dt>
<dt><span class="section"><a href="any/s02.html">Examples</a></span></dt>
<dt><span class="section"><a href="any/reference.html">Reference</a></span></dt>
<dd><dl>
<dt><span class="section"><a href="any/reference.html#any.ValueType"><span class="emphasis"><em>ValueType</em></span> requirements</a></span></dt>
<dt><span class="section"><a href="any/reference.html#header.boost.any_hpp">Header <boost/any.hpp></a></span></dt>
</dl></dd>
<dt><span class="section"><a href="any/s04.html">Acknowledgements</a></span></dt>
</dl>
</div>
<div class="section">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
<a name="idp119704576"></a>Introduction</h2></div></div></div>
<p>There are times when a generic (in the sense of
<span class="emphasis"><em>general</em></span> as opposed to
<span class="emphasis"><em>template-based programming</em></span>) type is needed:
variables that are truly variable, accommodating values of many
other more specific types rather than C++'s normal strict and
static types. We can distinguish three basic kinds of generic
type:</p>
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem"><p>Converting types that can hold one of a number of
possible value types, e.g. <code class="computeroutput">int</code> and
<code class="computeroutput">string</code>, and freely convert between them, for
instance interpreting <code class="computeroutput">5</code> as <code class="computeroutput">"5"</code> or
vice-versa. Such types are common in scripting and other
interpreted
languages.
<code class="computeroutput">boost::lexical_cast</code>
supports such conversion functionality.</p></li>
<li class="listitem"><p>
Discriminated types that contain values of different types but
do not attempt conversion between them, i.e. <code class="computeroutput">5</code> is
held strictly as an <code class="computeroutput">int</code> and is not implicitly
convertible either to <code class="computeroutput">"5"</code> or to
<code class="computeroutput">5.0</code>. Their indifference to interpretation but
awareness of type effectively makes them safe, generic
containers of single values, with no scope for surprises from
ambiguous conversions.</p></li>
<li class="listitem"><p>
Indiscriminate types that can refer to anything but are
oblivious to the actual underlying type, entrusting all forms
of access and interpretation to the programmer. This niche is
dominated by <code class="computeroutput">void *</code>, which offers plenty of scope
for surprising, undefined behavior.</p></li>
</ul></div>
<p>The <code class="computeroutput"><a class="link" href="boost/any.html" title="Class any">boost::any</a></code> class
(based on the class of the same name described in <a href="http://www.two-sdg.demon.co.uk/curbralan/papers/ValuedConversions.pdf" target="_top">"Valued
Conversions"</a> by Kevlin Henney, <span class="emphasis"><em>C++
Report</em></span> 12(7), July/August 2000) is a variant value type
based on the second category. It supports copying of any value
type and safe checked extraction of that value strictly against
its type. A similar design, offering more appropriate operators,
can be used for a generalized function adaptor,
<code class="computeroutput">any_function</code>, a generalized iterator adaptor,
<code class="computeroutput">any_iterator</code>, and other object types that need
uniform runtime treatment but support only compile-time template
parameter conformance.</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"></div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="align/history.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="libraries.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="any/s02.html"><img src="../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
| TyRoXx/cdm | original_sources/boost_1_59_0/doc/html/any.html | HTML | mit | 6,928 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<meta name="msapplication-tap-highlight" content="no">
<title>ChocolateChip-UI Android</title>
<link rel="stylesheet" href="../chui/chui-android-3.9.2.css">
<script src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="../chui/chui-3.9.2.js"></script>
<style>
.grid > .col {
background-repeat: no-repeat;
background-position: center center;
background-size: 100% auto;
background-color: #000;
-webkit-transition: all .125s ease-out;
transition: all .125s ease-out;
}
@media only screen and (min-width: 320px) {
.grid > .col {
height: 100px;
background-size: auto 100%;
}
}
@media only screen and (min-width: 480px) {
.grid > .col {
height: 150px;
background-size: auto 100%;
}
}
@media only screen and (max-width: 599px) {
.grid {
-wekbit-flex-direction: horizontal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
}
.isWindows .grid {
display: flex;
}
}
@media only screen and (min-width: 640px) {
.grid > .col {
height: 200px;
background-size: auto 100%;
}
}
@media only screen and (min-width: 768px) {
.grid > .col {
height: 250px;
background-size: auto 100%;
}
}
@media only screen and (min-width: 1024px) {
.grid > .col {
height: 300px;
background-size: auto 100%;
}
}
@media only screen and (min-width: 1200px) {
.grid > .col {
height: 350px;
background-size: auto 100%;
}
}
@media only screen and (min-width: 1400px) {
.grid > .col {
height: 500px;
background-size: auto 100%;
}
}
</style>
<script>
$(function() {
$.UISlideout();
$.UISlideout.populate([{music:'Music'},{pictures:'Pictures'},{recipes:'Recipes'},{fruits:'Fruits'}]);
});
</script>
</head>
<body>
<nav>
<h1>Music</h1>
</nav>
<article id='music'>
<section>
<h2>Music</h2>
<ul class='list'>
<li class='comp'>
<aside>
<img title='Imagine Dragons' src="../images/music/Imagine Dragons.jpg" height="80px">
</aside>
<div>
<h3>Imagine Dragons</h3>
<h4>Radioactive</h4>
<p>Lorem ipsum dolor sit amet, 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.</p>
</div>
</li>
<li class='comp'>
<aside>
<img title='Hurry and Harm' src="../images/music/Hurry and Harm.jpg" height="80px">
</aside>
<div>
<h3>The Hurry and the Harm</h3>
<h4>Hurt</h4>
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>
</div>
<li class='comp'>
<aside>
<img title='Permanent' src="../images/music/Permanent.jpg" height="80px">
</aside>
<div>
<h3>David Cook</h3>
<h4>Permanent</h4>
<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet.</p>
</div>
</li>
<li class='comp'>
<aside>
<img title='Kiss' src="../images/music/Kiss.jpg" height="80px">
</aside>
<div>
<h3>Kiss</h3>
<h4>This Kiss</h4>
<p>At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident.</p>
</div>
</li>
<li class='comp'>
<aside>
<img title='Willy Moon' src="../images/music/Willy Moon.jpg" height="80px">
</aside>
<div>
<h3>Willy Moon</h3>
<h4>Yeah Yeah</h4>
<p>Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus.</p>
</div>
</li>
</ul>
</section>
</article>
<nav>
<h1>Pictures</h1>
</nav>
<article id='pictures'>
<section>
<div class="grid no-wrap">
<div class="col flex-1" style="background-image: url('../pics/pic-01.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-02.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-03.jpg')"></div>
</div>
<div class="grid no-wrap">
<div class="col flex-1" style="background-image: url('../pics/pic-04.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-05.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-06.jpg')"></div>
</div>
<div class="grid no-wrap">
<div class="col flex-1" style="background-image: url('../pics/pic-07.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-08.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-09.jpg')"></div>
</div>
<div class="grid no-wrap">
<div class="col flex-1" style="background-image: url('../pics/pic-10.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-11.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-12.jpg')"></div>
</div>
<div class="grid no-wrap">
<div class="col flex-1" style="background-image: url('../pics/pic-13.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-14.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-15.jpg')"></div>
</div>
<div class="grid no-wrap">
<div class="col flex-1" style="background-image: url('../pics/pic-16.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-17.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-18.jpg')"></div>
</div>
<div class="grid no-wrap">
<div class="col flex-1" style="background-image: url('../pics/pic-19.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-20.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-21.jpg')"></div>
</div>
<div class="grid no-wrap">
<div class="col flex-1" style="background-image: url('../pics/pic-22.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-23.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-24.jpg')"></div>
</div>
<div class="grid no-wrap">
<div class="col flex-1" style="background-image: url('../pics/pic-25.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-26.jpg')"></div>
<div class="col flex-1" style="background-image: url('../pics/pic-27.jpg')"></div>
</div>
</section>
</article>
<nav>
<h1>Recipes</h1>
</nav>
<article id='recipes'>
<section>
<ul class='list'>
<li>
<h3>
Italian Style Meatloaf
</h3>
<h4>Ingredients</h4>
<ul>
<li>
1 1/2 pounds ground beef
</li>
<li>
2 eggs, beaten
</li>
<li>
3/4 cup dry bread crumbs
</li>
<li>
1/4 cup ketchup
</li>
<li>
1 teaspoon Italian-style seasoning
</li>
<li>
1 teaspoon garlic salt
</li>
<li>
1 (14.5 ounce) can diced tomatoes, drained
</li>
</ul>
<p>Directions</p>
<ol>
<li>
Preheat oven to 350 degrees F (175 degrees C).
</li>
<li>
In a large bowl, mix together ground beef, eggs, bread crumbs and ketchup. Season with Italian-style seasoning, oregano, basil, garlic salt, diced tomatoes and cheese. Press into a 9x5 inch loaf pan, and cover loosely with foil.
</li>
<li>
Bake in the preheated oven approximately 1 hour, or until internal temperature reaches 160 degrees F (70 degrees C).
</li>
</ol>
</li>
<li>
<h3>
Chicken Marsala
</h3>
<h4>Ingredients</h4>
<ul>
<li>
1/4 cup all-purpose flour for coating
</li>
<li>
1/2 teaspoon salt
</li>
<li>
1/4 teaspoon ground black pepper
</li>
<li>
1/2 teaspoon dried oregano
</li>
<li>
4 skinless, boneless chicken breast halves - pounded 1/4 inch thick
</li>
<li>
4 tablespoons butter
</li>
<li>
4 tablespoons olive oil
</li>
<li>
1 cup sliced mushrooms
</li>
<li>
1/2 cup Marsala wine
</li>
<li>
1/4 cup cooking sherry
</li>
</ul>
<p>Directions</p>
<ol>
<li>
In a shallow dish or bowl, mix together the flour, salt, pepper and oregano. Coat chicken pieces in flour mixture.
</li>
<li>
In a large skillet, melt butter in oil over medium heat. Place chicken in the pan, and lightly brown. Turn over chicken pieces, and add mushrooms. Pour in wine and sherry. Cover skillet; simmer chicken 10 minutes, turning once, until no longer pink and juices run clear.
</li>
</ol>
</li>
<li>
<h3>Chicken Breasts with Lime Sauce</h3>
<h4>Ingredients</h4>
<ul>
<li>
4 skinless, boneless chicken breast halves - pounded to 1/4 inch thickness
</li>
<li>
1 egg, beaten
</li>
<li>
2/3 cup dry bread crumbs
</li>
<li>
2 tablespoons olive oil
</li>
<li>
1 lime, juiced
</li>
<li>
6 tablespoons butter
</li>
<li>
1 teaspoon minced fresh chives
</li>
<li>
1/2 teaspoon dried dill weed
</li>
</ul>
<p>Directions</p>
<ol>
<li>
Coat chicken breasts with egg, and dip in bread crumbs. Place on a wire rack, and allow to dry for about 10 minutes.
</li>
<li>
Heat olive oil in a large skillet over medium heat. Place chicken into the skillet, and fry for 3 to 5 minutes on each side. Remove to a platter, and keep warm.
</li>
<li>
Drain grease from the skillet, and squeeze in lime juice. Cook over low heat until it boils. Add butter, and stir until melted. Season with chives and dill. Spoon sauce over chicken, and serve immediately.
</li>
</ol>
</li>
<li>
<h3>Lemon Rosemary Salmon</h3>
<h4>Ingredients</h4>
<ul>
<li>
1 lemon, thinly sliced
</li>
<li>
4 sprigs fresh rosemary
</li>
<li>
2 salmon fillets, bones and skin removed coarse salt to taste
</li>
<li>
1 tablespoon olive oil, or as needed
</li>
</ul>
<p>Directions</p>
<ol>
<li>
Preheat oven to 400 degrees F (200 degrees C).
</li>
<li>
Arrange half the lemon slices in a single layer in a baking dish. Layer with 2 sprigs rosemary, and top with salmon fillets. Sprinkle salmon with salt, layer with remaining rosemary sprigs, and top with remaining lemon slices. Drizzle with olive oil.
</li>
<li>
Bake 20 minutes in the preheated oven, or until fish is easily flaked with a fork.
</li>
</ol>
</li>
<li>
<h3>Strawberry Angel Food Dessert</h3>
<h4>Ingredients</h4>
<ul>
<li>
1 (10 inch) angel food cake
</li>
<li>
2 (8 ounce) packages cream cheese, softened
</li>
<li>
1 cup white sugar
</li>
<li>
1 (8 ounce) container frozen whipped topping, thawed
</li>
<li>
1 quart fresh strawberries, sliced
</li>
<li>
1 (18 ounce) jar strawberry glaze
</li>
</ul>
<p>Directions</p>
<ol>
<li>
Crumble the cake into a 9x13 inch dish.
</li>
<li>
Beat the cream cheese and sugar in a medium bowl until light and fluffy. Fold in whipped topping. Mash the cake down with your hands and spread the cream cheese mixture over the cake.
</li>
<li>
In a bowl, combine strawberries and glaze until strawberries are evenly coated. Spread over cream cheese layer. Chill until serving.
</li>
</ol>
</li>
</ul>
</section>
</article>
<nav>
<h1>Contacts</h1>
</nav>
<nav class='next'>
<h1>Fruit</h1>
</nav>
<article id='fruits' class='next'>
<section>
<h2>Fruits</h2>
<ul class='list'>
<li class="nav" data-goto="apples">
<h3>Apples</h3>
</li>
<li class="nav" data-goto="oranges">
<h3>Oranges</h3>
</li>
<li class="nav" data-goto="bananas">
<h3>Bananas</h3>
</li>
<li class="nav" data-goto="peaches">
<h3>Peaches</h3>
</li>
<li class="nav" data-goto="strawberries">
<h3>Strawberries</h3>
</li>
<li class="nav" data-goto="cherries">
<h3>Cherries</h3>
</li>
</ul>
</section>
</article>
<nav class="next">
<button class="back">Fruits</button>
<h1>Apples</h1>
</nav>
<article class="next" id="apples">
<section>
<h2>Uses</h2>
<ul class="list">
<li>
<h3>Juice</h3>
</li>
<li>
<h3>Pastries</h3>
</li>
<li>
<h3>Cider</h3>
</li>
</ul>
</section>
</article>
<nav class="next">
<button class="back">Fruits</button>
<h1>Oranges</h1>
</nav>
<article class="next" id="oranges">
<section>
<h2>Uses</h2>
<ul class="list">
<li>
<h3>Juice</h3>
</li>
<li>
<h3>Smoothies</h3>
</li>
<li>
<h3>Fruit Salad</h3>
</li>
</ul>
</section>
</article>
<nav class="next">
<button class="back">Fruits</button>
<h1>Bananas</h1>
</nav>
<article class="next" id="bananas">
<section>
<h2>Uses</h2>
<ul class="list">
<li>
<h3>Smoothies</h3>
</li>
<li>
<h3>Pudding</h3>
</li>
<li>
<h3>Fruit Salad</h3>
</li>
</ul>
</section>
</article>
<nav class="next">
<button class="back">Fruits</button>
<h1>Peaches</h1>
</nav>
<article class="next" id="peaches">
<section>
<h2>Uses</h2>
<ul class="list">
<li>
<h3>Cobbler</h3>
</li>
<li>
<h3>Pie</h3>
</li>
<li>
<h3>Smoothies</h3>
</li>
</ul>
</section>
</article>
<nav class="next">
<button class="back">Fruits</button>
<h1>Strawberries</h1>
</nav>
<article class="next" id="strawberries">
<section>
<h2>Uses</h2>
<ul class="list">
<li>
<h3>Cereal</h3>
</li>
<li>
<h3>Smoothies</h3>
</li>
<li>
<h3>Fruit Salad</h3>
</li>
</ul>
</section>
</article>
<nav class="next">
<button class="back">Fruits</button>
<h1>Cherries</h1>
</nav>
<article class="next" id="cherries">
<section>
<h2>Uses</h2>
<ul class="list">
<li>
<h3>Pies</h3>
</li>
<li>
<h3>Pastries</h3>
</li>
<li>
<h3>Fruit Salad</h3>
</li>
</ul>
</section>
</article>
</body>
</html> | sjolicoeur/chocolatechip-ui | examples-android/slideout-navigation.html | HTML | mit | 17,673 |
<!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>Function template find_match</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.date_parsing_hpp" title="Header <boost/date_time/date_parsing.hpp>">
<link rel="prev" href="convert_to_lower.html" title="Function convert_to_lower">
<link rel="next" href="parse_date.html" title="Function template parse_date">
</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="convert_to_lower.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../date_time/doxy.html#header.boost.date_time.date_parsing_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="parse_date.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.date_time.find_match"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Function template find_match</span></h2>
<p>boost::date_time::find_match — Find index of a string in either of 2 arrays. </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.date_parsing_hpp" title="Header <boost/date_time/date_parsing.hpp>">boost/date_time/date_parsing.hpp</a>>
</span>
<span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> charT<span class="special">></span>
<span class="keyword">short</span> <span class="identifier">find_match</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">charT</span> <span class="special">*</span><span class="keyword">const</span> <span class="special">*</span> short_names<span class="special">,</span>
<span class="keyword">const</span> <span class="identifier">charT</span> <span class="special">*</span><span class="keyword">const</span> <span class="special">*</span> long_names<span class="special">,</span> <span class="keyword">short</span> size<span class="special">,</span>
<span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">basic_string</span><span class="special"><</span> <span class="identifier">charT</span> <span class="special">></span> <span class="special">&</span> s<span class="special">)</span><span class="special">;</span></pre></div>
<div class="refsect1">
<a name="id-1.3.14.15.3.22.4.4"></a><h2>Description</h2>
<p>find_match searches both arrays for a match to 's'. Both arrays must contain 'size' elements. The index of the match is returned. If no match is found, 'size' is returned. Ex. "Jan" returns 0, "Dec" returns 11, "Tue" returns 2. 'size' can be sent in with: (greg_month::max)() (which 12), (greg_weekday::max)() + 1 (which is 7) or date_time::NumSpecialValues </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="convert_to_lower.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../date_time/doxy.html#header.boost.date_time.date_parsing_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="parse_date.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
| vslavik/poedit | deps/boost/doc/html/boost/date_time/find_match.html | HTML | mit | 5,283 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="product" content="Metro UI CSS Framework">
<meta name="description" content="Simple responsive css framework">
<meta name="author" content="Sergey S. Pimenov, Ukraine, Kiev">
<link href="css/metro-bootstrap.css" rel="stylesheet">
<link href="css/metro-bootstrap-responsive.css" rel="stylesheet">
<link href="css/docs.css" rel="stylesheet">
<link href="js/prettify/prettify.css" rel="stylesheet">
<!-- Load JavaScript Libraries -->
<script src="js/jquery/jquery.min.js"></script>
<script src="js/jquery/jquery.widget.min.js"></script>
<script src="js/jquery/jquery.mousewheel.js"></script>
<script src="js/prettify/prettify.js"></script>
<!-- Metro UI CSS JavaScript plugins -->
<script src="js/load-metro.js"></script>
<!-- Local JavaScript -->
<script src="js/docs.js"></script>
<script src="js/github.info.js"></script>
<title>Metro UI CSS : Metro Bootstrap CSS Library</title>
</head>
<body class="metro">
<header class="bg-dark" data-load="header.html"></header>
<div class="page">
<div class="page-region">
<div class="page-region-content">
<h1>
<a href="/"><i class="icon-arrow-left-3 fg-darker smaller"></i></a>
Title<small class="on-right">subtitle</small>
</h1>
</div>
</div>
<div class="page-footer">
<div class="page-footer-content">
<!--<div data-load="header.html"></div>-->
</div>
</div>
</div>
<script src="js/hitua.js"></script>
</body>
</html> | skt90u/ezpos | public/js/bower_components/Metro-UI-CSS/docs/page-template.html | HTML | mit | 1,806 |
<!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>Struct template managed_shared_ptr</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="../../interprocess/indexes_reference.html#header.boost.interprocess.smart_ptr.shared_ptr_hpp" title="Header <boost/interprocess/smart_ptr/shared_ptr.hpp>">
<link rel="prev" href="shared_ptr.html" title="Class template shared_ptr">
<link rel="next" href="make_managed_s_idp68047216.html" title="Function template make_managed_shared_ptr">
</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="shared_ptr.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../interprocess/indexes_reference.html#header.boost.interprocess.smart_ptr.shared_ptr_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="make_managed_s_idp68047216.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.interprocess.managed_shared_ptr"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Struct template managed_shared_ptr</span></h2>
<p>boost::interprocess::managed_shared_ptr</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="../../interprocess/indexes_reference.html#header.boost.interprocess.smart_ptr.shared_ptr_hpp" title="Header <boost/interprocess/smart_ptr/shared_ptr.hpp>">boost/interprocess/smart_ptr/shared_ptr.hpp</a>>
</span><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">,</span> <span class="keyword">typename</span> ManagedMemory<span class="special">></span>
<span class="keyword">struct</span> <a class="link" href="managed_shared_ptr.html" title="Struct template managed_shared_ptr">managed_shared_ptr</a> <span class="special">{</span>
<span class="comment">// types</span>
<span class="keyword">typedef</span> <span class="identifier">ManagedMemory</span><span class="special">::</span><span class="keyword">template</span> <a class="link" href="allocator.html" title="Class template allocator">allocator</a><span class="special"><</span> <span class="keyword">void</span> <span class="special">></span><span class="special">::</span><a class="link" href="managed_shared_ptr.html#boost.interprocess.managed_shared_ptr.type">type</a> <a name="boost.interprocess.managed_shared_ptr.void_allocator"></a><span class="identifier">void_allocator</span><span class="special">;</span>
<span class="keyword">typedef</span> <span class="identifier">ManagedMemory</span><span class="special">::</span><span class="keyword">template</span> <span class="identifier">deleter</span><span class="special"><</span> <span class="identifier">T</span> <span class="special">></span><span class="special">::</span><a class="link" href="managed_shared_ptr.html#boost.interprocess.managed_shared_ptr.type">type</a> <a name="boost.interprocess.managed_shared_ptr.deleter"></a><span class="identifier">deleter</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="shared_ptr.html" title="Class template shared_ptr">shared_ptr</a><span class="special"><</span> <span class="identifier">T</span><span class="special">,</span> <span class="identifier">void_allocator</span><span class="special">,</span> <span class="identifier">deleter</span> <span class="special">></span> <a name="boost.interprocess.managed_shared_ptr.type"></a><span class="identifier">type</span><span class="special">;</span>
<span class="special">}</span><span class="special">;</span></pre></div>
<div class="refsect1">
<a name="id-1.3.19.17.3.52.6.4"></a><h2>Description</h2>
<p>Returns the type of a shared pointer of type T with the allocator <a class="link" href="allocator.html" title="Class template allocator">boost::interprocess::allocator</a> allocator and <a class="link" href="deleter.html" title="Class template deleter">boost::interprocess::deleter</a> deleter that can be constructed in the given managed segment type. </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 © 2005-2015 Ion Gaztanaga<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="shared_ptr.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../interprocess/indexes_reference.html#header.boost.interprocess.smart_ptr.shared_ptr_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="make_managed_s_idp68047216.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
| nawawi/poedit | deps/boost/doc/html/boost/interprocess/managed_shared_ptr.html | HTML | mit | 6,488 |
<!DOCTYPE html>
<html>
<!--
Copyright 2011 The Closure Library Authors. All Rights Reserved.
Use of this source code is governed by the Apache License, Version 2.0.
See the COPYING file for details.
-->
<head>
<title>Closure Unit Tests - goog.storage.mechanism.HTML5WebStorage</title>
<script src="../../base.js"></script>
<script>
goog.provide('goog.storage.mechanism.HTML5MockStorage');
goog.provide('goog.storage.mechanism.MockThrowableStorage');
goog.require('goog.storage.mechanism.ErrorCode');
goog.require('goog.storage.mechanism.HTML5WebStorage');
goog.require('goog.testing.jsunit');
goog.require('goog.userAgent');
</script>
<body>
<script>
/**
* A minimal WebStorage implementation that throws exceptions for disabled
* storage. Since we cannot have unit tests running in Safari private mode to
* test this, we need to mock an exception throwing when trying to set a value.
*
* @param {boolean} opt_isStorageDisabled If true, throws exceptions emulating
* Private browsing mode. If false, storage quota will be marked as
* exceeded.
* @constructor
*/
goog.storage.mechanism.MockThrowableStorage = function(opt_isStorageDisabled) {
this.isStorageDisabled_ = !!opt_isStorageDisabled;
this.length = opt_isStorageDisabled ? 0 : 1;
};
/** @override */
goog.storage.mechanism.MockThrowableStorage.prototype.setItem =
function(key, value) {
if (this.isStorageDisabled_) {
throw goog.storage.mechanism.ErrorCode.STORAGE_DISABLED;
} else {
throw goog.storage.mechanism.ErrorCode.QUOTA_EXCEEDED;
}
};
/** @override */
goog.storage.mechanism.MockThrowableStorage.prototype.removeItem =
function(key) {};
/**
* A very simple, dummy implementation of key(), merely to verify that calls to
* HTML5WebStorage#key are proxied through.
* @param {number} index A key index.
* @return {string} The key associated with that index.
*/
goog.storage.mechanism.MockThrowableStorage.prototype.key = function(index) {
return 'dummyKey';
};
/**
* Provides an HTML5WebStorage wrapper for MockThrowableStorage.
*
* @constructor
* @extends {goog.storage.mechanism.HTML5WebStorage}
*/
goog.storage.mechanism.HTML5MockStorage = function(opt_isStorageDisabled) {
goog.base(
this,
new goog.storage.mechanism.MockThrowableStorage(opt_isStorageDisabled));
};
goog.inherits(goog.storage.mechanism.HTML5MockStorage,
goog.storage.mechanism.HTML5WebStorage);
function testIsNotAvailableWhenQuotaExceeded() {
var storage = new goog.storage.mechanism.HTML5MockStorage(false);
assertFalse(storage.isAvailable());
}
function testIsNotAvailableWhenStorageDisabled() {
var storage = new goog.storage.mechanism.HTML5MockStorage(true);
assertFalse(storage.isAvailable());
}
function testSetThrowsExceptionWhenQuotaExceeded() {
var storage = new goog.storage.mechanism.HTML5MockStorage(false);
var isQuotaExceeded = false;
try {
storage.set('foobar', '1');
} catch (e) {
isQuotaExceeded = e == goog.storage.mechanism.ErrorCode.QUOTA_EXCEEDED;
}
assertTrue(isQuotaExceeded);
}
function testSetThrowsExceptionWhenStorageDisabled() {
var storage = new goog.storage.mechanism.HTML5MockStorage(true);
var isStorageDisabled = false;
try {
storage.set('foobar', '1');
} catch (e) {
isStorageDisabled = e == goog.storage.mechanism.ErrorCode.STORAGE_DISABLED;
}
assertTrue(isStorageDisabled);
}
function testKeyIterationWithKeyMethod() {
var storage = new goog.storage.mechanism.HTML5MockStorage(true);
assertEquals('dummyKey', storage.key(1));
}
</script>
</body>
</html>
| dmincu/IOC | new_php/closure-library/closure/goog/storage/mechanism/html5webstorage_test.html | HTML | mit | 3,707 |
<div>
Ceci contrôle le nombre de builds simultanés que Jenkins peut exécuter.
Cette valeur impacte donc la charge générale du système.
Une bonne valeur pour commencer serait le nombre de processeurs sur
votre système.
<p>
Un nombre de builds simultanés supérieur à cette valeur augmentera la
durée individuelle de chaque build. Néanmoins, la capacité globale
peut être supérieure, puisqu'un processeur peut se charger d'un build
pendant qu'un autre build est en attente sur les entrées/sorties.
<p>
En mode contrôleur/agent, une valeur de 0 garantit que le contrôleur ne déclenchera pas
pas de build.
</div>
| v1v/jenkins | core/src/main/resources/hudson/model/Node/help-numExecutors_fr.html | HTML | mit | 653 |
<section>
<h1>Posts</h1>
{% for post in site.posts %}
<li class="post">
<a href="{{ root_url }}{{ post.url }}">{% if site.titlecase %}{{ post.title | titlecase }}{% else %}{{ post.title }}{% endif %}</a>
</li>
{% endfor %}
</section>
<!-- {% for post in site.posts reverse %}
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
{% unless year == this_year %}
{% assign year = this_year %}
<h2>{{ year }}</h2>
{% endunless %}
<article>
{% include archive_post.html %}
</article>
{% endfor %}
--> | lfneves/roadtolarissa | source/_includes/custom/asides/recent.html | HTML | mit | 579 |
<!doctype html>
<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>Welcome to Portable 5.0 — Google Earth Enterprise 5.3.6 documentation</title>
<link rel="stylesheet" href="../../static/bizstyle.css" type="text/css" />
<link rel="stylesheet" href="../../static/pygments.css" type="text/css" />
<script type="text/javascript" id="documentation_options" data-url_root="../../" src="../../static/documentation_options.js"></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="../../static/bizstyle.js"></script>
<link rel="index" title="Index" href="../../genindex.html" />
<link rel="search" title="Search" href="../../search.html" />
<link rel="next" title="Portable Release Notes 5.0" href="portableReleaseNotes5_0.html" />
<link rel="prev" title="Portable" href="../portable.html" />
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<!--[if lt IE 9]>
<script type="text/javascript" src="static/css3-mediaqueries.js"></script>
<![endif]-->
</head><body>
<div class="related" role="navigation" aria-label="related navigation">
<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="portableReleaseNotes5_0.html" title="Portable Release Notes 5.0"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="../portable.html" title="Portable"
accesskey="P">previous</a> |</li>
<li class="nav-item nav-item-0"><a href="../../index.html">Google Earth Enterprise 5.3.6 documentation</a> »</li>
<li class="nav-item nav-item-1"><a href="../portable.html" accesskey="U">Portable</a> »</li>
</ul>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
<div class="sphinxsidebarwrapper">
<h4>Previous topic</h4>
<p class="topless"><a href="../portable.html"
title="previous chapter">Portable</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="portableReleaseNotes5_0.html"
title="next chapter">Portable Release Notes 5.0</a></p>
<div id="searchbox" style="display: none" role="search">
<h3>Quick search</h3>
<div class="searchformwrapper">
<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>
</div>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<p><a class="reference internal" href="../../images/googlelogo_color_260x88dp10.png"><img alt="Google logo" src="../../images/googlelogo_color_260x88dp10.png" style="width: 130px; height: 44px;" /></a></p>
<div class="section" id="welcome-to-portable-5-0">
<h1>Welcome to Portable 5.0<a class="headerlink" href="#welcome-to-portable-5-0" title="Permalink to this headline">¶</a></h1>
<div class="docutils container">
<div class="content docutils container">
<p>For information about new features and known issues, see <a class="reference internal" href="portableReleaseNotes5_0.html"><span class="doc">Portable Release Notes 5.0</span></a>.</p>
<p class="rubric">How to install, use, and customize Portable:</p>
<ul class="simple">
<li><a class="reference internal" href="portableUserGuideWinLinux.html"><span class="doc">Portable User Guide for Windows and Linux</span></a>. Information about viewing
portable globes and maps on your laptop or desktop computer.</li>
<li><a class="reference internal" href="portableDeveloperGuide.html"><span class="doc">Portable Developer Guide</span></a>. For
software developers who want to customize or create
applications for Portable.</li>
</ul>
<p class="rubric">How to create portable offline globes and maps:</p>
<ul class="simple">
<li>The <a class="reference internal" href="../geeServerAdmin/createPortableGlobesMaps.html"><span class="doc">Google Earth Enterprise</span></a> cutter
tool for Earth Enterprise.</li>
</ul>
<p class="rubric">Getting support</p>
<p>Before contacting Support, make sure you check this Help Center
for instructions, FAQs, and troubleshooting information.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related" role="navigation" aria-label="related navigation">
<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="portableReleaseNotes5_0.html" title="Portable Release Notes 5.0"
>next</a> |</li>
<li class="right" >
<a href="../portable.html" title="Portable"
>previous</a> |</li>
<li class="nav-item nav-item-0"><a href="../../index.html">Google Earth Enterprise 5.3.6 documentation</a> »</li>
<li class="nav-item nav-item-1"><a href="../portable.html" >Portable</a> »</li>
</ul>
</div>
<div class="footer" role="contentinfo">
© Copyright 2020, Open GEE Contributors.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.7.5.
</div>
</body>
</html> | google/earthenterprise | docs/geedocs/5.3.6/answer/portable/welcomePortable5_0.html | HTML | apache-2.0 | 6,008 |
<html
xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.4-strict.dtd">
<head>
<wicket:jawr>
<link rel="stylesheet" type="text/css" href="/fwk/core/component.css"
media="all" />
<script type="text/javascript" src="/js/bundle/msg.js"></script>
</wicket:jawr>
</head>
<body>
<div class="mandatory">For this element, the style and the image
associated are retrieved directly from the classpath.</div>
<div style="height: 20px">
<wicket:jawr>
<img src="/img/appIcons/application.png" /> This HTML image use a generated path which force the caching for the browser.
</wicket:jawr>
</div>
<div>
<span class="calendar">The CSS image is retrieved from the
webapp, which is a classic case.</span>
</div>
<div>
<span class="clock">The CSS image is retrieved from the
classpath. The CSS used here is defined in the webapp under the "css"
folder.<br> This mean that you could reference a CSS image in
the classpath from a standard CSS define in a bundle.
</span>
</div>
<div style="height: 20px">
<wicket:jawr>
<input type="image" value="temp" src="/img/cog.png" /> This input image use a generated path which force the caching for the browser.
</wicket:jawr>
</div>
<script type="text/javascript">
alert("A little message retrieved from the message bundle : "
+ messages.ui.msg.hello.world());
</script>
</body>
</html> | davidwebster48/jawr-main-repo | jawr-wicket/jawr-wicket-integration-test/src/main/resources/net/jawr/wicket/resource/HomePage.html | HTML | apache-2.0 | 1,376 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title>18-object-data-http-uri</title>
<link rel="alternate" href="18-object-data-http-uri.vcf" type="text/directory" />
</head>
<body>
<p class="vcard">
<span class="fn">John Doe</span>
<object class="url photo logo" data="http://example.com/foo.png" type="image/png"></object>
</p>
</body>
</html> | apache/any23 | test-resources/src/test/resources/microformats/hcard/18-object-data-http-uri.html | HTML | apache-2.0 | 1,363 |
<html>
<body>
Reports <code>Externalizable</code> classes without a public no-argument constructor.
<p>When an <code>Externalizable</code> object is reconstructed, an instance is created using the public
no-arg constructor before the <code>readExternal</code> method called. If a public
no-arg constructor is not available, a <code>java.io.InvalidClassException</code> will be
thrown at runtime.
<!-- tooltip end -->
</body>
</html> | smmribeiro/intellij-community | plugins/InspectionGadgets/src/inspectionDescriptions/ExternalizableWithoutPublicNoArgConstructor.html | HTML | apache-2.0 | 440 |
<!DOCTYPE html >
<html>
<head>
<title>WorkerRegistered - io.gearpump.cluster.MasterToWorker.WorkerRegistered</title>
<meta name="description" content="WorkerRegistered - io.gearpump.cluster.MasterToWorker.WorkerRegistered" />
<meta name="keywords" content="WorkerRegistered io.gearpump.cluster.MasterToWorker.WorkerRegistered" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link href="../../../lib/template.css" media="screen" type="text/css" rel="stylesheet" />
<link href="../../../lib/diagrams.css" media="screen" type="text/css" rel="stylesheet" id="diagrams-css" />
<script type="text/javascript" src="../../../lib/jquery.js" id="jquery-js"></script>
<script type="text/javascript" src="../../../lib/jquery-ui.js"></script>
<script type="text/javascript" src="../../../lib/template.js"></script>
<script type="text/javascript" src="../../../lib/tools.tooltip.js"></script>
<script type="text/javascript">
if(top === self) {
var url = '../../../index.html';
var hash = 'io.gearpump.cluster.MasterToWorker$$WorkerRegistered';
var anchor = window.location.hash;
var anchor_opt = '';
if (anchor.length >= 1)
anchor_opt = '@' + anchor.substring(1);
window.location.href = url + '#' + hash + anchor_opt;
}
</script>
</head>
<body class="type">
<div id="definition">
<img alt="Class" src="../../../lib/class_big.png" />
<p id="owner"><a href="../../package.html" class="extype" name="io">io</a>.<a href="../package.html" class="extype" name="io.gearpump">gearpump</a>.<a href="package.html" class="extype" name="io.gearpump.cluster">cluster</a>.<a href="MasterToWorker$.html" class="extype" name="io.gearpump.cluster.MasterToWorker">MasterToWorker</a></p>
<h1>WorkerRegistered</h1><h3><span class="morelinks"><div>Related Doc:
<a href="MasterToWorker$.html" class="extype" name="io.gearpump.cluster.MasterToWorker">package MasterToWorker</a>
</div></span></h3><span class="permalink">
<a href="../../../index.html#io.gearpump.cluster.MasterToWorker$$WorkerRegistered" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" alt="Permalink" />
</a>
</span>
</div>
<h4 id="signature" class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">case class</span>
</span>
<span class="symbol">
<span class="name">WorkerRegistered</span><span class="params">(<span name="workerId">workerId: <a href="../package$$WorkerId.html" class="extype" name="io.gearpump.WorkerId">WorkerId</a></span>, <span name="masterInfo">masterInfo: <a href="master/Master$$MasterInfo.html" class="extype" name="io.gearpump.cluster.master.Master.MasterInfo">MasterInfo</a></span>)</span><span class="result"> extends <span class="extype" name="scala.Product">Product</span> with <span class="extype" name="scala.Serializable">Serializable</span></span>
</span>
</h4>
<div id="comment" class="fullcommenttop"><div class="toggleContainer block">
<span class="toggle">Linear Supertypes</span>
<div class="superTypes hiddenContent"><span class="extype" name="scala.Serializable">Serializable</span>, <span class="extype" name="java.io.Serializable">Serializable</span>, <span class="extype" name="scala.Product">Product</span>, <span class="extype" name="scala.Equals">Equals</span>, <span class="extype" name="scala.AnyRef">AnyRef</span>, <span class="extype" name="scala.Any">Any</span></div>
</div></div>
<div id="mbrsel">
<div id="textfilter"><span class="pre"></span><span class="input"><input id="mbrsel-input" type="text" accesskey="/" /></span><span class="post"></span></div>
<div id="order">
<span class="filtertype">Ordering</span>
<ol>
<li class="alpha in"><span>Alphabetic</span></li>
<li class="inherit out"><span>By Inheritance</span></li>
</ol>
</div>
<div id="ancestors">
<span class="filtertype">Inherited<br />
</span>
<ol id="linearization">
<li class="in" name="io.gearpump.cluster.MasterToWorker.WorkerRegistered"><span>WorkerRegistered</span></li><li class="in" name="scala.Serializable"><span>Serializable</span></li><li class="in" name="java.io.Serializable"><span>Serializable</span></li><li class="in" name="scala.Product"><span>Product</span></li><li class="in" name="scala.Equals"><span>Equals</span></li><li class="in" name="scala.AnyRef"><span>AnyRef</span></li><li class="in" name="scala.Any"><span>Any</span></li>
</ol>
</div><div id="ancestors">
<span class="filtertype"></span>
<ol>
<li class="hideall out"><span>Hide All</span></li>
<li class="showall in"><span>Show All</span></li>
</ol>
</div>
<div id="visbl">
<span class="filtertype">Visibility</span>
<ol><li class="public in"><span>Public</span></li><li class="all out"><span>All</span></li></ol>
</div>
</div>
<div id="template">
<div id="allMembers">
<div id="constructors" class="members">
<h3>Instance Constructors</h3>
<ol><li name="io.gearpump.cluster.MasterToWorker.WorkerRegistered#<init>" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped">
<a id="<init>(workerId:io.gearpump.WorkerId,masterInfo:io.gearpump.cluster.master.Master.MasterInfo):io.gearpump.cluster.MasterToWorker.WorkerRegistered"></a>
<a id="<init>:WorkerRegistered"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">new</span>
</span>
<span class="symbol">
<span class="name">WorkerRegistered</span><span class="params">(<span name="workerId">workerId: <a href="../package$$WorkerId.html" class="extype" name="io.gearpump.WorkerId">WorkerId</a></span>, <span name="masterInfo">masterInfo: <a href="master/Master$$MasterInfo.html" class="extype" name="io.gearpump.cluster.master.Master.MasterInfo">MasterInfo</a></span>)</span>
</span>
</h4><span class="permalink">
<a href="../../../index.html#io.gearpump.cluster.MasterToWorker$$WorkerRegistered@<init>(workerId:io.gearpump.WorkerId,masterInfo:io.gearpump.cluster.master.Master.MasterInfo):io.gearpump.cluster.MasterToWorker.WorkerRegistered" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" alt="Permalink" />
</a>
</span>
</li></ol>
</div>
<div id="values" class="values members">
<h3>Value Members</h3>
<ol><li name="scala.AnyRef#!=" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="!=(x$1:Any):Boolean"></a>
<a id="!=(Any):Boolean"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span title="gt4s: $bang$eq" class="name">!=</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span>
</span>
</h4><span class="permalink">
<a href="../../../index.html#io.gearpump.cluster.MasterToWorker$$WorkerRegistered@!=(x$1:Any):Boolean" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div>
</li><li name="scala.AnyRef###" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="##():Int"></a>
<a id="##():Int"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span title="gt4s: $hash$hash" class="name">##</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span>
</span>
</h4><span class="permalink">
<a href="../../../index.html#io.gearpump.cluster.MasterToWorker$$WorkerRegistered@##():Int" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div>
</li><li name="scala.AnyRef#==" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="==(x$1:Any):Boolean"></a>
<a id="==(Any):Boolean"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span title="gt4s: $eq$eq" class="name">==</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span>
</span>
</h4><span class="permalink">
<a href="../../../index.html#io.gearpump.cluster.MasterToWorker$$WorkerRegistered@==(x$1:Any):Boolean" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div>
</li><li name="scala.Any#asInstanceOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="asInstanceOf[T0]:T0"></a>
<a id="asInstanceOf[T0]:T0"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">asInstanceOf</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="result">: <span class="extype" name="scala.Any.asInstanceOf.T0">T0</span></span>
</span>
</h4><span class="permalink">
<a href="../../../index.html#io.gearpump.cluster.MasterToWorker$$WorkerRegistered@asInstanceOf[T0]:T0" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div>
</li><li name="scala.AnyRef#clone" visbl="prt" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="clone():Object"></a>
<a id="clone():AnyRef"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">clone</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.AnyRef">AnyRef</span></span>
</span>
</h4><span class="permalink">
<a href="../../../index.html#io.gearpump.cluster.MasterToWorker$$WorkerRegistered@clone():Object" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected[<a href="../../../java$lang.html" class="extype" name="java.lang">java.lang</a>] </dd><dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd>
<span class="name">@throws</span><span class="args">(<span>
<span class="defval" name="classOf[java.lang.CloneNotSupportedException]">...</span>
</span>)</span>
</dd></dl></div>
</li><li name="scala.AnyRef#eq" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="eq(x$1:AnyRef):Boolean"></a>
<a id="eq(AnyRef):Boolean"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">eq</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.AnyRef">AnyRef</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span>
</span>
</h4><span class="permalink">
<a href="../../../index.html#io.gearpump.cluster.MasterToWorker$$WorkerRegistered@eq(x$1:AnyRef):Boolean" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li name="scala.AnyRef#finalize" visbl="prt" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="finalize():Unit"></a>
<a id="finalize():Unit"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">finalize</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span>
</span>
</h4><span class="permalink">
<a href="../../../index.html#io.gearpump.cluster.MasterToWorker$$WorkerRegistered@finalize():Unit" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected[<a href="../../../java$lang.html" class="extype" name="java.lang">java.lang</a>] </dd><dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd>
<span class="name">@throws</span><span class="args">(<span>
<span class="symbol">classOf[java.lang.Throwable]</span>
</span>)</span>
</dd></dl></div>
</li><li name="scala.AnyRef#getClass" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="getClass():Class[_]"></a>
<a id="getClass():Class[_]"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">getClass</span><span class="params">()</span><span class="result">: <span class="extype" name="java.lang.Class">Class</span>[_]</span>
</span>
</h4><span class="permalink">
<a href="../../../index.html#io.gearpump.cluster.MasterToWorker$$WorkerRegistered@getClass():Class[_]" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div>
</li><li name="scala.Any#isInstanceOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="isInstanceOf[T0]:Boolean"></a>
<a id="isInstanceOf[T0]:Boolean"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">isInstanceOf</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span>
</span>
</h4><span class="permalink">
<a href="../../../index.html#io.gearpump.cluster.MasterToWorker$$WorkerRegistered@isInstanceOf[T0]:Boolean" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div>
</li><li name="io.gearpump.cluster.MasterToWorker.WorkerRegistered#masterInfo" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped">
<a id="masterInfo:io.gearpump.cluster.master.Master.MasterInfo"></a>
<a id="masterInfo:MasterInfo"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">val</span>
</span>
<span class="symbol">
<span class="name">masterInfo</span><span class="result">: <a href="master/Master$$MasterInfo.html" class="extype" name="io.gearpump.cluster.master.Master.MasterInfo">MasterInfo</a></span>
</span>
</h4><span class="permalink">
<a href="../../../index.html#io.gearpump.cluster.MasterToWorker$$WorkerRegistered@masterInfo:io.gearpump.cluster.master.Master.MasterInfo" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" alt="Permalink" />
</a>
</span>
</li><li name="scala.AnyRef#ne" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="ne(x$1:AnyRef):Boolean"></a>
<a id="ne(AnyRef):Boolean"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">ne</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.AnyRef">AnyRef</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span>
</span>
</h4><span class="permalink">
<a href="../../../index.html#io.gearpump.cluster.MasterToWorker$$WorkerRegistered@ne(x$1:AnyRef):Boolean" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li name="scala.AnyRef#notify" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="notify():Unit"></a>
<a id="notify():Unit"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">notify</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span>
</span>
</h4><span class="permalink">
<a href="../../../index.html#io.gearpump.cluster.MasterToWorker$$WorkerRegistered@notify():Unit" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li name="scala.AnyRef#notifyAll" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="notifyAll():Unit"></a>
<a id="notifyAll():Unit"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">notifyAll</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span>
</span>
</h4><span class="permalink">
<a href="../../../index.html#io.gearpump.cluster.MasterToWorker$$WorkerRegistered@notifyAll():Unit" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li name="scala.AnyRef#synchronized" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="synchronized[T0](x$1:=>T0):T0"></a>
<a id="synchronized[T0](⇒T0):T0"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">synchronized</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="params">(<span name="arg0">arg0: ⇒ <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span>)</span><span class="result">: <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span>
</span>
</h4><span class="permalink">
<a href="../../../index.html#io.gearpump.cluster.MasterToWorker$$WorkerRegistered@synchronized[T0](x$1:=>T0):T0" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="wait():Unit"></a>
<a id="wait():Unit"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">wait</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span>
</span>
</h4><span class="permalink">
<a href="../../../index.html#io.gearpump.cluster.MasterToWorker$$WorkerRegistered@wait():Unit" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd>
<span class="name">@throws</span><span class="args">(<span>
<span class="defval" name="classOf[java.lang.InterruptedException]">...</span>
</span>)</span>
</dd></dl></div>
</li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="wait(x$1:Long,x$2:Int):Unit"></a>
<a id="wait(Long,Int):Unit"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">wait</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Long">Long</span></span>, <span name="arg1">arg1: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span>
</span>
</h4><span class="permalink">
<a href="../../../index.html#io.gearpump.cluster.MasterToWorker$$WorkerRegistered@wait(x$1:Long,x$2:Int):Unit" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd>
<span class="name">@throws</span><span class="args">(<span>
<span class="defval" name="classOf[java.lang.InterruptedException]">...</span>
</span>)</span>
</dd></dl></div>
</li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="wait(x$1:Long):Unit"></a>
<a id="wait(Long):Unit"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">wait</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Long">Long</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span>
</span>
</h4><span class="permalink">
<a href="../../../index.html#io.gearpump.cluster.MasterToWorker$$WorkerRegistered@wait(x$1:Long):Unit" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd>
<span class="name">@throws</span><span class="args">(<span>
<span class="defval" name="classOf[java.lang.InterruptedException]">...</span>
</span>)</span>
</dd></dl></div>
</li><li name="io.gearpump.cluster.MasterToWorker.WorkerRegistered#workerId" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped">
<a id="workerId:io.gearpump.WorkerId"></a>
<a id="workerId:WorkerId"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">val</span>
</span>
<span class="symbol">
<span class="name">workerId</span><span class="result">: <a href="../package$$WorkerId.html" class="extype" name="io.gearpump.WorkerId">WorkerId</a></span>
</span>
</h4><span class="permalink">
<a href="../../../index.html#io.gearpump.cluster.MasterToWorker$$WorkerRegistered@workerId:io.gearpump.WorkerId" title="Permalink" target="_top">
<img src="../../../lib/permalink.png" alt="Permalink" />
</a>
</span>
</li></ol>
</div>
</div>
<div id="inheritedMembers">
<div class="parent" name="scala.Serializable">
<h3>Inherited from <span class="extype" name="scala.Serializable">Serializable</span></h3>
</div><div class="parent" name="java.io.Serializable">
<h3>Inherited from <span class="extype" name="java.io.Serializable">Serializable</span></h3>
</div><div class="parent" name="scala.Product">
<h3>Inherited from <span class="extype" name="scala.Product">Product</span></h3>
</div><div class="parent" name="scala.Equals">
<h3>Inherited from <span class="extype" name="scala.Equals">Equals</span></h3>
</div><div class="parent" name="scala.AnyRef">
<h3>Inherited from <span class="extype" name="scala.AnyRef">AnyRef</span></h3>
</div><div class="parent" name="scala.Any">
<h3>Inherited from <span class="extype" name="scala.Any">Any</span></h3>
</div>
</div>
<div id="groupedMembers">
<div class="group" name="Ungrouped">
<h3>Ungrouped</h3>
</div>
</div>
</div>
<div id="tooltip"></div>
<div id="footer"> </div>
</body>
</html>
| stanleyxu2005/gearpump.github.io | releases/latest/api/scala/io/gearpump/cluster/MasterToWorker$$WorkerRegistered.html | HTML | apache-2.0 | 27,344 |
<!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_40) on Mon Apr 04 23:10:27 CST 2016 -->
<title>TaskLocator.Localities</title>
<meta name="date" content="2016-04-04">
<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="TaskLocator.Localities";
}
}
catch(err) {
}
//-->
var methods = {"i0":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../io/gearpump/streaming/appmaster/TaskLocator.html" title="class in io.gearpump.streaming.appmaster"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../io/gearpump/streaming/appmaster/TaskLocator.Localities$.html" title="class in io.gearpump.streaming.appmaster"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?io/gearpump/streaming/appmaster/TaskLocator.Localities.html" target="_top">Frames</a></li>
<li><a href="TaskLocator.Localities.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><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor.detail">Constr</a> | </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">io.gearpump.streaming.appmaster</div>
<h2 title="Class TaskLocator.Localities" class="title">Class TaskLocator.Localities</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>io.gearpump.streaming.appmaster.TaskLocator.Localities</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>java.io.Serializable, scala.Equals, scala.Product</dd>
</dl>
<dl>
<dt>Enclosing class:</dt>
<dd><a href="../../../../io/gearpump/streaming/appmaster/TaskLocator.html" title="class in io.gearpump.streaming.appmaster">TaskLocator</a></dd>
</dl>
<hr>
<br>
<pre>public static class <span class="typeNameLabel">TaskLocator.Localities</span>
extends java.lang.Object
implements scala.Product, scala.Serializable</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../serialized-form.html#io.gearpump.streaming.appmaster.TaskLocator.Localities">Serialized Form</a></dd>
</dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </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="../../../../io/gearpump/streaming/appmaster/TaskLocator.Localities.html#Localities-scala.collection.immutable.Map-">Localities</a></span>(scala.collection.immutable.Map<io.gearpump.WorkerId,<a href="../../../../io/gearpump/streaming/task/TaskId.html" title="class in io.gearpump.streaming.task">TaskId</a>[]> localities)</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>scala.collection.immutable.Map<io.gearpump.WorkerId,<a href="../../../../io/gearpump/streaming/task/TaskId.html" title="class in io.gearpump.streaming.task">TaskId</a>[]></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../io/gearpump/streaming/appmaster/TaskLocator.Localities.html#localities--">localities</a></span>()</code> </td>
</tr>
</table>
<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>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.scala.Product">
<!-- -->
</a>
<h3>Methods inherited from interface scala.Product</h3>
<code>productArity, productElement, productIterator, productPrefix</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.scala.Equals">
<!-- -->
</a>
<h3>Methods inherited from interface scala.Equals</h3>
<code>canEqual, equals</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="Localities-scala.collection.immutable.Map-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>Localities</h4>
<pre>public Localities(scala.collection.immutable.Map<io.gearpump.WorkerId,<a href="../../../../io/gearpump/streaming/task/TaskId.html" title="class in io.gearpump.streaming.task">TaskId</a>[]> localities)</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="localities--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>localities</h4>
<pre>public scala.collection.immutable.Map<io.gearpump.WorkerId,<a href="../../../../io/gearpump/streaming/task/TaskId.html" title="class in io.gearpump.streaming.task">TaskId</a>[]> localities()</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../io/gearpump/streaming/appmaster/TaskLocator.html" title="class in io.gearpump.streaming.appmaster"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../io/gearpump/streaming/appmaster/TaskLocator.Localities$.html" title="class in io.gearpump.streaming.appmaster"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?io/gearpump/streaming/appmaster/TaskLocator.Localities.html" target="_top">Frames</a></li>
<li><a href="TaskLocator.Localities.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><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
| stanleyxu2005/gearpump.github.io | releases/latest/api/java/io/gearpump/streaming/appmaster/TaskLocator.Localities.html | HTML | apache-2.0 | 11,005 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.5.0_22) on Tue Sep 18 20:44:16 GMT+01:00 2012 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
org.apache.http.benchmark (HttpComponents Core 4.2.2 API)
</TITLE>
<META NAME="keywords" CONTENT="org.apache.http.benchmark package">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="org.apache.http.benchmark (HttpComponents Core 4.2.2 API)";
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.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>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../org/apache/http/annotation/package-summary.html"><B>PREV PACKAGE</B></A>
<A HREF="../../../../org/apache/http/concurrent/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?org/apache/http/benchmark/package-summary.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-summary.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>
<H2>
Package org.apache.http.benchmark
</H2>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Class Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../org/apache/http/benchmark/CommandLineUtils.html" title="class in org.apache.http.benchmark">CommandLineUtils</A></B></TD>
<TD> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../org/apache/http/benchmark/Config.html" title="class in org.apache.http.benchmark">Config</A></B></TD>
<TD> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../org/apache/http/benchmark/HttpBenchmark.html" title="class in org.apache.http.benchmark">HttpBenchmark</A></B></TD>
<TD>Main program of the HTTP benchmark.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../org/apache/http/benchmark/ResultProcessor.html" title="class in org.apache.http.benchmark">ResultProcessor</A></B></TD>
<TD> </TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD WIDTH="15%"><B><A HREF="../../../../org/apache/http/benchmark/Stats.html" title="class in org.apache.http.benchmark">Stats</A></B></TD>
<TD>Helper to gather statistics for an <A HREF="../../../../org/apache/http/benchmark/HttpBenchmark.html" title="class in org.apache.http.benchmark"><CODE>HttpBenchmark</CODE></A>.</TD>
</TR>
</TABLE>
<P>
<DL>
</DL>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.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>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../org/apache/http/annotation/package-summary.html"><B>PREV PACKAGE</B></A>
<A HREF="../../../../org/apache/http/concurrent/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?org/apache/http/benchmark/package-summary.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-summary.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 © 2005-2012 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All Rights Reserved.
</BODY>
</HTML>
| espadrine/opera | chromium/src/third_party/httpcomponents-core/binary-distribution/javadoc/org/apache/http/benchmark/package-summary.html | HTML | bsd-3-clause | 7,518 |
<div class="modal-header">
<h2>{{dialogOptions.headerText | translate}}</h2>
</div>
<div class="modal-body">
<p>{{dialogOptions.bodyText | translate}}</p>
</div>
<div class="modal-footer">
<button class="btn btn-default" data-ng-click="dialogOptions.ok();">{{dialogOptions.closeButtonText | translate}}</button>
</div> | steffeli/inf5750-tracker-capture | dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/views/dialog.html | HTML | bsd-3-clause | 331 |
<!DOCTYPE html>
<html>
<head>
<!-- Should be ignored inside fenced-frame -->
<meta name="viewport" content="width=2000,minimum-scale=2">
<style type="text/css">
html {
width: 100%;
}
div {
width: 100px;
height: 100px;
background-color: red;
}
</style>
</head>
<body>
<div>100x100</div>
</body>
</html>
| chromium/chromium | content/test/data/fenced_frames/viewport_child.html | HTML | bsd-3-clause | 386 |
{{< layout}}
{{$pageTitle}}Compare your old and new photos{{/pageTitle}}
{{$header}}
<h1>Check the photo in your old passport</h1>
{{/header}}
{{$content}}
{{< hmpo-partials-form}}
{{$form}}
<p>We'll compare your photo with the one in your old passport.</p>
<fieldset>
<legend><span class="form-label-bold">Do you look like the same person in your old and new photos?</span></legend>
<label for="yes" class="block-label selected">
<input type="radio" name="title" id="yes" value="Other" aria-required="true" data-toggle="yes-title" aria-controls="yes-title" aria-expanded="true">
Yes, I look like the same person
</label>
<label for="no" class="block-label selected">
<input type="radio" name="title" id="no" value="Other" aria-required="true" data-toggle="no-title" aria-controls="no-title" aria-expanded="true">
No, my appearance has changed a lot
</label>
<div id="no-title" class="reveal" aria-hidden="false">
<div class="panel-indent">
<p>You'll need to get your photo signed by somebody else to confirm that it's you. To do this, you'll need to <a href="https://www.gov.uk/apply-renew-passport">renew your passport a different way</a>.</p>
</div>
</div>
</fieldset><br/>
{{#input-submit}}{{/input-submit}}
{{/form}}
{{/ hmpo-partials-form}}
{{/content}}
{{$sidebar}}
<div class="column-one-third">
<div class="sidebar related">
<div class="photo-preview-inner">
<h2 class="heading-medium">Your photo</h2>
<div class="photo">
<img src="../../public/images/thumbnail.jpeg" alt="Your uploaded photo" title="Your uploaded photo" width="150">
</div>
</div>
</div>
</div>
{{/sidebar}}
{{/ layout}}
| maxinedivers/pass-max | views/prototype_161212/renew/index.html | HTML | mit | 1,838 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="robots" content="index, follow, all" />
<title>Thelia\Core\Form\Type\Field\FeatureTemplateIdType | Thelia 2 API</title>
<link rel="stylesheet" type="text/css" href="../../../../../css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="../../../../../css/bootstrap-theme.min.css">
<link rel="stylesheet" type="text/css" href="../../../../../css/sami.css">
<script src="../../../../../js/jquery-1.11.1.min.js"></script>
<script src="../../../../../js/bootstrap.min.js"></script>
<script src="../../../../../js/typeahead.min.js"></script>
<script src="../../../../../sami.js"></script>
<meta name="MobileOptimized" content="width">
<meta name="HandheldFriendly" content="true">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1">
</head>
<body id="class" data-name="class:Thelia_Core_Form_Type_Field_FeatureTemplateIdType" data-root-path="../../../../../">
<div id="content">
<div id="left-column">
<div id="control-panel">
<form id="search-form" action="../../../../../search.html" method="GET">
<span class="glyphicon glyphicon-search"></span>
<input name="search"
class="typeahead form-control"
type="search"
placeholder="Search">
</form>
</div>
<div id="api-tree"></div>
</div>
<div id="right-column">
<nav id="site-nav" class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-elements">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../../../../../index.html">Thelia 2 API</a>
</div>
<div class="collapse navbar-collapse" id="navbar-elements">
<ul class="nav navbar-nav">
<li><a href="../../../../../classes.html">Classes</a></li>
<li><a href="../../../../../namespaces.html">Namespaces</a></li>
<li><a href="../../../../../interfaces.html">Interfaces</a></li>
<li><a href="../../../../../traits.html">Traits</a></li>
<li><a href="../../../../../doc-index.html">Index</a></li>
<li><a href="../../../../../search.html">Search</a></li>
</ul>
</div>
</div>
</nav>
<div class="namespace-breadcrumbs">
<ol class="breadcrumb">
<li><span class="label label-default">class</span></li>
<li><a href="../../../../../Thelia.html">Thelia</a></li>
<li><a href="../../../../../Thelia/Core.html">Core</a></li>
<li><a href="../../../../../Thelia/Core/Form.html">Form</a></li>
<li><a href="../../../../../Thelia/Core/Form/Type.html">Type</a></li>
<li><a href="../../../../../Thelia/Core/Form/Type/Field.html">Field</a></li>
<li>FeatureTemplateIdType</li>
</ol>
</div>
<div id="page-content">
<div class="page-header">
<h1>FeatureTemplateIdType</h1>
</div>
<p> class
<strong>FeatureTemplateIdType</strong> extends <a href="../../../../../Thelia/Core/Form/Type/Field/AbstractIdType.html"><abbr title="Thelia\Core\Form\Type\Field\AbstractIdType">AbstractIdType</abbr></a>
</p>
<div class="description">
<p>Class FeatureTemplateIdType</p> </div>
<h2>Methods</h2>
<div class="container-fluid underlined">
<div class="row">
<div class="col-md-2 type">
</div>
<div class="col-md-8 type">
<a href="#method___construct">__construct</a>(
<abbr title="Thelia\Core\Form\Type\Field\Symfony\Component\Translation\TranslatorInterface">TranslatorInterface</abbr> $translator)
<p class="no-description">No description</p>
</div>
<div class="col-md-2"><small>from
<a href="../../../../../Thelia/Core/Form/Type/Field/AbstractIdType.html#method___construct"><abbr title="Thelia\Core\Form\Type\Field\AbstractIdType">AbstractIdType</abbr></a></small></div>
</div>
<div class="row">
<div class="col-md-2 type">
</div>
<div class="col-md-8 type">
<a href="#method_configureOptions">configureOptions</a>(
<abbr title="Thelia\Core\Form\Type\Field\Symfony\Component\OptionsResolver\OptionsResolver">OptionsResolver</abbr> $resolver)
<p class="no-description">No description</p>
</div>
<div class="col-md-2"><small>from
<a href="../../../../../Thelia/Core/Form/Type/Field/AbstractIdType.html#method_configureOptions"><abbr title="Thelia\Core\Form\Type\Field\AbstractIdType">AbstractIdType</abbr></a></small></div>
</div>
<div class="row">
<div class="col-md-2 type">
</div>
<div class="col-md-8 type">
<a href="#method_getParent">getParent</a>()
<p class="no-description">No description</p>
</div>
<div class="col-md-2"><small>from
<a href="../../../../../Thelia/Core/Form/Type/Field/AbstractIdType.html#method_getParent"><abbr title="Thelia\Core\Form\Type\Field\AbstractIdType">AbstractIdType</abbr></a></small></div>
</div>
<div class="row">
<div class="col-md-2 type">
</div>
<div class="col-md-8 type">
<a href="#method_checkId">checkId</a>($value,
<abbr title="Thelia\Core\Form\Type\Field\Symfony\Component\Validator\Context\ExecutionContextInterface">ExecutionContextInterface</abbr> $context)
<p class="no-description">No description</p>
</div>
<div class="col-md-2"><small>from
<a href="../../../../../Thelia/Core/Form/Type/Field/AbstractIdType.html#method_checkId"><abbr title="Thelia\Core\Form\Type\Field\AbstractIdType">AbstractIdType</abbr></a></small></div>
</div>
<div class="row">
<div class="col-md-2 type">
string
</div>
<div class="col-md-8 type">
<a href="#method_getName">getName</a>()
<p>Returns the name of this type.</p> </div>
<div class="col-md-2"></div>
</div>
</div>
<h2>Details</h2>
<div id="method-details">
<div class="method-item">
<h3 id="method___construct">
<div class="location">in
<a href="../../../../../Thelia/Core/Form/Type/Field/AbstractIdType.html#method___construct"><abbr title="Thelia\Core\Form\Type\Field\AbstractIdType">AbstractIdType</abbr></a> at line 34</div>
<code>
<strong>__construct</strong>(
<abbr title="Thelia\Core\Form\Type\Field\Symfony\Component\Translation\TranslatorInterface">TranslatorInterface</abbr> $translator)</code>
</h3>
<div class="details">
<div class="tags">
<h4>Parameters</h4>
<table class="table table-condensed">
<tr>
<td>
<abbr title="Thelia\Core\Form\Type\Field\Symfony\Component\Translation\TranslatorInterface">TranslatorInterface</abbr></td>
<td>$translator</td>
<td></td>
</tr>
</table>
</div>
</div>
</div>
<div class="method-item">
<h3 id="method_configureOptions">
<div class="location">in
<a href="../../../../../Thelia/Core/Form/Type/Field/AbstractIdType.html#method_configureOptions"><abbr title="Thelia\Core\Form\Type\Field\AbstractIdType">AbstractIdType</abbr></a> at line 39</div>
<code>
<strong>configureOptions</strong>(
<abbr title="Thelia\Core\Form\Type\Field\Symfony\Component\OptionsResolver\OptionsResolver">OptionsResolver</abbr> $resolver)</code>
</h3>
<div class="details">
<div class="tags">
<h4>Parameters</h4>
<table class="table table-condensed">
<tr>
<td>
<abbr title="Thelia\Core\Form\Type\Field\Symfony\Component\OptionsResolver\OptionsResolver">OptionsResolver</abbr></td>
<td>$resolver</td>
<td></td>
</tr>
</table>
</div>
</div>
</div>
<div class="method-item">
<h3 id="method_getParent">
<div class="location">in
<a href="../../../../../Thelia/Core/Form/Type/Field/AbstractIdType.html#method_getParent"><abbr title="Thelia\Core\Form\Type\Field\AbstractIdType">AbstractIdType</abbr></a> at line 55</div>
<code>
<strong>getParent</strong>()</code>
</h3>
<div class="details">
<div class="tags">
</div>
</div>
</div>
<div class="method-item">
<h3 id="method_checkId">
<div class="location">in
<a href="../../../../../Thelia/Core/Form/Type/Field/AbstractIdType.html#method_checkId"><abbr title="Thelia\Core\Form\Type\Field\AbstractIdType">AbstractIdType</abbr></a> at line 60</div>
<code>
<strong>checkId</strong>($value,
<abbr title="Thelia\Core\Form\Type\Field\Symfony\Component\Validator\Context\ExecutionContextInterface">ExecutionContextInterface</abbr> $context)</code>
</h3>
<div class="details">
<div class="tags">
<h4>Parameters</h4>
<table class="table table-condensed">
<tr>
<td></td>
<td>$value</td>
<td></td>
</tr>
<tr>
<td>
<abbr title="Thelia\Core\Form\Type\Field\Symfony\Component\Validator\Context\ExecutionContextInterface">ExecutionContextInterface</abbr></td>
<td>$context</td>
<td></td>
</tr>
</table>
</div>
</div>
</div>
<div class="method-item">
<h3 id="method_getName">
<div class="location">at line 39</div>
<code>
string
<strong>getName</strong>()</code>
</h3>
<div class="details">
<div class="method-description">
<p>Returns the name of this type.</p> </div>
<div class="tags">
<h4>Return Value</h4>
<table class="table table-condensed">
<tr>
<td>
string</td>
<td>The name of this type</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
Generated by <a href="http://sami.sensiolabs.org/">Sami, the API Documentation Generator</a>.
</div>
</div>
</div>
</body>
</html>
| thelia/thelia.github.io | api/master/Thelia/Core/Form/Type/Field/FeatureTemplateIdType.html | HTML | mit | 12,866 |
<!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_45) on Sat Dec 28 11:08:49 MSK 2013 -->
<TITLE>
CameraBridgeViewBase
</TITLE>
<META NAME="date" CONTENT="2013-12-28">
<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="CameraBridgeViewBase";
}
}
</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="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</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>
OpenCV 2.4.8</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../org/opencv/android/BaseLoaderCallback.html" title="class in org.opencv.android"><B>PREV CLASS</B></A>
<A HREF="../../../org/opencv/android/CameraBridgeViewBase.CvCameraViewFrame.html" title="interface in org.opencv.android"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?org/opencv/android/CameraBridgeViewBase.html" target="_top"><B>FRAMES</B></A>
<A HREF="CameraBridgeViewBase.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_class_summary">NESTED</A> | <A HREF="#field_summary">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: <A HREF="#field_detail">FIELD</A> | <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.opencv.android</FONT>
<BR>
Class CameraBridgeViewBase</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../resources/inherit.gif" ALT="extended by ">SurfaceView
<IMG SRC="../../../resources/inherit.gif" ALT="extended by "><B>org.opencv.android.CameraBridgeViewBase</B>
</PRE>
<DL>
<DT><B>Direct Known Subclasses:</B> <DD><A HREF="../../../org/opencv/android/JavaCameraView.html" title="class in org.opencv.android">JavaCameraView</A>, <A HREF="../../../org/opencv/android/NativeCameraView.html" title="class in org.opencv.android">NativeCameraView</A></DD>
</DL>
<HR>
<DL>
<DT><PRE>public abstract class <B>CameraBridgeViewBase</B><DT>extends SurfaceView</DL>
</PRE>
<P>
This is a basic class, implementing the interaction with Camera and OpenCV library.
The main responsibility of it - is to control when camera can be enabled, process the frame,
call external listener to make any adjustments to the frame and then draw the resulting
frame to the screen.
The clients shall implement CvCameraViewListener.
<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>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static interface</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/opencv/android/CameraBridgeViewBase.CvCameraViewFrame.html" title="interface in org.opencv.android">CameraBridgeViewBase.CvCameraViewFrame</A></B></CODE>
<BR>
This class interface is abstract representation of single frame from camera for onCameraFrame callback
Attention: Do not use objects, that represents this interface out of onCameraFrame callback!</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static interface</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/opencv/android/CameraBridgeViewBase.CvCameraViewListener.html" title="interface in org.opencv.android">CameraBridgeViewBase.CvCameraViewListener</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static interface</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/opencv/android/CameraBridgeViewBase.CvCameraViewListener2.html" title="interface in org.opencv.android">CameraBridgeViewBase.CvCameraViewListener2</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static interface</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/opencv/android/CameraBridgeViewBase.ListItemAccessor.html" title="interface in org.opencv.android">CameraBridgeViewBase.ListItemAccessor</A></B></CODE>
<BR>
</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>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/opencv/android/CameraBridgeViewBase.html#CAMERA_ID_ANY">CAMERA_ID_ANY</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/opencv/android/CameraBridgeViewBase.html#CAMERA_ID_BACK">CAMERA_ID_BACK</A></B></CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/opencv/android/CameraBridgeViewBase.html#CAMERA_ID_FRONT">CAMERA_ID_FRONT</A></B></CODE>
<BR>
</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/opencv/android/CameraBridgeViewBase.html#CameraBridgeViewBase(Context, AttributeSet)">CameraBridgeViewBase</A></B>(Context context,
AttributeSet attrs)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../org/opencv/android/CameraBridgeViewBase.html#CameraBridgeViewBase(Context, int)">CameraBridgeViewBase</A></B>(Context context,
int cameraId)</CODE>
<BR>
</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> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/opencv/android/CameraBridgeViewBase.html#disableFpsMeter()">disableFpsMeter</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/opencv/android/CameraBridgeViewBase.html#disableView()">disableView</A></B>()</CODE>
<BR>
This method is provided for clients, so they can disable camera connection and stop
the delivery of frames even though the surface view itself is not destroyed and still stays on the scren</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/opencv/android/CameraBridgeViewBase.html#enableFpsMeter()">enableFpsMeter</A></B>()</CODE>
<BR>
This method enables label with fps value on the screen</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/opencv/android/CameraBridgeViewBase.html#enableView()">enableView</A></B>()</CODE>
<BR>
This method is provided for clients, so they can enable the camera connection.</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/opencv/android/CameraBridgeViewBase.html#setCameraIndex(int)">setCameraIndex</A></B>(int cameraIndex)</CODE>
<BR>
Sets the camera index</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/opencv/android/CameraBridgeViewBase.html#SetCaptureFormat(int)">SetCaptureFormat</A></B>(int format)</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/opencv/android/CameraBridgeViewBase.html#setCvCameraViewListener(org.opencv.android.CameraBridgeViewBase.CvCameraViewListener)">setCvCameraViewListener</A></B>(<A HREF="../../../org/opencv/android/CameraBridgeViewBase.CvCameraViewListener.html" title="interface in org.opencv.android">CameraBridgeViewBase.CvCameraViewListener</A> listener)</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/opencv/android/CameraBridgeViewBase.html#setCvCameraViewListener(org.opencv.android.CameraBridgeViewBase.CvCameraViewListener2)">setCvCameraViewListener</A></B>(<A HREF="../../../org/opencv/android/CameraBridgeViewBase.CvCameraViewListener2.html" title="interface in org.opencv.android">CameraBridgeViewBase.CvCameraViewListener2</A> listener)</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/opencv/android/CameraBridgeViewBase.html#setMaxFrameSize(int, int)">setMaxFrameSize</A></B>(int maxWidth,
int maxHeight)</CODE>
<BR>
This method sets the maximum size that camera frame is allowed to be.</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/opencv/android/CameraBridgeViewBase.html#surfaceChanged(SurfaceHolder, int, int, int)">surfaceChanged</A></B>(SurfaceHolder arg0,
int arg1,
int arg2,
int arg3)</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/opencv/android/CameraBridgeViewBase.html#surfaceCreated(SurfaceHolder)">surfaceCreated</A></B>(SurfaceHolder holder)</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/opencv/android/CameraBridgeViewBase.html#surfaceDestroyed(SurfaceHolder)">surfaceDestroyed</A></B>(SurfaceHolder holder)</CODE>
<BR>
</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>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ============ FIELD DETAIL =========== -->
<A NAME="field_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Field Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="CAMERA_ID_ANY"><!-- --></A><H3>
CAMERA_ID_ANY</H3>
<PRE>
public static final int <B>CAMERA_ID_ANY</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#org.opencv.android.CameraBridgeViewBase.CAMERA_ID_ANY">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="CAMERA_ID_BACK"><!-- --></A><H3>
CAMERA_ID_BACK</H3>
<PRE>
public static final int <B>CAMERA_ID_BACK</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#org.opencv.android.CameraBridgeViewBase.CAMERA_ID_BACK">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="CAMERA_ID_FRONT"><!-- --></A><H3>
CAMERA_ID_FRONT</H3>
<PRE>
public static final int <B>CAMERA_ID_FRONT</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#org.opencv.android.CameraBridgeViewBase.CAMERA_ID_FRONT">Constant Field Values</A></DL>
</DL>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="CameraBridgeViewBase(Context, AttributeSet)"><!-- --></A><H3>
CameraBridgeViewBase</H3>
<PRE>
public <B>CameraBridgeViewBase</B>(Context context,
AttributeSet attrs)</PRE>
<DL>
</DL>
<HR>
<A NAME="CameraBridgeViewBase(Context, int)"><!-- --></A><H3>
CameraBridgeViewBase</H3>
<PRE>
public <B>CameraBridgeViewBase</B>(Context context,
int cameraId)</PRE>
<DL>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Method Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="disableFpsMeter()"><!-- --></A><H3>
disableFpsMeter</H3>
<PRE>
public void <B>disableFpsMeter</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="disableView()"><!-- --></A><H3>
disableView</H3>
<PRE>
public void <B>disableView</B>()</PRE>
<DL>
<DD>This method is provided for clients, so they can disable camera connection and stop
the delivery of frames even though the surface view itself is not destroyed and still stays on the scren
<P>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="enableFpsMeter()"><!-- --></A><H3>
enableFpsMeter</H3>
<PRE>
public void <B>enableFpsMeter</B>()</PRE>
<DL>
<DD>This method enables label with fps value on the screen
<P>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="enableView()"><!-- --></A><H3>
enableView</H3>
<PRE>
public void <B>enableView</B>()</PRE>
<DL>
<DD>This method is provided for clients, so they can enable the camera connection.
The actual onCameraViewStarted callback will be delivered only after both this method is called and surface is available
<P>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="setCameraIndex(int)"><!-- --></A><H3>
setCameraIndex</H3>
<PRE>
public void <B>setCameraIndex</B>(int cameraIndex)</PRE>
<DL>
<DD>Sets the camera index
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>cameraIndex</CODE> - new camera index</DL>
</DD>
</DL>
<HR>
<A NAME="SetCaptureFormat(int)"><!-- --></A><H3>
SetCaptureFormat</H3>
<PRE>
public void <B>SetCaptureFormat</B>(int format)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="setCvCameraViewListener(org.opencv.android.CameraBridgeViewBase.CvCameraViewListener)"><!-- --></A><H3>
setCvCameraViewListener</H3>
<PRE>
public void <B>setCvCameraViewListener</B>(<A HREF="../../../org/opencv/android/CameraBridgeViewBase.CvCameraViewListener.html" title="interface in org.opencv.android">CameraBridgeViewBase.CvCameraViewListener</A> listener)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="setCvCameraViewListener(org.opencv.android.CameraBridgeViewBase.CvCameraViewListener2)"><!-- --></A><H3>
setCvCameraViewListener</H3>
<PRE>
public void <B>setCvCameraViewListener</B>(<A HREF="../../../org/opencv/android/CameraBridgeViewBase.CvCameraViewListener2.html" title="interface in org.opencv.android">CameraBridgeViewBase.CvCameraViewListener2</A> listener)</PRE>
<DL>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>listener</CODE> - </DL>
</DD>
</DL>
<HR>
<A NAME="setMaxFrameSize(int, int)"><!-- --></A><H3>
setMaxFrameSize</H3>
<PRE>
public void <B>setMaxFrameSize</B>(int maxWidth,
int maxHeight)</PRE>
<DL>
<DD>This method sets the maximum size that camera frame is allowed to be. When selecting
size - the biggest size which less or equal the size set will be selected.
As an example - we set setMaxFrameSize(200,200) and we have 176x152 and 320x240 sizes. The
preview frame will be selected with 176x152 size.
This method is useful when need to restrict the size of preview frame for some reason (for example for video recording)
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>maxWidth</CODE> - - the maximum width allowed for camera frame.<DD><CODE>maxHeight</CODE> - - the maximum height allowed for camera frame</DL>
</DD>
</DL>
<HR>
<A NAME="surfaceChanged(SurfaceHolder, int, int, int)"><!-- --></A><H3>
surfaceChanged</H3>
<PRE>
public void <B>surfaceChanged</B>(SurfaceHolder arg0,
int arg1,
int arg2,
int arg3)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="surfaceCreated(SurfaceHolder)"><!-- --></A><H3>
surfaceCreated</H3>
<PRE>
public void <B>surfaceCreated</B>(SurfaceHolder holder)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="surfaceDestroyed(SurfaceHolder)"><!-- --></A><H3>
surfaceDestroyed</H3>
<PRE>
public void <B>surfaceDestroyed</B>(SurfaceHolder holder)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </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="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</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>
<a href=http://docs.opencv.org>OpenCV 2.4.8 Documentation</a></EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../org/opencv/android/BaseLoaderCallback.html" title="class in org.opencv.android"><B>PREV CLASS</B></A>
<A HREF="../../../org/opencv/android/CameraBridgeViewBase.CvCameraViewFrame.html" title="interface in org.opencv.android"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?org/opencv/android/CameraBridgeViewBase.html" target="_top"><B>FRAMES</B></A>
<A HREF="CameraBridgeViewBase.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_class_summary">NESTED</A> | <A HREF="#field_summary">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: <A HREF="#field_detail">FIELD</A> | <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>
</BODY>
</HTML>
| jmptable/semanter | SemanterApp/semanter/libs/OpenCV/javadoc/org/opencv/android/CameraBridgeViewBase.html | HTML | mit | 24,481 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<!-- $Id: README.html 244 2009-02-01 08:43:39Z tommy $ -->
<html>
<head>
<meta http-equiv="content-style-type" content="text/css">
<link rel=stylesheet type="text/css" href="tommy.css">
<link rev=made href="mailto:[email protected]">
<title>MySQL/Ruby</title>
</head>
<body>
<h1>MySQL/Ruby</h1>
<p><a href="README_ja.html">[Japanese]</a></p>
<hr>
<p>
This is the <a href="http://www.mysql.com">MySQL</a> API module for Ruby.
It provides the same functions for Ruby programs that the MySQL C API provides for C programs.
</p>
<h2>Download</h2>
<a href="http://tmtm.org/downloads/mysql/ruby/">tmtm.org</a>
<h2>Requirement</h2>
<ul>
<li>MySQL 5.0.67
<li>Ruby 1.8.7, 1.9.1
</ul>
<p>
The module may work for other versions, but that has not been verified.
</p>
<h2>License</h2>
<p>
This program is under <a href="http://www.ruby-lang.org/en/LICENSE.txt">Ruby's license</a>.
</p>
<h2>Install</h2>
<p>
1st:
</p>
<pre class="code">
% ruby extconf.rb
</pre>
<p>
or
</p>
<pre class="code">
% ruby extconf.rb --with-mysql-dir=/usr/local/mysql
</pre>
<p>
or
</p>
<pre clas="code">
% ruby extconf.rb --with-mysql-config
</pre>
<p>
then
</p>
<pre>
% make
</pre>
<p>
extconf.rb has following options:
</p>
<dl>
<dt>--with-mysql-include=<i>dir</i>
<dd>
MySQL header file directory. Default is /usr/local/include.
<dt>--with-mysql-lib=<i>dir</i>
<dd>
MySQL library directory. Default is /usr/local/lib.
<dt>--with-mysql-dir=<i>dir</i>
<dd>
Same as --with-mysql-include=<i>dir</i>/include,
--with-mysql-lib=<i>dir</i>/lib.
<dt>--with-mysql-config[=<i>/path/to/mysql_config</i>]
<dd>
Get compile-parameter from mysql_config command.
</dl>
<p>
2nd:
</p>
<pre class="code">
% ruby ./test.rb -- [<i>hostname</i> [<i>user</i> [<i>passwd</i> [<i>dbname</i> [<i>port</i> [<i>socket</i> [<i>flag</i>]]]]]]]
</pre>
<p>
3rd:
</p>
<pre class="code">
# make install
</pre>
<h3>Note</h3>
<p>
If you get error like 'libmysqlclient not found' when testing,
you need to specify the directory in which the library is
located so that make can find it.
</p>
<pre class="code">
% env LD_RUN_PATH=<i>libmysqlclient.so directory</i> make
</pre>
<p>
test.rb is tested on Linux only.
</p>
<h2>Usage</h2>
<p>
The names of methods provided by this module basically are the
same as the names of the functions in the C API, except that the
Ruby method names do not begin with a 'mysql_' prefix. For
example, the Ruby query() method corresponds to the C API
mysql_query() function. For details on the use of each Ruby
method, see the descriptions of the corresponding C functions in
the MySQL Reference Manual.
</p>
<p>
Some Ruby methods may be invoked under other names that serve as
equivalent aliases, as noted below.
</p>
<p>
If an error occurs when a method executes, it raises a
Mysql::Error exception.
</p>
<h2>Mysql class</h2>
<h3>CLASS METHODS</h3>
<dl>
<dt>init()
<dd>
<p>
It return Mysql object. It not connect to mysqld.
</p>
<dt>real_connect(host=nil, user=nil, passwd=nil, db=nil, port=nil, sock=nil, flag=nil)
<dt>connect(host=nil, user=nil, passwd=nil, db=nil, port=nil, sock=nil, flag=nil)
<dt>new(host=nil, user=nil, passwd=nil, db=nil, port=nil, sock=nil, flag=nil)
<dd>
<p>
connect to mysqld and return Mysql object.
</p>
<dt>escape_string(str)
<dt>quote(str)
<dd>
<p>
quote string for insert/update.
</p>
<dt>get_client_info()
<dt>client_info()
<dd>
<p>
return client version information.
</p>
<dt>get_client_version()
<dt>client_version()
<dd>
<p>
return client version as number.
</p>
<dt>debug(str)
<dd>
<p>
same as C API mysql_debug().
</p>
</dl>
<h3>OBJECT METHODS</h3>
<dl>
<dt>options(opt, val=nil)
<dd>
<p>
same as C API mysql_options().
</p>
<dt>real_connect(host=nil, user=nil, passwd=nil, db=nil, port=nil, sock=nil, flag=nil)
<dt>connect(host=nil, user=nil, passwd=nil, db=nil, port=nil, sock=nil, flag=nil)
<dd>
<p>
same as Mysql.real_connect().
</p>
<dt>affected_rows()
<dd>
<p>
return affected rows.
</p>
<dt>autocommit(mode)
<dd>
<p>
set autocommit mode.
</p>
<dt>change_user(user=nil, passwd=nil, db=nil)
<dd>
<p>
change user.
</p>
<dt>character_set_name()
<dd>
<p>
return character set.
</p>
<dt>close()
<dd>
<p>
close connection.
</p>
<dt>commit()
<dd>
<p>
commit transaction.
</p>
<dt>create_db(db)
<dd>
<p>
create database.
</p>
<dt>drop_db(db)
<dd>
<p>
drop database.
</p>
<dt>dump_debug_info()
<dd>
<p>
same as C API mysql_dump_debug_info().
</p>
<dt>errno()
<dd>
<p>
return error number.
</p>
<dt>error()
<dd>
<p>
return error message.
</p>
<dt>escape_string(str)
<dt>quote(str)
<dd>
<p>
quote strings for insert/update.
same as C API mysql_real_escape_string().
</p>
<dt>field_count()
<dd>
<p>
return number of columns of last query.
</p>
<dt>get_client_info()
<dt>client_info()
<dd>
<p>
return client version information.
</p>
<dt>get_client_version()
<dt>client_version()
<dd>
<p>
return client version number.
</p>
<dt>get_host_info()
<dt>host_info()
<dd>
<p>
return connection information.
</p>
<dt>get_proto_info()
<dt>proto_info()
<dd>
<p>
return connection protocol version.
</p>
<dt>get_server_info()
<dt>server_info()
<dd>
<p>
return server version information.
</p>
<dt>get_server_version()
<dt>server_version()
<dd>
<p>
return server version number.
</p>
<dt>info()
<dd>
<p>
return information of last query.
</p>
<dt>insert_id()
<dd>
<p>
return last AUTO_INCREMENT value.
</p>
<dt>kill(id)
<dd>
<p>
kill thread.
</p>
<dt>list_dbs(db=nil)
<dd>
<p>
return database list.
</p>
<dt>list_fields(table, field=nil)
<dd>
<p>
return Mysql::Result object.
</p>
<dt>list_processes()
<dd>
<p>
return Mysql::Result object.
</p>
<dt>list_tables(table=nil)
<dd>
<p>
return table list Array.
</p>
<dt>more_results?()
<dd>
<p>
returns true if more results exist from the currently executed query.
</p>
<dt>next_result()
<dd>
<p>
returns true if more results exist from the currently executed query.
after this, you do store_result() to get result table of query.
</p>
<dt>ping()
<dd>
<p>
check server.
</p>
<dt>prepare(q)
<dd>
<p>
</p>
<dt>query(q)
<dt>real_query(q)
<dd>
<p>
do query and store_result(). return Mysql::Result object.
If query_with_result is false, it does not store_result().
</p>
<dt>query(q) {|res| ...}
<dt>real_query(q) {|res| ...}
<dd>
<p>
do query and execute block with Mysql::Result object.
Mysql::Result object is freed when exiting block.
If multiple statement mode, it does repeat block each query.
</p>
<p>
Since MySQL/Ruby 2.8, it no longer turn on multiple statement mode automatically.
If you want to turn on multiple statement mode, set Mysql::CLIENT_MULTI_STATEMENTS for Mysql.connect or execute Mysql#set_server_option(Mysql::OPTION_MULTI_STATEMENTS_ON).
</p>
<dt>refresh(r)
<dd>
<p>
flush server log or cache.
</p>
<dt>reload()
<dd>
<p>
reload access privilege table.
</p>
<dt>rollback()
<dd>
<p>
rollback transaction.
</p>
<dt>select_db(db)
<dd>
<p>
select database.
</p>
<dt>set_server_option(opt)
<dd>
<p>
set option to server.
options is one of Mysql::OPTION_MULTI_STATEMENTS_ON, Mysql::OPTION_MULTI_STATEMENTS_OFF.
</p>
<dt>shutdown()
<dd>
<p>
shutdown server.
</p>
<dt>ssl_set(key=nil, cert=nil, ca=nil, capath=nil, cipher=nil)
<dd>
<p>
use SSL.
</p>
<dt>stat()
<dd>
<p>
return server status.
</p>
<dt>stmt_init()
<dd>
<p>
return Mysql::Stmt class object.
</p>
<dt>store_result()
<dd>
<p>
return Mysql::Result object.
</p>
<dt>thread_id()
<dd>
<p>
retrun thread id.
</p>
<dt>use_result()
<dd>
<p>
return Mysql::Result object.
</p>
<dt>warning_count()
<dd>
<p>
return warning count last query.
</p>
</dl>
<h3>OBJECT VARIABLES</h3>
<dl>
<dt>query_with_result
<dd>
<p>
If true, query() also invokes store_result() and returns a
Mysql::Result object. Default is true.
</p>
<dt>reconnect
<dd>
<p>
If true, reconnect to server automatically when disconect to server.
Default is false.
</p>
</dl>
<h2>Mysql::Result class</h2>
<h3>OBJECT METHODS</h3>
<dl>
<dt>free()
<dd>
<p>
free memory of result table.
</p>
<dt>data_seek(offset)
<dd>
<p>
seek row.
</p>
<dt>fetch_field()
<dd>
<p>
return next Mysql::Field object.
</p>
<dt>fetch_fields()
<dd>
<p>
return Array of Mysql::Field object.
</p>
<dt>fetch_field_direct(fieldnr)
<dd>
<p>
return Mysql::Field object.
</p>
<dt>fetch_lengths()
<dd>
<p>
return Array of field length.
</p>
<dt>fetch_row()
<dd>
<p>
return row as Array.
</p>
<dt>fetch_hash(with_table=false)
<dd>
<p>
return row as Hash.
If with_table is true, hash key format is "tablename.fieldname".
</p>
<dt>field_seek(offset)
<dd>
<p>
seek field.
</p>
<dt>field_tell()
<dd>
<p>
return field position.
</p>
<dt>num_fields()
<dd>
<p>
return number of fields.
</p>
<dt>num_rows()
<dd>
<p>
return number of rows.
</p>
<dt>row_seek(offset)
<dd>
<p>
seek row.
</p>
<dt>row_tell()
<dd>
<p>
return row position.
</p>
</dl>
<h3>ITERATOR</h3>
<dl>
<dt>each() {|x| ...}
<dd>
<p>
'x' is array of column values.
</p>
<dt>each_hash(with_table=false) {|x| ...}
<dd>
<p>
'x' is hash of column values, and the keys are the column names.
</p>
</dl>
<h2>Mysql::Field class</h2>
<h3>OBJECT VARIABLES(read only)</h3>
<dl>
<dt>name<dd>field name
<dt>table<dd>table name
<dt>def<dd>default value
<dt>type<dd>field type
<dt>length<dd>field length
<dt>max_length<dd>max field length
<dt>flags<dd>field flag
<dt>decimals<dd>number of decimals
</dl>
<h3>OBJECT METHODS</h3>
<dl>
<dt>hash()
<dd>
<p>
return field as Hash.
</p>
<p>
ex.) obj.name == obj.hash['name']
</p>
<dt>is_not_null?()
<dd>
<p>
True if this field is defined as NOT NULL.
</p>
<dt>is_num?()
<dd>
<p>
True if this field type is numeric.
</p>
<dt>is_pri_key?()
<dd>
<p>
True if this field is a primary key.
</p>
<dt>inspect()
<dd>
<p>
return "#<Mysql::Field:fieldname>"
</p>
</dl>
<h2>Mysql::Stmt class</h2>
<p>
Example:
</p>
<pre class="code">
my = Mysql.new(hostname, username, password, databasename)
st = my.prepare("insert into tblname (col1,col2,col3) values (?,?,?)")
st.execute("abc",123,Time.now)
st.prepare("select col1,col2,col3 from tblname")
st.execute
st.fetch # => ["abc", 123, #<Mysql::Time:2005-07-24 23:52:55>]
st.close
</pre>
<h3>OBJECT METHODS</h3>
<dl>
<dt>affected_rows()
<dd>
<p>
</p>
<dt>bind_result(class, ...)
<dd>
<p>
</p>
<dt>close()
<dd>
<p>
</p>
<dt>data_seek(offset)
<dd>
<p>
</p>
<dt>execute(arg, ...)
<dd>
<p>
</p>
<dt>fetch()
<dd>
<p>
</p>
<p>
Type mapping:
</p>
<table>
<tr><th>MySQL type<th>Ruby class
<tr><td>TINYINT, SMALLINT, MEDIUMINT, YEAR<td>Fixnum
<tr><td>INT, BIGINT<td>Fixnum or Bignum
<tr><td>FLOAT, DOUBLE<td>Float
<tr><td>DECIMAL<td>String
<tr><td>DATE, DATETIME, TIMESTAMP, TIME<td>Mysql::Time
<tr><td>CHAR, VARCHAR, BINARY, VARBINARY, TINYBLOB, TINYTEXT, TINYBLOB, TINYTEXT, MEDIUMBLOB, MEDIUMTEXT, LONGBLOB, LONGTEXT, ENUM, SET, BIT<td>String
<tr><td>NULL<td>NilClass
</table>
<dt>field_count()
<dd>
<p>
</p>
<dt>free_result()
<dd>
<p>
</p>
<dt>insert_id()
<dd>
<p>
</p>
<dt>num_rows()
<dd>
<p>
</p>
<dt>param_count()
<dd>
<p>
</p>
<dt>prepare(q)
<dd>
<p>
</p>
<dt>result_metadata()
<dd>
<p>
</p>
<dt>row_seek(offset)
<dd>
<p>
</p>
<dt>row_tell()
<dd>
<p>
</p>
<dt>sqlstate()
<dd>
<p>
</p>
</dl>
<h3>ITERATOR</h3>
<dl>
<dt>each() {|x| ...}
<dd>
<p>
</p>
</dl>
<h2>Mysql::Time class</h2>
<p>
</p>
<h3>CLASS METHODS</h3>
<dl>
<dt>new(year=0,month=0,day=0,hour=0,minute=0,second=0,neg=false,second_part=0)
<dd>
<p>
</p>
</dl>
<h3>OBJECT VARIABLES</h3>
<dl>
<dt>year
<dd>
<dt>month
<dd>
<dt>day
<dd>
<dt>hour
<dd>
<dt>minute
<dd>
<dt>second
<dd>
<dt>neg
<dd>
<dt>second_part
<dd>
</dl>
<h2>Mysql::Error class</h2>
<h3>OBJECT VARIABLES(read only)</h3>
<dl>
<dt>error
<dd>eror message
<dt>errno
<dd>error number
</dl>
<h2>History</h2>
<dl>
<dt>2009-02-01
<dd>
version 2.8.1<br>
<ul>
<li>correspond to Ruby 1.9.1
</ul>
<dt>2008-09-29
<dd>
version 2.8<br>
version 2.7.7
<ul>
<li>When connecting to MySQL, EINTR is occurred sometimes ([ruby-dev:31842])
<li>MySQL/Ruby 2.7.* can not be compiled on Ruby 1.8.5.
</ul>
<dt>2008-06-20
<dd>
version 2.8pre4<br>
<ul>
<li>[ruby-dev:35152]
</ul>
<dt>2008-06-17
<dd>
version 2.8pre3<br>
version 2.7.6
<ul>
<li>On 64bit machine, Mysql::Stmt#execute raise error on large numeric value(>= 2**30).
</ul>
<dt>2008-03-08
<dd>
version 2.8pre2<br>
version 2.7.5
<ul>
<li>On 64bit machine, Mysql::Stmt#fetch return invalid numeric value.
</ul>
<dt>2007-12-26
<dd>
version 2.8pre1
<ul>
<li>for Ruby 1.9.0
<li>Incompat: Mysql::Result#each_hash don't create column name string each row. it's shared.
<li>Incompat: Mysql#query with block no longer turn on multi-statements mode automatically.
</ul>
<dt>2007-08-22
<dd>
version 2.7.4
<ul>
<li>BUG: Mysql::Stmt#execute memory leak.
</ul>
<dt>2006-12-20
<dd>
version 2.7.3
<ul>
<li>BUG: Mysql#query with block is stopped when last query failed.
</ul>
<dt>2006-10-28
<dd>
version 2.7.2
<ul>
<li>BUG: Mysql::Stmt#result_metadata don't return nil. (Thanks to Hidetoshi)
<li>BUG: Mysql#close check mysql_errno.
<li>BUG: multistatement Mysql#query with block ignore error.
<li>extconf.rb for Visual C++. (Thanks to Shugo Maeda)
<li>support MySQL BIT type.
<li>add Mysql::Field::TYPE_BIT, TYPE_NEWDECIMAL.
</ul>
<dt>2006-06-04
<dd>
version 2.7.1
<ul>
<li>change free() to xfree(). To avoid crash on Windows. (Thanks Tobias Grimm)
</ul>
<dt>2005-08-22
<dd>
version 2.7
<ul>
<li>add constants for Mysql#options: Mysql::OPT_GUESS_CONNECTION, Mysql::OPT_USE_EMBEDDED_CONNECTION, Mysql::OPT_USE_REMOTE_CONNECTION, Mysql::SET_CLIENT_IP
<li>test.rb: for 4.0.x, 5.0.x
</ul>
<dt>2005-08-16
<dd>
version 2.7-beta3
<ul>
<li>add Mysql::Stmt#bind_result
</ul>
<dt>2005-08-02
<dd>
version 2.7-beta2
<ul>
<li>BUG: mysql.c.in: fetch_hash: nil value doesn't exist in hash. (Thanks Stefan Kaes)
<li>add constant Mysql::VERSION.
<li>add Mysql#prepare
</ul>
<dt>2005-07-24
<dd>
version 2.7-beta
<ul>
<li>add Mysql#stmt_init method
<li>add Mysql::Stmt, Mysql::Time, Mysql::RowOffset class
<li>add Mysql::Error#sqlstate method
<li>change offset value to Mysql::RowOffset object that is used by Mysql::Result#row_seek,row_tell
</ul>
<dt>2005-07-31
<dd>
version 2.6.3
<ul>
<li>add constant Mysql::VERSION.
</ul>
<dt>2005-07-26
<dd>
version 2.6.2
<ul>
<li>BUG: mysql.c.in: fetch_hash: nil value doesn't exist in hash. (Thanks Stefan Kaes)
</ul>
<dt>2005-06-28
<dd>
version 2.6.1
<ul>
<li>mysql.c.in: fix to compile error on MacOSX.
</ul>
<dt>2005-04-25
<dd>
version 2.6
<ul>
<li>add constants for Mysql#option():
Mysql::OPT_PROTOCOL, Mysql::OPT_READ_TIMEOUT,
Mysql::OPT_WRITE_TIMEOUT, Mysql::SET_CHARSET_DIR,
Mysql::SET_CHARSET_NAME, Mysql::SHARED_MEMORY_BASE_NAME,
Mysql::SECURE_AUTH
<li>add methods: Mysql#more_results?(), Mysql#next_result(),
Mysql#set_server_option(), Mysql#sqlstate()
<li>add constants for Mysql#connect():
Mysql::CLIENT_MULTI_STATEMENTS, Mysql::CLIENT_MULTI_RESULTS
<li>add constants for Mysql#set_server_option():
Mysql::OPTION_MULTI_STATEMENTS_ON,
Mysql::OPTION_MULTI_STATEMENTS_OFF
<li>add Mysql#query() with block
<li>add Mysql#reconnect(), Mysql#reconnect=()
<li>When connection was closed, it don't try to reconnect by default.
</ul>
<dt>2005-02-12
<dd>
version 2.5.2
<ul>
<li>BUG: Mysql#connect make object to not close. (Thanks Andres Salomon)
</ul>
<dt>2004-09-20
<dd>
version 2.5.1
<ul>
<li>add Mysql#set_ssl().
</ul>
<dt>2004-08-31
<dd>
version 2.5
<ul>
<li>correspond to MySQL 4.1.x.
<li>change MysqlRes, MysqlField, MysqlError to Mysql::Result, Mysql::Field, Mysql::Error.
<li>add Mysql.client_version(), Mysql.get_client_version(),
Mysql#client_version(), Mysql#get_client_version(),
Mysql#server_version(), Mysql#get_server_version(),
Mysql#warning_count(), Mysql#commit(), Mysql#rollback(),
Mysql#autocommit().
<li>add Mysql::Field#is_not_null?(), Mysql::Field#is_pri_key?(),
Mysql::Field#is_num?().
<li>add MysqlField::TYPE_VAR_STRING.
</ul>
<dt>2003-08-10
<dd>
version 2.4.5
<ul>
<li>extconf.rb: correspond to MySQL 4.1.
<li>mysql.c.in: correspond to Ruby 1.8.
</ul>
<dt>2003-02-23
<dd>
version 2.4.4a
<ul>
<li>make extconf.rb to correspond to Ruby 1.8.0
</ul>
<dt>2003-01-29
<dd>
version 2.4.4
<ul>
<li>add Mysql::OPT_LOCAL_INFILE.
<li>add --with-mysql-config option to extconf.rb.
<li>extconf.rb automatically detect typical library.
</ul>
<dt>2003-01-05
<dd>
version 2.4.3c
<ul>
<li>modified English README. Thanks to Paul DuBois.
</ul>
<dt>2002-12-24
<dd>
version 2.4.3b
<ul>
<li>make extconf.rb to correspond to Ruby 1.6.8.
</ul>
<dt>2002-11-07
<dd>
version 2.4.3a
<ul>
<li>fix bug duplicating constant.
</ul>
<dt>2002-09-10
<dd>
version 2.4.3
<ul>
<li>for error number with prefix ER_ .
<li>get error constant from errmsg.h and mysqld_error.h automatically.
</ul>
<dt>2002-01-07
<dd>
version 2.4.2
<ul>
<li>for MySQL 4.0.
<li>change `uint' to `unsigned int' (for mswin).
</ul>
<dt>2001-12-02
<dd>
version 2.4.1
<ul>
<li>remove `extern' (for Cygiwn).
<li>change option of extconf.rb.
</ul>
<dt>2001-10-12
<dd>
version 2.4.0
<ul>
<li>for Ruby 1.7.
<li>add Mysql::debug(), Mysql#change_user(), Mysql#character_set_name(), Mysql#dump_debug_info().
</ul>
</dl>
<h2>Author</h2>
<p>
e-mail: TOMITA Masahiro <a href="mailto:[email protected]">[email protected]</a>
<a href="http://tmtm.org">http://tmtm.org</a>
</p>
<hr>
<address><a href="mailto:[email protected]">TOMITA Masahiro</a></address>
<!-- Created: Sun Aug 29 11:52:09 JST 2004 -->
<!-- hhmts start -->
Last modified: Sun Feb 1 17:40:49 JST 2009
<!-- hhmts end -->
</body>
</html>
| wearelung/portoalegrecc | vendor/cache/ruby/1.8/gems/mysql-2.8.1/extra/README.html | HTML | mit | 21,139 |
@(g: Game, bg: String, theme: String)
<!doctype html>
<html>
<head>
<title>lichess.org TV</title>
@if(bg == "dark") {
@cssTag("dark.css")
}
@cssTag(s"piece/merida.css")
@cssTag("common.css")
@cssTag("board.css")
<meta charset="utf-8">
</head>
<body
class="base highlight @bg no-bg"
style="width: 224px; height: 264px; overflow: hidden;"
data-stream-url="@routes.Tv.streamOut">
<div id="featured_game" class="is2d highlight @bg @theme merida" title="lichess.org TV">
@gameFenNoCtx(g, g.firstPlayer.color, tv = true, blank = true)
@game.vstext(g)(none)
</div>
<script src="http://code.jquery.com/jquery-2.1.3.min.js"></script>
@jsTag("vendor/chessground.min.js")
@jsTagCompiled("tv.js")
@base.ga()
</body>
</html>
| Happy0/lila | app/views/tv/embed.scala.html | HTML | mit | 801 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>src/collision/ObjectCollisionMatrix.js - cannon</title>
<link rel="stylesheet" href="http://yui.yahooapis.com/3.9.1/build/cssgrids/cssgrids-min.css">
<link rel="stylesheet" href="../assets/vendor/prettify/prettify-min.css">
<link rel="stylesheet" href="../assets/css/main.css" id="site_styles">
<link rel="icon" href="../assets/favicon.ico">
<script src="http://yui.yahooapis.com/combo?3.9.1/build/yui/yui-min.js"></script>
</head>
<body class="yui3-skin-sam">
<div id="doc">
<div id="hd" class="yui3-g header">
<div class="yui3-u-3-4">
<h1><img src="../assets/css/logo.png" title="cannon" width="117" height="52"></h1>
</div>
<div class="yui3-u-1-4 version">
<em>API Docs for: 0.6.1</em>
</div>
</div>
<div id="bd" class="yui3-g">
<div class="yui3-u-1-4">
<div id="docs-sidebar" class="sidebar apidocs">
<div id="api-list">
<h2 class="off-left">APIs</h2>
<div id="api-tabview" class="tabview">
<ul class="tabs">
<li><a href="#api-classes">Classes</a></li>
<li><a href="#api-modules">Modules</a></li>
</ul>
<div id="api-tabview-filter">
<input type="search" id="api-filter" placeholder="Type to filter APIs">
</div>
<div id="api-tabview-panel">
<ul id="api-classes" class="apis classes">
<li><a href="../classes/AABB.html">AABB</a></li>
<li><a href="../classes/ArrayCollisionMatrix.html">ArrayCollisionMatrix</a></li>
<li><a href="../classes/Body.html">Body</a></li>
<li><a href="../classes/Box.html">Box</a></li>
<li><a href="../classes/Broadphase.html">Broadphase</a></li>
<li><a href="../classes/ConeEquation.html">ConeEquation</a></li>
<li><a href="../classes/ConeTwistConstraint.html">ConeTwistConstraint</a></li>
<li><a href="../classes/Constraint.html">Constraint</a></li>
<li><a href="../classes/ContactEquation.html">ContactEquation</a></li>
<li><a href="../classes/ContactMaterial.html">ContactMaterial</a></li>
<li><a href="../classes/ConvexPolyhedron.html">ConvexPolyhedron</a></li>
<li><a href="../classes/Cylinder.html">Cylinder</a></li>
<li><a href="../classes/Demo.html">Demo</a></li>
<li><a href="../classes/DistanceConstraint.html">DistanceConstraint</a></li>
<li><a href="../classes/Equation.html">Equation</a></li>
<li><a href="../classes/EventTarget.html">EventTarget</a></li>
<li><a href="../classes/FrictionEquation.html">FrictionEquation</a></li>
<li><a href="../classes/GridBroadphase.html">GridBroadphase</a></li>
<li><a href="../classes/GSSolver.html">GSSolver</a></li>
<li><a href="../classes/Heightfield.html">Heightfield</a></li>
<li><a href="../classes/HingeConstraint.html">HingeConstraint</a></li>
<li><a href="../classes/JacobianElement.html">JacobianElement</a></li>
<li><a href="../classes/LockConstraint.html">LockConstraint</a></li>
<li><a href="../classes/Mat3.html">Mat3</a></li>
<li><a href="../classes/Material.html">Material</a></li>
<li><a href="../classes/NaiveBroadphase.html">NaiveBroadphase</a></li>
<li><a href="../classes/Narrowphase.html">Narrowphase</a></li>
<li><a href="../classes/ObjectCollisionMatrix.html">ObjectCollisionMatrix</a></li>
<li><a href="../classes/Octree.html">Octree</a></li>
<li><a href="../classes/OctreeNode.html">OctreeNode</a></li>
<li><a href="../classes/Particle.html">Particle</a></li>
<li><a href="../classes/Plane.html">Plane</a></li>
<li><a href="../classes/PointToPointConstraint.html">PointToPointConstraint</a></li>
<li><a href="../classes/Pool.html">Pool</a></li>
<li><a href="../classes/Quaternion.html">Quaternion</a></li>
<li><a href="../classes/Ray.html">Ray</a></li>
<li><a href="../classes/RaycastResult.html">RaycastResult</a></li>
<li><a href="../classes/RaycastVehicle.html">RaycastVehicle</a></li>
<li><a href="../classes/RigidVehicle.html">RigidVehicle</a></li>
<li><a href="../classes/RotationalEquation.html">RotationalEquation</a></li>
<li><a href="../classes/RotationalMotorEquation.html">RotationalMotorEquation</a></li>
<li><a href="../classes/SAPBroadphase.html">SAPBroadphase</a></li>
<li><a href="../classes/Shape.html">Shape</a></li>
<li><a href="../classes/Solver.html">Solver</a></li>
<li><a href="../classes/Sphere.html">Sphere</a></li>
<li><a href="../classes/SPHSystem.html">SPHSystem</a></li>
<li><a href="../classes/SplitSolver.html">SplitSolver</a></li>
<li><a href="../classes/Spring.html">Spring</a></li>
<li><a href="../classes/Transform.html">Transform</a></li>
<li><a href="../classes/Trimesh.html">Trimesh</a></li>
<li><a href="../classes/TupleDictionary.html">TupleDictionary</a></li>
<li><a href="../classes/Vec3.html">Vec3</a></li>
<li><a href="../classes/Vec3Pool.html">Vec3Pool</a></li>
<li><a href="../classes/WheelInfo.html">WheelInfo</a></li>
<li><a href="../classes/World.html">World</a></li>
</ul>
<ul id="api-modules" class="apis modules">
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="yui3-u-3-4">
<div id="api-options">
Show:
<label for="api-show-inherited">
<input type="checkbox" id="api-show-inherited" checked>
Inherited
</label>
<label for="api-show-protected">
<input type="checkbox" id="api-show-protected">
Protected
</label>
<label for="api-show-private">
<input type="checkbox" id="api-show-private">
Private
</label>
<label for="api-show-deprecated">
<input type="checkbox" id="api-show-deprecated">
Deprecated
</label>
</div>
<div class="apidocs">
<div id="docs-main">
<div class="content">
<h1 class="file-heading">File: src/collision/ObjectCollisionMatrix.js</h1>
<div class="file">
<pre class="code prettyprint linenums">
module.exports = ObjectCollisionMatrix;
/**
* Records what objects are colliding with each other
* @class ObjectCollisionMatrix
* @constructor
*/
function ObjectCollisionMatrix() {
/**
* The matrix storage
* @property matrix
* @type {Object}
*/
this.matrix = {};
}
/**
* @method get
* @param {Number} i
* @param {Number} j
* @return {Number}
*/
ObjectCollisionMatrix.prototype.get = function(i, j) {
i = i.id;
j = j.id;
if (j > i) {
var temp = j;
j = i;
i = temp;
}
return i+'-'+j in this.matrix;
};
/**
* @method set
* @param {Number} i
* @param {Number} j
* @param {Number} value
*/
ObjectCollisionMatrix.prototype.set = function(i, j, value) {
i = i.id;
j = j.id;
if (j > i) {
var temp = j;
j = i;
i = temp;
}
if (value) {
this.matrix[i+'-'+j] = true;
}
else {
delete this.matrix[i+'-'+j];
}
};
/**
* Empty the matrix
* @method reset
*/
ObjectCollisionMatrix.prototype.reset = function() {
this.matrix = {};
};
/**
* Set max number of objects
* @method setNumObjects
* @param {Number} n
*/
ObjectCollisionMatrix.prototype.setNumObjects = function(n) {
};
</pre>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="../assets/vendor/prettify/prettify-min.js"></script>
<script>prettyPrint();</script>
<script src="../assets/js/yui-prettify.js"></script>
<script src="../assets/../api.js"></script>
<script src="../assets/js/api-filter.js"></script>
<script src="../assets/js/api-list.js"></script>
<script src="../assets/js/api-search.js"></script>
<script src="../assets/js/apidocs.js"></script>
</body>
</html>
| karunakaruna/karunakaruna.github.io | node_modules/cannon/docs/files/src_collision_ObjectCollisionMatrix.js.html | HTML | mit | 10,106 |
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Angular Todo MVC</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<app-root></app-root>
</body>
</html>
| socketio/socket.io | examples/basic-crud-application/angular-client/src/index.html | HTML | mit | 302 |
<!doctype html>
<!--[if IE 7]>
<html class="ie7 lt-ie10 lt-ie9 lt-ie8 no-js" lang="ru"><![endif]-->
<!--[if IE 8]>
<html class="ie8 lt-ie10 lt-ie9 no-js" lang="ru"><![endif]-->
<!--[if IE 9 ]>
<html class="ie9 lt-ie10 no-js" lang="ru"><![endif]-->
<!--[if (gt IE 9)|!(IE)]><!-->
<html class="no-js" lang="ru"><!--<![endif]-->
{{#with page_video_rubrika}}
<head>
{{> head/head head}}
</head>
<body class="page">
{{> header/header header}}
<div class="container">
<div class="row">
{{> breadcrumps/breadcrumps breadcrumps}}
</div>
<div class="page_secret_rubrika">
<h1 class="h1 h1_style">{{title}}</h1>
<div class="row">
<div class="page_secret_rubrika__list">
{{> _common/list_col-1/list_col-1_video video}}
{{> _common/paginator/paginator paginator}}
</div>
<div class="page_secret_rubrika__rubrikator">
{{> rubrikator/one-level-rubrikator/one-level-rubrikator rubrikator}}
</div>
</div>
</div>
</div>
{{> footer/footer footer}}
</body>
{{/with}}
</html> | dumperize/fm | builds/stable/pages/video_rubrika/video_rubrika.html | HTML | mit | 1,298 |
<!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:BufferGeometry] →
<h1>[name]</h1>
<p class="desc">This is the [page:BufferGeometry] port of [page:RingGeometry].</p>
<iframe id="scene" src="scenes/geometry-browser.html#RingBufferGeometry"></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>Example</h2>
<code>var geometry = new THREE.RingBufferGeometry( 1, 5, 32 );
var material = new THREE.MeshBasicMaterial( { color: 0xffff00, side: THREE.DoubleSide } );
var mesh = new THREE.Mesh( geometry, material );
scene.add( mesh );
</code>
<h2>Constructor</h2>
<h3>[name]([param:Float innerRadius], [param:Float outerRadius], [param:Integer thetaSegments], [param:Integer phiSegments], [param:Float thetaStart], [param:Float thetaLength])</h3>
<p>
innerRadius — Default is 0.5. <br />
outerRadius — Default is 1. <br />
thetaSegments — Number of segments. A higher number means the ring will be more round. Minimum is 3. Default is 8. <br />
phiSegments — Minimum is 1. Default is 1.<br />
thetaStart — Starting angle. Default is 0. <br />
thetaLength — Central angle. Default is Math.PI * 2.
</p>
<h2>Properties</h2>
<p>See the base [page:BufferGeometry] class for common properties.</p>
<h3>[property:Object parameters]</h3>
<p>
An object with a property for each of the constructor parameters. Any modification after instantiation does not change the geometry.
</p>
<h2>Methods</h2>
<p>See the base [page:BufferGeometry] class for common methods.</p>
<h2>Source</h2>
[link:https://github.com/mrdoob/three.js/blob/master/src/geometries/RingGeometry.js src/geometries/RingGeometry.js]
</body>
</html>
| billroy/jchart | public/js/three.js/docs/api/en/geometries/RingBufferGeometry.html | HTML | mit | 2,195 |
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example - example-example35-jquery</title>
<script src="../../components/jquery-2.1.1/jquery.js"></script>
<script src="../../../angular.js"></script>
<script src="script.js"></script>
</head>
<body ng-app="debounceExample">
<div ng-controller="ExampleController">
<form>
Name:
<input type="text" ng-model="user.name" ng-model-options="{ debounce: 250 }" /><br />
</form>
<pre>username = "{{user.name}}"</pre>
</div>
</body>
</html> | viral810/ngSimpleCMS | web/bundles/sunraangular/js/angular/angular-1.3.3/docs/examples/example-example35/index-jquery.html | HTML | mit | 553 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_01) on Mon Aug 04 16:56:49 EDT 2008 -->
<TITLE>
Rect
</TITLE>
<META NAME="date" CONTENT="2008-08-04">
<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="Rect";
}
}
</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/Rect.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-files/index-1.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">
<A HREF="../../jjil/core/Point.html" title="class in jjil.core"><B>PREV CLASS</B></A>
<A HREF="../../jjil/core/RgbImage.html" title="class in jjil.core"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../index.html?jjil/core/Rect.html" target="_top"><B>FRAMES</B></A>
<A HREF="Rect.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: NESTED | FIELD | <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">
jjil.core</FONT>
<BR>
Class Rect</H2>
<PRE>
java.lang.Object
<IMG SRC="../../resources/inherit.gif" ALT="extended by "><B>jjil.core.Rect</B>
</PRE>
<HR>
<DL>
<DT><PRE>public class <B>Rect</B><DT>extends java.lang.Object</DL>
</PRE>
<P>
Rect represents a rectangular region. The rectangle is specified using its
upper left coordinate and size or the upper left and lower right coordinates.
Methods allow the addition of a new point to the rectangle, merging rectangles,
computing rectangle size, etc.
<P>
<P>
<DL>
<DT><B>Author:</B></DT>
<DD>webb</DD>
</DL>
<HR>
<P>
<!-- ======== 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="../../jjil/core/Rect.html#Rect()">Rect</A></B>()</CODE>
<BR>
Creates a new instance of Rect</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../jjil/core/Rect.html#Rect(int, int, int, int)">Rect</A></B>(int nTlx,
int nTly,
int nWidth,
int nHeight)</CODE>
<BR>
Create a new Rect specifying the upper left coordinate and size.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../jjil/core/Rect.html#Rect(jjil.core.Point)">Rect</A></B>(<A HREF="../../jjil/core/Point.html" title="class in jjil.core">Point</A> p)</CODE>
<BR>
Create a new Rect (0 width and height) from a single point.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../jjil/core/Rect.html#Rect(jjil.core.Point, jjil.core.Point)">Rect</A></B>(<A HREF="../../jjil/core/Point.html" title="class in jjil.core">Point</A> p1,
<A HREF="../../jjil/core/Point.html" title="class in jjil.core">Point</A> p2)</CODE>
<BR>
Create a new Rect specifying two corners.</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> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../jjil/core/Rect.html#add(jjil.core.Point)">add</A></B>(<A HREF="../../jjil/core/Point.html" title="class in jjil.core">Point</A> p)</CODE>
<BR>
Add a new point to the Rect, extending it if necessary.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../jjil/core/Rect.html#getArea()">getArea</A></B>()</CODE>
<BR>
Return area of the rectangle.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../jjil/core/Rect.html#getHeight()">getHeight</A></B>()</CODE>
<BR>
Return the height of the rectangle.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../jjil/core/Rect.html#getLeft()">getLeft</A></B>()</CODE>
<BR>
Return the left (horizontal) position of the rectangle.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../jjil/core/Rect.html#getTop()">getTop</A></B>()</CODE>
<BR>
Return the top (vertical) position of the rectangle.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../jjil/core/Rect.html#getWidth()">getWidth</A></B>()</CODE>
<BR>
Return the width of the rectangle.</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>equals, getClass, hashCode, notify, notifyAll, toString, 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="Rect()"><!-- --></A><H3>
Rect</H3>
<PRE>
public <B>Rect</B>()</PRE>
<DL>
<DD>Creates a new instance of Rect
<P>
</DL>
<HR>
<A NAME="Rect(int, int, int, int)"><!-- --></A><H3>
Rect</H3>
<PRE>
public <B>Rect</B>(int nTlx,
int nTly,
int nWidth,
int nHeight)</PRE>
<DL>
<DD>Create a new Rect specifying the upper left coordinate and size.
<P>
<DL>
<DT><B>Parameters:</B><DD><CODE>nTlx</CODE> - the upper left x (horizontal) coordinate<DD><CODE>nTly</CODE> - the upper left y (vertical) coordinate<DD><CODE>nWidth</CODE> - the width<DD><CODE>nHeight</CODE> - the height</DL>
</DL>
<HR>
<A NAME="Rect(jjil.core.Point, jjil.core.Point)"><!-- --></A><H3>
Rect</H3>
<PRE>
public <B>Rect</B>(<A HREF="../../jjil/core/Point.html" title="class in jjil.core">Point</A> p1,
<A HREF="../../jjil/core/Point.html" title="class in jjil.core">Point</A> p2)</PRE>
<DL>
<DD>Create a new Rect specifying two corners.
<P>
<DL>
<DT><B>Parameters:</B><DD><CODE>p1</CODE> - the first corner.<DD><CODE>p2</CODE> - the second corner.</DL>
</DL>
<HR>
<A NAME="Rect(jjil.core.Point)"><!-- --></A><H3>
Rect</H3>
<PRE>
public <B>Rect</B>(<A HREF="../../jjil/core/Point.html" title="class in jjil.core">Point</A> p)</PRE>
<DL>
<DD>Create a new Rect (0 width and height) from a single point.
<P>
<DL>
<DT><B>Parameters:</B><DD><CODE>p</CODE> - the point.</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="add(jjil.core.Point)"><!-- --></A><H3>
add</H3>
<PRE>
public void <B>add</B>(<A HREF="../../jjil/core/Point.html" title="class in jjil.core">Point</A> p)</PRE>
<DL>
<DD>Add a new point to the Rect, extending it if necessary.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>p</CODE> - the new Point</DL>
</DD>
</DL>
<HR>
<A NAME="getArea()"><!-- --></A><H3>
getArea</H3>
<PRE>
public int <B>getArea</B>()</PRE>
<DL>
<DD>Return area of the rectangle.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>the Rect's area.</DL>
</DD>
</DL>
<HR>
<A NAME="getLeft()"><!-- --></A><H3>
getLeft</H3>
<PRE>
public int <B>getLeft</B>()</PRE>
<DL>
<DD>Return the left (horizontal) position of the rectangle.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>returns the left edge of the rectangle.</DL>
</DD>
</DL>
<HR>
<A NAME="getHeight()"><!-- --></A><H3>
getHeight</H3>
<PRE>
public int <B>getHeight</B>()</PRE>
<DL>
<DD>Return the height of the rectangle.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>the rectangle's height.</DL>
</DD>
</DL>
<HR>
<A NAME="getTop()"><!-- --></A><H3>
getTop</H3>
<PRE>
public int <B>getTop</B>()</PRE>
<DL>
<DD>Return the top (vertical) position of the rectangle.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>the top (vertical) edge of the rectangle.</DL>
</DD>
</DL>
<HR>
<A NAME="getWidth()"><!-- --></A><H3>
getWidth</H3>
<PRE>
public int <B>getWidth</B>()</PRE>
<DL>
<DD>Return the width of the rectangle.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>the width of the rectangle.</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/Rect.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-files/index-1.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">
<A HREF="../../jjil/core/Point.html" title="class in jjil.core"><B>PREV CLASS</B></A>
<A HREF="../../jjil/core/RgbImage.html" title="class in jjil.core"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../index.html?jjil/core/Rect.html" target="_top"><B>FRAMES</B></A>
<A HREF="Rect.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: NESTED | FIELD | <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>
</BODY>
</HTML>
| djimondev/Sensors-ToolKit | jjil/doc/jjil/core/Rect.html | HTML | apache-2.0 | 15,697 |
<!DOCTYPE HTML>
<html>
<body style="margin:0">
<div style="height:1205.6px"></div>
<div id="d" style="height:0.6px; background:red"></div>
</body>
</html>
| sergecodd/FireFox-OS | B2G/gecko/layout/reftests/scrolling/subpixel-1-ref.html | HTML | apache-2.0 | 162 |
<?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>translate.lang.identify</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="translate-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>
<!-- Project homepage -->
<th class="navbar" align="right" width="100%">
<table border="0" cellpadding="0" cellspacing="0">
<tr><th class="navbar" align="center"
><a class="navbar" target="_top" href="http://translate.sourceforge.net/wiki/toolkit/index">Translate Toolkit</a></th>
</tr></table></th>
</tr>
</table>
<table width="100%" cellpadding="0" cellspacing="0">
<tr valign="top">
<td width="100%">
<span class="breadcrumbs">
<a href="translate-module.html">Package translate</a> ::
<a href="translate.lang-module.html">Package lang</a> ::
Module identify
</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="translate.lang.identify-module.html"
target="_top">no frames</a>]</span></td></tr>
</table>
</td>
</tr>
</table>
<!-- ==================== MODULE DESCRIPTION ==================== -->
<h1 class="epydoc">Module identify</h1><p class="nomargin-top"><span class="codelink"><a href="translate.lang.identify-pysrc.html">source code</a></span></p>
<p>This module contains functions for identifying languages based on
language models.</p>
<!-- ==================== CLASSES ==================== -->
<a name="section-Classes"></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">Classes</span></td>
<td align="right" valign="top"
><span class="options">[<a href="#section-Classes"
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">
<a href="translate.lang.identify.LanguageIdentifier-class.html" class="summary-name">LanguageIdentifier</a>
</td>
</tr>
</table>
<p class="indent-wrapped-lines"><b>Imports:</b>
<span title="os.extsep">extsep</span>,
<span title="os.path">path</span>,
<a href="translate.misc.file_discovery-module.html#get_abs_data_filename" title="translate.misc.file_discovery.get_abs_data_filename">get_abs_data_filename</a>,
<a href="translate.storage.base.TranslationStore-class.html" title="translate.storage.base.TranslationStore">TranslationStore</a>,
<a href="translate.lang.ngram.NGram-class.html" title="translate.lang.ngram.NGram">NGram</a>
</p><br />
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Home link -->
<th> <a
href="translate-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>
<!-- Project homepage -->
<th class="navbar" align="right" width="100%">
<table border="0" cellpadding="0" cellspacing="0">
<tr><th class="navbar" align="center"
><a class="navbar" target="_top" href="http://translate.sourceforge.net/wiki/toolkit/index">Translate Toolkit</a></th>
</tr></table></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 Wed Mar 3 16:35:55 2010
</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>
| dbbhattacharya/kitsune | vendor/packages/translate-toolkit/translate/doc/api/translate.lang.identify-module.html | HTML | bsd-3-clause | 5,912 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.