path
stringlengths 5
312
| repo_name
stringlengths 5
116
| content
stringlengths 2
1.04M
|
|---|---|---|
2016/06/18/flow/index.html
|
HBobird/HBobird.github.io
|
<!DOCTYPE HTML>
<html lang="default">
<head>
<meta charset="UTF-8">
<title>流程图 | 思卓</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=3, minimum-scale=1">
<meta name="author" content="bobird">
<meta name="description" content="st=&gt;start: Starte=&gt;endop=&gt;operation: My Operationcond=&gt;condition: Yes or No?st-&gt;op-&gt;condcond(yes)-&gt;econd(no)-&gt;op">
<link rel="icon" href="/img/favicon.ico">
<link rel="apple-touch-icon" href="/img/pacman.jpg">
<link rel="apple-touch-icon-precomposed" href="/img/pacman.jpg">
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<header>
<div>
<div id="textlogo">
<h1 class="site-name"><a href="/" title="思卓">思卓</a></h1>
<h2 class="blog-motto">It's only too late if you decide it is. Get busy living. or get busy dying!</h2>
</div>
<div class="navbar"><a class="navbutton navmobile" href="#" title="Menu">
</a></div>
<nav class="animated">
<ul>
<li><a href="/">Home</a></li>
<li><a href="/archives">Archives</a></li>
<li>
<form class="search" action="//google.com/search" method="get" accept-charset="utf-8">
<label>Search</label>
<input type="text" id="search" name="q" autocomplete="off" maxlength="20" placeholder="Search" />
<input type="hidden" name="q" value="site:yoursite.com">
</form>
</li>
</ul>
</nav>
</div>
</header>
<div id="container">
<div id="main" class="post" itemscope itemprop="blogPost">
<article itemprop="articleBody">
<header class="article-info clearfix">
<h1 itemprop="name">
<a href="/2016/06/18/flow/" title="流程图" itemprop="url">流程图</a>
</h1>
<p class="article-author">By
<a href="http://yoursite.com" title="bobird">bobird</a>
</p>
<p class="article-time">
<time datetime="2016-06-18T13:32:49.599Z" itemprop="datePublished">2016-06-18</time>
Updated:<time datetime="2016-06-18T14:39:11.937Z" itemprop="dateModified">2016-06-18</time>
</p>
</header>
<div class="article-content">
<div id="toc" class="toc-article">
<strong class="toc-title">Contents</strong>
</div>
<figure class="highlight plain"><table><tr><td class="code"><pre><span class="line">st=>start: Start</span><br><span class="line">e=>end</span><br><span class="line">op=>operation: My Operation</span><br><span class="line">cond=>condition: Yes or No?</span><br><span class="line"></span><br><span class="line">st->op->cond</span><br><span class="line">cond(yes)->e</span><br><span class="line">cond(no)->op</span><br></pre></td></tr></table></figure>
</div>
<footer class="article-footer clearfix">
<div class="article-share" id="share">
<div data-url="http://yoursite.com/2016/06/18/flow/" data-title="流程图 | 思卓" data-tsina="null" class="share clearfix">
</div>
</div>
</footer>
</article>
<nav class="article-nav clearfix">
<div class="prev" >
<a href="/2016/06/20/word/" title="单词收集">
<strong>PREVIOUS:</strong><br/>
<span>
单词收集</span>
</a>
</div>
<div class="next">
<a href="/2016/06/17/css_em/" title="css em">
<strong>NEXT:</strong><br/>
<span>css em
</span>
</a>
</div>
</nav>
<section class="comment">
<div class="ds-thread"></div>
</section>
</div>
<div class="openaside"><a class="navbutton" href="#" title="Show Sidebar"></a></div>
<div id="toc" class="toc-aside">
<strong class="toc-title">Contents</strong>
</div>
<div id="asidepart">
<div class="closeaside"><a class="closebutton" href="#" title="Hide Sidebar"></a></div>
<aside class="clearfix">
<div class="rsspart">
<a href="null" target="_blank" title="rss">RSS</a>
</div>
</aside>
</div>
</div>
<footer><div id="footer" >
<div class="line">
<span></span>
<div class="author"></div>
</div>
<section class="info">
<p> 追求卓越,成功就会不经意的追上你! <br/>
As you think, so shall you become.</p>
</section>
<div class="social-font clearfix">
<a href="https://github.com/hbobird" target="_blank" title="github"></a>
</div>
<p class="copyright">Powered by <a href="http://hexo.io" target="_blank" title="hexo">hexo</a> and Theme by <a href="https://github.com/A-limon/pacman" target="_blank" title="Pacman">Pacman</a> © 2016
<a href="http://yoursite.com" target="_blank" title="bobird">bobird</a>
</p>
</div>
</footer>
<script src="/js/jquery-2.1.0.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.navbar').click(function(){
$('header nav').toggleClass('shownav');
});
var myWidth = 0;
function getSize(){
if( typeof( window.innerWidth ) == 'number' ) {
myWidth = window.innerWidth;
} else if( document.documentElement && document.documentElement.clientWidth) {
myWidth = document.documentElement.clientWidth;
};
};
var m = $('#main'),
a = $('#asidepart'),
c = $('.closeaside'),
o = $('.openaside');
$(window).resize(function(){
getSize();
if (myWidth >= 1024) {
$('header nav').removeClass('shownav');
}else
{
m.removeClass('moveMain');
a.css('display', 'block').removeClass('fadeOut');
o.css('display', 'none');
$('#toc.toc-aside').css('display', 'none');
}
});
c.click(function(){
a.addClass('fadeOut').css('display', 'none');
o.css('display', 'block').addClass('fadeIn');
m.addClass('moveMain');
});
o.click(function(){
o.css('display', 'none').removeClass('beforeFadeIn');
a.css('display', 'block').removeClass('fadeOut').addClass('fadeIn');
m.removeClass('moveMain');
});
$(window).scroll(function(){
o.css("top",Math.max(80,260-$(this).scrollTop()));
});
});
</script>
<script type="text/javascript">
$(document).ready(function(){
var ai = $('.article-content>iframe'),
ae = $('.article-content>embed'),
t = $('#toc'),
h = $('article h2')
ah = $('article h2'),
ta = $('#toc.toc-aside'),
o = $('.openaside'),
c = $('.closeaside');
if(ai.length>0){
ai.wrap('<div class="video-container" />');
};
if(ae.length>0){
ae.wrap('<div class="video-container" />');
};
if(ah.length==0){
t.css('display','none');
}else{
c.click(function(){
ta.css('display', 'block').addClass('fadeIn');
});
o.click(function(){
ta.css('display', 'none');
});
$(window).scroll(function(){
ta.css("top",Math.max(140,320-$(this).scrollTop()));
});
};
});
</script>
<script type="text/javascript">
$(document).ready(function(){
var $this = $('.share'),
url = $this.attr('data-url'),
encodedUrl = encodeURIComponent(url),
title = $this.attr('data-title'),
tsina = $this.attr('data-tsina');
var html = [
'<a href="#" class="overlay" id="qrcode"></a>',
'<div class="qrcode clearfix"><span>扫描二维码分享到微信朋友圈</span><a class="qrclose" href="#share"></a><strong>Loading...Please wait</strong><img id="qrcode-pic" data-src="http://s.jiathis.com/qrcode.php?url=' + encodedUrl + '"/></div>',
'<a href="#textlogo" class="article-back-to-top" title="Top"></a>',
'<a href="https://www.facebook.com/sharer.php?u=' + encodedUrl + '" class="article-share-facebook" target="_blank" title="Facebook"></a>',
'<a href="#qrcode" class="article-share-qrcode" title="QRcode"></a>',
'<a href="https://twitter.com/intent/tweet?url=' + encodedUrl + '" class="article-share-twitter" target="_blank" title="Twitter"></a>',
'<a href="http://service.weibo.com/share/share.php?title='+title+'&url='+encodedUrl +'&ralateUid='+ tsina +'&searchPic=true&style=number' +'" class="article-share-weibo" target="_blank" title="Weibo"></a>',
'<span title="Share to"></span>'
].join('');
$this.append(html);
$('.article-share-qrcode').click(function(){
var imgSrc = $('#qrcode-pic').attr('data-src');
$('#qrcode-pic').attr('src', imgSrc);
$('#qrcode-pic').load(function(){
$('.qrcode strong').text(' ');
});
});
});
</script>
<script type="text/javascript">
var duoshuoQuery = {short_name:"null"};
(function() {
var ds = document.createElement('script');
ds.type = 'text/javascript';ds.async = true;
ds.src = '//static.duoshuo.com/embed.js';
ds.charset = 'UTF-8';
(document.getElementsByTagName('head')[0]
|| document.getElementsByTagName('body')[0]).appendChild(ds);
})();
</script>
</body>
</html>
|
clean/Linux-x86_64-4.07.1-2.0.6/released/8.9.1/label/1.0.0.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>label: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.9.1 / label - 1.0.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
label
<small>
1.0.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-16 00:21:27 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-16 00:21:27 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 2 Virtual package relying on perl
coq 8.9.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.07.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.07.1 Official release 4.07.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "pierre-evariste.dagand@lip6.fr"
homepage: "https://github.com/pedagand/coq-label"
dev-repo: "git+https://github.com/pedagand/coq-label.git"
bug-reports: "https://github.com/pedagand/coq-label/issues"
authors: ["Pierre-Évariste Dagand" "Théo Zimmermann" "Pierre-Marie Pédrot"]
license: "MIT"
build: [
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Label"]
depends: [
"ocaml"
"coq" {>= "8.7" & < "8.8~"}
]
synopsis:
"'label' is a Coq plugin for referring to Propositional hypotheses by their type"
flags: light-uninstall
url {
src:
"https://github.com/pedagand/coq-label/releases/download/v1.0.0/coq-label-1.0.0.tar.gz"
checksum: "md5=3ae47300d7985cf2ddb0ba87354d061c"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-label.1.0.0 coq.8.9.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.9.1).
The following dependencies couldn't be met:
- coq-label -> coq < 8.8~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-label.1.0.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
html/123456238208.html
|
GoC-Spending/data-corporations
|
<!DOCTYPE html>
<!--[if lt IE 9]><html class="no-js lt-ie9" lang="en" dir="ltr"><![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="en" dir="ltr">
<!--<![endif]-->
<!-- Usage: /eic/site/ccc-rec.nsf/tpl-eng/template-1col.html?Open&id=3 (optional: ?Open&page=filename.html&id=x) -->
<!-- Created: ; Product Code: 536; Server: stratnotes2.ic.gc.ca -->
<head>
<!-- Title begins / Début du titre -->
<title>
R.J.V. Gas Field Services -
Complete profile - Canadian Company Capabilities - Industries and Business - Industry Canada
</title>
<!-- Title ends / Fin du titre -->
<!-- Meta-data begins / Début des métadonnées -->
<meta charset="utf-8" />
<meta name="dcterms.language" title="ISO639-2" content="eng" />
<meta name="dcterms.title" content="" />
<meta name="description" content="" />
<meta name="dcterms.description" content="" />
<meta name="dcterms.type" content="report, data set" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.issued" title="W3CDTF" content="" />
<meta name="dcterms.modified" title="W3CDTF" content="" />
<meta name="keywords" content="" />
<meta name="dcterms.creator" content="" />
<meta name="author" content="" />
<meta name="dcterms.created" title="W3CDTF" content="" />
<meta name="dcterms.publisher" content="" />
<meta name="dcterms.audience" title="icaudience" content="" />
<meta name="dcterms.spatial" title="ISO3166-1" content="" />
<meta name="dcterms.spatial" title="gcgeonames" content="" />
<meta name="dcterms.format" content="HTML" />
<meta name="dcterms.identifier" title="ICsiteProduct" content="536" />
<!-- EPI-11240 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- MCG-202 -->
<meta content="width=device-width,initial-scale=1" name="viewport">
<!-- EPI-11567 -->
<meta name = "format-detection" content = "telephone=no">
<!-- EPI-12603 -->
<meta name="robots" content="noarchive">
<!-- EPI-11190 - Webtrends -->
<script>
var startTime = new Date();
startTime = startTime.getTime();
</script>
<!--[if gte IE 9 | !IE ]><!-->
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="icon" type="image/x-icon">
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/wet-boew.min.css">
<!--<![endif]-->
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/theme.min.css">
<!--[if lt IE 9]>
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="shortcut icon" />
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/ie8-wet-boew.min.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew.min.js"></script>
<![endif]-->
<!--[if lte IE 9]>
<![endif]-->
<noscript><link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/noscript.min.css" /></noscript>
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<script>dataLayer1 = [];</script>
<!-- End Google Tag Manager -->
<!-- EPI-11235 -->
<link rel="stylesheet" href="/eic/home.nsf/css/add_WET_4-0_Canada_Apps.css">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link href="/app/ccc/srch/css/print.css" media="print" rel="stylesheet" type="text/css" />
</head>
<body class="home" vocab="http://schema.org/" typeof="WebPage">
<!-- EPIC HEADER BEGIN -->
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<noscript><iframe title="Google Tag Manager" src="//www.googletagmanager.com/ns.html?id=GTM-TLGQ9K" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer1'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer1','GTM-TLGQ9K');</script>
<!-- End Google Tag Manager -->
<!-- EPI-12801 -->
<span typeof="Organization"><meta property="legalName" content="Department_of_Industry"></span>
<ul id="wb-tphp">
<li class="wb-slc">
<a class="wb-sl" href="#wb-cont">Skip to main content</a>
</li>
<li class="wb-slc visible-sm visible-md visible-lg">
<a class="wb-sl" href="#wb-info">Skip to "About this site"</a>
</li>
</ul>
<header role="banner">
<div id="wb-bnr" class="container">
<section id="wb-lng" class="visible-md visible-lg text-right">
<h2 class="wb-inv">Language selection</h2>
<div class="row">
<div class="col-md-12">
<ul class="list-inline mrgn-bttm-0">
<li><a href="nvgt.do?V_TOKEN=1492313406023&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=38256&V_SEARCH.docsStart=38255&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn//magmi/web/download_file.php?_flId?_flxKy=e1s1&estblmntNo=234567041301&profileId=61&_evId=bck&lang=eng&V_SEARCH.showStricts=false&prtl=1&_flId?_flId?_flxKy=e1s1" title="Français" lang="fr">Français</a></li>
</ul>
</div>
</div>
</section>
<div class="row">
<div class="brand col-xs-8 col-sm-9 col-md-6">
<a href="http://www.canada.ca/en/index.html"><object type="image/svg+xml" tabindex="-1" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/sig-blk-en.svg"></object><span class="wb-inv"> Government of Canada</span></a>
</div>
<section class="wb-mb-links col-xs-4 col-sm-3 visible-sm visible-xs" id="wb-glb-mn">
<h2>Search and menus</h2>
<ul class="list-inline text-right chvrn">
<li><a href="#mb-pnl" title="Search and menus" aria-controls="mb-pnl" class="overlay-lnk" role="button"><span class="glyphicon glyphicon-search"><span class="glyphicon glyphicon-th-list"><span class="wb-inv">Search and menus</span></span></span></a></li>
</ul>
<div id="mb-pnl"></div>
</section>
<!-- Site Search Removed -->
</div>
</div>
<nav role="navigation" id="wb-sm" class="wb-menu visible-md visible-lg" data-trgt="mb-pnl" data-ajax-fetch="//cdn.canada.ca/gcweb-cdn-dev/sitemenu/sitemenu-en.html" typeof="SiteNavigationElement">
<h2 class="wb-inv">Topics menu</h2>
<div class="container nvbar">
<div class="row">
<ul class="list-inline menu">
<li><a href="https://www.canada.ca/en/services/jobs.html">Jobs</a></li>
<li><a href="http://www.cic.gc.ca/english/index.asp">Immigration</a></li>
<li><a href="https://travel.gc.ca/">Travel</a></li>
<li><a href="https://www.canada.ca/en/services/business.html">Business</a></li>
<li><a href="https://www.canada.ca/en/services/benefits.html">Benefits</a></li>
<li><a href="http://healthycanadians.gc.ca/index-eng.php">Health</a></li>
<li><a href="https://www.canada.ca/en/services/taxes.html">Taxes</a></li>
<li><a href="https://www.canada.ca/en/services.html">More services</a></li>
</ul>
</div>
</div>
</nav>
<!-- EPIC BODY BEGIN -->
<nav role="navigation" id="wb-bc" class="" property="breadcrumb">
<h2 class="wb-inv">You are here:</h2>
<div class="container">
<div class="row">
<ol class="breadcrumb">
<li><a href="/eic/site/icgc.nsf/eng/home" title="Home">Home</a></li>
<li><a href="/eic/site/icgc.nsf/eng/h_07063.html" title="Industries and Business">Industries and Business</a></li>
<li><a href="/eic/site/ccc-rec.nsf/tpl-eng/../eng/home" >Canadian Company Capabilities</a></li>
</ol>
</div>
</div>
</nav>
</header>
<main id="wb-cont" role="main" property="mainContentOfPage" class="container">
<!-- End Header -->
<!-- Begin Body -->
<!-- Begin Body Title -->
<!-- End Body Title -->
<!-- Begin Body Head -->
<!-- End Body Head -->
<!-- Begin Body Content -->
<br>
<!-- Complete Profile -->
<!-- Company Information above tabbed area-->
<input id="showMore" type="hidden" value='more'/>
<input id="showLess" type="hidden" value='less'/>
<h1 id="wb-cont">
Company profile - Canadian Company Capabilities
</h1>
<div class="profileInfo hidden-print">
<ul class="list-inline">
<li><a href="cccSrch.do?lang=eng&profileId=&prtl=1&key.hitsPerPage=25&searchPage=%252Fapp%252Fccc%252Fsrch%252FcccBscSrch.do%253Flang%253Deng%2526amp%253Bprtl%253D1%2526amp%253Btagid%253D&V_SEARCH.scopeCategory=CCC.Root&V_SEARCH.depth=1&V_SEARCH.showStricts=false&V_SEARCH.sortSpec=title+asc&rstBtn.x=" class="btn btn-link">New Search</a> |</li>
<li><form name="searchForm" method="post" action="/app/ccc/srch/bscSrch.do">
<input type="hidden" name="lang" value="eng" />
<input type="hidden" name="profileId" value="" />
<input type="hidden" name="prtl" value="1" />
<input type="hidden" name="searchPage" value="%2Fapp%2Fccc%2Fsrch%2FcccBscSrch.do%3Flang%3Deng%26amp%3Bprtl%3D1%26amp%3Btagid%3D" />
<input type="hidden" name="V_SEARCH.scopeCategory" value="CCC.Root" />
<input type="hidden" name="V_SEARCH.depth" value="1" />
<input type="hidden" name="V_SEARCH.showStricts" value="false" />
<input id="repeatSearchBtn" class="btn btn-link" type="submit" value="Return to search results" />
</form></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=38254&V_DOCUMENT.docRank=38255&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492313417040&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=234567149218&profileId=&key.newSearchLabel=">Previous Company</a></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=38256&V_DOCUMENT.docRank=38257&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492313417040&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=123456205091&profileId=&key.newSearchLabel=">Next Company</a></li>
</ul>
</div>
<details>
<summary>Third-Party Information Liability Disclaimer</summary>
<p>Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.</p>
</details>
<h2>
TerraVest Ind. Ltd. Partnership
</h2>
<div class="row">
<div class="col-md-5">
<h2 class="h5 mrgn-bttm-0">Legal Name:</h2>
<p>TerraVest Ind. Ltd. Partnership</p>
<h2 class="h5 mrgn-bttm-0">Operating Name:</h2>
<p>R.J.V. Gas Field Services</p>
<div class="mrgn-tp-md"></div>
<p class="mrgn-bttm-0" ><a href="http://www.rjvgas.com"
target="_blank" title="Website URL">http://www.rjvgas.com</a></p>
<p><a href="mailto:donc@rjvgas.com" title="donc@rjvgas.com">donc@rjvgas.com</a></p>
</div>
<div class="col-md-4 mrgn-sm-sm">
<h2 class="h5 mrgn-bttm-0">Mailing Address:</h2>
<address class="mrgn-bttm-md">
4901 Bruce Rd<br/>
VEGREVILLE,
Alberta<br/>
T9C 1C3
<br/>
</address>
<h2 class="h5 mrgn-bttm-0">Location Address:</h2>
<address class="mrgn-bttm-md">
4901 Bruce Rd<br/>
VEGREVILLE,
Alberta<br/>
T9C 1C3
<br/>
</address>
<p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>:
(780) 632-7774
</p>
<p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>:
(780) 632-6820</p>
</div>
<div class="col-md-3 mrgn-tp-md">
</div>
</div>
<div class="row mrgn-tp-md mrgn-bttm-md">
<div class="col-md-12">
<h2 class="wb-inv">Company Profile</h2>
<br> RJV Gas Field Services is a single-point source for the
<br>fabrication, supply, installation and field service of well site
<br>production services for the oil and natural gas industry.
<br>Products include pressure vessels and separator packages, SCADA
<br>systems, prefabricated building panels, above ground skid
<br>mounted double walled storage tanks, line heaters, low flow
<br>vessels and oilfield and electrical supplies. Services include
<br>field installation, transportation of products and electrical
<br>contracting.<br>
</div>
</div>
<!-- <div class="wb-tabs ignore-session update-hash wb-eqht-off print-active"> -->
<div class="wb-tabs ignore-session">
<div class="tabpanels">
<details id="details-panel1">
<summary>
Full profile
</summary>
<!-- Tab 1 -->
<h2 class="wb-invisible">
Full profile
</h2>
<!-- Contact Information -->
<h3 class="page-header">
Contact information
</h3>
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Donald
Cherniawsky
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Manager
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Manufacturing/Production/Operations.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(780) 632-7774
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(780) 632-6820
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
donc@rjvgas.com
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Todd
Cikaliuk
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
Manager-Electrical Div. <br>
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(780) 632-7774
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(780) 632-7423
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
ltcikaliuk@rjvgas.com
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Randy
Horon
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
Manager-Scada Division <br>
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(780) 632-7768
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(780) 632-7655
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
randy@rjvgas.com
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Wesley
Markowsky
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
Production Supervisor <br>
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Manufacturing/Production/Operations.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(780) 632-7774
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(780) 632-6820
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
wesm@rjvgas.com
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Paul
Casey
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Accountant
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Finance/Accounting.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(780) 632-7774
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(780) 632-7694
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
pcasey@rjvgas.com
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Katie
Boe
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
Office Administrator <br>
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(780) 632-7774
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(780) 632-7694
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
kboe@rjvgas.com
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Dale
Laniuk
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Chief Executive Officer
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Management Executive.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(780) 632-7774
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(780) 632-7694
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
laniuk@rjvgas.com
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Company Description -->
<h3 class="page-header">
Company description
</h3>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Country of Ownership:
</strong>
</div>
<div class="col-md-7">
Canada
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Year Established:
</strong>
</div>
<div class="col-md-7">
1976
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
No
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
333130 - Mining and Oil and Gas Field Machinery Manufacturing
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Alternate Industries (NAICS):
</strong>
</div>
<div class="col-md-7">
237120 - Oil and Gas Pipeline and Related Structures Construction<br>
332420 - Metal Tank (Heavy Gauge) Manufacturing<br>
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Manufacturer / Processor / Producer
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Total Sales ($CDN):
</strong>
</div>
<div class="col-md-7">
$25,000,000 to $49,999,999
</div>
</div>
</section>
<!-- Products / Services / Licensing -->
<h3 class="page-header">
Product / Service / Licensing
</h3>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
3-phase Vertical Mistex Sweet Svce Single Zone Separator-Meter Skid Unit <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
3" 600# ANSI sch. 40 flanged inlet and outlet connections at skid
<br>
edge. 2" 600# ANSI RFF sch. 80 process piping. 16" or 24" 3-
<br>
phase separator. 2" junior meter run and 2-pen flow recorder. 2"
<br>
manual choke valve.<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Oil Separator-Meter Skid Unit <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
2" NPT sch. 80 inlet/outlet connections at skid edge. 24"-2-
<br>
phase separator with mechanical controls. 2" junior meter run c/w
<br>
block and bypass valving. 2-pen flow recorder.<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Tank Packages <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
63 Barrel and 94 Barrel above ground double walled tanks.
<br>
Tanks are skid mounted and are complete with building and heater.<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Line Heaters <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
1,000,000 BTU line heater units; sweet and sour service; 3"
<br>
heating coils; SCADA equipped.<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
SCADA Systems <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
Complete supply, installation and commissioning of Fischer,
<br>
Barton, Unitec and Micra SCADA Systems. Service crews available
<br>
for startup and commissioning.<br>
<br>
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Technology Profile -->
<!-- Market Profile -->
<!-- Sector Information -->
<details class="mrgn-tp-md mrgn-bttm-md">
<summary>
Third-Party Information Liability Disclaimer
</summary>
<p>
Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.
</p>
</details>
</details>
<details id="details-panel2">
<summary>
Contacts
</summary>
<h2 class="wb-invisible">
Contact information
</h2>
<!-- Contact Information -->
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Donald
Cherniawsky
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Manager
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Manufacturing/Production/Operations.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(780) 632-7774
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(780) 632-6820
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
donc@rjvgas.com
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Todd
Cikaliuk
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
Manager-Electrical Div. <br>
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(780) 632-7774
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(780) 632-7423
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
ltcikaliuk@rjvgas.com
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Randy
Horon
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
Manager-Scada Division <br>
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(780) 632-7768
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(780) 632-7655
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
randy@rjvgas.com
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Wesley
Markowsky
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
Production Supervisor <br>
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Manufacturing/Production/Operations.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(780) 632-7774
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(780) 632-6820
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
wesm@rjvgas.com
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Paul
Casey
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Accountant
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Finance/Accounting.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(780) 632-7774
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(780) 632-7694
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
pcasey@rjvgas.com
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Katie
Boe
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
Office Administrator <br>
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(780) 632-7774
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(780) 632-7694
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
kboe@rjvgas.com
</div>
</div>
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Dale
Laniuk
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
<!--if client gender is not null or empty we use gender based job title-->
Chief Executive Officer
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Area of Responsibility:
</strong>
</div>
<div class="col-md-7">
Management Executive.
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(780) 632-7774
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(780) 632-7694
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
laniuk@rjvgas.com
</div>
</div>
</section>
</details>
<details id="details-panel3">
<summary>
Description
</summary>
<h2 class="wb-invisible">
Company description
</h2>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Country of Ownership:
</strong>
</div>
<div class="col-md-7">
Canada
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Year Established:
</strong>
</div>
<div class="col-md-7">
1976
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
No
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
333130 - Mining and Oil and Gas Field Machinery Manufacturing
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Alternate Industries (NAICS):
</strong>
</div>
<div class="col-md-7">
237120 - Oil and Gas Pipeline and Related Structures Construction<br>
332420 - Metal Tank (Heavy Gauge) Manufacturing<br>
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Manufacturer / Processor / Producer
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Total Sales ($CDN):
</strong>
</div>
<div class="col-md-7">
$25,000,000 to $49,999,999
</div>
</div>
</section>
</details>
<details id="details-panel4">
<summary>
Products, services and licensing
</summary>
<h2 class="wb-invisible">
Product / Service / Licensing
</h2>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
3-phase Vertical Mistex Sweet Svce Single Zone Separator-Meter Skid Unit <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
3" 600# ANSI sch. 40 flanged inlet and outlet connections at skid
<br>
edge. 2" 600# ANSI RFF sch. 80 process piping. 16" or 24" 3-
<br>
phase separator. 2" junior meter run and 2-pen flow recorder. 2"
<br>
manual choke valve.<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Oil Separator-Meter Skid Unit <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
2" NPT sch. 80 inlet/outlet connections at skid edge. 24"-2-
<br>
phase separator with mechanical controls. 2" junior meter run c/w
<br>
block and bypass valving. 2-pen flow recorder.<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Tank Packages <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
63 Barrel and 94 Barrel above ground double walled tanks.
<br>
Tanks are skid mounted and are complete with building and heater.<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Line Heaters <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
1,000,000 BTU line heater units; sweet and sour service; 3"
<br>
heating coils; SCADA equipped.<br>
<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
SCADA Systems <br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
Complete supply, installation and commissioning of Fischer,
<br>
Barton, Unitec and Micra SCADA Systems. Service crews available
<br>
for startup and commissioning.<br>
<br>
</div>
</div>
</section>
</details>
</div>
</div>
<div class="row">
<div class="col-md-12 text-right">
Last Update Date 2015-10-29
</div>
</div>
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
<!-- End Body Content -->
<!-- Begin Body Foot -->
<!-- End Body Foot -->
<!-- END MAIN TABLE -->
<!-- End body -->
<!-- Begin footer -->
<div class="row pagedetails">
<div class="col-sm-5 col-xs-12 datemod">
<dl id="wb-dtmd">
<dt class=" hidden-print">Date Modified:</dt>
<dd class=" hidden-print">
<span><time>2017-03-02</time></span>
</dd>
</dl>
</div>
<div class="clear visible-xs"></div>
<div class="col-sm-4 col-xs-6">
</div>
<div class="col-sm-3 col-xs-6 text-right">
</div>
<div class="clear visible-xs"></div>
</div>
</main>
<footer role="contentinfo" id="wb-info">
<nav role="navigation" class="container wb-navcurr">
<h2 class="wb-inv">About government</h2>
<!-- EPIC FOOTER BEGIN -->
<!-- EPI-11638 Contact us -->
<ul class="list-unstyled colcount-sm-2 colcount-md-3">
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07026.html#pageid=E048-H00000&from=Industries">Contact us</a></li>
<li><a href="https://www.canada.ca/en/government/dept.html">Departments and agencies</a></li>
<li><a href="https://www.canada.ca/en/government/publicservice.html">Public service and military</a></li>
<li><a href="https://www.canada.ca/en/news.html">News</a></li>
<li><a href="https://www.canada.ca/en/government/system/laws.html">Treaties, laws and regulations</a></li>
<li><a href="https://www.canada.ca/en/transparency/reporting.html">Government-wide reporting</a></li>
<li><a href="http://pm.gc.ca/eng">Prime Minister</a></li>
<li><a href="https://www.canada.ca/en/government/system.html">How government works</a></li>
<li><a href="http://open.canada.ca/en/">Open government</a></li>
</ul>
</nav>
<div class="brand">
<div class="container">
<div class="row">
<nav class="col-md-10 ftr-urlt-lnk">
<h2 class="wb-inv">About this site</h2>
<ul>
<li><a href="https://www.canada.ca/en/social.html">Social media</a></li>
<li><a href="https://www.canada.ca/en/mobile.html">Mobile applications</a></li>
<li><a href="http://www1.canada.ca/en/newsite.html">About Canada.ca</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html">Terms and conditions</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html#p1">Privacy</a></li>
</ul>
</nav>
<div class="col-xs-6 visible-sm visible-xs tofpg">
<a href="#wb-cont">Top of Page <span class="glyphicon glyphicon-chevron-up"></span></a>
</div>
<div class="col-xs-6 col-md-2 text-right">
<object type="image/svg+xml" tabindex="-1" role="img" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/wmms-blk.svg" aria-label="Symbol of the Government of Canada"></object>
</div>
</div>
</div>
</div>
</footer>
<!--[if gte IE 9 | !IE ]><!-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/wet-boew.min.js"></script>
<!--<![endif]-->
<!--[if lt IE 9]>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew2.min.js"></script>
<![endif]-->
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/theme.min.js"></script>
<!-- EPI-10519 -->
<span class="wb-sessto"
data-wb-sessto='{"inactivity": 1800000, "reactionTime": 180000, "sessionalive": 1800000, "logouturl": "/app/ccc/srch/cccSrch.do?lang=eng&prtl=1"}'></span>
<script src="/eic/home.nsf/js/jQuery.externalOpensInNewWindow.js"></script>
<!-- EPI-11190 - Webtrends -->
<script src="/eic/home.nsf/js/webtrends.js"></script>
<script>var endTime = new Date();</script>
<noscript>
<div><img alt="" id="DCSIMG" width="1" height="1" src="//wt-sdc.ic.gc.ca/dcs6v67hwe0ei7wsv8g9fv50d_3k6i/njs.gif?dcsuri=/nojavascript&WT.js=No&WT.tv=9.4.0&dcssip=www.ic.gc.ca"/></div>
</noscript>
<!-- /Webtrends -->
<!-- JS deps -->
<script src="/eic/home.nsf/js/jquery.imagesloaded.js"></script>
<!-- EPI-11262 - Util JS -->
<script src="/eic/home.nsf/js/_WET_4-0_utils_canada.min.js"></script>
<!-- EPI-11383 -->
<script src="/eic/home.nsf/js/jQuery.icValidationErrors.js"></script>
<span style="display:none;" id='app-info' data-project-groupid='' data-project-artifactid='' data-project-version='' data-project-build-timestamp='' data-issue-tracking='' data-scm-sha1='' data-scm-sha1-abbrev='' data-scm-branch='' data-scm-commit-date=''></span>
</body></html>
<!-- End Footer -->
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
|
docs/dynamicalSystem_8hpp.html
|
kartikkumar/dustsim
|
<!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.14"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>dustsim: dynamicalSystem.hpp File Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(document).ready(initResizable);
/* @license-end */</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">dustsim
 <span id="projectnumber">1.0.0</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.14 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
var searchBox = new SearchBox("searchBox", "search",false,'Search');
/* @license-end */
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
/* @license-end */</script>
<div id="main-nav"></div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(document).ready(function(){initNavTree('dynamicalSystem_8hpp.html','');});
/* @license-end */
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="header">
<div class="summary">
<a href="#nested-classes">Classes</a> |
<a href="#namespaces">Namespaces</a> </div>
<div class="headertitle">
<div class="title">dynamicalSystem.hpp File Reference</div> </div>
</div><!--header-->
<div class="contents">
<div class="textblock"><code>#include <astro/astro.hpp></code><br />
<code>#include "<a class="el" href="state_8hpp_source.html">dustsim/state.hpp</a>"</code><br />
<code>#include "<a class="el" href="typedefs_8hpp_source.html">dustsim/typedefs.hpp</a>"</code><br />
</div>
<p><a href="dynamicalSystem_8hpp_source.html">Go to the source code of this file.</a></p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a>
Classes</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">class  </td><td class="memItemRight" valign="bottom"><a class="el" href="classdustsim_1_1DynamicalSystem.html">dustsim::DynamicalSystem</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft"> </td><td class="mdescRight">Class containing parameters and models to describe the dynamical system. <a href="classdustsim_1_1DynamicalSystem.html#details">More...</a><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="namespaces"></a>
Namespaces</h2></td></tr>
<tr class="memitem:namespacedustsim"><td class="memItemLeft" align="right" valign="top">  </td><td class="memItemRight" valign="bottom"><a class="el" href="namespacedustsim.html">dustsim</a></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2"> </td></tr>
</table>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="dir_d44c64559bbebec7f509842c48db8b23.html">include</a></li><li class="navelem"><a class="el" href="dir_08130ff24f7633fb29a3abb10f5be15a.html">dustsim</a></li><li class="navelem"><a class="el" href="dynamicalSystem_8hpp.html">dynamicalSystem.hpp</a></li>
<li class="footer">Generated on Wed Dec 12 2018 18:06:32 for dustsim by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.14 </li>
</ul>
</div>
</body>
</html>
|
clean/Linux-x86_64-4.05.0-2.0.6/released/8.8.0/chinese/8.6.0.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>chinese: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.8.0 / chinese - 8.6.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
chinese
<small>
8.6.0
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-09-14 18:10:41 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-09-14 18:10:41 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.13 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.8.0 Formal proof management system.
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/chinese"
license: "Unknown"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Chinese"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
]
tags: [ "keyword: number theory" "keyword: chinese remainder" "keyword: primality" "keyword: prime numbers" "category: Mathematics/Arithmetic and Number Theory/Number theory" ]
authors: [ "Valérie Ménissier-Morain" ]
bug-reports: "https://github.com/coq-contribs/chinese/issues"
dev-repo: "git+https://github.com/coq-contribs/chinese.git"
synopsis: "A proof of the Chinese Remainder Lemma"
description: "OBSOLETE. See rather Zchinese-lemma that uses Z of Zarith."
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/chinese/archive/v8.6.0.tar.gz"
checksum: "md5=293b520ce4e9a5a276fa84f1b5173a36"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-chinese.8.6.0 coq.8.8.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.8.0).
The following dependencies couldn't be met:
- coq-chinese -> coq < 8.7~ -> ocaml < 4.03.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-chinese.8.6.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
Reports/fu/funscript.typescript.binding.angular_ui_router.1.1.0.37/FunScript.TypeScript.Binding.angular_ui_router-net40.html
|
kuhlenh/port-to-core
|
<!DOCTYPE html>
<html xmlns:msxsl="urn:schemas-microsoft-com:xslt">
<head>
<meta content="en-us" http-equiv="Content-Language" />
<meta content="text/html; charset=utf-16" http-equiv="Content-Type" />
<title _locid="PortabilityAnalysis0">.NET Portability Report</title>
<style>
/* Body style, for the entire document */
body {
background: #F3F3F4;
color: #1E1E1F;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
padding: 0;
margin: 0;
}
/* Header1 style, used for the main title */
h1 {
padding: 10px 0px 10px 10px;
font-size: 21pt;
background-color: #E2E2E2;
border-bottom: 1px #C1C1C2 solid;
color: #201F20;
margin: 0;
font-weight: normal;
}
/* Header2 style, used for "Overview" and other sections */
h2 {
font-size: 18pt;
font-weight: normal;
padding: 15px 0 5px 0;
margin: 0;
}
/* Header3 style, used for sub-sections, such as project name */
h3 {
font-weight: normal;
font-size: 15pt;
margin: 0;
padding: 15px 0 5px 0;
background-color: transparent;
}
h4 {
font-weight: normal;
font-size: 12pt;
margin: 0;
padding: 0 0 0 0;
background-color: transparent;
}
/* Color all hyperlinks one color */
a {
color: #1382CE;
}
/* Paragraph text (for longer informational messages) */
p {
font-size: 10pt;
}
/* Table styles */
table {
border-spacing: 0 0;
border-collapse: collapse;
font-size: 10pt;
}
table th {
background: #E7E7E8;
text-align: left;
text-decoration: none;
font-weight: normal;
padding: 3px 6px 3px 6px;
}
table td {
vertical-align: top;
padding: 3px 6px 5px 5px;
margin: 0px;
border: 1px solid #E7E7E8;
background: #F7F7F8;
}
.NoBreakingChanges {
color: darkgreen;
font-weight:bold;
}
.FewBreakingChanges {
color: orange;
font-weight:bold;
}
.ManyBreakingChanges {
color: red;
font-weight:bold;
}
.BreakDetails {
margin-left: 30px;
}
.CompatMessage {
font-style: italic;
font-size: 10pt;
}
.GoodMessage {
color: darkgreen;
}
/* Local link is a style for hyperlinks that link to file:/// content, there are lots so color them as 'normal' text until the user mouse overs */
.localLink {
color: #1E1E1F;
background: #EEEEED;
text-decoration: none;
}
.localLink:hover {
color: #1382CE;
background: #FFFF99;
text-decoration: none;
}
/* Center text, used in the over views cells that contain message level counts */
.textCentered {
text-align: center;
}
/* The message cells in message tables should take up all avaliable space */
.messageCell {
width: 100%;
}
/* Padding around the content after the h1 */
#content {
padding: 0px 12px 12px 12px;
}
/* The overview table expands to width, with a max width of 97% */
#overview table {
width: auto;
max-width: 75%;
}
/* The messages tables are always 97% width */
#messages table {
width: 97%;
}
/* All Icons */
.IconSuccessEncoded, .IconInfoEncoded, .IconWarningEncoded, .IconErrorEncoded {
min-width: 18px;
min-height: 18px;
background-repeat: no-repeat;
background-position: center;
}
/* Success icon encoded */
.IconSuccessEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconSuccess#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABPElEQVR4Xp1Tv0vDUBi8FqeA4NpBcBLcWnQSApncOnTo4FSnjP0DsnXpH5CxiwbHDg4Zuj4oOEXiJgiC4FDcCkLWmIMc1Pfw+eMgQ77v3Xf3Pe51YKGqqisAEwCR1TIAsiAIblSo6xrdHeJR85Xle3mdmCQKb0PsfqyxxzM8K15HZADl/H5+sHpZwYfxyRjTs+kWwKBx8yoHd2mRiuzF8mkJniWH/13u3Fjrs/EdhsdDFHGB/DLXEJBDLh1MWPAhPo1BLB4WX5yQywHR+m3tVe/t97D52CB/ziG0nIgD/qDuYg8WuCcVZ2YGwlJ3YDugkpR/VNcAEx6GEKhERSr71FuO4YCM4XBdwKvecjIlkSnsO0Hyp/GxSeJAdzBKzpOtnPwyyiPdAZhpZptT04tU+zk7s8czeges//s5C5+CwqrR4/gw+AAAAABJRU5ErkJggg==);
}
/* Information icon encoded */
.IconInfoEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconInformation#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABHElEQVR4Xs2TsUoDQRRF7wwoziokjZUKadInhdhukR9YP8DMX1hYW+QvdsXa/QHBbcXC7W0CamWTQnclFutceIQJwwaWNLlwm5k5d94M76mmaeCrrmsLYOocY12FcxZFUeozCqKqqgYA8uevv1H6VuPxcwlfk5N92KHBxfFeCSAxxswlYAW/Xr989x/mv9gkhtyMDhcAxgzRsp7flj8B/HF1RsMXq+NZMkopaHe7lbKxQUEIGbKsYNoGn969060hZBkQex/W8oRQwsQaW2o3Ago2SVcJUzAgY3N0lTCZZm+zPS8HB51gMmS1DEYyOz9acKO1D8JWTlafKIMxdhvlfdyT94Vv5h7P8Ky7nQzACmhvKq3zk3PjW9asz9D/1oigecsioooAAAAASUVORK5CYII=);
}
/* Warning icon encoded */
.IconWarningEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconWarning#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAx0lEQVR4XpWSMQ7CMAxFf4xAyBMLCxMrO8dhaBcuwdCJS3RJBw7SA/QGTCxdWJgiQYWKXJWKIXHIlyw5lqr34tQgEOdcBsCOx5yZK3hCCKdYXneQkh4pEfqzLfu+wVDSyyzFoJjfz9NB+pAF+eizx2Vruts0k15mPgvS6GYvpVtQhB61IB/dk6AF6fS4Ben0uIX5odtFe8Q/eW1KvFeH4e8khT6+gm5B+t3juyDt7n0jpe+CANTd+oTUjN/U3yVaABnSUjFz/gFq44JaVSCXeQAAAABJRU5ErkJggg==);
}
/* Error icon encoded */
.IconErrorEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconError#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABQElEQVR4XqWTvUoEQRCE6wYPZUA80AfwAQz23uCMjA7MDRQEIzPBVEyNTQUFIw00vcQTTMzuAh/AxEQQT8HF/3G/oGGnEUGuoNnd6qoZuqltyKEsyzVJq5I6rnUp6SjGeGhESikzzlc1eL7opfuVbrqbU1Zw9NCgtQMaZpY0eNnaaL2fHusvTK5vKu7sjSS1Y4y3QUA6K3e3Mau5UFDyMP7tYF9o8cAHZv68vipoIJg971PZIZ5HiwdvYGGvFVFHmGmZ2MxwmQYPXubPl9Up0tfoMQGetXd6mRbvhBw+boZ6WF7Mbv1+GsHRk0fQmPAH1GfmZirbCfDJ61tw3Px8/8pZsPAG4jlVhcPgZ7adwNWBB68lkRQWFiTgFlbnLY3DGGM7izIJIyT/jjIvEJw6fdJTc6krDzh6aMwMP9bvDH4ADSsa9uSWVJkAAAAASUVORK5CYII=);
}
</style>
</head>
<body>
<h1 _locid="PortabilityReport">.NET Portability Report</h1>
<div id="content">
<div id="submissionId" style="font-size:8pt;">
<p>
<i>
Submission Id
d59434e7-cdc4-4484-82fb-3eccf30f7a8b
</i>
</p>
</div>
<h2 _locid="SummaryTitle">
<a name="Portability Summary"></a>Portability Summary
</h2>
<div id="summary">
<table>
<tbody>
<tr>
<th>Assembly</th>
<th>ASP.NET 5,Version=v1.0</th>
<th>Windows,Version=v8.1</th>
<th>.NET Framework,Version=v4.6</th>
<th>Windows Phone,Version=v8.1</th>
</tr>
<tr>
<td><strong><a href="#FunScript.TypeScript.Binding.angular_ui_router">FunScript.TypeScript.Binding.angular_ui_router</a></strong></td>
<td class="text-center">100.00 %</td>
<td class="text-center">100.00 %</td>
<td class="text-center">100.00 %</td>
<td class="text-center">100.00 %</td>
</tr>
</tbody>
</table>
</div>
<div id="details">
</div>
</div>
</body>
</html>
|
d685c99/html/classv8_1_1Isolate_1_1Scope-members.html
|
v8-dox/v8-dox.github.io
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.11"/>
<title>V8 API Reference Guide for node.js v7.3.0 - v7.4.0: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">V8 API Reference Guide for node.js v7.3.0 - v7.4.0
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.11 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespacev8.html">v8</a></li><li class="navelem"><a class="el" href="classv8_1_1Isolate.html">Isolate</a></li><li class="navelem"><a class="el" href="classv8_1_1Isolate_1_1Scope.html">Scope</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">v8::Isolate::Scope Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="classv8_1_1Isolate_1_1Scope.html">v8::Isolate::Scope</a>, including all inherited members.</p>
<table class="directory">
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Scope</b>(Isolate *isolate) (defined in <a class="el" href="classv8_1_1Isolate_1_1Scope.html">v8::Isolate::Scope</a>)</td><td class="entry"><a class="el" href="classv8_1_1Isolate_1_1Scope.html">v8::Isolate::Scope</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">explicit</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>~Scope</b>() (defined in <a class="el" href="classv8_1_1Isolate_1_1Scope.html">v8::Isolate::Scope</a>)</td><td class="entry"><a class="el" href="classv8_1_1Isolate_1_1Scope.html">v8::Isolate::Scope</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
</table></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.11
</small></address>
</body>
</html>
|
rust-serial/target/doc/libc/unix/bsd/apple/constant.VM_FLAGS_USER_ALLOCATE.html
|
IllinoisRoboticsInSpace/Arduino_Control
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="refresh" content="0;URL=../../../../libc/constant.VM_FLAGS_USER_ALLOCATE.html">
</head>
<body>
<p>Redirecting to <a href="../../../../libc/constant.VM_FLAGS_USER_ALLOCATE.html">../../../../libc/constant.VM_FLAGS_USER_ALLOCATE.html</a>...</p>
<script>location.replace("../../../../libc/constant.VM_FLAGS_USER_ALLOCATE.html" + location.search + location.hash);</script>
</body>
</html>
|
AWS_CloudFormation_Template_Reference.docset/Contents/Resources/Documents/aws-resource-route53resolver-resolverruleassociation.html
|
pdhodgkinson/AWSCloudFormationTemplateReference-dash-docset
|
<!DOCTYPE html>
<html>
<head>
<link href="css/awsdocs.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/awsdocs.min.js"></script>
<meta charset="utf-8">
</head>
<body>
<div id="content" style="padding: 10px 30px;">
<h1 class="topictitle" id="aws-resource-route53resolver-resolverruleassociation">AWS::Route53Resolver::ResolverRuleAssociation</h1><p>The <code class="code">AWS::Route53Resolver::ResolverRuleAssociation</code> resource contains information about an association between a resolver rule and a
VPC.
For more information, see
<a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_ResolverRuleAssociation.html">ResolverRuleAssociation</a> in the
<em>Amazon Route 53 API Reference</em>.
</p><h2 id="aws-resource-route53resolver-resolverruleassociation-syntax">Syntax</h2><p>To declare this entity in your AWS CloudFormation template, use the following syntax:</p><div id="JSON" name="JSON" class="section langfilter">
<h3 id="aws-resource-route53resolver-resolverruleassociation-syntax.json">JSON</h3>
<pre class="programlisting"><div class="code-btn-container"><div class="btn-copy-code" title="Copy"></div><div class="btn-dark-theme" title="Dark theme" title-dark="Dark theme" title-light="Light theme"></div></div><code class="nohighlight">{
"Type" : "AWS::Route53Resolver::ResolverRuleAssociation",
"Properties" : {
"<a href="aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-name">Name</a>" : <em class="replaceable"><code>String</code></em>,
"<a href="aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-resolverruleid">ResolverRuleId</a>" : <em class="replaceable"><code>String</code></em>,
"<a href="aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-vpcid">VPCId</a>" : <em class="replaceable"><code>String</code></em>
}
}</code></pre>
</div><div id="YAML" name="YAML" class="section langfilter">
<h3 id="aws-resource-route53resolver-resolverruleassociation-syntax.yaml">YAML</h3>
<pre class="programlisting"><div class="code-btn-container"><div class="btn-copy-code" title="Copy"></div><div class="btn-dark-theme" title="Dark theme" title-dark="Dark theme" title-light="Light theme"></div></div><code class="nohighlight">Type: "AWS::Route53Resolver::ResolverRuleAssociation"
Properties:
<a href="aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-name">Name</a>: <em class="replaceable"><code>String</code></em>
<a href="aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-resolverruleid">ResolverRuleId</a>: <em class="replaceable"><code>String</code></em>
<a href="aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-vpcid">VPCId</a>: <em class="replaceable"><code>String</code></em></code></pre>
</div><h2 id="aws-resource-route53resolver-resolverruleassociation-properties">Properties</h2><div class="variablelist">
<dl>
<dt><a id="cfn-route53resolver-resolverruleassociation-name"></a><span class="term"><code class="code">Name</code></span></dt>
<dd>
<p>The name of an association between a resolver rule and a VPC.</p>
<p>
<em>Required</em>: No
</p>
<p>
<em>Type</em>: String
</p>
<p>
<em>Update requires</em>: <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement">Replacement</a>
</p>
</dd>
<dt><a id="cfn-route53resolver-resolverruleassociation-resolverruleid"></a><span class="term"><code class="code">ResolverRuleId</code></span></dt>
<dd>
<p>The ID of the resolver rule that you associated with the VPC that is specified by
<code class="code">VPCId</code>.
</p>
<p>
<em>Required</em>: Yes
</p>
<p>
<em>Type</em>: String
</p>
<p>
<em>Update requires</em>: <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement">Replacement</a>
</p>
</dd>
<dt><a id="cfn-route53resolver-resolverruleassociation-vpcid"></a><span class="term"><code class="code">VPCId</code></span></dt>
<dd>
<p>The ID of the VPC that you associated the resolver rule with.</p>
<p>
<em>Required</em>: Yes
</p>
<p>
<em>Type</em>: String
</p>
<p>
<em>Update requires</em>: <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement">Replacement</a>
</p>
</dd>
</dl>
</div><h2 id="aws-resource-route53resolver-resolverruleassociation-returnvalues">Return Values</h2><h3 id="aws-resource-route53resolver-resolverruleassociation-ref">Ref</h3><p>When you pass the logical ID of an <code class="code">AWS::Route53Resolver::ResolverRuleAssociation</code> resource to the intrinsic
<code class="code">Ref</code> function, the function returns the <code class="code">ResolverRuleAssociationId</code>.
</p><p>For more information about using the <code class="code">Ref</code> function, see <a href="intrinsic-function-reference-ref.html">Ref</a>.
</p><h3 id="aws-resource-route53resolver-resolverruleassociation-getatt">Fn::GetAtt</h3><p><code class="code">Fn::GetAtt</code> returns a value for a specified attribute of this type. The following are the available
attributes
and sample return values.
</p><div class="variablelist">
<dl>
<dt><span class="term"><code class="code">Name</code></span></dt>
<dd>
<p>The name of an association between a resolver rule and a VPC, such as <code class="code">test.example.com in beta VPC</code>.
</p>
</dd>
<dt><span class="term"><code class="code">ResolverRuleAssociationId</code></span></dt>
<dd>
<p>The ID of the resolver rule association that you want to get information about,
such as <code class="code">rslvr-rrassoc-97242eaf88example</code>.
</p>
</dd>
<dt><span class="term"><code class="code">ResolverRuleId</code></span></dt>
<dd>
<p>The ID of the resolver rule that you associated with the VPC that is specified by
<code class="code">VPCId</code>,
such as <code class="code">rslvr-rr-5328a0899example</code>.
</p>
</dd>
<dt><span class="term"><code class="code">VPCId</code></span></dt>
<dd>
<p>The ID of the VPC that you associated the resolver rule with, such as <code class="code">vpc-03cf94c75cexample</code>.
</p>
</dd>
</dl>
</div><p>For more information about using <code class="code">Fn::GetAtt</code>, see <a href="intrinsic-function-reference-getatt.html">Fn::GetAtt</a>.
</p><h2 id="aws-resource-route53resolver-resolverruleassociation-seealso">See Also</h2><div class="itemizedlist">
<ul class="itemizedlist" type="disc">
<li class="listitem">
<p>
<a href="https://docs.aws.amazon.com/Route53/latest/APIReference/API_route53resolver_ResolverRuleAssociation.html">ResolverRuleAssociation</a>
in the <em>Amazon Route 53 API Reference</em>.
</p>
</li>
</ul>
</div></div>
</body>
</html>
|
clean/Linux-x86_64-4.04.2-2.0.5/released/8.7.1/itree/3.2.0.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>itree: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.1 / itree - 3.2.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
itree
<small>
3.2.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-14 16:25:14 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-14 16:25:14 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.7.1 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.04.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.04.2 Official 4.04.2 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Li-yao Xia <lysxia@gmail.com>"
synopsis: "A Library for Representing Recursive and Impure Programs in Coq"
homepage: "https://github.com/DeepSpec/InteractionTrees"
dev-repo: "git+https://github.com/DeepSpec/InteractionTrees"
bug-reports: "https://github.com/DeepSpec/InteractionTrees/issues"
license: "MIT"
build: [ make "-j%{jobs}%" ]
install: [ make "install" ]
run-test: [ make "-j%{jobs}%" "all" ]
depends: [
"coq" {>= "8.8" & < "8.14~"}
"coq-ext-lib" {>= "0.11.1" & < "0.12"}
"coq-paco" {>= "4.0.0" & < "4.2.0"}
"ocamlbuild" {with-test}
]
authors: [
"Li-yao Xia <lysxia@gmail.com>"
"Yannick Zakowski <zakowski@seas.upenn.edu>"
"Paul He <paulhe@seas.upenn.edu>"
"Chung-Kil Hur <gil.hur@gmail.com>"
"Gregory Malecha <gmalecha@gmail.com>"
"Steve Zdancewic <stevez@cis.upenn.edu>"
"Benjamin C. Pierce <bcpierce@cis.upenn.edu>"
]
tags: [
"org:deepspec"
"logpath: ITree"
"date: 2020-07-21"
]
url {
http: "https://github.com/DeepSpec/InteractionTrees/archive/3.2.0.tar.gz"
checksum: "sha512=7d29f559c7e836fc894eae3eb93441e3a1bae6af5299cd4f374015c4f4dd264d56bf9fdc432bf949331a86314f5149555e00ed70c9ab16f6db147ad5038fb3c3"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-itree.3.2.0 coq.8.7.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.7.1).
The following dependencies couldn't be met:
- coq-itree -> coq >= 8.8 -> ocaml >= 4.05.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-itree.3.2.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
docs/robinhood/api/package-summary.html
|
ConradWeiser/Unofficial-Robinhood-Api
|
<!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_73) on Sat Jun 17 15:42:20 EDT 2017 -->
<title>robinhood.api</title>
<meta name="date" content="2017-06-17">
<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="robinhood.api";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../overview-summary.html">Overview</a></li>
<li class="navBarCell1Rev">Package</li>
<li>Class</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 Package</li>
<li><a href="../../robinhood/api/endpoint/account/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../index.html?robinhood/api/package-summary.html" target="_top">Frames</a></li>
<li><a href="package-summary.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 title="Package" class="title">Package robinhood.api</h1>
</div>
<div class="contentContainer">
<ul class="blockList">
<li class="blockList">
<table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation">
<caption><span>Class Summary</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Class</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="../../robinhood/api/ApiMethod.html" title="class in robinhood.api">ApiMethod</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../robinhood/api/ConfigurationManager.html" title="class in robinhood.api">ConfigurationManager</a></td>
<td class="colLast">
<div class="block">Method which stores the current configuration for the library.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../robinhood/api/LogHandler.html" title="class in robinhood.api">LogHandler</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../robinhood/api/RobinhoodApi.html" title="class in robinhood.api">RobinhoodApi</a></td>
<td class="colLast"> </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="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 class="navBarCell1Rev">Package</li>
<li>Class</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 Package</li>
<li><a href="../../robinhood/api/endpoint/account/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../index.html?robinhood/api/package-summary.html" target="_top">Frames</a></li>
<li><a href="package-summary.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>
|
clean/Linux-x86_64-4.10.1-2.0.6/extra-dev/dev/compcert/3.0.1.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>compcert: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / extra-dev</a></li>
<li class="active"><a href="">dev / compcert - 3.0.1</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
compcert
<small>
3.0.1
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2021-04-06 20:47:58 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-04-06 20:47:58 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 3 Virtual package relying on a GMP lib system installation
coq dev Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.10.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.10.1 Official release 4.10.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "Matej Košík <matej.kosik@inria.fr>"
homepage: "http://compcert.inria.fr/"
dev-repo: "git+https://github.com/AbsInt/CompCert.git"
bug-reports: "https://github.com/AbsInt/CompCert/issues"
license: "INRIA Non-Commercial License Agreement"
build: [
[
"./configure"
"ia32-linux" {os = "linux"}
"ia32-macosx" {os = "macos"}
"ia32-cygwin" {os = "cygwin"}
"-bindir"
"%{bin}%"
"-libdir"
"%{lib}%/compcert"
"-clightgen"
]
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
remove: [
["rm" "%{bin}%/ccomp"]
["rm" "%{bin}%/clightgen"]
["rm" "-R" "%{lib}%/compcert"]
["rm" "%{share}%/compcert.ini"]
]
depends: [
"ocaml"
"coq" {= "8.6"}
"menhir" {>= "20160303" & < "20180530"}
]
synopsis: "The CompCert C compiler"
authors: "Xavier Leroy <xavier.leroy@inria.fr>"
flags: light-uninstall
url {
src: "https://github.com/AbsInt/CompCert/archive/v3.0.1.tar.gz"
checksum: "md5=76af0b470261df6b19053a60474fc84a"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-compcert.3.0.1 coq.dev</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is dev).
The following dependencies couldn't be met:
- coq-compcert -> coq = 8.6 -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-compcert.3.0.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
docs/test-file/buildDocs/memoizeAll.spec.js.html
|
steelsojka/lodash-decorators
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<base data-ice="baseUrl" href="../../">
<title data-ice="title">buildDocs/memoizeAll.spec.js | Lodash Decorators Documentation API Document</title>
<link type="text/css" rel="stylesheet" href="css/style.css">
<link type="text/css" rel="stylesheet" href="css/prettify-tomorrow.css">
<script src="script/prettify/prettify.js"></script>
<script src="script/manual.js"></script>
</head>
<body class="layout-container" data-ice="rootContainer">
<header>
<a href="./">Home</a>
<a href="identifiers.html">Reference</a>
<a href="source.html">Source</a>
<a href="test.html" data-ice="testLink">Test</a>
<a data-ice="repoURL" href="http://github.com/steelsojka/lodash-decorators" class="repo-url-github">Repository</a>
<div class="search-box">
<span>
<img src="./image/search.png">
<span class="search-input-edge"></span><input class="search-input"><span class="search-input-edge"></span>
</span>
<ul class="search-result"></ul>
</div>
</header>
<nav class="navigation" data-ice="nav"><div>
<ul>
<li data-ice="doc"><span data-ice="kind" class="kind-function">F</span><span data-ice="name"><span><a href="function/index.html#static-function-BindAll">BindAll</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-function">F</span><span data-ice="name"><span><a href="function/index.html#static-function-Mixin">Mixin</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-After">After</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-AfterAll">AfterAll</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-Ary">Ary</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-Attempt">Attempt</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-Before">Before</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-BeforeAll">BeforeAll</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-Bind">Bind</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-Curry">Curry</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-CurryAll">CurryAll</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-CurryRight">CurryRight</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-CurryRightAll">CurryRightAll</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-Debounce">Debounce</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-DebounceAll">DebounceAll</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-Defer">Defer</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-Delay">Delay</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-Flip">Flip</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-Flow">Flow</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-FlowRight">FlowRight</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-Memoize">Memoize</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-MemoizeAll">MemoizeAll</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-Negate">Negate</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-Once">Once</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-OnceAll">OnceAll</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-OverArgs">OverArgs</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-Partial">Partial</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-PartialRight">PartialRight</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-Rearg">Rearg</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-Rest">Rest</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-Spread">Spread</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-Tap">Tap</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-Throttle">Throttle</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-ThrottleGetter">ThrottleGetter</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-ThrottleSetter">ThrottleSetter</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-ThrottleAll">ThrottleAll</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-Unary">Unary</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-Wrap">Wrap</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">applicators</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/buildDocs/applicators/Applicator.js~Applicator.html">Applicator</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/buildDocs/applicators/BindApplicator.js~BindApplicator.html">BindApplicator</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/buildDocs/applicators/ComposeApplicator.js~ComposeApplicator.html">ComposeApplicator</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/buildDocs/applicators/InvokeApplicator.js~InvokeApplicator.html">InvokeApplicator</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/buildDocs/applicators/MemoizeApplicator.js~MemoizeApplicator.html">MemoizeApplicator</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/buildDocs/applicators/PartialApplicator.js~PartialApplicator.html">PartialApplicator</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/buildDocs/applicators/PartialedApplicator.js~PartialedApplicator.html">PartialedApplicator</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/buildDocs/applicators/PostValueApplicator.js~PostValueApplicator.html">PostValueApplicator</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/buildDocs/applicators/PreValueApplicator.js~PreValueApplicator.html">PreValueApplicator</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/buildDocs/applicators/WrapApplicator.js~WrapApplicator.html">WrapApplicator</a></span></span></li>
<li data-ice="doc"><div data-ice="dirPath" class="nav-dir-path">factory</div><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/buildDocs/factory/DecoratorConfig.js~DecoratorConfig.html">DecoratorConfig</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-class">C</span><span data-ice="name"><span><a href="class/buildDocs/factory/DecoratorFactory.js~InternalDecoratorFactory.html">InternalDecoratorFactory</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-DecoratorFactory">DecoratorFactory</a></span></span></li>
<li data-ice="doc"><span data-ice="kind" class="kind-variable">V</span><span data-ice="name"><span><a href="variable/index.html#static-variable-InstanceChainMap">InstanceChainMap</a></span></span></li>
</ul>
</div>
</nav>
<div class="content" data-ice="content"><h1 data-ice="title">buildDocs/memoizeAll.spec.js</h1>
<pre class="source-code line-number raw-source-code"><code class="prettyprint linenums" data-ice="content">import * as tslib_1 from "tslib";
import { expect } from 'chai';
import { spy } from 'sinon';
import { MemoizeAll } from './memoizeAll';
describe('memoizeAll', () => {
it('should memoize the function', () => {
const _spy = spy();
class MyClass {
fn(n) {
_spy(n);
expect(this, 'context').to.equal(myClass);
return n;
}
}
tslib_1.__decorate([
MemoizeAll()
], MyClass.prototype, "fn", null);
const myClass = new MyClass();
const myClass2 = new MyClass();
myClass.fn(1);
myClass.fn(1);
myClass.fn(1);
myClass2.fn(1);
myClass2.fn(1);
myClass2.fn(1);
expect(_spy.callCount).to.equal(1);
});
describe('with function resolver', () => {
it('should resolve the key', () => {
const _spy = spy();
class MyClass {
fn(item) {
_spy();
expect(this, 'context').to.equal(myClass);
return item.value;
}
}
tslib_1.__decorate([
MemoizeAll((item) => item.key)
], MyClass.prototype, "fn", null);
const myClass = new MyClass();
const myClass2 = new MyClass();
myClass.fn({ key: 'test', value: 10 });
myClass.fn({ key: 'test', value: 20 });
myClass.fn({ key: 'test', value: 30 });
myClass2.fn({ key: 'test', value: 40 });
myClass2.fn({ key: 'test', value: 50 });
expect(myClass.fn({ key: 'test', value: 50 })).to.equal(10);
expect(_spy.callCount).to.equal(1);
});
});
});
</code></pre>
</div>
<footer class="footer">
Generated by <a href="https://esdoc.org">ESDoc<span data-ice="esdocVersion">(0.5.2)</span><img src="./image/esdoc-logo-mini-black.png"></a>
</footer>
<script src="script/search_index.js"></script>
<script src="script/search.js"></script>
<script src="script/pretty-print.js"></script>
<script src="script/inherited-summary.js"></script>
<script src="script/test-summary.js"></script>
<script src="script/inner-link.js"></script>
<script src="script/patch-for-local.js"></script>
</body>
</html>
|
xlsconv/templates/fields/select.html
|
wq/xlsform-converter
|
{{=[[ ]]=}}
<li class="ui-field-contain">
<label for='[[form.name]]-[[field_id]]'>[[label]]</label>
<select id='[[form.name]]-[[field_id]]' data-xform-type='[[type]]' name='[[field_formname]]'[[#bind.required]] required[[/bind.required]][[#type_is_select]] multiple[[/type_is_select]]>
[[#type_is_select1]]
<option value="">Select one...</option>
[[/type_is_select1]]
{{#[[name]]_choices}}
<option value="{{name}}"{{#selected}} selected{{/selected}}>
{{label}}
</option>
{{/[[name]]_choices}}
</select>
[[#hint]]
<p class="hint">[[hint]]</p>
[[/hint]]
<p class='error [[form.name]]-[[field_id]]-errors'></p>
</li>
|
doc/jdk6_cn/javax/management/ReflectionException.html
|
piterlin/piterlin.github.io
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0-beta2) on Mon Mar 19 18:29:49 CST 2007 -->
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
<TITLE>
ReflectionException (Java Platform SE 6)
</TITLE><script>var _hmt = _hmt || [];(function() {var hm = document.createElement("script");hm.src = "//hm.baidu.com/hm.js?dd1361ca20a10cc161e72d4bc4fef6df";var s = document.getElementsByTagName("script")[0];s.parentNode.insertBefore(hm, s);})();</script>
<META NAME="date" CONTENT="2007-03-19">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ReflectionException (Java Platform SE 6)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="跳过导航链接"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>概述</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>软件包</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>类</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/ReflectionException.html"><FONT CLASS="NavBarFont1"><B>使用</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>树</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>已过时</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>索引</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>帮助</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Java<sup><font size=-2>TM</font></sup> Platform<br>Standard Ed. 6</b></EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../javax/management/QueryExp.html" title="javax.management 中的接口"><B>上一个类</B></A>
<A HREF="../../javax/management/RuntimeErrorException.html" title="javax.management 中的类"><B>下一个类</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../index.html?javax/management/ReflectionException.html" target="_top"><B>框架</B></A>
<A HREF="ReflectionException.html" target="_top"><B>无框架</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../allclasses-noframe.html"><B>所有类</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../allclasses-noframe.html"><B>所有类</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
摘要: 嵌套 | 字段 | <A HREF="#constructor_summary">构造方法</A> | <A HREF="#method_summary">方法</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
详细信息: 字段 | <A HREF="#constructor_detail">构造方法</A> | <A HREF="#method_detail">方法</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
javax.management</FONT>
<BR>
类 ReflectionException</H2>
<PRE>
<A HREF="../../java/lang/Object.html" title="java.lang 中的类">java.lang.Object</A>
<IMG SRC="../../resources/inherit.gif" ALT="继承者 "><A HREF="../../java/lang/Throwable.html" title="java.lang 中的类">java.lang.Throwable</A>
<IMG SRC="../../resources/inherit.gif" ALT="继承者 "><A HREF="../../java/lang/Exception.html" title="java.lang 中的类">java.lang.Exception</A>
<IMG SRC="../../resources/inherit.gif" ALT="继承者 "><A HREF="../../javax/management/JMException.html" title="javax.management 中的类">javax.management.JMException</A>
<IMG SRC="../../resources/inherit.gif" ALT="继承者 "><B>javax.management.ReflectionException</B>
</PRE>
<DL>
<DT><B>所有已实现的接口:</B> <DD><A HREF="../../java/io/Serializable.html" title="java.io 中的接口">Serializable</A></DD>
</DL>
<HR>
<DL>
<DT><PRE>public class <B>ReflectionException</B><DT>extends <A HREF="../../javax/management/JMException.html" title="javax.management 中的类">JMException</A></DL>
</PRE>
<P>
表示在使用 java.lang.reflect 类调用 MBean 上的方法时,MBean 服务器中抛出的异常。它可以“包装”抛出的实际 java.lang.Exception。
<P>
<P>
<DL>
<DT><B>从以下版本开始:</B></DT>
<DD>1.5</DD>
<DT><B>另请参见:</B><DD><A HREF="../../serialized-form.html#javax.management.ReflectionException">序列化表格</A></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>构造方法摘要</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../javax/management/ReflectionException.html#ReflectionException(java.lang.Exception)">ReflectionException</A></B>(<A HREF="../../java/lang/Exception.html" title="java.lang 中的类">Exception</A> e)</CODE>
<BR>
创建包装实际 <CODE>java.lang.Exception</CODE> 的 <CODE>ReflectionException</CODE>。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../javax/management/ReflectionException.html#ReflectionException(java.lang.Exception, java.lang.String)">ReflectionException</A></B>(<A HREF="../../java/lang/Exception.html" title="java.lang 中的类">Exception</A> e,
<A HREF="../../java/lang/String.html" title="java.lang 中的类">String</A> message)</CODE>
<BR>
创建包装带有详细消息的实际 <CODE>java.lang.Exception</CODE> 的 <CODE>ReflectionException</CODE>。</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>方法摘要</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../java/lang/Throwable.html" title="java.lang 中的类">Throwable</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../javax/management/ReflectionException.html#getCause()">getCause</A></B>()</CODE>
<BR>
返回抛出的实际 <A HREF="../../java/lang/Exception.html" title="java.lang 中的类"><CODE>Exception</CODE></A>。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../java/lang/Exception.html" title="java.lang 中的类">Exception</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../javax/management/ReflectionException.html#getTargetException()">getTargetException</A></B>()</CODE>
<BR>
返回抛出的实际 <A HREF="../../java/lang/Exception.html" title="java.lang 中的类"><CODE>Exception</CODE></A>。</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Throwable"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>从类 java.lang.<A HREF="../../java/lang/Throwable.html" title="java.lang 中的类">Throwable</A> 继承的方法</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../java/lang/Throwable.html#fillInStackTrace()">fillInStackTrace</A>, <A HREF="../../java/lang/Throwable.html#getLocalizedMessage()">getLocalizedMessage</A>, <A HREF="../../java/lang/Throwable.html#getMessage()">getMessage</A>, <A HREF="../../java/lang/Throwable.html#getStackTrace()">getStackTrace</A>, <A HREF="../../java/lang/Throwable.html#initCause(java.lang.Throwable)">initCause</A>, <A HREF="../../java/lang/Throwable.html#printStackTrace()">printStackTrace</A>, <A HREF="../../java/lang/Throwable.html#printStackTrace(java.io.PrintStream)">printStackTrace</A>, <A HREF="../../java/lang/Throwable.html#printStackTrace(java.io.PrintWriter)">printStackTrace</A>, <A HREF="../../java/lang/Throwable.html#setStackTrace(java.lang.StackTraceElement[])">setStackTrace</A>, <A HREF="../../java/lang/Throwable.html#toString()">toString</A></CODE></TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>从类 java.lang.<A HREF="../../java/lang/Object.html" title="java.lang 中的类">Object</A> 继承的方法</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../java/lang/Object.html#clone()">clone</A>, <A HREF="../../java/lang/Object.html#equals(java.lang.Object)">equals</A>, <A HREF="../../java/lang/Object.html#finalize()">finalize</A>, <A HREF="../../java/lang/Object.html#getClass()">getClass</A>, <A HREF="../../java/lang/Object.html#hashCode()">hashCode</A>, <A HREF="../../java/lang/Object.html#notify()">notify</A>, <A HREF="../../java/lang/Object.html#notifyAll()">notifyAll</A>, <A HREF="../../java/lang/Object.html#wait()">wait</A>, <A HREF="../../java/lang/Object.html#wait(long)">wait</A>, <A HREF="../../java/lang/Object.html#wait(long, int)">wait</A></CODE></TD>
</TR>
</TABLE>
<P>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>构造方法详细信息</B></FONT></TH>
</TR>
</TABLE>
<A NAME="ReflectionException(java.lang.Exception)"><!-- --></A><H3>
ReflectionException</H3>
<PRE>
public <B>ReflectionException</B>(<A HREF="../../java/lang/Exception.html" title="java.lang 中的类">Exception</A> e)</PRE>
<DL>
<DD>创建包装实际 <CODE>java.lang.Exception</CODE> 的 <CODE>ReflectionException</CODE>。
<P>
<DL>
<DT><B>参数:</B><DD><CODE>e</CODE> - 包装的异常。</DL>
</DL>
<HR>
<A NAME="ReflectionException(java.lang.Exception, java.lang.String)"><!-- --></A><H3>
ReflectionException</H3>
<PRE>
public <B>ReflectionException</B>(<A HREF="../../java/lang/Exception.html" title="java.lang 中的类">Exception</A> e,
<A HREF="../../java/lang/String.html" title="java.lang 中的类">String</A> message)</PRE>
<DL>
<DD>创建包装带有详细消息的实际 <CODE>java.lang.Exception</CODE> 的 <CODE>ReflectionException</CODE>。
<P>
<DL>
<DT><B>参数:</B><DD><CODE>e</CODE> - 包装的异常。<DD><CODE>message</CODE> - 详细消息。</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>方法详细信息</B></FONT></TH>
</TR>
</TABLE>
<A NAME="getTargetException()"><!-- --></A><H3>
getTargetException</H3>
<PRE>
public <A HREF="../../java/lang/Exception.html" title="java.lang 中的类">Exception</A> <B>getTargetException</B>()</PRE>
<DL>
<DD>返回抛出的实际 <A HREF="../../java/lang/Exception.html" title="java.lang 中的类"><CODE>Exception</CODE></A>。
<P>
<DD><DL>
<DT><B>返回:</B><DD>包装的 <A HREF="../../java/lang/Exception.html" title="java.lang 中的类"><CODE>Exception</CODE></A>。</DL>
</DD>
</DL>
<HR>
<A NAME="getCause()"><!-- --></A><H3>
getCause</H3>
<PRE>
public <A HREF="../../java/lang/Throwable.html" title="java.lang 中的类">Throwable</A> <B>getCause</B>()</PRE>
<DL>
<DD>返回抛出的实际 <A HREF="../../java/lang/Exception.html" title="java.lang 中的类"><CODE>Exception</CODE></A>。
<P>
<DD><DL>
<DT><B>覆盖:</B><DD>类 <CODE><A HREF="../../java/lang/Throwable.html" title="java.lang 中的类">Throwable</A></CODE> 中的 <CODE><A HREF="../../java/lang/Throwable.html#getCause()">getCause</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>返回:</B><DD>包装的 <A HREF="../../java/lang/Exception.html" title="java.lang 中的类"><CODE>Exception</CODE></A>。</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="跳过导航链接"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>概述</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>软件包</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>类</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/ReflectionException.html"><FONT CLASS="NavBarFont1"><B>使用</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>树</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>已过时</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>索引</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>帮助</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Java<sup><font size=-2>TM</font></sup> Platform<br>Standard Ed. 6</b></EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../javax/management/QueryExp.html" title="javax.management 中的接口"><B>上一个类</B></A>
<A HREF="../../javax/management/RuntimeErrorException.html" title="javax.management 中的类"><B>下一个类</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../index.html?javax/management/ReflectionException.html" target="_top"><B>框架</B></A>
<A HREF="ReflectionException.html" target="_top"><B>无框架</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../allclasses-noframe.html"><B>所有类</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../allclasses-noframe.html"><B>所有类</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
摘要: 嵌套 | 字段 | <A HREF="#constructor_summary">构造方法</A> | <A HREF="#method_summary">方法</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
详细信息: 字段 | <A HREF="#constructor_detail">构造方法</A> | <A HREF="#method_detail">方法</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<font size="-1"><a href="http://bugs.sun.com/services/bugreport/index.jsp">提交错误或意见</a><br>有关更多的 API 参考资料和开发人员文档,请参阅 <a href="http://java.sun.com/javase/6/webnotes/devdocs-vs-specs.html">Java SE 开发人员文档</a>。该文档包含更详细的、面向开发人员的描述,以及总体概述、术语定义、使用技巧和工作代码示例。 <p>版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守<a href="http://java.sun.com/javase/6/docs/legal/license.html">许可证条款</a>。另请参阅<a href="http://java.sun.com/docs/redist.html">文档重新分发政策</a>。</font>
</BODY>
</HTML>
|
clean/Linux-x86_64-4.11.2-2.0.7/released/8.12.2/hammer/1.1.1+8.10.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>hammer: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.12.2 / hammer - 1.1.1+8.10</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
hammer
<small>
1.1.1+8.10
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-07 08:38:55 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-07 08:38:55 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.12.2 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.11.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.11.2 Official release 4.11.2
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "palmskog@gmail.com"
homepage: "https://github.com/lukaszcz/coqhammer"
dev-repo: "git+https://github.com/lukaszcz/coqhammer.git"
bug-reports: "https://github.com/lukaszcz/coqhammer/issues"
license: "LGPL-2.1-only"
synopsis: "General-purpose automated reasoning hammer tool for Coq"
description: """
A general-purpose automated reasoning hammer tool for Coq that combines
learning from previous proofs with the translation of problems to the
logics of automated systems and the reconstruction of successfully found proofs.
"""
build: [make "-j%{jobs}%" {ocaml:version >= "4.06"} "plugin"]
install: [
[make "install-plugin"]
[make "test-plugin"] {with-test}
]
depends: [
"ocaml"
"coq" {>= "8.10" & < "8.11~"}
"conf-g++" {build}
"coq-hammer-tactics" {= version}
]
tags: [
"category:Miscellaneous/Coq Extensions"
"keyword:automation"
"keyword:hammer"
"logpath:Hammer"
"date:2019-10-14"
]
authors: [
"Lukasz Czajka <lukaszcz@mimuw.edu.pl>"
"Cezary Kaliszyk <cezary.kaliszyk@uibk.ac.at>"
"Burak Ekici <burak.ekici@uibk.ac.at>"
]
url {
src: "https://github.com/lukaszcz/coqhammer/archive/v1.1.1-coq8.10.tar.gz"
checksum: "sha512=c9fd9c1a997775f515850fad54edceac6572d365f1e7cc043e448d6e5c9903ccb1bea2020fbbfda3983616f9ae4181a384b933f97731a487ee5cfba7cc1543d1"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-hammer.1.1.1+8.10 coq.8.12.2</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.12.2).
The following dependencies couldn't be met:
- coq-hammer -> coq < 8.11~ -> ocaml < 4.10
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-hammer.1.1.1+8.10</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
103-83-3.txt.html
|
andrewdefries/Ames_ToxBenchmark
|
<html><img border=0 src=103-83-3.txt alt=103-83-3.txt></img><body>
"x"
"1" "KAZIUS, J, MCGUIRE, R AND BURSI, R. DERIVATION AND VALIDATION OF TOXICOPHORES FOR MUTAGENICITY PREDICTION. J. MED. CHEM. 48: 312-320, 2005"
</body></html>
|
css/construction.css
|
dvberkel/ruler-compass
|
body, .construction {
margin: 0;
padding: 0;
}
.construction {
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
}
|
diary/templates/diary/customer_add.html
|
BobBowles/django-diary
|
{% extends 'diary/form_base.html' %}
{% block diary_nav %}
{% with diary_nav_prev='' diary_nav_next='' %}
{% if entry_pk %}
{% url 'diary:entry' pk=entry_pk as diary_nav_up %}
{% elif entry_slug %}
{% url 'diary:entry_new' slug=entry_slug as diary_nav_up %}
{% else %}
{% url 'diary:entry' as diary_nav_up %}
{% endif %}
{{ block.super }}
{% endwith %}
{% endblock diary_nav %}
{% block diary_title %}
New Customer
{% endblock diary_title %}
|
css/main.css
|
jcobeast/jabecon-website
|
.col-text{
color: #fff;
font-size: 1.5em;
}
.section-title{
font-size: 2.5em;
color: #222222;
font-weight: bold;
font-family: 'Poppins', sans-serif;
}
.section-subtitle{
font-size: 2em;
color: #222222;
font-weight: bold;
font-family: 'Poppins', sans-serif;
}
.section-subtitle:after{
width: 100px;
height: 3px;
background-color: #18bc9c;
display: block;
content: " ";
margin: 0 auto;
margin-top: 15px;
}
.section-title:after{
width: 100px;
height: 3px;
background-color: #18bc9c;
display: block;
content: " ";
margin: 0 auto;
margin-top: 15px;
}
.sub{
padding-bottom: 30px;
height: auto;
}
.sub:hover{
background-color: #18bc9c;
-webkit-box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
-moz-box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
transition: all 0.5s ease-in;
}
.sub i{
font-size: 80px;
color: #18bc9c;
}
.section-title-head{
font-size: 2.5em;
color: #fff;
font-weight: bold;
font-family: 'Poppins', sans-serif;
}
.section-title-head:after{
width: 150px;
height: 3px;
background-color: #18bc9c;
display: block;
content: " ";
margin: 0 auto;
margin-top: 30px;
}
.section-content {
color: #222;
line-height: 2em;
font-size: 1.1em;
font-weight: 300;
}
.col-centered{
float: none;
margin: 0 auto;
}
.col-about{
padding-bottom: 40px;
}
#head-greetings{
font-family: 'levibrushregular';
color: #fff;
font-weight: bold;
font-size: 8em;
}
.team img{
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.3);
}
.team-name{
color: #222222;
}
.team-name:after{
width: 100px;
height: 3px;
background-color: #18bc9c;
display: block;
content: " ";
margin: 0 auto;
margin-top: 15px;
}
.team-des{
font-size: 1.2em;
font-weight: 300;
}
.serve{
color: #fff;
}
#ico i{
color: #fff;
font-size: 80px;
margin: 25px 0 25px 0;
}
#ico p{
color: #fff;
text-align: center;
}
#contact-us{
background-color: rgba(96, 96, 96, 0.2);
padding: 40px 0 40px 0;
}
.add {
font-size: 1.2em;
color: #fff;
margin: 0 20px 0 20px; ;
}
#con{
margin-bottom: 30px;
}
#con i{
color: #18bc9c;
font-size: 80px;
margin: 25px 0 25px 0;
}
#con p{
font-size: 1.2em;
color: #fff;
font-weight: 300;
}
/*-----------*/
/*buttons*/
.btn-outlined {
border-radius: 0;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
.btn-outlined.btn-primary {
background: none;
border: 3px solid #fff;
color: #fff;
width: 150px;
}
.btn-outlined.btn-primary:hover,
.btn-outlined.btn-primary:active {
color: #fff;
background-color: rgba(0,0,0,0.6);;
border-color: #fff:
}
.btn-circle.back-to-top {
cursor: pointer;
position: fixed;
bottom: 20px;
right: 20px;
display:none;
width: 50px;
height: 50px;
padding: 10px 16px;
font-size: 18px;
line-height: 1.33;
border-radius: 30px;
border: 3px solid #fff;
}
.fa.fa-bars{
font-size: 1.5em;
color: white;
}
.fa.fa-bars:hover{
color: #18bc9c;
}
.fa.fa-angle-double-down{
font-size: 50px;
color: #ddd;
}
.fa.fa-angle-double-down:hover{
color: #18bc9c;
-webkit-transition: all 0.5s ease-in;
transition: all 0.5s ease-in;
}
/*---------*/
/*navbar*/
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus{
background-color: transparent;
color: #18bc9c;
}
.navbar.navbar-default{
border-width: 0px;
-webkit-box-shadow: 0px 0px;
box-shadow: 0px 0px;
background-color: rgba(22, 22, 22,0.5);
}
.navbar-brand {
transition: all 0.3s ease-in;
font-family: 'levibrushregular';
font-weight: normal;
padding-top: 15px;
font-size: 2.5em;
}
.nav.navbar-nav.navbar-right li a {
transition: all 0.3s ease-in;
font-size: 0.80em;
font-family: 'Open Sans', sans-serif;
font-weight: 600;
margin: 0 8px 0 0;
}
.navbar-toggle{
border: none;
background: transparent !important;
}
.navbar-toggle:hover{
background-color: transparent;
}
.col-link{
display: inline-block;
text-decoration: none;
}
.col-link::after {
content: '';
display: block;
width: 0;
height: 2px;
background: #18bc9c;
transition: width .5s;
}
.col-link:hover::after {
width: 100%;
}
/*---------*/
/*footer*/
footer{
text-align: center;
background-color: #15a98c;
color: #fff;
padding: 20px 20px;
width: 100%;
}
.social-ico i{
font-size: 50px;
margin: 0 10px 0 10px;
color: #fff;
}
.social-ico i:hover{
transform:scale(1.2,1.2);
}
.footer{
font-family: 'Open Sans', sans-serif;
height: 50px;
padding-top: 20px;
font-weight: 300;
}
/*------------*/
/*Contact Map*/
#map{
height: 375px;
margin: 0 auto;
float: none;
}
/*thumbnail*/
#image-thumbs{
padding:0 0 0 0;
margin:0 0 0 0;
}
#image-thumbs li {
list-style:none;
margin-bottom:25px;
}
#image-thumbs li img {
cursor: pointer;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.3);
}
.modal-body {
padding:5px !important;
}
.modal-content {
border-radius:0;
}
.modal-dialog img {
text-align:center;
margin:0 auto;
}
.controls{
width:50px;
display:block;
font-size:11px;
padding-top:8px;
font-weight:bold;
}
.next {
float:right;
text-align:right;
}
/*----------*/
/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
}
/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
.fa.fa-bars{
font-size: 1.3em;
}
}
@media only screen and (max-width : 900px) {
.nav.navbar-nav.navbar-right li a {
margin: 0 0 0 -10px;
font-size: 0.8em;
}
}
@media only screen and (max-width : 800px) {
.navbar-brand {
font-size: 2.4em;
}
.nav.navbar-nav.navbar-right li a {
font-size: 0.75em;
}
}
/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
.navbar.navbar-default.navbar-fixed-top{
padding: 0;
}
.col-link:hover::after {
width: 4.7em;
}
#head-greetings{
font-size: 7em;
}
.section-title-head{
font-size: 2em;
}
.navbar-brand {
padding-top: 20px;
font-size: 2.3em;
}
}
/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
.navbar-brand {
padding-top: 20px;
font-size: 2em;
}
#head-greetings{
font-size: 6.5em;
}
.section-title-head{
font-size: 1.7em;
}
.fa.fa-bars{
font-size: 1em;
}
.col-text{
font-size: 1.2em;
}
.img-team{
width: 100%;
}
#con p{
font-size: 1em;
}
}
/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {
.fa.fa-bars{
font-size: 1em;
}
.navbar-brand {
padding-top: 25px;
font-size: 1.5em;
}
#head-greetings{
font-size: 6em;
}
.section-title-head{
font-size: 1.5em;
}
}
|
web/bower_components/px-vis/demo/px-vis-register-demo.html
|
cdgallahue/atomic-turbine
|
<!-- Common imports -->
<link rel="import" href="../../polymer/polymer.html" />
<link rel="import" href="../../px-polymer-font-awesome/px-polymer-font-awesome.html" />
<!-- Common demo imports -->
<link rel="import" href="../../px-demo/px-demo-header.html" />
<link rel="import" href="../../px-demo/px-demo-api-viewer.html" />
<link rel="import" href="../../px-demo/px-demo-footer.html" />
<link rel="import" href="../../px-demo/px-demo-props.html" />
<link rel="import" href="../../px-demo/px-demo-configs.html" />
<link rel="import" href="../../px-demo/px-demo-interactive.html" />
<link rel="import" href="../../px-demo/px-demo-component-snippet.html" />
<link rel="import" href="../../px-demo/px-demo-code-editor.html" />
<link rel="import" href="../../px-demo/css/px-demo-styles.html" />
<!-- Imports for this componnent -->
<link rel="import" href="px-vis-register-demo-component.html">
<!-- Demo DOM module -->
<dom-module id="px-vis-register-demo">
<template>
<style include="px-demo-styles" is="custom-style"></style>
<!-- Light theme -->
<style include="px-theme-styles" is="custom-style"></style>
<!-- Dark theme -->
<style include="px-dark-demo-theme-styles" is="custom-style"></style>
<style include="px-dark-theme-styles" is="custom-style"></style>
<!-- Header -->
<px-demo-header
module-name="px-vis-register"
description="[[description]]"
parent-name="px-vis">
</px-demo-header>
<!-- Interactive -->
<px-demo-interactive force-hide-props>
<px-demo-configs configs="[[configs]]" props="{{props}}" chosen-config="{{chosenConfig}}"></px-demo-configs>
<!-- Props -->
<px-demo-props props="{{props}}" config="[[chosenConfig]]"></px-demo-props>
<!-- Component ---------------------------------------------------------->
<px-demo-component>
<px-vis-register-demo-component type="{{props.type.value}}"></px-vis-register-demo-component>
</px-demo-component>
<!-- END Component ------------------------------------------------------>
<px-demo-component-snippet
element-properties="{{props}}"
element-name="px-vis-register">
</px-demo-component-snippet>
</px-demo-interactive>
<!-- API Viewer -->
<px-demo-api-viewer source="px-vis-register"></px-demo-api-viewer>
</template>
</dom-module>
<script>
Polymer({
is: 'px-vis-register-demo',
properties: {
description: {
type: String,
value: "The register displays data from the chart on mouseover. There are two options, a horizonal version for placement above or below the chart, or a vertical version for placement to the right or left of the chart. It must be paired with px-vis-interaction-space which provides the mouseover capabilities. Clicking on a series name on the register adds that series to the mutedSeries property. Series on the chart can listen to this property to toggle series on and off."
},
/**
* @property demoProps
* @type {Object}
*/
props: {
type: Object,
value: function(){ return this.demoProps; }
},
/**
* @property demoProps
* @type {Array}
*/
configs: {
type: Array,
value: function(){
return [
{
configName: "Horizontal",
configReset: true,
configShowProps: []
},
{
configName: "Vertical",
type: "vertical",
configShowProps: []
}
];
},
},
},
demoProps: {
width:{
defaultValue:"[[width]]"
},
height:{
defaultValue:"[[height]]"
},
units:{
defaultValue:"Hz"
},
type:{
defaultValue:"horizontal"
},
completeSeriesConfig:{
defaultValue:"[[seriesConfig]]"
},
tooltipData:{
defaultValue:"[[tooltipData]]"
},
mutedSeries:{
defaultValue:"[[mutedSeries]]"
},
xAxisType:{
defaultValue:"time"
}
}
});
</script>
|
portland/PublicAlerts.html
|
kxwang/kxwang.github.io
|
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Public Alerts Map</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.2.0/leaflet.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.2.0/MarkerCluster.Default.css"
/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/themes/base/jquery-ui.css" />
<link rel="stylesheet" href="font-awesome-4.7.0/css/font-awesome.min.css">
<!-- <link rel="stylesheet" href="http://code.ionicframework.com/ionicons/1.5.2/css/ionicons.min.css"> -->
<link rel="stylesheet" href="leaflet.awesome-markers/leaflet.awesome-markers.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.2.0/leaflet.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.heat/0.2.0/leaflet-heat.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.2.0/leaflet.markercluster.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script src="https://unpkg.com/esri-leaflet@2.1.2/dist/esri-leaflet.js" integrity="sha512-ouokQ1RIIoqPTZKwlapdxHO5VWFoAi8wE+SwhSX89Ifac0w3p+H2da4oqHvRsBTIpNLewzAZU7gRVDFXyXcfjA=="
crossorigin=""></script>
<script src="https://unpkg.com/esri-leaflet-heatmap@2.0.0"></script>
<script src="https://unpkg.com/esri-leaflet-cluster@2.0.0/dist/esri-leaflet-cluster.js"
crossorigin=""></script>
<script src="leaflet.awesome-markers/leaflet.awesome-markers.js"></script>
<script src='//api.tiles.mapbox.com/mapbox.js/plugins/leaflet-omnivore/v0.3.1/leaflet-omnivore.min.js'></script>
<script src="https://unpkg.com/@mapbox/leaflet-pip@latest/leaflet-pip.js"></script>
<script src='https://api.mapbox.com/mapbox.js/plugins/leaflet-fullscreen/v1.0.1/Leaflet.fullscreen.min.js'></script>
<link href='https://api.mapbox.com/mapbox.js/plugins/leaflet-fullscreen/v1.0.1/leaflet.fullscreen.css' rel='stylesheet' />
<style id="map-style">
#map {
height: 600px;
}
.legend {
line-height: 18px;
color: #555;
}
.legend i {
width: 16px;
height: 16px;
float: left;
margin-right: 3px;
opacity: 0.8;
}
.ui-autocomplete-loading {
background: white url("http://jqueryui.com/resources/demos/autocomplete/images/ui-anim_basic_16x16.gif") right center no-repeat;
}
ul.ui-autocomplete.ui-menu {
z-index: 1000;
}
.water-district-result {
margin: 5px;
}
.hideMarker {
display: none;
}
.timeline-header,
.timeline-footer {
display: none;
}
.staleMarker {
opacity: 0.6;
}
</style>
</head>
<body>
<div class="ui-widget">
<input class="water-district-result" size="40" placeholder="Type 123 Main or 5th Ave and Main or City Hall" id="user-address">
<br/>
<div class="water-district-result">Water District:
<label id="water-district"></label>
</div>
</div>
<div id="map"></div>
<script src="esri2geo.js"></script>
<script src="water-lookup.js"></script>
<script src="alert-map.js"></script>
</body>
</html>
|
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/104a77c2bff8f273bcd4cb5bb057502f4b68a29f3c7ae2c064a2833c39927105.html
|
simonmysun/praxis
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>18 --> 19</title>
<link href="./../../assets/style.css" rel="stylesheet">
</head>
<body>
<h2>You have to be fast</h2>
<a href="./56d0b39654a83b7a81c839d3c75ee57f04250d6c7ca09ca8244c335b5dd55f83.html">Teleport</a>
<hr>
<a href="./../../about.md">About</a> (Spoilers! )
<script src="./../../assets/md5.js"></script>
<script>
window.currentLevel = 7;
</script>
<script src="./../../assets/script.js"></script>
</body>
</html>
|
templates/change_pwd.html
|
MaxHeller0/celinas-kitchen
|
{% extends "layout.html" %}
{% block title %}
Change Password
{% endblock %}
{% block main %}
<form action="{{ url_for('change_pwd') }}" method="post">
<fieldset>
<div class="form-group">
<input class="form-control" name="password_old" autofocus="autofocus" placeholder="Old Password" type="password"/>
</div>
<div class="form-group">
<input class="form-control" name="password" placeholder="Password" type="password"/>
</div>
<div class="form-group">
<input class="form-control" name="password_retype" placeholder="Retype Password" type="password"/>
</div>
<div class="form-group">
<button class="btn btn-default" type="submit">Change Password</button>
</div>
</fieldset>
</form>
{% endblock %}
|
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/203f9dffc76ea83cacb7c973375b6df5a30073a619c407ae168a74e8d1116c9d.html
|
simonmysun/praxis
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>18 --> 19</title>
<link href="./../../assets/style.css" rel="stylesheet">
</head>
<body>
<h2>You have to be fast</h2>
<a href="./b3072a3b06dc1394fd3de1e04ab6c54f1b35f691188d01817235aeb5cce67c7c.html">Teleport</a>
<hr>
<a href="./../../about.md">About</a> (Spoilers! )
<script src="./../../assets/md5.js"></script>
<script>
window.currentLevel = 7;
</script>
<script src="./../../assets/script.js"></script>
</body>
</html>
|
doc/edu/cmu/cs/stage3/alice/authoringtool/editors/soundeditor/package-tree.html
|
ai-ku/langvis
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_29) on Sun Dec 11 02:01:57 EET 2011 -->
<TITLE>
edu.cmu.cs.stage3.alice.authoringtool.editors.soundeditor Class Hierarchy
</TITLE>
<META NAME="date" CONTENT="2011-12-11">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="edu.cmu.cs.stage3.alice.authoringtool.editors.soundeditor Class Hierarchy";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </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="../../../../../../../../edu/cmu/cs/stage3/alice/authoringtool/editors/scripteditor/package-tree.html"><B>PREV</B></A>
<A HREF="../../../../../../../../edu/cmu/cs/stage3/alice/authoringtool/editors/texturemapviewer/package-tree.html"><B>NEXT</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../../index.html?edu/cmu/cs/stage3/alice/authoringtool/editors/soundeditor/package-tree.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
Hierarchy For Package edu.cmu.cs.stage3.alice.authoringtool.editors.soundeditor
</H2>
</CENTER>
<DL>
<DT><B>Package Hierarchies:</B><DD><A HREF="../../../../../../../../overview-tree.html">All Packages</A></DL>
<HR>
<H2>
Class Hierarchy
</H2>
<UL>
<LI TYPE="circle">java.lang.Object<UL>
<LI TYPE="circle">java.awt.Component (implements java.awt.image.ImageObserver, java.awt.MenuContainer, java.io.Serializable)
<UL>
<LI TYPE="circle">java.awt.Container<UL>
<LI TYPE="circle">javax.swing.JComponent (implements java.io.Serializable)
<UL>
<LI TYPE="circle">javax.swing.JPanel (implements javax.accessibility.Accessible)
<UL>
<LI TYPE="circle">edu.cmu.cs.stage3.alice.authoringtool.editors.soundeditor.<A HREF="../../../../../../../../edu/cmu/cs/stage3/alice/authoringtool/editors/soundeditor/SoundEditor.html" title="class in edu.cmu.cs.stage3.alice.authoringtool.editors.soundeditor"><B>SoundEditor</B></A> (implements edu.cmu.cs.stage3.alice.authoringtool.<A HREF="../../../../../../../../edu/cmu/cs/stage3/alice/authoringtool/Editor.html" title="interface in edu.cmu.cs.stage3.alice.authoringtool">Editor</A>)
</UL>
</UL>
</UL>
</UL>
</UL>
</UL>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </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="../../../../../../../../edu/cmu/cs/stage3/alice/authoringtool/editors/scripteditor/package-tree.html"><B>PREV</B></A>
<A HREF="../../../../../../../../edu/cmu/cs/stage3/alice/authoringtool/editors/texturemapviewer/package-tree.html"><B>NEXT</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../../index.html?edu/cmu/cs/stage3/alice/authoringtool/editors/soundeditor/package-tree.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-tree.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>
</BODY>
</HTML>
|
src/styles/detail.css
|
konrumi/cites-lookup
|
.Detail {
width: 1000px;
margin: 0 auto;
padding: 10px;
}
.Detail .Detail-search h3 {
color: #666;
font-size: 28px;
font-weight: 400;
}
.Detail .Detail-search li {
font-size: 16px;
padding: 8px 0;
list-style: none;
}
.Detail .Detail-search li a {
cursor: pointer;
}
.Detail .Detail-data h3 {
height: 50px;
margin: 40px 0;
color: #36c;
font-size: 28px;
font-weight: 400;
line-height: 50px;
}
.Detail .Detail-data h3 span {
padding: 5px 10px;
margin-right: 20px;
border: 1px solid;
border-radius: 10px;
color: #666;
background-color: #ddd;
}
.Detail .Detail-data table {
width: 100%;
margin-top: 50px;
border-collapse: collapse;
}
.Detail .Detail-data table li {
padding: 10px;
list-style: circle;
}
.Detail .Detail-data th,
.Detail .Detail-data td {
padding: 20px;
border: 1px solid #ccc;
color: #333;
font-size: 18px;
text-align: left;
}
.Detail .Detail-data th {
width: 20%;
}
.Detail .Detail-data td {
width: 80%;
}
.Detail .Detail-data td p {
line-height: 2;
}
.Detail .Detail-intro {
margin-top: 40px;
padding: 40px;
border-top: 6px double #ccc;
}
.Detail .Detail-intro p {
padding: 5px 0;
}
|
node_modules/webpack/coverage/lcov-report/lib/CachePlugin.js.html
|
paulshen/me
|
<!doctype html>
<html lang="en">
<head>
<title>Code coverage report for lib\CachePlugin.js</title>
<meta charset="utf-8">
<link rel="stylesheet" href="../prettify.css">
<style>
body, html {
margin:0; padding: 0;
}
body {
font-family: Helvetica Neue, Helvetica,Arial;
font-size: 10pt;
}
div.header, div.footer {
background: #eee;
padding: 1em;
}
div.header {
z-index: 100;
position: fixed;
top: 0;
border-bottom: 1px solid #666;
width: 100%;
}
div.footer {
border-top: 1px solid #666;
}
div.body {
margin-top: 10em;
}
div.meta {
font-size: 90%;
text-align: center;
}
h1, h2, h3 {
font-weight: normal;
}
h1 {
font-size: 12pt;
}
h2 {
font-size: 10pt;
}
pre {
font-family: Consolas, Menlo, Monaco, monospace;
margin: 0;
padding: 0;
line-height: 14px;
font-size: 14px;
-moz-tab-size: 2;
-o-tab-size: 2;
tab-size: 2;
}
div.path { font-size: 110%; }
div.path a:link, div.path a:visited { color: #000; }
table.coverage { border-collapse: collapse; margin:0; padding: 0 }
table.coverage td {
margin: 0;
padding: 0;
color: #111;
vertical-align: top;
}
table.coverage td.line-count {
width: 50px;
text-align: right;
padding-right: 5px;
}
table.coverage td.line-coverage {
color: #777 !important;
text-align: right;
border-left: 1px solid #666;
border-right: 1px solid #666;
}
table.coverage td.text {
}
table.coverage td span.cline-any {
display: inline-block;
padding: 0 5px;
width: 40px;
}
table.coverage td span.cline-neutral {
background: #eee;
}
table.coverage td span.cline-yes {
background: #b5d592;
color: #999;
}
table.coverage td span.cline-no {
background: #fc8c84;
}
.cstat-yes { color: #111; }
.cstat-no { background: #fc8c84; color: #111; }
.fstat-no { background: #ffc520; color: #111 !important; }
.cbranch-no { background: yellow !important; color: #111; }
.cstat-skip { background: #ddd; color: #111; }
.fstat-skip { background: #ddd; color: #111 !important; }
.cbranch-skip { background: #ddd !important; color: #111; }
.missing-if-branch {
display: inline-block;
margin-right: 10px;
position: relative;
padding: 0 4px;
background: black;
color: yellow;
}
.skip-if-branch {
display: none;
margin-right: 10px;
position: relative;
padding: 0 4px;
background: #ccc;
color: white;
}
.missing-if-branch .typ, .skip-if-branch .typ {
color: inherit !important;
}
.entity, .metric { font-weight: bold; }
.metric { display: inline-block; border: 1px solid #333; padding: 0.3em; background: white; }
.metric small { font-size: 80%; font-weight: normal; color: #666; }
div.coverage-summary table { border-collapse: collapse; margin: 3em; font-size: 110%; }
div.coverage-summary td, div.coverage-summary table th { margin: 0; padding: 0.25em 1em; border-top: 1px solid #666; border-bottom: 1px solid #666; }
div.coverage-summary th { text-align: left; border: 1px solid #666; background: #eee; font-weight: normal; }
div.coverage-summary th.file { border-right: none !important; }
div.coverage-summary th.pic { border-left: none !important; text-align: right; }
div.coverage-summary th.pct { border-right: none !important; }
div.coverage-summary th.abs { border-left: none !important; text-align: right; }
div.coverage-summary td.pct { text-align: right; border-left: 1px solid #666; }
div.coverage-summary td.abs { text-align: right; font-size: 90%; color: #444; border-right: 1px solid #666; }
div.coverage-summary td.file { text-align: right; border-left: 1px solid #666; white-space: nowrap; }
div.coverage-summary td.pic { min-width: 120px !important; }
div.coverage-summary a:link { text-decoration: none; color: #000; }
div.coverage-summary a:visited { text-decoration: none; color: #333; }
div.coverage-summary a:hover { text-decoration: underline; }
div.coverage-summary tfoot td { border-top: 1px solid #666; }
div.coverage-summary .yui3-datatable-sort-indicator, div.coverage-summary .dummy-sort-indicator {
height: 10px;
width: 7px;
display: inline-block;
margin-left: 0.5em;
}
div.coverage-summary .yui3-datatable-sort-indicator {
background: url("https://yui-s.yahooapis.com/3.6.0/build/datatable-sort/assets/skins/sam/sort-arrow-sprite.png") no-repeat scroll 0 0 transparent;
}
div.coverage-summary .yui3-datatable-sorted .yui3-datatable-sort-indicator {
background-position: 0 -20px;
}
div.coverage-summary .yui3-datatable-sorted-desc .yui3-datatable-sort-indicator {
background-position: 0 -10px;
}
.high { background: #b5d592 !important; }
.medium { background: #ffe87c !important; }
.low { background: #fc8c84 !important; }
span.cover-fill, span.cover-empty {
display:inline-block;
border:1px solid #444;
background: white;
height: 12px;
}
span.cover-fill {
background: #ccc;
border-right: 1px solid #444;
}
span.cover-empty {
background: white;
border-left: none;
}
span.cover-full {
border-right: none !important;
}
pre.prettyprint {
border: none !important;
padding: 0 !important;
margin: 0 !important;
}
.com { color: #999 !important; }
.ignore-none { color: #999; font-weight: normal; }
</style>
</head>
<body>
<div class="header medium">
<h1>Code coverage report for <span class="entity">lib\CachePlugin.js</span></h1>
<h2>
Statements: <span class="metric">55.56% <small>(15 / 27)</small></span>
Branches: <span class="metric">28.57% <small>(4 / 14)</small></span>
Functions: <span class="metric">62.5% <small>(5 / 8)</small></span>
Lines: <span class="metric">56% <small>(14 / 25)</small></span>
Ignored: <span class="metric"><span class="ignore-none">none</span></span>
</h2>
<div class="path"><a href="../index.html">All files</a> » <a href="index.html">lib\</a> » CachePlugin.js</div>
</div>
<div class="body">
<pre><table class="coverage">
<tr><td class="line-count">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43</td><td class="line-coverage"><span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-yes">483</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1</span>
<span class="cline-any cline-yes">483</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">483</span>
<span class="cline-any cline-yes">490</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">483</span>
<span class="cline-any cline-yes">483</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">483</span>
<span class="cline-any cline-yes">490</span>
<span class="cline-any cline-yes">490</span>
<span class="cline-any cline-yes">490</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span></td><td class="text"><pre class="prettyprint lang-js">/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
var async = require("async");
function CachePlugin(cache) {
this.cache = cache || {};
}
module.exports = CachePlugin;
CachePlugin.prototype.apply = function(compiler) {
<span class="missing-if-branch" title="if path not taken" >I</span>if(Array.isArray(compiler.compilers)) {
<span class="cstat-no" title="statement not covered" > compiler.compilers.forEach(<span class="fstat-no" title="function not covered" >function(c, idx) {</span></span>
<span class="cstat-no" title="statement not covered" > c.apply(new CachePlugin(this.cache[idx] = this.cache[idx] || {}));</span>
}, this);
} else {
compiler.plugin("compilation", function(compilation) {
compilation.cache = this.cache;
}.bind(this));
compiler.plugin("run", function(compiler, callback) {
<span class="missing-if-branch" title="else path not taken" >E</span>if(!compiler._lastCompilationFileDependencies) return callback();
<span class="cstat-no" title="statement not covered" > var fs = compiler.inputFileSystem;</span>
<span class="cstat-no" title="statement not covered" > fileTs = compiler.fileTimestamps = {};</span>
<span class="cstat-no" title="statement not covered" > async.forEach(compiler._lastCompilationFileDependencies, <span class="fstat-no" title="function not covered" >function(file, callback) {</span></span>
<span class="cstat-no" title="statement not covered" > fs.stat(file, <span class="fstat-no" title="function not covered" >function(err, stat) {</span></span>
<span class="cstat-no" title="statement not covered" > if(err) {</span>
<span class="cstat-no" title="statement not covered" > if(err.code === 'ENOENT') <span class="cstat-no" title="statement not covered" >return callback();</span></span>
<span class="cstat-no" title="statement not covered" > return callback(err);</span>
}
<span class="cstat-no" title="statement not covered" > fileTs[file] = stat.mtime || Infinity;</span>
<span class="cstat-no" title="statement not covered" > callback();</span>
});
}, callback);
}.bind(this));
compiler.plugin("after-compile", function(compilation, callback) {
compilation.compiler._lastCompilationFileDependencies = compilation.fileDependencies;
compilation.compiler._lastCompilationContextDependencies = compilation.contextDependencies;
callback();
}.bind(this));
}
};</pre></td></tr>
</table></pre>
</div>
<div class="footer">
<div class="meta">Generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Tue Aug 05 2014 08:06:14 GMT+0200 (Mitteleuropäische Sommerzeit)</div>
</div>
<script src="../prettify.js"></script>
<script src="https://yui-s.yahooapis.com/3.6.0/build/yui/yui-min.js"></script>
<script>
YUI().use('datatable', function (Y) {
var formatters = {
pct: function (o) {
o.className += o.record.get('classes')[o.column.key];
try {
return o.value.toFixed(2) + '%';
} catch (ex) { return o.value + '%'; }
},
html: function (o) {
o.className += o.record.get('classes')[o.column.key];
return o.record.get(o.column.key + '_html');
}
},
defaultFormatter = function (o) {
o.className += o.record.get('classes')[o.column.key];
return o.value;
};
function getColumns(theadNode) {
var colNodes = theadNode.all('tr th'),
cols = [],
col;
colNodes.each(function (colNode) {
col = {
key: colNode.getAttribute('data-col'),
label: colNode.get('innerHTML') || ' ',
sortable: !colNode.getAttribute('data-nosort'),
className: colNode.getAttribute('class'),
type: colNode.getAttribute('data-type'),
allowHTML: colNode.getAttribute('data-html') === 'true' || colNode.getAttribute('data-fmt') === 'html'
};
col.formatter = formatters[colNode.getAttribute('data-fmt')] || defaultFormatter;
cols.push(col);
});
return cols;
}
function getRowData(trNode, cols) {
var tdNodes = trNode.all('td'),
i,
row = { classes: {} },
node,
name;
for (i = 0; i < cols.length; i += 1) {
name = cols[i].key;
node = tdNodes.item(i);
row[name] = node.getAttribute('data-value') || node.get('innerHTML');
row[name + '_html'] = node.get('innerHTML');
row.classes[name] = node.getAttribute('class');
//Y.log('Name: ' + name + '; Value: ' + row[name]);
if (cols[i].type === 'number') { row[name] = row[name] * 1; }
}
//Y.log(row);
return row;
}
function getData(tbodyNode, cols) {
var data = [];
tbodyNode.all('tr').each(function (trNode) {
data.push(getRowData(trNode, cols));
});
return data;
}
function replaceTable(node) {
if (!node) { return; }
var cols = getColumns(node.one('thead')),
data = getData(node.one('tbody'), cols),
table,
parent = node.get('parentNode');
table = new Y.DataTable({
columns: cols,
data: data,
sortBy: 'file'
});
parent.set('innerHTML', '');
table.render(parent);
}
Y.on('domready', function () {
replaceTable(Y.one('div.coverage-summary table'));
if (typeof prettyPrint === 'function') {
prettyPrint();
}
});
});
</script>
</body>
</html>
|
doc/classes/QSequentialAnimationGroup.html
|
marcosgambeta/Qt4xHb
|
<!DOCTYPE html>
<html>
<head>
<title>Classe QSequentialAnimationGroup</title>
</head>
<body>
<p>Classe <b>QSequentialAnimationGroup</b></p><p>Derivada de <a href='QAnimationGroup.html'>QAnimationGroup</a></p><p>Classes derivadas: <a href='.html'></a></p><p>Módulo <b>QtCore</b></p><p>Construtor: QSequentialAnimationGroup():new(QObject *=0 )</p><p>Método: QSequentialAnimationGroup():addPause(int ) -> QPauseAnimation *</p><p>Método: QSequentialAnimationGroup():currentAnimation( ) -> QAbstractAnimation *</p><p>Método: QSequentialAnimationGroup():insertPause(int, int ) -> QPauseAnimation *</p><p>Método: QSequentialAnimationGroup():duration( ) -> int</p>
</body>
</html>
|
masterapp/masterapp/templates/pages/ie6.mako.html
|
JustinTulloss/harmonize.fm
|
<%inherit file="pagebase.mako.html" />
<div class="title">Oops!</div>
<div class="aspect">
We're sorry, we do not currently support Internet Explorer 6. Please
<a href="http://www.microsoft.com/windows/products/winfamily/ie/default.mspx">
upgrade to Internet Explorer 7</a> or Firefox to use harmonize.fm.
<center style="padding-top: 20px;">
<a href="http://www.spreadfirefox.com/node&id=0&t=306">
<img border="0" alt="Firefox 3" title="Firefox 3"
src="http://sfx-images.mozilla.org/affiliates/Buttons/firefox3/110x32_get_ffx.png"/>
</a>
</center>
</div>
|
Reports/su/susanoo.json.0.8.4.36/Susanoo.Json-net45.html
|
kuhlenh/port-to-core
|
<!DOCTYPE html>
<html xmlns:msxsl="urn:schemas-microsoft-com:xslt">
<head>
<meta content="en-us" http-equiv="Content-Language" />
<meta content="text/html; charset=utf-16" http-equiv="Content-Type" />
<title _locid="PortabilityAnalysis0">.NET Portability Report</title>
<style>
/* Body style, for the entire document */
body {
background: #F3F3F4;
color: #1E1E1F;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
padding: 0;
margin: 0;
}
/* Header1 style, used for the main title */
h1 {
padding: 10px 0px 10px 10px;
font-size: 21pt;
background-color: #E2E2E2;
border-bottom: 1px #C1C1C2 solid;
color: #201F20;
margin: 0;
font-weight: normal;
}
/* Header2 style, used for "Overview" and other sections */
h2 {
font-size: 18pt;
font-weight: normal;
padding: 15px 0 5px 0;
margin: 0;
}
/* Header3 style, used for sub-sections, such as project name */
h3 {
font-weight: normal;
font-size: 15pt;
margin: 0;
padding: 15px 0 5px 0;
background-color: transparent;
}
h4 {
font-weight: normal;
font-size: 12pt;
margin: 0;
padding: 0 0 0 0;
background-color: transparent;
}
/* Color all hyperlinks one color */
a {
color: #1382CE;
}
/* Paragraph text (for longer informational messages) */
p {
font-size: 10pt;
}
/* Table styles */
table {
border-spacing: 0 0;
border-collapse: collapse;
font-size: 10pt;
}
table th {
background: #E7E7E8;
text-align: left;
text-decoration: none;
font-weight: normal;
padding: 3px 6px 3px 6px;
}
table td {
vertical-align: top;
padding: 3px 6px 5px 5px;
margin: 0px;
border: 1px solid #E7E7E8;
background: #F7F7F8;
}
.NoBreakingChanges {
color: darkgreen;
font-weight:bold;
}
.FewBreakingChanges {
color: orange;
font-weight:bold;
}
.ManyBreakingChanges {
color: red;
font-weight:bold;
}
.BreakDetails {
margin-left: 30px;
}
.CompatMessage {
font-style: italic;
font-size: 10pt;
}
.GoodMessage {
color: darkgreen;
}
/* Local link is a style for hyperlinks that link to file:/// content, there are lots so color them as 'normal' text until the user mouse overs */
.localLink {
color: #1E1E1F;
background: #EEEEED;
text-decoration: none;
}
.localLink:hover {
color: #1382CE;
background: #FFFF99;
text-decoration: none;
}
/* Center text, used in the over views cells that contain message level counts */
.textCentered {
text-align: center;
}
/* The message cells in message tables should take up all avaliable space */
.messageCell {
width: 100%;
}
/* Padding around the content after the h1 */
#content {
padding: 0px 12px 12px 12px;
}
/* The overview table expands to width, with a max width of 97% */
#overview table {
width: auto;
max-width: 75%;
}
/* The messages tables are always 97% width */
#messages table {
width: 97%;
}
/* All Icons */
.IconSuccessEncoded, .IconInfoEncoded, .IconWarningEncoded, .IconErrorEncoded {
min-width: 18px;
min-height: 18px;
background-repeat: no-repeat;
background-position: center;
}
/* Success icon encoded */
.IconSuccessEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconSuccess#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABPElEQVR4Xp1Tv0vDUBi8FqeA4NpBcBLcWnQSApncOnTo4FSnjP0DsnXpH5CxiwbHDg4Zuj4oOEXiJgiC4FDcCkLWmIMc1Pfw+eMgQ77v3Xf3Pe51YKGqqisAEwCR1TIAsiAIblSo6xrdHeJR85Xle3mdmCQKb0PsfqyxxzM8K15HZADl/H5+sHpZwYfxyRjTs+kWwKBx8yoHd2mRiuzF8mkJniWH/13u3Fjrs/EdhsdDFHGB/DLXEJBDLh1MWPAhPo1BLB4WX5yQywHR+m3tVe/t97D52CB/ziG0nIgD/qDuYg8WuCcVZ2YGwlJ3YDugkpR/VNcAEx6GEKhERSr71FuO4YCM4XBdwKvecjIlkSnsO0Hyp/GxSeJAdzBKzpOtnPwyyiPdAZhpZptT04tU+zk7s8czeges//s5C5+CwqrR4/gw+AAAAABJRU5ErkJggg==);
}
/* Information icon encoded */
.IconInfoEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconInformation#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABHElEQVR4Xs2TsUoDQRRF7wwoziokjZUKadInhdhukR9YP8DMX1hYW+QvdsXa/QHBbcXC7W0CamWTQnclFutceIQJwwaWNLlwm5k5d94M76mmaeCrrmsLYOocY12FcxZFUeozCqKqqgYA8uevv1H6VuPxcwlfk5N92KHBxfFeCSAxxswlYAW/Xr989x/mv9gkhtyMDhcAxgzRsp7flj8B/HF1RsMXq+NZMkopaHe7lbKxQUEIGbKsYNoGn969060hZBkQex/W8oRQwsQaW2o3Ago2SVcJUzAgY3N0lTCZZm+zPS8HB51gMmS1DEYyOz9acKO1D8JWTlafKIMxdhvlfdyT94Vv5h7P8Ky7nQzACmhvKq3zk3PjW9asz9D/1oigecsioooAAAAASUVORK5CYII=);
}
/* Warning icon encoded */
.IconWarningEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconWarning#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAx0lEQVR4XpWSMQ7CMAxFf4xAyBMLCxMrO8dhaBcuwdCJS3RJBw7SA/QGTCxdWJgiQYWKXJWKIXHIlyw5lqr34tQgEOdcBsCOx5yZK3hCCKdYXneQkh4pEfqzLfu+wVDSyyzFoJjfz9NB+pAF+eizx2Vruts0k15mPgvS6GYvpVtQhB61IB/dk6AF6fS4Ben0uIX5odtFe8Q/eW1KvFeH4e8khT6+gm5B+t3juyDt7n0jpe+CANTd+oTUjN/U3yVaABnSUjFz/gFq44JaVSCXeQAAAABJRU5ErkJggg==);
}
/* Error icon encoded */
.IconErrorEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconError#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABQElEQVR4XqWTvUoEQRCE6wYPZUA80AfwAQz23uCMjA7MDRQEIzPBVEyNTQUFIw00vcQTTMzuAh/AxEQQT8HF/3G/oGGnEUGuoNnd6qoZuqltyKEsyzVJq5I6rnUp6SjGeGhESikzzlc1eL7opfuVbrqbU1Zw9NCgtQMaZpY0eNnaaL2fHusvTK5vKu7sjSS1Y4y3QUA6K3e3Mau5UFDyMP7tYF9o8cAHZv68vipoIJg971PZIZ5HiwdvYGGvFVFHmGmZ2MxwmQYPXubPl9Up0tfoMQGetXd6mRbvhBw+boZ6WF7Mbv1+GsHRk0fQmPAH1GfmZirbCfDJ61tw3Px8/8pZsPAG4jlVhcPgZ7adwNWBB68lkRQWFiTgFlbnLY3DGGM7izIJIyT/jjIvEJw6fdJTc6krDzh6aMwMP9bvDH4ADSsa9uSWVJkAAAAASUVORK5CYII=);
}
</style>
</head>
<body>
<h1 _locid="PortabilityReport">.NET Portability Report</h1>
<div id="content">
<div id="submissionId" style="font-size:8pt;">
<p>
<i>
Submission Id
b3f57ca3-e758-4142-b22d-f152e94669b2
</i>
</p>
</div>
<h2 _locid="SummaryTitle">
<a name="Portability Summary"></a>Portability Summary
</h2>
<div id="summary">
<table>
<tbody>
<tr>
<th>Assembly</th>
<th>ASP.NET 5,Version=v1.0</th>
<th>Windows,Version=v8.1</th>
<th>.NET Framework,Version=v4.6</th>
<th>Windows Phone,Version=v8.1</th>
</tr>
<tr>
<td><strong><a href="#Susanoo.Json">Susanoo.Json</a></strong></td>
<td class="text-center">93.83 %</td>
<td class="text-center">91.36 %</td>
<td class="text-center">100.00 %</td>
<td class="text-center">91.36 %</td>
</tr>
</tbody>
</table>
</div>
<div id="details">
<a name="Susanoo.Json"><h3>Susanoo.Json</h3></a>
<table>
<tbody>
<tr>
<th>Target type</th>
<th>ASP.NET 5,Version=v1.0</th>
<th>Windows,Version=v8.1</th>
<th>.NET Framework,Version=v4.6</th>
<th>Windows Phone,Version=v8.1</th>
<th>Recommended changes</th>
</tr>
<tr>
<td>System.Data.CommandType</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Data.Common.DbParameter</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Data.IDataReader</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">Read</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Data.IDataRecord</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">get_FieldCount</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">get_Item(System.Int32)</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
<p>
<a href="#Portability Summary">Back to Summary</a>
</p>
</div>
</div>
</body>
</html>
|
deps/boost_1_77_0/libs/spirit/doc/html/spirit/qi/reference/directive/repeat.html
|
davehorton/drachtio-server
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Repetition Parser Directive (repeat[])</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="Spirit 2.5.8">
<link rel="up" href="../directive.html" title="Parser Directives">
<link rel="prev" href="raw.html" title="Directive for Transduction Parsing (raw[])">
<link rel="next" href="matches.html" title="Directive Testing if Parser Succeeded (matches[])">
</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="raw.html"><img src="../../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../directive.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="matches.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="spirit.qi.reference.directive.repeat"></a><a class="link" href="repeat.html" title="Repetition Parser Directive (repeat[])">Repetition
Parser Directive (<code class="computeroutput"><span class="identifier">repeat</span><span class="special">[]</span></code>)</a>
</h5></div></div></div>
<h6>
<a name="spirit.qi.reference.directive.repeat.h0"></a>
<span class="phrase"><a name="spirit.qi.reference.directive.repeat.description"></a></span><a class="link" href="repeat.html#spirit.qi.reference.directive.repeat.description">Description</a>
</h6>
<p>
The <code class="computeroutput"><span class="identifier">repeat</span><span class="special">[]</span></code>
provides a more powerful and flexible mechanism for repeating a parser.
There are grammars that are impractical and cumbersome, if not impossible,
for the basic EBNF iteration syntax (<a class="link" href="../operator/kleene.html" title="Kleene Parser (*a)">Kleene</a>
and the <a class="link" href="../operator/plus.html" title="Plus Parser (+a)">Plus</a>)
to specify. Examples:
</p>
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem">
A file name may have a maximum of 255 characters only.
</li>
<li class="listitem">
A specific bitmap file format has exactly 4096 RGB color information.
</li>
<li class="listitem">
A 256 bit binary string (1..256 1s or 0s).
</li>
</ul></div>
<h6>
<a name="spirit.qi.reference.directive.repeat.h1"></a>
<span class="phrase"><a name="spirit.qi.reference.directive.repeat.header"></a></span><a class="link" href="repeat.html#spirit.qi.reference.directive.repeat.header">Header</a>
</h6>
<pre class="programlisting"><span class="comment">// forwards to <boost/spirit/home/qi/directive/repeat.hpp></span>
<span class="preprocessor">#include</span> <span class="special"><</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">spirit</span><span class="special">/</span><span class="identifier">include</span><span class="special">/</span><span class="identifier">qi_repeat</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">></span>
</pre>
<p>
Also, see <a class="link" href="../../../structure/include.html" title="Include">Include Structure</a>.
</p>
<h6>
<a name="spirit.qi.reference.directive.repeat.h2"></a>
<span class="phrase"><a name="spirit.qi.reference.directive.repeat.namespace"></a></span><a class="link" href="repeat.html#spirit.qi.reference.directive.repeat.namespace">Namespace</a>
</h6>
<div class="informaltable"><table class="table">
<colgroup><col></colgroup>
<thead><tr><th>
<p>
Name
</p>
</th></tr></thead>
<tbody>
<tr><td>
<p>
<code class="computeroutput"><span class="identifier">boost</span><span class="special">::</span><span class="identifier">spirit</span><span class="special">::</span><span class="identifier">repeat</span> <span class="comment">//
alias: boost::spirit::qi::repeat</span></code>
</p>
</td></tr>
<tr><td>
<p>
<code class="computeroutput"><span class="identifier">boost</span><span class="special">::</span><span class="identifier">spirit</span><span class="special">::</span><span class="identifier">inf</span> <span class="comment">// alias:
boost::spirit::qi::inf</span></code>
</p>
</td></tr>
</tbody>
</table></div>
<h6>
<a name="spirit.qi.reference.directive.repeat.h3"></a>
<span class="phrase"><a name="spirit.qi.reference.directive.repeat.model_of"></a></span><a class="link" href="repeat.html#spirit.qi.reference.directive.repeat.model_of">Model
of</a>
</h6>
<div class="blockquote"><blockquote class="blockquote"><p>
<a class="link" href="../parser_concepts/unaryparser.html" title="UnaryParser"><code class="computeroutput"><span class="identifier">UnaryParser</span></code></a>
</p></blockquote></div>
<div class="variablelist">
<p class="title"><b>Notation</b></p>
<dl class="variablelist">
<dt><span class="term"><code class="computeroutput"><span class="identifier">a</span></code></span></dt>
<dd><p>
A <a class="link" href="../parser_concepts/parser.html" title="Parser"><code class="computeroutput"><span class="identifier">Parser</span></code></a>.
</p></dd>
<dt><span class="term"><code class="computeroutput"><span class="identifier">n</span></code>, <code class="computeroutput"><span class="identifier">min</span></code>, <code class="computeroutput"><span class="identifier">max</span></code></span></dt>
<dd><p>
An <code class="computeroutput"><span class="keyword">int</span></code> anything that
can be converted to an <code class="computeroutput"><span class="keyword">int</span></code>,
or a <a class="link" href="../basics.html#spirit.qi.reference.basics.lazy_argument">Lazy
Argument</a> that evaluates to anything that can be converted
to an <code class="computeroutput"><span class="keyword">int</span></code>.
</p></dd>
</dl>
</div>
<h6>
<a name="spirit.qi.reference.directive.repeat.h4"></a>
<span class="phrase"><a name="spirit.qi.reference.directive.repeat.expression_semantics"></a></span><a class="link" href="repeat.html#spirit.qi.reference.directive.repeat.expression_semantics">Expression
Semantics</a>
</h6>
<p>
Semantics of an expression is defined only where it differs from, or
is not defined in <a class="link" href="../parser_concepts/unaryparser.html" title="UnaryParser"><code class="computeroutput"><span class="identifier">UnaryParser</span></code></a>.
</p>
<div class="informaltable"><table class="table">
<colgroup>
<col>
<col>
</colgroup>
<thead><tr>
<th>
<p>
Expression
</p>
</th>
<th>
<p>
Semantics
</p>
</th>
</tr></thead>
<tbody>
<tr>
<td>
<p>
<code class="computeroutput"><span class="identifier">repeat</span><span class="special">[</span><span class="identifier">a</span><span class="special">]</span></code>
</p>
</td>
<td>
<p>
Repeat <code class="computeroutput"><span class="identifier">a</span></code> zero
or more times. Same as <a class="link" href="../operator/kleene.html" title="Kleene Parser (*a)">Kleene</a>.
</p>
</td>
</tr>
<tr>
<td>
<p>
<code class="computeroutput"><span class="identifier">repeat</span><span class="special">(</span><span class="identifier">n</span><span class="special">)[</span><span class="identifier">a</span><span class="special">]</span></code>
</p>
</td>
<td>
<p>
Repeat <code class="computeroutput"><span class="identifier">a</span></code> exactly
<code class="computeroutput"><span class="identifier">n</span></code> times.
</p>
</td>
</tr>
<tr>
<td>
<p>
<code class="computeroutput"><span class="identifier">repeat</span><span class="special">(</span><span class="identifier">min</span><span class="special">,</span>
<span class="identifier">max</span><span class="special">)[</span><span class="identifier">a</span><span class="special">]</span></code>
</p>
</td>
<td>
<p>
Repeat <code class="computeroutput"><span class="identifier">a</span></code> at
least <code class="computeroutput"><span class="identifier">min</span></code> times
and at most <code class="computeroutput"><span class="identifier">max</span></code>
times.
</p>
</td>
</tr>
<tr>
<td>
<p>
<code class="computeroutput"><span class="identifier">repeat</span><span class="special">(</span><span class="identifier">min</span><span class="special">,</span>
<span class="identifier">inf</span><span class="special">)[</span><span class="identifier">a</span><span class="special">]</span></code>
</p>
</td>
<td>
<p>
Repeat <code class="computeroutput"><span class="identifier">a</span></code> at
least <code class="computeroutput"><span class="identifier">min</span></code> or
more (continuing until <code class="computeroutput"><span class="identifier">a</span></code>
fails or the input is consumed).
</p>
</td>
</tr>
</tbody>
</table></div>
<h6>
<a name="spirit.qi.reference.directive.repeat.h5"></a>
<span class="phrase"><a name="spirit.qi.reference.directive.repeat.attributes"></a></span><a class="link" href="repeat.html#spirit.qi.reference.directive.repeat.attributes">Attributes</a>
</h6>
<p>
See <a class="link" href="../../quick_reference/compound_attribute_rules.html#spirit.qi.quick_reference.compound_attribute_rules.notation">Compound
Attribute Notation</a>.
</p>
<div class="informaltable"><table class="table">
<colgroup>
<col>
<col>
</colgroup>
<thead><tr>
<th>
<p>
Expression
</p>
</th>
<th>
<p>
Attribute
</p>
</th>
</tr></thead>
<tbody>
<tr>
<td>
<p>
<code class="computeroutput"><span class="identifier">repeat</span><span class="special">[</span><span class="identifier">a</span><span class="special">]</span></code>
</p>
</td>
<td>
<p>
</p>
<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="identifier">a</span><span class="special">:</span> <span class="identifier">A</span> <span class="special">--></span> <span class="identifier">repeat</span><span class="special">[</span><span class="identifier">a</span><span class="special">]:</span> <span class="identifier">vector</span><span class="special"><</span><span class="identifier">A</span><span class="special">></span>
<span class="identifier">a</span><span class="special">:</span> <span class="identifier">Unused</span> <span class="special">--></span> <span class="identifier">repeat</span><span class="special">[</span><span class="identifier">a</span><span class="special">]:</span> <span class="identifier">Unused</span></pre>
<p>
</p>
</td>
</tr>
<tr>
<td>
<p>
<code class="computeroutput"><span class="identifier">repeat</span><span class="special">(</span><span class="identifier">n</span><span class="special">)[</span><span class="identifier">a</span><span class="special">]</span></code>
</p>
</td>
<td>
<p>
</p>
<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="identifier">a</span><span class="special">:</span> <span class="identifier">A</span> <span class="special">--></span> <span class="identifier">repeat</span><span class="special">(</span><span class="identifier">n</span><span class="special">)[</span><span class="identifier">a</span><span class="special">]:</span> <span class="identifier">vector</span><span class="special"><</span><span class="identifier">A</span><span class="special">></span>
<span class="identifier">a</span><span class="special">:</span> <span class="identifier">Unused</span> <span class="special">--></span> <span class="identifier">repeat</span><span class="special">(</span><span class="identifier">n</span><span class="special">)[</span><span class="identifier">a</span><span class="special">]:</span> <span class="identifier">Unused</span></pre>
<p>
</p>
</td>
</tr>
<tr>
<td>
<p>
<code class="computeroutput"><span class="identifier">repeat</span><span class="special">(</span><span class="identifier">min</span><span class="special">,</span>
<span class="identifier">max</span><span class="special">)[</span><span class="identifier">a</span><span class="special">]</span></code>
</p>
</td>
<td>
<p>
</p>
<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="identifier">a</span><span class="special">:</span> <span class="identifier">A</span> <span class="special">--></span> <span class="identifier">repeat</span><span class="special">(</span><span class="identifier">min</span><span class="special">,</span> <span class="identifier">max</span><span class="special">)[</span><span class="identifier">a</span><span class="special">]:</span> <span class="identifier">vector</span><span class="special"><</span><span class="identifier">A</span><span class="special">></span>
<span class="identifier">a</span><span class="special">:</span> <span class="identifier">Unused</span> <span class="special">--></span> <span class="identifier">repeat</span><span class="special">(</span><span class="identifier">min</span><span class="special">,</span> <span class="identifier">max</span><span class="special">)[</span><span class="identifier">a</span><span class="special">]:</span> <span class="identifier">Unused</span></pre>
<p>
</p>
</td>
</tr>
<tr>
<td>
<p>
<code class="computeroutput"><span class="identifier">repeat</span><span class="special">(</span><span class="identifier">min</span><span class="special">,</span>
<span class="identifier">inf</span><span class="special">)[</span><span class="identifier">a</span><span class="special">]</span></code>
</p>
</td>
<td>
<p>
</p>
<pre xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="table-programlisting"><span class="identifier">a</span><span class="special">:</span> <span class="identifier">A</span> <span class="special">--></span> <span class="identifier">repeat</span><span class="special">(</span><span class="identifier">min</span><span class="special">,</span> <span class="identifier">inf</span><span class="special">)[</span><span class="identifier">a</span><span class="special">]:</span> <span class="identifier">vector</span><span class="special"><</span><span class="identifier">A</span><span class="special">></span>
<span class="identifier">a</span><span class="special">:</span> <span class="identifier">Unused</span> <span class="special">--></span> <span class="identifier">repeat</span><span class="special">(</span><span class="identifier">min</span><span class="special">,</span> <span class="identifier">inf</span><span class="special">)[</span><span class="identifier">a</span><span class="special">]:</span> <span class="identifier">Unused</span></pre>
<p>
</p>
</td>
</tr>
</tbody>
</table></div>
<h6>
<a name="spirit.qi.reference.directive.repeat.h6"></a>
<span class="phrase"><a name="spirit.qi.reference.directive.repeat.complexity"></a></span><a class="link" href="repeat.html#spirit.qi.reference.directive.repeat.complexity">Complexity</a>
</h6>
<div class="blockquote"><blockquote class="blockquote"><p>
The overall complexity is defined by the complexity of its subject
parser. The complexity of <code class="computeroutput"><span class="identifier">repeat</span></code>
itself is O(N), where N is the number of repetitions to execute.
</p></blockquote></div>
<h6>
<a name="spirit.qi.reference.directive.repeat.h7"></a>
<span class="phrase"><a name="spirit.qi.reference.directive.repeat.example"></a></span><a class="link" href="repeat.html#spirit.qi.reference.directive.repeat.example">Example</a>
</h6>
<div class="note"><table border="0" summary="Note">
<tr>
<td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="../../../../images/note.png"></td>
<th align="left">Note</th>
</tr>
<tr><td align="left" valign="top"><p>
The test harness for the example(s) below is presented in the <a class="link" href="../basics.html#spirit.qi.reference.basics.examples">Basics Examples</a>
section.
</p></td></tr>
</table></div>
<p>
Using the repeat directive, we can now write our examples above.
</p>
<p>
Some using declarations:
</p>
<p>
</p>
<pre class="programlisting"><span class="keyword">using</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">spirit</span><span class="special">::</span><span class="identifier">qi</span><span class="special">::</span><span class="identifier">repeat</span><span class="special">;</span>
<span class="keyword">using</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">spirit</span><span class="special">::</span><span class="identifier">qi</span><span class="special">::</span><span class="identifier">lit</span><span class="special">;</span>
<span class="keyword">using</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">spirit</span><span class="special">::</span><span class="identifier">qi</span><span class="special">::</span><span class="identifier">uint_parser</span><span class="special">;</span>
<span class="keyword">using</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">spirit</span><span class="special">::</span><span class="identifier">qi</span><span class="special">::</span><span class="identifier">_1</span><span class="special">;</span>
<span class="keyword">using</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">spirit</span><span class="special">::</span><span class="identifier">ascii</span><span class="special">::</span><span class="identifier">char_</span><span class="special">;</span>
<span class="keyword">namespace</span> <span class="identifier">phx</span> <span class="special">=</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">phoenix</span><span class="special">;</span>
</pre>
<p>
</p>
<p>
A parser for a file name with a maximum of 255 characters:
</p>
<p>
</p>
<pre class="programlisting"><span class="identifier">test_parser</span><span class="special">(</span><span class="string">"batman.jpeg"</span><span class="special">,</span> <span class="identifier">repeat</span><span class="special">(</span><span class="number">1</span><span class="special">,</span> <span class="number">255</span><span class="special">)[</span><span class="identifier">char_</span><span class="special">(</span><span class="string">"a-zA-Z_./"</span><span class="special">)]);</span>
</pre>
<p>
</p>
<p>
A parser for a specific bitmap file format which has exactly 4096 RGB
color information. (for the purpose of this example, we will be testing
only 3 RGB color information.)
</p>
<p>
</p>
<pre class="programlisting"><span class="identifier">uint_parser</span><span class="special"><</span><span class="keyword">unsigned</span><span class="special">,</span> <span class="number">16</span><span class="special">,</span> <span class="number">6</span><span class="special">,</span> <span class="number">6</span><span class="special">></span> <span class="identifier">rgb</span><span class="special">;</span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">vector</span><span class="special"><</span><span class="keyword">unsigned</span><span class="special">></span> <span class="identifier">colors</span><span class="special">;</span>
<span class="identifier">test_parser_attr</span><span class="special">(</span><span class="string">"ffffff0000003f3f3f"</span><span class="special">,</span> <span class="identifier">repeat</span><span class="special">(</span><span class="number">3</span><span class="special">)[</span><span class="identifier">rgb</span><span class="special">],</span> <span class="identifier">colors</span><span class="special">);</span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">cout</span>
<span class="special"><<</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">hex</span>
<span class="special"><<</span> <span class="identifier">colors</span><span class="special">[</span><span class="number">0</span><span class="special">]</span> <span class="special"><<</span> <span class="char">','</span>
<span class="special"><<</span> <span class="identifier">colors</span><span class="special">[</span><span class="number">1</span><span class="special">]</span> <span class="special"><<</span> <span class="char">','</span>
<span class="special"><<</span> <span class="identifier">colors</span><span class="special">[</span><span class="number">2</span><span class="special">]</span> <span class="special"><<</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">endl</span><span class="special">;</span>
</pre>
<p>
</p>
<p>
A 256 bit binary string (1..256 1s or 0s). (For the purpose of this example,
we will be testing only 16 bits.)
</p>
<p>
</p>
<pre class="programlisting"><span class="identifier">test_parser</span><span class="special">(</span><span class="string">"1011101011110010"</span><span class="special">,</span> <span class="identifier">repeat</span><span class="special">(</span><span class="number">16</span><span class="special">)[</span><span class="identifier">lit</span><span class="special">(</span><span class="char">'1'</span><span class="special">)</span> <span class="special">|</span> <span class="char">'0'</span><span class="special">]);</span>
</pre>
<p>
</p>
<p>
The Loop parsers can be dynamic. Consider the parsing of a binary file
of Pascal-style length prefixed string, where the first byte determines
the length of the incoming string. Here's a sample input:
</p>
<div class="blockquote"><blockquote class="blockquote"><p>
<span class="inlinemediaobject"><img src="../../../.././images/pascal_string.png" alt="pascal_string"></span>
</p></blockquote></div>
<p>
This trivial example cannot be practically defined in traditional EBNF.
Although some EBNF variants allow more powerful repetition constructs
other than the Kleene Star, we are still limited to parsing fixed strings.
The nature of EBNF forces the repetition factor to be a constant. On
the other hand, Spirit allows the repetition factor to be variable at
run time. We could write a grammar that accepts the input string above.
Example using phoenix:
</p>
<p>
</p>
<pre class="programlisting"><span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <span class="identifier">str</span><span class="special">;</span>
<span class="keyword">int</span> <span class="identifier">n</span><span class="special">;</span>
<span class="identifier">test_parser_attr</span><span class="special">(</span><span class="string">"\x0bHello World"</span><span class="special">,</span>
<span class="identifier">char_</span><span class="special">[</span><span class="identifier">phx</span><span class="special">::</span><span class="identifier">ref</span><span class="special">(</span><span class="identifier">n</span><span class="special">)</span> <span class="special">=</span> <span class="identifier">_1</span><span class="special">]</span> <span class="special">>></span> <span class="identifier">repeat</span><span class="special">(</span><span class="identifier">phx</span><span class="special">::</span><span class="identifier">ref</span><span class="special">(</span><span class="identifier">n</span><span class="special">))[</span><span class="identifier">char_</span><span class="special">],</span> <span class="identifier">str</span><span class="special">);</span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">cout</span> <span class="special"><<</span> <span class="identifier">n</span> <span class="special"><<</span> <span class="char">','</span> <span class="special"><<</span> <span class="identifier">str</span> <span class="special"><<</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">endl</span><span class="special">;</span> <span class="comment">// will print "11,Hello World"</span>
</pre>
<p>
</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 © 2001-2011 Joel de Guzman, Hartmut Kaiser<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="raw.html"><img src="../../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../directive.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="matches.html"><img src="../../../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
data science/machine_learning_for_the_web/chapter_4/movie/22957.html
|
xianjunzhengbackup/code
|
<HTML><HEAD>
<TITLE>Review for Gun Crazy (1950)</TITLE>
<LINK REL="STYLESHEET" TYPE="text/css" HREF="/ramr.css">
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<H1 ALIGN="CENTER" CLASS="title"><A HREF="/Title?0042530">Gun Crazy (1950)</A></H1><H3 ALIGN=CENTER>reviewed by<BR><A HREF="/ReviewsBy?Dennis+Schwartz">Dennis Schwartz</A></H3><HR WIDTH="40%" SIZE="4">
<P>GUN CRAZY(director: Joseph H. Lewis; screenwriter: MacKinlay Kantor from
his story in the "Saturday Evening Post"/Lillard Kaufman is the
uncredited Dalton Trumbo-he was blacklisted; cinematographer: Russell
Harlan; cast: Peggy Cummins (Annie Laurie Starr), John Dall (Bart Tare),
Berry Kroeger (Packett), Morris Carnovsky (Judge Willoughby), Anabel
Shaw (Ruby Tare), Harry Lewis (Clyde Boston), Nedrick Young (Dave
Allister), Trevor Bardette (Sheriff Clyde Boston), Anne O'Neal (Miss
Sifert), Don Beddoe (Car Owner from Chicago), Harry Hayden (Mr.
Mallenberg), Mickey Little (Bart Tare age 7), Russ Tamblyn (Bart Tare:
age 14), Paul Frison (Clyde Boston: age 14), Dave Bair (Dave Allister:
age 14), Robert Osterloh (Hampton Policeman), Stanley Prager (Clown),
Virginia Farmer (Miss Wynn, Teacher), 1950)</P>
<PRE>Reviewed by Dennis Schwartz</PRE>
<P>Bart Tare (John Dall) has always been obsessed with the love of guns. He
was raised by his older sister Ruby (Anabel), who bought him his first
BB gun as a child. On a rainy night in the small-town in the southwest
he lives in, the 14-year-old Bart (Russ Tamblyn) sees a beautiful gun in
a hardware store window and smashes the window with a rock to get it,
but he is caught by the sheriff (Trevor) when he stumbles in a puddle.
The judge (Carnovsky) sends him to reform school, despite Ruby's plea
for mercy, bringing up the point that he was raised without a father
figure. He stays for four years there and then he joins the army. Other
than that incident, Bart has shown no tendency for violence or breaking
the law, he just feels good when he's shooting a gun, something he is an
expert in. He feels compelled to always have a gun, as it makes him feel
important. But in this expressionist-like opening scene, it is shown
that Bart will have little chance of overcoming his obsession. There is
even one point in the robbery where he stretches his arms out
Christ-like, in a symbolic gesture of what is to come of the naive child
as he reaches adulthood.</P>
<P>Returning home for the first-time since he was sent away to reform
school, he meets again his childhood buddies, David Allister (Young),
who is now a newspaper reporter, and Clyde Boston (Paul), who is now a
sheriff, like his father, the one who arrested him. They both thought
the army would have been a natural place for him to make a career in,
but he tells them he got bored with showing soldiers how to fire a gun
and plans to look for work with Remington.</P>
<P>The boys decide to go to a travelling carnival that is in town that
night and when an Annie Oakley-type shooter from England, Annie Laurie
Starr (Cummins), challenges anyone in the audience to a pistol-shooting
contest, Bart accepts the challenge and wins. She talks her boss, a
sleazy carnival operator, Packy (Berry) into hiring him, as the two fall
in love on first sight. The intimacy that grows between the two
infuriates Packy, who has his eyes on Laurie, holding over-her-head the
knowledge that she killed someone in a St. Louis robbery, telling her he
will go to the police if she doesn't continue to give him sex. When he
grapples with her, Bart fires his gun at him and the two are fired. He
decides to marry her that night, even though he was warned by a clown
(Prager) at the carnival that he doesn't know anything about women-that
she's a bad one.</P>
<P>It now becomes a road movie of a crime spree, or a love-on-the run film.
Laurie demands the need for action and money, threatening to leave him
if he can't live up to her expectations. He has fallen so much in love
with her, that even though it isn't in his gentle nature to be a
criminal, he goes along with her robbery schemes. They rob their hotel,
a liquor store, and a gas station, but she wants more money. For another
of their robberies, they carefully come up with a more developed scheme,
as she hitches a ride from an older gentleman visiting California from
Illinois (Beddoe) who is suggestively coming on to her, while the
conversation takes place, she, in a casual manner pulls her pistol out
of her purse and steals his Cadillac, using it for their next robbery so
the cops can't get their real license plates, as they bound him in their
car on the roadside. The robbery takes place in Hampton, where they rob
the local bank dressed in their showbiz cowboy outfits and escape when
she conks the policeman (Osterloh) who is standing in front of the bank,
karate-style on the neck, knocking him out. The getaway scene is
dramatically filmed from the backseat of their car. The crimes become
very sexually stimulating to them, as she becomes more and more
passionate with Bart, even as their escape is taking place.</P>
<P>After another harrowing robbery, their pictures appear in the newspaper,
as Packett names them as the wanted criminals sought, even mentioning
the killing she did in St. Louis, and their names go over the wire
service, so that his hometown of Cashville is now aware of his crime
spree. After spending some time on-the-run, they plan one more big
robbery and have hopes of getting enough money from that one to retire
from crime (at least he feels that way). The both get jobs in an Armour
meat-packing plant in New Mexico and rob the payroll office, but this
time the office manager, Miss Sifert (O'Neal), rings the burglar alarm
in the middle of the robbery and Laurie plugs her. In their getaway, it
also becomes necessary for her to shoot a company guard who is in their
way. She tells Bart, that when she gets scared she uses her gun to kill.
Bart comments: "Two people dead, just so we can live without working!"</P>
<P>The two make plans to split-up for a few months and then get together
again, but they can't go their separate ways, having fallen too
passionately in love with each other. In town, they are staying in a
California hotel near the ocean and have made arrangements by bribing
some officials to get across the border into Mexico. Bart hopes to use
the money to buy a ranch in Mexico and maybe raise a family there.
Celebrating their changing luck by going on some amusement rides and
then dancing in the fairgrounds, they notice some federal agents have
spotted the marked money from the robbery they were using and assume
they are waiting for them back in the hotel, where they kept the stolen
loot. They are now broke and on-the-run again, as they flee town by
carjacking a cab and then riding the rails out of town.</P>
<P>With no place else to run to, they return to his small-town and force
their way into Ruby's place. She has a few children and is not pleased
to see them. The neighbors notice she has her blinds down and they
inform Clyde about it, who brings Dave along with him to Ruby's place,
suspecting he is there and that they can talk him into peacefully
surrendering. The two desperadoes have no intention of surrendering, and
after locking Ruby in the garage, they try to escape by going up a
mountain road. When trapped overnight in a swamp, chased by dogs and a
police posse, Dave and Clyde find them in the old hiding spot they used
as youths. When Laurie tries to kill them, Bart shoots her, the only
killing he does, and is shot in return by the sheriff, who mistakingly
thinks he was shooting at them. The swamp was used because this
low-budget film couldn't afford the money to pay extras and the swamp
scene would require only a limited cast.</P>
<P>As film noir, this hard-boiled story is much superior to the more
popular and more critically acclaimed "Bonnie and Clyde," which covered
the same territory story-wise: amour fou- the running away together by
lovers. Both films were based on the real lives of the infamous criminal
couple. This fast-action film, with its typically notorious femme fatale
depicted, is subversive to the nth degree. It celebrates the couple's
disregard for the law and their insatiable appetite for their own
desires, which causes them to disregard middle-class values, as they act
with a sense of bold impropriety. This is in line with what The Nation's
former iconoclastic film critic, Manny Farber, called many films such as
this one, that were now accepted by the surrealists and the new brand of
intellectual youths, revolting against the middlebrow critics who called
this merely a B- "pulp" film. He complimented films of this kind by
endearingly calling them, "perceptive trash." Whatever weakness the
story had as it waivered between art and entertainment, and even if it
was acted by not the most accomplished of actors, yet there was a raw
innocence about it creating a special kind of appeal to those who could
feel its lively pulse beating to their resentment of the establishment.
It should be remembered that this film came out at a time before there
was rock & roll, a civil rights demonstration, and a Vietnam War protest
movement, that even if the film appears dated in certain spots when
presently viewed, it still retains its revolutionary spirit of youth
being forced to find their own identity in the world, as they profoundly
and uninhibitedly search for love.</P>
<PRE>REVIEWED ON 1/20/2000 GRADE: A</PRE>
<P>Dennis Schwartz: " Ozus' World Movie Reviews "</P>
<PRE><A HREF="http://www.sover.net/~ozus">http://www.sover.net/~ozus</A></PRE>
<PRE><A HREF="mailto:ozus@sover.net">ozus@sover.net</A></PRE>
<P>© ALL RIGHTS RESERVED DENNIS SCHWARTZ</P>
<HR><P CLASS=flush><SMALL>The review above was posted to the
<A HREF="news:rec.arts.movies.reviews">rec.arts.movies.reviews</A> newsgroup (<A HREF="news:de.rec.film.kritiken">de.rec.film.kritiken</A> for German reviews).<BR>
The Internet Movie Database accepts no responsibility for the contents of the
review and has no editorial control. Unless stated otherwise, the copyright
belongs to the author.<BR>
Please direct comments/criticisms of the review to relevant newsgroups.<BR>
Broken URLs inthe reviews are the responsibility of the author.<BR>
The formatting of the review is likely to differ from the original due
to ASCII to HTML conversion.
</SMALL></P>
<P ALIGN=CENTER>Related links: <A HREF="/Reviews/">index of all rec.arts.movies.reviews reviews</A></P>
</P></BODY></HTML>
|
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/4b46735fd148a4bbcc6f8eaf304fcff0f03473507960de08af213ba67c217cfa.html
|
simonmysun/praxis
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>18 --> 19</title>
<link href="./../../assets/style.css" rel="stylesheet">
</head>
<body>
<h2>You have to be fast</h2>
<a href="./35368f98039f30745c38d9a3f7126f6931a3f3d12d9711672b5afd2360002b20.html">Teleport</a>
<hr>
<a href="./../../about.md">About</a> (Spoilers! )
<script src="./../../assets/md5.js"></script>
<script>
window.currentLevel = 7;
</script>
<script src="./../../assets/script.js"></script>
</body>
</html>
|
assets/public/business/clients.html
|
fajarlabs/sucofindo
|
<!DOCTYPE html>
<html lang="en" class="wide wow-animation">
<!-- Mirrored from templateforest.top/business/clients.html by HTTrack Website Copier/3.x [XR&CO'2014], Thu, 23 Nov 2017 02:04:30 GMT -->
<head>
<title>Business</title>
<meta name="format-detection" content="telephone=no">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<link rel="icon" href="images/favicon.html" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="css/css235b.css?family=Montserrat:400,700%7CLato:300,300italic,400,400italic,700,900%7CPlayfair+Display:700italic,900">
<link rel="stylesheet" href="css/style.css">
</head>
<body style="">
<div class="page">
<header class="page-head">
<div class="rd-navbar-wrap">
<nav data-layout="rd-navbar-fixed" data-sm-layout="rd-navbar-fixed" data-md-device-layout="rd-navbar-fixed" data-lg-layout="rd-navbar-static" data-lg-device-layout="rd-navbar-static" data-stick-up-clone="false" data-md-stick-up-offset="53px" data-lg-stick-up-offset="53px" data-md-stick="true" data-lg-stick-up="true" class="rd-navbar rd-navbar-corporate-light">
<div class="rd-navbar-inner">
<div class="rd-navbar-aside-wrap">
<div class="rd-navbar-aside">
<div data-rd-navbar-toggle=".rd-navbar-aside" class="rd-navbar-aside-toggle"><span></span></div>
<div class="rd-navbar-aside-content">
<ul class="rd-navbar-aside-group list-units">
<li>
<div class="unit unit-horizontal unit-spacing-xs unit-middle">
<div class="unit-left"><span class="icon icon-xxs icon-primary material-icons-phone"></span></div>
<div class="unit-body"><a href="callto:#" class="link-secondary">+190089123</a></div>
</div>
</li>
<li>
<div class="unit unit-horizontal unit-spacing-xs unit-middle">
<div class="unit-left"><span class="icon icon-xxs icon-primary fa-envelope-o"></span></div>
<div class="unit-body"><a href="#ab88" class="link-secondary"><span class="__cf_email__" data-cfemail="81e8efe7eec1e5e4eceeede8efeaafeef3e6">philipjoan@gmail.com</span></a></div>
</div>
</li>
</ul>
<div class="rd-navbar-aside-group">
<ul class="list-inline list-inline-reset">
<li><a href="#" class="icon icon-circle icon-silver-chalice-filled icon-xxs-smallest fa fa-facebook"></a></li>
<li><a href="#" class="icon icon-circle icon-silver-chalice-filled icon-xxs-smallest fa fa-twitter"></a></li>
<li><a href="#" class="icon icon-circle icon-silver-chalice-filled icon-xxs-smallest fa fa-google-plus"></a></li>
</ul>
</div>
</div>
</div>
<div class="rd-navbar-search">
<form action="http://templateforest.top/business/search-results.html" method="GET" data-search-live="rd-search-results-live" data-search-live-count="6" class="rd-search">
<div class="rd-search-inner">
<div class="form-group">
<label for="rd-search-form-input" class="form-label">Search...</label>
<input id="rd-search-form-input" type="text" name="s" autocomplete="off" class="form-control">
</div>
<button type="submit" class="rd-search-submit"></button>
</div>
<div id="rd-search-results-live" class="rd-search-results-live"></div>
</form>
<button data-rd-navbar-toggle=".rd-navbar-search, .rd-navbar-search-wrap" class="rd-navbar-search-toggle"></button>
</div>
</div>
<div class="rd-navbar-group">
<div class="rd-navbar-panel">
<button data-rd-navbar-toggle=".rd-navbar-nav-wrap" class="rd-navbar-toggle"><span></span></button>
<a href="index-variant-2.html" class="rd-navbar-brand brand"><img src="images/logo-black.png" width="200" height="22" alt="logo"/></a> </div>
<div class="rd-navbar-nav-wrap">
<div class="rd-navbar-nav-inner">
<ul class="rd-navbar-nav">
<li><a href="index-variant-2.html">Home</a> </li>
<li><a href="about-us.html">About</a></li>
<li class="active"><a href="#">Pages</a>
<ul class="rd-navbar-megamenu">
<li>
<h5 class="rd-megamenu-header">Gallery</h5>
<ul class="rd-navbar-list">
<li><a href="gallery-grid.html">Grid gallery</a></li>
<li><a href="gallery-masonry.html">Masonry gallery</a></li>
<li><a href="gallery-cobbles.html">Cobbles gallery</a></li>
<li><a href="gallery-item.html">Gallery item</a></li>
</ul>
<h5 class="rd-megamenu-header">Pages</h5>
<ul class="rd-navbar-list">
<li><a href="index.html">Home landing</a></li>
<li><a href="index-variant-2.html">Home variant 2</a></li>
<li><a href="about-us.html">About us</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact-us.html">Contact us</a></li>
</ul>
</li>
<li>
<h5 class="rd-megamenu-header">Pages</h5>
<ul class="rd-navbar-list">
<li><a href="appointment.html">Appointment</a></li>
<li><a href="clients.html">Clients</a></li>
<li><a href="clients-testimonials.html">Clients testimonials</a></li>
<li><a href="our-team.html">Our team</a></li>
<li><a href="team-member-profile.html">Team member profile</a></li>
<li><a href="careers.html">Careers</a></li>
<li><a href="pricing.html">Pricing</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
</li>
<li>
<h5 class="rd-megamenu-header">Extras</h5>
<ul class="rd-navbar-list">
<li><a href="404-page.html">404 Page</a></li>
<li><a href="503-page.html">503 Page</a></li>
<li><a href="maintenance.html">Maintenance</a></li>
<li><a href="coming-soon.html">Coming soon</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="register.html">Register</a></li>
<li><a href="search-results.html">Search results</a></li>
<li><a href="privacy-policy.html">Terms of use</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#">Portfolio</a>
<ul class="rd-navbar-dropdown">
<li><a href="gallery-grid.html">Gallery grid</a> </li>
<li><a href="gallery-masonry.html">Gallery masonry</a> </li>
<li><a href="gallery-cobbles.html">Gallery cobbles</a> </li>
<li><a href="gallery-item.html">Gallery item</a> </li>
</ul>
</li>
<li><a href="#">Blog</a>
<ul class="rd-navbar-dropdown">
<li><a href="blog-classic.html">Blog classic</a> </li>
<li><a href="blog-grid.html">Blog grid</a> </li>
<li><a href="blog-line.html">Blog line</a> </li>
<li><a href="blog-masonry.html">Blog masonry</a> </li>
<li><a href="blog-post.html">Blog post</a> </li>
</ul>
</li>
<li><a href="#">Shop</a>
<ul class="rd-navbar-dropdown">
<li><a href="shop-list.html">Shop list</a> </li>
<li><a href="shop-grid.html">Shop grid</a> </li>
<li><a href="shop-product.html">Shop product</a> </li>
<li><a href="shop-cart.html">Shop cart</a> </li>
<li><a href="shop-checkout.html">Shop checkout</a> </li>
</ul>
</li>
<li><a href="#">Components</a>
<ul class="rd-navbar-dropdown">
<li><a href="accordion.html">Accordion</a> </li>
<li><a href="buttons.html">Buttons</a> </li>
<li><a href="grid.html">Grid</a> </li>
<li><a href="forms.html">Forms</a> </li>
<li><a href="icons.html">Icons</a> </li>
<li><a href="icon-lists.html">Icon lists</a> </li>
<li><a href="progress-bars.html">Progress bars</a> </li>
<li><a href="tabs.html">Tabs</a> </li>
<li><a href="table-styles.html">Table styles</a> </li>
<li><a href="typography.html">Typography</a> </li>
</ul>
</li>
</ul>
</div>
</div>
</div>
</div>
</nav>
</div>
</header>
<main class="page-content">
<section style="background-image: url(images/bg-image-11.jpg);" class="section-30 section-sm-40 section-md-66 section-lg-bottom-90 bg-gray-dark page-title-wrap">
<div class="shell">
<div class="page-title">
<h2>Clients</h2>
</div>
</div>
</section>
<section class="section-66 section-sm-top-90 section-sm-bottom-75">
<div class="shell">
<h3>Our Partners</h3>
<p style="max-width: 590px;">We work with companies that have established a stainless reputation in what they do. There are leaders in various spheres of business, and we appreciate cooperating with them.</p>
<div data-arrows="false" data-loop="true" data-dots="true" data-swipe="true" data-items="1" data-xs-items="2" data-sm-items="3" data-md-items="5" data-lg-items="6" data-slide-to-scroll="1" class="slick-slider offset-top-40 offset-sm-top-60">
<div class="item">
<div class="link-image-wrap"><a href="#" class="link-image"><img src="images/clients-1-126x68.png" alt="" width="126" height="68"/></a></div>
<div class="link-image-wrap"><a href="#" class="link-image"><img src="images/clients-7-104x84.png" alt="" width="104" height="84"/></a></div>
</div>
<div class="item">
<div class="link-image-wrap"><a href="#" class="link-image"><img src="images/clients-2-126x100.png" alt="" width="126" height="100"/></a></div>
<div class="link-image-wrap"><a href="#" class="link-image"><img src="images/clients-8-144x68.png" alt="" width="144" height="68"/></a></div>
</div>
<div class="item">
<div class="link-image-wrap"><a href="#" class="link-image"><img src="images/clients-3-132x83.png" alt="" width="132" height="83"/></a></div>
<div class="link-image-wrap"><a href="#" class="link-image"><img src="images/clients-9-105x94.png" alt="" width="105" height="94"/></a></div>
</div>
<div class="item">
<div class="link-image-wrap"><a href="#" class="link-image"><img src="images/clients-4-169x68.png" alt="" width="169" height="68"/></a></div>
<div class="link-image-wrap"><a href="#" class="link-image"><img src="images/clients-10-95x101.png" alt="" width="95" height="101"/></a></div>
</div>
<div class="item">
<div class="link-image-wrap"><a href="#" class="link-image"><img src="images/clients-5-141x88.png" alt="" width="141" height="88"/></a></div>
<div class="link-image-wrap"><a href="#" class="link-image"><img src="images/clients-11-126x68.png" alt="" width="126" height="68"/></a></div>
</div>
<div class="item">
<div class="link-image-wrap"><a href="#" class="link-image"><img src="images/clients-6-138x55.png" alt="" width="138" height="55"/></a></div>
<div class="link-image-wrap"><a href="#" class="link-image"><img src="images/clients-12-132x83.png" alt="" width="132" height="83"/></a></div>
</div>
</div>
</div>
</section>
<section class="section-60 section-sm-90 section-md-bottom-120 bg-gray-dark">
<div class="shell text-center">
<h3>What Clients Say?</h3>
<div class="range range-xs-center range-sm-left offset-top-40">
<div class="cell-sm-4">
<blockquote class="quote-vertical quote-vertical-inverse">
<div class="quote-body">
<div class="quote-open">
<svg version="1.1" baseprofile="tiny" xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="12px" viewbox="0 0 21 15" overflow="scroll" xml:space="preserve" preserveAspectRatio="none">
<path d="M9.597,10.412c0,1.306-0.473,2.399-1.418,3.277c-0.944,0.876-2.06,1.316-3.349,1.316 c-1.287,0-2.414-0.44-3.382-1.316C0.482,12.811,0,11.758,0,10.535c0-1.226,0.58-2.716,1.739-4.473L5.603,0H9.34L6.956,6.37 C8.716,7.145,9.597,8.493,9.597,10.412z M20.987,10.412c0,1.306-0.473,2.399-1.418,3.277c-0.944,0.876-2.06,1.316-3.35,1.316 c-1.288,0-2.415-0.44-3.381-1.316c-0.966-0.879-1.45-1.931-1.45-3.154c0-1.226,0.582-2.716,1.74-4.473L16.994,0h3.734l-2.382,6.37 C20.106,7.145,20.987,8.493,20.987,10.412z"></path>
</svg>
</div>
<p class="quote-text"> <q>The one thing I am sure about right now is that my next web startup will be developed by Business.</q> </p>
</div>
<div class="quote-meta">
<figure class="quote-image"><img src="images/clients-testimonials-7-113x113.png" alt="" width="113" height="113"/> </figure>
<cite>Axel Merphy</cite>
<p class="caption">Freelance developer</p>
</div>
</blockquote>
</div>
<div class="cell-sm-4 offset-top-60 offset-sm-top-0">
<blockquote class="quote-vertical quote-vertical-inverse">
<div class="quote-body">
<div class="quote-open">
<svg version="1.1" baseprofile="tiny" xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="12px" viewbox="0 0 21 15" overflow="scroll" xml:space="preserve" preserveAspectRatio="none">
<path d="M9.597,10.412c0,1.306-0.473,2.399-1.418,3.277c-0.944,0.876-2.06,1.316-3.349,1.316 c-1.287,0-2.414-0.44-3.382-1.316C0.482,12.811,0,11.758,0,10.535c0-1.226,0.58-2.716,1.739-4.473L5.603,0H9.34L6.956,6.37 C8.716,7.145,9.597,8.493,9.597,10.412z M20.987,10.412c0,1.306-0.473,2.399-1.418,3.277c-0.944,0.876-2.06,1.316-3.35,1.316 c-1.288,0-2.415-0.44-3.381-1.316c-0.966-0.879-1.45-1.931-1.45-3.154c0-1.226,0.582-2.716,1.74-4.473L16.994,0h3.734l-2.382,6.37 C20.106,7.145,20.987,8.493,20.987,10.412z"></path>
</svg>
</div>
<p class="quote-text"> <q>Theyve developed a large multipage website with lots of additional functions in just two weeks.</q> </p>
</div>
<div class="quote-meta">
<figure class="quote-image"><img src="images/clients-testimonials-8-113x113.png" alt="" width="113" height="113"/> </figure>
<cite>Amelia Lee</cite>
<p class="caption">Sales, demolink.org</p>
</div>
</blockquote>
</div>
<div class="cell-sm-4 offset-top-60 offset-sm-top-0">
<blockquote class="quote-vertical quote-vertical-inverse">
<div class="quote-body">
<div class="quote-open">
<svg version="1.1" baseprofile="tiny" xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="12px" viewbox="0 0 21 15" overflow="scroll" xml:space="preserve" preserveAspectRatio="none">
<path d="M9.597,10.412c0,1.306-0.473,2.399-1.418,3.277c-0.944,0.876-2.06,1.316-3.349,1.316 c-1.287,0-2.414-0.44-3.382-1.316C0.482,12.811,0,11.758,0,10.535c0-1.226,0.58-2.716,1.739-4.473L5.603,0H9.34L6.956,6.37 C8.716,7.145,9.597,8.493,9.597,10.412z M20.987,10.412c0,1.306-0.473,2.399-1.418,3.277c-0.944,0.876-2.06,1.316-3.35,1.316 c-1.288,0-2.415-0.44-3.381-1.316c-0.966-0.879-1.45-1.931-1.45-3.154c0-1.226,0.582-2.716,1.74-4.473L16.994,0h3.734l-2.382,6.37 C20.106,7.145,20.987,8.493,20.987,10.412z"></path>
</svg>
</div>
<p class="quote-text"> <q>Im extremely satisfied with their work. My new website looks great and runs smoothly. The support is excellent too.</q> </p>
</div>
<div class="quote-meta">
<figure class="quote-image"><img src="images/clients-testimonials-9-113x113.png" alt="" width="113" height="113"/> </figure>
<cite>Jack McGee</cite>
<p class="caption">Founder, The Therapy</p>
</div>
</blockquote>
</div>
<div class="cell-sm-4 offset-top-60">
<blockquote class="quote-vertical quote-vertical-inverse">
<div class="quote-body">
<div class="quote-open">
<svg version="1.1" baseprofile="tiny" xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="12px" viewbox="0 0 21 15" overflow="scroll" xml:space="preserve" preserveAspectRatio="none">
<path d="M9.597,10.412c0,1.306-0.473,2.399-1.418,3.277c-0.944,0.876-2.06,1.316-3.349,1.316 c-1.287,0-2.414-0.44-3.382-1.316C0.482,12.811,0,11.758,0,10.535c0-1.226,0.58-2.716,1.739-4.473L5.603,0H9.34L6.956,6.37 C8.716,7.145,9.597,8.493,9.597,10.412z M20.987,10.412c0,1.306-0.473,2.399-1.418,3.277c-0.944,0.876-2.06,1.316-3.35,1.316 c-1.288,0-2.415-0.44-3.381-1.316c-0.966-0.879-1.45-1.931-1.45-3.154c0-1.226,0.582-2.716,1.74-4.473L16.994,0h3.734l-2.382,6.37 C20.106,7.145,20.987,8.493,20.987,10.412z"></path>
</svg>
</div>
<p class="quote-text"> <q>Got really enjoyable experience with your product. Easy set up is a huge plus. I even didnt turn to support service.</q> </p>
</div>
<div class="quote-meta">
<figure class="quote-image"><img src="images/clients-testimonials-10-113x113.png" alt="" width="113" height="113"/> </figure>
<cite>John Davis</cite>
<p class="caption">Writer</p>
</div>
</blockquote>
</div>
<div class="cell-sm-4 offset-top-60">
<blockquote class="quote-vertical quote-vertical-inverse">
<div class="quote-body">
<div class="quote-open">
<svg version="1.1" baseprofile="tiny" xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="12px" viewbox="0 0 21 15" overflow="scroll" xml:space="preserve" preserveAspectRatio="none">
<path d="M9.597,10.412c0,1.306-0.473,2.399-1.418,3.277c-0.944,0.876-2.06,1.316-3.349,1.316 c-1.287,0-2.414-0.44-3.382-1.316C0.482,12.811,0,11.758,0,10.535c0-1.226,0.58-2.716,1.739-4.473L5.603,0H9.34L6.956,6.37 C8.716,7.145,9.597,8.493,9.597,10.412z M20.987,10.412c0,1.306-0.473,2.399-1.418,3.277c-0.944,0.876-2.06,1.316-3.35,1.316 c-1.288,0-2.415-0.44-3.381-1.316c-0.966-0.879-1.45-1.931-1.45-3.154c0-1.226,0.582-2.716,1.74-4.473L16.994,0h3.734l-2.382,6.37 C20.106,7.145,20.987,8.493,20.987,10.412z"></path>
</svg>
</div>
<p class="quote-text"> <q>An efficient and reliable resource. They always remain flexible, cost effective, and lightning fast. Keep up the good work!</q> </p>
</div>
<div class="quote-meta">
<figure class="quote-image"><img src="images/clients-testimonials-11-113x113.png" alt="" width="113" height="113"/> </figure>
<cite>Jill Miller</cite>
<p class="caption">Artist</p>
</div>
</blockquote>
</div>
<div class="cell-sm-4 offset-top-60">
<blockquote class="quote-vertical quote-vertical-inverse">
<div class="quote-body">
<div class="quote-open">
<svg version="1.1" baseprofile="tiny" xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="12px" viewbox="0 0 21 15" overflow="scroll" xml:space="preserve" preserveAspectRatio="none">
<path d="M9.597,10.412c0,1.306-0.473,2.399-1.418,3.277c-0.944,0.876-2.06,1.316-3.349,1.316 c-1.287,0-2.414-0.44-3.382-1.316C0.482,12.811,0,11.758,0,10.535c0-1.226,0.58-2.716,1.739-4.473L5.603,0H9.34L6.956,6.37 C8.716,7.145,9.597,8.493,9.597,10.412z M20.987,10.412c0,1.306-0.473,2.399-1.418,3.277c-0.944,0.876-2.06,1.316-3.35,1.316 c-1.288,0-2.415-0.44-3.381-1.316c-0.966-0.879-1.45-1.931-1.45-3.154c0-1.226,0.582-2.716,1.74-4.473L16.994,0h3.734l-2.382,6.37 C20.106,7.145,20.987,8.493,20.987,10.412z"></path>
</svg>
</div>
<p class="quote-text"> <q>A superb product for the price. Easy to read instructions are really helpful. Excellent, have nothing to add.</q> </p>
</div>
<div class="quote-meta">
<figure class="quote-image"><img src="images/clients-testimonials-12-113x113.png" alt="" width="113" height="113"/> </figure>
<cite>Christopher Taylor</cite>
<p class="caption">Financial Consultant</p>
</div>
</blockquote>
</div>
</div>
</div>
</section>
</main>
<section class="section-40 section-sm-60 bg-cod-gray">
<div class="shell">
<div class="range range-xs-center">
<div class="cell-xs-10 cell-sm-11 cell-md-12">
<div class="range">
<div class="cell-sm-6 cell-md-4">
<div class="inset-md-right-30">
<h6 class="text-uppercase">About us</h6>
<p class="offset-top-22"> themeforest is an A-size depot of website templates - more than 46,000 designs to choose from. </p>
</div>
<div class="offset-top-22">
<div class="group-md group-top">
<div>
<div class="unit unit-horizontal unit-spacing-xs">
<div class="unit-left"><span class="icon icon-xs-smaller icon-primary fa-phone"></span></div>
<div class="unit-body"><a href="callto:#" class="link link-bold link-white-v2">190089123</a></div>
</div>
<div class="inset-left-30"><a href="#f0d3" class="link-white-v2 text-italic"><span class="__cf_email__" data-cfemail="2d44434b426d494840424144434603425f4a">philip@gmail.com</span></a></div>
</div>
<div>
<ul class="list-inline list-inline-reset">
<li><a href="#" class="icon icon-round icon-gray-dark-filled icon-xxs-smallest fa fa-facebook"></a></li>
<li><a href="#" class="icon icon-round icon-gray-dark-filled icon-xxs-smallest fa fa-twitter"></a></li>
<li><a href="#" class="icon icon-round icon-gray-dark-filled icon-xxs-smallest fa fa-google-plus"></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="cell-sm-6 cell-md-4 offset-top-50 offset-sm-top-0">
<h6 class="text-uppercase">Quick links</h6>
<div style="max-width: 340px;" class="row offset-top-22 offset-md-top-30">
<div class="col-xs-6">
<ul class="list-marked-variant-2">
<li><a href="index-variant-2.html">Home</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="careers.html">Careers</a></li>
<li><a href="blog-classic.html">Blog</a></li>
</ul>
</div>
<div class="col-xs-6">
<ul class="list-marked-variant-2">
<li><a href="about.html">About us</a></li>
<li><a href="contact-us.html">Contacts</a></li>
<li><a href="appointment.html">Appointment</a></li>
</ul>
</div>
</div>
</div>
<div class="cell-sm-6 cell-md-4 offset-top-50 offset-md-top-0">
<h6 class="text-uppercase">Subscribe</h6>
<div class="offset-top-22 offset-md-top-30">
<p>Get latest updates and offers.</p>
<form data-form-output="form-output-global" data-form-type="subscribe" method="post" action="#" class="rd-mailform form-classic form-inline offset-top-15">
<div class="form-group">
<input id="contact-email" type="email" name="email" data-constraints="@Email @Required" class="form-control">
<label for="contact-email" class="form-label">Enter Your E-mail</label>
</div>
<button type="submit" aria-label="Subscribe" class="btn btn-icon-only btn-primary"><span class="icon icon-xs icon-white fa-envelope-o"></span></button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="page-foot section-15 bg-gray-base">
<div class="shell text-center">
<div class="range">
<div class="cell-sm-12">
<p class="rights text-white-03"><span>© </span><span id="copyright-year"></span><span>Business. </span><a href="privacy-policy.html" class="link-white-03">Privacy Policy</a> </p>
</div>
</div>
</div>
</footer>
</div>
<div id="form-output-global" class="snackbars"></div>
<div tabindex="-1" role="dialog" aria-hidden="true" class="pswp">
<div class="pswp__bg"></div>
<div class="pswp__scroll-wrap">
<div class="pswp__container">
<div class="pswp__item"></div>
<div class="pswp__item"></div>
<div class="pswp__item"></div>
</div>
<div class="pswp__ui pswp__ui--hidden">
<div class="pswp__top-bar">
<div class="pswp__counter"></div>
<button title="Close (Esc)" class="pswp__button pswp__button--close"></button>
<button title="Share" class="pswp__button pswp__button--share"></button>
<button title="Toggle fullscreen" class="pswp__button pswp__button--fs"></button>
<button title="Zoom in/out" class="pswp__button pswp__button--zoom"></button>
<div class="pswp__preloader">
<div class="pswp__preloader__icn">
<div class="pswp__preloader__cut">
<div class="pswp__preloader__donut"></div>
</div>
</div>
</div>
</div>
<div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
<div class="pswp__share-tooltip"></div>
</div>
<button title="Previous (arrow left)" class="pswp__button pswp__button--arrow--left"></button>
<button title="Next (arrow right)" class="pswp__button pswp__button--arrow--right"></button>
<div class="pswp__caption">
<div class="pswp__caption__cent"></div>
</div>
</div>
</div>
</div>
<script src="js/core.min.js"></script>
<script src="js/script.js"></script>
</body>
<!-- Mirrored from templateforest.top/business/clients.html by HTTrack Website Copier/3.x [XR&CO'2014], Thu, 23 Nov 2017 02:04:36 GMT -->
</html>
|
html/234567124228.html
|
GoC-Spending/data-corporations
|
<!DOCTYPE html>
<!--[if lt IE 9]><html class="no-js lt-ie9" lang="en" dir="ltr"><![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="en" dir="ltr">
<!--<![endif]-->
<!-- Usage: /eic/site/ccc-rec.nsf/tpl-eng/template-1col.html?Open&id=3 (optional: ?Open&page=filename.html&id=x) -->
<!-- Created: ; Product Code: 536; Server: stratnotes2.ic.gc.ca -->
<head>
<!-- Title begins / Début du titre -->
<title>
Designer Glass -
Complete profile - Canadian Company Capabilities - Industries and Business - Industry Canada
</title>
<!-- Title ends / Fin du titre -->
<!-- Meta-data begins / Début des métadonnées -->
<meta charset="utf-8" />
<meta name="dcterms.language" title="ISO639-2" content="eng" />
<meta name="dcterms.title" content="" />
<meta name="description" content="" />
<meta name="dcterms.description" content="" />
<meta name="dcterms.type" content="report, data set" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.issued" title="W3CDTF" content="" />
<meta name="dcterms.modified" title="W3CDTF" content="" />
<meta name="keywords" content="" />
<meta name="dcterms.creator" content="" />
<meta name="author" content="" />
<meta name="dcterms.created" title="W3CDTF" content="" />
<meta name="dcterms.publisher" content="" />
<meta name="dcterms.audience" title="icaudience" content="" />
<meta name="dcterms.spatial" title="ISO3166-1" content="" />
<meta name="dcterms.spatial" title="gcgeonames" content="" />
<meta name="dcterms.format" content="HTML" />
<meta name="dcterms.identifier" title="ICsiteProduct" content="536" />
<!-- EPI-11240 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- MCG-202 -->
<meta content="width=device-width,initial-scale=1" name="viewport">
<!-- EPI-11567 -->
<meta name = "format-detection" content = "telephone=no">
<!-- EPI-12603 -->
<meta name="robots" content="noarchive">
<!-- EPI-11190 - Webtrends -->
<script>
var startTime = new Date();
startTime = startTime.getTime();
</script>
<!--[if gte IE 9 | !IE ]><!-->
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="icon" type="image/x-icon">
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/wet-boew.min.css">
<!--<![endif]-->
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/theme.min.css">
<!--[if lt IE 9]>
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="shortcut icon" />
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/ie8-wet-boew.min.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew.min.js"></script>
<![endif]-->
<!--[if lte IE 9]>
<![endif]-->
<noscript><link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/noscript.min.css" /></noscript>
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<script>dataLayer1 = [];</script>
<!-- End Google Tag Manager -->
<!-- EPI-11235 -->
<link rel="stylesheet" href="/eic/home.nsf/css/add_WET_4-0_Canada_Apps.css">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link href="/app/ccc/srch/css/print.css" media="print" rel="stylesheet" type="text/css" />
</head>
<body class="home" vocab="http://schema.org/" typeof="WebPage">
<!-- EPIC HEADER BEGIN -->
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<noscript><iframe title="Google Tag Manager" src="//www.googletagmanager.com/ns.html?id=GTM-TLGQ9K" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer1'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer1','GTM-TLGQ9K');</script>
<!-- End Google Tag Manager -->
<!-- EPI-12801 -->
<span typeof="Organization"><meta property="legalName" content="Department_of_Industry"></span>
<ul id="wb-tphp">
<li class="wb-slc">
<a class="wb-sl" href="#wb-cont">Skip to main content</a>
</li>
<li class="wb-slc visible-sm visible-md visible-lg">
<a class="wb-sl" href="#wb-info">Skip to "About this site"</a>
</li>
</ul>
<header role="banner">
<div id="wb-bnr" class="container">
<section id="wb-lng" class="visible-md visible-lg text-right">
<h2 class="wb-inv">Language selection</h2>
<div class="row">
<div class="col-md-12">
<ul class="list-inline mrgn-bttm-0">
<li><a href="nvgt.do?V_TOKEN=1492280390441&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=13600&V_SEARCH.docsStart=1&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn/?_flId?_flxKy=e1s1&estblmntNo=234567041301&profileId=61&_evId=bck&lang=eng&V_SEARCH.showStricts=false&prtl=1&_flId?_flId?_flxKy=e1s1" title="Français" lang="fr">Français</a></li>
</ul>
</div>
</div>
</section>
<div class="row">
<div class="brand col-xs-8 col-sm-9 col-md-6">
<a href="http://www.canada.ca/en/index.html"><object type="image/svg+xml" tabindex="-1" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/sig-blk-en.svg"></object><span class="wb-inv"> Government of Canada</span></a>
</div>
<section class="wb-mb-links col-xs-4 col-sm-3 visible-sm visible-xs" id="wb-glb-mn">
<h2>Search and menus</h2>
<ul class="list-inline text-right chvrn">
<li><a href="#mb-pnl" title="Search and menus" aria-controls="mb-pnl" class="overlay-lnk" role="button"><span class="glyphicon glyphicon-search"><span class="glyphicon glyphicon-th-list"><span class="wb-inv">Search and menus</span></span></span></a></li>
</ul>
<div id="mb-pnl"></div>
</section>
<!-- Site Search Removed -->
</div>
</div>
<nav role="navigation" id="wb-sm" class="wb-menu visible-md visible-lg" data-trgt="mb-pnl" data-ajax-fetch="//cdn.canada.ca/gcweb-cdn-dev/sitemenu/sitemenu-en.html" typeof="SiteNavigationElement">
<h2 class="wb-inv">Topics menu</h2>
<div class="container nvbar">
<div class="row">
<ul class="list-inline menu">
<li><a href="https://www.canada.ca/en/services/jobs.html">Jobs</a></li>
<li><a href="http://www.cic.gc.ca/english/index.asp">Immigration</a></li>
<li><a href="https://travel.gc.ca/">Travel</a></li>
<li><a href="https://www.canada.ca/en/services/business.html">Business</a></li>
<li><a href="https://www.canada.ca/en/services/benefits.html">Benefits</a></li>
<li><a href="http://healthycanadians.gc.ca/index-eng.php">Health</a></li>
<li><a href="https://www.canada.ca/en/services/taxes.html">Taxes</a></li>
<li><a href="https://www.canada.ca/en/services.html">More services</a></li>
</ul>
</div>
</div>
</nav>
<!-- EPIC BODY BEGIN -->
<nav role="navigation" id="wb-bc" class="" property="breadcrumb">
<h2 class="wb-inv">You are here:</h2>
<div class="container">
<div class="row">
<ol class="breadcrumb">
<li><a href="/eic/site/icgc.nsf/eng/home" title="Home">Home</a></li>
<li><a href="/eic/site/icgc.nsf/eng/h_07063.html" title="Industries and Business">Industries and Business</a></li>
<li><a href="/eic/site/ccc-rec.nsf/tpl-eng/../eng/home" >Canadian Company Capabilities</a></li>
</ol>
</div>
</div>
</nav>
</header>
<main id="wb-cont" role="main" property="mainContentOfPage" class="container">
<!-- End Header -->
<!-- Begin Body -->
<!-- Begin Body Title -->
<!-- End Body Title -->
<!-- Begin Body Head -->
<!-- End Body Head -->
<!-- Begin Body Content -->
<br>
<!-- Complete Profile -->
<!-- Company Information above tabbed area-->
<input id="showMore" type="hidden" value='more'/>
<input id="showLess" type="hidden" value='less'/>
<h1 id="wb-cont">
Company profile - Canadian Company Capabilities
</h1>
<div class="profileInfo hidden-print">
<ul class="list-inline">
<li><a href="cccSrch.do?lang=eng&profileId=&prtl=1&key.hitsPerPage=25&searchPage=%252Fapp%252Fccc%252Fsrch%252FcccBscSrch.do%253Flang%253Deng%2526amp%253Bprtl%253D1%2526amp%253Btagid%253D&V_SEARCH.scopeCategory=CCC.Root&V_SEARCH.depth=1&V_SEARCH.showStricts=false&V_SEARCH.sortSpec=title+asc&rstBtn.x=" class="btn btn-link">New Search</a> |</li>
<li><form name="searchForm" method="post" action="/app/ccc/srch/bscSrch.do">
<input type="hidden" name="lang" value="eng" />
<input type="hidden" name="profileId" value="" />
<input type="hidden" name="prtl" value="1" />
<input type="hidden" name="searchPage" value="%2Fapp%2Fccc%2Fsrch%2FcccBscSrch.do%3Flang%3Deng%26amp%3Bprtl%3D1%26amp%3Btagid%3D" />
<input type="hidden" name="V_SEARCH.scopeCategory" value="CCC.Root" />
<input type="hidden" name="V_SEARCH.depth" value="1" />
<input type="hidden" name="V_SEARCH.showStricts" value="false" />
<input id="repeatSearchBtn" class="btn btn-link" type="submit" value="Return to search results" />
</form></li>
</ul>
</div>
<details>
<summary>Third-Party Information Liability Disclaimer</summary>
<p>Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.</p>
</details>
<h2>
Designer Glass
</h2>
<div class="row">
<div class="col-md-5">
<h2 class="h5 mrgn-bttm-0">Legal/Operating Name:</h2>
<p>Designer Glass</p>
<p><a href="mailto:tom.yates@bell.net" title="tom.yates@bell.net">tom.yates@bell.net</a></p>
</div>
<div class="col-md-4 mrgn-sm-sm">
<h2 class="h5 mrgn-bttm-0">Mailing Address:</h2>
<address class="mrgn-bttm-md">
69 Gladstone Ave<br/>
OSHAWA,
Ontario<br/>
L1J 4E4
<br/>
</address>
<h2 class="h5 mrgn-bttm-0">Location Address:</h2>
<address class="mrgn-bttm-md">
69 Gladstone Ave<br/>
OSHAWA,
Ontario<br/>
L1J 4E4
<br/>
</address>
<p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>:
(905) 438-8195
</p>
<p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>:
(905) 438-8194</p>
</div>
<div class="col-md-3 mrgn-tp-md">
</div>
</div>
<div class="row mrgn-tp-md mrgn-bttm-md">
<div class="col-md-12">
<h2 class="wb-inv">Company Profile</h2>
<br> Design plain glass with special special lead and film to obtain an exact look of stained glass. We do kitchen cabinet glass inserts,front door and sidelights and much more.<br>
</div>
</div>
<!-- <div class="wb-tabs ignore-session update-hash wb-eqht-off print-active"> -->
<div class="wb-tabs ignore-session">
<div class="tabpanels">
<details id="details-panel1">
<summary>
Full profile
</summary>
<!-- Tab 1 -->
<h2 class="wb-invisible">
Full profile
</h2>
<!-- Contact Information -->
<h3 class="page-header">
Contact information
</h3>
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Tom
Yates
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
Owner<br>
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(905) 438-8195
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(905) 438-8195
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
tom.yates@sympatico.ca
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Company Description -->
<h3 class="page-header">
Company description
</h3>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Country of Ownership:
</strong>
</div>
<div class="col-md-7">
Canada
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
No
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
327215 - Glass Product Manufacturing from Purchased Glass
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Alternate Industries (NAICS):
</strong>
</div>
<div class="col-md-7">
541420 - Industrial Design Services<br>
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Services
</div>
</div>
</section>
<!-- Products / Services / Licensing -->
<h3 class="page-header">
Product / Service / Licensing
</h3>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Glass with design<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
Plate glass with lead , Designer film. and bevels added to creat unique custom designs.<br>
<br>
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Technology Profile -->
<!-- Market Profile -->
<!-- Sector Information -->
<details class="mrgn-tp-md mrgn-bttm-md">
<summary>
Third-Party Information Liability Disclaimer
</summary>
<p>
Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.
</p>
</details>
</details>
<details id="details-panel2">
<summary>
Contacts
</summary>
<h2 class="wb-invisible">
Contact information
</h2>
<!-- Contact Information -->
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Tom
Yates
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
Owner<br>
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(905) 438-8195
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Facsimile:
</strong>
</div>
<div class="col-md-7">
(905) 438-8195
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
tom.yates@sympatico.ca
</div>
</div>
</section>
</details>
<details id="details-panel3">
<summary>
Description
</summary>
<h2 class="wb-invisible">
Company description
</h2>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Country of Ownership:
</strong>
</div>
<div class="col-md-7">
Canada
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
No
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
327215 - Glass Product Manufacturing from Purchased Glass
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Alternate Industries (NAICS):
</strong>
</div>
<div class="col-md-7">
541420 - Industrial Design Services<br>
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Services
</div>
</div>
</section>
</details>
<details id="details-panel4">
<summary>
Products, services and licensing
</summary>
<h2 class="wb-invisible">
Product / Service / Licensing
</h2>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Product Name:
</strong>
</div>
<div class="col-md-9">
Glass with design<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
Plate glass with lead , Designer film. and bevels added to creat unique custom designs.<br>
<br>
</div>
</div>
</section>
</details>
</div>
</div>
<div class="row">
<div class="col-md-12 text-right">
Last Update Date 2015-06-26
</div>
</div>
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
<!-- End Body Content -->
<!-- Begin Body Foot -->
<!-- End Body Foot -->
<!-- END MAIN TABLE -->
<!-- End body -->
<!-- Begin footer -->
<div class="row pagedetails">
<div class="col-sm-5 col-xs-12 datemod">
<dl id="wb-dtmd">
<dt class=" hidden-print">Date Modified:</dt>
<dd class=" hidden-print">
<span><time>2017-03-02</time></span>
</dd>
</dl>
</div>
<div class="clear visible-xs"></div>
<div class="col-sm-4 col-xs-6">
</div>
<div class="col-sm-3 col-xs-6 text-right">
</div>
<div class="clear visible-xs"></div>
</div>
</main>
<footer role="contentinfo" id="wb-info">
<nav role="navigation" class="container wb-navcurr">
<h2 class="wb-inv">About government</h2>
<!-- EPIC FOOTER BEGIN -->
<!-- EPI-11638 Contact us -->
<ul class="list-unstyled colcount-sm-2 colcount-md-3">
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07026.html#pageid=E048-H00000&from=Industries">Contact us</a></li>
<li><a href="https://www.canada.ca/en/government/dept.html">Departments and agencies</a></li>
<li><a href="https://www.canada.ca/en/government/publicservice.html">Public service and military</a></li>
<li><a href="https://www.canada.ca/en/news.html">News</a></li>
<li><a href="https://www.canada.ca/en/government/system/laws.html">Treaties, laws and regulations</a></li>
<li><a href="https://www.canada.ca/en/transparency/reporting.html">Government-wide reporting</a></li>
<li><a href="http://pm.gc.ca/eng">Prime Minister</a></li>
<li><a href="https://www.canada.ca/en/government/system.html">How government works</a></li>
<li><a href="http://open.canada.ca/en/">Open government</a></li>
</ul>
</nav>
<div class="brand">
<div class="container">
<div class="row">
<nav class="col-md-10 ftr-urlt-lnk">
<h2 class="wb-inv">About this site</h2>
<ul>
<li><a href="https://www.canada.ca/en/social.html">Social media</a></li>
<li><a href="https://www.canada.ca/en/mobile.html">Mobile applications</a></li>
<li><a href="http://www1.canada.ca/en/newsite.html">About Canada.ca</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html">Terms and conditions</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html#p1">Privacy</a></li>
</ul>
</nav>
<div class="col-xs-6 visible-sm visible-xs tofpg">
<a href="#wb-cont">Top of Page <span class="glyphicon glyphicon-chevron-up"></span></a>
</div>
<div class="col-xs-6 col-md-2 text-right">
<object type="image/svg+xml" tabindex="-1" role="img" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/wmms-blk.svg" aria-label="Symbol of the Government of Canada"></object>
</div>
</div>
</div>
</div>
</footer>
<!--[if gte IE 9 | !IE ]><!-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/wet-boew.min.js"></script>
<!--<![endif]-->
<!--[if lt IE 9]>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew2.min.js"></script>
<![endif]-->
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/theme.min.js"></script>
<!-- EPI-10519 -->
<span class="wb-sessto"
data-wb-sessto='{"inactivity": 1800000, "reactionTime": 180000, "sessionalive": 1800000, "logouturl": "/app/ccc/srch/cccSrch.do?lang=eng&prtl=1"}'></span>
<script src="/eic/home.nsf/js/jQuery.externalOpensInNewWindow.js"></script>
<!-- EPI-11190 - Webtrends -->
<script src="/eic/home.nsf/js/webtrends.js"></script>
<script>var endTime = new Date();</script>
<noscript>
<div><img alt="" id="DCSIMG" width="1" height="1" src="//wt-sdc.ic.gc.ca/dcs6v67hwe0ei7wsv8g9fv50d_3k6i/njs.gif?dcsuri=/nojavascript&WT.js=No&WT.tv=9.4.0&dcssip=www.ic.gc.ca"/></div>
</noscript>
<!-- /Webtrends -->
<!-- JS deps -->
<script src="/eic/home.nsf/js/jquery.imagesloaded.js"></script>
<!-- EPI-11262 - Util JS -->
<script src="/eic/home.nsf/js/_WET_4-0_utils_canada.min.js"></script>
<!-- EPI-11383 -->
<script src="/eic/home.nsf/js/jQuery.icValidationErrors.js"></script>
<span style="display:none;" id='app-info' data-project-groupid='' data-project-artifactid='' data-project-version='' data-project-build-timestamp='' data-issue-tracking='' data-scm-sha1='' data-scm-sha1-abbrev='' data-scm-branch='' data-scm-commit-date=''></span>
</body></html>
<!-- End Footer -->
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
|
test/renders/form-bootstrap3-readOnly-formWithConditionalLogic.html
|
formio/formio.js
|
<div id="" class="formio-component formio-component-form formio-component-label-hidden" ref="component">
<div class="formio-form formio-read-only" ref="webform" novalidate>
<div id="container1" class="form-group has-feedback formio-component formio-component-container formio-component-container1 formio-component-label-hidden" ref="component">
<div ref="nested-container1">
<div id="radio1" class="form-group has-feedback formio-component formio-component-radio formio-component-radio1 " ref="component">
<label class="control-label " for="radio1-radio1">
Radio
</label>
<div class="input-group">
<div class="radio" ref="wrapper">
<label class="control-label form-check-label label-position-right" for="-radio1--yes">
<input ref="input" name="data[container1][radio1][-radio1]" type="radio" class="form-check-input" lang="en" disabled="disabled" value="yes" id="-radio1--yes">
<span>yes</span>
</label>
</div>
<div class="radio" ref="wrapper">
<label class="control-label form-check-label label-position-right" for="-radio1--no">
<input ref="input" name="data[container1][radio1][-radio1]" type="radio" class="form-check-input" lang="en" disabled="disabled" value="no" id="-radio1--no">
<span>no</span>
</label>
</div>
</div>
<div ref="messageContainer" class="formio-errors invalid-feedback"></div>
</div>
<div id="textField" class="form-group has-feedback formio-component formio-component-textfield formio-component-textField formio-hidden" ref="component">
</div>
</div>
<div ref="messageContainer" class="formio-errors invalid-feedback"></div>
</div>
<div id="container2" class="form-group has-feedback formio-component formio-component-container formio-component-container2 formio-component-label-hidden" ref="component">
<div ref="nested-container2">
<div id="radio1" class="form-group has-feedback formio-component formio-component-radio formio-component-radio1 " ref="component">
<label class="control-label " for="radio1-radio1">
Radio
</label>
<div class="input-group">
<div class="radio" ref="wrapper">
<label class="control-label form-check-label label-position-right" for="-radio1--yes">
<input ref="input" name="data[container2][radio1][-radio1]" type="radio" class="form-check-input" lang="en" disabled="disabled" value="yes" id="-radio1--yes">
<span>yes</span>
</label>
</div>
<div class="radio" ref="wrapper">
<label class="control-label form-check-label label-position-right" for="-radio1--no">
<input ref="input" name="data[container2][radio1][-radio1]" type="radio" class="form-check-input" lang="en" disabled="disabled" value="no" id="-radio1--no">
<span>no</span>
</label>
</div>
</div>
<div ref="messageContainer" class="formio-errors invalid-feedback"></div>
</div>
<div id="textField" class="form-group has-feedback formio-component formio-component-textfield formio-component-textField formio-hidden" ref="component">
</div>
</div>
<div ref="messageContainer" class="formio-errors invalid-feedback"></div>
</div>
</div>
<div ref="messageContainer" class="formio-errors invalid-feedback"></div>
</div>
|
fig-init/ui/index.html
|
bluekvirus/containers-webstarter
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>UI</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<p>It works!</p>
</body>
</html>
|
clean/Linux-x86_64-4.09.1-2.0.6/released/8.10.2/traversable-fincontainer/8.8.0.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>traversable-fincontainer: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.10.2 / traversable-fincontainer - 8.8.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
traversable-fincontainer
<small>
8.8.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-11-30 11:23:11 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-11-30 11:23:11 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.10.2 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.09.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.09.1 Official release 4.09.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/traversable-fincontainer"
license: "ASL"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/TraversableFincontainer"]
depends: [
"ocaml"
"coq" {>= "8.8" & < "8.9~"}
]
tags: [
"keyword: finitary container"
"keyword: traversable functors"
"category: Computer Science/Data Types and Data Structures"
]
authors: [ "Russell O'Connor <oconnorr@google.com>" ]
bug-reports: "https://github.com/coq-contribs/traversable-fincontainer/issues"
dev-repo: "git+https://github.com/coq-contribs/traversable-fincontainer.git"
synopsis: "Traversable Functors are Finitary Containers"
description: """
https://github.com/oconnorr/traversable-fincontainer
A Coq proof that all Traversable functors are isomorphic to finitary containers."""
flags: light-uninstall
url {
src:
"https://github.com/coq-contribs/traversable-fincontainer/archive/v8.8.0.tar.gz"
checksum: "md5=b5ceb3f3705e9e9c94c3c414691733c7"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-traversable-fincontainer.8.8.0 coq.8.10.2</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.10.2).
The following dependencies couldn't be met:
- coq-traversable-fincontainer -> coq < 8.9~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-traversable-fincontainer.8.8.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.03.0-2.0.5/released/8.8.0/zchinese/8.10.0.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>zchinese: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.8.0 / zchinese - 8.10.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
zchinese
<small>
8.10.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-28 15:52:49 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-28 15:52:49 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 2 Virtual package relying on perl
coq 8.8.0 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.03.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.03.0 Official 4.03.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/zchinese"
license: "Unknown"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/ZChinese"]
depends: [
"ocaml"
"coq" {>= "8.10" & < "8.11~"}
]
tags: [
"keyword: number theory"
"keyword: chinese remainder"
"keyword: primality"
"keyword: prime numbers"
"category: Mathematics/Arithmetic and Number Theory/Number theory"
"category: Miscellaneous/Extracted Programs/Arithmetic"
]
authors: [
"Valérie Ménissier-Morain"
]
bug-reports: "https://github.com/coq-contribs/zchinese/issues"
dev-repo: "git+https://github.com/coq-contribs/zchinese.git"
synopsis: "A proof of the Chinese Remainder Lemma"
description: """
This is a rewriting of the contribution chinese-lemma using Zarith"""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/zchinese/archive/v8.10.0.tar.gz"
checksum: "md5=4c3d13feff5035fbabc8df1943ab7219"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-zchinese.8.10.0 coq.8.8.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.8.0).
The following dependencies couldn't be met:
- coq-zchinese -> coq >= 8.10 -> ocaml >= 4.05.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-zchinese.8.10.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
src/app/chat/components/chat-login/chat.login.view.html
|
AlvaroMolinaBarquera/RolleandoAPP
|
<div class="row justify-content-md-center">
<div class="col-md-4 col-sm-12">
<div class="card mx-auto my-auto" >
<div class="card-block">
<h4 class="card-title">Inicio de sesion</h4>
<div class="form-group">
<label>Usuario</label>
<input type="text" class="form-control" [(ngModel)]="user" maxlength="20" placeholder="Usuario"/>
</div>
<div class="form-group">
<label>Contraseña</label>
<input type="password" class="form-control" [(ngModel)]="password" maxlength="8" placeholder="Contraseña"/>
</div>
<button class="btn btn-primary btn-lg btn-block" (click)="login()"> Entrar </button>
<a routerLink="/register">¿No tienes cuenta, registrate? </a>
</div>
</div>
</div>
</div>
|
clean/Linux-x86_64-4.08.1-2.0.5/extra-dev/8.10.dev/ruler-compass-geometry/8.6.0.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ruler-compass-geometry: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / extra-dev</a></li>
<li class="active"><a href="">8.10.dev / ruler-compass-geometry - 8.6.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
ruler-compass-geometry
<small>
8.6.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2020-07-17 06:06:32 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-07-17 06:06:32 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.10.dev Formal proof management system
num 1.3 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.08.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.08.1 Official release 4.08.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/ruler-compass-geometry"
license: "GNU Lesser Public License"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/RulerCompassGeometry"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
]
tags: [ "keyword: geometry" "keyword: plane geometry" "keyword: ruler and compass geometry" "keyword: Euclidian geometry" "keyword: Hilbert's axioms" "category: Mathematics/Geometry/General" "date: 2007-11" ]
authors: [ "Jean Duprat <Jean.Duprat@ens-lyon.fr>" ]
bug-reports: "https://github.com/coq-contribs/ruler-compass-geometry/issues"
dev-repo: "git+https://github.com/coq-contribs/ruler-compass-geometry.git"
synopsis: "Ruler and compass geometry axiomatization"
description: """
This library contains an axiomatization of the ruler and
compass euclidian geometry. Files A1 to A6 contain the axioms and the
basic constructions. The other files build the proof that this
axiomatization induces the whole plane geometry except the continuity
axiom. For that the proofs of the Hilbert's axioms conclude this work in
the files E1 to E5."""
flags: light-uninstall
url {
src:
"https://github.com/coq-contribs/ruler-compass-geometry/archive/v8.6.0.tar.gz"
checksum: "md5=3d7693bf8b1a555ee357d327de90e416"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-ruler-compass-geometry.8.6.0 coq.8.10.dev</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.10.dev).
The following dependencies couldn't be met:
- coq-ruler-compass-geometry -> coq < 8.7~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-ruler-compass-geometry.8.6.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
src/app/demo/movable-demo/movable-demo/movable-demo.component.html
|
interfacewerk/iwerk-angular-ui
|
<h1>Movable</h1>
<div class="area">
<div class="target" iwMovable style="top: 20px; left: 40px;">
<div class="handle" iwMoveHandle></div>
</div>
</div>
<div class="area">
<div class="target" style="top: 20px; left: 40px;">
<div class="handle" iwMoveHandle>I'm a handle in a non-movable target :(</div>
</div>
</div>
<div class="area">
<div class="target" iwMovable style="top: 20px; left: 40px;">
<ng-container [ngComponentOutlet]="movableDemoContentComponent"></ng-container>
</div>
</div>
<div class="area">
<div class="target" iwMovable style="top: 20px; left: 40px;">
<ng-container [ngComponentOutlet]="movableDemoContent2Component"></ng-container>
</div>
</div>
|
Contents/Resources/Documents/classgoogle_1_1appengine_1_1datastore_1_1datastore__v4__pb_1_1_mutation_result.html
|
tzmartin/gae-python.docset
|
<!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.7"/>
<title>App Engine Python SDK: google.appengine.datastore.datastore_v4_pb.MutationResult Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
<link href="common.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="gae-python.logo.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">App Engine Python SDK
 <span id="projectnumber">v1.6.9 rev.445</span>
</div>
<div id="projectbrief">The Python runtime is available as an experimental Preview feature.</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.7 -->
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>google</b></li><li class="navelem"><b>appengine</b></li><li class="navelem"><b>datastore</b></li><li class="navelem"><b>datastore_v4_pb</b></li><li class="navelem"><a class="el" href="classgoogle_1_1appengine_1_1datastore_1_1datastore__v4__pb_1_1_mutation_result.html">MutationResult</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pub-attribs">Public Attributes</a> |
<a href="#pub-static-attribs">Static Public Attributes</a> |
<a href="classgoogle_1_1appengine_1_1datastore_1_1datastore__v4__pb_1_1_mutation_result-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">google.appengine.datastore.datastore_v4_pb.MutationResult Class Reference</div> </div>
</div><!--header-->
<div class="contents">
<div class="dynheader">
Inheritance diagram for google.appengine.datastore.datastore_v4_pb.MutationResult:</div>
<div class="dyncontent">
<div class="center">
<img src="classgoogle_1_1appengine_1_1datastore_1_1datastore__v4__pb_1_1_mutation_result.png" usemap="#google.appengine.datastore.datastore_v4_pb.MutationResult_map" alt=""/>
<map id="google.appengine.datastore.datastore_v4_pb.MutationResult_map" name="google.appengine.datastore.datastore_v4_pb.MutationResult_map">
</map>
</div></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:aabe01e1b59ff8ac7794b1dbbe6553a09"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aabe01e1b59ff8ac7794b1dbbe6553a09"></a>
def </td><td class="memItemRight" valign="bottom"><b>__init__</b></td></tr>
<tr class="separator:aabe01e1b59ff8ac7794b1dbbe6553a09"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a72f31c41a042ae8792780cac9dcf220e"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a72f31c41a042ae8792780cac9dcf220e"></a>
def </td><td class="memItemRight" valign="bottom"><b>key</b></td></tr>
<tr class="separator:a72f31c41a042ae8792780cac9dcf220e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4d6bf2cf335bc395d83cbcbc73de9067"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4d6bf2cf335bc395d83cbcbc73de9067"></a>
def </td><td class="memItemRight" valign="bottom"><b>mutable_key</b></td></tr>
<tr class="separator:a4d6bf2cf335bc395d83cbcbc73de9067"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2792b143b02d02f791ad99d71e36500d"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a2792b143b02d02f791ad99d71e36500d"></a>
def </td><td class="memItemRight" valign="bottom"><b>clear_key</b></td></tr>
<tr class="separator:a2792b143b02d02f791ad99d71e36500d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a18e11caeac53869d2b71ac98811e56c4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a18e11caeac53869d2b71ac98811e56c4"></a>
def </td><td class="memItemRight" valign="bottom"><b>has_key</b></td></tr>
<tr class="separator:a18e11caeac53869d2b71ac98811e56c4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aee74e032a00dd9b3e902d8336cb87ea7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aee74e032a00dd9b3e902d8336cb87ea7"></a>
def </td><td class="memItemRight" valign="bottom"><b>new_version</b></td></tr>
<tr class="separator:aee74e032a00dd9b3e902d8336cb87ea7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a344f3d9c6949af2c71f131feb90121f8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a344f3d9c6949af2c71f131feb90121f8"></a>
def </td><td class="memItemRight" valign="bottom"><b>set_new_version</b></td></tr>
<tr class="separator:a344f3d9c6949af2c71f131feb90121f8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6fa663d8e75ca34cafa5a7f6f6047302"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a6fa663d8e75ca34cafa5a7f6f6047302"></a>
def </td><td class="memItemRight" valign="bottom"><b>clear_new_version</b></td></tr>
<tr class="separator:a6fa663d8e75ca34cafa5a7f6f6047302"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a11194235da4d7cc3be6f70ada445192c"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a11194235da4d7cc3be6f70ada445192c"></a>
def </td><td class="memItemRight" valign="bottom"><b>has_new_version</b></td></tr>
<tr class="separator:a11194235da4d7cc3be6f70ada445192c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a160c1836be22412a496063a0adcbc239"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a160c1836be22412a496063a0adcbc239"></a>
def </td><td class="memItemRight" valign="bottom"><b>MergeFrom</b></td></tr>
<tr class="separator:a160c1836be22412a496063a0adcbc239"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a183ad856ffa057a87bbdf2265505923f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a183ad856ffa057a87bbdf2265505923f"></a>
def </td><td class="memItemRight" valign="bottom"><b>ParseASCII</b></td></tr>
<tr class="separator:a183ad856ffa057a87bbdf2265505923f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa18bf5b2f5a06e3b874dac1f3f156dfb"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa18bf5b2f5a06e3b874dac1f3f156dfb"></a>
def </td><td class="memItemRight" valign="bottom"><b>ParseASCIIIgnoreUnknown</b></td></tr>
<tr class="separator:aa18bf5b2f5a06e3b874dac1f3f156dfb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa076ee8b4a1fbd4b0c2a59d6d4a4d8a3"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa076ee8b4a1fbd4b0c2a59d6d4a4d8a3"></a>
def </td><td class="memItemRight" valign="bottom"><b>Equals</b></td></tr>
<tr class="separator:aa076ee8b4a1fbd4b0c2a59d6d4a4d8a3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af0eedd8f0d724df2b7e41a03fd49e67f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af0eedd8f0d724df2b7e41a03fd49e67f"></a>
def </td><td class="memItemRight" valign="bottom"><b>IsInitialized</b></td></tr>
<tr class="separator:af0eedd8f0d724df2b7e41a03fd49e67f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5039b40811da1f9374994b57531a9f67"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5039b40811da1f9374994b57531a9f67"></a>
def </td><td class="memItemRight" valign="bottom"><b>ByteSize</b></td></tr>
<tr class="separator:a5039b40811da1f9374994b57531a9f67"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad8e6bf5fac7c8f7e703a5248c06a52be"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ad8e6bf5fac7c8f7e703a5248c06a52be"></a>
def </td><td class="memItemRight" valign="bottom"><b>ByteSizePartial</b></td></tr>
<tr class="separator:ad8e6bf5fac7c8f7e703a5248c06a52be"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2f84ae04b8a5cd7e6f6d67185599acba"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a2f84ae04b8a5cd7e6f6d67185599acba"></a>
def </td><td class="memItemRight" valign="bottom"><b>Clear</b></td></tr>
<tr class="separator:a2f84ae04b8a5cd7e6f6d67185599acba"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4b076baf82a4fdb22e40dbff8ae35fb4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4b076baf82a4fdb22e40dbff8ae35fb4"></a>
def </td><td class="memItemRight" valign="bottom"><b>OutputUnchecked</b></td></tr>
<tr class="separator:a4b076baf82a4fdb22e40dbff8ae35fb4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a110df81ce0696517eb04fb15ad323b9f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a110df81ce0696517eb04fb15ad323b9f"></a>
def </td><td class="memItemRight" valign="bottom"><b>OutputPartial</b></td></tr>
<tr class="separator:a110df81ce0696517eb04fb15ad323b9f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0c19cf52ee80d0a54934b81af706ba65"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a0c19cf52ee80d0a54934b81af706ba65"></a>
def </td><td class="memItemRight" valign="bottom"><b>TryMerge</b></td></tr>
<tr class="separator:a0c19cf52ee80d0a54934b81af706ba65"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a689be585d1f167555487f9dfde1b27dd"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a689be585d1f167555487f9dfde1b27dd"></a>
def </td><td class="memItemRight" valign="bottom"><b>__str__</b></td></tr>
<tr class="separator:a689be585d1f167555487f9dfde1b27dd"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-attribs"></a>
Public Attributes</h2></td></tr>
<tr class="memitem:aa4d6cf88b6bf2d0dacdde73d09278110"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa4d6cf88b6bf2d0dacdde73d09278110"></a>
 </td><td class="memItemRight" valign="bottom"><b>lazy_init_lock_</b></td></tr>
<tr class="separator:aa4d6cf88b6bf2d0dacdde73d09278110"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8518fbb11ba3ea1993379bc81cbe1c33"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a8518fbb11ba3ea1993379bc81cbe1c33"></a>
 </td><td class="memItemRight" valign="bottom"><b>has_key_</b></td></tr>
<tr class="separator:a8518fbb11ba3ea1993379bc81cbe1c33"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac667cb766ef07b2ade78d31b748b06f3"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac667cb766ef07b2ade78d31b748b06f3"></a>
 </td><td class="memItemRight" valign="bottom"><b>has_new_version_</b></td></tr>
<tr class="separator:ac667cb766ef07b2ade78d31b748b06f3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9e0b33a01b686f48c36814c2da5a6bb4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a9e0b33a01b686f48c36814c2da5a6bb4"></a>
 </td><td class="memItemRight" valign="bottom"><b>new_version_</b></td></tr>
<tr class="separator:a9e0b33a01b686f48c36814c2da5a6bb4"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-attribs"></a>
Static Public Attributes</h2></td></tr>
<tr class="memitem:ab1812d66e62fcc331b1427b4fe121e82"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab1812d66e62fcc331b1427b4fe121e82"></a>
int </td><td class="memItemRight" valign="bottom"><b>has_key_</b> = 0</td></tr>
<tr class="separator:ab1812d66e62fcc331b1427b4fe121e82"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9e807a9e93b342e797b32cd416691b04"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a9e807a9e93b342e797b32cd416691b04"></a>
 </td><td class="memItemRight" valign="bottom"><b>key_</b> = None</td></tr>
<tr class="separator:a9e807a9e93b342e797b32cd416691b04"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a970baf4800ffedd4c15caec595813741"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a970baf4800ffedd4c15caec595813741"></a>
int </td><td class="memItemRight" valign="bottom"><b>has_new_version_</b> = 0</td></tr>
<tr class="separator:a970baf4800ffedd4c15caec595813741"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aad04451db75120db2863eec70d2f48dd"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aad04451db75120db2863eec70d2f48dd"></a>
int </td><td class="memItemRight" valign="bottom"><b>new_version_</b> = 0</td></tr>
<tr class="separator:aad04451db75120db2863eec70d2f48dd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adfcc4392719bd10205743c37629a8832"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="adfcc4392719bd10205743c37629a8832"></a>
int </td><td class="memItemRight" valign="bottom"><b>kkey</b> = 3</td></tr>
<tr class="separator:adfcc4392719bd10205743c37629a8832"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac22337408a719ab74ee94a508674a91b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac22337408a719ab74ee94a508674a91b"></a>
int </td><td class="memItemRight" valign="bottom"><b>knew_version</b> = 4</td></tr>
<tr class="separator:ac22337408a719ab74ee94a508674a91b"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<hr/>The documentation for this class was generated from the following file:<ul>
<li>code/googleappengine-read-only/python/google/appengine/datastore/datastore_v4_pb.py</li>
</ul>
</div><!-- contents -->
<address class="footer">
<small>Maintained by <a href="http://www.tzmartin.com">tzmartin</a></small>
</address>
|
clean/Linux-x86_64-4.04.2-2.0.5/released/8.8.1/relation-extraction/8.6.0.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>relation-extraction: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.8.1 / relation-extraction - 8.6.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
relation-extraction
<small>
8.6.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-18 16:46:16 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-18 16:46:16 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.8.1 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.04.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.04.2 Official 4.04.2 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/relation-extraction"
license: "Unknown"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/RelationExtraction"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
]
tags: [ "keyword: extraction" "keyword: inductive relations" "keyword: semantics" "category: Computer Science/Semantics and Compilation/Compilation" "date: 2011" ]
authors: [ "Catherine Dubois, David Delahaye, Pierre-Nicolas Tollitte" ]
bug-reports: "https://github.com/coq-contribs/relation-extraction/issues"
dev-repo: "git+https://github.com/coq-contribs/relation-extraction.git"
synopsis: "Functions extraction from inductive relations"
description: """
This plugin introduces a new set of extraction commands that
generates functional code form inductive specifications."""
flags: light-uninstall
url {
src:
"https://github.com/coq-contribs/relation-extraction/archive/v8.6.0.tar.gz"
checksum: "md5=05667e345b07b829ce84556cb476c35f"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-relation-extraction.8.6.0 coq.8.8.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.8.1).
The following dependencies couldn't be met:
- coq-relation-extraction -> coq < 8.7~ -> ocaml < 4.03.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-relation-extraction.8.6.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
d566ded/html/classv8_1_1_internal_fields_callback_data.html
|
v8-dox/v8-dox.github.io
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.9.1"/>
<title>V8 API Reference Guide for io.js v1.0.3: v8::InternalFieldsCallbackData< T, U > Class Template Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">V8 API Reference Guide for io.js v1.0.3
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.9.1 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespacev8.html">v8</a></li><li class="navelem"><a class="el" href="classv8_1_1_internal_fields_callback_data.html">InternalFieldsCallbackData</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-types">Public Types</a> |
<a href="#pub-methods">Public Member Functions</a> |
<a href="classv8_1_1_internal_fields_callback_data-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">v8::InternalFieldsCallbackData< T, U > Class Template Reference</div> </div>
</div><!--header-->
<div class="contents">
<div class="dynheader">
Inheritance diagram for v8::InternalFieldsCallbackData< T, U >:</div>
<div class="dyncontent">
<div class="center">
<img src="classv8_1_1_internal_fields_callback_data.png" usemap="#v8::InternalFieldsCallbackData< T, U >_map" alt=""/>
<map id="v8::InternalFieldsCallbackData< T, U >_map" name="v8::InternalFieldsCallbackData< T, U >_map">
<area href="classv8_1_1internal_1_1_callback_data.html" alt="v8::internal::CallbackData" shape="rect" coords="0,0,231,24"/>
</map>
</div></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-types"></a>
Public Types</h2></td></tr>
<tr class="memitem:a9ce479def3c8c0a9d73b2b7204747a95"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a9ce479def3c8c0a9d73b2b7204747a95"></a>
typedef void(* </td><td class="memItemRight" valign="bottom"><b>Callback</b>) (const <a class="el" href="classv8_1_1_internal_fields_callback_data.html">InternalFieldsCallbackData</a>< T, U > &data)</td></tr>
<tr class="separator:a9ce479def3c8c0a9d73b2b7204747a95"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:aa67d7551c6b33037b0fee29d6d157bb1"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa67d7551c6b33037b0fee29d6d157bb1"></a>
 </td><td class="memItemRight" valign="bottom"><b>InternalFieldsCallbackData</b> (<a class="el" href="classv8_1_1_isolate.html">Isolate</a> *isolate, T *internalField1, U *internalField2)</td></tr>
<tr class="separator:aa67d7551c6b33037b0fee29d6d157bb1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a35e848439ac60b5d3170f0882f2c29e6"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a35e848439ac60b5d3170f0882f2c29e6"></a>
V8_INLINE T * </td><td class="memItemRight" valign="bottom"><b>GetInternalField1</b> () const </td></tr>
<tr class="separator:a35e848439ac60b5d3170f0882f2c29e6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1c788384e7fe3591720fb71f50d002a5"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a1c788384e7fe3591720fb71f50d002a5"></a>
V8_INLINE U * </td><td class="memItemRight" valign="bottom"><b>GetInternalField2</b> () const </td></tr>
<tr class="separator:a1c788384e7fe3591720fb71f50d002a5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classv8_1_1internal_1_1_callback_data"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classv8_1_1internal_1_1_callback_data')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classv8_1_1internal_1_1_callback_data.html">v8::internal::CallbackData</a></td></tr>
<tr class="memitem:ac94ddcb7e49c191922f03eb810f62692 inherit pub_methods_classv8_1_1internal_1_1_callback_data"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac94ddcb7e49c191922f03eb810f62692"></a>
V8_INLINE <a class="el" href="classv8_1_1_isolate.html">v8::Isolate</a> * </td><td class="memItemRight" valign="bottom"><b>GetIsolate</b> () const </td></tr>
<tr class="separator:ac94ddcb7e49c191922f03eb810f62692 inherit pub_methods_classv8_1_1internal_1_1_callback_data"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a>
Additional Inherited Members</h2></td></tr>
<tr class="inherit_header pro_methods_classv8_1_1internal_1_1_callback_data"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classv8_1_1internal_1_1_callback_data')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="classv8_1_1internal_1_1_callback_data.html">v8::internal::CallbackData</a></td></tr>
<tr class="memitem:a3f5e99bfe131cfea0ce0030895bdf593 inherit pro_methods_classv8_1_1internal_1_1_callback_data"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a3f5e99bfe131cfea0ce0030895bdf593"></a>
 </td><td class="memItemRight" valign="bottom"><b>CallbackData</b> (<a class="el" href="classv8_1_1_isolate.html">v8::Isolate</a> *isolate)</td></tr>
<tr class="separator:a3f5e99bfe131cfea0ce0030895bdf593 inherit pro_methods_classv8_1_1internal_1_1_callback_data"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<hr/>The documentation for this class was generated from the following file:<ul>
<li>deps/v8/include/<a class="el" href="v8_8h_source.html">v8.h</a></li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Tue Aug 11 2015 23:49:13 for V8 API Reference Guide for io.js v1.0.3 by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.9.1
</small></address>
</body>
</html>
|
JG.Synology.FileManager.Web/angular/app/partials/editMovieFile.html
|
jagberg/SynologyFileManager
|
<h3>Add New Movie Group</h3>
<form name="editMovieForm">
<div class="col-lg-6">
<div class="input-group">
<input type="text" class="form-control" placeholder="New Movie Group Name" ng-model="newMovieGroupName" required>
<span class="input-group-btn">
<button class="btn btn-default" type="button" ng-disabled="editMovieForm.$invalid" ng-click="addMovieGroup(newMovieGroupName)">Add</button>
</span>
</div>
<!-- /input-group -->
</div>
<!-- /.col-lg-6 -->
</form>
|
20127e0/html/classv8_1_1ExternalResourceVisitor.html
|
v8-dox/v8-dox.github.io
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.11"/>
<title>V8 API Reference Guide for node.js v7.6.0: v8::ExternalResourceVisitor Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">V8 API Reference Guide for node.js v7.6.0
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.11 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespacev8.html">v8</a></li><li class="navelem"><a class="el" href="classv8_1_1ExternalResourceVisitor.html">ExternalResourceVisitor</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="classv8_1_1ExternalResourceVisitor-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">v8::ExternalResourceVisitor Class Reference</div> </div>
</div><!--header-->
<div class="contents">
<p><code>#include <<a class="el" href="v8_8h_source.html">v8.h</a>></code></p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:ad611b1b6a06753f8eaf6936f793441bd"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ad611b1b6a06753f8eaf6936f793441bd"></a>
virtual void </td><td class="memItemRight" valign="bottom"><b>VisitExternalString</b> (<a class="el" href="classv8_1_1Local.html">Local</a>< <a class="el" href="classv8_1_1String.html">String</a> > string)</td></tr>
<tr class="separator:ad611b1b6a06753f8eaf6936f793441bd"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>Interface for iterating through all external resources in the heap. </p>
</div><hr/>The documentation for this class was generated from the following file:<ul>
<li>deps/v8/include/<a class="el" href="v8_8h_source.html">v8.h</a></li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.11
</small></address>
</body>
</html>
|
clean/Linux-x86_64-4.05.0-2.0.6/released/8.7.0/dblib/8.5.0.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>dblib: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.0 / dblib - 8.5.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
dblib
<small>
8.5.0
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-07-31 07:04:33 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-07-31 07:04:33 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.12 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.7.0 Formal proof management system.
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "matej.kosik@inria.fr"
homepage: "https://github.com/coq-contribs/dblib"
license: "GPL"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Dblib"]
depends: [
"ocaml"
"coq" {>= "8.5" & < "8.6~"}
]
tags: [ "keyword:abstract syntax" "keyword:binders" "keyword:de bruijn indices" "keyword:shift" "keyword:lift" "keyword:substitution" "category:Computer Science/Lambda Calculi" ]
authors: [ "Francois Pottier <francois.pottier@inria.fr>" ]
bug-reports: "https://github.com/coq-contribs/dblib/issues"
dev-repo: "git+https://github.com/coq-contribs/dblib.git"
synopsis: "Dblib"
description:
"The dblib library offers facilities for working with de Bruijn indices."
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/dblib/archive/v8.5.0.tar.gz"
checksum: "md5=da4c2319a576400536ba980c3c11b54d"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-dblib.8.5.0 coq.8.7.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.7.0).
The following dependencies couldn't be met:
- coq-dblib -> coq < 8.6~ -> ocaml < 4.03.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-dblib.8.5.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.04.2-2.0.5/released/8.9.0/mathcomp-finmap/1.3.3.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>mathcomp-finmap: 1 m 50 s 🏆</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.9.0 / mathcomp-finmap - 1.3.3</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
mathcomp-finmap
<small>
1.3.3
<span class="label label-success">1 m 50 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-10 01:57:47 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-10 01:57:47 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.9.0 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.04.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.04.2 Official 4.04.2 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Cyril Cohen <cyril.cohen@inria.fr>"
homepage: "https://github.com/math-comp/finmap"
bug-reports: "https://github.com/math-comp/finmap/issues"
dev-repo: "git+https://github.com/math-comp/finmap.git"
license: "CeCILL-B"
build: [ make "-j" "%{jobs}%" ]
install: [ make "install" ]
depends: [
"coq" { (>= "8.7" & < "8.11~") }
"coq-mathcomp-ssreflect" { (>= "1.8.0" & < "1.10~") }
"coq-mathcomp-bigenough" { (>= "1.0.0" & < "1.1~") }
]
tags: [ "keyword:finmap" "keyword:finset" "keyword:multiset" "keyword:order" "date:2019-06-18" "logpath:mathcomp.finmap"]
authors: [ "Cyril Cohen <cyril.cohen@inria.fr>" "Kazuhiko Sakaguchi <sakaguchi@coins.tsukuba.ac.jp>" ]
synopsis: "Finite sets, finite maps, finitely supported functions, orders"
description: """
This library is an extension of mathematical component in order to
support finite sets and finite maps on choicetypes (rather that finite
types). This includes support for functions with finite support and
multisets. The library also contains a generic order and set libary,
which will be used to subsume notations for finite sets, eventually."""
url {
src: "https://github.com/math-comp/finmap/archive/1.3.3.tar.gz"
checksum: "sha256=e731e0becaf78f5710feef4b61a4485f2973645daf2f6320c677d99103cc0699"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-mathcomp-finmap.1.3.3 coq.8.9.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 4h opam install -y --deps-only coq-mathcomp-finmap.1.3.3 coq.8.9.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>1 m 58 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 4h opam install -y -v coq-mathcomp-finmap.1.3.3 coq.8.9.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>1 m 50 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 5 M</p>
<ul>
<li>1 M <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/finmap/finmap.glob</code></li>
<li>1 M <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/finmap/finmap.vo</code></li>
<li>921 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/finmap/order.glob</code></li>
<li>812 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/finmap/order.vo</code></li>
<li>281 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/finmap/multiset.glob</code></li>
<li>268 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/finmap/multiset.vo</code></li>
<li>254 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/finmap/set.vo</code></li>
<li>231 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/finmap/set.glob</code></li>
<li>147 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/finmap/order.v</code></li>
<li>135 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/finmap/finmap.v</code></li>
<li>36 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/finmap/set.v</code></li>
<li>33 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/mathcomp/finmap/multiset.v</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-mathcomp-finmap.1.3.3</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.12.0-2.0.8/extra-dev/dev/io-system/2.0.0.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>io-system: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / extra-dev</a></li>
<li class="active"><a href="">dev / io-system - 2.0.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
io-system
<small>
2.0.0
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2021-10-27 02:59:51 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-10-27 02:59:51 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 3 Virtual package relying on a GMP lib system installation
coq dev Formal proof management system
dune 2.9.1 Fast, portable, and opinionated build system
ocaml 4.12.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.12.0 Official release 4.12.0
ocaml-config 2 OCaml Switch Configuration
ocaml-options-vanilla 1 Ensure that OCaml is compiled with no special options enabled
ocamlfind 1.9.1 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "dev@clarus.me"
homepage: "https://github.com/clarus/io-system"
dev-repo: "git+https://github.com/clarus/io-system.git"
bug-reports: "https://github.com/clarus/io-system/issues"
authors: ["Guillaume Claret"]
license: "MIT"
build: [
["./configure.sh"]
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
depends: [
"ocaml"
"coq" {>= "8.4pl4" & < "8.5~"}
"coq-function-ninjas"
"coq-list-string" {>= "2.0.0"}
"coq-io" {< "2.1.0"}
"coq-io-system-ocaml"
]
tags: [
"date:2015-03-03"
"keyword:effects"
"keyword:extraction"
"logpath:Io.System"
]
synopsis: "System effects for Coq"
url {
src: "https://github.com/coq-io/system/archive/2.0.0.tar.gz"
checksum: "md5=9cc821d7fb35a0b20ce55642dae034cb"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-io-system.2.0.0 coq.dev</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is dev).
The following dependencies couldn't be met:
- coq-io-system -> coq-io-system-ocaml -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
- coq-io-system -> coq-io-system-ocaml -> lwt < 5 -> ocaml < 4.12
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-io-system.2.0.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.05.0-2.0.1/released/8.5.0~camlp4/reglang/1.1.1.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>reglang: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.5.0~camlp4 / reglang - 1.1.1</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
reglang
<small>
1.1.1
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-10-04 15:23:52 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-10-04 15:23:52 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp4 4.05+1 Camlp4 is a system for writing extensible parsers for programming languages
conf-findutils 1 Virtual package relying on findutils
coq 8.5.0~camlp4 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlbuild 0.14.0 OCamlbuild is a build system with builtin rules to easily build most OCaml projects.
# opam file:
opam-version: "2.0"
maintainer: "palmskog@gmail.com"
homepage: "https://github.com/coq-community/reglang"
dev-repo: "git+https://github.com/coq-community/reglang.git"
bug-reports: "https://github.com/coq-community/reglang/issues"
doc: "https://coq-community.org/reglang/"
license: "CECILL-B"
synopsis: "Representations of regular languages (i.e., regexps, various types of automata, and WS1S) with equivalence proofs, in Coq and MathComp"
description: """
This library provides definitions and verified translations between
different representations of regular languages: various forms of
automata (deterministic, nondeterministic, one-way, two-way),
regular expressions, and the logic WS1S. It also contains various
decidability results and closure properties of regular languages."""
build: [make "-j%{jobs}%"]
install: [make "install"]
depends: [
"coq" {>= "8.10" & < "8.13~"}
"coq-mathcomp-ssreflect" {>= "1.9" & < "1.12~"}
]
tags: [
"category:Computer Science/Formal Languages Theory and Automata"
"keyword:regular languages"
"keyword:regular expressions"
"keyword:finite automata"
"keyword:two-way automata"
"keyword:monadic second-order logic"
"logpath:RegLang"
"date:2020-10-05"
]
authors: [
"Christian Doczkal"
"Jan-Oliver Kaiser"
"Gert Smolka"
]
url {
src: "https://github.com/coq-community/reglang/archive/v1.1.1.tar.gz"
checksum: "sha512=f3b92695d1c3fedd37dc0a6289c9cdc4bf051f0a7134123b633d9875e5ad01e260304488de3d12810e3de9054069362cbd46eedd3d59e3baf4b008862fafc783"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-reglang.1.1.1 coq.8.5.0~camlp4</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.5.0~camlp4).
The following dependencies couldn't be met:
- coq-reglang -> coq >= 8.10
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-reglang.1.1.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
Reports/co/codeplex.equinox.0.4.0/Crystalbyte.Equinox.Pop3-net40.html
|
kuhlenh/port-to-core
|
<!DOCTYPE html>
<html xmlns:msxsl="urn:schemas-microsoft-com:xslt">
<head>
<meta content="en-us" http-equiv="Content-Language" />
<meta content="text/html; charset=utf-16" http-equiv="Content-Type" />
<title _locid="PortabilityAnalysis0">.NET Portability Report</title>
<style>
/* Body style, for the entire document */
body {
background: #F3F3F4;
color: #1E1E1F;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
padding: 0;
margin: 0;
}
/* Header1 style, used for the main title */
h1 {
padding: 10px 0px 10px 10px;
font-size: 21pt;
background-color: #E2E2E2;
border-bottom: 1px #C1C1C2 solid;
color: #201F20;
margin: 0;
font-weight: normal;
}
/* Header2 style, used for "Overview" and other sections */
h2 {
font-size: 18pt;
font-weight: normal;
padding: 15px 0 5px 0;
margin: 0;
}
/* Header3 style, used for sub-sections, such as project name */
h3 {
font-weight: normal;
font-size: 15pt;
margin: 0;
padding: 15px 0 5px 0;
background-color: transparent;
}
h4 {
font-weight: normal;
font-size: 12pt;
margin: 0;
padding: 0 0 0 0;
background-color: transparent;
}
/* Color all hyperlinks one color */
a {
color: #1382CE;
}
/* Paragraph text (for longer informational messages) */
p {
font-size: 10pt;
}
/* Table styles */
table {
border-spacing: 0 0;
border-collapse: collapse;
font-size: 10pt;
}
table th {
background: #E7E7E8;
text-align: left;
text-decoration: none;
font-weight: normal;
padding: 3px 6px 3px 6px;
}
table td {
vertical-align: top;
padding: 3px 6px 5px 5px;
margin: 0px;
border: 1px solid #E7E7E8;
background: #F7F7F8;
}
.NoBreakingChanges {
color: darkgreen;
font-weight:bold;
}
.FewBreakingChanges {
color: orange;
font-weight:bold;
}
.ManyBreakingChanges {
color: red;
font-weight:bold;
}
.BreakDetails {
margin-left: 30px;
}
.CompatMessage {
font-style: italic;
font-size: 10pt;
}
.GoodMessage {
color: darkgreen;
}
/* Local link is a style for hyperlinks that link to file:/// content, there are lots so color them as 'normal' text until the user mouse overs */
.localLink {
color: #1E1E1F;
background: #EEEEED;
text-decoration: none;
}
.localLink:hover {
color: #1382CE;
background: #FFFF99;
text-decoration: none;
}
/* Center text, used in the over views cells that contain message level counts */
.textCentered {
text-align: center;
}
/* The message cells in message tables should take up all avaliable space */
.messageCell {
width: 100%;
}
/* Padding around the content after the h1 */
#content {
padding: 0px 12px 12px 12px;
}
/* The overview table expands to width, with a max width of 97% */
#overview table {
width: auto;
max-width: 75%;
}
/* The messages tables are always 97% width */
#messages table {
width: 97%;
}
/* All Icons */
.IconSuccessEncoded, .IconInfoEncoded, .IconWarningEncoded, .IconErrorEncoded {
min-width: 18px;
min-height: 18px;
background-repeat: no-repeat;
background-position: center;
}
/* Success icon encoded */
.IconSuccessEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconSuccess#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABPElEQVR4Xp1Tv0vDUBi8FqeA4NpBcBLcWnQSApncOnTo4FSnjP0DsnXpH5CxiwbHDg4Zuj4oOEXiJgiC4FDcCkLWmIMc1Pfw+eMgQ77v3Xf3Pe51YKGqqisAEwCR1TIAsiAIblSo6xrdHeJR85Xle3mdmCQKb0PsfqyxxzM8K15HZADl/H5+sHpZwYfxyRjTs+kWwKBx8yoHd2mRiuzF8mkJniWH/13u3Fjrs/EdhsdDFHGB/DLXEJBDLh1MWPAhPo1BLB4WX5yQywHR+m3tVe/t97D52CB/ziG0nIgD/qDuYg8WuCcVZ2YGwlJ3YDugkpR/VNcAEx6GEKhERSr71FuO4YCM4XBdwKvecjIlkSnsO0Hyp/GxSeJAdzBKzpOtnPwyyiPdAZhpZptT04tU+zk7s8czeges//s5C5+CwqrR4/gw+AAAAABJRU5ErkJggg==);
}
/* Information icon encoded */
.IconInfoEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconInformation#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABHElEQVR4Xs2TsUoDQRRF7wwoziokjZUKadInhdhukR9YP8DMX1hYW+QvdsXa/QHBbcXC7W0CamWTQnclFutceIQJwwaWNLlwm5k5d94M76mmaeCrrmsLYOocY12FcxZFUeozCqKqqgYA8uevv1H6VuPxcwlfk5N92KHBxfFeCSAxxswlYAW/Xr989x/mv9gkhtyMDhcAxgzRsp7flj8B/HF1RsMXq+NZMkopaHe7lbKxQUEIGbKsYNoGn969060hZBkQex/W8oRQwsQaW2o3Ago2SVcJUzAgY3N0lTCZZm+zPS8HB51gMmS1DEYyOz9acKO1D8JWTlafKIMxdhvlfdyT94Vv5h7P8Ky7nQzACmhvKq3zk3PjW9asz9D/1oigecsioooAAAAASUVORK5CYII=);
}
/* Warning icon encoded */
.IconWarningEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconWarning#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAx0lEQVR4XpWSMQ7CMAxFf4xAyBMLCxMrO8dhaBcuwdCJS3RJBw7SA/QGTCxdWJgiQYWKXJWKIXHIlyw5lqr34tQgEOdcBsCOx5yZK3hCCKdYXneQkh4pEfqzLfu+wVDSyyzFoJjfz9NB+pAF+eizx2Vruts0k15mPgvS6GYvpVtQhB61IB/dk6AF6fS4Ben0uIX5odtFe8Q/eW1KvFeH4e8khT6+gm5B+t3juyDt7n0jpe+CANTd+oTUjN/U3yVaABnSUjFz/gFq44JaVSCXeQAAAABJRU5ErkJggg==);
}
/* Error icon encoded */
.IconErrorEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconError#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABQElEQVR4XqWTvUoEQRCE6wYPZUA80AfwAQz23uCMjA7MDRQEIzPBVEyNTQUFIw00vcQTTMzuAh/AxEQQT8HF/3G/oGGnEUGuoNnd6qoZuqltyKEsyzVJq5I6rnUp6SjGeGhESikzzlc1eL7opfuVbrqbU1Zw9NCgtQMaZpY0eNnaaL2fHusvTK5vKu7sjSS1Y4y3QUA6K3e3Mau5UFDyMP7tYF9o8cAHZv68vipoIJg971PZIZ5HiwdvYGGvFVFHmGmZ2MxwmQYPXubPl9Up0tfoMQGetXd6mRbvhBw+boZ6WF7Mbv1+GsHRk0fQmPAH1GfmZirbCfDJ61tw3Px8/8pZsPAG4jlVhcPgZ7adwNWBB68lkRQWFiTgFlbnLY3DGGM7izIJIyT/jjIvEJw6fdJTc6krDzh6aMwMP9bvDH4ADSsa9uSWVJkAAAAASUVORK5CYII=);
}
</style>
</head>
<body>
<h1 _locid="PortabilityReport">.NET Portability Report</h1>
<div id="content">
<div id="submissionId" style="font-size:8pt;">
<p>
<i>
Submission Id
6454c72f-6eea-4598-9f5f-cb4e196326c4
</i>
</p>
</div>
<h2 _locid="SummaryTitle">
<a name="Portability Summary"></a>Portability Summary
</h2>
<div id="summary">
<table>
<tbody>
<tr>
<th>Assembly</th>
<th>ASP.NET 5,Version=v1.0</th>
<th>Windows,Version=v8.1</th>
<th>.NET Framework,Version=v4.6</th>
<th>Windows Phone,Version=v8.1</th>
</tr>
<tr>
<td><strong><a href="#Crystalbyte.Equinox.Pop3">Crystalbyte.Equinox.Pop3</a></strong></td>
<td class="text-center">100.00 %</td>
<td class="text-center">100.00 %</td>
<td class="text-center">100.00 %</td>
<td class="text-center">100.00 %</td>
</tr>
</tbody>
</table>
</div>
<div id="details">
</div>
</div>
</body>
</html>
|
clean/Linux-x86_64-4.02.3-2.0.6/released/8.4.6~camlp4/aac-tactics/8.8.0.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>aac-tactics: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.4.6~camlp4 / aac-tactics - 8.8.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
aac-tactics
<small>
8.8.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-11-26 10:22:40 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-11-26 10:22:40 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-ocamlbuild base OCamlbuild binary and libraries distributed with the OCaml compiler
base-threads base
base-unix base
camlp4 4.02+7 Camlp4 is a system for writing extensible parsers for programming languages
conf-findutils 1 Virtual package relying on findutils
conf-which 1 Virtual package relying on which
coq 8.4.6~camlp4 Formal proof management system.
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.02.3 The OCaml compiler (virtual package)
ocaml-base-compiler 4.02.3 Official 4.02.3 release
ocaml-config 1 OCaml Switch Configuration
ocamlbuild 0 Build system distributed with the OCaml compiler since OCaml 3.10.0
# opam file:
opam-version: "2.0"
maintainer: "palmskog@gmail.com"
homepage: "https://github.com/coq-community/aac-tactics"
dev-repo: "git+https://github.com/coq-community/aac-tactics.git"
bug-reports: "https://github.com/coq-community/aac-tactics/issues"
license: "LGPL"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/AAC_tactics"]
depends: [
"ocaml"
"coq" {>= "8.8" & < "8.9~"}
]
tags: [
"keyword:reflexive tactic"
"keyword:rewriting"
"keyword:rewriting modulo associativity and commutativity"
"keyword:rewriting modulo ac"
"keyword:decision procedure"
"category:Miscellaneous/Coq Extensions"
"date:2018-10-04"
"logpath:AAC_tactics"
]
authors: [
"Damien Pous <>"
"Thomas Braibant <>"
"Fabian Kunze <>"
]
synopsis: "This Coq plugin provides tactics for rewriting universally quantified equations, modulo associative (and possibly commutative) operators"
flags: light-uninstall
url {
src: "https://github.com/coq-community/aac-tactics/archive/v8.8.0.tar.gz"
checksum: "md5=75de4d507926423e754c55694e826084"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-aac-tactics.8.8.0 coq.8.4.6~camlp4</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.4.6~camlp4).
The following dependencies couldn't be met:
- coq-aac-tactics -> coq >= 8.8 -> ocaml >= 4.05.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-aac-tactics.8.8.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.09.1-2.0.6/extra-dev/8.11.dev/hott/8.8.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>hott: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / extra-dev</a></li>
<li class="active"><a href="">8.11.dev / hott - 8.8</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
hott
<small>
8.8
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2020-07-27 01:07:00 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-07-27 01:07:00 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.11.dev Formal proof management system
num 1.3 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.09.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.09.1 Official release 4.09.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Jason Gross <jgross@mit.edu>"
homepage: "http://homotopytypetheory.org/"
bug-reports: "https://github.com/HoTT/HoTT/issues"
license: "BSD-2-Clause"
build: [
["rm" ".gitmodules"]
["bash" "-c" "./autogen.sh || :"]
["./configure" "COQBIN=%{bin}%" "--prefix=%{prefix}%"]
[make "-j%{jobs}%"]
]
install: [make "install"]
depends: [
"conf-autoconf" {build}
"ocaml"
"ocamlfind" {build}
"coq" {>= "8.8" & < "8.9~"}
]
authors: ["The Coq-HoTT Development Team"]
dev-repo: "git+https://github.com/HoTT/HoTT.git"
synopsis: "The Homotopy Type Theory library"
tags: ["logpath:HoTT"]
url {
src: "https://github.com/HoTT/HoTT/archive/V8.8.tar.gz"
checksum: "sha512=9acfa003302929ef7ef162fbef8ccde38879d7f7adb25152f0bbfa6b28bb2809e080ef9242433bebef01ea66f4f2172ee2a6f0a0d770e23659e17996ffecc56d"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-hott.8.8 coq.8.11.dev</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.11.dev).
The following dependencies couldn't be met:
- coq-hott -> coq < 8.9~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-hott.8.8</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.05.0-2.0.1/released/8.5.0/flocq/3.1.0.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>flocq: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.5.0 / flocq - 3.1.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
flocq
<small>
3.1.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-11-28 06:52:07 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-11-28 06:52:07 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.5.0 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
# opam file:
opam-version: "2.0"
maintainer: "guillaume.melquiond@inria.fr"
homepage: "https://flocq.gitlabpages.inria.fr/"
dev-repo: "git+https://gitlab.inria.fr/flocq/flocq.git"
bug-reports: "https://gitlab.inria.fr/flocq/flocq/issues"
license: "LGPL-3.0-or-later"
build: [
["./configure" "--libdir" "%{lib}%/coq/user-contrib/Flocq"]
["./remake" "-j%{jobs}%"]
]
install: ["./remake" "install"]
depends: [
"coq" {>= "8.7" & < "8.10~"}
]
tags: [ "keyword:floating-point arithmetic" ]
authors: [ "Sylvie Boldo <sylvie.boldo@inria.fr>" "Guillaume Melquiond <guillaume.melquiond@inria.fr>" ]
synopsis: "A floating-point formalization for the Coq system"
url {
src: "https://flocq.gitlabpages.inria.fr/releases/flocq-3.1.0.tar.gz"
checksum: "md5=44c56098e1b9e65db38226d3377b4680"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-flocq.3.1.0 coq.8.5.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.5.0).
The following dependencies couldn't be met:
- coq-flocq -> coq >= 8.7
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-flocq.3.1.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
tests/dummy/app/index.html
|
kbullaughey/ember-mobiletouch
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Dummy</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
{{content-for 'head'}}
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/vendor.css">
<link rel="stylesheet" href="assets/dummy.css">
{{content-for 'head-footer'}}
</head>
<body>
{{content-for 'body'}}
<script src="assets/vendor.js"></script>
<script src="assets/dummy.js"></script>
{{content-for 'body-footer'}}
</body>
</html>
|
clean/Linux-x86_64-4.02.3-2.0.6/released/8.4.5/aac-tactics/8.13.0.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>aac-tactics: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.4.5 / aac-tactics - 8.13.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
aac-tactics
<small>
8.13.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-05 04:20:23 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-05 04:20:23 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-ocamlbuild base OCamlbuild binary and libraries distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 2 Virtual package relying on perl
coq 8.4.5 Formal proof management system.
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.02.3 The OCaml compiler (virtual package)
ocaml-base-compiler 4.02.3 Official 4.02.3 release
ocaml-config 1 OCaml Switch Configuration
ocamlbuild 0 Build system distributed with the OCaml compiler since OCaml 3.10.0
# opam file:
opam-version: "2.0"
maintainer: "palmskog@gmail.com"
homepage: "https://github.com/coq-community/aac-tactics"
dev-repo: "git+https://github.com/coq-community/aac-tactics.git"
bug-reports: "https://github.com/coq-community/aac-tactics/issues"
license: "LGPL-3.0-or-later"
synopsis: "Coq plugin providing tactics for rewriting universally quantified equations, modulo associative (and possibly commutative) operators"
description: """
This Coq plugin provides tactics for rewriting universally quantified
equations, modulo associativity and commutativity of some operator.
The tactics can be applied for custom operators by registering the
operators and their properties as type class instances. Many common
operator instances, such as for Z binary arithmetic and booleans, are
provided with the plugin."""
build: [make "-j%{jobs}%"]
install: [make "install"]
depends: [
"ocaml" {>= "4.05.0" & < "4.12"}
"coq" {>= "8.13" & < "8.14~"}
]
tags: [
"category:Miscellaneous/Coq Extensions"
"category:Computer Science/Decision Procedures and Certified Algorithms/Decision procedures"
"keyword:reflexive tactic"
"keyword:rewriting"
"keyword:rewriting modulo associativity and commutativity"
"keyword:rewriting modulo ac"
"keyword:decision procedure"
"logpath:AAC_tactics"
"date:2020-12-16"
]
authors: [
"Thomas Braibant"
"Damien Pous"
"Fabian Kunze"
]
url {
src: "https://github.com/coq-community/aac-tactics/archive/v8.13.0.tar.gz"
checksum: "sha512=8d34c04a4d28e44a5d831bddc1907fc23b0f3ef61335b9b8206518060bb545e7983f63bdcf9808d43e4557acebb4b1031785a11772e239bb8b1193b87c086260"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-aac-tactics.8.13.0 coq.8.4.5</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.4.5).
The following dependencies couldn't be met:
- coq-aac-tactics -> ocaml >= 4.05.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-aac-tactics.8.13.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.11.1-2.0.7/released/8.11.1/metacoq/1.0~alpha2+8.11.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>metacoq: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.11.1 / metacoq - 1.0~alpha2+8.11</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
metacoq
<small>
1.0~alpha2+8.11
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2021-04-06 21:49:33 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-04-06 21:49:33 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.11.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.11.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.11.1 Official release 4.11.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "matthieu.sozeau@inria.fr"
homepage: "https://metacoq.github.io/metacoq"
dev-repo: "git+https://github.com/MetaCoq/metacoq.git#coq-8.11"
bug-reports: "https://github.com/MetaCoq/metacoq/issues"
authors: ["Abhishek Anand <aa755@cs.cornell.edu>"
"Simon Boulier <simon.boulier@inria.fr>"
"Cyril Cohen <cyril.cohen@inria.fr>"
"Yannick Forster <forster@ps.uni-saarland.de>"
"Fabian Kunze <fkunze@fakusb.de>"
"Gregory Malecha <gmalecha@gmail.com>"
"Matthieu Sozeau <matthieu.sozeau@inria.fr>"
"Nicolas Tabareau <nicolas.tabareau@inria.fr>"
"Théo Winterhalter <theo.winterhalter@inria.fr>"
]
license: "MIT"
depends: [
"ocaml" {>= "4.07.1"}
"coq" {>= "8.11" & < "8.12~"}
"coq-metacoq-template" {= version}
"coq-metacoq-checker" {= version}
"coq-metacoq-pcuic" {= version}
"coq-metacoq-safechecker" {= version}
"coq-metacoq-erasure" {= version}
"coq-metacoq-translations" {= version}
]
synopsis: "A meta-programming framework for Coq"
description: """
MetaCoq is a meta-programming framework for Coq.
The meta-package includes the template-coq library, unverified checker for Coq,
PCUIC development including a verified translation from Coq to PCUIC,
safe checker and erasure for PCUIC and example translations.
See individual packages for more detailed descriptions.
"""
url {
src: "https://github.com/MetaCoq/metacoq/archive/v1.0-alpha2-8.11.tar.gz"
checksum: "sha256=8f1d2b42ad97d7c8660a57aabe53ddcc7b1645ced43386a1d2bef428b20d6b42"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-metacoq.1.0~alpha2+8.11 coq.8.11.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.11.1).
The following dependencies couldn't be met:
- coq-metacoq -> coq-metacoq-template = 1.0~alpha2+8.11 -> ocaml < 4.10
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-metacoq.1.0~alpha2+8.11</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.06.1-2.0.5/released/8.7.1/compcert-64/3.7~coq-platform.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>compcert-64: 27 m 16 s 🏆</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.1 / compcert-64 - 3.7~coq-platform</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
compcert-64
<small>
3.7~coq-platform
<span class="label label-success">27 m 16 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-24 17:13:48 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-24 17:13:48 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 2 Virtual package relying on perl
coq 8.7.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.06.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.06.1 Official 4.06.1 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
authors: "Xavier Leroy <xavier.leroy@inria.fr>"
maintainer: "Jacques-Henri Jourdan <jacques-Henri.jourdan@normalesup.org>"
homepage: "http://compcert.inria.fr/"
dev-repo: "git+https://github.com/AbsInt/CompCert.git"
bug-reports: "https://github.com/AbsInt/CompCert/issues"
license: "INRIA Non-Commercial License Agreement"
version: "3.7"
build: [
["./configure" "amd64-linux" {os = "linux"}
"amd64-macosx" {os = "macos"}
"amd64-cygwin" {os = "cygwin"}
"-prefix" "%{prefix}%/variants/compcert64"
"-install-coqdev"
"-clightgen"
"-coqdevdir" "%{lib}%/coq-variant/compcert64/compcert"
"-ignore-coq-version"]
[make "-j%{jobs}%" {ocaml:version >= "4.06"}]
]
patches: [
"0001-Install-compcert.config-file-along-the-Coq-developme.patch"
"0007-Dual-license-aarch64-Archi.v-Cbuiltins.ml-extraction.patch"
"0008-Update-the-list-of-dual-licensed-files.patch"
"0011-Use-Coq-platform-supplied-Flocq.patch"
"0012-Use-platform-supplied-menhirlib-as-suggested-by-jhjo.patch"
]
extra-files: [
["0001-Install-compcert.config-file-along-the-Coq-developme.patch" "sha256=32ba8c21c84ae6a2075ecb0a039f05150e87db40728e64a81ea8d5daba6df541"]
["0007-Dual-license-aarch64-Archi.v-Cbuiltins.ml-extraction.patch" "sha256=fd66f444b4097e4f20f53df9439ea5c66eb889183d271f6c1d45ce25793094d7"]
["0008-Update-the-list-of-dual-licensed-files.patch" "sha256=406d241f0e9eb31d02a4be6ec5700044000a176ffe6cfeccf1ca52b42bdedb7d"]
["0011-Use-Coq-platform-supplied-Flocq.patch" "sha256=1fd53e11083ca566e30b810acc68fc93d4fd5b5c55c2d493a86e0691c50fdff0"]
["0012-Use-platform-supplied-menhirlib-as-suggested-by-jhjo.patch" "sha256=854f1ebbfed8829063f59c26c6e37dc164f98ecf60a572db0531a0d1f56b0981"]
]
install: [
[make "install"]
]
depends: [
"coq" {>= "8.7.0" & < "8.12"}
"coq-flocq" {>= "3.2.1"}
"coq-menhirlib" {>= "20190626" & < "20200123"}
"menhir" {>= "20190626" & < "20200123"}
"ocaml" {>= "4.05.0"}
]
synopsis: "The CompCert C compiler (64 bit, using coq-platform supplied version of Flocq)"
description: "This package installs the 64 bit version of CompCert.
For coexistence with the 32 bit version, the files are installed in:
%{prefix}%/variants/compcert64/bin (ccomp and clightgen binaries)
%{prefix}%/variants/compcert64/lib/compcert (C library)
%{lib}%/coq/user-contrib/compcert64 (Coq library)
Please note that the coq module path is compcert and not compcert64,
so the files cannot be directly Required as compcert64.
Instead -Q or -R options must be used to bind the compcert64 folder
to the module path compcert. This is more convenient if one development
uses both 32 and 64 bit versions. Otherwise all files would have to
be duplicated with module paths compcert and compcert64.
Please also note that the binary folder is usually not in the path."
tags: [
"category:Computer Science/Semantics and Compilation/Compilation"
"category:Computer Science/Semantics and Compilation/Semantics"
"keyword:C"
"keyword:compiler"
"logpath:compcert64"
"date:2020-04-29"
]
url {
src: "https://github.com/AbsInt/CompCert/archive/v3.7.tar.gz"
checksum: "sha256=ceee1b2ed6c2576cb66eb7a0f2669dcf85e65c0fc68385f0781b0ca4edb87eb0"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-compcert-64.3.7~coq-platform coq.8.7.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 4h opam install -y --deps-only coq-compcert-64.3.7~coq-platform coq.8.7.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>11 m 26 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 4h opam install -y -v coq-compcert-64.3.7~coq-platform coq.8.7.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>27 m 16 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 107 M</p>
<ul>
<li>11 M <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/cparser/Parser.vo</code></li>
<li>10 M <code>../ocaml-base-compiler.4.06.1/variants/compcert64/bin/ccomp</code></li>
<li>7 M <code>../ocaml-base-compiler.4.06.1/variants/compcert64/bin/clightgen</code></li>
<li>4 M <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/cfrontend/SimplExprproof.vo</code></li>
<li>3 M <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/x86/SelectOp.vo</code></li>
<li>3 M <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/x86/SelectLong.vo</code></li>
<li>3 M <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/ValueDomain.vo</code></li>
<li>3 M <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/x86/Op.vo</code></li>
<li>2 M <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/MenhirLib/Interpreter_complete.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/x86/Machregs.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/cfrontend/Cminorgenproof.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/lib/Integers.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/MenhirLib/Main.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/flocq/Prop/Double_rounding.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/cfrontend/Ctyping.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/cfrontend/Cexec.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/cfrontend/SimplLocalsproof.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Allocproof.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Allocation.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/x86/Asmgenproof1.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/MenhirLib/Validator_complete.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/cfrontend/Cstrategy.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/common/Events.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/RTLgenproof.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/common/Memory.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/x86/CombineOp.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Selectionproof.vo</code></li>
<li>977 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/cfrontend/Cshmgenproof.vo</code></li>
<li>841 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/x86/SelectOpproof.vo</code></li>
<li>815 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Inliningproof.vo</code></li>
<li>807 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/SplitLong.vo</code></li>
<li>744 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/common/Values.vo</code></li>
<li>740 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/x86/Asm.vo</code></li>
<li>740 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/lib/FSetAVLplus.vo</code></li>
<li>726 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/cfrontend/Cop.vo</code></li>
<li>701 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/lib/IEEE754_extra.vo</code></li>
<li>679 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/x86/ConstpropOp.vo</code></li>
<li>665 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/cfrontend/Ctypes.vo</code></li>
<li>662 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/x86/Asmgenproof.vo</code></li>
<li>637 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/flocq/IEEE754/Binary.vo</code></li>
<li>609 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Stackingproof.vo</code></li>
<li>577 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/cfrontend/Initializersproof.vo</code></li>
<li>565 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/SplitLongproof.vo</code></li>
<li>560 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Cminor.vo</code></li>
<li>539 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/ValueAnalysis.vo</code></li>
<li>530 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/cfrontend/SimplExprspec.vo</code></li>
<li>523 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/common/Linking.vo</code></li>
<li>509 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Deadcodeproof.vo</code></li>
<li>487 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Selection.vo</code></li>
<li>479 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/common/Smallstep.vo</code></li>
<li>476 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/CSEproof.vo</code></li>
<li>471 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Unusedglobproof.vo</code></li>
<li>469 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/x86/SelectLongproof.vo</code></li>
<li>466 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Bounds.vo</code></li>
<li>449 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/common/Globalenvs.vo</code></li>
<li>440 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Linearize.vo</code></li>
<li>438 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/cfrontend/SimplLocals.vo</code></li>
<li>429 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/RTLgenspec.vo</code></li>
<li>426 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Unusedglob.vo</code></li>
<li>424 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/common/AST.vo</code></li>
<li>417 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/lib/Heaps.vo</code></li>
<li>416 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Inliningspec.vo</code></li>
<li>412 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Registers.vo</code></li>
<li>410 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/CleanupLabels.vo</code></li>
<li>393 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/x86/ConstpropOpproof.vo</code></li>
<li>391 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/x86/ValueAOp.vo</code></li>
<li>389 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Cminortyping.vo</code></li>
<li>383 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/SelectDivproof.vo</code></li>
<li>383 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Constpropproof.vo</code></li>
<li>381 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/x86/Asmgen.vo</code></li>
<li>358 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/RTLtyping.vo</code></li>
<li>353 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/NeedDomain.vo</code></li>
<li>352 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/lib/Parmov.vo</code></li>
<li>346 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/lib/Floats.vo</code></li>
<li>341 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/lib/Maps.vo</code></li>
<li>333 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/MenhirLib/Interpreter.vo</code></li>
<li>317 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Asmgenproof0.vo</code></li>
<li>316 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/common/Memdata.vo</code></li>
<li>299 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Tailcallproof.vo</code></li>
<li>291 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Linearizeproof.vo</code></li>
<li>281 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/common/Separation.vo</code></li>
<li>274 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Kildall.vo</code></li>
<li>265 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/x86/NeedOp.vo</code></li>
<li>264 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/MenhirLib/Interpreter_correct.vo</code></li>
<li>262 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/lib/Coqlib.vo</code></li>
<li>261 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/common/Builtins0.vo</code></li>
<li>258 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Tunnelingproof.vo</code></li>
<li>253 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/lib/Zbits.vo</code></li>
<li>248 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/flocq/Core/Ulp.vo</code></li>
<li>247 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Debugvar.vo</code></li>
<li>237 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/cfrontend/ClightBigstep.vo</code></li>
<li>235 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Debugvarproof.vo</code></li>
<li>222 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/cfrontend/Initializers.vo</code></li>
<li>209 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/cfrontend/Csem.vo</code></li>
<li>209 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/driver/Compiler.vo</code></li>
<li>203 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/cfrontend/Clight.vo</code></li>
<li>203 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/flocq/Core/Generic_fmt.vo</code></li>
<li>202 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/lib/IntvSets.vo</code></li>
<li>196 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/CleanupLabelsproof.vo</code></li>
<li>192 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/common/Behaviors.vo</code></li>
<li>189 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/common/Determinism.vo</code></li>
<li>188 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/flocq/Core/Raux.vo</code></li>
<li>188 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/cfrontend/SimplExpr.vo</code></li>
<li>185 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/RTL.vo</code></li>
<li>183 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Locations.vo</code></li>
<li>172 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/common/Unityping.vo</code></li>
<li>172 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/flocq/Prop/Div_sqrt_error.vo</code></li>
<li>171 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Mach.vo</code></li>
<li>171 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Deadcode.vo</code></li>
<li>169 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/flocq/IEEE754/Bits.vo</code></li>
<li>167 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/CminorSel.vo</code></li>
<li>165 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/cfrontend/Cshmgen.vo</code></li>
<li>164 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/flocq/Prop/Round_odd.vo</code></li>
<li>159 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Lineartyping.vo</code></li>
<li>156 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/MenhirLib/Validator_safe.vo</code></li>
<li>154 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/lib/Lattice.vo</code></li>
<li>151 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/common/Switch.vo</code></li>
<li>151 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/RTLgen.vo</code></li>
<li>150 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/flocq/Calc/Round.vo</code></li>
<li>149 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/flocq/Core/Digits.vo</code></li>
<li>141 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/lib/Intv.vo</code></li>
<li>140 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/x86/CombineOpproof.vo</code></li>
<li>138 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/flocq/Core/FLT.vo</code></li>
<li>134 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/flocq/Prop/Relative.vo</code></li>
<li>129 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Renumberproof.vo</code></li>
<li>128 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/driver/Complements.vo</code></li>
<li>124 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/MenhirLib/Automaton.vo</code></li>
<li>124 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Inlining.vo</code></li>
<li>124 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/common/Memtype.vo</code></li>
<li>118 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/lib/Postorder.vo</code></li>
<li>115 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/flocq/Calc/Bracket.vo</code></li>
<li>114 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/lib/UnionFind.vo</code></li>
<li>112 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/cfrontend/Csharpminor.vo</code></li>
<li>111 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/flocq/Core/Round_pred.vo</code></li>
<li>105 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/CSE.vo</code></li>
<li>102 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/SelectDiv.vo</code></li>
<li>101 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/flocq/Core/Zaux.vo</code></li>
<li>100 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/flocq/Core/Round_NE.vo</code></li>
<li>99 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/x86/Stacklayout.vo</code></li>
<li>97 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/flocq/Prop/Plus_error.vo</code></li>
<li>93 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/x86/Conventions1.vo</code></li>
<li>91 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/lib/Ordered.vo</code></li>
<li>91 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/CSEdomain.vo</code></li>
<li>91 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/cfrontend/Cminorgen.vo</code></li>
<li>90 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/flocq/Prop/Mult_error.vo</code></li>
<li>88 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Linear.vo</code></li>
<li>87 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/LTL.vo</code></li>
<li>87 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/MenhirLib/Alphabet.vo</code></li>
<li>86 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/flocq/Core/FTZ.vo</code></li>
<li>82 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/flocq/Core/FLX.vo</code></li>
<li>81 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Constprop.vo</code></li>
<li>81 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Conventions.vo</code></li>
<li>80 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/MenhirLib/Grammar.vo</code></li>
<li>78 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Liveness.vo</code></li>
<li>74 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/flocq/Core/Float_prop.vo</code></li>
<li>73 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Stacking.vo</code></li>
<li>72 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/cparser/Cabs.vo</code></li>
<li>71 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/cfrontend/Csyntax.vo</code></li>
<li>70 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/flocq/Calc/Div.vo</code></li>
<li>68 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/flocq/Calc/Sqrt.vo</code></li>
<li>64 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/lib/Decidableplus.vo</code></li>
<li>63 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Tailcall.vo</code></li>
<li>62 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Renumber.vo</code></li>
<li>61 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/backend/Tunneling.vo</code></li>
<li>57 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/lib/Iteration.vo</code></li>
<li>56 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/flocq/Calc/Operations.vo</code></li>
<li>56 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/exportclight/Clightdefs.vo</code></li>
<li>54 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/common/Errors.vo</code></li>
<li>53 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/flocq/Prop/Sterbenz.vo</code></li>
<li>50 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/common/Builtins.vo</code></li>
<li>48 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/x86/Builtins1.vo</code></li>
<li>47 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/flocq/Core/FIX.vo</code></li>
<li>45 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/flocq/Core/Defs.vo</code></li>
<li>45 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/x86_64/Archi.vo</code></li>
<li>42 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/lib/BoolEqual.vo</code></li>
<li>42 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/flocq/Core/Core.vo</code></li>
<li>41 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/MenhirLib/Validator_classes.vo</code></li>
<li>15 K <code>../ocaml-base-compiler.4.06.1/variants/compcert64/share/man/man1/ccomp.1</code></li>
<li>14 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/lib/Wfsimpl.vo</code></li>
<li>12 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/lib/Axioms.vo</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/variants/compcert64/lib/compcert/include/stddef.h</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/variants/compcert64/lib/compcert/libcompcert.a</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/driver/Compopts.vo</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/variants/compcert64/lib/compcert/include/float.h</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/variants/compcert64/lib/compcert/include/stdarg.h</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/variants/compcert64/lib/compcert/include/stdalign.h</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/variants/compcert64/lib/compcert/include/stdbool.h</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/variants/compcert64/lib/compcert/include/varargs.h</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/variants/compcert64/lib/compcert/include/stdnoreturn.h</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/variants/compcert64/share/compcert.ini</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/compcert.config</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/README</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq-variant/compcert64/compcert/VERSION</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-compcert-64.3.7~coq-platform</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
Reports/fu/funscript.typescript.binding.iscroll.1.1.0.37/FunScript.TypeScript.Binding.iscroll-net40.html
|
kuhlenh/port-to-core
|
<!DOCTYPE html>
<html xmlns:msxsl="urn:schemas-microsoft-com:xslt">
<head>
<meta content="en-us" http-equiv="Content-Language" />
<meta content="text/html; charset=utf-16" http-equiv="Content-Type" />
<title _locid="PortabilityAnalysis0">.NET Portability Report</title>
<style>
/* Body style, for the entire document */
body {
background: #F3F3F4;
color: #1E1E1F;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
padding: 0;
margin: 0;
}
/* Header1 style, used for the main title */
h1 {
padding: 10px 0px 10px 10px;
font-size: 21pt;
background-color: #E2E2E2;
border-bottom: 1px #C1C1C2 solid;
color: #201F20;
margin: 0;
font-weight: normal;
}
/* Header2 style, used for "Overview" and other sections */
h2 {
font-size: 18pt;
font-weight: normal;
padding: 15px 0 5px 0;
margin: 0;
}
/* Header3 style, used for sub-sections, such as project name */
h3 {
font-weight: normal;
font-size: 15pt;
margin: 0;
padding: 15px 0 5px 0;
background-color: transparent;
}
h4 {
font-weight: normal;
font-size: 12pt;
margin: 0;
padding: 0 0 0 0;
background-color: transparent;
}
/* Color all hyperlinks one color */
a {
color: #1382CE;
}
/* Paragraph text (for longer informational messages) */
p {
font-size: 10pt;
}
/* Table styles */
table {
border-spacing: 0 0;
border-collapse: collapse;
font-size: 10pt;
}
table th {
background: #E7E7E8;
text-align: left;
text-decoration: none;
font-weight: normal;
padding: 3px 6px 3px 6px;
}
table td {
vertical-align: top;
padding: 3px 6px 5px 5px;
margin: 0px;
border: 1px solid #E7E7E8;
background: #F7F7F8;
}
.NoBreakingChanges {
color: darkgreen;
font-weight:bold;
}
.FewBreakingChanges {
color: orange;
font-weight:bold;
}
.ManyBreakingChanges {
color: red;
font-weight:bold;
}
.BreakDetails {
margin-left: 30px;
}
.CompatMessage {
font-style: italic;
font-size: 10pt;
}
.GoodMessage {
color: darkgreen;
}
/* Local link is a style for hyperlinks that link to file:/// content, there are lots so color them as 'normal' text until the user mouse overs */
.localLink {
color: #1E1E1F;
background: #EEEEED;
text-decoration: none;
}
.localLink:hover {
color: #1382CE;
background: #FFFF99;
text-decoration: none;
}
/* Center text, used in the over views cells that contain message level counts */
.textCentered {
text-align: center;
}
/* The message cells in message tables should take up all avaliable space */
.messageCell {
width: 100%;
}
/* Padding around the content after the h1 */
#content {
padding: 0px 12px 12px 12px;
}
/* The overview table expands to width, with a max width of 97% */
#overview table {
width: auto;
max-width: 75%;
}
/* The messages tables are always 97% width */
#messages table {
width: 97%;
}
/* All Icons */
.IconSuccessEncoded, .IconInfoEncoded, .IconWarningEncoded, .IconErrorEncoded {
min-width: 18px;
min-height: 18px;
background-repeat: no-repeat;
background-position: center;
}
/* Success icon encoded */
.IconSuccessEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconSuccess#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABPElEQVR4Xp1Tv0vDUBi8FqeA4NpBcBLcWnQSApncOnTo4FSnjP0DsnXpH5CxiwbHDg4Zuj4oOEXiJgiC4FDcCkLWmIMc1Pfw+eMgQ77v3Xf3Pe51YKGqqisAEwCR1TIAsiAIblSo6xrdHeJR85Xle3mdmCQKb0PsfqyxxzM8K15HZADl/H5+sHpZwYfxyRjTs+kWwKBx8yoHd2mRiuzF8mkJniWH/13u3Fjrs/EdhsdDFHGB/DLXEJBDLh1MWPAhPo1BLB4WX5yQywHR+m3tVe/t97D52CB/ziG0nIgD/qDuYg8WuCcVZ2YGwlJ3YDugkpR/VNcAEx6GEKhERSr71FuO4YCM4XBdwKvecjIlkSnsO0Hyp/GxSeJAdzBKzpOtnPwyyiPdAZhpZptT04tU+zk7s8czeges//s5C5+CwqrR4/gw+AAAAABJRU5ErkJggg==);
}
/* Information icon encoded */
.IconInfoEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconInformation#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABHElEQVR4Xs2TsUoDQRRF7wwoziokjZUKadInhdhukR9YP8DMX1hYW+QvdsXa/QHBbcXC7W0CamWTQnclFutceIQJwwaWNLlwm5k5d94M76mmaeCrrmsLYOocY12FcxZFUeozCqKqqgYA8uevv1H6VuPxcwlfk5N92KHBxfFeCSAxxswlYAW/Xr989x/mv9gkhtyMDhcAxgzRsp7flj8B/HF1RsMXq+NZMkopaHe7lbKxQUEIGbKsYNoGn969060hZBkQex/W8oRQwsQaW2o3Ago2SVcJUzAgY3N0lTCZZm+zPS8HB51gMmS1DEYyOz9acKO1D8JWTlafKIMxdhvlfdyT94Vv5h7P8Ky7nQzACmhvKq3zk3PjW9asz9D/1oigecsioooAAAAASUVORK5CYII=);
}
/* Warning icon encoded */
.IconWarningEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconWarning#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAx0lEQVR4XpWSMQ7CMAxFf4xAyBMLCxMrO8dhaBcuwdCJS3RJBw7SA/QGTCxdWJgiQYWKXJWKIXHIlyw5lqr34tQgEOdcBsCOx5yZK3hCCKdYXneQkh4pEfqzLfu+wVDSyyzFoJjfz9NB+pAF+eizx2Vruts0k15mPgvS6GYvpVtQhB61IB/dk6AF6fS4Ben0uIX5odtFe8Q/eW1KvFeH4e8khT6+gm5B+t3juyDt7n0jpe+CANTd+oTUjN/U3yVaABnSUjFz/gFq44JaVSCXeQAAAABJRU5ErkJggg==);
}
/* Error icon encoded */
.IconErrorEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconError#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABQElEQVR4XqWTvUoEQRCE6wYPZUA80AfwAQz23uCMjA7MDRQEIzPBVEyNTQUFIw00vcQTTMzuAh/AxEQQT8HF/3G/oGGnEUGuoNnd6qoZuqltyKEsyzVJq5I6rnUp6SjGeGhESikzzlc1eL7opfuVbrqbU1Zw9NCgtQMaZpY0eNnaaL2fHusvTK5vKu7sjSS1Y4y3QUA6K3e3Mau5UFDyMP7tYF9o8cAHZv68vipoIJg971PZIZ5HiwdvYGGvFVFHmGmZ2MxwmQYPXubPl9Up0tfoMQGetXd6mRbvhBw+boZ6WF7Mbv1+GsHRk0fQmPAH1GfmZirbCfDJ61tw3Px8/8pZsPAG4jlVhcPgZ7adwNWBB68lkRQWFiTgFlbnLY3DGGM7izIJIyT/jjIvEJw6fdJTc6krDzh6aMwMP9bvDH4ADSsa9uSWVJkAAAAASUVORK5CYII=);
}
</style>
</head>
<body>
<h1 _locid="PortabilityReport">.NET Portability Report</h1>
<div id="content">
<div id="submissionId" style="font-size:8pt;">
<p>
<i>
Submission Id
77fbaf08-8f0b-4754-8964-d1e5b45e029b
</i>
</p>
</div>
<h2 _locid="SummaryTitle">
<a name="Portability Summary"></a>Portability Summary
</h2>
<div id="summary">
<table>
<tbody>
<tr>
<th>Assembly</th>
<th>ASP.NET 5,Version=v1.0</th>
<th>Windows,Version=v8.1</th>
<th>.NET Framework,Version=v4.6</th>
<th>Windows Phone,Version=v8.1</th>
</tr>
<tr>
<td><strong><a href="#FunScript.TypeScript.Binding.iscroll">FunScript.TypeScript.Binding.iscroll</a></strong></td>
<td class="text-center">100.00 %</td>
<td class="text-center">100.00 %</td>
<td class="text-center">100.00 %</td>
<td class="text-center">100.00 %</td>
</tr>
</tbody>
</table>
</div>
<div id="details">
</div>
</div>
</body>
</html>
|
PyMel.docset/Contents/Resources/Documents/generated/classes/pymel.core.nodetypes/pymel.core.nodetypes.Bump3d.html
|
alexwidener/PyMelDocset
|
<html><body><p><!-- saved from url=(0024)http://docs.autodesk.com -->
<!DOCTYPE html>
<!-- Mirrored from help.autodesk.com/cloudhelp/2016/ENU/Maya-Tech-Docs/PyMel/generated/classes/pymel.core.nodetypes/pymel.core.nodetypes.Bump3d.html by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 01 Aug 2015 05:16:50 GMT -->
<!-- Added by HTTrack --><meta content="text/html;charset=utf-8" http-equiv="content-type"/><!-- /Added by HTTrack -->
</p>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<title>pymel.core.nodetypes.Bump3d — PyMEL 1.0.7 documentation</title>
<link href="../../../_static/nature.css" rel="stylesheet" type="text/css"/>
<link href="../../../_static/pygments.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../../../',
VERSION: '1.0.7',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script src="../../../_static/jquery.js" type="text/javascript"></script>
<script src="../../../_static/underscore.js" type="text/javascript"></script>
<script src="../../../_static/doctools.js" type="text/javascript"></script>
<link href="../../../index-2.html" rel="top" title="PyMEL 1.0.7 documentation"/>
<link href="../../pymel.core.nodetypes.html" rel="up" title="pymel.core.nodetypes"/>
<link href="pymel.core.nodetypes.CacheBase.html" rel="next" title="pymel.core.nodetypes.CacheBase"/>
<link href="pymel.core.nodetypes.Bump2d.html" rel="prev" title="pymel.core.nodetypes.Bump2d"/>
<link href="../../../../style/adsk.cpm.css" rel="stylesheet" type="text/css"/><meta content="expert" name="experiencelevel"/><meta content="programmer" name="audience"/><meta content="enable" name="user-comments"/><meta content="ENU" name="language"/><meta content="MAYAUL" name="product"/><meta content="2016" name="release"/><meta content="Customization" name="book"/><meta content="Maya-Tech-Docs" name="component"/><meta content="/view/MAYAUL/2016/ENU/" name="helpsystempath"/><meta content="04/03/2015" name="created"/><meta content="04/03/2015" name="modified"/><meta content="Navigation
index
modules |
next |
previous |
PyMEL 1.0.7 documentation »
pymel.core.nodetypes »
pymel.core.nodetypes.Bump3d ¶
class Bump3d ( *args , **kwargs ) ¶
MAttrClass = Enum( EnumValue('MAttrClass', 1, 'localDynamicAttr'), EnumValue('MAttrClass', 2, 'normalAttr'), EnumValue('MAttrClass', 3, 'extensionAttr'), EnumValue('MAttrClass', 4, 'invalidAttr')) ¶
MdgTimerMetric = Enum(..." name="description"/><meta content="__PyMel_generated_classes_pymel_core_nodetypes_pymel_core_nodetypes_Bump3d_html" name="topicid"/>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a accesskey="I" href="../../../genindex.html" title="General Index">index</a></li>
<li class="right">
<a href="../../../py-modindex.html" title="Python Module Index">modules</a> |</li>
<li class="right">
<a accesskey="N" href="pymel.core.nodetypes.CacheBase.html" title="pymel.core.nodetypes.CacheBase">next</a> |</li>
<li class="right">
<a accesskey="P" href="pymel.core.nodetypes.Bump2d.html" title="pymel.core.nodetypes.Bump2d">previous</a> |</li>
<li><a href="../../../index-2.html">PyMEL 1.0.7 documentation</a> »</li>
<li><a accesskey="U" href="../../pymel.core.nodetypes.html">pymel.core.nodetypes</a> »</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<div class="section" id="pymel-core-nodetypes-bump3d">
<h1>pymel.core.nodetypes.Bump3d<a class="headerlink" href="#pymel-core-nodetypes-bump3d" title="Permalink to this headline">¶</a></h1>
<p class="graphviz">
<img alt="Inheritance diagram of Bump3d" class="inheritance" src="../../../_images/inheritance-369d58c75e65e62be6312046eca6aac070e70edf.png" usemap="#inheritance79efaa2132"/>
<map id="inheritance79efaa2132" name="inheritance79efaa2132">
<area alt="" coords="13,121,85,145" href="#pymel.core.nodetypes.Bump3d" id="node1" shape="rect" title="Bump3d"></area>
<area alt="" coords="7,83,91,107" href="pymel.core.nodetypes.DependNode.html#pymel.core.nodetypes.DependNode" id="node2" shape="rect" title="DependNode"></area>
<area alt="" coords="13,44,85,68" href="../pymel.core.general/pymel.core.general.PyNode.html#pymel.core.general.PyNode" id="node3" shape="rect" title="Abstract class that is base for all pymel nodes classes."></area>
<area alt="" coords="5,5,93,29" href="../pymel.util.utilitytypes/pymel.util.utilitytypes.ProxyUnicode.html#pymel.util.utilitytypes.ProxyUnicode" id="node4" shape="rect" title="ProxyUnicode"></area>
</map>
</p>
<dl class="class">
<dt id="pymel.core.nodetypes.Bump3d"><a name="//apple_ref/cpp/Class/pymel.core.nodetypes.Bump3d"></a>
<em class="property">class </em><tt class="descname">Bump3d</tt><big>(</big><em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d" title="Permalink to this definition">¶</a></dt>
<dd><dl class="attribute">
<dt id="pymel.core.nodetypes.Bump3d.MAttrClass"><a name="//apple_ref/cpp/Attribute/pymel.core.nodetypes.Bump3d.MAttrClass"></a>
<tt class="descname">MAttrClass</tt><em class="property"> = Enum( EnumValue('MAttrClass', 1, 'localDynamicAttr'), EnumValue('MAttrClass', 2, 'normalAttr'), EnumValue('MAttrClass', 3, 'extensionAttr'), EnumValue('MAttrClass', 4, 'invalidAttr'))</em><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.MAttrClass" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="pymel.core.nodetypes.Bump3d.MdgTimerMetric"><a name="//apple_ref/cpp/Attribute/pymel.core.nodetypes.Bump3d.MdgTimerMetric"></a>
<tt class="descname">MdgTimerMetric</tt><em class="property"> = Enum( EnumValue('MdgTimerMetric', 0, 'metric_callback'), EnumValue('MdgTimerMetric', 1, 'metric_compute'), EnumValue('MdgTimerMetric', 2, 'metric_dirty'), EnumValue('MdgTimerMetric', 3, 'metric_draw'), EnumValue('MdgTimerMetric', 4, 'metric_fetch'), EnumValue('MdgTimerMetric', 5, 'metric_callbackViaAPI'), EnumValue('MdgTimerMetric', 6, 'metric_callbackNotViaAPI'), EnumValue('MdgTimerMetric', 7, 'metric_computeDuringCallback'), EnumValue('MdgTimerMetric', 8, 'metric_computeNotDuringCallback'), EnumValue('MdgTimerMetric', 9, 'metrics'))</em><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.MdgTimerMetric" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="pymel.core.nodetypes.Bump3d.MdgTimerState"><a name="//apple_ref/cpp/Attribute/pymel.core.nodetypes.Bump3d.MdgTimerState"></a>
<tt class="descname">MdgTimerState</tt><em class="property"> = Enum( EnumValue('MdgTimerState', 0, 'off'), EnumValue('MdgTimerState', 1, 'on'), EnumValue('MdgTimerState', 2, 'uninitialized'), EnumValue('MdgTimerState', 3, 'invalidState'))</em><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.MdgTimerState" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="attribute">
<dt id="pymel.core.nodetypes.Bump3d.MdgTimerType"><a name="//apple_ref/cpp/Attribute/pymel.core.nodetypes.Bump3d.MdgTimerType"></a>
<tt class="descname">MdgTimerType</tt><em class="property"> = Enum( EnumValue('MdgTimerType', 0, 'type_self'), EnumValue('MdgTimerType', 1, 'type_inclusive'), EnumValue('MdgTimerType', 2, 'type_count'), EnumValue('MdgTimerType', 3, 'types'))</em><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.MdgTimerType" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="pymel.core.nodetypes.Bump3d.addAttribute"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.Bump3d.addAttribute"></a>
<tt class="descname">addAttribute</tt><big>(</big><em>attr</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.addAttribute" title="Permalink to this definition">¶</a></dt>
<dd><p>Add a new dynamic attibute to this node.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name"></col>
<col class="field-body"></col>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><dl class="first last docutils">
<dt>attr <span class="classifier-delimiter">:</span> <span class="classifier"><tt class="xref py py-obj docutils literal"><span class="pre">PyNode</span></tt></span></dt>
<dd><p class="first last">new attribute</p>
</dd>
</dl>
</td>
</tr>
</tbody>
</table>
<p>Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.addAttribute</span></tt></p>
<p><strong>Undo is not currently supported for this method</strong></p>
</dd></dl>
<dl class="classmethod">
<dt id="pymel.core.nodetypes.Bump3d.allocateFlag">
<em class="property">classmethod </em><tt class="descname">allocateFlag</tt><big>(</big><em>pluginName</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.allocateFlag" title="Permalink to this definition">¶</a></dt>
<dd><p>Allocates a node flag for sole use by the caller. Note that the flag is not specific to any one node but is made available to the caller on all nodes. Furthermore, node flags only persist for the duration of the current Maya session: they are not saved with the scene.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name"></col>
<col class="field-body"></col>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><dl class="first docutils">
<dt>pluginName <span class="classifier-delimiter">:</span> <span class="classifier"><tt class="xref py py-obj docutils literal"><span class="pre">unicode</span></tt></span></dt>
<dd><p class="first last">The name of the plugin which is allocating the flag. A plugin’s name can be retrieved by calling MFnPlugin::name() within its initializePlugin() or uninitializePlugin() functions.</p>
</dd>
</dl>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><p class="first last"><tt class="xref py py-obj docutils literal"><span class="pre">int</span></tt></p>
</td>
</tr>
</tbody>
</table>
<p>Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.allocateFlag</span></tt></p>
</dd></dl>
<dl class="method">
<dt id="pymel.core.nodetypes.Bump3d.attribute"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.Bump3d.attribute"></a>
<tt class="descname">attribute</tt><big>(</big><em>index</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.attribute" title="Permalink to this definition">¶</a></dt>
<dd><p>Finds the attribute of this node at the given index. Index order is based on the order in which the attributes were added to the node.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name"></col>
<col class="field-body"></col>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><dl class="first docutils">
<dt>index <span class="classifier-delimiter">:</span> <span class="classifier"><tt class="xref py py-obj docutils literal"><span class="pre">int</span></tt></span></dt>
<dd><p class="first last">the index of the attribute</p>
</dd>
</dl>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><p class="first last"><tt class="xref py py-obj docutils literal"><span class="pre">PyNode</span></tt></p>
</td>
</tr>
</tbody>
</table>
<p>Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.attribute</span></tt></p>
</dd></dl>
<dl class="method">
<dt id="pymel.core.nodetypes.Bump3d.attributeClass"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.Bump3d.attributeClass"></a>
<tt class="descname">attributeClass</tt><big>(</big><em>attribute</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.attributeClass" title="Permalink to this definition">¶</a></dt>
<dd><p>Returns the class (normal, dynamic, extension) of the specified attribute.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name"></col>
<col class="field-body"></col>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><dl class="first docutils">
<dt>attribute <span class="classifier-delimiter">:</span> <span class="classifier"><tt class="xref py py-obj docutils literal"><span class="pre">PyNode</span></tt></span></dt>
<dd><p class="first last">the attribute to check</p>
</dd>
</dl>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><p class="first last"><a class="reference internal" href="pymel.core.nodetypes.DependNode.html#pymel.core.nodetypes.DependNode.MAttrClass" title="pymel.core.nodetypes.DependNode.MAttrClass"><tt class="xref py py-obj docutils literal"><span class="pre">DependNode.MAttrClass</span></tt></a></p>
</td>
</tr>
</tbody>
</table>
<p>Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.attributeClass</span></tt></p>
</dd></dl>
<dl class="classmethod">
<dt id="pymel.core.nodetypes.Bump3d.deallocateAllFlags">
<em class="property">classmethod </em><tt class="descname">deallocateAllFlags</tt><big>(</big><em>pluginName</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.deallocateAllFlags" title="Permalink to this definition">¶</a></dt>
<dd><p>Deallocates all of the node flags which are currently allocated to the specified plugin. The deallocated flags immediately become available for use by any plugin.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name"></col>
<col class="field-body"></col>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><dl class="first last docutils">
<dt>pluginName <span class="classifier-delimiter">:</span> <span class="classifier"><tt class="xref py py-obj docutils literal"><span class="pre">unicode</span></tt></span></dt>
<dd><p class="first last">The name of the plugin whose flags are to be deallocated. A plugin’s name can be retrieved by calling MFnPlugin::name() within its initializePlugin() or uninitializePlugin() functions.</p>
</dd>
</dl>
</td>
</tr>
</tbody>
</table>
<p>Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.deallocateAllFlags</span></tt></p>
<p><strong>Undo is not currently supported for this method</strong></p>
</dd></dl>
<dl class="classmethod">
<dt id="pymel.core.nodetypes.Bump3d.deallocateFlag">
<em class="property">classmethod </em><tt class="descname">deallocateFlag</tt><big>(</big><em>pluginName</em>, <em>flag</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.deallocateFlag" title="Permalink to this definition">¶</a></dt>
<dd><p>Deallocates a node flag which was previously allocated by a call to allocateFlag . The flag subsequently becomes available for reallocation and use by someone else.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name"></col>
<col class="field-body"></col>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><dl class="first last docutils">
<dt>pluginName <span class="classifier-delimiter">:</span> <span class="classifier"><tt class="xref py py-obj docutils literal"><span class="pre">unicode</span></tt></span></dt>
<dd><p class="first last">The name of the plugin which allocated the flag. A plugin’s name can be retrieved by calling MFnPlugin::name() within its initializePlugin() or uninitializePlugin() functions.</p>
</dd>
<dt>flag <span class="classifier-delimiter">:</span> <span class="classifier"><tt class="xref py py-obj docutils literal"><span class="pre">int</span></tt></span></dt>
<dd><p class="first last">Flag to deallocate.</p>
</dd>
</dl>
</td>
</tr>
</tbody>
</table>
<p>Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.deallocateFlag</span></tt></p>
<p><strong>Undo is not currently supported for this method</strong></p>
</dd></dl>
<dl class="method">
<dt id="pymel.core.nodetypes.Bump3d.dgCallbacks"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.Bump3d.dgCallbacks"></a>
<tt class="descname">dgCallbacks</tt><big>(</big><em>timerType</em>, <em>callbackName</em>, <em>value</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.dgCallbacks" title="Permalink to this definition">¶</a></dt>
<dd><p>Node callbacks that occur when timing is enabled get logged with the node and can be queried via this method. See the dgCallbackIds method for getting a further breakdown of the time for an individual callback on this node.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name"></col>
<col class="field-body"></col>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><dl class="first last docutils">
<dt>timerType <span class="classifier-delimiter">:</span> <span class="classifier"><a class="reference internal" href="pymel.core.nodetypes.DependNode.html#pymel.core.nodetypes.DependNode.MdgTimerType" title="pymel.core.nodetypes.DependNode.MdgTimerType"><tt class="xref py py-obj docutils literal"><span class="pre">DependNode.MdgTimerType</span></tt></a></span></dt>
<dd><p class="first">The timer we want to query, e.g. kTimerType_self for self time.</p>
<p class="last">values: ‘type_self’, ‘type_inclusive’, ‘type_count’, ‘types’</p>
</dd>
<dt>callbackName <span class="classifier-delimiter">:</span> <span class="classifier"><tt class="xref py py-obj docutils literal"><span class="pre">list</span></tt> list</span></dt>
<dd><p class="first last">Returns an array of callback names that were invoked for this node since the last timer reset.</p>
</dd>
<dt>value <span class="classifier-delimiter">:</span> <span class="classifier"><tt class="xref py py-obj docutils literal"><span class="pre">float</span></tt> list</span></dt>
<dd><p class="first last">Returns an array of timing values. There is a one-to-one correspondence with the <a href="#id1"><span class="problematic" id="id2">`</span></a>callbackName’ array.</p>
</dd>
</dl>
</td>
</tr>
</tbody>
</table>
<p>Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.dgCallbacks</span></tt></p>
<p><strong>Undo is not currently supported for this method</strong></p>
</dd></dl>
<dl class="method">
<dt id="pymel.core.nodetypes.Bump3d.dgTimer"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.Bump3d.dgTimer"></a>
<tt class="descname">dgTimer</tt><big>(</big><em>timerMetric</em>, <em>timerType</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.dgTimer" title="Permalink to this definition">¶</a></dt>
<dd><p>The function returns the specified timer value for the current node. This is the total amount of time spent performing the requested operation since the timer was last reset (see dgTimerReset() for details). There are numerous timers per node and these are referenced by the metric and the timer type.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name"></col>
<col class="field-body"></col>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><dl class="first docutils">
<dt>timerMetric <span class="classifier-delimiter">:</span> <span class="classifier"><a class="reference internal" href="pymel.core.nodetypes.DependNode.html#pymel.core.nodetypes.DependNode.MdgTimerMetric" title="pymel.core.nodetypes.DependNode.MdgTimerMetric"><tt class="xref py py-obj docutils literal"><span class="pre">DependNode.MdgTimerMetric</span></tt></a></span></dt>
<dd><p class="first">The timing metric we wish to query.</p>
<p class="last">values: ‘metric_callback’, ‘metric_compute’, ‘metric_dirty’, ‘metric_draw’, ‘metric_fetch’, ‘metric_callbackViaAPI’, ‘metric_callbackNotViaAPI’, ‘metric_computeDuringCallback’, ‘metric_computeNotDuringCallback’, ‘metrics’</p>
</dd>
<dt>timerType <span class="classifier-delimiter">:</span> <span class="classifier"><a class="reference internal" href="pymel.core.nodetypes.DependNode.html#pymel.core.nodetypes.DependNode.MdgTimerType" title="pymel.core.nodetypes.DependNode.MdgTimerType"><tt class="xref py py-obj docutils literal"><span class="pre">DependNode.MdgTimerType</span></tt></a></span></dt>
<dd><p class="first">The timer type we wish to query.</p>
<p class="last">values: ‘type_self’, ‘type_inclusive’, ‘type_count’, ‘types’</p>
</dd>
</dl>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><p class="first last"><tt class="xref py py-obj docutils literal"><span class="pre">float</span></tt></p>
</td>
</tr>
</tbody>
</table>
<p>Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.dgTimer</span></tt></p>
</dd></dl>
<dl class="method">
<dt id="pymel.core.nodetypes.Bump3d.dgTimerOff"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.Bump3d.dgTimerOff"></a>
<tt class="descname">dgTimerOff</tt><big>(</big><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.dgTimerOff" title="Permalink to this definition">¶</a></dt>
<dd><p>Indicates that this node should no longer collect DG timing data when DG timing is enabled. See dgTimerOn() and enableDGTiming() for more details.
Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.dgTimerOff</span></tt></p>
<p><strong>Undo is not currently supported for this method</strong></p>
</dd></dl>
<dl class="method">
<dt id="pymel.core.nodetypes.Bump3d.dgTimerOn"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.Bump3d.dgTimerOn"></a>
<tt class="descname">dgTimerOn</tt><big>(</big><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.dgTimerOn" title="Permalink to this definition">¶</a></dt>
<dd><p>Indicates that this node should collect DG timing data whenever DG timing is enabled. See enableDGTiming() for more details.
Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.dgTimerOn</span></tt></p>
<p><strong>Undo is not currently supported for this method</strong></p>
</dd></dl>
<dl class="method">
<dt id="pymel.core.nodetypes.Bump3d.dgTimerQueryState"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.Bump3d.dgTimerQueryState"></a>
<tt class="descname">dgTimerQueryState</tt><big>(</big><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.dgTimerQueryState" title="Permalink to this definition">¶</a></dt>
<dd><p>The function returns the current on/off state of the node’s timer.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name"></col>
<col class="field-body"></col>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body"><a class="reference internal" href="pymel.core.nodetypes.DependNode.html#pymel.core.nodetypes.DependNode.MdgTimerState" title="pymel.core.nodetypes.DependNode.MdgTimerState"><tt class="xref py py-obj docutils literal"><span class="pre">DependNode.MdgTimerState</span></tt></a></td>
</tr>
</tbody>
</table>
<p>Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.dgTimerQueryState</span></tt></p>
</dd></dl>
<dl class="method">
<dt id="pymel.core.nodetypes.Bump3d.dgTimerReset"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.Bump3d.dgTimerReset"></a>
<tt class="descname">dgTimerReset</tt><big>(</big><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.dgTimerReset" title="Permalink to this definition">¶</a></dt>
<dd><p>The function resets the dependency graph timers and counters for this node to zero. Note that this method does not start or stop timing, it only resets the values to zero. If you want to turn on timing, use the method dgTimerOn() . If you want to turn off timing, use dgTimerOff() .
Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.dgTimerReset</span></tt></p>
<p><strong>Undo is not currently supported for this method</strong></p>
</dd></dl>
<dl class="method">
<dt id="pymel.core.nodetypes.Bump3d.findAlias"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.Bump3d.findAlias"></a>
<tt class="descname">findAlias</tt><big>(</big><em>alias</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.findAlias" title="Permalink to this definition">¶</a></dt>
<dd><p>Retrieves the attribute with the given alias.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name"></col>
<col class="field-body"></col>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><dl class="first docutils">
<dt>alias <span class="classifier-delimiter">:</span> <span class="classifier"><tt class="xref py py-obj docutils literal"><span class="pre">unicode</span></tt></span></dt>
<dd><p class="first last">alternative name of the attribute</p>
</dd>
</dl>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><p class="first last">(<tt class="xref py py-obj docutils literal"><span class="pre">bool</span></tt>, <tt class="xref py py-obj docutils literal"><span class="pre">PyNode</span></tt>)</p>
</td>
</tr>
</tbody>
</table>
<p>Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.findAlias</span></tt></p>
</dd></dl>
<dl class="method">
<dt id="pymel.core.nodetypes.Bump3d.findPlug"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.Bump3d.findPlug"></a>
<tt class="descname">findPlug</tt><big>(</big><em>attr</em>, <em>wantNetworkedPlug</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.findPlug" title="Permalink to this definition">¶</a></dt>
<dd><p>Attempt to find a plug for the given attribute. This method will first try to find the networked version of the plug if requested. The networked version of a plug is one that currently exists in the dependency graph at a particular connection point. If a networked version is not found, then a standard non-networked plug is returned.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name"></col>
<col class="field-body"></col>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><dl class="first docutils">
<dt>attr <span class="classifier-delimiter">:</span> <span class="classifier"><tt class="xref py py-obj docutils literal"><span class="pre">PyNode</span></tt></span></dt>
<dd><p class="first last">attribute whose plug we wish to find</p>
</dd>
<dt>wantNetworkedPlug <span class="classifier-delimiter">:</span> <span class="classifier"><tt class="xref py py-obj docutils literal"><span class="pre">bool</span></tt></span></dt>
<dd><p class="first last">if true, request a networked plug if it is available</p>
</dd>
</dl>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><p class="first last"><tt class="xref py py-obj docutils literal"><span class="pre">PyNode</span></tt></p>
</td>
</tr>
</tbody>
</table>
<p>Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.findPlug</span></tt></p>
</dd></dl>
<dl class="method">
<dt id="pymel.core.nodetypes.Bump3d.getAffectedAttributes"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.Bump3d.getAffectedAttributes"></a>
<tt class="descname">getAffectedAttributes</tt><big>(</big><em>attr</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.getAffectedAttributes" title="Permalink to this definition">¶</a></dt>
<dd><p>Returns an array of attributes that are affected by the attribute passed in. That is, when the given attribute, attr is marked dirty (changed) all the affectedAttributes attributes will also be marked dirty. For nodes defined in plug-ins this call returns all those attributes that were marked as being affected by the given one via the MPxNode::attributeAffects call.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name"></col>
<col class="field-body"></col>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><dl class="first docutils">
<dt>attr <span class="classifier-delimiter">:</span> <span class="classifier"><tt class="xref py py-obj docutils literal"><span class="pre">PyNode</span></tt></span></dt>
<dd><p class="first last">the attribute to check</p>
</dd>
</dl>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><p class="first last"><tt class="xref py py-obj docutils literal"><span class="pre">PyNode</span></tt> list</p>
</td>
</tr>
</tbody>
</table>
<p>Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.getAffectedAttributes</span></tt></p>
</dd></dl>
<dl class="method">
<dt id="pymel.core.nodetypes.Bump3d.getAffectedByAttributes"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.Bump3d.getAffectedByAttributes"></a>
<tt class="descname">getAffectedByAttributes</tt><big>(</big><em>attr</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.getAffectedByAttributes" title="Permalink to this definition">¶</a></dt>
<dd><p>Returns an array of attributes that affect the attribute passed in, attr . That is, when one of the attributes in affectedByAttributes is marked dirty (changed) then attr will also be marked dirty. For nodes defined in plug-ins this call returns all those attributes that were marked as affecting the given one via the MPxNode::attributeAffects call.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name"></col>
<col class="field-body"></col>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><dl class="first docutils">
<dt>attr <span class="classifier-delimiter">:</span> <span class="classifier"><tt class="xref py py-obj docutils literal"><span class="pre">PyNode</span></tt></span></dt>
<dd><p class="first last">the attribute to check</p>
</dd>
</dl>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><p class="first last"><tt class="xref py py-obj docutils literal"><span class="pre">PyNode</span></tt> list</p>
</td>
</tr>
</tbody>
</table>
<p>Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.getAffectedByAttributes</span></tt></p>
</dd></dl>
<dl class="method">
<dt id="pymel.core.nodetypes.Bump3d.getAliasAttr"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.Bump3d.getAliasAttr"></a>
<tt class="descname">getAliasAttr</tt><big>(</big><em>force</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.getAliasAttr" title="Permalink to this definition">¶</a></dt>
<dd><p>Returns the node’s alias attribute, which is a special attribute used to store information about the node’s attribute aliases.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name"></col>
<col class="field-body"></col>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><dl class="first docutils">
<dt>force <span class="classifier-delimiter">:</span> <span class="classifier"><tt class="xref py py-obj docutils literal"><span class="pre">bool</span></tt></span></dt>
<dd><p class="first last">To indicate whether the alias attr should be created.</p>
</dd>
</dl>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><p class="first last"><tt class="xref py py-obj docutils literal"><span class="pre">PyNode</span></tt></p>
</td>
</tr>
</tbody>
</table>
<p>Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.getAliasAttr</span></tt></p>
</dd></dl>
<dl class="method">
<dt id="pymel.core.nodetypes.Bump3d.getAliasList"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.Bump3d.getAliasList"></a>
<tt class="descname">getAliasList</tt><big>(</big><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.getAliasList" title="Permalink to this definition">¶</a></dt>
<dd><p>Returns a list of all attribute aliases for this node. The aliases are pairs of strings with the first being the alias and the second being the attribute’s real name.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name"></col>
<col class="field-body"></col>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body">(<tt class="xref py py-obj docutils literal"><span class="pre">bool</span></tt>, <tt class="xref py py-obj docutils literal"><span class="pre">list</span></tt> list)</td>
</tr>
</tbody>
</table>
<p>Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.getAliasList</span></tt></p>
</dd></dl>
<dl class="method">
<dt id="pymel.core.nodetypes.Bump3d.getConnections"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.Bump3d.getConnections"></a>
<tt class="descname">getConnections</tt><big>(</big><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.getConnections" title="Permalink to this definition">¶</a></dt>
<dd><p>Get all of the current connections to this node as an array of plugs.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name"></col>
<col class="field-body"></col>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body"><tt class="xref py py-obj docutils literal"><span class="pre">PyNode</span></tt> list</td>
</tr>
</tbody>
</table>
<p>Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.getConnections</span></tt></p>
</dd></dl>
<dl class="method">
<dt id="pymel.core.nodetypes.Bump3d.getName"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.Bump3d.getName"></a>
<tt class="descname">getName</tt><big>(</big><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.getName" title="Permalink to this definition">¶</a></dt>
<dd><p>Returns the name of this node. Note that if the object the instance of this class is attached to is data instead of being in the graph (ie. the object was created by one of the MFn*Data function sets, or was passed to an MPxNode::compute function in a data block) then the name method will not work.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name"></col>
<col class="field-body"></col>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body"><tt class="xref py py-obj docutils literal"><span class="pre">unicode</span></tt></td>
</tr>
</tbody>
</table>
<p>Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.name</span></tt></p>
</dd></dl>
<dl class="method">
<dt id="pymel.core.nodetypes.Bump3d.hasAttribute"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.Bump3d.hasAttribute"></a>
<tt class="descname">hasAttribute</tt><big>(</big><em>attrName</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.hasAttribute" title="Permalink to this definition">¶</a></dt>
<dd><p>Returns true if the node already has an attribute with the given name.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name"></col>
<col class="field-body"></col>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><dl class="first docutils">
<dt>attrName <span class="classifier-delimiter">:</span> <span class="classifier"><tt class="xref py py-obj docutils literal"><span class="pre">unicode</span></tt></span></dt>
<dd><p class="first last">Name of attribute to be checked.</p>
</dd>
</dl>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><p class="first last"><tt class="xref py py-obj docutils literal"><span class="pre">bool</span></tt></p>
</td>
</tr>
</tbody>
</table>
<p>Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.hasAttribute</span></tt></p>
</dd></dl>
<dl class="method">
<dt id="pymel.core.nodetypes.Bump3d.hasUniqueName"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.Bump3d.hasUniqueName"></a>
<tt class="descname">hasUniqueName</tt><big>(</big><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.hasUniqueName" title="Permalink to this definition">¶</a></dt>
<dd><p>Indicates whether or not this node’s name is unique within the scene.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name"></col>
<col class="field-body"></col>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body"><tt class="xref py py-obj docutils literal"><span class="pre">bool</span></tt></td>
</tr>
</tbody>
</table>
<p>Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.hasUniqueName</span></tt></p>
</dd></dl>
<dl class="method">
<dt id="pymel.core.nodetypes.Bump3d.isFromReferencedFile"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.Bump3d.isFromReferencedFile"></a>
<tt class="descname">isFromReferencedFile</tt><big>(</big><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.isFromReferencedFile" title="Permalink to this definition">¶</a></dt>
<dd><p>Indicates whether or not this node came from a referenced file. If it did, the node will be marked as read-only in the scene and changes to the node’s attributes will be saved in the main scene file, not the referenced file from which the node came.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name"></col>
<col class="field-body"></col>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body"><tt class="xref py py-obj docutils literal"><span class="pre">bool</span></tt></td>
</tr>
</tbody>
</table>
<p>Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.isFromReferencedFile</span></tt></p>
</dd></dl>
<dl class="method">
<dt id="pymel.core.nodetypes.Bump3d.isNewAttribute"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.Bump3d.isNewAttribute"></a>
<tt class="descname">isNewAttribute</tt><big>(</big><em>attr</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.isNewAttribute" title="Permalink to this definition">¶</a></dt>
<dd><p>Indicates whether or not the specified attribute was added to this node within the current scene.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name"></col>
<col class="field-body"></col>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><dl class="first docutils">
<dt>attr <span class="classifier-delimiter">:</span> <span class="classifier"><tt class="xref py py-obj docutils literal"><span class="pre">PyNode</span></tt></span></dt>
<dd><p class="first last">Attribute to check.</p>
</dd>
</dl>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><p class="first last"><tt class="xref py py-obj docutils literal"><span class="pre">bool</span></tt></p>
</td>
</tr>
</tbody>
</table>
<p>Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.isNewAttribute</span></tt></p>
</dd></dl>
<dl class="method">
<dt id="pymel.core.nodetypes.Bump3d.plugsAlias"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.Bump3d.plugsAlias"></a>
<tt class="descname">plugsAlias</tt><big>(</big><em>plug</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.plugsAlias" title="Permalink to this definition">¶</a></dt>
<dd><p>Returns the alias for the plug’s attribute or the empty string if that attribute has no alias.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name"></col>
<col class="field-body"></col>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><dl class="first docutils">
<dt>plug <span class="classifier-delimiter">:</span> <span class="classifier"><tt class="xref py py-obj docutils literal"><span class="pre">PyNode</span></tt></span></dt>
<dd><p class="first last">plug for whose attribute we want the alias</p>
</dd>
</dl>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><p class="first last"><tt class="xref py py-obj docutils literal"><span class="pre">unicode</span></tt></p>
</td>
</tr>
</tbody>
</table>
<p>Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.plugsAlias</span></tt></p>
</dd></dl>
<dl class="method">
<dt id="pymel.core.nodetypes.Bump3d.removeAttribute"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.Bump3d.removeAttribute"></a>
<tt class="descname">removeAttribute</tt><big>(</big><em>attribute</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.removeAttribute" title="Permalink to this definition">¶</a></dt>
<dd><p>Remove a dynamic attribute from a node.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name"></col>
<col class="field-body"></col>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><dl class="first last docutils">
<dt>attribute <span class="classifier-delimiter">:</span> <span class="classifier"><tt class="xref py py-obj docutils literal"><span class="pre">PyNode</span></tt></span></dt>
<dd><p class="first last">attribute to remove</p>
</dd>
</dl>
</td>
</tr>
</tbody>
</table>
<p>Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.removeAttribute</span></tt></p>
<p><strong>Undo is not currently supported for this method</strong></p>
</dd></dl>
<dl class="method">
<dt id="pymel.core.nodetypes.Bump3d.reorderedAttribute"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.Bump3d.reorderedAttribute"></a>
<tt class="descname">reorderedAttribute</tt><big>(</big><em>index</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.reorderedAttribute" title="Permalink to this definition">¶</a></dt>
<dd><p>Some nodes, such as the various animCurve nodes, require that their attributes be set in a specific order for proper operation. Usually this ordering is only important when the node is being created during file I/O.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name"></col>
<col class="field-body"></col>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><dl class="first docutils">
<dt>index <span class="classifier-delimiter">:</span> <span class="classifier"><tt class="xref py py-obj docutils literal"><span class="pre">int</span></tt></span></dt>
<dd><p class="first last">the reordered index of the attribute</p>
</dd>
</dl>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><p class="first last"><tt class="xref py py-obj docutils literal"><span class="pre">PyNode</span></tt></p>
</td>
</tr>
</tbody>
</table>
<p>Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.reorderedAttribute</span></tt></p>
</dd></dl>
<dl class="method">
<dt id="pymel.core.nodetypes.Bump3d.setAlias"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.Bump3d.setAlias"></a>
<tt class="descname">setAlias</tt><big>(</big><em>alias</em>, <em>name</em>, <em>plug</em>, <em>add=True</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.setAlias" title="Permalink to this definition">¶</a></dt>
<dd><p>Sets or removes an alias (i.e. an alternative name) for an attribute.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name"></col>
<col class="field-body"></col>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><dl class="first docutils">
<dt>alias <span class="classifier-delimiter">:</span> <span class="classifier"><tt class="xref py py-obj docutils literal"><span class="pre">unicode</span></tt></span></dt>
<dd><p class="first last">alternative name for the attribute</p>
</dd>
<dt>name <span class="classifier-delimiter">:</span> <span class="classifier"><tt class="xref py py-obj docutils literal"><span class="pre">unicode</span></tt></span></dt>
<dd><p class="first last">real name of the attribute</p>
</dd>
<dt>plug <span class="classifier-delimiter">:</span> <span class="classifier"><tt class="xref py py-obj docutils literal"><span class="pre">PyNode</span></tt></span></dt>
<dd><p class="first last">plug to the attribute</p>
</dd>
<dt>add <span class="classifier-delimiter">:</span> <span class="classifier"><tt class="xref py py-obj docutils literal"><span class="pre">bool</span></tt></span></dt>
<dd><p class="first last">true to add the alias, false to remove it</p>
</dd>
</dl>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><p class="first last"><tt class="xref py py-obj docutils literal"><span class="pre">bool</span></tt></p>
</td>
</tr>
</tbody>
</table>
<p>Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.setAlias</span></tt></p>
</dd></dl>
<dl class="method">
<dt id="pymel.core.nodetypes.Bump3d.setFlag"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.Bump3d.setFlag"></a>
<tt class="descname">setFlag</tt><big>(</big><em>flag</em>, <em>state</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.setFlag" title="Permalink to this definition">¶</a></dt>
<dd><p>Sets the state of the specified flag for the node.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name"></col>
<col class="field-body"></col>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><dl class="first last docutils">
<dt>flag <span class="classifier-delimiter">:</span> <span class="classifier"><tt class="xref py py-obj docutils literal"><span class="pre">int</span></tt></span></dt>
<dd><p class="first last">flag to set</p>
</dd>
<dt>state <span class="classifier-delimiter">:</span> <span class="classifier"><tt class="xref py py-obj docutils literal"><span class="pre">bool</span></tt></span></dt>
<dd><p class="first last">new state to which the flag will be set</p>
</dd>
</dl>
</td>
</tr>
</tbody>
</table>
<p>Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.setFlag</span></tt></p>
<p><strong>Undo is not currently supported for this method</strong></p>
</dd></dl>
<dl class="method">
<dt id="pymel.core.nodetypes.Bump3d.setName"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.Bump3d.setName"></a>
<tt class="descname">setName</tt><big>(</big><em>name</em>, <em>createNamespace=False</em><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.setName" title="Permalink to this definition">¶</a></dt>
<dd><p>Sets the name of this node.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name"></col>
<col class="field-body"></col>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><dl class="first docutils">
<dt>name <span class="classifier-delimiter">:</span> <span class="classifier"><tt class="xref py py-obj docutils literal"><span class="pre">unicode</span></tt></span></dt>
<dd><p class="first last">the new name for the node</p>
</dd>
<dt>createNamespace <span class="classifier-delimiter">:</span> <span class="classifier"><tt class="xref py py-obj docutils literal"><span class="pre">bool</span></tt></span></dt>
<dd><p class="first last">determine whether or not to create a new namespace when the given name includes a namespace which does not exist.</p>
</dd>
</dl>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Return type:</th><td class="field-body"><p class="first last"><tt class="xref py py-obj docutils literal"><span class="pre">unicode</span></tt></p>
</td>
</tr>
</tbody>
</table>
<p>Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.setName</span></tt></p>
</dd></dl>
<dl class="method">
<dt id="pymel.core.nodetypes.Bump3d.typeName"><a name="//apple_ref/cpp/Method/pymel.core.nodetypes.Bump3d.typeName"></a>
<tt class="descname">typeName</tt><big>(</big><big>)</big><a class="headerlink" href="#pymel.core.nodetypes.Bump3d.typeName" title="Permalink to this definition">¶</a></dt>
<dd><p>Returns the type name of this node. The string returned is the name of the node type as it is used in the ascii file format.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name"></col>
<col class="field-body"></col>
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Return type:</th><td class="field-body"><tt class="xref py py-obj docutils literal"><span class="pre">unicode</span></tt></td>
</tr>
</tbody>
</table>
<p>Derived from api method <tt class="xref py py-obj docutils literal"><span class="pre">maya.OpenMaya.MFnDependencyNode.typeName</span></tt></p>
</dd></dl>
</dd></dl>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
<h4>Previous topic</h4>
<p class="topless"><a href="pymel.core.nodetypes.Bump2d.html" title="previous chapter">pymel.core.nodetypes.Bump2d</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="pymel.core.nodetypes.CacheBase.html" title="next chapter">pymel.core.nodetypes.CacheBase</a></p>
<h3><a href="../../../modules.html">Core Modules</a></h3>
<ul>
<li><a class="reference external" href="../../pymel.core.animation.html#module-pymel.core.animation"><tt class="xref">animation</tt></a></li>
<li><a class="reference external" href="../../pymel.core.effects.html#module-pymel.core.effects"><tt class="xref">effects</tt></a></li>
<li><a class="reference external" href="../../pymel.core.general.html#module-pymel.core.general"><tt class="xref">general</tt></a></li>
<li><a class="reference external" href="../../pymel.core.language.html#module-pymel.core.language"><tt class="xref">language</tt></a></li>
<li><a class="reference external" href="../../pymel.core.modeling.html#module-pymel.core.modeling"><tt class="xref">modeling</tt></a></li>
<li><a class="reference external" href="../../pymel.core.rendering.html#module-pymel.core.rendering"><tt class="xref">rendering</tt></a></li>
<li><a class="reference external" href="../../pymel.core.system.html#module-pymel.core.system"><tt class="xref">system</tt></a></li>
<li><a class="reference external" href="../../pymel.core.windows.html#module-pymel.core.windows"><tt class="xref">windows</tt></a></li>
</ul>
<h3><a href="../../../modules.html">Type Modules</a></h3>
<ul>
<li><a class="reference external" href="../../pymel.core.datatypes.html#module-pymel.core.datatypes"><tt class="xref">datatypes</tt></a></li>
<li><a class="reference external" href="../../pymel.core.nodetypes.html#module-pymel.core.nodetypes"><tt class="xref">nodetypes</tt></a></li>
<li><a class="reference external" href="../../pymel.core.uitypes.html#module-pymel.core.uitypes"><tt class="xref">uitypes</tt></a></li>
</ul>
<h3><a href="../../../modules.html">Other Modules</a></h3>
<ul>
<li><a class="reference external" href="../../pymel.api.plugins.html#module-pymel.api.plugins"><tt class="xref">plugins</tt></a></li>
<li><a class="reference external" href="../../pymel.mayautils.html#module-pymel.mayautils"><tt class="xref">mayautils</tt></a></li>
<li><a class="reference external" href="../../pymel.util.html#module-pymel.util"><tt class="xref">util</tt></a></li>
<li><a class="reference external" href="../../pymel.versions.html#module-pymel.versions"><tt class="xref">versions</tt></a>
</li><li><a class="reference external" href="../../pymel.tools.html#module-pymel.tools"><tt class="xref">tools</tt></a></li>
</ul>
<!--
<ul>
<li><a class="reference external" href="../../pymel.core.animation.html.html#module-pymel.core.animation"><tt class="xref">animation</tt></a></li>
<li><a class="reference external" href="../../pymel.core.datatypes.html.html#module-pymel.core.datatypes"><tt class="xref">datatypes</tt></a></li>
<li><a class="reference external" href="../../pymel.core.effects.html.html#module-pymel.core.effects"><tt class="xref">effects</tt></a></li>
<li><a class="reference external" href="../../pymel.core.general.html.html#module-pymel.core.general"><tt class="xref">general</tt></a></li>
<li><a class="reference external" href="../../pymel.core.language.html.html#module-pymel.core.language"><tt class="xref">language</tt></a></li>
<li><a class="reference external" href="../../pymel.core.modeling.html.html#module-pymel.core.modeling"><tt class="xref">modeling</tt></a></li>
<li><a class="reference external" href="../../pymel.core.nodetypes.html.html#module-pymel.core.nodetypes"><tt class="xref">nodetypes</tt></a></li>
<li><a class="reference external" href="../../pymel.core.rendering.html.html#module-pymel.core.rendering"><tt class="xref">rendering</tt></a></li>
<li><a class="reference external" href="../../pymel.core.system.html.html#module-pymel.core.system"><tt class="xref">system</tt></a></li>
<li><a class="reference external" href="../../pymel.core.windows.html.html#module-pymel.core.windows"><tt class="xref">windows</tt></a></li>
<li><a class="reference external" href="../../pymel.util.html.html#module-pymel.util"><tt class="xref">pymel.util</tt></a></li>
</ul>
-->
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="../../../_sources/generated/classes/pymel.core.nodetypes/pymel.core.nodetypes.Bump3d.txt" rel="nofollow">Show Source</a></li>
</ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form action="http://help.autodesk.com/cloudhelp/2016/ENU/Maya-Tech-Docs/PyMel/search.html" class="search" method="get"></form>
<input name="q" type="text"/>
<input type="submit" value="Go"/>
<input name="check_keywords" type="hidden" value="yes"/>
<input name="area" type="hidden" value="default"/>
<p class="searchtip" style="font-size: 90%">
Enter search terms or a module, class or function name.
</p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../../../genindex.html" title="General Index">index</a></li>
<li class="right">
<a href="../../../py-modindex.html" title="Python Module Index">modules</a> |</li>
<li class="right">
<a href="pymel.core.nodetypes.CacheBase.html" title="pymel.core.nodetypes.CacheBase">next</a> |</li>
<li class="right">
<a href="pymel.core.nodetypes.Bump2d.html" title="pymel.core.nodetypes.Bump2d">previous</a> |</li>
<li><a href="../../../index-2.html">PyMEL 1.0.7 documentation</a> »</li>
<li><a href="../../pymel.core.nodetypes.html">pymel.core.nodetypes</a> »</li>
</ul>
</div>
<div class="footer">
© Copyright 2009, Chad Dombrova.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2.3.
</div>
<!-- Mirrored from help.autodesk.com/cloudhelp/2016/ENU/Maya-Tech-Docs/PyMel/generated/classes/pymel.core.nodetypes/pymel.core.nodetypes.Bump3d.html by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 01 Aug 2015 05:16:51 GMT -->
</body></html>
|
html/234567129471.html
|
GoC-Spending/data-corporations
|
<!DOCTYPE html>
<!--[if lt IE 9]><html class="no-js lt-ie9" lang="en" dir="ltr"><![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="en" dir="ltr">
<!--<![endif]-->
<!-- Usage: /eic/site/ccc-rec.nsf/tpl-eng/template-1col.html?Open&id=3 (optional: ?Open&page=filename.html&id=x) -->
<!-- Created: ; Product Code: 536; Server: stratnotes2.ic.gc.ca -->
<head>
<!-- Title begins / Début du titre -->
<title>
Green Planet Electric -
Complete profile - Canadian Company Capabilities - Industries and Business - Industry Canada
</title>
<!-- Title ends / Fin du titre -->
<!-- Meta-data begins / Début des métadonnées -->
<meta charset="utf-8" />
<meta name="dcterms.language" title="ISO639-2" content="eng" />
<meta name="dcterms.title" content="" />
<meta name="description" content="" />
<meta name="dcterms.description" content="" />
<meta name="dcterms.type" content="report, data set" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.subject" content="businesses, industry" />
<meta name="dcterms.issued" title="W3CDTF" content="" />
<meta name="dcterms.modified" title="W3CDTF" content="" />
<meta name="keywords" content="" />
<meta name="dcterms.creator" content="" />
<meta name="author" content="" />
<meta name="dcterms.created" title="W3CDTF" content="" />
<meta name="dcterms.publisher" content="" />
<meta name="dcterms.audience" title="icaudience" content="" />
<meta name="dcterms.spatial" title="ISO3166-1" content="" />
<meta name="dcterms.spatial" title="gcgeonames" content="" />
<meta name="dcterms.format" content="HTML" />
<meta name="dcterms.identifier" title="ICsiteProduct" content="536" />
<!-- EPI-11240 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- MCG-202 -->
<meta content="width=device-width,initial-scale=1" name="viewport">
<!-- EPI-11567 -->
<meta name = "format-detection" content = "telephone=no">
<!-- EPI-12603 -->
<meta name="robots" content="noarchive">
<!-- EPI-11190 - Webtrends -->
<script>
var startTime = new Date();
startTime = startTime.getTime();
</script>
<!--[if gte IE 9 | !IE ]><!-->
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="icon" type="image/x-icon">
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/wet-boew.min.css">
<!--<![endif]-->
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/theme.min.css">
<!--[if lt IE 9]>
<link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="shortcut icon" />
<link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/ie8-wet-boew.min.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew.min.js"></script>
<![endif]-->
<!--[if lte IE 9]>
<![endif]-->
<noscript><link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/noscript.min.css" /></noscript>
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<script>dataLayer1 = [];</script>
<!-- End Google Tag Manager -->
<!-- EPI-11235 -->
<link rel="stylesheet" href="/eic/home.nsf/css/add_WET_4-0_Canada_Apps.css">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link href="/app/ccc/srch/css/print.css" media="print" rel="stylesheet" type="text/css" />
</head>
<body class="home" vocab="http://schema.org/" typeof="WebPage">
<!-- EPIC HEADER BEGIN -->
<!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER -->
<noscript><iframe title="Google Tag Manager" src="//www.googletagmanager.com/ns.html?id=GTM-TLGQ9K" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer1'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer1','GTM-TLGQ9K');</script>
<!-- End Google Tag Manager -->
<!-- EPI-12801 -->
<span typeof="Organization"><meta property="legalName" content="Department_of_Industry"></span>
<ul id="wb-tphp">
<li class="wb-slc">
<a class="wb-sl" href="#wb-cont">Skip to main content</a>
</li>
<li class="wb-slc visible-sm visible-md visible-lg">
<a class="wb-sl" href="#wb-info">Skip to "About this site"</a>
</li>
</ul>
<header role="banner">
<div id="wb-bnr" class="container">
<section id="wb-lng" class="visible-md visible-lg text-right">
<h2 class="wb-inv">Language selection</h2>
<div class="row">
<div class="col-md-12">
<ul class="list-inline mrgn-bttm-0">
<li><a href="nvgt.do?V_TOKEN=1492289528015&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=20224&V_SEARCH.docsStart=20223&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn/rgstr.sec?_flId?_flxKy=e1s1&estblmntNo=234567041301&profileId=61&_evId=bck&lang=eng&V_SEARCH.showStricts=false&prtl=1&_flId?_flId?_flxKy=e1s1" title="Français" lang="fr">Français</a></li>
</ul>
</div>
</div>
</section>
<div class="row">
<div class="brand col-xs-8 col-sm-9 col-md-6">
<a href="http://www.canada.ca/en/index.html"><object type="image/svg+xml" tabindex="-1" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/sig-blk-en.svg"></object><span class="wb-inv"> Government of Canada</span></a>
</div>
<section class="wb-mb-links col-xs-4 col-sm-3 visible-sm visible-xs" id="wb-glb-mn">
<h2>Search and menus</h2>
<ul class="list-inline text-right chvrn">
<li><a href="#mb-pnl" title="Search and menus" aria-controls="mb-pnl" class="overlay-lnk" role="button"><span class="glyphicon glyphicon-search"><span class="glyphicon glyphicon-th-list"><span class="wb-inv">Search and menus</span></span></span></a></li>
</ul>
<div id="mb-pnl"></div>
</section>
<!-- Site Search Removed -->
</div>
</div>
<nav role="navigation" id="wb-sm" class="wb-menu visible-md visible-lg" data-trgt="mb-pnl" data-ajax-fetch="//cdn.canada.ca/gcweb-cdn-dev/sitemenu/sitemenu-en.html" typeof="SiteNavigationElement">
<h2 class="wb-inv">Topics menu</h2>
<div class="container nvbar">
<div class="row">
<ul class="list-inline menu">
<li><a href="https://www.canada.ca/en/services/jobs.html">Jobs</a></li>
<li><a href="http://www.cic.gc.ca/english/index.asp">Immigration</a></li>
<li><a href="https://travel.gc.ca/">Travel</a></li>
<li><a href="https://www.canada.ca/en/services/business.html">Business</a></li>
<li><a href="https://www.canada.ca/en/services/benefits.html">Benefits</a></li>
<li><a href="http://healthycanadians.gc.ca/index-eng.php">Health</a></li>
<li><a href="https://www.canada.ca/en/services/taxes.html">Taxes</a></li>
<li><a href="https://www.canada.ca/en/services.html">More services</a></li>
</ul>
</div>
</div>
</nav>
<!-- EPIC BODY BEGIN -->
<nav role="navigation" id="wb-bc" class="" property="breadcrumb">
<h2 class="wb-inv">You are here:</h2>
<div class="container">
<div class="row">
<ol class="breadcrumb">
<li><a href="/eic/site/icgc.nsf/eng/home" title="Home">Home</a></li>
<li><a href="/eic/site/icgc.nsf/eng/h_07063.html" title="Industries and Business">Industries and Business</a></li>
<li><a href="/eic/site/ccc-rec.nsf/tpl-eng/../eng/home" >Canadian Company Capabilities</a></li>
</ol>
</div>
</div>
</nav>
</header>
<main id="wb-cont" role="main" property="mainContentOfPage" class="container">
<!-- End Header -->
<!-- Begin Body -->
<!-- Begin Body Title -->
<!-- End Body Title -->
<!-- Begin Body Head -->
<!-- End Body Head -->
<!-- Begin Body Content -->
<br>
<!-- Complete Profile -->
<!-- Company Information above tabbed area-->
<input id="showMore" type="hidden" value='more'/>
<input id="showLess" type="hidden" value='less'/>
<h1 id="wb-cont">
Company profile - Canadian Company Capabilities
</h1>
<div class="profileInfo hidden-print">
<ul class="list-inline">
<li><a href="cccSrch.do?lang=eng&profileId=&prtl=1&key.hitsPerPage=25&searchPage=%252Fapp%252Fccc%252Fsrch%252FcccBscSrch.do%253Flang%253Deng%2526amp%253Bprtl%253D1%2526amp%253Btagid%253D&V_SEARCH.scopeCategory=CCC.Root&V_SEARCH.depth=1&V_SEARCH.showStricts=false&V_SEARCH.sortSpec=title+asc&rstBtn.x=" class="btn btn-link">New Search</a> |</li>
<li><form name="searchForm" method="post" action="/app/ccc/srch/bscSrch.do">
<input type="hidden" name="lang" value="eng" />
<input type="hidden" name="profileId" value="" />
<input type="hidden" name="prtl" value="1" />
<input type="hidden" name="searchPage" value="%2Fapp%2Fccc%2Fsrch%2FcccBscSrch.do%3Flang%3Deng%26amp%3Bprtl%3D1%26amp%3Btagid%3D" />
<input type="hidden" name="V_SEARCH.scopeCategory" value="CCC.Root" />
<input type="hidden" name="V_SEARCH.depth" value="1" />
<input type="hidden" name="V_SEARCH.showStricts" value="false" />
<input id="repeatSearchBtn" class="btn btn-link" type="submit" value="Return to search results" />
</form></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=20222&V_DOCUMENT.docRank=20223&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492289561440&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=234567155079&profileId=&key.newSearchLabel=">Previous Company</a></li>
<li>| <a href="nvgt.do?V_SEARCH.docsStart=20224&V_DOCUMENT.docRank=20225&V_SEARCH.docsCount=3&lang=eng&prtl=1&sbPrtl=&profile=cmpltPrfl&V_TOKEN=1492289561440&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=%2fprfl.do&estblmntNo=234567064720&profileId=&key.newSearchLabel=">Next Company</a></li>
</ul>
</div>
<details>
<summary>Third-Party Information Liability Disclaimer</summary>
<p>Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.</p>
</details>
<h2>
Green Planet Electric
</h2>
<div class="row">
<div class="col-md-5">
<h2 class="h5 mrgn-bttm-0">Legal/Operating Name:</h2>
<p>Green Planet Electric</p>
<div class="mrgn-tp-md"></div>
<p class="mrgn-bttm-0" ><a href="http://gpetelectric.com/"
target="_blank" title="Website URL">http://gpetelectric.com/</a></p>
<p><a href="mailto:greenplanetelectric@yahoo.com" title="greenplanetelectric@yahoo.com">greenplanetelectric@yahoo.com</a></p>
</div>
<div class="col-md-4 mrgn-sm-sm">
<h2 class="h5 mrgn-bttm-0">Mailing Address:</h2>
<address class="mrgn-bttm-md">
1643 Spencely Dr.<br/>
OSHAWA,
Ontario<br/>
L1K 0B3
<br/>
</address>
<h2 class="h5 mrgn-bttm-0">Location Address:</h2>
<address class="mrgn-bttm-md">
1643 Spencely Dr.<br/>
OSHAWA,
Ontario<br/>
L1K 0B3
<br/>
</address>
<p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>:
(866) 531-8384
</p>
<p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>:
</p>
</div>
<div class="col-md-3 mrgn-tp-md">
<h2 class="wb-inv">Logo</h2>
<img class="img-responsive text-left" src="https://www.ic.gc.ca/app/ccc/srch/media?estblmntNo=234567129471&graphFileName=6_REV_WhiteBackgroun&applicationCode=AP&lang=eng" alt="Logo" />
</div>
</div>
<div class="row mrgn-tp-md mrgn-bttm-md">
<div class="col-md-12">
<h2 class="wb-inv">Company Profile</h2>
<br> MASTER ELECTRICIAN AND ELECTRICAL CONTRACTORS IN OSHAWA, DURHAM REGION, TORONTO AND THE GTA.
<br>Green Planet Electric offers electrical contracting, fire alarm wiring installation, inspection or verification, ESA (approved) certificates, lighting automation for the home and industrial settings including hotels, and other applications such as home theater wiring . We also work with general contractors for all kinds of projects, such as basement and kitchen renovations, additions, and also numerous commercial and institutional type projects.
<br>When you need quality electrical work done, anywhere in the Durham Region, Toronto and the GTA turn to Green Planet Electric. As an established electrical contractor in the Greater Toronto Area , Green Planet Electric has skillful and certified electricians with the training and experience necessary to complete your installation or repair with the speed, professionalism and efficiency you expect.
<br>Whether your propertys electrical system is brand new or completely outdated, Green Planet Electric will always work with you in mind to complete your project to your full satisfaction.
<br>Further, since our establishment more than 40 years ago, our list of satisfied customers are constantly increasing we look forward to welcoming you soon. <br>
</div>
</div>
<!-- <div class="wb-tabs ignore-session update-hash wb-eqht-off print-active"> -->
<div class="wb-tabs ignore-session">
<div class="tabpanels">
<details id="details-panel1">
<summary>
Full profile
</summary>
<!-- Tab 1 -->
<h2 class="wb-invisible">
Full profile
</h2>
<!-- Contact Information -->
<h3 class="page-header">
Contact information
</h3>
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Mark
Fraser
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
Director<br>
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(866) 531-8384
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
greenplanetelectric@yahoo.com
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Company Description -->
<h3 class="page-header">
Company description
</h3>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Country of Ownership:
</strong>
</div>
<div class="col-md-7">
Canada
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Year Established:
</strong>
</div>
<div class="col-md-7">
2009
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
No
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
238210 - Electrical Contractors and Other Wiring Installation Contractors
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Services
</div>
</div>
</section>
<!-- Products / Services / Licensing -->
<h3 class="page-header">
Product / Service / Licensing
</h3>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
Electrical Maintenance<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
Electrical Maintenance, Electrical Upgrade, Green Electrical Maintenance<br>
<br>
</div>
</div>
</section>
<p class="mrgn-tp-lg text-right small hidden-print">
<a href="#wb-cont">top of page</a>
</p>
<!-- Technology Profile -->
<!-- Market Profile -->
<!-- Sector Information -->
<details class="mrgn-tp-md mrgn-bttm-md">
<summary>
Third-Party Information Liability Disclaimer
</summary>
<p>
Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.
</p>
</details>
</details>
<details id="details-panel2">
<summary>
Contacts
</summary>
<h2 class="wb-invisible">
Contact information
</h2>
<!-- Contact Information -->
<section class="container-fluid">
<div class="row mrgn-tp-lg">
<div class="col-md-3">
<strong>
Mark
Fraser
</strong></div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Title:
</strong>
</div>
<div class="col-md-7">
Director<br>
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Telephone:
</strong>
</div>
<div class="col-md-7">
(866) 531-8384
</div>
</div>
<div class="row mrgn-lft-md">
<div class="col-md-5">
<strong>
Email:
</strong>
</div>
<div class="col-md-7">
greenplanetelectric@yahoo.com
</div>
</div>
</section>
</details>
<details id="details-panel3">
<summary>
Description
</summary>
<h2 class="wb-invisible">
Company description
</h2>
<section class="container-fluid">
<div class="row">
<div class="col-md-5">
<strong>
Country of Ownership:
</strong>
</div>
<div class="col-md-7">
Canada
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Year Established:
</strong>
</div>
<div class="col-md-7">
2009
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Exporting:
</strong>
</div>
<div class="col-md-7">
No
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Industry (NAICS):
</strong>
</div>
<div class="col-md-7">
238210 - Electrical Contractors and Other Wiring Installation Contractors
</div>
</div>
<div class="row">
<div class="col-md-5">
<strong>
Primary Business Activity:
</strong>
</div>
<div class="col-md-7">
Services
</div>
</div>
</section>
</details>
<details id="details-panel4">
<summary>
Products, services and licensing
</summary>
<h2 class="wb-invisible">
Product / Service / Licensing
</h2>
<section class="container-fluid">
<div class="row mrgn-bttm-md">
<div class="col-md-3">
<strong>
Service Name:
</strong>
</div>
<div class="col-md-9">
Electrical Maintenance<br>
</div>
</div>
<div class="row mrgn-bttm-md">
<div class="col-md-12">
Electrical Maintenance, Electrical Upgrade, Green Electrical Maintenance<br>
<br>
</div>
</div>
</section>
</details>
</div>
</div>
<div class="row">
<div class="col-md-12 text-right">
Last Update Date 2016-11-08
</div>
</div>
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
<!-- End Body Content -->
<!-- Begin Body Foot -->
<!-- End Body Foot -->
<!-- END MAIN TABLE -->
<!-- End body -->
<!-- Begin footer -->
<div class="row pagedetails">
<div class="col-sm-5 col-xs-12 datemod">
<dl id="wb-dtmd">
<dt class=" hidden-print">Date Modified:</dt>
<dd class=" hidden-print">
<span><time>2017-03-02</time></span>
</dd>
</dl>
</div>
<div class="clear visible-xs"></div>
<div class="col-sm-4 col-xs-6">
</div>
<div class="col-sm-3 col-xs-6 text-right">
</div>
<div class="clear visible-xs"></div>
</div>
</main>
<footer role="contentinfo" id="wb-info">
<nav role="navigation" class="container wb-navcurr">
<h2 class="wb-inv">About government</h2>
<!-- EPIC FOOTER BEGIN -->
<!-- EPI-11638 Contact us -->
<ul class="list-unstyled colcount-sm-2 colcount-md-3">
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07026.html#pageid=E048-H00000&from=Industries">Contact us</a></li>
<li><a href="https://www.canada.ca/en/government/dept.html">Departments and agencies</a></li>
<li><a href="https://www.canada.ca/en/government/publicservice.html">Public service and military</a></li>
<li><a href="https://www.canada.ca/en/news.html">News</a></li>
<li><a href="https://www.canada.ca/en/government/system/laws.html">Treaties, laws and regulations</a></li>
<li><a href="https://www.canada.ca/en/transparency/reporting.html">Government-wide reporting</a></li>
<li><a href="http://pm.gc.ca/eng">Prime Minister</a></li>
<li><a href="https://www.canada.ca/en/government/system.html">How government works</a></li>
<li><a href="http://open.canada.ca/en/">Open government</a></li>
</ul>
</nav>
<div class="brand">
<div class="container">
<div class="row">
<nav class="col-md-10 ftr-urlt-lnk">
<h2 class="wb-inv">About this site</h2>
<ul>
<li><a href="https://www.canada.ca/en/social.html">Social media</a></li>
<li><a href="https://www.canada.ca/en/mobile.html">Mobile applications</a></li>
<li><a href="http://www1.canada.ca/en/newsite.html">About Canada.ca</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html">Terms and conditions</a></li>
<li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html#p1">Privacy</a></li>
</ul>
</nav>
<div class="col-xs-6 visible-sm visible-xs tofpg">
<a href="#wb-cont">Top of Page <span class="glyphicon glyphicon-chevron-up"></span></a>
</div>
<div class="col-xs-6 col-md-2 text-right">
<object type="image/svg+xml" tabindex="-1" role="img" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/wmms-blk.svg" aria-label="Symbol of the Government of Canada"></object>
</div>
</div>
</div>
</div>
</footer>
<!--[if gte IE 9 | !IE ]><!-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/wet-boew.min.js"></script>
<!--<![endif]-->
<!--[if lt IE 9]>
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew2.min.js"></script>
<![endif]-->
<script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/theme.min.js"></script>
<!-- EPI-10519 -->
<span class="wb-sessto"
data-wb-sessto='{"inactivity": 1800000, "reactionTime": 180000, "sessionalive": 1800000, "logouturl": "/app/ccc/srch/cccSrch.do?lang=eng&prtl=1"}'></span>
<script src="/eic/home.nsf/js/jQuery.externalOpensInNewWindow.js"></script>
<!-- EPI-11190 - Webtrends -->
<script src="/eic/home.nsf/js/webtrends.js"></script>
<script>var endTime = new Date();</script>
<noscript>
<div><img alt="" id="DCSIMG" width="1" height="1" src="//wt-sdc.ic.gc.ca/dcs6v67hwe0ei7wsv8g9fv50d_3k6i/njs.gif?dcsuri=/nojavascript&WT.js=No&WT.tv=9.4.0&dcssip=www.ic.gc.ca"/></div>
</noscript>
<!-- /Webtrends -->
<!-- JS deps -->
<script src="/eic/home.nsf/js/jquery.imagesloaded.js"></script>
<!-- EPI-11262 - Util JS -->
<script src="/eic/home.nsf/js/_WET_4-0_utils_canada.min.js"></script>
<!-- EPI-11383 -->
<script src="/eic/home.nsf/js/jQuery.icValidationErrors.js"></script>
<span style="display:none;" id='app-info' data-project-groupid='' data-project-artifactid='' data-project-version='' data-project-build-timestamp='' data-issue-tracking='' data-scm-sha1='' data-scm-sha1-abbrev='' data-scm-branch='' data-scm-commit-date=''></span>
</body></html>
<!-- End Footer -->
<!--
- Artifact ID: CBW - IMBS - CCC Search WAR
- Group ID: ca.gc.ic.strategis.imbs.ccc.search
- Version: 3.26
- Built-By: bamboo
- Build Timestamp: 2017-03-02T21:29:28Z
-->
|
clean/Linux-x86_64-4.04.2-2.0.5/released/8.9.1/metacoq-checker/1.0~alpha2+8.10.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>metacoq-checker: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.9.1 / metacoq-checker - 1.0~alpha2+8.10</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
metacoq-checker
<small>
1.0~alpha2+8.10
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-23 15:45:32 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-23 15:45:32 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.9.1 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.04.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.04.2 Official 4.04.2 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "matthieu.sozeau@inria.fr"
homepage: "https://metacoq.github.io/metacoq"
dev-repo: "git+https://github.com/MetaCoq/metacoq.git#coq-8.10"
bug-reports: "https://github.com/MetaCoq/metacoq/issues"
authors: ["Abhishek Anand <aa755@cs.cornell.edu>"
"Simon Boulier <simon.boulier@inria.fr>"
"Cyril Cohen <cyril.cohen@inria.fr>"
"Yannick Forster <forster@ps.uni-saarland.de>"
"Fabian Kunze <fkunze@fakusb.de>"
"Gregory Malecha <gmalecha@gmail.com>"
"Matthieu Sozeau <matthieu.sozeau@inria.fr>"
"Nicolas Tabareau <nicolas.tabareau@inria.fr>"
"Théo Winterhalter <theo.winterhalter@inria.fr>"
]
license: "MIT"
build: [
["sh" "./configure.sh"]
[make "-j%{jobs}%" "checker"]
]
install: [
[make "-C" "checker" "install"]
]
depends: [
"ocaml" {> "4.02.3"}
"coq" {>= "8.10" & < "8.11~"}
"coq-equations" { >= "1.2" }
"coq-metacoq-template" {= version}
]
synopsis: "Specification of Coq's type theory and reference checker implementation"
description: """
MetaCoq is a meta-programming framework for Coq.
The Checker module provides a complete specification of Coq's typing and conversion
relation along with a reference type-checker that is extracted to a pluging.
This provides a command: `MetaCoq Check [global_reference]` that can be used
to typecheck a Coq definition using the verified type-checker.
"""
# url {
# src: "https://github.com/MetaCoq/metacoq/archive/v2.1-beta3.tar.gz"
# checksum: "md5=e81b8ecabef788a10337a39b095d54f3"
# }
url {
src: "https://github.com/MetaCoq/metacoq/archive/v1.0-alpha2-8.10.tar.gz"
checksum: "sha256=94156cb9397b44915c9217a435a812cabc9651684cd229d5069b34332d0792a2"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-metacoq-checker.1.0~alpha2+8.10 coq.8.9.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.9.1).
The following dependencies couldn't be met:
- coq-metacoq-checker -> coq >= 8.10 -> ocaml >= 4.05.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-metacoq-checker.1.0~alpha2+8.10</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.05.0-2.0.6/released/8.10.1/param-pi/8.5.0.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>param-pi: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.10.1 / param-pi - 8.5.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
param-pi
<small>
8.5.0
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-08-05 02:20:17 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-08-05 02:20:17 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.10.1 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "matej.kosik@inria.fr"
homepage: "https://github.com/coq-contribs/param-pi"
license: "LGPL 2"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/ParamPi"]
depends: [
"ocaml"
"coq" {>= "8.5" & < "8.6~"}
]
tags: [ "keyword:pi calculus" "category:Computer Science/Lambda Calculi" "date:1998-09-30" ]
authors: [ "Loïc Henry-Gréard <lhenrygr@cma.inria.fr>" ]
bug-reports: "https://github.com/coq-contribs/param-pi/issues"
dev-repo: "git+https://github.com/coq-contribs/param-pi.git"
synopsis: "Coding of a typed monadic pi-calculus using parameters for free names"
description: """
This development contains the specification for a monadic
pi-calculus using the same coding method for names than
J. Mc Kinna and R. Pollack used for PTS in LEGO:
"Some Lambda Calculus and Type Theory Formalized".
The basic, monadic calculus encoded here has a type system
restraining the direction of communication for processes' names.
A number of lemmas usefull for doing proofs on that coding
are included, and subject reduction properties for each kind
of transition is made as an example of actually using the
coding to mechanize proofs on the pi-calculus."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/param-pi/archive/v8.5.0.tar.gz"
checksum: "md5=ac8b20571cba62795c908347bc6c5932"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-param-pi.8.5.0 coq.8.10.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.10.1).
The following dependencies couldn't be met:
- coq-param-pi -> coq < 8.6~ -> ocaml < 4.03.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-param-pi.8.5.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.04.2-2.0.5/released/8.7.1+1/tortoise-hare-algorithm/8.9.0.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>tortoise-hare-algorithm: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.1+1 / tortoise-hare-algorithm - 8.9.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
tortoise-hare-algorithm
<small>
8.9.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-03-06 11:16:41 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-03-06 11:16:41 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 2 Virtual package relying on perl
coq 8.7.1+1 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.04.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.04.2 Official 4.04.2 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/tortoise-hare-algorithm"
license: "Unknown"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/TortoiseHareAlgorithm"]
depends: [
"ocaml"
"coq" {>= "8.9" & < "8.10~"}
]
tags: [
"keyword: program verification"
"keyword: paths"
"keyword: cycle detection"
"keyword: graphs"
"keyword: graph theory"
"keyword: finite sets"
"keyword: Floyd"
"category: Computer Science/Decision Procedures and Certified Algorithms/Correctness proofs of algorithms"
"date: 2007-02"
]
authors: [
"Jean-Christophe Filliâtre"
]
bug-reports: "https://github.com/coq-contribs/tortoise-hare-algorithm/issues"
dev-repo: "git+https://github.com/coq-contribs/tortoise-hare-algorithm.git"
synopsis: "Tortoise and the hare algorithm"
description: """
Correctness proof of Floyd's cycle-finding algorithm, also known as
the "tortoise and the hare"-algorithm.
See http://en.wikipedia.org/wiki/Floyd's_cycle-finding_algorithm"""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/tortoise-hare-algorithm/archive/v8.9.0.tar.gz"
checksum: "md5=648b8b3ffe46ea6c1299b87b3a963c6d"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-tortoise-hare-algorithm.8.9.0 coq.8.7.1+1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.7.1+1).
The following dependencies couldn't be met:
- coq-tortoise-hare-algorithm -> coq >= 8.9 -> ocaml >= 4.05.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-tortoise-hare-algorithm.8.9.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.05.0-2.0.6/released/8.8.1/coqeal/1.0.4.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>coqeal: 4 m 41 s</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.8.1 / coqeal - 1.0.4</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
coqeal
<small>
1.0.4
<span class="label label-success">4 m 41 s</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-09-01 14:15:30 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-09-01 14:15:30 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.12 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.8.1 Formal proof management system.
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Cyril Cohen <cyril.cohen@inria.fr>"
homepage: "https://github.com/CoqEAL/CoqEAL"
bug-reports: "https://github.com/CoqEAL/CoqEAL/issues"
dev-repo: "git+https://github.com/CoqEAL/CoqEAL.git"
license: "MIT"
build: [
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
depends: [
"coq" {>= "8.7" & < "8.13~"}
"coq-bignums"
"coq-paramcoq" {>= "1.1.1"}
"coq-mathcomp-multinomials" {>= "1.5.1" & < "1.7~"}
"coq-mathcomp-algebra" {>= "1.11.0" & < "1.12~"}
]
tags: [
"keyword:effective algebra"
"keyword:elementary divisor rings"
"keyword:Smith normal form"
"keyword:mathematical components"
"keyword:Bareiss"
"keyword:Karatsuba"
"keyword:refinements"
"logpath:CoqEAL"
]
authors: [
"Guillaume Cano"
"Cyril Cohen"
"Maxime Dénès"
"Anders Mörtberg"
"Vincent Siles"
]
synopsis: "CoqEAL - The Coq Effective Algebra Library"
description: """
This library contains a subset of the work that was developed in the context of the ForMath european project (2009-2013). It has two parts:
- theory (module CoqEAL_theory), which contains formal developments in algebra and optimized algorithms on mathcomp data structures.
- refinements (module CoqEAL_refinements), which is a framework to ease change of data representation during a proof.
"""
url {
src: "https://github.com/CoqEAL/CoqEAL/archive/1.0.4.tar.gz"
checksum: "sha512=d3d4cdc2975dbc237c59ff23f99e3fff2fc88fc0330aaeb966025457aae4c094c8eff91b562b8f6944ff12f4db649b681e2f378543f1ed6b2747cb8e77631c1d"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-coqeal.1.0.4 coq.8.8.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 2h opam install -y --deps-only coq-coqeal.1.0.4 coq.8.8.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>12 m 43 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 2h opam install -y -v coq-coqeal.1.0.4 coq.8.8.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>4 m 41 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 44 M</p>
<ul>
<li>14 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/refinements.vo</code></li>
<li>12 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/param.vo</code></li>
<li>2 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/hpoly.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/multipoly.vo</code></li>
<li>888 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/seqmx.vo</code></li>
<li>677 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/bareiss_eff.vo</code></li>
<li>619 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/kaplansky.vo</code></li>
<li>603 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/dvdring.vo</code></li>
<li>514 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/seqmx.glob</code></li>
<li>500 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/dvdring.glob</code></li>
<li>463 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/kaplansky.glob</code></li>
<li>447 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/multipoly.glob</code></li>
<li>336 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/seqpoly.vo</code></li>
<li>324 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/polydvd.vo</code></li>
<li>320 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/similar.vo</code></li>
<li>310 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/smithpid.vo</code></li>
<li>304 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/mxstructure.vo</code></li>
<li>297 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/hpoly.glob</code></li>
<li>281 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/fpmod.vo</code></li>
<li>279 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/smith.vo</code></li>
<li>277 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/edr.vo</code></li>
<li>257 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/coherent.vo</code></li>
<li>253 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/binint.vo</code></li>
<li>246 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/polydvd.glob</code></li>
<li>221 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/stronglydiscrete.vo</code></li>
<li>219 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/binetcauchy.vo</code></li>
<li>213 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/stronglydiscrete.glob</code></li>
<li>212 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/rational.vo</code></li>
<li>202 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/fpmod.glob</code></li>
<li>201 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/seqpoly.glob</code></li>
<li>188 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/bareiss_dvdring.vo</code></li>
<li>183 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/bareiss.vo</code></li>
<li>180 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/poly_div.vo</code></li>
<li>177 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/seqmx_complements.vo</code></li>
<li>176 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/binrat.vo</code></li>
<li>174 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/examples/irred.vo</code></li>
<li>174 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/ssrcomplements.vo</code></li>
<li>173 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/mxstructure.glob</code></li>
<li>167 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/similar.glob</code></li>
<li>165 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/edr.glob</code></li>
<li>164 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/coherent.glob</code></li>
<li>155 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/binint.glob</code></li>
<li>151 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/minor.vo</code></li>
<li>147 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/binrat.glob</code></li>
<li>144 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/karatsuba.vo</code></li>
<li>143 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/binetcauchy.glob</code></li>
<li>136 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/smithpid.glob</code></li>
<li>136 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/atomic_operations.vo</code></li>
<li>133 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/bareiss.glob</code></li>
<li>129 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/binnat.vo</code></li>
<li>127 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/bareiss_eff.glob</code></li>
<li>120 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/smith.glob</code></li>
<li>111 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/rational.glob</code></li>
<li>105 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/toomcook.vo</code></li>
<li>104 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/bareiss_dvdring.glob</code></li>
<li>89 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/gauss.vo</code></li>
<li>89 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/binnat.glob</code></li>
<li>89 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/ssrcomplements.glob</code></li>
<li>83 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/rank.vo</code></li>
<li>79 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/multipoly.v</code></li>
<li>78 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/minor.glob</code></li>
<li>77 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/karatsuba.vo</code></li>
<li>76 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/refinements.glob</code></li>
<li>74 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/strassen.vo</code></li>
<li>71 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/dvdring.v</code></li>
<li>70 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/examples/irred.glob</code></li>
<li>67 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/binord.vo</code></li>
<li>64 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/poly_op.vo</code></li>
<li>61 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/karatsuba.glob</code></li>
<li>60 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/atomic_operations.glob</code></li>
<li>56 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/boolF2.vo</code></li>
<li>55 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/seqmx.v</code></li>
<li>55 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/seqmx_complements.glob</code></li>
<li>55 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/poly_div.glob</code></li>
<li>55 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/trivial_seq.vo</code></li>
<li>51 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/ssralg_ring_tac.vo</code></li>
<li>50 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/hrel.vo</code></li>
<li>46 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/pos.vo</code></li>
<li>45 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/bareiss_eff.v</code></li>
<li>34 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/toomcook.glob</code></li>
<li>33 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/hpoly.v</code></li>
<li>33 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/karatsuba.glob</code></li>
<li>30 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/kaplansky.v</code></li>
<li>30 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/fpmod.v</code></li>
<li>29 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/polydvd.v</code></li>
<li>28 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/rank.glob</code></li>
<li>27 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/strassen.glob</code></li>
<li>27 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/gauss.glob</code></li>
<li>25 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/stronglydiscrete.v</code></li>
<li>24 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/seqpoly.v</code></li>
<li>24 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/mxstructure.v</code></li>
<li>23 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/binord.glob</code></li>
<li>21 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/binrat.v</code></li>
<li>21 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/similar.v</code></li>
<li>21 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/coherent.v</code></li>
<li>20 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/edr.v</code></li>
<li>19 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/binetcauchy.v</code></li>
<li>17 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/binint.v</code></li>
<li>17 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/refinements.v</code></li>
<li>15 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/binnat.v</code></li>
<li>15 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/bareiss.v</code></li>
<li>14 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/rational.v</code></li>
<li>14 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/bareiss_dvdring.v</code></li>
<li>14 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/smithpid.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/smith.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/hrel.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/boolF2.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/ssrcomplements.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/trivial_seq.glob</code></li>
<li>11 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/examples/irred.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/seqmx_complements.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/minor.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/atomic_operations.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/pos.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/param.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/poly_div.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/ssralg_ring_tac.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/karatsuba.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/poly_op.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/binord.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/strassen.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/toomcook.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/boolF2.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/rank.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/gauss.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/param.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/hrel.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/trivial_seq.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/karatsuba.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/pos.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/theory/ssralg_ring_tac.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/CoqEAL/refinements/poly_op.v</code></li>
</ul>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-coqeal.1.0.4</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.10.0-2.0.6/released/8.12.0/stalmarck/8.6.0.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>stalmarck: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.12.0 / stalmarck - 8.6.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
stalmarck
<small>
8.6.0
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-08-26 04:03:56 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-08-26 04:03:56 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.12.0 Formal proof management system
num 1.3 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.10.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.10.0 Official release 4.10.0
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-community/stalmarck"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Stalmarck"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
]
tags: [ "keyword: boolean formula" "keyword: tautology checker" "category: Computer Science/Decision Procedures and Certified Algorithms/Decision procedures" "category: Miscellaneous/Extracted Programs/Decision procedures" "date: 2000" ]
authors: [ "Pierre Letouzey" "Laurent Théry" ]
bug-reports: "https://github.com/coq-community/stalmarck/issues"
dev-repo: "git+https://github.com/coq-community/stalmarck.git"
synopsis: "Proof of Stalmarck's algorithm"
description: """
A two-level approach to prove tautology
using Stalmarck's algorithm."""
flags: light-uninstall
url {
src: "https://github.com/coq-community/stalmarck/archive/v8.6.0.tar.gz"
checksum: "md5=5d5b5316fd65d219d53014f465dfa340"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-stalmarck.8.6.0 coq.8.12.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.12.0).
The following dependencies couldn't be met:
- coq-stalmarck -> coq < 8.7~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-stalmarck.8.6.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
sound/0340_Aspirin_sf2_file.html
|
surikov/webaudiofontdata
|
<html>
<head>
<script src='https://surikov.github.io/webaudiofont/npm/dist/WebAudioFontPlayer.js'></script>
<script src='0340_Aspirin_sf2_file.js'></script>
<script>
var selectedPreset=_tone_0340_Aspirin_sf2_file;
var AudioContextFunc = window.AudioContext || window.webkitAudioContext;
var audioContext = new AudioContextFunc();
var player=new WebAudioFontPlayer();
player.adjustPreset(audioContext,selectedPreset);
function startWaveTableNow(pitch) {
var audioBufferSourceNode = player.queueWaveTable(audioContext, audioContext.destination, selectedPreset, audioContext.currentTime + 0, pitch, 0.4);
var audioBufferSourceNode = player.queueWaveTable(audioContext, audioContext.destination, selectedPreset, audioContext.currentTime + 0.4, pitch, 0.2);
var audioBufferSourceNode = player.queueWaveTable(audioContext, audioContext.destination, selectedPreset, audioContext.currentTime + 0.6, pitch, 0.2);
var audioBufferSourceNode = player.queueWaveTable(audioContext, audioContext.destination, selectedPreset, audioContext.currentTime + 0.8, pitch, 4);
}
</script>
</head>
<body>
<p>file: 0340_Aspirin_sf2_file.js<br/>
variable: _tone_0340_Aspirin_sf2_file<br/>
MIDI: 34. Electric Bass (pick): Bass</p>
<p><a href='javascript:player.cancelQueue(audioContext);'>stop</a></p>
<p>chords:
<a href='javascript:startWaveTableNow(4+12*4+0); startWaveTableNow(9+12*4+0); startWaveTableNow(2+12*5+2); startWaveTableNow(7+12*5+2); startWaveTableNow(11+12*5+1); startWaveTableNow(4+12*6+0);'>Am</a>
| <a href='javascript:startWaveTableNow(4+12*4+0); startWaveTableNow(9+12*4+3); startWaveTableNow(2+12*5+2); startWaveTableNow(7+12*5+0); startWaveTableNow(11+12*5+1); startWaveTableNow(4+12*6+0);'>C</a>
| <a href='javascript:startWaveTableNow(4+12*4+0); startWaveTableNow(9+12*4+2); startWaveTableNow(2+12*5+2); startWaveTableNow(7+12*5+1); startWaveTableNow(11+12*5+0); startWaveTableNow(4+12*6+0);'>E</a>
| <a href='javascript:startWaveTableNow(4+12*4+3); startWaveTableNow(9+12*4+2); startWaveTableNow(2+12*5+0); startWaveTableNow(7+12*5+0); startWaveTableNow(11+12*5+0); startWaveTableNow(4+12*6+3);'>G</a>
</p>
<p>1.
<a href='javascript:startWaveTableNow(0+12*1);'>C</a>
<a href='javascript:startWaveTableNow(1+12*1);'>C#</a>
<a href='javascript:startWaveTableNow(2+12*1);'>D</a>
<a href='javascript:startWaveTableNow(3+12*1);'>D#</a>
<a href='javascript:startWaveTableNow(4+12*1);'>E</a>
<a href='javascript:startWaveTableNow(5+12*1);'>F</a>
<a href='javascript:startWaveTableNow(6+12*1);'>F#</a>
<a href='javascript:startWaveTableNow(7+12*1);'>G</a>
<a href='javascript:startWaveTableNow(8+12*1);'>G#</a>
<a href='javascript:startWaveTableNow(9+12*1);'>A</a>
<a href='javascript:startWaveTableNow(10+12*1);'>A#</a>
<a href='javascript:startWaveTableNow(11+12*1);'>B</a>
</p>
<p>2.
<a href='javascript:startWaveTableNow(0+12*2);'>C</a>
<a href='javascript:startWaveTableNow(1+12*2);'>C#</a>
<a href='javascript:startWaveTableNow(2+12*2);'>D</a>
<a href='javascript:startWaveTableNow(3+12*2);'>D#</a>
<a href='javascript:startWaveTableNow(4+12*2);'>E</a>
<a href='javascript:startWaveTableNow(5+12*2);'>F</a>
<a href='javascript:startWaveTableNow(6+12*2);'>F#</a>
<a href='javascript:startWaveTableNow(7+12*2);'>G</a>
<a href='javascript:startWaveTableNow(8+12*2);'>G#</a>
<a href='javascript:startWaveTableNow(9+12*2);'>A</a>
<a href='javascript:startWaveTableNow(10+12*2);'>A#</a>
<a href='javascript:startWaveTableNow(11+12*2);'>B</a>
</p>
<p>3.
<a href='javascript:startWaveTableNow(0+12*3);'>C</a>
<a href='javascript:startWaveTableNow(1+12*3);'>C#</a>
<a href='javascript:startWaveTableNow(2+12*3);'>D</a>
<a href='javascript:startWaveTableNow(3+12*3);'>D#</a>
<a href='javascript:startWaveTableNow(4+12*3);'>E</a>
<a href='javascript:startWaveTableNow(5+12*3);'>F</a>
<a href='javascript:startWaveTableNow(6+12*3);'>F#</a>
<a href='javascript:startWaveTableNow(7+12*3);'>G</a>
<a href='javascript:startWaveTableNow(8+12*3);'>G#</a>
<a href='javascript:startWaveTableNow(9+12*3);'>A</a>
<a href='javascript:startWaveTableNow(10+12*3);'>A#</a>
<a href='javascript:startWaveTableNow(11+12*3);'>B</a>
</p>
<p>4.
<a href='javascript:startWaveTableNow(0+12*4);'>C</a>
<a href='javascript:startWaveTableNow(1+12*4);'>C#</a>
<a href='javascript:startWaveTableNow(2+12*4);'>D</a>
<a href='javascript:startWaveTableNow(3+12*4);'>D#</a>
<a href='javascript:startWaveTableNow(4+12*4);'>E</a>
<a href='javascript:startWaveTableNow(5+12*4);'>F</a>
<a href='javascript:startWaveTableNow(6+12*4);'>F#</a>
<a href='javascript:startWaveTableNow(7+12*4);'>G</a>
<a href='javascript:startWaveTableNow(8+12*4);'>G#</a>
<a href='javascript:startWaveTableNow(9+12*4);'>A</a>
<a href='javascript:startWaveTableNow(10+12*4);'>A#</a>
<a href='javascript:startWaveTableNow(11+12*4);'>B</a>
</p>
<p>5.
<a href='javascript:startWaveTableNow(0+12*5);'>C</a>
<a href='javascript:startWaveTableNow(1+12*5);'>C#</a>
<a href='javascript:startWaveTableNow(2+12*5);'>D</a>
<a href='javascript:startWaveTableNow(3+12*5);'>D#</a>
<a href='javascript:startWaveTableNow(4+12*5);'>E</a>
<a href='javascript:startWaveTableNow(5+12*5);'>F</a>
<a href='javascript:startWaveTableNow(6+12*5);'>F#</a>
<a href='javascript:startWaveTableNow(7+12*5);'>G</a>
<a href='javascript:startWaveTableNow(8+12*5);'>G#</a>
<a href='javascript:startWaveTableNow(9+12*5);'>A</a>
<a href='javascript:startWaveTableNow(10+12*5);'>A#</a>
<a href='javascript:startWaveTableNow(11+12*5);'>B</a>
</p>
<p>6.
<a href='javascript:startWaveTableNow(0+12*6);'>C</a>
<a href='javascript:startWaveTableNow(1+12*6);'>C#</a>
<a href='javascript:startWaveTableNow(2+12*6);'>D</a>
<a href='javascript:startWaveTableNow(3+12*6);'>D#</a>
<a href='javascript:startWaveTableNow(4+12*6);'>E</a>
<a href='javascript:startWaveTableNow(5+12*6);'>F</a>
<a href='javascript:startWaveTableNow(6+12*6);'>F#</a>
<a href='javascript:startWaveTableNow(7+12*6);'>G</a>
<a href='javascript:startWaveTableNow(8+12*6);'>G#</a>
<a href='javascript:startWaveTableNow(9+12*6);'>A</a>
<a href='javascript:startWaveTableNow(10+12*6);'>A#</a>
<a href='javascript:startWaveTableNow(11+12*6);'>B</a>
</p>
<p>7.
<a href='javascript:startWaveTableNow(0+12*7);'>C</a>
<a href='javascript:startWaveTableNow(1+12*7);'>C#</a>
<a href='javascript:startWaveTableNow(2+12*7);'>D</a>
<a href='javascript:startWaveTableNow(3+12*7);'>D#</a>
<a href='javascript:startWaveTableNow(4+12*7);'>E</a>
<a href='javascript:startWaveTableNow(5+12*7);'>F</a>
<a href='javascript:startWaveTableNow(6+12*7);'>F#</a>
<a href='javascript:startWaveTableNow(7+12*7);'>G</a>
<a href='javascript:startWaveTableNow(8+12*7);'>G#</a>
<a href='javascript:startWaveTableNow(9+12*7);'>A</a>
<a href='javascript:startWaveTableNow(10+12*7);'>A#</a>
<a href='javascript:startWaveTableNow(11+12*7);'>B</a>
</p>
<p>8.
<a href='javascript:startWaveTableNow(0+12*8);'>C</a>
<a href='javascript:startWaveTableNow(1+12*8);'>C#</a>
<a href='javascript:startWaveTableNow(2+12*8);'>D</a>
<a href='javascript:startWaveTableNow(3+12*8);'>D#</a>
<a href='javascript:startWaveTableNow(4+12*8);'>E</a>
<a href='javascript:startWaveTableNow(5+12*8);'>F</a>
<a href='javascript:startWaveTableNow(6+12*8);'>F#</a>
<a href='javascript:startWaveTableNow(7+12*8);'>G</a>
<a href='javascript:startWaveTableNow(8+12*8);'>G#</a>
<a href='javascript:startWaveTableNow(9+12*8);'>A</a>
<a href='javascript:startWaveTableNow(10+12*8);'>A#</a>
<a href='javascript:startWaveTableNow(11+12*8);'>B</a>
</p>
</body>
</html>
|
v4/user-agent-detail/76/59/76594947-fac8-45b0-8263-b6f75228de55.html
|
ThaDafinser/UserAgentParserComparison
|
<html>
<head>
<title>User agent detail - Mozilla/5.0 (compatible; MSIE 9.0; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; HUAWEI; W1-U00)</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="section">
<h1 class="header center orange-text">User agent detail</h1>
<div class="row center">
<h5 class="header light">
Mozilla/5.0 (compatible; MSIE 9.0; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; HUAWEI; W1-U00)
</h5>
</div>
</div>
<div class="section">
<table class="striped"><tr><th></th><th colspan="3">General</th><th colspan="5">Device</th><th colspan="3">Bot</th><th colspan="2"></th></tr><tr><th>Provider</th><th>Browser</th><th>Engine</th><th>OS</th><th>Brand</th><th>Model</th><th>Type</th><th>Is mobile</th><th>Is touch</th><th>Is bot</th><th>Name</th><th>Type</th><th>Parse time</th><th>Actions</th></tr><tr><th colspan="14" class="green lighten-3">Source result (test suite)</th></tr><tr><td>piwik/device-detector<br /><small>/Tests/fixtures/smartphone-1.yml</small></td><td>IE Mobile 9.0</td><td>Windows Phone 7.5</td><td>Trident 5.0</td><td style="border-left: 1px solid #555">Huawei</td><td>W1-U00</td><td>smartphone</td><td>yes</td><td></td><td style="border-left: 1px solid #555"></td><td></td><td></td><td></td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-test">Detail</a>
<!-- Modal Structure -->
<div id="modal-test" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>Testsuite result detail</h4>
<p><pre><code class="php">Array
(
[user_agent] => Mozilla/5.0 (compatible; MSIE 9.0; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; HUAWEI; W1-U00)
[os] => Array
(
[name] => Windows Phone
[short_name] => WPH
[version] => 7.5
[platform] =>
)
[client] => Array
(
[type] => browser
[name] => IE Mobile
[short_name] => IM
[version] => 9.0
[engine] => Trident
)
[device] => Array
(
[type] => smartphone
[brand] => HU
[model] => W1-U00
)
[os_family] => Windows Mobile
[browser_family] => Internet Explorer
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><th colspan="14" class="green lighten-3">Providers</th></tr><tr><td>BrowscapPhp<br /><small>6012</small></td><td>IEMobile 9.0</td><td>Trident 5.0</td><td>WinPhone7.5 7.5</td><td style="border-left: 1px solid #555"></td><td></td><td>Mobile Phone</td><td>yes</td><td>yes</td><td style="border-left: 1px solid #555"></td><td></td><td></td><td>0.032</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-215ac98d-ccf8-4615-916e-5a819d6a59c9">Detail</a>
<!-- Modal Structure -->
<div id="modal-215ac98d-ccf8-4615-916e-5a819d6a59c9" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>BrowscapPhp result detail</h4>
<p><pre><code class="php">stdClass Object
(
[browser_name_regex] => /^mozilla\/5\.0 \(compatible.*; msie 9\.0.*;.*windows phone os 7\.5.* trident\/5\.0; iemobile.9\.0.*$/
[browser_name_pattern] => mozilla/5.0 (compatible*; msie 9.0*;*windows phone os 7.5* trident/5.0; iemobile?9.0*
[parent] => IEMobile 9.0
[comment] => IEMobile 9.0
[browser] => IEMobile
[browser_type] => Browser
[browser_bits] => 32
[browser_maker] => Microsoft Corporation
[browser_modus] => unknown
[version] => 9.0
[majorver] => 9
[minorver] => 0
[platform] => WinPhone7.5
[platform_version] => 7.5
[platform_description] => Windows Phone OS 7.5
[platform_bits] => 32
[platform_maker] => Microsoft Corporation
[alpha] =>
[beta] =>
[win16] =>
[win32] =>
[win64] =>
[frames] => 1
[iframes] => 1
[tables] => 1
[cookies] => 1
[backgroundsounds] => 1
[javascript] => 1
[vbscript] => 1
[javaapplets] => 1
[activexcontrols] => 1
[ismobiledevice] => 1
[istablet] =>
[issyndicationreader] =>
[crawler] =>
[cssversion] => 3
[aolversion] => 0
[device_name] => general Mobile Phone
[device_maker] => unknown
[device_type] => Mobile Phone
[device_pointing_method] => touchscreen
[device_code_name] => general Mobile Phone
[device_brand_name] => unknown
[renderingengine_name] => Trident
[renderingengine_version] => 5.0
[renderingengine_description] => For Internet Explorer since version 4.0 and embedded WebBrowser controls (such as Internet Explorer shells, Maxthon and some media players).
[renderingengine_maker] => Microsoft Corporation
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>DonatjUAParser<br /><small>v0.5.0</small></td><td>IEMobile 9.0</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-f1436016-fdf1-4aea-b4be-1d7c99ab0661">Detail</a>
<!-- Modal Structure -->
<div id="modal-f1436016-fdf1-4aea-b4be-1d7c99ab0661" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>DonatjUAParser result detail</h4>
<p><pre><code class="php">Array
(
[platform] => Windows Phone
[browser] => IEMobile
[version] => 9.0
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>NeutrinoApiCom<br /><small></small></td><td>IE Mobile 9.0</td><td><i class="material-icons">close</i></td><td>Windows 7.5</td><td style="border-left: 1px solid #555">Generic</td><td>Windows Phone 7.5</td><td>mobile-browser</td><td>yes</td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0.18302</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-9b0fa449-ec1b-40c8-8b1c-9486eb3b9cbc">Detail</a>
<!-- Modal Structure -->
<div id="modal-9b0fa449-ec1b-40c8-8b1c-9486eb3b9cbc" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>NeutrinoApiCom result detail</h4>
<p><pre><code class="php">stdClass Object
(
[mobile_screen_height] => 800
[is_mobile] => 1
[type] => mobile-browser
[mobile_brand] => Generic
[mobile_model] => Windows Phone 7.5
[version] => 9.0
[is_android] =>
[browser_name] => IE Mobile
[operating_system_family] => Windows
[operating_system_version] => 7.5
[is_ios] =>
[producer] => Microsoft Corporation.
[operating_system] => Windows Phone 7
[mobile_screen_width] => 480
[mobile_browser] => IEMobile
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>PiwikDeviceDetector<br /><small>3.5.2</small></td><td>IE Mobile 9.0</td><td>Trident </td><td>Windows Phone 7.5</td><td style="border-left: 1px solid #555">Huawei</td><td>W1-U00</td><td>smartphone</td><td>yes</td><td></td><td style="border-left: 1px solid #555"></td><td></td><td></td><td>0.007</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-21638055-738d-46ba-a1b1-f5114bc26475">Detail</a>
<!-- Modal Structure -->
<div id="modal-21638055-738d-46ba-a1b1-f5114bc26475" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>PiwikDeviceDetector result detail</h4>
<p><pre><code class="php">Array
(
[client] => Array
(
[type] => browser
[name] => IE Mobile
[short_name] => IM
[version] => 9.0
[engine] => Trident
)
[operatingSystem] => Array
(
[name] => Windows Phone
[short_name] => WPH
[version] => 7.5
[platform] =>
)
[device] => Array
(
[brand] => HU
[brandName] => Huawei
[model] => W1-U00
[device] => 1
[deviceName] => smartphone
)
[bot] =>
[extra] => Array
(
[isBot] =>
[isBrowser] => 1
[isFeedReader] =>
[isMobileApp] =>
[isPIM] =>
[isLibrary] =>
[isMediaPlayer] =>
[isCamera] =>
[isCarBrowser] =>
[isConsole] =>
[isFeaturePhone] =>
[isPhablet] =>
[isPortableMediaPlayer] =>
[isSmartDisplay] =>
[isSmartphone] => 1
[isTablet] =>
[isTV] =>
[isDesktop] =>
[isMobile] => 1
[isTouchEnabled] =>
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>SinergiBrowserDetector<br /><small>6.0.0</small></td><td>Internet Explorer 9.0</td><td><i class="material-icons">close</i></td><td>Windows Phone </td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td>Windows Phone</td><td><i class="material-icons">close</i></td><td></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-5415e7f2-ef7b-434c-abe0-b71ba9f6707c">Detail</a>
<!-- Modal Structure -->
<div id="modal-5415e7f2-ef7b-434c-abe0-b71ba9f6707c" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>SinergiBrowserDetector result detail</h4>
<p><pre><code class="php">Array
(
[browser] => Sinergi\BrowserDetector\Browser Object
(
[userAgent:Sinergi\BrowserDetector\Browser:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (compatible; MSIE 9.0; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; HUAWEI; W1-U00)
)
[name:Sinergi\BrowserDetector\Browser:private] => Internet Explorer
[version:Sinergi\BrowserDetector\Browser:private] => 9.0
[isRobot:Sinergi\BrowserDetector\Browser:private] =>
[isChromeFrame:Sinergi\BrowserDetector\Browser:private] =>
)
[operatingSystem] => Sinergi\BrowserDetector\Os Object
(
[name:Sinergi\BrowserDetector\Os:private] => Windows Phone
[version:Sinergi\BrowserDetector\Os:private] => 0
[isMobile:Sinergi\BrowserDetector\Os:private] =>
[userAgent:Sinergi\BrowserDetector\Os:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (compatible; MSIE 9.0; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; HUAWEI; W1-U00)
)
)
[device] => Sinergi\BrowserDetector\Device Object
(
[name:Sinergi\BrowserDetector\Device:private] => Windows Phone
[userAgent:Sinergi\BrowserDetector\Device:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (compatible; MSIE 9.0; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; HUAWEI; W1-U00)
)
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>UAParser<br /><small>v3.4.5</small></td><td>IE Mobile 9.0</td><td><i class="material-icons">close</i></td><td>Windows Phone 7.5</td><td style="border-left: 1px solid #555">Huawei</td><td>W1-U00</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0.002</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-346c1a98-5fd3-454f-b6c8-350f2f505d8b">Detail</a>
<!-- Modal Structure -->
<div id="modal-346c1a98-5fd3-454f-b6c8-350f2f505d8b" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>UAParser result detail</h4>
<p><pre><code class="php">UAParser\Result\Client Object
(
[ua] => UAParser\Result\UserAgent Object
(
[major] => 9
[minor] => 0
[patch] =>
[family] => IE Mobile
)
[os] => UAParser\Result\OperatingSystem Object
(
[major] => 7
[minor] => 5
[patch] =>
[patchMinor] =>
[family] => Windows Phone
)
[device] => UAParser\Result\Device Object
(
[brand] => Huawei
[model] => W1-U00
[family] => Huawei W1-U00
)
[originalUserAgent] => Mozilla/5.0 (compatible; MSIE 9.0; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; HUAWEI; W1-U00)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>UserAgentStringCom<br /><small></small></td><td>IE Mobile 9.0</td><td><i class="material-icons">close</i></td><td>Windows Phone OS </td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td></td><td>0.06101</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-9cdd8b45-a2eb-406b-bd27-7e48af38ffd4">Detail</a>
<!-- Modal Structure -->
<div id="modal-9cdd8b45-a2eb-406b-bd27-7e48af38ffd4" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>UserAgentStringCom result detail</h4>
<p><pre><code class="php">stdClass Object
(
[agent_type] => Browser
[agent_name] => IE Mobile
[agent_version] => 9.0
[os_type] => Windows
[os_name] => Windows Phone OS
[os_versionName] =>
[os_versionNumber] =>
[os_producer] =>
[os_producerURL] =>
[linux_distibution] => Null
[agent_language] =>
[agent_languageTag] =>
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>WhatIsMyBrowserCom<br /><small></small></td><td>Internet Explorer Mobile 9.0</td><td>Trident 5.0</td><td>Windows Phone </td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0.40504</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-9795f66f-7271-430e-973a-a5c0e14dc35a">Detail</a>
<!-- Modal Structure -->
<div id="modal-9795f66f-7271-430e-973a-a5c0e14dc35a" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>WhatIsMyBrowserCom result detail</h4>
<p><pre><code class="php">stdClass Object
(
[operating_system_name] => Windows Phone
[simple_sub_description_string] =>
[simple_browser_string] => Internet Explorer Mobile 9 on Windows Phone 7.5
[browser_version] => 9
[extra_info] => Array
(
)
[operating_platform] =>
[extra_info_table] => Array
(
)
[layout_engine_name] => Trident
[detected_addons] => Array
(
)
[operating_system_flavour_code] =>
[hardware_architecture] =>
[operating_system_flavour] =>
[operating_system_frameworks] => Array
(
)
[browser_name_code] => internet-explorer-mobile
[operating_system_version] => 7.5
[simple_operating_platform_string] =>
[is_abusive] =>
[layout_engine_version] => 5.0
[browser_capabilities] => Array
(
)
[operating_platform_vendor_name] =>
[operating_system] => Windows Phone 7.5
[operating_system_version_full] =>
[operating_platform_code] =>
[browser_name] => Internet Explorer Mobile
[operating_system_name_code] => windows-phone
[user_agent] => Mozilla/5.0 (compatible; MSIE 9.0; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; HUAWEI; W1-U00)
[browser_version_full] => 9.0
[browser] => Internet Explorer Mobile 9
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>WhichBrowser<br /><small>2.0.10</small></td><td>Mobile Internet Explorer 9.0</td><td>Trident 5.0</td><td>Windows Phone 7.5</td><td style="border-left: 1px solid #555">Huawei</td><td>Ascend W1</td><td>mobile:smart</td><td>yes</td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0.008</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-342c8d32-4765-40a8-8a5c-af3a38d19ae4">Detail</a>
<!-- Modal Structure -->
<div id="modal-342c8d32-4765-40a8-8a5c-af3a38d19ae4" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>WhichBrowser result detail</h4>
<p><pre><code class="php">Array
(
[browser] => Array
(
[name] => Mobile Internet Explorer
[version] => 9.0
[type] => browser
)
[engine] => Array
(
[name] => Trident
[version] => 5.0
)
[os] => Array
(
[name] => Windows Phone
[version] => 7.5
)
[device] => Array
(
[type] => mobile
[subtype] => smart
[manufacturer] => Huawei
[model] => Ascend W1
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>Woothee<br /><small>v1.2.0</small></td><td>Internet Explorer 9.0</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>smartphone</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-3f285ff5-314b-4db4-9948-54572e92e7b6">Detail</a>
<!-- Modal Structure -->
<div id="modal-3f285ff5-314b-4db4-9948-54572e92e7b6" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>Woothee result detail</h4>
<p><pre><code class="php">Array
(
[name] => Internet Explorer
[vendor] => Microsoft
[version] => 9.0
[category] => smartphone
[os] => Windows Phone OS
[os_version] => 7.5
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>Wurfl<br /><small>1.6.4</small></td><td>IE Mobile 9.0</td><td><i class="material-icons">close</i></td><td>Windows Phone 7.5</td><td style="border-left: 1px solid #555"></td><td></td><td>Smartphone</td><td>yes</td><td>yes</td><td style="border-left: 1px solid #555"></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0.01</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-1a1aee36-7ce7-4111-a391-8e2c501f1532">Detail</a>
<!-- Modal Structure -->
<div id="modal-1a1aee36-7ce7-4111-a391-8e2c501f1532" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>Wurfl result detail</h4>
<p><pre><code class="php">Array
(
[virtual] => Array
(
[is_android] => false
[is_ios] => false
[is_windows_phone] => true
[is_app] => false
[is_full_desktop] => false
[is_largescreen] => true
[is_mobile] => true
[is_robot] => false
[is_smartphone] => true
[is_touchscreen] => true
[is_wml_preferred] => false
[is_xhtmlmp_preferred] => false
[is_html_preferred] => true
[advertised_device_os] => Windows Phone
[advertised_device_os_version] => 7.5
[advertised_browser] => IE Mobile
[advertised_browser_version] => 9.0
[complete_device_name] => Generic Windows Phone 7.5
[form_factor] => Smartphone
[is_phone] => true
[is_app_webview] => false
)
[all] => Array
(
[brand_name] => Generic
[model_name] => Windows Phone 7.5
[unique] => true
[ununiqueness_handler] =>
[is_wireless_device] => true
[device_claims_web_support] => true
[has_qwerty_keyboard] => true
[can_skip_aligned_link_row] => true
[uaprof] =>
[uaprof2] =>
[uaprof3] =>
[nokia_series] => 0
[nokia_edition] => 0
[device_os] => Windows Phone OS
[mobile_browser] => IEMobile
[mobile_browser_version] => 9.0
[device_os_version] => 7.5
[pointing_method] => touchscreen
[release_date] => 2011_july
[marketing_name] =>
[model_extra_info] =>
[nokia_feature_pack] => 0
[can_assign_phone_number] => true
[is_tablet] => false
[manufacturer_name] =>
[is_bot] => false
[is_google_glass] => false
[proportional_font] => false
[built_in_back_button_support] => false
[card_title_support] => true
[softkey_support] => false
[table_support] => true
[numbered_menus] => false
[menu_with_select_element_recommended] => false
[menu_with_list_of_links_recommended] => true
[icons_on_menu_items_support] => false
[break_list_of_links_with_br_element_recommended] => true
[access_key_support] => false
[wrap_mode_support] => false
[times_square_mode_support] => false
[deck_prefetch_support] => false
[elective_forms_recommended] => true
[wizards_recommended] => false
[image_as_link_support] => false
[insert_br_element_after_widget_recommended] => false
[wml_can_display_images_and_text_on_same_line] => false
[wml_displays_image_in_center] => false
[opwv_wml_extensions_support] => false
[wml_make_phone_call_string] => wtai://wp/mc;
[chtml_display_accesskey] => false
[emoji] => false
[chtml_can_display_images_and_text_on_same_line] => false
[chtml_displays_image_in_center] => false
[imode_region] => none
[chtml_make_phone_call_string] => tel:
[chtml_table_support] => false
[xhtml_honors_bgcolor] => false
[xhtml_supports_forms_in_table] => false
[xhtml_support_wml2_namespace] => false
[xhtml_autoexpand_select] => false
[xhtml_select_as_dropdown] => false
[xhtml_select_as_radiobutton] => false
[xhtml_select_as_popup] => false
[xhtml_display_accesskey] => false
[xhtml_supports_invisible_text] => false
[xhtml_supports_inline_input] => false
[xhtml_supports_monospace_font] => false
[xhtml_supports_table_for_layout] => false
[xhtml_supports_css_cell_table_coloring] => false
[xhtml_format_as_css_property] => false
[xhtml_format_as_attribute] => false
[xhtml_nowrap_mode] => false
[xhtml_marquee_as_css_property] => false
[xhtml_readable_background_color1] => #FFFFFF
[xhtml_readable_background_color2] => #FFFFFF
[xhtml_allows_disabled_form_elements] => false
[xhtml_document_title_support] => true
[xhtml_preferred_charset] => utf8
[opwv_xhtml_extensions_support] => false
[xhtml_make_phone_call_string] => tel:
[xhtmlmp_preferred_mime_type] => application/vnd.wap.xhtml+xml
[xhtml_table_support] => true
[xhtml_send_sms_string] => sms:
[xhtml_send_mms_string] => none
[xhtml_file_upload] => not_supported
[cookie_support] => true
[accept_third_party_cookie] => true
[xhtml_supports_iframe] => full
[xhtml_avoid_accesskeys] => false
[xhtml_can_embed_video] => none
[ajax_support_javascript] => true
[ajax_manipulate_css] => true
[ajax_support_getelementbyid] => true
[ajax_support_inner_html] => true
[ajax_xhr_type] => standard
[ajax_manipulate_dom] => true
[ajax_support_events] => true
[ajax_support_event_listener] => true
[ajax_preferred_geoloc_api] => none
[xhtml_support_level] => 4
[preferred_markup] => html_web_4_0
[wml_1_1] => false
[wml_1_2] => false
[wml_1_3] => false
[html_wi_w3_xhtmlbasic] => true
[html_wi_oma_xhtmlmp_1_0] => true
[html_wi_imode_html_1] => false
[html_wi_imode_html_2] => false
[html_wi_imode_html_3] => false
[html_wi_imode_html_4] => false
[html_wi_imode_html_5] => false
[html_wi_imode_htmlx_1] => false
[html_wi_imode_htmlx_1_1] => false
[html_wi_imode_compact_generic] => false
[html_web_3_2] => false
[html_web_4_0] => true
[voicexml] => false
[multipart_support] => false
[total_cache_disable_support] => false
[time_to_live_support] => false
[resolution_width] => 480
[resolution_height] => 800
[columns] => 12
[max_image_width] => 320
[max_image_height] => 480
[rows] => 20
[physical_screen_width] => 50
[physical_screen_height] => 84
[dual_orientation] => true
[density_class] => 1.5
[wbmp] => false
[bmp] => false
[epoc_bmp] => false
[gif_animated] => true
[jpg] => true
[png] => true
[tiff] => false
[transparent_png_alpha] => false
[transparent_png_index] => false
[svgt_1_1] => false
[svgt_1_1_plus] => false
[greyscale] => false
[gif] => true
[colors] => 65536
[webp_lossy_support] => false
[webp_lossless_support] => false
[post_method_support] => true
[basic_authentication_support] => true
[empty_option_value_support] => true
[emptyok] => false
[nokia_voice_call] => false
[wta_voice_call] => false
[wta_phonebook] => false
[wta_misc] => false
[wta_pdc] => false
[https_support] => true
[phone_id_provided] => false
[max_data_rate] => 384
[wifi] => true
[sdio] => false
[vpn] => false
[has_cellular_radio] => true
[max_deck_size] => 100000
[max_url_length_in_requests] => 512
[max_url_length_homepage] => 0
[max_url_length_bookmark] => 0
[max_url_length_cached_page] => 0
[max_no_of_connection_settings] => 0
[max_no_of_bookmarks] => 0
[max_length_of_username] => 0
[max_length_of_password] => 0
[max_object_size] => 0
[downloadfun_support] => false
[directdownload_support] => false
[inline_support] => false
[oma_support] => false
[ringtone] => false
[ringtone_3gpp] => false
[ringtone_midi_monophonic] => false
[ringtone_midi_polyphonic] => false
[ringtone_imelody] => false
[ringtone_digiplug] => false
[ringtone_compactmidi] => false
[ringtone_mmf] => false
[ringtone_rmf] => false
[ringtone_xmf] => false
[ringtone_amr] => false
[ringtone_awb] => false
[ringtone_aac] => false
[ringtone_wav] => false
[ringtone_mp3] => false
[ringtone_spmidi] => false
[ringtone_qcelp] => false
[ringtone_voices] => 1
[ringtone_df_size_limit] => 0
[ringtone_directdownload_size_limit] => 0
[ringtone_inline_size_limit] => 0
[ringtone_oma_size_limit] => 0
[wallpaper] => false
[wallpaper_max_width] => 0
[wallpaper_max_height] => 0
[wallpaper_preferred_width] => 0
[wallpaper_preferred_height] => 0
[wallpaper_resize] => none
[wallpaper_wbmp] => false
[wallpaper_bmp] => false
[wallpaper_gif] => false
[wallpaper_jpg] => false
[wallpaper_png] => false
[wallpaper_tiff] => false
[wallpaper_greyscale] => false
[wallpaper_colors] => 2
[wallpaper_df_size_limit] => 0
[wallpaper_directdownload_size_limit] => 0
[wallpaper_inline_size_limit] => 0
[wallpaper_oma_size_limit] => 0
[screensaver] => false
[screensaver_max_width] => 0
[screensaver_max_height] => 0
[screensaver_preferred_width] => 0
[screensaver_preferred_height] => 0
[screensaver_resize] => none
[screensaver_wbmp] => false
[screensaver_bmp] => false
[screensaver_gif] => false
[screensaver_jpg] => false
[screensaver_png] => false
[screensaver_greyscale] => false
[screensaver_colors] => 2
[screensaver_df_size_limit] => 0
[screensaver_directdownload_size_limit] => 0
[screensaver_inline_size_limit] => 0
[screensaver_oma_size_limit] => 0
[picture] => false
[picture_max_width] => 0
[picture_max_height] => 0
[picture_preferred_width] => 0
[picture_preferred_height] => 0
[picture_resize] => none
[picture_wbmp] => false
[picture_bmp] => false
[picture_gif] => false
[picture_jpg] => false
[picture_png] => false
[picture_greyscale] => false
[picture_colors] => 2
[picture_df_size_limit] => 0
[picture_directdownload_size_limit] => 0
[picture_inline_size_limit] => 0
[picture_oma_size_limit] => 0
[video] => false
[oma_v_1_0_forwardlock] => false
[oma_v_1_0_combined_delivery] => false
[oma_v_1_0_separate_delivery] => false
[streaming_video] => true
[streaming_3gpp] => true
[streaming_mp4] => true
[streaming_mov] => false
[streaming_video_size_limit] => 0
[streaming_real_media] => none
[streaming_flv] => false
[streaming_3g2] => true
[streaming_vcodec_h263_0] => 10
[streaming_vcodec_h263_3] => -1
[streaming_vcodec_mpeg4_sp] => 0
[streaming_vcodec_mpeg4_asp] => -1
[streaming_vcodec_h264_bp] => -1
[streaming_acodec_amr] => nb
[streaming_acodec_aac] => lc
[streaming_wmv] => 9
[streaming_preferred_protocol] => http
[streaming_preferred_http_protocol] => microsoft_smooth_streaming
[wap_push_support] => true
[connectionless_service_indication] => true
[connectionless_service_load] => true
[connectionless_cache_operation] => false
[connectionoriented_unconfirmed_service_indication] => false
[connectionoriented_unconfirmed_service_load] => false
[connectionoriented_unconfirmed_cache_operation] => false
[connectionoriented_confirmed_service_indication] => false
[connectionoriented_confirmed_service_load] => false
[connectionoriented_confirmed_cache_operation] => false
[utf8_support] => true
[ascii_support] => false
[iso8859_support] => false
[expiration_date] => false
[j2me_cldc_1_0] => false
[j2me_cldc_1_1] => false
[j2me_midp_1_0] => false
[j2me_midp_2_0] => false
[doja_1_0] => false
[doja_1_5] => false
[doja_2_0] => false
[doja_2_1] => false
[doja_2_2] => false
[doja_3_0] => false
[doja_3_5] => false
[doja_4_0] => false
[j2me_jtwi] => false
[j2me_mmapi_1_0] => false
[j2me_mmapi_1_1] => false
[j2me_wmapi_1_0] => false
[j2me_wmapi_1_1] => false
[j2me_wmapi_2_0] => false
[j2me_btapi] => false
[j2me_3dapi] => false
[j2me_locapi] => false
[j2me_nokia_ui] => false
[j2me_motorola_lwt] => false
[j2me_siemens_color_game] => false
[j2me_siemens_extension] => false
[j2me_heap_size] => 0
[j2me_max_jar_size] => 0
[j2me_storage_size] => 0
[j2me_max_record_store_size] => 0
[j2me_screen_width] => 0
[j2me_screen_height] => 0
[j2me_canvas_width] => 0
[j2me_canvas_height] => 0
[j2me_bits_per_pixel] => 0
[j2me_audio_capture_enabled] => false
[j2me_video_capture_enabled] => false
[j2me_photo_capture_enabled] => false
[j2me_capture_image_formats] => none
[j2me_http] => false
[j2me_https] => false
[j2me_socket] => false
[j2me_udp] => false
[j2me_serial] => false
[j2me_gif] => false
[j2me_gif89a] => false
[j2me_jpg] => false
[j2me_png] => false
[j2me_bmp] => false
[j2me_bmp3] => false
[j2me_wbmp] => false
[j2me_midi] => false
[j2me_wav] => false
[j2me_amr] => false
[j2me_mp3] => false
[j2me_mp4] => false
[j2me_imelody] => false
[j2me_rmf] => false
[j2me_au] => false
[j2me_aac] => false
[j2me_realaudio] => false
[j2me_xmf] => false
[j2me_wma] => false
[j2me_3gpp] => false
[j2me_h263] => false
[j2me_svgt] => false
[j2me_mpeg4] => false
[j2me_realvideo] => false
[j2me_real8] => false
[j2me_realmedia] => false
[j2me_left_softkey_code] => 0
[j2me_right_softkey_code] => 0
[j2me_middle_softkey_code] => 0
[j2me_select_key_code] => 0
[j2me_return_key_code] => 0
[j2me_clear_key_code] => 0
[j2me_datefield_no_accepts_null_date] => false
[j2me_datefield_broken] => false
[receiver] => true
[sender] => true
[mms_max_size] => 614400
[mms_max_height] => 1600
[mms_max_width] => 1600
[built_in_recorder] => false
[built_in_camera] => false
[mms_jpeg_baseline] => true
[mms_jpeg_progressive] => false
[mms_gif_static] => true
[mms_gif_animated] => true
[mms_png] => true
[mms_bmp] => true
[mms_wbmp] => false
[mms_amr] => false
[mms_wav] => true
[mms_midi_monophonic] => false
[mms_midi_polyphonic] => false
[mms_midi_polyphonic_voices] => 0
[mms_spmidi] => false
[mms_mmf] => false
[mms_mp3] => true
[mms_evrc] => false
[mms_qcelp] => false
[mms_ota_bitmap] => false
[mms_nokia_wallpaper] => false
[mms_nokia_operatorlogo] => false
[mms_nokia_3dscreensaver] => false
[mms_nokia_ringingtone] => false
[mms_rmf] => false
[mms_xmf] => false
[mms_symbian_install] => false
[mms_jar] => false
[mms_jad] => false
[mms_vcard] => false
[mms_vcalendar] => false
[mms_wml] => false
[mms_wbxml] => false
[mms_wmlc] => false
[mms_video] => true
[mms_mp4] => true
[mms_3gpp] => true
[mms_3gpp2] => true
[mms_max_frame_rate] => 0
[nokiaring] => false
[picturemessage] => false
[operatorlogo] => false
[largeoperatorlogo] => false
[callericon] => false
[nokiavcard] => false
[nokiavcal] => false
[sckl_ringtone] => false
[sckl_operatorlogo] => false
[sckl_groupgraphic] => false
[sckl_vcard] => false
[sckl_vcalendar] => false
[text_imelody] => false
[ems] => false
[ems_variablesizedpictures] => false
[ems_imelody] => false
[ems_odi] => false
[ems_upi] => false
[ems_version] => 0
[siemens_ota] => false
[siemens_logo_width] => 101
[siemens_logo_height] => 29
[siemens_screensaver_width] => 101
[siemens_screensaver_height] => 50
[gprtf] => false
[sagem_v1] => false
[sagem_v2] => false
[panasonic] => false
[sms_enabled] => true
[wav] => true
[mmf] => false
[smf] => false
[mld] => false
[midi_monophonic] => false
[midi_polyphonic] => false
[sp_midi] => false
[rmf] => false
[xmf] => false
[compactmidi] => false
[digiplug] => false
[nokia_ringtone] => false
[imelody] => false
[au] => false
[amr] => false
[awb] => false
[aac] => true
[mp3] => true
[voices] => 1
[qcelp] => false
[evrc] => false
[flash_lite_version] =>
[fl_wallpaper] => false
[fl_screensaver] => false
[fl_standalone] => false
[fl_browser] => false
[fl_sub_lcd] => false
[full_flash_support] => false
[css_supports_width_as_percentage] => true
[css_border_image] => none
[css_rounded_corners] => none
[css_gradient] => none
[css_spriting] => true
[css_gradient_linear] => none
[is_transcoder] => false
[transcoder_ua_header] => user-agent
[rss_support] => true
[pdf_support] => true
[progressive_download] => true
[playback_vcodec_h263_0] => 10
[playback_vcodec_h263_3] => -1
[playback_vcodec_mpeg4_sp] => 0
[playback_vcodec_mpeg4_asp] => -1
[playback_vcodec_h264_bp] => 1
[playback_real_media] => none
[playback_3gpp] => true
[playback_3g2] => true
[playback_mp4] => true
[playback_mov] => false
[playback_acodec_amr] => nb
[playback_acodec_aac] => lc
[playback_df_size_limit] => 0
[playback_directdownload_size_limit] => 0
[playback_inline_size_limit] => 0
[playback_oma_size_limit] => 0
[playback_acodec_qcelp] => false
[playback_wmv] => 9
[hinted_progressive_download] => false
[html_preferred_dtd] => html4
[viewport_supported] => true
[viewport_width] => device_width_token
[viewport_userscalable] => no
[viewport_initial_scale] =>
[viewport_maximum_scale] =>
[viewport_minimum_scale] =>
[mobileoptimized] => false
[handheldfriendly] => false
[canvas_support] => full
[image_inlining] => true
[is_smarttv] => false
[is_console] => false
[nfc_support] => false
[ux_full_desktop] => false
[jqm_grade] => A
[is_sencha_touch_ok] => false
[controlcap_is_smartphone] => default
[controlcap_is_ios] => default
[controlcap_is_android] => default
[controlcap_is_robot] => default
[controlcap_is_app] => default
[controlcap_advertised_device_os] => default
[controlcap_advertised_device_os_version] => default
[controlcap_advertised_browser] => default
[controlcap_advertised_browser_version] => default
[controlcap_is_windows_phone] => default
[controlcap_is_full_desktop] => default
[controlcap_is_largescreen] => default
[controlcap_is_mobile] => default
[controlcap_is_touchscreen] => default
[controlcap_is_wml_preferred] => default
[controlcap_is_xhtmlmp_preferred] => default
[controlcap_is_html_preferred] => default
[controlcap_form_factor] => default
[controlcap_complete_device_name] => default
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr></table>
</div>
<div class="section">
<h1 class="header center orange-text">About this comparison</h1>
<div class="row center">
<h5 class="header light">
The primary goal of this project is simple<br />
I wanted to know which user agent parser is the most accurate in each part - device detection, bot detection and so on...<br />
<br />
The secondary goal is to provide a source for all user agent parsers to improve their detection based on this results.<br />
<br />
You can also improve this further, by suggesting ideas at <a href="https://github.com/ThaDafinser/UserAgentParserComparison">ThaDafinser/UserAgentParserComparison</a><br />
<br />
The comparison is based on the abstraction by <a href="https://github.com/ThaDafinser/UserAgentParser">ThaDafinser/UserAgentParser</a>
</h5>
</div>
</div>
<div class="card">
<div class="card-content">
Comparison created <i>2016-02-13 13:33:30</i> | by
<a href="https://github.com/ThaDafinser">ThaDafinser</a>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/js/materialize.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/list.js/1.1.1/list.min.js"></script>
<script>
$(document).ready(function(){
// the "href" attribute of .modal-trigger must specify the modal ID that wants to be triggered
$('.modal-trigger').leanModal();
});
</script>
</body>
</html>
|
old/frontend/css/DailyOps-legal.css
|
swizkon/dailyops-public
|
/*
This stylesheet contains the layouts for the legal pages, such as "Privacy" and "Terms of service".
*/
/* Importera ett teckensnitt för att fixa lite egen profil för detta projekt*/
@import url(https://fonts.googleapis.com/css?family=Bangers);
body
{
padding-top:50px;
margin-bottom:140px;
background-color:#fafafa;
color:#333;
}
/* Anpassningar för top menyn */
nav div a.logo-text
{
font-family:'Bangers';
font-size:1.5em;
}
/***************************************************************************
* Huvud-puffen på huvudsidan.
***************************************************************************/
header div.puff
{
}
header div.puff div.puff-text
{
padding-top:20px;
font-size:2.0em;
font-weight:bold;
font-family:Georgia, Times New Roman;
}
header div.puff div.puff-text div
{
position:relative;
}
header div.puff div.puff-text div.line1
{
left:100px;
}
header div.puff div.puff-text div.line2
{
top:-25px;
left:70px;
font-size:2.0em;
}
header div.puff div.puff-text div.line3
{
top:-35px;
left:0px;
font-size:1.2em;
}
header div.puff div.puff-text div.line4
{
top:-50px;
left:70px;
font-size:1.5em;
}
/***************************************************************************
* Layout for the footer
***************************************************************************/
.footer
{
background-color:#e6e6e6;
bottom:0;
position:fixed;
width:100%;
}
footer div.footer
{
text-align:center;
border-top:solid 1px #666;
padding:30px;
}
footer div.footer a small
{
display:block;
}
|
clean/Linux-x86_64-4.05.0-2.0.6/released/8.7.1/ieee754/8.7.0.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ieee754: 12 s</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.1 / ieee754 - 8.7.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
ieee754
<small>
8.7.0
<span class="label label-success">12 s</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-08-09 15:43:56 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-08-09 15:43:56 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.12 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.7.1 Formal proof management system.
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/ieee754"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/IEEE754"]
depends: [
"ocaml"
"coq" {>= "8.7" & < "8.8~"}
]
tags: [ "keyword: floating-point arithmetic" "keyword: floats" "keyword: IEEE" "category: Computer Science/Data Types and Data Structures" "category: Computer Science/Semantics and Compilation/Semantics" "date: 1997" ]
authors: [ "Patrick Loiseleur" ]
bug-reports: "https://github.com/coq-contribs/ieee754/issues"
dev-repo: "git+https://github.com/coq-contribs/ieee754.git"
synopsis: "A formalisation of the IEEE754 norm on floating-point arithmetic"
description: """
This library contains a non-verified implementation of
binary floating-point addition and multiplication operators inspired
by the IEEE-754 standard. It is today outdated.
See the attached 1997 report rapport-stage-dea.ps.gz for a discussion
(in French) of this work.
For the state of the art at the time of updating this notice, see
e.g. "Flocq: A Unified Library for Proving Floating-point Algorithms
in Coq" by S. Boldo and G. Melquiond, 2011."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/ieee754/archive/v8.7.0.tar.gz"
checksum: "md5=c79fabb9831e0231bc5ce75f3be6aad7"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-ieee754.8.7.0 coq.8.7.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 2h opam install -y --deps-only coq-ieee754.8.7.0 coq.8.7.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>5 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 2h opam install -y -v coq-ieee754.8.7.0 coq.8.7.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>12 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 436 K</p>
<ul>
<li>75 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/IEEE754/IEEE754_def.vo</code></li>
<li>61 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/IEEE754/Diadic.vo</code></li>
<li>49 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/IEEE754/Diadic.glob</code></li>
<li>49 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/IEEE754/IEEE754_def.glob</code></li>
<li>36 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/IEEE754/Registers.vo</code></li>
<li>27 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/IEEE754/tests.vo</code></li>
<li>26 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/IEEE754/IEEE754_properties.vo</code></li>
<li>26 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/IEEE754/IEEE.vo</code></li>
<li>25 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/IEEE754/IEEE754_algorithms.vo</code></li>
<li>19 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/IEEE754/Diadic.v</code></li>
<li>18 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/IEEE754/IEEE754_def.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/IEEE754/Registers.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/IEEE754/Registers.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/IEEE754/IEEE754_properties.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/IEEE754/tests.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/IEEE754/IEEE.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/IEEE754/IEEE754_algorithms.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/IEEE754/tests.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/IEEE754/IEEE754_properties.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/IEEE754/IEEE.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/IEEE754/IEEE754_algorithms.glob</code></li>
</ul>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-ieee754.8.7.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.05.0-2.0.1/released/8.6/weak-up-to/8.9.0.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>weak-up-to: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.6 / weak-up-to - 8.9.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
weak-up-to
<small>
8.9.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-03 17:13:05 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-03 17:13:05 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 2 Virtual package relying on perl
coq 8.6 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "http://perso.ens-lyon.fr/damien.pous/upto/"
license: "GPL"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/WeakUpTo"]
depends: [
"ocaml"
"coq" {>= "8.9" & < "8.10~"}
]
tags: [
"keyword: weak bisimilarity"
"keyword: weak bisimulation"
"keyword: up-to techniques"
"keyword: termination"
"keyword: commutation"
"keyword: Newman's lemma"
"category: Computer Science/Concurrent Systems and Protocols/Theory of concurrent systems"
"date: 2005-02-22"
]
authors: [
"Damien Pous <damien.pous at ens-lyon.fr> [http://perso.ens-lyon.fr/damien.pous/]"
]
bug-reports: "https://github.com/coq-contribs/weak-up-to/issues"
dev-repo: "git+https://github.com/coq-contribs/weak-up-to.git"
synopsis: "New Up-to Techniques for Weak Bisimulation"
description: """
This contribution is the formalisation of a paper that appeared in
Proc. of ICALP 2005: "Up-to Techniques for Weak Bisimulation".
First we define a framework for defining up-to techniques for weak
bisimulation in a modular way. Then we prove the correctness of some
new up-to techniques, based on termination guarantees. Notably, a
generalisation of Newman's Lemma to commutation results is
established."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/weak-up-to/archive/v8.9.0.tar.gz"
checksum: "md5=6c91d9b73aee52981c01c0f5b300aafe"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-weak-up-to.8.9.0 coq.8.6</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.6).
The following dependencies couldn't be met:
- coq-weak-up-to -> coq >= 8.9
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-weak-up-to.8.9.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.13.1-2.0.10/released/8.15.0/equations/1.3~beta2+8.13.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>equations: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.15.0 / equations - 1.3~beta2+8.13</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
equations
<small>
1.3~beta2+8.13
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-18 08:58:34 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-18 08:58:34 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 4 Virtual package relying on a GMP lib system installation
coq 8.15.0 Formal proof management system
dune 2.9.3 Fast, portable, and opinionated build system
ocaml 4.13.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.13.1 Official release 4.13.1
ocaml-config 2 OCaml Switch Configuration
ocaml-options-vanilla 1 Ensure that OCaml is compiled with no special options enabled
ocamlfind 1.9.3 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
authors: [ "Matthieu Sozeau <matthieu.sozeau@inria.fr>" "Cyprien Mangin <cyprien.mangin@m4x.org>" ]
dev-repo: "git+https://github.com/mattam82/Coq-Equations.git"
maintainer: "matthieu.sozeau@inria.fr"
homepage: "https://mattam82.github.io/Coq-Equations"
bug-reports: "https://github.com/mattam82/Coq-Equations/issues"
license: "LGPL-2.1-or-later"
synopsis: "A function definition package for Coq"
description: """
Equations is a function definition plugin for Coq, that allows the
definition of functions by dependent pattern-matching and well-founded,
mutual or nested structural recursion and compiles them into core
terms. It automatically derives the clauses equations, the graph of the
function and its associated elimination principle.
"""
tags: [
"keyword:dependent pattern-matching"
"keyword:functional elimination"
"category:Miscellaneous/Coq Extensions"
"logpath:Equations"
]
build: [
["./configure.sh" "--enable-hott" {coq-hott:installed} ]
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
run-test: [
[make "test-suite"]
]
depends: [
"coq" {>= "8.13" & < "8.14~"}
"ocamlfind" {build}
]
depopts: [
"coq-hott" {= "8.13"}
]
url {
src: "https://github.com/mattam82/Coq-Equations/archive/refs/tags/v1.3-8.13beta2.tar.gz"
checksum: "sha512=5957dd6bd8af7575bdcd7f18d4134acaee29511624e35d311361feae5be157cd9a442a3c7ac4d93ea492435ee408d99c79d897f09a4efdeb09a4ada80fb376dc"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-equations.1.3~beta2+8.13 coq.8.15.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.15.0).
The following dependencies couldn't be met:
- coq-equations -> coq < 8.14~ -> ocaml < 4.12
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-equations.1.3~beta2+8.13</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.06.1-2.0.5/released/8.8.2/equations/1.2.3+8.11.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>equations: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.8.2 / equations - 1.2.3+8.11</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
equations
<small>
1.2.3+8.11
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-10-24 09:29:54 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-10-24 09:29:54 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.8.2 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.06.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.06.1 Official 4.06.1 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
authors: [ "Matthieu Sozeau <matthieu.sozeau@inria.fr>" "Cyprien Mangin <cyprien.mangin@m4x.org>" ]
dev-repo: "git+https://github.com/mattam82/Coq-Equations.git#8.11"
maintainer: "matthieu.sozeau@inria.fr"
homepage: "https://mattam82.github.io/Coq-Equations"
bug-reports: "https://github.com/mattam82/Coq-Equations/issues"
license: "LGPL-2.1-or-later"
synopsis: "A function definition package for Coq"
description: """
Equations is a function definition plugin for Coq, that allows the
definition of functions by dependent pattern-matching and well-founded,
mutual or nested structural recursion and compiles them into core
terms. It automatically derives the clauses equations, the graph of the
function and its associated elimination principle.
"""
tags: [
"keyword:dependent pattern-matching"
"keyword:functional elimination"
"category:Miscellaneous/Coq Extensions"
"logpath:Equations"
]
build: [
["./configure.sh"]
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
run-test: [
[make "test-suite"]
]
depends: [
"coq" {>= "8.11.0" & < "8.12~"}
]
url {
src:
"https://github.com/mattam82/Coq-Equations/archive/v1.2.3-8.11.tar.gz"
checksum: "sha512=bb302e09f86d1eeb10e9ff8040e52f3fb372b89929cf0ec8e05055478b8e70562d5651bbe8931615580dfe7d105b4d4c01969de823bdff4639e7210ede90eeae"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-equations.1.2.3+8.11 coq.8.8.2</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.8.2).
The following dependencies couldn't be met:
- coq-equations -> coq >= 8.11.0
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-equations.1.2.3+8.11</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.12.1-2.0.8/released/8.13.0/io/3.2.0.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>io: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.13.0 / io - 3.2.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
io
<small>
3.2.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-03-08 23:52:51 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-03-08 23:52:51 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 4 Virtual package relying on a GMP lib system installation
coq 8.13.0 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.12.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.12.1 Official release 4.12.1
ocaml-config 2 OCaml Switch Configuration
ocaml-options-vanilla 1 Ensure that OCaml is compiled with no special options enabled
ocamlfind 1.9.3 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "dev@clarus.me"
homepage: "https://github.com/clarus/io"
dev-repo: "git+https://github.com/clarus/io.git"
bug-reports: "https://github.com/clarus/io/issues"
authors: ["Guillaume Claret"]
license: "MIT"
build: [
["./configure.sh"]
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Io"]
depends: [
"ocaml"
"coq" {>= "8.4pl4" & < "8.5~"}
]
synopsis: "A library for effects in Coq"
flags: light-uninstall
url {
src: "https://github.com/coq-io/io/archive/3.2.0.tar.gz"
checksum: "md5=e2cecb304942df8ecfcde4d6bbaf6217"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-io.3.2.0 coq.8.13.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.13.0).
The following dependencies couldn't be met:
- coq-io -> coq < 8.5~ -> ocaml < 4.03.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-io.3.2.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/4db526ff7db4acf414fe0d5b2fc12bf8b75fbd1376f7c4d4035568ff025e7bfd.html
|
simonmysun/praxis
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>18 --> 19</title>
<link href="./../../assets/style.css" rel="stylesheet">
</head>
<body>
<h2>You have to be fast</h2>
<a href="./5e95f02d5623f44b0db94f7e8dbdc6dbb3ea10ef7614c187f72a0af7a67e6406.html">Teleport</a>
<hr>
<a href="./../../about.md">About</a> (Spoilers! )
<script src="./../../assets/md5.js"></script>
<script>
window.currentLevel = 7;
</script>
<script src="./../../assets/script.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.05.0-2.0.6/released/8.8.0/huffman/8.10.0.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>huffman: 1 m 21 s</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.8.0 / huffman - 8.10.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
huffman
<small>
8.10.0
<span class="label label-success">1 m 21 s</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-09-14 18:10:41 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-09-14 18:10:41 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.13 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.8.0 Formal proof management system.
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "palmskog@gmail.com"
homepage: "https://github.com/coq-community/huffman"
dev-repo: "git+https://github.com/coq-community/huffman.git"
bug-reports: "https://github.com/coq-community/huffman/issues"
license: "LGPL-2.1-or-later"
synopsis: "A Coq proof of the correctness of the Huffman coding algorithm"
description: """
This projects contains a Coq proof of the correctness of the Huffman coding algorithm,
as described in David A. Huffman's paper A Method for the Construction of Minimum-Redundancy
Codes, Proc. IRE, pp. 1098-1101, September 1952."""
build: [make "-j%{jobs}%"]
install: [make "install"]
depends: [
"ocaml"
"coq" {>= "8.7" & < "8.12~"}
]
tags: [
"category:Computer Science/Decision Procedures and Certified Algorithms/Correctness proofs of algorithms"
"category:Miscellaneous/Extracted Programs/Combinatorics"
"keyword:data compression"
"keyword:code"
"keyword:huffman tree"
"logpath:Huffman"
"date:2019-12-07"
]
authors: [
"Laurent Théry"
]
url {
src: "https://github.com/coq-community/huffman/archive/v8.10.0.tar.gz"
checksum: "sha512=faeeaa47712a7b5df82ce1bc93db0e5c44b8398da71f3e7ce83d43b99b838c31734fd8226a7be39bf70ca75dbf5f0b6f9a516fea001282eadf3e22b7cfcd449d"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-huffman.8.10.0 coq.8.8.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 2h opam install -y --deps-only coq-huffman.8.10.0 coq.8.8.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>5 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 2h opam install -y -v coq-huffman.8.10.0 coq.8.8.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>1 m 21 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 3 M</p>
<ul>
<li>302 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/PBTree.vo</code></li>
<li>220 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Huffman.vo</code></li>
<li>116 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Huffman.glob</code></li>
<li>114 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/BTree.vo</code></li>
<li>104 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/PBTree.glob</code></li>
<li>99 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Aux.vo</code></li>
<li>99 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Code.vo</code></li>
<li>94 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/HeightPred.vo</code></li>
<li>81 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Prod2List.glob</code></li>
<li>80 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Permutation.vo</code></li>
<li>76 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/HeightPred.glob</code></li>
<li>73 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Build.vo</code></li>
<li>62 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Prod2List.vo</code></li>
<li>61 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Frequency.vo</code></li>
<li>60 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Cover.vo</code></li>
<li>60 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Aux.glob</code></li>
<li>57 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Permutation.glob</code></li>
<li>53 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Code.glob</code></li>
<li>50 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Weight.vo</code></li>
<li>48 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/UniqueKey.vo</code></li>
<li>48 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/PBTree2BTree.vo</code></li>
<li>45 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/UList.vo</code></li>
<li>43 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/OrderedCover.vo</code></li>
<li>41 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Ordered.vo</code></li>
<li>41 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/PBTree.v</code></li>
<li>41 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/OneStep.vo</code></li>
<li>40 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Restrict.vo</code></li>
<li>39 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/SubstPred.vo</code></li>
<li>38 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Cover.glob</code></li>
<li>35 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Build.glob</code></li>
<li>34 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/WeightTree.vo</code></li>
<li>33 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/CoverMin.vo</code></li>
<li>32 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/BTree.glob</code></li>
<li>31 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/ISort.vo</code></li>
<li>30 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Frequency.glob</code></li>
<li>29 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Weight.glob</code></li>
<li>29 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/SameSumLeaves.vo</code></li>
<li>27 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Extraction.vo</code></li>
<li>21 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Code.v</code></li>
<li>20 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/HeightPred.v</code></li>
<li>20 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Aux.v</code></li>
<li>18 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/OneStep.glob</code></li>
<li>18 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Restrict.glob</code></li>
<li>17 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Permutation.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Huffman.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/UniqueKey.glob</code></li>
<li>14 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/BTree.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/PBTree2BTree.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Cover.v</code></li>
<li>11 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Prod2List.v</code></li>
<li>11 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Frequency.v</code></li>
<li>11 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Build.v</code></li>
<li>11 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Ordered.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/SubstPred.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/OrderedCover.glob</code></li>
<li>8 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/WeightTree.glob</code></li>
<li>8 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Weight.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/ISort.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/UList.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Restrict.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/PBTree2BTree.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/UniqueKey.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Ordered.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/OneStep.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/OrderedCover.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/CoverMin.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/SubstPred.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/UList.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/SameSumLeaves.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/ISort.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/WeightTree.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/sTactic.vo</code></li>
<li>3 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/CoverMin.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/sTactic.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/SameSumLeaves.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Extraction.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/sTactic.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Huffman/Extraction.glob</code></li>
</ul>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-huffman.8.10.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.06.1-2.0.5/extra-dev/dev/metacoq-erasure/1.0~alpha+8.9.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>metacoq-erasure: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / extra-dev</a></li>
<li class="active"><a href="">dev / metacoq-erasure - 1.0~alpha+8.9</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
metacoq-erasure
<small>
1.0~alpha+8.9
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2019-12-20 08:22:20 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2019-12-20 08:22:20 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq dev Formal proof management system
num 1.3 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.06.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.06.1 Official 4.06.1 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "matthieu.sozeau@inria.fr"
homepage: "https://metacoq.github.io/metacoq"
dev-repo: "git+https://github.com/MetaCoq/metacoq.git#coq-8.8"
bug-reports: "https://github.com/MetaCoq/metacoq/issues"
authors: ["Abhishek Anand <aa755@cs.cornell.edu>"
"Simon Boulier <simon.boulier@inria.fr>"
"Cyril Cohen <cyril.cohen@inria.fr>"
"Yannick Forster <forster@ps.uni-saarland.de>"
"Fabian Kunze <fkunze@fakusb.de>"
"Gregory Malecha <gmalecha@gmail.com>"
"Matthieu Sozeau <matthieu.sozeau@inria.fr>"
"Nicolas Tabareau <nicolas.tabareau@inria.fr>"
"Théo Winterhalter <theo.winterhalter@inria.fr>"
]
license: "MIT"
build: [
["sh" "./configure.sh"]
[make "-j%{jobs}%" "-C" "erasure"]
[make "test-suite"] {with-test}
]
install: [
[make "-C" "erasure" "install"]
]
depends: [
"ocaml" {> "4.02.3"}
"coq" {>= "8.9" & < "8.10~"}
"coq-metacoq-template" {= version}
"coq-metacoq-checker" {= version}
"coq-metacoq-pcuic" {= version}
"coq-metacoq-safechecker" {= version}
]
synopsis: "Implementation and verification of an erasure procedure for Coq"
description: """
MetaCoq is a meta-programming framework for Coq.
The Erasure module provides a complete specification of Coq's so-called
\"extraction\" procedure, starting from the PCUIC calculus and targeting
untyped call-by-value lambda-calculus.
The `erasure` function translates types and proofs in well-typed terms
into a dummy `tBox` constructor, following closely P. Letouzey's PhD
thesis.
"""
url {
src: "https://github.com/MetaCoq/metacoq/archive/1.0-alpha+8.9.tar.gz"
checksum: "sha256=899ef4ee73b1684a0f1d2e37ab9ab0f9b24424f6d8a10a10efd474c0ed93488e"
}</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-metacoq-erasure.1.0~alpha+8.9 coq.dev</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is dev).
The following dependencies couldn't be met:
- coq-metacoq-erasure -> coq-metacoq-template = 1.0~alpha+8.9 -> coq < 8.10~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-metacoq-erasure.1.0~alpha+8.9</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.10.1-2.0.6/released/8.11.2/mathcomp-finmap/1.3.1.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>mathcomp-finmap: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.11.2 / mathcomp-finmap - 1.3.1</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
mathcomp-finmap
<small>
1.3.1
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2021-03-31 05:27:10 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-03-31 05:27:10 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.11.2 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.10.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.10.1 Official release 4.10.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Cyril Cohen <cyril.cohen@inria.fr>"
homepage: "https://github.com/math-comp/finmap"
bug-reports: "https://github.com/math-comp/finmap/issues"
dev-repo: "git+https://github.com/math-comp/finmap.git"
license: "CeCILL-B"
build: [ make "-j" "%{jobs}%" ]
install: [ make "install" ]
depends: [
"coq" { (>= "8.7" & < "8.11~") }
"coq-mathcomp-ssreflect" { (>= "1.8.0" & < "1.10~") }
"coq-mathcomp-bigenough" { (>= "1.0.0" & < "1.1~") }
]
tags: [ "keyword:finmap" "keyword:finset" "keyword:multiset" "keyword:order" "date:2019-06-13" "logpath:mathcomp.finmap"]
authors: [ "Cyril Cohen <cyril.cohen@inria.fr>" "Kazuhiko Sakaguchi <sakaguchi@coins.tsukuba.ac.jp>" ]
synopsis: "Finite sets, finite maps, finitely supported functions, orders"
description: """
This library is an extension of mathematical component in order to
support finite sets and finite maps on choicetypes (rather that finite
types). This includes support for functions with finite support and
multisets. The library also contains a generic order and set libary,
which will be used to subsume notations for finite sets, eventually."""
url {
src: "https://github.com/math-comp/finmap/archive/1.3.1.tar.gz"
checksum: "sha256=5b90b4dbb1c851be7a835493ef81471238260580e2d1b340dc4cf40668c6a15b"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-mathcomp-finmap.1.3.1 coq.8.11.2</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.11.2).
The following dependencies couldn't be met:
- coq-mathcomp-finmap -> coq < 8.11~ -> ocaml < 4.10
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-mathcomp-finmap.1.3.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.12.1-2.0.8/extra-dev/dev/serapi/8.15+rc1+0.15.0.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>serapi: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / extra-dev</a></li>
<li class="active"><a href="">dev / serapi - 8.15+rc1+0.15.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
serapi
<small>
8.15+rc1+0.15.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-27 19:27:03 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-27 19:27:03 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 4 Virtual package relying on a GMP lib system installation
coq dev Formal proof management system
dune 3.0.2 Fast, portable, and opinionated build system
ocaml 4.12.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.12.1 Official release 4.12.1
ocaml-config 2 OCaml Switch Configuration
ocaml-options-vanilla 1 Ensure that OCaml is compiled with no special options enabled
ocamlfind 1.9.3 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "e@x80.org"
homepage: "https://github.com/ejgallego/coq-serapi"
bug-reports: "https://github.com/ejgallego/coq-serapi/issues"
dev-repo: "git+https://github.com/ejgallego/coq-serapi.git"
license: "GPL-3.0-or-later"
doc: "https://ejgallego.github.io/coq-serapi/"
synopsis: "Serialization library and protocol for machine interaction with the Coq proof assistant"
description: """
SerAPI is a library for machine-to-machine interaction with the
Coq proof assistant, with particular emphasis on applications in IDEs,
code analysis tools, and machine learning. SerAPI provides automatic
serialization of Coq's internal OCaml datatypes from/to JSON or
S-expressions (sexps).
"""
authors: [
"Emilio Jesús Gallego Arias"
"Karl Palmskog"
"Clément Pit-Claudel"
"Kaiyu Yang"
]
depends: [
"ocaml" { >= "4.07.0" }
"coq" { >= "8.15" & < "8.16" }
"cmdliner" { >= "1.0.0" }
"ocamlfind" { >= "1.8.0" }
"sexplib" { >= "v0.13.0" }
"dune" { >= "2.0.1" }
"ppx_import" { build & >= "1.5-3" }
"ppx_deriving" { >= "4.2.1" }
"ppx_sexp_conv" { >= "v0.13.0" & < "v0.15" }
"yojson" { >= "1.7.0" }
"ppx_deriving_yojson" { >= "3.4" }
]
build: [ "dune" "build" "-p" name "-j" jobs ]
x-commit-hash: "7b5ae22d90b7d436a1c9a4774926a0802ef575e6"
url {
src:
"https://github.com/ejgallego/coq-serapi/archive/8.15+rc1+0.15.0.tar.gz"
checksum: [
"sha256=7520f3aa6ae8b4e8725d0d7d83e21c07013ad802885c0ccfb3253abcc961cf60"
"sha512=c29bb448231410e372ae63a160d8f69a223c0d6144b630494bd8c0f1acbfdf4716c433d41c070e1cd8ee7225198c01d5ddb54e18e5ca291f2b59e18e18e59a27"
]
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-serapi.8.15+rc1+0.15.0 coq.dev</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is dev).
The following dependencies couldn't be met:
- coq-serapi -> coq < 8.16 -> ocaml < 4.12
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-serapi.8.15+rc1+0.15.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.08.1-2.0.5/released/8.11.0/dpdgraph/0.5.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>dpdgraph: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.11.0 / dpdgraph - 0.5</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
dpdgraph
<small>
0.5
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-08 11:23:12 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-08 11:23:12 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.11.0 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.08.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.08.1 Official release 4.08.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "yves.bertot@inria.fr"
license: "LGPL 2.1"
homepage: "https://github.com/karmaki/coq-dpdgraph"
build: [
["./configure"]
["echo" "%{jobs}%" "jobs for the linter"]
[make]
]
install: [make "install" "BINDIR=%{bin}%"]
depends: [
"ocaml"
"coq" {>= "8.5" & < "8.6~"}
"ocamlgraph"
]
authors: [ "Anne Pacalet" "Yves Bertot"]
tags: [
"logpath:dpdgraph"
]
synopsis: "Compute dependencies between Coq objects (definitions, theorems) and produce graphs"
url {
src:
"https://github.com/ybertot/coq-dpdgraph/archive/coq-dpdgraph-0.5-rc2.zip"
checksum: "md5=d9614264c394080c2734638befaf0483"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-dpdgraph.0.5 coq.8.11.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.11.0).
The following dependencies couldn't be met:
- coq-dpdgraph -> coq < 8.6~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-dpdgraph.0.5</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
lectorqr.html
|
juliapaolaord/mrparking
|
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="lectorqr.aspx.cs" Inherits="Prestamos.lectorqr" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
</head>
<script src="jquery-1.9.1.min.js"></script>
<script src="html5-qrcode.min.js"></script>
<body>
<form id="form1" runat="server">
<div id="reader" style="width:300px; height:250px">
<p>
Datos del Código QR:
<asp:TextBox ID="txtCodigo" runat="server" Width="371px"></asp:TextBox>
</p>
<br />
</div>
<script>
$(document).ready(function () {
$('#reader').html5_qrcode(function (data) {
$('#<%=txtCodigo.ClientID%>').val(data);
},
function (error) {
}, function (videoError) {
alert("No hay cámara");
}
);
});
</script>
</form>
</body>
</html>
|
app/components/home/views/homeView.html
|
dwt359/basic_capstone
|
<!-- This is the home page (obvi) -->
<div id="homePage" ng-controller="HomeCtrl">
<md-toolbar md-scroll-y class="md-whiteframe-z4" layout="row">
<h1 id="hitch_home" layout-align-gt-sm="left" class="md-toolbar-tools">HITCH</h1>
<md-button ng-controller="LoginCtrl" ng-click="loginWithFacebook()" flex>LOGIN</md-button>
</md-toolbar>
<div id="outer-wrapper">
<md-content layout="column" layout-align="center center" flex class="md-padding" id="home-content">
<div class="section" id="home-section" hide-gt-sm layout="row" layout-align="center center">
<div layout="column" flex="60" hide-gt-sm layout="row" layout-align="center">
<img src="/assets/img/hitch_car_logo.png" height="200px" width="400px" style="object-fit: contain;">
</div>
</div>
<div class="section" id="home-section" hide-sm layout="row" layout-align="center center">
<img src="/assets/img/hitch_car_logo.png" height="350px" width="900px" style="object-fit: contain;">
</div>
</md-content>
</div>
</div>
|
src/common/input/text/example/index.html
|
Ephrame/focus-components
|
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Focus component examples</title>
<meta name="description" content="Example of the component.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- BABEL-->
<script src="/focus-components/example/js/browser.js"></script>
<!-- SCRIPT LOADING-->
<script src="/focus-components/example/js/assets.js"></script>
</head>
<body>
<script type="text/babel">
loadAssets().then((d)=>{
const Template = FocusComponents.template.component;
const InputText = FocusComponents.common.input.text.component;
const InputTextSample = React.createClass({
/**
* Render the component.
* @return {object} React node
*/
render() {
return <Template title="Input text">
<h3>Without value</h3>
<div><InputText placeHolder="Put your value here..." /></div>
<h3>With value</h3>
<InputText value="Lorem Ipsum" />
<h3>Input with error</h3>
<InputText value="Lorem Ipsum" error="Hey! you've done someting wrong!" />
<h3>Get the value</h3>
<InputText value="Lorem Ipsum" ref="myInputText"/>
<button onClick={()=>{alert(this.refs.myInputText.getValue())}}>Get the input value</button>
</Template>
}
});
const mountNode = document.querySelector("body")
React.render(<InputTextSample />, mountNode);
});
</script>
</body>
</html>
|
clean/Linux-x86_64-4.05.0-2.0.1/released/8.7.1+2/axiomatic-abp/8.6.0.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>axiomatic-abp: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.1+2 / axiomatic-abp - 8.6.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
axiomatic-abp
<small>
8.6.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-24 14:39:15 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-24 14:39:15 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 2 Virtual package relying on perl
coq 8.7.1+2 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/axiomatic-abp"
license: "Unknown"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/AxiomaticABP"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
]
tags: [ "keyword: Alternating Bit Protocol" "keyword: Process Calculi" "keyword: reactive systems" "category: Computer Science/Concurrent Systems and Protocols/Correctness of specific protocols" ]
authors: [ "Jan Friso Groote" ]
bug-reports: "https://github.com/coq-contribs/axiomatic-abp/issues"
dev-repo: "git+https://github.com/coq-contribs/axiomatic-abp.git"
synopsis: "Verification of an axiomatisation of the Alternating Bit Protocol"
description: """
The Alternating Bit Protocol is expressed in an axiomatized calculi of process.
Correctness is proven."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/axiomatic-abp/archive/v8.6.0.tar.gz"
checksum: "md5=41cb354389a327a0d345decde3829707"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-axiomatic-abp.8.6.0 coq.8.7.1+2</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.7.1+2).
The following dependencies couldn't be met:
- coq-axiomatic-abp -> coq < 8.7~ -> ocaml < 4.03.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-axiomatic-abp.8.6.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
layouts/comics/about.html
|
mrl112/angelswithscalywings
|
{{ define "title" }}
{{ .Title }} – {{ .Site.Title }}
{{ end }}
{{ define "main" }}
<main>
<header>
{{ partial "header/site-nav.html" . }}
<div class="comics-logo-background">
<img class="comics-logo" src="../../img/comics-logo.png" />
</div>
<nav>
<ul class="submenu">
<li><a href="/comics/about">About</a></li>
<li><span>Comics</span>
<ul>
{{ range first 5 (where .Site.Pages "Type" "comics") }}
<li><a href="{{ .URL }}">{{.Title}}</a></li>
{{ end }}
<li><a href="/comics/archive">More?</a></li>
</ul>
</li>
</ul>
</nav>
</header>
{{ .Content }}
</main>
{{ end }}
|
test/expected.html
|
jstransformers/jstransformer-transparency
|
<span class="hi">hello</span>
|
clean/Linux-x86_64-4.03.0-2.0.5/released/8.7.1+1/vst/2.2.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>vst: 1 h 23 m 🏆</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.1+1 / vst - 2.2</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
vst
<small>
2.2
<span class="label label-success">1 h 23 m 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-05 21:09:41 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-05 21:09:41 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.7.1+1 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.03.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.03.0 Official 4.03.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
authors: ["Andrew W. Appel"
"Lennart Beringer"
"Sandrine Blazy"
"Qinxiang Cao"
"Santiago Cuellar"
"Robert Dockins"
"Josiah Dodds"
"Nick Giannarakis"
"Samuel Gruetter"
"Aquinas Hobor"
"Jean-Marie Madiot"
]
maintainer: "VST team"
homepage: "http://vst.cs.princeton.edu/"
dev-repo: "git+https://github.com/PrincetonUniversity/VST.git"
bug-reports: "https://github.com/PrincetonUniversity/VST/issues"
license: "https://raw.githubusercontent.com/PrincetonUniversity/VST/master/LICENSE"
build: [
[make "-j" "COMPCERT=%{lib}%/coq/user-contrib/compcert" "version.vo" "msl" "veric" "floyd"]
]
install: [
["mkdir" "%{lib}%/coq/user-contrib/VST"]
["cp" "-r" "msl" "%{lib}%/coq/user-contrib/VST/"]
["cp" "-r" "veric" "%{lib}%/coq/user-contrib/VST/"]
["cp" "-r" "floyd" "%{lib}%/coq/user-contrib/VST/"]
["cp" "-r" "sepcomp" "%{lib}%/coq/user-contrib/VST/"]
]
remove: [
["rm" "-fr" "%{lib}%/coq/user-contrib/VST"]
]
depends: [
"ocaml"
"coq" {>= "8.7.0"}
"coq-compcert" {= "3.3.0"}
]
synopsis: "Verified Software Toolchain"
description:
"The software toolchain includes static analyzers to check assertions about your program; optimizing compilers to translate your program to machine language; operating systems and libraries to supply context for your program. The Verified Software Toolchain project assures with machine-checked proofs that the assertions claimed at the top of the toolchain really hold in the machine-language program, running in the operating-system context."
flags: light-uninstall
url {
src: "https://github.com/PrincetonUniversity/VST/archive/v2.2.tar.gz"
checksum: "md5=deb1d112fa078c380ed93f0f7e929481"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-vst.2.2 coq.8.7.1+1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 4h opam install -y --deps-only coq-vst.2.2 coq.8.7.1+1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>41 m 44 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 20h opam install -y -v coq-vst.2.2 coq.8.7.1+1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>1 h 23 m</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 118 M</p>
<ul>
<li>13 M <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/binop_lemmas4.vo</code></li>
<li>6 M <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/binop_lemmas4.glob</code></li>
<li>5 M <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/binop_lemmas3.vo</code></li>
<li>4 M <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/binop_lemmas5.vo</code></li>
<li>4 M <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/binop_lemmas2.vo</code></li>
<li>4 M <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/juicy_mem.vo</code></li>
<li>2 M <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/tree_shares.vo</code></li>
<li>2 M <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/initial_world.vo</code></li>
<li>2 M <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/expr_rel.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/expr_lemmas3.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/binop_lemmas2.glob</code></li>
<li>1 M <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax_straight.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax_call.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/binop_lemmas6.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/extspec.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/rmaps.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/expr_lemmas.vo</code></li>
<li>1024 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/initialize.vo</code></li>
<li>908 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/aggregate_pred.vo</code></li>
<li>896 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax_lemmas.vo</code></li>
<li>846 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/expr_lemmas4.vo</code></li>
<li>817 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax_straight.glob</code></li>
<li>816 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/tree_shares.glob</code></li>
<li>735 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/Clight_sim.vo</code></li>
<li>708 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/field_at.vo</code></li>
<li>694 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/mem_lessdef.vo</code></li>
<li>629 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/forward.vo</code></li>
<li>628 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/res_predicates.vo</code></li>
<li>547 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/compcert_rmaps.vo</code></li>
<li>537 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/efield_lemmas.vo</code></li>
<li>536 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax_prog.vo</code></li>
<li>527 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/binop_lemmas6.glob</code></li>
<li>522 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/reptype_lemmas.vo</code></li>
<li>513 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/client_lemmas.vo</code></li>
<li>504 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/expr2.vo</code></li>
<li>499 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/mem_lemmas.vo</code></li>
<li>479 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/sublist.vo</code></li>
<li>478 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/extend_tc.vo</code></li>
<li>469 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/canon.vo</code></li>
<li>467 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/rmaps_lemmas.vo</code></li>
<li>454 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/mapsto_memory_block.vo</code></li>
<li>451 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/juicy_mem_lemmas.vo</code></li>
<li>441 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/binop_lemmas5.glob</code></li>
<li>437 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/aggregate_pred.glob</code></li>
<li>435 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/data_at_rec_lemmas.vo</code></li>
<li>429 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax_loop.vo</code></li>
<li>428 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/local.vo</code></li>
<li>421 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/typecheck_lemmas.vo</code></li>
<li>414 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/nested_field_lemmas.vo</code></li>
<li>378 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/tycontext.vo</code></li>
<li>378 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax_call.glob</code></li>
<li>377 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot_full_variant.vo</code></li>
<li>366 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/closed_lemmas.vo</code></li>
<li>364 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/call_lemmas.vo</code></li>
<li>363 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/field_at.glob</code></li>
<li>358 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/for_lemmas.vo</code></li>
<li>349 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/env.vo</code></li>
<li>343 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/reach.vo</code></li>
<li>335 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/field_compat.vo</code></li>
<li>334 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/initialize.glob</code></li>
<li>334 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/globals_lemmas.vo</code></li>
<li>325 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/structured_injections.vo</code></li>
<li>324 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/sepalg_generators.vo</code></li>
<li>318 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/for_lemmas.glob</code></li>
<li>316 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/type_induction.vo</code></li>
<li>309 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/juicy_extspec.vo</code></li>
<li>308 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/client_lemmas.glob</code></li>
<li>306 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/slice.vo</code></li>
<li>303 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot_shims.vo</code></li>
<li>298 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/expr.vo</code></li>
<li>291 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/canon.glob</code></li>
<li>290 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/structured_injections.glob</code></li>
<li>285 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/juicy_mem.glob</code></li>
<li>284 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax_lemmas.glob</code></li>
<li>280 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/forward.glob</code></li>
<li>279 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/SeparationLogic.vo</code></li>
<li>270 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/Clight_new.vo</code></li>
<li>267 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax_ext.vo</code></li>
<li>267 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/align_mem.vo</code></li>
<li>263 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/SeparationLogic.glob</code></li>
<li>261 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/own.vo</code></li>
<li>260 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/predicates_sl.vo</code></li>
<li>259 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/initial_world.glob</code></li>
<li>257 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/semantics_lemmas.vo</code></li>
<li>256 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/expr_lemmas3.glob</code></li>
<li>254 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/Clight_lemmas.vo</code></li>
<li>250 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/sc_set_load_store.vo</code></li>
<li>249 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/tycontext.glob</code></li>
<li>245 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot_full.vo</code></li>
<li>244 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/expr_lemmas2.vo</code></li>
<li>242 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax_prog.glob</code></li>
<li>242 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/extend_tc.glob</code></li>
<li>240 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/Cop2.vo</code></li>
<li>236 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/call_lemmas.glob</code></li>
<li>236 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/log_normalize.vo</code></li>
<li>235 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/tree_shares.v</code></li>
<li>232 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/mem_lemmas.glob</code></li>
<li>231 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/val_lemmas.vo</code></li>
<li>231 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/log_normalize.glob</code></li>
<li>226 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/ageable.vo</code></li>
<li>226 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/compact_prod_sum.vo</code></li>
<li>224 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/local2ptree_denote.vo</code></li>
<li>222 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/reach.glob</code></li>
<li>221 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/assert_lemmas.vo</code></li>
<li>220 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/age_sepalg.vo</code></li>
<li>220 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/res_predicates.glob</code></li>
<li>219 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/functors.vo</code></li>
<li>219 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/fieldlist.vo</code></li>
<li>219 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/cross_split.vo</code></li>
<li>217 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/age_to.vo</code></li>
<li>215 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/mapsto_memory_block.glob</code></li>
<li>214 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/sublist.glob</code></li>
<li>213 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/combiner_sa.vo</code></li>
<li>212 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/juicy_mem_ops.vo</code></li>
<li>208 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/rmaps.glob</code></li>
<li>205 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/seplog_tactics.vo</code></li>
<li>205 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax_ext_oracle.vo</code></li>
<li>200 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/data_at_rec_lemmas.glob</code></li>
<li>199 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax.vo</code></li>
<li>197 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/sc_set_load_store.glob</code></li>
<li>197 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/simulations_lemmas.vo</code></li>
<li>196 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/event_semantics.vo</code></li>
<li>195 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/simulations_lemmas.glob</code></li>
<li>194 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/functional_base.vo</code></li>
<li>193 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/efield_lemmas.glob</code></li>
<li>193 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/binop_lemmas3.glob</code></li>
<li>192 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/psepalg.vo</code></li>
<li>192 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot_shims.glob</code></li>
<li>191 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/effect_interpolation_II.v</code></li>
<li>191 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/nested_pred_lemmas.vo</code></li>
<li>186 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/shares.vo</code></li>
<li>185 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/rmaps_lemmas.glob</code></li>
<li>184 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot_full_variant.glob</code></li>
<li>183 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/smt_test.vo</code></li>
<li>182 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/predicates_hered.vo</code></li>
<li>179 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/Memory.vo</code></li>
<li>178 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot_hered.vo</code></li>
<li>177 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/Clight_core.vo</code></li>
<li>176 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/nested_field_lemmas.glob</code></li>
<li>176 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/environ_lemmas.vo</code></li>
<li>172 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/align_mem.glob</code></li>
<li>170 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/expr.glob</code></li>
<li>168 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/effect_semantics.vo</code></li>
<li>168 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/Cop2.glob</code></li>
<li>167 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot_unique.vo</code></li>
<li>167 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/sepalg_list.vo</code></li>
<li>165 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/globals_lemmas.glob</code></li>
<li>165 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/mem_interpolation_II.v</code></li>
<li>165 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/freezer.vo</code></li>
<li>164 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/compcert_adapt/CminorgenproofEFF.v</code></li>
<li>162 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/entailer.vo</code></li>
<li>160 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/juicy_mem_lemmas.glob</code></li>
<li>158 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/field_at_wand.vo</code></li>
<li>158 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/composite_compute.vo</code></li>
<li>155 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/forward_lemmas.vo</code></li>
<li>154 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/go_lower.vo</code></li>
<li>153 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/seplog.vo</code></li>
<li>153 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/mem_interpolation_II.v</code></li>
<li>152 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/expr_lemmas.glob</code></li>
<li>151 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/compcert_adapt/CshmgenproofEFF.v</code></li>
<li>150 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/simulations.vo</code></li>
<li>149 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/boolean_alg.glob</code></li>
<li>149 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/change_compspecs.vo</code></li>
<li>149 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/nested_loadstore.vo</code></li>
<li>149 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax_switch.vo</code></li>
<li>149 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/closed_lemmas.glob</code></li>
<li>148 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/predicates_sa.vo</code></li>
<li>147 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/local2ptree_eval.vo</code></li>
<li>145 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot_unique.glob</code></li>
<li>144 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/expr_rel.glob</code></li>
<li>144 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/loadstore_field_at.vo</code></li>
<li>143 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax_congruence.vo</code></li>
<li>142 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot.vo</code></li>
<li>141 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/compcert_adapt/RTLgenproofEFF.v</code></li>
<li>141 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/mapsto_memory_block.vo</code></li>
<li>139 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/expr2.glob</code></li>
<li>139 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/env.glob</code></li>
<li>139 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/assert_lemmas.vo</code></li>
<li>137 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/type_induction.vo</code></li>
<li>135 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/SeparationLogicSoundness.vo</code></li>
<li>135 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/align_compatible_dec.vo</code></li>
<li>135 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/field_compat.glob</code></li>
<li>132 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/coqlib4.vo</code></li>
<li>131 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/reptype_lemmas.glob</code></li>
<li>131 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/semantics_lemmas.glob</code></li>
<li>130 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/stronger.vo</code></li>
<li>130 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/compcert_adapt/SelectionproofEFF.v</code></li>
<li>128 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/boolean_alg.vo</code></li>
<li>127 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/coqlib3.vo</code></li>
<li>126 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/alg_seplog.vo</code></li>
<li>126 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/CminorgenproofRestructured.v</code></li>
<li>125 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/seplog.vo</code></li>
<li>125 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/forward.v</code></li>
<li>124 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot_full_sa.vo</code></li>
<li>124 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/reassoc_seq.vo</code></li>
<li>123 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/forward_simulations_trans.v</code></li>
<li>123 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/aging_lemmas.vo</code></li>
<li>123 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/val_lemmas.vo</code></li>
<li>122 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/compcert_rmaps.glob</code></li>
<li>122 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/predicates_hered.glob</code></li>
<li>121 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/superprecise.vo</code></li>
<li>120 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/semax_tactics.vo</code></li>
<li>120 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/sepalg.vo</code></li>
<li>117 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/loadstore_mapsto.vo</code></li>
<li>117 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/Clight_sim.glob</code></li>
<li>117 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/compare_lemmas.vo</code></li>
<li>114 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot_full.glob</code></li>
<li>114 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/contractive.vo</code></li>
<li>113 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax.glob</code></li>
<li>113 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/ramification_lemmas.vo</code></li>
<li>113 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/local2ptree_denote.glob</code></li>
<li>113 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/replace_refill_reptype_lemmas.vo</code></li>
<li>113 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/mem_lessdef.glob</code></li>
<li>113 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/base.vo</code></li>
<li>113 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/hints.vo</code></li>
<li>113 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/loadstore_field_at.glob</code></li>
<li>113 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/step_lemmas.vo</code></li>
<li>111 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/normalize.vo</code></li>
<li>110 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/predicates_sl.glob</code></li>
<li>109 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/deadvars.vo</code></li>
<li>108 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/valid_pointer.vo</code></li>
<li>108 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/canonicalize.vo</code></li>
<li>108 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/address_conflict.vo</code></li>
<li>107 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/expr_lemmas4.glob</code></li>
<li>107 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/shares.vo</code></li>
<li>104 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/slice.glob</code></li>
<li>104 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax_call.v</code></li>
<li>103 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/forward_lemmas.glob</code></li>
<li>103 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/expr_lemmas.vo</code></li>
<li>103 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/ramification_lemmas.glob</code></li>
<li>102 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/shares.glob</code></li>
<li>102 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/library.vo</code></li>
<li>101 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax_loop.glob</code></li>
<li>101 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/Cminorgenproof.v</code></li>
<li>99 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/SequentialClight.vo</code></li>
<li>98 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/computable_theorems.vo</code></li>
<li>98 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/iter_sepcon.vo</code></li>
<li>98 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/seplog_tactics.glob</code></li>
<li>95 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/simpl_reptype.vo</code></li>
<li>94 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/effect_properties.v</code></li>
<li>94 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/effect_semantics.glob</code></li>
<li>92 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/subtypes.vo</code></li>
<li>90 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/diagnosis.vo</code></li>
<li>89 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/effect_properties.v</code></li>
<li>88 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/field_at.v</code></li>
<li>88 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/proofauto.vo</code></li>
<li>88 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/initialize.v</code></li>
<li>86 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/nested_loadstore.glob</code></li>
<li>86 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/age_to_resource_at.vo</code></li>
<li>85 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/jstep.vo</code></li>
<li>85 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/base2.vo</code></li>
<li>85 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/CminorgenproofSIM.v</code></li>
<li>83 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/client_lemmas.v</code></li>
<li>82 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/predicates_rec.vo</code></li>
<li>81 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/predicates_sa.glob</code></li>
<li>81 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/aggregate_type.vo</code></li>
<li>81 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/extcall_lemmas.vo</code></li>
<li>81 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/ageable.glob</code></li>
<li>80 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/unfold_data_at.vo</code></li>
<li>80 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/proj_reptype_lemmas.vo</code></li>
<li>80 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/extract_smt.vo</code></li>
<li>79 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/sepalg_generators.glob</code></li>
<li>78 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/local.glob</code></li>
<li>77 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/mem_lemmas.v</code></li>
<li>77 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/canon.v</code></li>
<li>77 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/sepalg_functors.vo</code></li>
<li>77 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/effect_corediagram_trans.v</code></li>
<li>77 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/fieldlist.glob</code></li>
<li>76 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot_hered.glob</code></li>
<li>76 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax_lemmas.v</code></li>
<li>76 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/structured_injections.v</code></li>
<li>76 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/freezer.glob</code></li>
<li>75 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/sepalg.glob</code></li>
<li>75 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/shares.glob</code></li>
<li>75 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/Address.vo</code></li>
<li>73 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/composite_compute.glob</code></li>
<li>73 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/cross_split.glob</code></li>
<li>73 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/Coqlib2.vo</code></li>
<li>73 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/go_lower.glob</code></li>
<li>72 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/juicy_extspec.glob</code></li>
<li>72 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/StructuredInjections.v</code></li>
<li>71 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/globalSep.vo</code></li>
<li>71 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/reach.v</code></li>
<li>70 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/subtypes_sl.vo</code></li>
<li>70 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/functors.glob</code></li>
<li>68 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax_straight.v</code></li>
<li>68 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/NullExtension.vo</code></li>
<li>68 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/age_sepalg.glob</code></li>
<li>67 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/juicy_safety.vo</code></li>
<li>67 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot_prop.vo</code></li>
<li>67 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/initial_world.v</code></li>
<li>66 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax_prog.v</code></li>
<li>66 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/effect_simulations.v</code></li>
<li>66 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/join_hom_lemmas.vo</code></li>
<li>66 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/semantics.vo</code></li>
<li>66 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/Clightnotations.vo</code></li>
<li>66 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/juicy_mem.v</code></li>
<li>66 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/own.glob</code></li>
<li>64 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/change_compspecs.glob</code></li>
<li>64 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/rmaps_lemmas.v</code></li>
<li>63 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/aggregate_pred.v</code></li>
<li>63 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/splice.vo</code></li>
<li>63 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/event_semantics.glob</code></li>
<li>63 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/Clightnew_coop.vo</code></li>
<li>63 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/contractive.glob</code></li>
<li>63 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/binop_lemmas.vo</code></li>
<li>63 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax_switch.glob</code></li>
<li>63 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/corable.vo</code></li>
<li>62 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/rmaps.v</code></li>
<li>60 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/sig_isomorphism.vo</code></li>
<li>60 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/smt_test.glob</code></li>
<li>60 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/coqlib3.glob</code></li>
<li>60 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/functional_base.glob</code></li>
<li>60 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/combiner_sa.glob</code></li>
<li>59 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/find_nth_tactic.vo</code></li>
<li>59 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/juicy_base.vo</code></li>
<li>59 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax_ext.glob</code></li>
<li>58 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/sc_set_load_store.v</code></li>
<li>58 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/computable_theorems.glob</code></li>
<li>58 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/nested_field_lemmas.v</code></li>
<li>58 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/res_predicates.v</code></li>
<li>57 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot_lemmas.vo</code></li>
<li>56 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot.glob</code></li>
<li>56 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/seplog.glob</code></li>
<li>56 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/jmeq_lemmas.vo</code></li>
<li>55 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/simulations.glob</code></li>
<li>55 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/SeparationLogic.v</code></li>
<li>55 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/entailer.glob</code></li>
<li>55 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/environ_lemmas.glob</code></li>
<li>55 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/mapsto_memory_block.glob</code></li>
<li>54 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/tycontext.v</code></li>
<li>54 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/sepalg_list.glob</code></li>
<li>54 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/juicy_mem_ops.glob</code></li>
<li>54 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/for_lemmas.v</code></li>
<li>54 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/Clight_new.glob</code></li>
<li>53 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/pshares.vo</code></li>
<li>53 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/base.vo</code></li>
<li>52 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/simulations_lemmas.v</code></li>
<li>52 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot_full_sa.glob</code></li>
<li>51 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/wandQ_frame.vo</code></li>
<li>50 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/call_lemmas.v</code></li>
<li>50 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/closed_lemmas.v</code></li>
<li>50 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/base.vo</code></li>
<li>50 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/psepalg.glob</code></li>
<li>49 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/assert_lemmas.glob</code></li>
<li>49 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/assert_lemmas.glob</code></li>
<li>48 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/superprecise.glob</code></li>
<li>48 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/effect_simulations_lemmas.v</code></li>
<li>48 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/expr.v</code></li>
<li>48 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/compact_prod_sum.glob</code></li>
<li>48 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/data_at_rec_lemmas.v</code></li>
<li>47 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/log_normalize.v</code></li>
<li>47 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/normalize.glob</code></li>
<li>47 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/mapsto_memory_block.v</code></li>
<li>47 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/cjoins.vo</code></li>
<li>47 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/effect_simulations_trans.v</code></li>
<li>47 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/ghost_seplog.vo</code></li>
<li>46 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/expr_lemmas2.glob</code></li>
<li>46 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/val_lemmas.glob</code></li>
<li>45 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/nested_field_re_lemmas.v</code></li>
<li>45 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/compcert_adapt/RTLgenspec.v</code></li>
<li>45 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/coqlib4.glob</code></li>
<li>45 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/alg_seplog_direct.vo</code></li>
<li>44 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/loadstore_mapsto.glob</code></li>
<li>44 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/align_mem.v</code></li>
<li>44 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/jmeq_lemmas.glob</code></li>
<li>44 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/local2ptree_eval.glob</code></li>
<li>44 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/iter_sepcon.glob</code></li>
<li>44 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot_shims.v</code></li>
<li>43 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax_ext_oracle.glob</code></li>
<li>43 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/sublist.v</code></li>
<li>43 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/splice.glob</code></li>
<li>43 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax_congruence.glob</code></li>
<li>43 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/corable_direct.vo</code></li>
<li>42 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/fs_linking.v</code></li>
<li>42 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/wand_frame.vo</code></li>
<li>42 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/eq_dec.vo</code></li>
<li>41 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/age_to.glob</code></li>
<li>41 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/slice.v</code></li>
<li>41 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/rmaps_lemmas.v</code></li>
<li>41 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/Clight_sim.v</code></li>
<li>41 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/Cminor.v</code></li>
<li>41 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/Clight_lemmas.glob</code></li>
<li>40 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/subtypes.glob</code></li>
<li>40 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/op_classes.vo</code></li>
<li>40 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/seplog.glob</code></li>
<li>40 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax_loop.v</code></li>
<li>40 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot_full_variant.v</code></li>
<li>40 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/semantics_lemmas.v</code></li>
<li>39 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/type_induction.glob</code></li>
<li>39 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/field_at_wand.glob</code></li>
<li>39 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/nested_pred_lemmas.glob</code></li>
<li>39 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/globals_lemmas.v</code></li>
<li>38 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/stronger.glob</code></li>
<li>38 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/seplog_tactics.v</code></li>
<li>38 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/open_semantics_preservation.v</code></li>
<li>37 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/compcert_rmaps.v</code></li>
<li>37 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/corec.vo</code></li>
<li>37 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/align_compatible_dec.glob</code></li>
<li>37 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/env.v</code></li>
<li>37 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/mem_lemmas.v</code></li>
<li>36 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/msl_classical.vo</code></li>
<li>36 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/efield_lemmas.v</code></li>
<li>36 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/rmaps.v</code></li>
<li>36 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/Memory.glob</code></li>
<li>35 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/binop_lemmas2.v</code></li>
<li>35 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/juicy_mem_lemmas.v</code></li>
<li>35 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/mem_interpolation_EI.v</code></li>
<li>35 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/msl_standard.vo</code></li>
<li>35 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/forward_lemmas.v</code></li>
<li>35 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/effect_simulations_lemmas.v</code></li>
<li>34 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/Cop2.v</code></li>
<li>34 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/msl_direct.vo</code></li>
<li>34 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/binop_lemmas4.v</code></li>
<li>33 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/predicates_sl.v</code></li>
<li>33 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/mem_lemmas.v</code></li>
<li>33 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/reptype_lemmas.v</code></li>
<li>32 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/compcert_compiler_correctness.v</code></li>
<li>32 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/binop_lemmas3.v</code></li>
<li>31 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/expr_lemmas4.v</code></li>
<li>31 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/val_lemmas.glob</code></li>
<li>31 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/deadvars.glob</code></li>
<li>30 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/predicates_hered.v</code></li>
<li>30 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/alg_seplog.glob</code></li>
<li>30 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/mem_interpolation_EE.v</code></li>
<li>29 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/mem_lessdef.v</code></li>
<li>29 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/internal_diagram_trans.v</code></li>
<li>29 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/join_hom_lemmas.glob</code></li>
<li>29 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/Clight_core.glob</code></li>
<li>28 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/shares.v</code></li>
<li>27 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/replace_refill_reptype_lemmas.glob</code></li>
<li>27 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/field_compat.v</code></li>
<li>27 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot_full.v</code></li>
<li>26 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/predicates_rec.glob</code></li>
<li>26 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/step_lemmas.glob</code></li>
<li>26 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/sepalg_generators.v</code></li>
<li>26 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/local2ptree_denote.v</code></li>
<li>25 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/semax_tactics.glob</code></li>
<li>25 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/boolean_alg.v</code></li>
<li>25 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/entailer.v</code></li>
<li>25 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/juicy_extspec.v</code></li>
<li>24 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/sig_isomorphism.glob</code></li>
<li>24 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/sepalg.v</code></li>
<li>24 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/expr_lemmas.v</code></li>
<li>24 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax.v</code></li>
<li>24 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/compare_lemmas.glob</code></li>
<li>24 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot_unique.v</code></li>
<li>24 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/Extensionality.vo</code></li>
<li>23 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/event_semantics.v</code></li>
<li>23 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/loadstore_field_at.v</code></li>
<li>23 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/ageable.v</code></li>
<li>23 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/effect_semantics.v</code></li>
<li>23 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/compcert_adapt/RTLgen.v</code></li>
<li>23 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/compiler_correctness_trans.v</code></li>
<li>23 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/sepalg_functors.glob</code></li>
<li>23 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/canonicalize.glob</code></li>
<li>22 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/mem_interpolation_IE.v</code></li>
<li>22 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot_prop.glob</code></li>
<li>22 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/subtypes_sl.glob</code></li>
<li>22 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/local.v</code></li>
<li>22 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/shares.v</code></li>
<li>22 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/age_sepalg.v</code></li>
<li>22 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/aggregate_type.glob</code></li>
<li>22 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/mem_wd.v</code></li>
<li>22 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/freezer.v</code></li>
<li>22 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/predicates_sa.v</code></li>
<li>22 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/rg_lemmas.v</code></li>
<li>21 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/ramification_lemmas.v</code></li>
<li>21 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/fieldlist.v</code></li>
<li>21 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/corable.glob</code></li>
<li>21 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/compcert_adapt/Cshmgen.v</code></li>
<li>20 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/SeparationLogicSoundness.glob</code></li>
<li>20 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/val_casted.v</code></li>
<li>20 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/compiler_correctness.v</code></li>
<li>20 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/compiler_correctness.v</code></li>
<li>20 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/go_lower.v</code></li>
<li>19 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/nested_loadstore.v</code></li>
<li>19 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/linking_proof.v</code></li>
<li>19 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/ghost.vo</code></li>
<li>19 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/effect_semantics.v</code></li>
<li>18 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot_setoid.v</code></li>
<li>18 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/psepalg.v</code></li>
<li>18 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/functional_base.v</code></li>
<li>18 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/cross_split.v</code></li>
<li>18 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/change_compspecs.v</code></li>
<li>18 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/functors.v</code></li>
<li>18 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/library.glob</code></li>
<li>18 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/safety_preservation.v</code></li>
<li>18 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/hints.glob</code></li>
<li>18 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/own.v</code></li>
<li>18 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot_hered.v</code></li>
<li>17 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/combiner_sa.v</code></li>
<li>17 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/contractive.v</code></li>
<li>17 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/composite_compute.v</code></li>
<li>17 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/compcert_adapt/Clight_eff.v</code></li>
<li>17 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax_ext.v</code></li>
<li>17 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/expr_lemmas3.v</code></li>
<li>17 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/base.glob</code></li>
<li>17 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/globalSep.glob</code></li>
<li>17 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax_switch.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/Csharpminor.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/seplog.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/valid_pointer.glob</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/sepalg_list.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/forward_simulations_lemmas.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot_lemmas.glob</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/Clightnotations.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/aging_lemmas.glob</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/Coqlib2.glob</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/pshares.glob</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/Cminorgen.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/compcert_adapt/Cminorgen.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/Clight_new.v</code></li>
<li>16 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/coqlib3.v</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/find_nth_tactic.glob</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/val_lemmas.v</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/base.glob</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/local2ptree_eval.v</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/cjoins.glob</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/superprecise.v</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/environ_lemmas.v</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/compact_prod_sum.v</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/simulations.v</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/expr_lemmas.glob</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/hints.v</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/Clight_new.v</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/typecheck_lemmas.glob</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/forward_simulations.v</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/semax_tactics.v</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/ghost_seplog.glob</code></li>
<li>15 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/juicy_mem_ops.v</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/SequentialClight.glob</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/address_conflict.glob</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/replace_refill_reptype_lemmas.v</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/Cminor_coop.v</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/expr_rel.v</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/iter_sepcon.v</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/mem_interpolation_defs.v</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/mem_interpolation_defs.v</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/assert_lemmas.v</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/extend_tc.v</code></li>
<li>14 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/age_to_resource_at.glob</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/safety_preservation.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/normalize.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/compcert_adapt/Csharpminor_coop.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/expr2.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/compcert_adapt/Clight_coop.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/assert_lemmas.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/expr_lemmas2.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/reassoc_seq.glob</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/coqlib4.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/compare_lemmas.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/Switch.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/mapsto_memory_block.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/type_induction.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/wholeprog_lemmas.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/stronger.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/computable_theorems.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax_ext_oracle.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/wholeprog_simulations.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/extspec.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/corable_direct.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/compcert_adapt/Cminor_coop.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax_congruence.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/simpl_reptype.glob</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/deadvars.v</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/compcert_adapt/CminorSel_eff.v</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/Axioms.vo</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/corec.glob</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/compcert_adapt/Csharpminor_eff.v</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot_full_sa.v</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/lift.vo</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/nested_pred_lemmas.v</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/age_to.v</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/compcert_adapt/CminorSel_coop.v</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/compcert_adapt/Cminor_eff.v</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/Csharpminor_coop.v</code></li>
<li>11 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/Clightnotations.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/subtypes.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/jmeq_lemmas.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/Clight_lemmas.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/join_hom_lemmas.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/wandQ_frame.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/smt_test.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/semantics.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/splice.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/Address.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/diagnosis.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/core_semantics.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot_hered_sa.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/Extensionality.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/seplog.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/sepalg_functors.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/compcert_adapt/RTL_eff.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/compcert_adapt/RTL_coop.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/linking_simulations.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/loadstore_mapsto.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/rg_lemmas.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/binop_lemmas.glob</code></li>
<li>9 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/core_semantics.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/binop_lemmas5.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/compcert_adapt/Selection.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/effect_simulations.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/alg_seplog.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/binop_lemmas6.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/proofauto.glob</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/align_compatible_dec.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/simple_CCC.vo</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/FiniteMaps.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/FiniteMaps.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/FiniteMaps.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/Memory.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/Coqlib2.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/op_classes.glob</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/trace_semantics.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/Ordered.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/wand_frame.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/simpl_reptype.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/globalSep.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/semax_conj_disj.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/base.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/base2.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/field_at_wand.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/alg_seplog_direct.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/type_induction.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/Clight_core.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/try.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/val_lemmas.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/trace_semantics.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/base.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/effect_interpolants.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot_prop.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/lift.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/corable.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/simple_CCC.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/nucular_semantics.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/library.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/cjoins.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/expr_rel.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/predicates_rec.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/juicy_safety.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/rep.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/SeparationLogic_Rel.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/SeparationLogicSoundness.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/subtypes_sl.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/aging_lemmas.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/sig_isomorphism.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/reassoc_seq.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/unfold_data_at.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/mem_interpolants.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/pshares.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/simple_reify.vo</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/step_lemmas.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/jstep.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/SUMMARY</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/diagnosis.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/knot_lemmas.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/README.txt</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/linking.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/canonicalize.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/eq_dec.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/lift.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/typecheck_lemmas.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/SequentialClight.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/valid_pointer.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/Extensionality.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/proj_reptype_lemmas.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/Clightnew_coop.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/address_conflict.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/proofauto.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/semantics.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/step_lemmas.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/age_to_resource_at.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/ghost.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/find_nth_tactic.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/aggregate_type.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/expr_lemmas.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/corable_direct.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/README.txt</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/simple_reify.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/unfold_data_at.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/Address.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/extract_smt.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/ghost_seplog.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/op_classes.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/ghost.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/corec.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/extcall_lemmas.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/powerlater.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/CoopCoreSem.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/extspec.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/alg_seplog_direct.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/closed_safety.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/type_induction.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/extspec.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/closed_safety.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/Clightnew_coop.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/wandQ_frame.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/base2.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/juicy_safety.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/ASTsize.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/BUILD</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/CompositionalCompiler.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/eq_dec.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/measure.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/wand_frame.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/Axioms.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/Axioms.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/simple_CCC.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/jstep.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/extract_smt.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/NullExtension.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/LICENSE</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/proj_reptype_lemmas.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/binop_lemmas.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/barebones_simulations.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/base.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/arguments.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/real_forward.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/msl_standard.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/msl_standard.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/base.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/NullExtension.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/EXTRACTION</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/ghost.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/simple_reify.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/floyd/extcall_lemmas.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/msl_direct.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/CREDITS</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/msl_direct.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit/mem_interpolation_proofs.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/sources</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/compcert.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/compcert.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/extract.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/full_composition.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/effect_interpolation_proofs.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/loadpath.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/submit_shmem/arguments.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/loadpath.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/juicy_base.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/veric/juicy_base.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/README.html</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/holes</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/msl_classical.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/sepcomp/README</code></li>
<li>1 K <code>../ocaml-base-compiler.4.03.0/lib/coq/user-contrib/VST/msl/msl_classical.v</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-vst.2.2</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
index.html
|
steve-tekwurx/steve-tekwurx.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, shrink-to-fit=no, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Simple Sidebar - Start Bootstrap Template</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/simple-sidebar.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id="wrapper">
<!-- Sidebar -->
<div id="sidebar-wrapper">
<ul class="sidebar-nav">
<li class="sidebar-brand">
<a href="#">
uControl Customer Area
</a>
</li>
<li>
<a href="documentation/home.html">Documentation</a>
</li>
<li>
<a href="#">Support</a>
</li>
<li>
<a href="#">Product Download</a>
</li>
<ul>
<li>
<a href="documentation/uPolicy_35656.html">TekWurx uControl</a>
<ul>
<li>
<a href="Release-Notes_35407.html">Release Notes</a>
</ul>
</li>
</ul>
</ul>
</div>
<!-- /#sidebar-wrapper -->
<!-- Page Content -->
<div id="page-content-wrapper">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<h1>Simple Sidebar</h1>
<p>This template has a responsive menu toggling system. The menu will appear collapsed on smaller screens, and will appear non-collapsed on larger screens. When toggled using the button below, the menu will appear/disappear. On small screens, the page content will be pushed off canvas.</p>
<p>Make sure to keep all page content within the <code>#page-content-wrapper</code>.</p>
<a href="#menu-toggle" class="btn btn-default" id="menu-toggle">Toggle Menu</a>
</div>
</div>
</div>
</div>
<!-- /#page-content-wrapper -->
</div>
<!-- /#wrapper -->
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Menu Toggle Script -->
<script>
$("#menu-toggle").click(function(e) {
e.preventDefault();
$("#wrapper").toggleClass("toggled");
});
</script>
</body>
</html>
|
clean/Linux-x86_64-4.07.1-2.0.6/released/8.8.1/ext-lib/0.9.0.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ext-lib: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.8.1 / ext-lib - 0.9.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
ext-lib
<small>
0.9.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-10 07:56:43 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-10 07:56:43 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 2 Virtual package relying on perl
coq 8.8.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.07.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.07.1 Official release 4.07.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "dev@clarus.me"
homepage: "https://github.com/coq-community/coq-ext-lib"
dev-repo: "git+https://github.com/coq-community/coq-ext-lib.git"
bug-reports: "https://github.com/coq-community/coq-ext-lib/issues"
authors: ["Gregory Malecha"]
license: "BSD-2-Clause-FreeBSD"
build: [
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
depends: [
"ocaml"
"coq" {>= "8.4pl4" & < "8.5~"}
]
synopsis: "A library of Coq definitions, theorems, and tactics"
url {
src: "https://github.com/coq-community/coq-ext-lib/archive/v0.9.0.tar.gz"
checksum: "md5=a4322811819b9bde918d5d7b48262ded"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-ext-lib.0.9.0 coq.8.8.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.8.1).
The following dependencies couldn't be met:
- coq-ext-lib -> coq < 8.5~ -> ocaml < 4.03.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-ext-lib.0.9.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.08.1-2.0.5/released/8.9.1/flocq/3.4.3.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>flocq: 11 m 50 s 🏆</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.9.1 / flocq - 3.4.3</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
flocq
<small>
3.4.3
<span class="label label-success">11 m 50 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-31 22:04:34 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-31 22:04:34 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 2 Virtual package relying on perl
coq 8.9.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.08.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.08.1 Official release 4.08.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "guillaume.melquiond@inria.fr"
homepage: "https://flocq.gitlabpages.inria.fr/"
dev-repo: "git+https://gitlab.inria.fr/flocq/flocq.git"
bug-reports: "https://gitlab.inria.fr/flocq/flocq/issues"
license: "LGPL-3.0-or-later"
build: [
["autoconf"] {dev}
["./configure"]
["./remake" "-j%{jobs}%"]
]
install: ["./remake" "install"]
depends: [
"coq" {>= "8.7"}
"conf-autoconf" {build & dev}
("conf-g++" {build} | "conf-clang" {build})
]
tags: [
"keyword:floating-point arithmetic"
"logpath:Flocq"
"date:2022-01-17"
]
authors: [
"Sylvie Boldo <sylvie.boldo@inria.fr>"
"Guillaume Melquiond <guillaume.melquiond@inria.fr>"
]
synopsis: "A formalization of floating-point arithmetic for the Coq system"
url {
src: "https://flocq.gitlabpages.inria.fr/releases/flocq-3.4.3.tar.gz"
checksum: "sha512=10f407e91e0d601b502b2c89104a8753dfcc3d9572f0fd9d007c7692d3d6c96fd5652fb103bcf2396a64236947734ee725c01f4ba2901565f9da38667f538d5a"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-flocq.3.4.3 coq.8.9.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 4h opam install -y --deps-only coq-flocq.3.4.3 coq.8.9.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>14 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 4h opam install -y -v coq-flocq.3.4.3 coq.8.9.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>11 m 50 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 16 M</p>
<ul>
<li>9 M <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Pff/Pff.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Pff/Pff.v</code></li>
<li>541 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/IEEE754/BinarySingleNaN.vo</code></li>
<li>539 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/IEEE754/Binary.vo</code></li>
<li>529 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Prop/Double_rounding.vo</code></li>
<li>321 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Pff/Pff2Flocq.vo</code></li>
<li>230 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Core/Ulp.vo</code></li>
<li>177 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Core/Generic_fmt.vo</code></li>
<li>172 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Core/Raux.vo</code></li>
<li>157 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Prop/Div_sqrt_error.vo</code></li>
<li>154 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Prop/Double_rounding.v</code></li>
<li>146 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Prop/Round_odd.vo</code></li>
<li>136 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Calc/Round.vo</code></li>
<li>130 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/IEEE754/Bits.vo</code></li>
<li>117 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Core/Round_pred.vo</code></li>
<li>114 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Prop/Relative.vo</code></li>
<li>114 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Core/Digits.vo</code></li>
<li>113 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Pff/Pff2FlocqAux.vo</code></li>
<li>103 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/IEEE754/BinarySingleNaN.v</code></li>
<li>98 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Core/Zaux.vo</code></li>
<li>96 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Calc/Bracket.vo</code></li>
<li>95 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/IEEE754/Binary.v</code></li>
<li>90 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Core/FLT.vo</code></li>
<li>85 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Prop/Plus_error.vo</code></li>
<li>85 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Pff/Pff2Flocq.v</code></li>
<li>84 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Core/Round_NE.vo</code></li>
<li>74 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Core/FLX.vo</code></li>
<li>71 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Prop/Mult_error.vo</code></li>
<li>70 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/IEEE754/SpecFloatCopy.vo</code></li>
<li>68 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Core/Ulp.v</code></li>
<li>67 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Core/Float_prop.vo</code></li>
<li>66 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Core/FTZ.vo</code></li>
<li>60 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Calc/Div.vo</code></li>
<li>56 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Calc/Sqrt.vo</code></li>
<li>53 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Core/Generic_fmt.v</code></li>
<li>52 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Calc/Operations.vo</code></li>
<li>50 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Prop/Sterbenz.vo</code></li>
<li>49 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Core/Raux.v</code></li>
<li>44 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Core/FIX.vo</code></li>
<li>43 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Core/Defs.vo</code></li>
<li>39 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Core/Core.vo</code></li>
<li>35 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Core/Round_pred.v</code></li>
<li>32 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Prop/Round_odd.v</code></li>
<li>31 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Calc/Round.v</code></li>
<li>30 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Prop/Div_sqrt_error.v</code></li>
<li>29 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Prop/Relative.v</code></li>
<li>27 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Core/Digits.v</code></li>
<li>24 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Pff/Pff2FlocqAux.v</code></li>
<li>24 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/IEEE754/SpecFloatCompat.vo</code></li>
<li>22 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Version.vo</code></li>
<li>21 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/IEEE754/Bits.v</code></li>
<li>19 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Core/Zaux.v</code></li>
<li>17 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Calc/Bracket.v</code></li>
<li>17 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Prop/Plus_error.v</code></li>
<li>14 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Core/Round_NE.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Core/FLT.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/IEEE754/SpecFloatCopy.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Core/Float_prop.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Prop/Mult_error.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Core/FLX.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Core/FTZ.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Calc/Sqrt.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Calc/Div.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Prop/Sterbenz.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Calc/Operations.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Core/Defs.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Core/FIX.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Version.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/Core/Core.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Flocq/IEEE754/SpecFloatCompat.v</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-flocq.3.4.3</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.10.1-2.0.6/released/8.12.0/algebra/8.5.0.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>algebra: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.12.0 / algebra - 8.5.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
algebra
<small>
8.5.0
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2021-04-03 05:58:56 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-04-03 05:58:56 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.12.0 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.10.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.10.1 Official release 4.10.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "matej.kosik@inria.fr"
homepage: "https://github.com/coq-contribs/algebra"
license: "LGPL 2"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Algebra"]
depends: [
"ocaml"
"coq" {>= "8.5" & < "8.6~"}
]
tags: [ "keyword:algebra" "category:Mathematics/Algebra" "date:1999-03" ]
authors: [ "Loïc Pottier <>" ]
bug-reports: "https://github.com/coq-contribs/algebra/issues"
dev-repo: "git+https://github.com/coq-contribs/algebra.git"
synopsis: "Basics notions of algebra"
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/algebra/archive/v8.5.0.tar.gz"
checksum: "md5=9ef1b5f1f670d56a55aef37d8c511df9"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-algebra.8.5.0 coq.8.12.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.12.0).
The following dependencies couldn't be met:
- coq-algebra -> coq < 8.6~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-algebra.8.5.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
html/sessionList.html
|
tachk/DnD-Stats-Tracker
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Tabletop Sabermetrics - Campaign List</title>
<link rel="stylesheet" href="css/custom-nonbootstrap.css">
<!-- Bootstrap -->
<!-- <link href="css/bootstrap.min.css" rel="stylesheet"> -->
<!-- <link href="css/bootstrap-theme.min.css" rel="stylesheet"> -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/jumbotron-narrow.css">
<link rel="stylesheet" href="css/sticky-footer.css">
<!-- Firebase -->
<script src="https://cdn.firebase.com/js/client/2.2.1/firebase.js"></script>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<!-- <script src="js/bootstrap.min.js"></script> -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<header id="header" class="header clearfix">
<h4 class="text-muted">Tabletop Sabermetrics</h4>
<div id="divUserContext-loggedIn">
Signed in as <span id="spanUsername"></span> (<a id="linkSignout" href="#">log out</a>)
</div>
<div id="divUserContext-loggedOut" hidden="true">
Please click the button below to log in.
</div>
</header>
<!-- TODO: Load in session list w/buttons based on data in Firebase -->
<h4>Session List</h4><br>
<div id="noCampaignChosen" class="jumbotron" hidden="true">
We can't load a list of sessions because you haven't picked a campaign. You need to go back to the campaign list and click on one of the <strong>choose this campaign</strong> buttons to load a campaign's session list.
<br><br><br>
<a href="campaignList.html">
<button id="btnChooseCampaign" type="button" class="btn btn-lg btn-success">Go back and choose a campaign</button>
</a>
</div>
<div id="noSessionsInCampaign" class="jumbotron" hidden="true">
There aren't any sessions associated with this campaign yet. You first need to <strong>create a session</strong> to create a session and record stats.
<br><br><br>
<button id="btnAddSessionUpsell" type="button" class="btn btn-lg btn-success" data-toggle="modal" data-target="#addSession">Create a new session</button>
</div>
<table id="tblSessionList" class="plain table"></table>
<br><br><br>
<button id="btnAddSession" type="button" class="btn btn-xs btn-success" data-toggle="modal" data-target="#addSession">+ Add session</button>
<br><br><br>
<a href="/">
<button type="button" class="btn btn-xs btn-default" id="btnGoHome">Go home</button>
</a>
<a href="campaignList.html">
<button type="button" class="btn btn-xs btn-primary" id="btnGoBack">Go back</button>
</a>
<div class="modal fade" id="addSession" tabindex="-1" role="dialog" aria-labelledby="addSessionDialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label"Close"><span aria-hidden="true">×</span></button>
<h5 class="modal-title" id="addSessionDialogLabel">Add a new session</h5>
</div>
<div class="modal-body">
<form>
<div class="form-group">
<label for="sessionName" class="control-label">Session name:</label>
<input class="form-control" id="sessionName" placeholder="Enter the session's name here (suggestion: use the session's date as its name)">
<br>
<label for="pcNames" class="control-label">Player characters' names:</label>
<input class="form-control" id="pcNames" placeholder="Enter the player characters' names, separated by commas">
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
<input type="submit" class="btn btn-primary" id="btnSaveSession" data-dismiss="modal" value="Save and start recording session stats">
</div>
</div>
</div>
</div>
</div>
<footer class="footer" id="footer-2016"></footer>
<script src="js/main.js"></script>
</div>
</body>
</html>
|
clean/Linux-x86_64-4.09.1-2.0.6/released/8.7.2/automata/8.6.0.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>automata: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.2 / automata - 8.6.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
automata
<small>
8.6.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-21 01:02:06 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-21 01:02:06 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.7.2 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.09.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.09.1 Official release 4.09.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/automata"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Automata"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
]
tags: [
"keyword: formal language theory"
"keyword: finite automata"
"keyword: push-down automata"
"keyword: rational langages"
"keyword: Kleene"
"category: Computer Science/Formal Languages Theory and Automata"
"date: June-July 1993"
]
authors: [ "Judicaël Courant" "Jean-Christophe Filliâtre" ]
bug-reports: "https://github.com/coq-contribs/automata/issues"
dev-repo: "git+https://github.com/coq-contribs/automata.git"
synopsis: "Beginning of formal language theory"
description: """
This library formalises the beginning of formal language theory:
finite automata and rational languages, context-free grammars
and push-down automata."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/automata/archive/v8.6.0.tar.gz"
checksum: "md5=ff3d1debdb8c1d47993e5bb235e6077e"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-automata.8.6.0 coq.8.7.2</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.7.2).
The following dependencies couldn't be met:
- coq-automata -> coq < 8.7~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-automata.8.6.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.12.0-2.0.8/extra-dev/dev/abp/8.6.0.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>abp: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / extra-dev</a></li>
<li class="active"><a href="">dev / abp - 8.6.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
abp
<small>
8.6.0
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2021-10-27 02:59:51 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-10-27 02:59:51 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 3 Virtual package relying on a GMP lib system installation
coq dev Formal proof management system
dune 2.9.1 Fast, portable, and opinionated build system
ocaml 4.12.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.12.0 Official release 4.12.0
ocaml-config 2 OCaml Switch Configuration
ocaml-options-vanilla 1 Ensure that OCaml is compiled with no special options enabled
ocamlfind 1.9.1 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/abp"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/ABP"]
depends: [
"ocaml"
"coq" {>= "8.6" & < "8.7~"}
]
tags: [ "keyword: alternating bit protocol" "keyword: process calculi" "keyword: reactive systems" "keyword: co-inductive types" "keyword: co-induction" "category: Computer Science/Concurrent Systems and Protocols/Correctness of specific protocols" ]
authors: [ "Eduardo Giménez" ]
bug-reports: "https://github.com/coq-contribs/abp/issues"
dev-repo: "git+https://github.com/coq-contribs/abp.git"
synopsis: "A verification of the alternating bit protocol expressed in CBS"
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/abp/archive/v8.6.0.tar.gz"
checksum: "md5=8cf5c60e71404a027f66f1e38d357e64"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-abp.8.6.0 coq.dev</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is dev).
The following dependencies couldn't be met:
- coq-abp -> coq < 8.7~ -> ocaml < 4.06.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-abp.8.6.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.10.0-2.0.6/released/8.11.1/flocq-quickchick/1.0.0.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>flocq-quickchick: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.11.1 / flocq-quickchick - 1.0.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
flocq-quickchick
<small>
1.0.0
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-08-20 03:22:08 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-08-20 03:22:08 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.11.1 Formal proof management system
num 1.3 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.10.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.10.0 Official release 4.10.0
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
name: "coq-flocq-quickchick"
version: "1.0.0"
synopsis: "Flocq binary_float generators for QuickChick testing framework"
maintainer: "Yaroslav Kogevnikov <ykozhevnikov@codeminders.com>"
authors: "Yaroslav Kogevnikov <ykozhevnikov@codeminders.com>"
license: "MIT"
homepage: "https://github.com/digamma-ai/flocq-quickchick"
bug-reports: "https://github.com/digamma-ai/flocq-quickchick/issues"
depends: [
"coq" {= "8.8.2"}
"coq-quickchick" {>= "1.0.2"}
"coq-flocq" {= "3.1.0"}
]
build: [
["coq_makefile" "-f" "_CoqProject" "-o" "Makefile"]
[make]
]
install: [make "install"]
dev-repo: "git+https://github.com/digamma-ai/flocq-quickchick.git"
url {
src: "https://github.com/digamma-ai/flocq-quickchick/archive/1.0.0.tar.gz"
checksum: "md5=54ce38b1aa1bfbb9dc52709e2be0eb8f"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-flocq-quickchick.1.0.0 coq.8.11.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.11.1).
The following dependencies couldn't be met:
- coq-flocq-quickchick -> coq = 8.8.2 -> ocaml < 4.10
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-flocq-quickchick.1.0.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.11.2-2.0.7/released/8.13.0/fairisle/8.7.0.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>fairisle: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.13.0 / fairisle - 8.7.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
fairisle
<small>
8.7.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-03-01 08:37:47 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-03-01 08:37:47 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 4 Virtual package relying on a GMP lib system installation
coq 8.13.0 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.11.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.11.2 Official release 4.11.2
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/fairisle"
license: "LGPL 2.1"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Fairisle"]
depends: [
"ocaml"
"coq" {>= "8.7" & < "8.8~"}
]
tags: [
"keyword: circuits"
"keyword: automata"
"keyword: co-induction"
"keyword: dependent types"
"category: Computer Science/Architecture"
"date: 2005-12-15"
]
authors: [ "Solange Coupet-Grimal <Solange.Coupet@lif.univ-mrs.fr> [http://www.cmi.univ-mrs.fr/~solange/]" "Line Jakubiec-Jamet <Line.Jakubiec@lif.univ-mrs.fr> [http://www.dil.univ-mrs.fr/~jakubiec/]" ]
bug-reports: "https://github.com/coq-contribs/fairisle/issues"
dev-repo: "git+https://github.com/coq-contribs/fairisle.git"
synopsis: "Proof of the Fairisle 4x4 Switch Element"
description: """
http://www.dil.univ-mrs.fr/~jakubiec/fairisle.tar.gz
This library contains the development of general definitions dedicated
to the verification of sequential synchronous devices (based on Moore and Mealy automata)
and the formal verification of the Fairisle 4x4 Switch Element."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/fairisle/archive/v8.7.0.tar.gz"
checksum: "md5=709bcd94237492a8980a2807936b80b5"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-fairisle.8.7.0 coq.8.13.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.13.0).
The following dependencies couldn't be met:
- coq-fairisle -> coq < 8.8~ -> ocaml < 4.10
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-fairisle.8.7.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.02.3-2.0.6/released/8.5.2~camlp4/switch/1.0.2.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>switch: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.5.2~camlp4 / switch - 1.0.2</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
switch
<small>
1.0.2
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-31 22:37:26 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-31 22:37:26 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-ocamlbuild base OCamlbuild binary and libraries distributed with the OCaml compiler
base-threads base
base-unix base
camlp4 4.02+7 Camlp4 is a system for writing extensible parsers for programming languages
conf-findutils 1 Virtual package relying on findutils
conf-which 1 Virtual package relying on which
coq 8.5.2~camlp4 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.02.3 The OCaml compiler (virtual package)
ocaml-base-compiler 4.02.3 Official 4.02.3 release
ocaml-config 1 OCaml Switch Configuration
ocamlbuild 0 Build system distributed with the OCaml compiler since OCaml 3.10.0
# opam file:
opam-version: "2.0"
maintainer: "vzaliva@cmu.edu"
homepage: "https://github.com/vzaliva/coq-switch"
dev-repo: "git://git@github.com:vzaliva/coq-switch.git"
bug-reports: "https://github.com/vzaliva/coq-switch/issues"
authors: ["Vadim Zaliva <vzaliva@cmu.edu>"]
license: "MIT"
build: [
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
depends: [
"coq" {>= "8.10.2"}
"coq-metacoq-template" {>= "1.0~alpha2+8.10" & < "1.0~beta1"}
]
tags: [
"category:Miscellaneous/Coq Extensions"
"date:2020-03-13"
"logpath:Switch"
]
synopsis: "A plugin to implement functionality similar to `switch` statement in C language."
description: """It allows easier dispatch on several constant values
of a type with decidable equality. Given a type, boolean equality
predicate, and list of choices, it will generate (using TemplateCoq)
an inductive type with constructors, one for each of the choices, and
a function mapping values to this type."""
url {
src: "https://github.com/vzaliva/coq-switch/archive/v1.0.2.tar.gz"
checksum: "51ad3d8d53edb2334854d8bc976b75ed"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-switch.1.0.2 coq.8.5.2~camlp4</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.5.2~camlp4).
The following dependencies couldn't be met:
- coq-switch -> coq >= 8.10.2 -> ocaml >= 4.05.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-switch.1.0.2</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.06.1-2.0.5/released/8.14.1/flocq/4.0.0.html
|
coq-bench/coq-bench.github.io
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>flocq: 6 m 50 s 🏆</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.14.1 / flocq - 4.0.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
flocq
<small>
4.0.0
<span class="label label-success">6 m 50 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-29 02:51:29 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-29 02:51:29 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 3 Virtual package relying on a GMP lib system installation
coq 8.14.1 Formal proof management system
dune 2.9.1 Fast, portable, and opinionated build system
ocaml 4.06.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.06.1 Official 4.06.1 release
ocaml-config 1 OCaml Switch Configuration
ocaml-secondary-compiler 4.08.1-1 OCaml 4.08.1 Secondary Switch Compiler
ocamlfind 1.9.1 A library manager for OCaml
ocamlfind-secondary 1.9.1 Adds support for ocaml-secondary-compiler to ocamlfind
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "guillaume.melquiond@inria.fr"
homepage: "https://flocq.gitlabpages.inria.fr/"
dev-repo: "git+https://gitlab.inria.fr/flocq/flocq.git"
bug-reports: "https://gitlab.inria.fr/flocq/flocq/issues"
license: "LGPL-3.0-or-later"
build: [
["autoconf"] {dev}
["./configure"]
["./remake" "-j%{jobs}%"]
]
install: ["./remake" "install"]
depends: [
"coq" {>= "8.12"}
"conf-autoconf" {build & dev}
("conf-g++" {build} | "conf-clang" {build})
]
tags: [
"keyword:floating-point arithmetic"
"logpath:Flocq"
"date:2021-11-05"
]
authors: [
"Sylvie Boldo <sylvie.boldo@inria.fr>"
"Guillaume Melquiond <guillaume.melquiond@inria.fr>"
]
synopsis: "A formalization of floating-point arithmetic for the Coq system"
url {
src: "https://flocq.gitlabpages.inria.fr/releases/flocq-4.0.0.tar.gz"
checksum: "sha512=fa58ea6d735cdb0b65dd7cd11daaebc3172145626d8e0accabddaf336c486f8e54b4af246aabb0c1731ebb8fe0d37c9e7a3892128b9aa3e744f93af48f923f05"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-flocq.4.0.0 coq.8.14.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 4h opam install -y --deps-only coq-flocq.4.0.0 coq.8.14.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>14 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 4h opam install -y -v coq-flocq.4.0.0 coq.8.14.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>6 m 50 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 9 M</p>
<ul>
<li>3 M <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Pff/Pff.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Pff/Pff.v</code></li>
<li>535 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Prop/Double_rounding.vo</code></li>
<li>521 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/IEEE754/BinarySingleNaN.vo</code></li>
<li>297 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/IEEE754/Binary.vo</code></li>
<li>228 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Pff/Pff2Flocq.vo</code></li>
<li>215 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Core/Ulp.vo</code></li>
<li>170 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Core/Raux.vo</code></li>
<li>170 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Core/Generic_fmt.vo</code></li>
<li>154 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Prop/Double_rounding.v</code></li>
<li>140 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Prop/Div_sqrt_error.vo</code></li>
<li>133 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Calc/Round.vo</code></li>
<li>123 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Prop/Round_odd.vo</code></li>
<li>121 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Core/Round_pred.vo</code></li>
<li>117 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/IEEE754/Bits.vo</code></li>
<li>106 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Core/Digits.vo</code></li>
<li>105 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Prop/Relative.vo</code></li>
<li>103 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/IEEE754/BinarySingleNaN.v</code></li>
<li>96 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Pff/Pff2FlocqAux.vo</code></li>
<li>95 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Core/Zaux.vo</code></li>
<li>92 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Calc/Bracket.vo</code></li>
<li>85 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Pff/Pff2Flocq.v</code></li>
<li>83 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/IEEE754/PrimFloat.vo</code></li>
<li>82 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Core/FLT.vo</code></li>
<li>78 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Prop/Plus_error.vo</code></li>
<li>77 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Core/Round_NE.vo</code></li>
<li>68 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Core/Ulp.v</code></li>
<li>67 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Core/FLX.vo</code></li>
<li>63 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Prop/Mult_error.vo</code></li>
<li>59 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Core/Float_prop.vo</code></li>
<li>58 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Core/FTZ.vo</code></li>
<li>54 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Calc/Div.vo</code></li>
<li>53 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Core/Generic_fmt.v</code></li>
<li>52 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Calc/Plus.vo</code></li>
<li>51 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Calc/Sqrt.vo</code></li>
<li>49 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Core/Raux.v</code></li>
<li>44 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Calc/Operations.vo</code></li>
<li>43 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Prop/Sterbenz.vo</code></li>
<li>36 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Core/FIX.vo</code></li>
<li>35 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/IEEE754/Binary.v</code></li>
<li>35 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Core/Round_pred.v</code></li>
<li>34 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Core/Defs.vo</code></li>
<li>32 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Prop/Round_odd.v</code></li>
<li>31 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Calc/Round.v</code></li>
<li>30 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Prop/Div_sqrt_error.v</code></li>
<li>29 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Prop/Relative.v</code></li>
<li>29 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Core/Core.vo</code></li>
<li>27 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Core/Digits.v</code></li>
<li>24 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Pff/Pff2FlocqAux.v</code></li>
<li>21 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/IEEE754/Bits.v</code></li>
<li>21 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Core/Zaux.v</code></li>
<li>18 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Calc/Bracket.v</code></li>
<li>17 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Prop/Plus_error.v</code></li>
<li>14 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Core/Round_NE.v</code></li>
<li>14 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Version.vo</code></li>
<li>14 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/IEEE754/PrimFloat.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Core/FLT.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Core/Float_prop.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Prop/Mult_error.v</code></li>
<li>9 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Core/FLX.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Core/FTZ.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Calc/Sqrt.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Calc/Div.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Calc/Plus.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Prop/Sterbenz.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Calc/Operations.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Core/Defs.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Core/FIX.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Version.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Flocq/Core/Core.v</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-flocq.4.0.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.