forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
github-actions
committed
Jan 31, 2024
1 parent
da99beb
commit 48ff317
Showing
3,952 changed files
with
2,898,224 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
8076 |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
>Submitter-Id: <Your id> | ||
>Originator: <Your name> | ||
>Organization: <The name of your company> | ||
>Confidential: <[yes | no ] (one line)> | ||
>Synopsis: <synopsis of the problem (one line)> | ||
>Severity: < [non-critical | serious | critical ] (one line)> | ||
>Priority: < [ low | medium | high ] (one line)> | ||
>Category: <product, component or concept name> | ||
>Class: < [ sw-bug | doc-bug | change-request | support ] (one line)> | ||
>Release: <Release version, e.g. OTP 27, Erlang 14.2.1> | ||
>Environment: | ||
<machine, os, target, libraries (multiple lines)> | ||
>Description: | ||
<precise description of the problem (multiple lines)> | ||
>How-To-Repeat: | ||
<code/input/activities to reproduce the problem (multiple lines) | ||
>Fix: | ||
<How to correct or work around the problem, if known | ||
(multiple lines)> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
# [Erlang/OTP](https://www.erlang.org) | ||
|
||
**Erlang** is a programming language and runtime system for building massively scalable soft real-time systems with requirements on high availability. | ||
|
||
**OTP** is a set of Erlang libraries, which consists of the Erlang runtime system, a number of ready-to-use components mainly written in Erlang, and a set of design principles for Erlang programs. [Learn more about Erlang and OTP](http://erlang.org/doc/system_architecture_intro/sys_arch_intro.html). | ||
|
||
[Learn how to program in Erlang](http://learnyousomeerlang.com/). | ||
|
||
## Examples | ||
|
||
There are several examples [on the website](http://erlang.org/faq/getting_started.html) to help you get started. The below example defines a function `world/0` that prints "Hello, world" in the Erlang shell: | ||
|
||
```erlang | ||
-module(hello). | ||
-export([world/0]). | ||
|
||
world() -> io:format("Hello, world\n"). | ||
``` | ||
|
||
Save the file as `hello.erl` and run `erl` to enter the Erlang shell to compile the module. | ||
|
||
```sh | ||
Erlang/OTP 24 [erts-12.2] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1] [jit] | ||
|
||
Eshell V12.2 (abort with ^G) | ||
1> c(hello). | ||
{ok,hello} | ||
2> hello:world(). | ||
Hello, world | ||
ok | ||
``` | ||
|
||
Learn more about the Erlang syntax of [modules](http://erlang.org/doc/reference_manual/modules.html), [functions](http://erlang.org/doc/reference_manual/functions.html) and [expressions](http://erlang.org/doc/reference_manual/expressions.html) on [Erlang.org](https://www.erlang.org). | ||
|
||
## Installation | ||
|
||
### Binary Distributions | ||
|
||
Erlang/OTP is available as pre-built binary packages by most OS package managers. | ||
|
||
```sh | ||
apt-get install erlang | ||
``` | ||
|
||
### Compiling from source | ||
|
||
To compile Erlang from source, run the following commands. The complete building and installation instructions [can be found here](HOWTO/INSTALL.md). | ||
|
||
```sh | ||
git clone https://github.com/erlang/otp.git | ||
cd otp | ||
``` | ||
|
||
Checkout the branch or tag of your choice | ||
|
||
```sh | ||
git checkout maint-25 # current latest stable version | ||
``` | ||
|
||
Configure, build and install | ||
|
||
```sh | ||
./configure | ||
make | ||
make install | ||
``` | ||
|
||
Alternatively, you can use [Kerl](https://github.com/kerl/kerl), a script that lets you easily build Erlang with a few commands. | ||
|
||
## Bug Reports | ||
|
||
Please visit our [GitHub Issues](https://github.com/erlang/otp/issues) page for reporting bugs. The instructions for submitting bugs reports [can be found here](https://github.com/erlang/otp/wiki/Bug-reports). | ||
|
||
### Security Disclosure | ||
|
||
We take security bugs in Erlang/OTP seriously. Please disclose the issues regarding security by sending an email to **erlang-security [at] erlang [dot] org** and not by creating a public issue. | ||
|
||
## Contributing | ||
|
||
We are grateful to the community for contributing bug fixes and improvements. Read below to learn how you can take part in improving Erlang/OTP. We appreciate your help! | ||
|
||
### Contribution Guide | ||
|
||
Read our [contribution guide](CONTRIBUTING.md) to learn about our development process, how to propose fixes and improvements, and how to test your changes to Erlang/OTP before submitting a pull request. | ||
|
||
### Help Wanted | ||
|
||
We have a list of [Help Wanted](https://github.com/erlang/otp/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22) bugs that we would appreciate external help from the community. This is a great place to get involved. | ||
|
||
## Awesome-Erlang | ||
|
||
You can find more projects, tools and articles related to Erlang/OTP on the [awesome-erlang list](https://github.com/drobakowski/awesome-erlang). Add your project there. | ||
|
||
## License | ||
|
||
Erlang/OTP is released under the [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0). | ||
|
||
> %CopyrightBegin% | ||
> | ||
> Copyright Ericsson AB 2010-2023. All Rights Reserved. | ||
> | ||
> Licensed under the Apache License, Version 2.0 (the "License"); | ||
> you may not use this file except in compliance with the License. | ||
> You may obtain a copy of the License at | ||
> | ||
> http://www.apache.org/licenses/LICENSE-2.0 | ||
> | ||
> Unless required by applicable law or agreed to in writing, software | ||
> distributed under the License is distributed on an "AS IS" BASIS, | ||
> WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
> See the License for the specific language governing permissions and | ||
> limitations under the License. | ||
> | ||
> %CopyrightEnd% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | ||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | ||
<!-- autogenerated by 'ct_logs' --> | ||
<head> | ||
<title>All test runs in "ct_logs" </title> | ||
<meta http-equiv="cache-control" content="no-cache"></meta> | ||
<meta http-equiv="content-type" content="text/html; charset=utf-8"></meta> | ||
<link rel="stylesheet" href="ct_default.css" type="text/css"></link> | ||
<script type="text/javascript" src="jquery-latest.js"></script> | ||
<script type="text/javascript" src="jquery.tablesorter.min.js"></script> | ||
<script type="text/javascript"> | ||
// Parser for date format, e.g: Wed Jul 4 2012 11:24:15 | ||
var monthNames = {}; | ||
monthNames["Jan"] = "01"; monthNames["Feb"] = "02"; | ||
monthNames["Mar"] = "03"; monthNames["Apr"] = "04"; | ||
monthNames["May"] = "05"; monthNames["Jun"] = "06"; | ||
monthNames["Jul"] = "07"; monthNames["Aug"] = "08"; | ||
monthNames["Sep"] = "09"; monthNames["Oct"] = "10"; | ||
monthNames["Nov"] = "11"; monthNames["Dec"] = "12"; | ||
$.tablesorter.addParser({ | ||
id: 'CTDateSorter', | ||
is: function(s) { | ||
return false; }, | ||
format: function(s) { | ||
if (s.length < 2) return 999999999; | ||
else { | ||
var date = s.match(/(\w{3})\s(\w{3})\s(\d{2})\s(\d{4})\s(\d{2}):(\d{2}):(\d{2})/); | ||
var y = date[4]; var mo = monthNames[date[2]]; var d = String(date[3]); | ||
var h = String(date[5]); var mi = String(date[6]); var sec = String(date[7]); | ||
return (parseInt('' + y + mo + d + h + mi + sec)); }}, | ||
type: 'numeric' }); | ||
// Parser for general text format | ||
$.tablesorter.addParser({ | ||
id: 'CTTextSorter', | ||
is: function(s) { | ||
return false; }, | ||
format: function(s) { | ||
if (s.length < 1) return 'zzzzzzzz'; | ||
else if (s == "?") return 'zzzzzzz'; | ||
else if (s == "-") return 'zzzzzz'; | ||
else if (s == "FAILED") return 'A'; | ||
else if (s == "SKIPPED") return 'B'; | ||
else if (s == "OK") return 'C'; | ||
else return '' + s; }, | ||
type: 'text' }); | ||
// Parser for numerical values | ||
$.tablesorter.addParser({ | ||
id: 'CTValSorter', | ||
is: function(s) { | ||
return false; }, | ||
format: function(s) { | ||
if (s.length < 1) return '-2'; | ||
else if (s == "?") return '-1'; | ||
else if ((s.search(/(\d{1,})\s/)) >= 0) { | ||
var num = s.match(/(\d{1,})\s/); | ||
return (parseInt('' + num[1])); } | ||
else if ((s.search(/(\d{1,})\.(\d{3})s/)) >= 0) { | ||
var num = s.match(/(\d{1,})\.(\d{3})/); | ||
if (num[1] == "0") return (parseInt('' + num[2])); | ||
else return (parseInt('' + num[1] + num[2])); } | ||
else return '' + s; }, | ||
type: 'numeric' }); | ||
$(document).ready(function() { | ||
$("#SortableTable").tablesorter({ | ||
headers: { | ||
0: { sorter: 'CTDateSorter' }, | ||
1: { sorter: 'CTTextSorter' }, | ||
2: { sorter: 'CTTextSorter' }, | ||
3: { sorter: 'CTValSorter' }, | ||
4: { sorter: 'CTTextSorter' }, | ||
5: { sorter: 'CTValSorter' }, | ||
6: { sorter: 'CTValSorter' }, | ||
7: { sorter: 'CTValSorter' }, | ||
8: { sorter: 'CTValSorter' }, | ||
9: { sorter: 'CTValSorter' } | ||
} | ||
}); | ||
$("#SortableTable").trigger("update"); | ||
$("#SortableTable").trigger("appendCache"); | ||
}); | ||
</script> | ||
</head> | ||
<body> | ||
<center> | ||
<h1>All test runs in "ct_logs"</h1> | ||
</center> | ||
<br /> | ||
<center> | ||
<div id="button_holder" class="btn"> | ||
<a href="index.html">TEST INDEX PAGE</a> | ||
</div><br /><br /> | ||
<table id="SortableTable"> | ||
<thead> | ||
<tr> | ||
<th><b>History</b></th> | ||
<th><b>Node</b></th> | ||
<th><b>Label</b></th> | ||
<th>Tests</th> | ||
<th><b>Test Names</b></th> | ||
<th>Total</th> | ||
<th>Ok</th> | ||
<th>Failed</th> | ||
<th>Skipped<br>(User/Auto)</th> | ||
<th>Missing<br>Suites</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr class="odd"> | ||
<td><a href="[email protected]_12.52.30/index.html">Wed Jan 31 2024 12:52:30</a><td align=center>test_server@a50b6430705a</td> | ||
<td align=center><b>-</b></td> | ||
<td align=right>1</td> | ||
<td align=center title='make_test_dir.system_test'> make_test_dir.system_test</td> | ||
<td align=right>109</td> | ||
<td align=right>107</td> | ||
<td align=right>0</td> | ||
<td align=right>2 (2/0)</td> | ||
<td align=right>0</td> | ||
</td> | ||
</tr> | ||
<tr class="even"> | ||
<td><a href="[email protected]_11.50.50/index.html">Wed Jan 31 2024 11:50:50</a><td align=center>test_server@501c2b382c8b</td> | ||
<td align=center><b>-</b></td> | ||
<td align=right>1</td> | ||
<td align=center title='make_test_dir.kernel_test'> make_test_dir.kernel_test</td> | ||
<td align=right>1605</td> | ||
<td align=right>1302</td> | ||
<td align=right><font color="red">3</font></td> | ||
<td align=right>300 (278/<font color="brown">22</font>)</td> | ||
<td align=right>0</td> | ||
</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</center> | ||
<br /><br /> | ||
<center> | ||
<div class="copyright">Copyright © 2024 <a href="http://www.erlang.org">Open Telecom Platform</a><br /> | ||
Updated: <!--date-->Wed Jan 31 2024 12:57:46<!--/date--><br /> | ||
</div> | ||
</center> | ||
</body> | ||
</html> |
Oops, something went wrong.