doc_id
stringlengths
36
36
metadata
dict
input
stringlengths
28
4.3k
output
stringlengths
11
5.45k
0737a881-a2fb-4ea2-bd52-187a8637e6f5
{ "language": "Arduino" }
```arduino ``` Add arduino serial test sketch
```arduino void setup() { Serial.begin(9600); Serial.println("Application Started"); } void loop() { Serial.println("Hello From The Other Side!"); delay(1000); } ```
e09c9f4c-21c5-402d-ac52-0cfa3242ccdf
{ "language": "Arduino" }
```arduino ``` Add string equivalent example for teensy
```arduino /* Prototypical arduino/teensy code. This one sends things as chars, which allows it to be a bit more flexible, at the cost of efficiency. For example, sending the timestamp + two analog channels takes 8 bytes in the more efficient code, but ~15 bytes in this code. Additionally, you would need to parse the s...
b99b6046-a590-4062-86e5-dbbca3b798a9
{ "language": "Arduino" }
```arduino ``` Add demo which uses the Wire library
```arduino // This example demonstrates how to use the HIH61xx class with the Wire library. The HIH61xx state machine // enables others tasks to run whilst the HIH61xx is powering up etc. #include <Wire.h> #include <HIH61xx.h> #include <AsyncDelay.h> // The "hih" object must be created with a reference to the "Wire" ...
0a77ff0c-a01a-4113-9513-9208cb980389
{ "language": "Arduino" }
```arduino ``` Add draft of Arduino Read SD/Write Lights loop
```arduino #include <SPI.h> #include <SdFat.h> #include <FAB_LED.h> apa106<D, 6> LEDstrip; rgb frame[200]; // Test with reduced SPI speed for breadboards. // Change spiSpeed to SPI_FULL_SPEED for better performance // Use SPI_QUARTER_SPEED for even slower SPI bus speed const uint8_t spiSpeed = SPI_FULL_SPEED; //--...
6da43531-f46b-4051-b8e0-47fb26435122
{ "language": "Arduino" }
```arduino ``` Add example of outputting an analog read value
```arduino /* AnalogReadEasyctrl Reads an analog input on pin 0. Attach the center pin of a potentiometer to pin A0, and the outside pins to +5V and ground. This example code is based on the Arduino example AnalogReadSerial */ #include "easyctrl.h" Monitored<int> sensorValue("sensorValue"); // the setup ro...
d530601e-3a96-4db6-bfd7-1ddfd13b55db
{ "language": "Arduino" }
```arduino ``` Add example code for Kelvinator A/C control.
```arduino #include <IRKelvinator.h> IRKelvinatorAC kelvir(D1); // IR led controlled by Pin D1. void printState() { // Display the settings. Serial.println("Kelvinator A/C remote is in the following state:"); Serial.printf(" Basic\n Power: %d, Mode: %d, Temp: %dC, Fan Speed: %d\n", kelvir.g...
e8c9436a-113d-49db-a2ba-1147b7416032
{ "language": "Arduino" }
```arduino ``` Add validation of DS18B20 temperature calculation.
```arduino /** * @file CosaDS18B20calc.ino * @version 1.0 * * @section License * Copyright (C) 2015, Mikael Patel * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * vers...
e36a8b6a-c01c-4b5a-a201-7c80d20ff6ed
{ "language": "Arduino" }
```arduino ``` Add Kevyn's original clear button sketch
```arduino /* Kevyn McPhail Deeplocal FOB Receiving module code If Button A is pressed the the arduino returns 1, if button 2 is pressed the arduino returns 2 Button A input is PIN 3, Button B input is PIN 2, and the momentary button press input is PIN 4. On the R02A receiving module, Button A is output...
00a7e2d6-fade-4e2c-929e-f57ff1743928
{ "language": "Arduino" }
```arduino ``` Add file to allow saving arduino output from serial
```arduino /* Header file that allows for writing of data from arduino to pi */ #ifndef serial-print_h #define serial-print_h #include "Arduino.h" import processing.serial.*; Serial mySerial; PrintWriter output; void setup() { mySerial = new Serial( this, Serial.list()[0], 9600 ); output = createWriter( "data...
773259b1-707b-4fd2-9950-7f0e3755206b
{ "language": "Arduino" }
```arduino ``` Add simple example for the library
```arduino #include <Arduino.h> #include <SPI.h> #include <ssd1351.h> // use this to do Color c = RGB(...) instead of `RGB c = RGB(...)` or ssd1351::LowColor c = RGB(...) // because it's slightly faster and guarantees you won't be sending wrong colours to the display. // Choose color depth - LowColor and HighColor cu...
162d6c72-e745-4ce7-ab02-bfc07519b2dc
{ "language": "Arduino" }
```arduino ``` Add example of a custom function in ethernet
```arduino #include <SPI.h> #include <Ethernet.h> #include "VdlkinoEthernet.h" byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; IPAddress ip(192,168,1,177); EthernetServer server(80); VdlkinoEthernet vdlkino(14, 6, &server); void url_get_analog_byte(void *block, char *url) { VdlkinoBlock *vblock = (VdlkinoBlo...
b49c0dec-b27f-4214-9fc9-efc29c72eead
{ "language": "Arduino" }
```arduino ``` Add example for using Arduino to read ATU data
```arduino // Copyright 2013 David Turnbull AE9RB // // 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 ...
5ec747fb-b94a-4894-801a-2bf059dc4a93
{ "language": "Arduino" }
```arduino ``` Add example for sending custom data packets
```arduino #include <DSPI.h> #include <OpenBCI_32bit_Library.h> #include <OpenBCI_32Bit_Library_Definitions.h> unsigned long timer = 0; byte LEDState = 0; void setup() { // Bring up the OpenBCI Board board.begin(); timer = millis(); LEDState = 1; digitalWrite(OPENBCI_PIN_LED,HIGH); } void loop() { //...
a57fcb84-58d4-4a9f-b041-0bf9a51a0faa
{ "language": "Arduino" }
```arduino ``` Test for photoresistor on sensor board made in class.
```arduino #define LED P1_3 #define Sensor P1_4 float reading; void setup() { // put your setup code here, to run once: Serial.begin(9600); pinMode(LED, OUTPUT); pinMode(Sensor, INPUT); } void loop() { // put your main code here, to run repeatedly: // Turn on LED digitalWrite(LED, HIGH); //...
057ef2f1-3495-43ac-b658-8b64bb82f323
{ "language": "Arduino" }
```arduino ``` Test of new simple functions in L9110 library
```arduino // Test L9110 library #include <L9110.h> L9110 L9110; // setup pin for LiPo monitor int LiPoMonitor = 2; void setup() { pinMode(LiPoMonitor, INPUT); } void loop() { if (digitalRead(LiPoMonitor) == LOW) { L9110.forward(); delay(3000); L9110.fullStop(); delay(500); L9110.reverse...
57315abd-3c6a-4e6e-b47d-f213ef8563e5
{ "language": "Arduino" }
```arduino ``` Add an example for Arduino Micro (Atmega32u4)
```arduino /* Example sketch for the PCF8574 for the purposes of showing how to use the interrupt-pin. Attach the positive lead of an LED to PIN7 on the PCF8574 and the negative lead to GND, a wire from Arduino-pin 13 to pin 3 on the PCF8474, a wire from the int-pin on the PCF8574 to Arduino-pin 7 and wir...
3bf6101d-5256-417e-a658-28a612258464
{ "language": "Arduino" }
```arduino ``` Add low speed serial transmitter example
```arduino void setup() { pinMode(LED_BUILTIN, OUTPUT); SerialUSB.begin(2000000); } void loop() { static int counter = 0; SerialUSB.println(counter, DEC); counter = (counter + 1) % (1 << 8); digitalWrite(LED_BUILTIN, counter >> 7 ? HIGH : LOW); delay(20); } ```
d7e96e98-1004-4605-8c3c-dfbf8dcb5993
{ "language": "Arduino" }
```arduino ``` Add On Chip Calibration example
```arduino #include<CS5490.h> #define rx 11 #define tx 12 /* Choose your board */ /* Arduino UNO and ESP8622 */ CS5490 line(MCLK_default,rx,tx); /* ESP and MEGA (Uses Serial2)*/ //CS5490 line(MCLK_default); void setup() { //Initializing communication with CS5490 //600 is the default baud rate velocity. li...
0a50bf7f-61c5-4096-a3dd-3669aa905832
{ "language": "AsciiDoc" }
```asciidoc This is a small Java library for parsing the Cloud Foundry environment variables (VCAP_SERVICES and so on). // the first line of this file is used as a description in the POM, so keep it short and sweet! Download from Bintray: image::https://api.bintray.com/packages/pivotal-labs-london/maven/cf-env/image...
```asciidoc This is a small Java library for parsing the Cloud Foundry environment variables (VCAP_SERVICES and so on). // the first line of this file is used as a description in the POM, so keep it short and sweet! Download from Bintray: image::https://api.bintray.com/packages/pivotal-labs-london/maven/cf-env/image...
55d40634-c6b5-4a1d-b155-154c3fd82084
{ "language": "AsciiDoc" }
```asciidoc = Auxly image:http://img.shields.io/:license-mit-blue.svg["License", link="https://github.com/jeffrimko/Qprompt/blob/master/LICENSE"] image:https://travis-ci.org/jeffrimko/Auxly.svg?branch=master["Build Status"] == Introduction This project provides a Python 2.7/3.x library for common tasks especially whe...
```asciidoc = Auxly image:http://img.shields.io/:license-mit-blue.svg["License", link="https://github.com/jeffrimko/Qprompt/blob/master/LICENSE"] image:https://travis-ci.org/jeffrimko/Auxly.svg?branch=master["Build Status"] == Introduction This project provides a Python 2.7/3.x library for common tasks especially whe...
31bd26be-42bf-4347-ae0f-7f16d45d210e
{ "language": "AsciiDoc" }
```asciidoc // Module included in the following assemblies: // // * serverless/configuring-knative-serving-autoscaling.adoc [id="configuring-scale-bounds-knative_{context}"] = Configuring scale bounds Knative Serving autoscaling The `minScale` and `maxScale` annotations can be used to configure the minimum and maximu...
```asciidoc // Module included in the following assemblies: // // * serverless/configuring-knative-serving-autoscaling.adoc [id="configuring-scale-bounds-knative_{context}"] = Configuring scale bounds Knative Serving autoscaling The `minScale` and `maxScale` annotations can be used to configure the minimum and maximu...
07e6517c-273c-4a1a-9b5a-ca230b28526b
{ "language": "AsciiDoc" }
```asciidoc = Packetbeat reference :libbeat: http://www.elastic.co/guide/en/beats/libbeat/1.0.0-rc1 :version: 1.0.0-rc1 include::./overview.asciidoc[] include::./gettingstarted.asciidoc[] include::./configuration.asciidoc[] include::./command-line.asciidoc[] include::./capturing.asciidoc[] include::./https.asciid...
```asciidoc = Packetbeat reference :libbeat: http://www.elastic.co/guide/en/beats/libbeat/master :version: master include::./overview.asciidoc[] include::./gettingstarted.asciidoc[] include::./configuration.asciidoc[] include::./command-line.asciidoc[] include::./capturing.asciidoc[] include::./https.asciidoc[] ...
b09445f2-674c-496c-8fb6-e01ea6754e4b
{ "language": "AsciiDoc" }
```asciidoc = AsciiBinder image:https://badge.fury.io/rb/ascii_binder.svg["Gem Version", link="https://badge.fury.io/rb/ascii_binder"] AsciiBinder is an AsciiDoc-based system for authoring and publishing closely related documentation sets from a single source. == Learn More * See the http://www.asciibinder.org[home...
```asciidoc = AsciiBinder image:https://badge.fury.io/rb/ascii_binder.svg["Gem Version", link="https://badge.fury.io/rb/ascii_binder"] AsciiBinder is an AsciiDoc-based system for authoring and publishing closely related documentation sets from a single source. == Learn More * Have a gander at the https://github.com...
8225b4d7-9aaa-42a4-af86-99315141d94f
{ "language": "AsciiDoc" }
```asciidoc :figure-caption!: image::https://travis-ci.org/mmjmanders/ng-iban.svg?branch=master[title="travis status", alt="travis status", link="https://travis-ci.org/mmjmanders/ng-iban"] image::https://app.wercker.com/status/eb4337041c62e162c5dd7af43122647c/m[title="wercker status", alt="wercker status", link="http...
```asciidoc :figure-caption!: image::https://travis-ci.org/mmjmanders/ng-iban.svg?branch=master[title="travis status", alt="travis status", link="https://travis-ci.org/mmjmanders/ng-iban"] image::https://app.wercker.com/status/eb4337041c62e162c5dd7af43122647c/m[title="wercker status", alt="wercker status", link="http...
5dd427a2-fdb1-4db6-90e0-0398501996b9
{ "language": "AsciiDoc" }
```asciidoc = Infinispan Cluster Manager image:https://vertx.ci.cloudbees.com/buildStatus/icon?job=vert.x3-infinispan["Build Status",link="https://vertx.ci.cloudbees.com/view/vert.x-3/job/vert.x3-infinispan/"] This is a cluster manager implementation for Vert.x that uses http://infinispan.org[Infinispan]. Please see...
```asciidoc = Infinispan Cluster Manager image:https://vertx.ci.cloudbees.com/buildStatus/icon?job=vert.x3-infinispan["Build Status",link="https://vertx.ci.cloudbees.com/view/vert.x-3/job/vert.x3-infinispan/"] This is a cluster manager implementation for Vert.x that uses http://infinispan.org[Infinispan]. Please see...
1b68553e-b8f1-40f4-a3e4-57b1abac930c
{ "language": "AsciiDoc" }
```asciidoc [[validator-further-reading]] == Further reading Last but not least, a few pointers to further information. A great source for examples is the Bean Validation TCK which is available for anonymous access on https://github.com/beanvalidation/beanvalidation-tck/[GitHub]. In particular the TCK's https://githu...
```asciidoc [[validator-further-reading]] == Further reading Last but not least, a few pointers to further information. A great source for examples is the Bean Validation TCK which is available for anonymous access on https://github.com/beanvalidation/beanvalidation-tck/[GitHub]. In particular the TCK's https://githu...
6264b06f-ff6a-4b93-ad05-898e5ecbfd0c
{ "language": "AsciiDoc" }
```asciidoc == Introduction to Regression Test Mode Bitcoin 0.9 and later include support for Regression Test Mode (aka RegTest mode). RegTest mode creates a single node Bitcoin "network" that can confirm blocks upon command. (RegTest mode can also be used to create small, multi-node networks and even to simulate blo...
```asciidoc == Introduction to Regression Test Mode Bitcoin 0.9 and later include support for Regression Test Mode (aka RegTest mode). RegTest mode creates a single node Bitcoin "network" that can confirm blocks upon command. (RegTest mode can also be used to create small, multi-node networks and even to simulate blo...
0d0418f7-34fd-4579-8b32-498d10a87b53
{ "language": "AsciiDoc" }
```asciidoc // Copyright 2017 the original author or authors. // // 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 b...
```asciidoc // Copyright 2017 the original author or authors. // // 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 b...
765ca276-d312-4267-9a77-8d99aa151368
{ "language": "AsciiDoc" }
```asciidoc [id='monitoring'] = Monitoring include::modules/common-attributes.adoc[] :context: monitoring toc::[] {product-title} uses the Prometheus open source monitoring system. The stack built around Prometheus provides {product-title} cluster monitoring by default. It also provides custom-configured application ...
```asciidoc [id='monitoring'] = Monitoring include::modules/common-attributes.adoc[] :context: monitoring toc::[] {product-title} uses the Prometheus open source monitoring system. The stack built around Prometheus provides {product-title} cluster monitoring by default. It also provides custom-configured application ...
7ffb195c-9ff1-4088-865f-5f1ebaadffa3
{ "language": "AsciiDoc" }
```asciidoc // Module included in the following assemblies: // // * cli_reference/openshift_developer_cli/installing-odo.adoc [id="installing-odo-on-linux"] = Installing {odo-title} on Linux == Binary installation ---- # curl -L https://mirror.openshift.com/pub/openshift-v4/clients/odo/latest/odo-darwin-amd64 ...
```asciidoc // Module included in the following assemblies: // // * cli_reference/openshift_developer_cli/installing-odo.adoc [id="installing-odo-on-linux"] = Installing {odo-title} on Linux == Binary installation ---- # curl -L https://mirror.openshift.com/pub/openshift-v4/clients/odo/latest/odo-linux-amd64 -...
fd4551fa-42bc-48a0-b048-ed44885b0674
{ "language": "AsciiDoc" }
```asciidoc ifdef::env-github[] :imagesdir: https://github.com/Moose2Model/Moose2Model/blob/master/Documentation/images/ endif::[] :toc: :toc-placement!: toc::[] This documentation follows the arc42 template for architecture documentation (https://arc42.org/). 1 Introduction and Goals ======================== 1.1 R...
```asciidoc ifdef::env-github[] :imagesdir: https://github.com/Moose2Model/Moose2Model/blob/master/Documentation/images/ endif::[] :toc: :toc-placement!: toc::[] This documentation follows the arc42 template for architecture documentation (https://arc42.org/). 1 Introduction and Goals ======================== 1.1 R...
26e14994-1595-4e6b-ab4c-136d1814bb06
{ "language": "AsciiDoc" }
```asciidoc = Forum (free support) :awestruct-layout: base :showtitle: == Usage questions If you have a question about OptaPlanner, just ask our friendly community: * Ask on http://www.jboss.org/drools/lists[the Drools user mailing list] (recommended). * Or ask on http://stackoverflow.com/questions/tagged/optaplann...
```asciidoc = Forum :awestruct-layout: base :showtitle: == Usage questions If you have a question about OptaPlanner, just ask our friendly community: * *http://stackoverflow.com/questions/tagged/optaplanner[Ask a usage question on StackOverflow.]* * To start a discussion, use https://groups.google.com/forum/#!forum...
5d93afe6-11e7-413d-abcb-c58597451ff9
{ "language": "AsciiDoc" }
```asciidoc [[apim-kubernetes-overview]] = Kubernetes plugin :page-sidebar: apim_3_x_sidebar :page-permalink: apim/3.x/apim_kubernetes_overview.html :page-folder: apim/kubernetes :page-layout: apim3x :page-liquid: [label label-version]#New in version 3.7# == Overview APIM 3.7.0 introduces a Kubernetes plugin for API...
```asciidoc [[apim-kubernetes-overview]] = Kubernetes plugin :page-sidebar: apim_3_x_sidebar :page-permalink: apim/3.x/apim_kubernetes_overview.html :page-folder: apim/kubernetes :page-layout: apim3x :page-liquid: [label label-version]#New in version 3.13# == Overview APIM 3.13 introduces a Kubernetes plugin for API...
bc124938-7615-404d-af2e-82ef23eaeee2
{ "language": "AsciiDoc" }
```asciidoc = CLI Connector Component :doctitle: CLI Connector :shortname: cli-connector :artifactid: camel-cli-connector :description: Runtime adapter connecting with Camel CLI :since: 3.19 :supportlevel: Preview *Since Camel {since}* The camel-cli-connector allows the Camel CLI to be able to manage running Camel in...
```asciidoc = CLI Connector Component :doctitle: CLI Connector :shortname: cli-connector :artifactid: camel-cli-connector :description: Runtime adapter connecting with Camel CLI :since: 3.19 :supportlevel: Preview //Manually maintained attributes :camel-spring-boot-name: cli-connector *Since Camel {since}* The camel-...
f3c42560-c4c2-45bb-8a20-bae53e079084
{ "language": "AsciiDoc" }
```asciidoc [[release-notes]] == Release Notes :numbered!: include::release-notes-5.0.0-ALPHA.adoc[] include::release-notes-5.0.0-M1.adoc[] include::release-notes-5.0.0-M2.adoc[] include::release-notes-5.0.0-M3.adoc[] include::release-notes-5.0.0-M4.adoc[] include::release-notes-5.0.0-M5.adoc[] include::release...
```asciidoc [[release-notes]] == Release Notes :numbered!: include::release-notes-5.1.0-M1.adoc[] include::release-notes-5.0.0.adoc[] include::release-notes-5.0.0-RC3.adoc[] include::release-notes-5.0.0-RC2.adoc[] include::release-notes-5.0.0-RC1.adoc[] include::release-notes-5.0.0-M6.adoc[] include::release-no...
48e9e065-3d52-4b4c-b461-ac742697c7fe
{ "language": "AsciiDoc" }
```asciidoc == Fusioninventory Plugin https://coveralls.io/r/fusioninventory/fusioninventory-for-glpi[image:https://coveralls.io/repos/fusioninventory/fusioninventory-for-glpi/badge.svg] This plugin makes GLPI to process various types of tasks for Fusioninventory agents: * Computer inventory * Network discovery * Ne...
```asciidoc == Fusioninventory Plugin image:https://travis-ci.org/fusioninventory/fusioninventory-for-glpi.svg?branch=master["Build Status", link="https://travis-ci.org/fusioninventory/fusioninventory-for-glpi"] image:https://coveralls.io/repos/fusioninventory/fusioninventory-for-glpi/badge.svg["Coverage Status", link...
c330a932-f2d7-4d38-bc78-0b4191adda7a
{ "language": "AsciiDoc" }
```asciidoc == Fusioninventory Plugin https://coveralls.io/r/fusioninventory/fusioninventory-for-glpi[image:https://coveralls.io/repos/fusioninventory/fusioninventory-for-glpi/badge.svg] This plugin makes GLPI to process various types of tasks for Fusioninventory agents: * Computer inventory * Network discovery * Ne...
```asciidoc == Fusioninventory Plugin image:https://travis-ci.org/fusioninventory/fusioninventory-for-glpi.svg?branch=master["Build Status", link="https://travis-ci.org/fusioninventory/fusioninventory-for-glpi"] image:https://coveralls.io/repos/fusioninventory/fusioninventory-for-glpi/badge.svg["Coverage Status", link...
4443490b-d7f3-4aee-8215-03042cd22a33
{ "language": "AsciiDoc" }
```asciidoc = Hawkular Android Client This repository contains the source code for the Hawkular Android application. == License * http://www.apache.org/licenses/LICENSE-2.0.html[Apache Version 2.0] == Building ifdef::env-github[] [link=https://travis-ci.org/hawkular/hawkular-android-client] image:https://travis-ci...
```asciidoc = Hawkular Android Client This repository contains the source code for the Hawkular Android application. == License * http://www.apache.org/licenses/LICENSE-2.0.html[Apache Version 2.0] == Building ifdef::env-github[] [link=https://travis-ci.org/hawkular/hawkular-android-client] image:https://travis-ci...
82d1d537-a7d9-4deb-beed-5a07c825e0d4
{ "language": "AsciiDoc" }
```asciidoc = Spring Boot and Two DataSources This project demonstrates how to use two `DataSource` s with Spring Boot 2.0. It utilizes: * Spring Data https://github.com/spring-projects/spring-data-jpa[JPA] / https://github.com/spring-projects/spring-data-rest[REST] * https://github.com/flyway/flyway[Flyway] migrat...
```asciidoc = Spring Boot and Two DataSources This project demonstrates how to use two `DataSource` s with Spring Boot 2.1. It utilizes: * Spring Data https://github.com/spring-projects/spring-data-jpa[JPA] / https://github.com/spring-projects/spring-data-rest[REST] * https://github.com/flyway/flyway[Flyway] migrat...
b347801f-e86b-4f35-88a7-345ab19383a2
{ "language": "AsciiDoc" }
```asciidoc = Snoop - A Discovery Service for Java EE Snoop is an experimental registration and discovery service for Java EE based microservices. == Getting Started . Start the link:snoop-service.adoc[Snoop Service] . link:service-registration.adoc[Service Registration] . link:service-discovery.adoc[Service Discove...
```asciidoc = Snoop - A Discovery Service for Java EE Snoop is an experimental registration and discovery service for Java EE based microservices. == Getting Started . Start the link:snoop-service.adoc[Snoop Service] . link:service-registration.adoc[Service Registration] . link:service-discovery.adoc[Service Discove...
ffb33ffa-105f-463e-bf00-f06278041009
{ "language": "AsciiDoc" }
```asciidoc = CLI Connector Component :doctitle: CLI Connector :shortname: cli-connector :artifactid: camel-cli-connector :description: Runtime adapter connecting with Camel CLI :since: 3.19 :supportlevel: Preview //Manually maintained attributes :camel-spring-boot-name: cli-connector *Since Camel {since}* The camel-...
```asciidoc = CLI Connector Component :doctitle: CLI Connector :shortname: cli-connector :artifactid: camel-cli-connector :description: Runtime adapter connecting with Camel CLI :since: 3.19 :supportlevel: Preview *Since Camel {since}* The camel-cli-connector allows the Camel CLI to be able to manage running Camel in...
3202506a-3fbe-4049-bff3-743ef35717d8
{ "language": "AsciiDoc" }
```asciidoc Copyright 2016 higherfrequencytrading.com 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...
```asciidoc == Copyright 2016 higherfrequencytrading.com 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 agre...
515e7afa-8626-4dda-b948-f79583520891
{ "language": "AsciiDoc" }
```asciidoc [id="olm-webhooks"] = Managing admission webhooks in Operator Lifecycle Manager include::modules/common-attributes.adoc[] :context: olm-webhooks toc::[] Validating and mutating admission webhooks allow Operator authors to intercept, modify, and accept or reject resources before they are handled by the Ope...
```asciidoc [id="olm-webhooks"] = Managing admission webhooks in Operator Lifecycle Manager include::modules/common-attributes.adoc[] :context: olm-webhooks toc::[] Validating and mutating admission webhooks allow Operator authors to intercept, modify, and accept or reject resources before they are saved to the objec...
41cb4190-0e05-4efd-a777-39801511828a
{ "language": "AsciiDoc" }
```asciidoc [[breaking-changes]] = Breaking changes [partintro] -- This section discusses the changes that you need to be aware of when migrating your application from one version of Elasticsearch to another. As a general rule: * Migration between major versions -- e.g. `1.x` to `2.x` -- requires a <<restart-upgra...
```asciidoc [[breaking-changes]] = Breaking changes [partintro] -- This section discusses the changes that you need to be aware of when migrating your application from one version of Elasticsearch to another. As a general rule: * Migration between major versions -- e.g. `1.x` to `2.x` -- requires a <<restart-upgra...
ece79c69-780e-4f38-a954-1880aca84ba8
{ "language": "AsciiDoc" }
```asciidoc = Edge Documentation Edge is a starting point for creating Clojure projects. Not sure if Edge is for you? See <<why-edge.adoc#,Why Edge?>>. == Get Started Are you new to Edge? This is the place to start! . link:https://clojure.org/guides/getting_started[Install clj] (<<windows.adoc#,Additional notes for...
```asciidoc = Edge Documentation Edge is a starting point for creating Clojure projects of all sizes. == Get Started Are you new to Edge? This is the place to start! . link:https://clojure.org/guides/getting_started[Install clj] (<<windows.adoc#,Additional notes for installing on Windows>>) . <<editor.adoc#,Set up ...
01d6f9cc-18be-437e-a252-ab4c86b0c9e7
{ "language": "AsciiDoc" }
```asciidoc [[overview]] == Overview The goal of this document is to provide comprehensive reference documentation for both programmers writing tests and extension authors. WARNING: Work in progress! === Supported Java Versions JUnit 5 only supports Java 8 and above. However, you can still test classes compiled wi...
```asciidoc [[overview]] == Overview The goal of this document is to provide comprehensive reference documentation for both programmers writing tests and extension authors. WARNING: Work in progress! === Supported Java Versions JUnit 5 only supports Java 8 and above. However, you can still test classes compiled wi...
49653919-fea2-47b6-aa89-4252e2810f9e
{ "language": "AsciiDoc" }
```asciidoc [[structure:Default]] [role=group,includesConstraints="structure:packagesShouldConformToTheMainBuildingBlocks"] All the blackboxes above should correspond to Java packages. Those packages should have no dependencies to other packages outside themselves but for the support or shared package: [[structure:pa...
```asciidoc [[structure:Default]] [role=group,includesConstraints="structure:packagesShouldConformToTheMainBuildingBlocks"] All the blackboxes above should correspond to Java packages. Those packages should have no dependencies to other packages outside themselves but for the support or shared package: [[structure:pa...
16980831-8f76-401e-8cd1-44aeaf0da74c
{ "language": "AsciiDoc" }
```asciidoc [[release-notes-5.5.0-M2]] == 5.5.0-M2️ *Date of Release:* ❓ *Scope:* ❓ For a complete list of all _closed_ issues and pull requests for this release, consult the link:{junit5-repo}+/milestone/37?closed=1+[5.5 M2] milestone page in the JUnit repository on GitHub. [[release-notes-5.5.0-M2-junit-platform...
```asciidoc [[release-notes-5.5.0-M2]] == 5.5.0-M2️ *Date of Release:* ❓ *Scope:* ❓ For a complete list of all _closed_ issues and pull requests for this release, consult the link:{junit5-repo}+/milestone/37?closed=1+[5.5 M2] milestone page in the JUnit repository on GitHub. [[release-notes-5.5.0-M2-junit-platform...
02225a02-77ca-465b-9720-bd10c4b0e798
{ "language": "AsciiDoc" }
```asciidoc [[analysis-keyword-marker-tokenfilter]] === Keyword Marker Token Filter Protects words from being modified by stemmers. Must be placed before any stemming filters. [cols="<,<",options="header",] |======================================================================= |Setting |Description |`keywords` |A l...
```asciidoc [[analysis-keyword-marker-tokenfilter]] === Keyword Marker Token Filter Protects words from being modified by stemmers. Must be placed before any stemming filters. [cols="<,<",options="header",] |======================================================================= |Setting |Description |`keywords` |A l...
966e93cc-4899-4988-acbf-c8886798cb1e
{ "language": "AsciiDoc" }
```asciidoc = Authors and contributors - Simon Cruanes (`companion_cube`) - Drup (Gabriel Radanne) - Jacques-Pascal Deplaix - Nicolas Braud-Santoni - Whitequark (Peter Zotov) - hcarty (Hezekiah M. Carty) - struktured (Carmelo Piccione) - Bernardo da Costa - Vincent Bernardoff (vbmithr) - Emmanuel Surleau (emm) - Guill...
```asciidoc = Authors and contributors - Simon Cruanes (`companion_cube`) - Drup (Gabriel Radanne) - Jacques-Pascal Deplaix - Nicolas Braud-Santoni - Whitequark (Peter Zotov) - hcarty (Hezekiah M. Carty) - struktured (Carmelo Piccione) - Bernardo da Costa - Vincent Bernardoff (vbmithr) - Emmanuel Surleau (emm) - Guill...
f7816531-ac3f-4ffa-a28a-cae537795a4f
{ "language": "AsciiDoc" }
```asciidoc = OmniJ Developer's Guide Sean Gilligan v0.1, July 30, 2015: Early draft :numbered: :toc: :toclevels: 3 :linkattrs: Paragraph TBD. == Introduction to OmniJ This section is TBD. For now the project http://github.com/OmniLayer/OmniJ/README.adoc[README] is the best place to get started. == JSON-RPC Clients...
```asciidoc = OmniJ Developer's Guide Sean Gilligan v0.1, July 30, 2015: Early draft :numbered: :toc: :toclevels: 3 :linkattrs: :imagesdir: images Paragraph TBD. == Introduction to OmniJ This section is TBD. For now the project http://github.com/OmniLayer/OmniJ/README.adoc[README] is the best place to get started. ...
3487d39d-208a-40bb-84a0-adf8a64f649e
{ "language": "AsciiDoc" }
```asciidoc = Groundwork :toc: :source-highlighter: pygments link:index.html[back to index page] == Laying the Groundwork To redeploy RecordTrac, you need support from key stakeholders _within_ government. The administrator or elected official in charge of overseeing public records request must agree to use this sys...
```asciidoc = Groundwork :toc: :source-highlighter: pygments link:index.html[back to index page] == Laying the Groundwork To redeploy RecordTrac, you need support from key stakeholders _within_ government. The administrator or elected official in charge of overseeing public records request must agree to use this sys...
97733960-4656-4184-abcc-2b5b8954f4ec
{ "language": "AsciiDoc" }
```asciidoc = Qprompt == Introduction This project provides a Python 2.x library that allows the user to quickly create CLI prompts for user input. The main features are the following: - Simple multi-entry menus. - Prompt for yes/no response. - Prompt for integer response. - Prompt for float response. - Opt...
```asciidoc = Qprompt == Introduction This project provides a Python 2.x library that allows the user to quickly create CLI prompts for user input. The main features are the following: - Simple multi-entry menus. - Prompt for yes/no response. - Prompt for integer response. - Prompt for float response. - Opt...
430cb0dc-c156-4c86-aa0e-2ebc06210652
{ "language": "AsciiDoc" }
```asciidoc *--map-http-status* 'TEXT':: Map non success HTTP response codes to exit codes other than 1. e.g. "--map-http-satus 403=0,404=0" would exit with 0 even if a 403 or 404 http error code was received. Valid exit codes are 0,1,50-99. include::format_option.adoc[] include::jmespath_option.adoc[] include::hel...
```asciidoc *--map-http-status* 'TEXT':: Map non success HTTP response codes to exit codes other than 1. e.g. "--map-http-satus 403=0,404=0" would exit with 0 even if a 403 or 404 http error code was received. Valid exit codes are 0,1,50-99. *-F, --format* '[json|text]':: Set the output format for stdout. Defaults t...
53f692fb-415b-4a57-8868-badedda05036
{ "language": "AsciiDoc" }
```asciidoc // Module included in the following assemblies: // // administering_a_cluster/dedicated-admin-role.adoc [id="dedicated-managing-dedicated-administrators_{context}"] = Managing {product-title} administrators Administrator roles are managed using a `dedicated-admins` group on the cluster. Existing members ...
```asciidoc // Module included in the following assemblies: // // administering_a_cluster/dedicated-admin-role.adoc [id="dedicated-managing-dedicated-administrators_{context}"] = Managing {product-title} administrators Administrator roles are managed using a `dedicated-admins` group on the cluster. Existing members ...
cf5bde9f-c339-48f9-b49b-4ae4ba869b52
{ "language": "AsciiDoc" }
```asciidoc 2020/06/18: Concuerror integration has been added. It is currently minimal but usable. Experimentation and feedback is welcome. 2020/11/30: Support for publishing Hex releases and docs has been added. It is currently experimental. Feedback is more than welcom...
```asciidoc 2020/06/18: Concuerror integration has been added. It is currently minimal but usable. Experimentation and feedback is welcome. 2020/11/30: Support for publishing Hex releases and docs has been added. It is currently experimental. Feedback is more than welcom...
8904bd69-569f-4fd7-ba81-a1fdec0e1252
{ "language": "AsciiDoc" }
```asciidoc == Time Zones & Offset Extract a zone from a `java.time.ZonedDateTime`: ==== [source.code,clojure] ---- (t/zone (t/zoned-date-time "2000-01-01T00:00:00Z[Europe/Paris]")) ---- [source.code,clojure] ---- (t/zone) ---- ==== Create a `java.time.ZonedDateTime` in a particular time zone: ==== [source.code,cl...
```asciidoc == Time Zones & Offset Extract a zone from a `java.time.ZonedDateTime`: ==== [source.code,clojure] ---- (t/zone (t/zoned-date-time "2000-01-01T00:00:00Z[Europe/Paris]")) ---- [source.code,clojure] ---- (t/zone) ---- ==== Create a `java.time.ZonedDateTime` in a particular time zone: ==== [source.code,cl...
48981c5d-fc97-44cd-a11e-08a18abb3055
{ "language": "AsciiDoc" }
```asciidoc = geo-shell Jared Erickson v0.7-SNAPSHOT ifndef::imagesdir[:imagesdir: images] include::intro.adoc[] include::workspace.adoc[] include::layer.adoc[] include::format.adoc[] include::raster.adoc[] include::tile.adoc[] include::style.adoc[] include::map.adoc[] include::builtin.adoc[]``` Add title ima...
```asciidoc = Geo Shell Jared Erickson v0.7-SNAPSHOT :title-logo-image: image:geoshell.png[pdfwidth=5.5in,align=center] ifndef::imagesdir[:imagesdir: images] include::intro.adoc[] include::workspace.adoc[] include::layer.adoc[] include::format.adoc[] include::raster.adoc[] include::tile.adoc[] include::style.ado...
fc627ea2-3240-46ef-9bc2-875539341247
{ "language": "AsciiDoc" }
```asciidoc :generated: ../../../target/generated-docs/asciidoc include::{generated}/overview.adoc[] include::manual_rest_doc.adoc[] include::{generated}/paths.adoc[] ``` Add generated data type definitions to Swagger documentation
```asciidoc :generated: ../../../target/generated-docs/asciidoc include::{generated}/overview.adoc[] include::manual_rest_doc.adoc[] include::{generated}/paths.adoc[] include::{generated}/definitions.adoc[] ```
86d41eb8-e334-493f-a05b-a3cc369a6f84
{ "language": "AsciiDoc" }
```asciidoc = Spring Boot and Two DataSources This project demonstrates how to use two `DataSource` s with Spring Boot 2.1. It utilizes: * Spring Data https://github.com/spring-projects/spring-data-jpa[JPA] * https://github.com/flyway/flyway[Flyway] migrations for the two `DataSource` s * Separate Hibernate propert...
```asciidoc = Spring Boot and Two DataSources This project demonstrates how to use two `DataSource` s with Spring Boot 2.1. It utilizes: * Spring Data https://github.com/spring-projects/spring-data-jpa[JPA] * https://github.com/flyway/flyway[Flyway] migrations for the two `DataSource` s * Separate Hibernate propert...
f4da9495-899b-46e2-a1ff-cb31f61cbe23
{ "language": "AsciiDoc" }
```asciidoc [[development]] == Development Github repository: {datasource-proxy} === Build Documentation ```sh > ./mvnw asciidoctor:process-asciidoc@output-html ``` ``` Add how to use asciidoctor plugin in dev
```asciidoc [[development]] == Development Github repository: {datasource-proxy} === Build Documentation Generate `index.html` ```sh > ./mvnw asciidoctor:process-asciidoc@output-html ``` Http preview ```sh > ./mvnw asciidoctor:http@output-html ``````
5cd52882-485f-4478-a3d1-6e9106c63c92
{ "language": "AsciiDoc" }
```asciidoc = Infinispan Cluster Manager image:https://vertx.ci.cloudbees.com/buildStatus/icon?job=vert.x3-infinispan["Build Status",link="https://vertx.ci.cloudbees.com/view/vert.x-3/job/vert.x3-infinispan/"] This is a cluster manager implementation for Vert.x that uses http://infinispan.org[Infinispan]. Please see...
```asciidoc = Infinispan Cluster Manager image:https://vertx.ci.cloudbees.com/buildStatus/icon?job=vert.x3-infinispan["Build Status",link="https://vertx.ci.cloudbees.com/view/vert.x-3/job/vert.x3-infinispan/"] This is a cluster manager implementation for Vert.x that uses http://infinispan.org[Infinispan]. Please see...
73884e02-5362-4451-810f-b0a316b829aa
{ "language": "AsciiDoc" }
```asciidoc The next transformations can be applied to any class to simplify greatly the development of Multi-Tenant applications. These include: - `@CurrentTenant` - Resolve the current tenant for the context of a class or method - `@Tenant` - Use a specific tenant for the context of a class or method - `@WithoutTena...
```asciidoc The following transformations can be applied to any class to simplify greatly the development of Multi-Tenant applications. These include: - `@CurrentTenant` - Resolve the current tenant for the context of a class or method - `@Tenant` - Use a specific tenant for the context of a class or method - `@Withou...
7637c3b2-1d0c-459c-9f27-61e64dcb5229
{ "language": "AsciiDoc" }
```asciidoc [[community-beats]] == Community Beats The open source community has been hard at work developing new Beats. You can check out a few of them here: [horizontal] https://github.com/Ingensi/dockerbeat[dockerbeat]:: Reads docker container statistics and indexes them in Elasticsearch https://github.com/christi...
```asciidoc [[community-beats]] == Community Beats The open source community has been hard at work developing new Beats. You can check out a few of them here: [horizontal] https://github.com/Ingensi/dockerbeat[dockerbeat]:: Reads docker container statistics and indexes them in Elasticsearch https://github.com/christi...
0b33715e-fd78-41fc-9ac0-72862000e4db
{ "language": "AsciiDoc" }
```asciidoc = RESTful API Endpoint specification == Nodes === Idea for accessing fields directly * RUD: /nodes/:uuid/relatedProducts/:uuid -> Pageable list of nodes * R: /nodes/:uuid/name TODO: Do we want to restrict the primitiv types to read only? The user can update the node via PUT /nodes/:uuid anyway. == Webr...
```asciidoc = RESTful API Endpoint specification == Nodes === Idea for accessing fields directly * RUD: /nodes/:uuid/relatedProducts/:uuid -> Pageable list of nodes * R: /nodes/:uuid/name TODO: Do we want to restrict the primitiv types to read only? The user can update the node via PUT /nodes/:uuid anyway. == Brea...
0bba6305-13d3-48b3-9cc2-5515a221457e
{ "language": "AsciiDoc" }
```asciidoc = conoha/dokku-apps .Add pytohn-getting-started app ---- alias dokku="ssh -t dokku@conoha" cd python-getting-started dokku apps:create python-getting-started git remote add dokku dokku@conoha:python-getting-started git push dokku master ---- And this app can be available at http://python-getting-starte...
```asciidoc = conoha/dokku-apps First you have to run: ---- cat .ssh/id_rsa.pub | ssh conoha 'sudo sshcommand acl-add dokku dokkudeploy' ---- .Add pytohn-getting-started app ---- alias dokku="ssh -t dokku@conoha" cd python-getting-started dokku apps:create python-getting-started git remote add dokku dokku@conoha...
1b896351-255f-4e16-890f-8028fa55a229
{ "language": "AsciiDoc" }
```asciidoc = Continuous integration :awestruct-description: Check if the latest nightly build passes all automated tests. :awestruct-layout: normalBase :showtitle: == OptaPlanner We use Jenkins for continuous integration. *Show https://hudson.jboss.org/hudson/job/optaplanner/[the public Jenkins job].* This is a mir...
```asciidoc = Continuous integration :awestruct-description: Check if the latest nightly build passes all automated tests. :awestruct-layout: normalBase :showtitle: == OptaPlanner We use Jenkins for continuous integration. *Show https://jenkins-kieci.rhcloud.com/job/optaplanner/[the public Jenkins job].* This is a m...
f51f06dc-7af1-49fb-a7bc-d47bfd582a91
{ "language": "AsciiDoc" }
```asciidoc // Module included in the following assemblies: // // * dns/dns-operator.adoc [id="nw-dns-operator-logs_{context}"] = DNS Operator logs You can view DNS Operator logs by using the `oc logs` command. .Procedure View the logs of the DNS Operator: ---- $ oc logs --namespace=openshift-dns-operator deploymen...
```asciidoc // Module included in the following assemblies: // // * dns/dns-operator.adoc [id="nw-dns-operator-logs_{context}"] = DNS Operator logs You can view DNS Operator logs by using the `oc logs` command. .Procedure View the logs of the DNS Operator: ---- $ oc logs -n openshift-dns-operator deployment/dns-ope...
3978fc16-18ef-4b6b-a9fe-4108aee4ba92
{ "language": "AsciiDoc" }
```asciidoc :filename: manual/03_task_exportEA.adoc ifndef::imagesdir[:imagesdir: ../images] = exportEA IMPORTANT: Currently this feature is WINDOWS-only. https://github.com/docToolchain/docToolchain/issues/231[See related issue] include::feedback.adoc[] image::ea/Manual/exportEA.png[] TIP: Blog-Posts: https://rdm...
```asciidoc :filename: manual/03_task_exportEA.adoc ifndef::imagesdir[:imagesdir: ../images] = exportEA IMPORTANT: Currently this feature is WINDOWS-only. https://github.com/docToolchain/docToolchain/issues/231[See related issue] include::feedback.adoc[] image::ea/Manual/exportEA.png[] TIP: Blog-Posts: https://rdm...
7176e7c8-3c98-4f74-b08d-0a24ccb948a0
{ "language": "AsciiDoc" }
```asciidoc :doctitle: :author: Jerod Gawne :email: jerodgawne@gmail.com :docdate: June 07, 2018 :revdate: {docdatetime} :src-uri: https://github.com/jerodg/hackerrank :difficulty: :time-complexity: :required-knowledge: :advanced-knowledge: :solution-variability: :score: :keywords: python, {required-knowl...
```asciidoc :doctitle: :author: Jerod Gawne :email: jerodgawne@gmail.com :docdate: June 07, 2018 :revdate: {docdatetime} :src-uri: https://github.com/jerodg/hackerrank :difficulty: :time-complexity: :required-knowledge: :advanced-knowledge: :solution-variability: :score: :keywords: python, {required-knowl...
86c08316-e63d-4248-b363-e15bed9a8f39
{ "language": "AsciiDoc" }
```asciidoc # Camel Supervising Route Controller Example Spring Boot This example shows how to work with a simple Apache Camel application using Spring Boot and a Supervising Route Controller. ## How to run You can run this example using mvn spring-boot:run Beside JMX you can use Spring Boot Endpoints to inter...
```asciidoc # Camel Supervising Route Controller Example Spring Boot This example shows how to work with a simple Apache Camel application using Spring Boot and a Supervising Route Controller. ## How to run You can run this example using mvn spring-boot:run Beside JMX you can use Spring Boot Endpoints to inter...
aa726cac-dba1-4a54-a9ed-66c9956034b8
{ "language": "AsciiDoc" }
```asciidoc = The Ehcache 3.x line is currently the development line. Status of the build: image:https://ehcache.ci.cloudbees.com/buildStatus/icon?job=ehcache3 For more information, you might want to go check the https://github.com/ehcache/ehcache3/wiki[wiki]. image:http://cloudbees.prod.acquia-sites.com/sites/defau...
```asciidoc = The Ehcache 3.x line is currently the development line. Status of the build: image:https://ehcache.ci.cloudbees.com/buildStatus/icon?job=ehcache3[Ehcache@Cloudbees, link="https://ehcache.ci.cloudbees.com/job/ehcache3/"] For more information, you might want to go check the https://github.com/ehcache/ehca...
737a0873-7656-4bba-9751-276e7188db49
{ "language": "AsciiDoc" }
```asciidoc = clublist - Club Membership List Track members for a small non-profit club. This shows off some basic functionality of JPA and DeltaSpike Data in a JSF environment. == Deployment . Copy config-sample.properties to config.properties, change the name in the orgName property in this file from 'Sample Club...
```asciidoc = clublist - Club Membership List Track members for a small non-profit club. This shows off some basic functionality of JPA and DeltaSpike Data in a JSF environment. == Deployment . Copy config-sample.properties to config.properties, change the name in the orgName property in this file from 'Sample Club...
25b7f1b1-303d-4e9e-af7f-2f070ac0de94
{ "language": "AsciiDoc" }
```asciidoc proxy ===== [quote] A development proxy with logging and redirect-rewriting Installation ------------ [source,bash] ---- go get -u github.com/ciarand/proxy ---- Usage ----- [source,bash] ---- # start the proxy in one shell: proxy -from=https://www.google.com -to=http://0.0.0.0:8080 # and in another, r...
```asciidoc proxy ===== [quote] A development proxy with logging and redirect-rewriting Installation ------------ Download a prebuilt binary for your platform and architecture from the link:https://github.com/ciarand/proxy/releases[release page]. Or, build from source: [source,bash] ---- # from source go get -u gi...
511501e6-7e5a-431a-86d2-6d41a0028aa0
{ "language": "AsciiDoc" }
```asciidoc # android-images Yet another repo with docker images for Android developers [source,planzuml] ------ node "java jdk-8" as jdk8 node "java jdk-7" as jdk7 artifact "Android" { node "gradle" as gradle node "sdk" as sdk node "ndk 11" as ndk11 node "ndk 13" as ndk13 node "vlc" as vlc } artifact "Tools" { node "...
```asciidoc # android-images Yet another repo with docker images for Android developers [source,plantuml] ------ node "java jdk-8" as jdk8 node "java jdk-7" as jdk7 artifact "Android" { node "gradle" as gradle node "sdk" as sdk node "ndk 11" as ndk11 node "ndk 13" as ndk13 node "vlc" as vlc } artifact "Tools" { node "...
e949f11d-4e23-4b73-86ce-a706943568fb
{ "language": "AsciiDoc" }
```asciidoc = Blueprint :author: Hafid Haddouti image:https://travis-ci.org/haf-tech/blueprint.svg?branch=master["Build Status", link="https://travis-ci.org/haf-tech/blueprint"] image:https://img.shields.io/badge/License-Apache%202.0-blue.svg["License", link="https://opensource.org/licenses/Apache-2.0"] .... Bluepri...
```asciidoc = Blueprint :author: Hafid Haddouti image:https://travis-ci.org/haf-tech/blueprint.svg?branch=master["Build Status", link="https://travis-ci.org/haf-tech/blueprint"] image:https://img.shields.io/badge/License-Apache%202.0-blue.svg["License", link="https://opensource.org/licenses/Apache-2.0"] Blueprint i...
19056f95-d0d1-4cc3-b524-03564fd56e77
{ "language": "AsciiDoc" }
```asciidoc = Who's Using Debezium? :awestruct-layout: doc :linkattrs: :icons: font :source-highlighter: highlight.js Debezium is used in production by a wide range of companies and organizations. This list contains users of Debezium who agreed to serve as public reference; where available, further resources with more...
```asciidoc = Who's Using Debezium? :awestruct-layout: doc :linkattrs: :icons: font :source-highlighter: highlight.js Debezium is used in production by a wide range of companies and organizations. This list contains users of Debezium who agreed to serve as public reference; where available, further resources with more...
3bb08d27-dd13-48dc-b670-267f3e361895
{ "language": "AsciiDoc" }
```asciidoc = Sample Book Author Name <author@example.com> v1.0, October 4, 2015: First Draft :doctype: book :docinfo: :toc: left :toclevels: 2 :sectnums: :linkcss: An sample book to show case AsciiDoctor folder structure. include::book/chapter-1/chapter-1.adoc[leveloffset=+1] include::book/chapter-2/chapter-2.adoc[l...
```asciidoc = Sample Book Author Name <author@example.com> v1.0, October 4, 2015: First Draft :doctype: book :docinfo: :toc: left :toclevels: 2 :sectnums: :linkcss: An sample book to show case AsciiDoctor folder structure. include::book/chapter-1/chapter-1.adoc[leveloffset=+1] include::book/chapter-2/chapter-2.adoc[...
a87bace7-3de7-475d-8ba5-e8699da3dbab
{ "language": "AsciiDoc" }
```asciidoc = bitcoinj-addons Release Process == Main Release Process . Update `CHANGELOG.adoc` . Set versions .. `README.adoc` .. bitcoinj-groovy `ExtensionModule` .. `gradle.properties` . Commit version bump and changelog. . Tag: `git tag -a v0.x.y -m "Release 0.x.y"` . Push: `git push --tags origin master` . Full ...
```asciidoc = bitcoinj-addons Release Process == Main Release Process . Update `CHANGELOG.adoc` . Set versions .. `README.adoc` .. bitcoinj-groovy `ExtensionModule` .. `build.gradle` (should move to `gradle.properties`) . Commit version bump and changelog. . Tag: `git tag -a v0.x.y -m "Release 0.x.y"` . Push: `git pu...
d91d3d9b-c0ab-4cb3-936b-1ece2e5b8895
{ "language": "AsciiDoc" }
```asciidoc |=== |image:http://goreportcard.com/badge/spohnan/ci-bot-01["Go Report Card",link="http://goreportcard.com/report/spohnan/ci-bot-01", window="_blank"]|image:https://travis-ci.org/spohnan/ci-bot-01.svg?branch=master["Build Status", link="https://travis-ci.org/spohnan/ci-bot-01", window="_blank"] |=== === Au...
```asciidoc [options="header"] |=== |CI Build and Tests|Static Analysis |image:https://travis-ci.org/spohnan/ci-bot-01.svg?branch=master["Build Status", link="https://travis-ci.org/spohnan/ci-bot-01", window="_blank"]|image:http://goreportcard.com/badge/spohnan/ci-bot-01["Go Report Card",link="http://goreportcard.com/r...
d81095b1-529b-44e7-a8bc-6af2b062e3df
{ "language": "AsciiDoc" }
```asciidoc [[SpringCloud-SpringCloud]] Spring Cloud ~~~~~~~~~~~ *Available as of Camel 2.19* Spring Cloud component Maven users will need to add the following dependency to their `pom.xml` in order to use this component: [source,xml] ---------------------------------------------------------------------------------...
```asciidoc === Spring Cloud Netflix *Available as of Camel 2.19* The Spring Cloud Netflix component bridges Camel Cloud and Spring Cloud Netflix so you can leverage Spring Cloud Netflix service discovery and load balance features in Camel and/or you can use Camel Service Discovery implementations as ServerList sourc...
553fa6e2-38b2-44cc-90b6-a57aef4adf96
{ "language": "AsciiDoc" }
```asciidoc = Filebeat :libbeat: http://www.elastic.co/guide/en/beats/libbeat/1.0.0-rc1 :version: 1.0.0-rc1 include::./overview.asciidoc[] include::./getting-started.asciidoc[] include::./fields.asciidoc[] include::./configuration.asciidoc[] include::./command-line.asciidoc[] include::./migration.asciidoc[] incl...
```asciidoc = Filebeat :libbeat: http://www.elastic.co/guide/en/beats/libbeat/master :version: master include::./overview.asciidoc[] include::./getting-started.asciidoc[] include::./fields.asciidoc[] include::./configuration.asciidoc[] include::./command-line.asciidoc[] include::./migration.asciidoc[] include::....
4ce846b4-62ef-49ab-a98e-5069c1c6c490
{ "language": "AsciiDoc" }
```asciidoc [float] [[breaking_70_scripting_changes]] === Scripting changes [float] ==== getDate() and getDates() removed Fields of type `long` and `date` had `getDate()` and `getDates()` methods (for multi valued fields) to get an object with date specific helper methods for the current doc value. In 5.3.0, `date` f...
```asciidoc [float] [[breaking_70_scripting_changes]] === Scripting changes [float] ==== getDate() and getDates() removed Fields of type `long` and `date` had `getDate()` and `getDates()` methods (for multi valued fields) to get an object with date specific helper methods for the current doc value. In 5.3.0, `date` f...
e331c907-956f-4fd4-a41d-9f0d3379915e
{ "language": "AsciiDoc" }
```asciidoc = Maven Goals This plugin supports the following goals which are explained in detail in the next sections. .Plugin Goals [cols="1,3"] |=== |Goal | Description |**<<{plugin}:build>>** |Build images |**<<{plugin}:start>>** or **<<{plugin}:start,{plugin}:run>>** |Create and start containers |**<<{plugin}:...
```asciidoc = Maven Goals This plugin supports the following goals which are explained in detail in the next sections. .Plugin Goals [cols="1,1,2"] |=== |Goal | Default Lifecycle Phase | Description |**<<{plugin}:build>>** |install |Build images |**<<{plugin}:start>>** or **<<{plugin}:start,{plugin}:run>>** |pre-in...
0119b2d0-a6c8-4d71-972e-d4ea83852974
{ "language": "AsciiDoc" }
```asciidoc # Hacky Implicit Provisioning version 2 This document describes a quick hack to test the implicit provisioning flow as it currently works in aktualizr before full support is available in meta-updater and on the server. ## Goals * end-to-end installation of updates using OSTree ## Steps 1. Edit `recipes...
```asciidoc # Hacky Implicit Provisioning version 2 This document describes a quick hack to test the implicit provisioning flow as it currently works in aktualizr before full support is available in meta-updater and on the server. ## Goals * end-to-end installation of updates using OSTree ## Steps 1. Edit `recipes...
ce196bd9-c2d0-4442-8be0-b653c5b59cd3
{ "language": "AsciiDoc" }
```asciidoc = Videos James Elliott <james@deepsymmetry.org> :icons: font // Set up support for relative links on GitHub; add more conditions // if you need to support other environments and extensions. ifdef::env-github[:outfilesuffix: .adoc] This page collects performance videos that highlight Afterglow in action. I...
```asciidoc = Videos James Elliott <james@deepsymmetry.org> :icons: font // Set up support for relative links on GitHub; add more conditions // if you need to support other environments and extensions. ifdef::env-github[:outfilesuffix: .adoc] This page collects performance videos that highlight Afterglow in action. I...
c5882384-b0e4-44ea-ae3e-48506da2593e
{ "language": "AsciiDoc" }
```asciidoc [id="about-migration"] = About migrating {product-title} 3 to 4 include::modules/common-attributes.adoc[] :context: about-migration toc::[] {product-title} 4 includes new technologies and functionality that results in a cluster that is self-managing, flexible, and automated. The way that {product-title} 4...
```asciidoc [id="about-migration"] = About migrating {product-title} 3 to 4 include::modules/common-attributes.adoc[] :context: about-migration toc::[] {product-title} 4 includes new technologies and functionality that results in a cluster that is self-managing, flexible, and automated. The way that {product-title} 4...
a525b09c-a9fa-4760-bcfb-16d49c793c51
{ "language": "AsciiDoc" }
```asciidoc = Jira Release Notes Generator (JiraRnGen) :Author: David Thompson :Email: <dthompsn1@gmail.com> :Revision: 0.1.0 2016-08-03 == Description I was looking for a way with hosted Jira to be able to send out release notes with our own template. Since the hosted version doesn't allow you to edit the templates,...
```asciidoc = Jira Release Notes Generator (JiraRnGen) :Author: David Thompson :Email: <dthompsn1@gmail.com> :Revision: 0.1.0 2016-08-03 == Description I was looking for a way with hosted Jira to be able to send out release notes with our own template. Since the hosted version doesn't allow you to edit the templates,...
f71d9c50-834c-4bd9-b3b7-01eabc9d2d5f
{ "language": "AsciiDoc" }
```asciidoc // Global settings :ascii-ids: :encoding: UTF-8 :lang: en :icons: font :toc: left :toclevels: 3 :numbered: [[gu]] = Users Guide :author: Copyright (c) 2014-2016 The OpenNMS Group, Inc. :revnumber: {opennms-product-name} {opennms-version} :revdate: {last-update-label} {docdatetime} :version-label!: [[gu-se...
```asciidoc // Global settings :ascii-ids: :encoding: UTF-8 :lang: en :icons: font :toc: left :toclevels: 3 :numbered: [[gu]] = Users Guide :author: Copyright (c) 2014-2016 The OpenNMS Group, Inc. :revnumber: {opennms-product-name} {opennms-version} :revdate: {last-update-label} {docdatetime} :version-label!: [[gu-se...
d2f2c632-d042-4819-bda5-f1280c2e824a
{ "language": "AsciiDoc" }
```asciidoc image:https://jenkins-kieci.rhcloud.com/buildStatus/icon?job=optaplanner["Build Status", link="https://jenkins-kieci.rhcloud.com/job/optaplanner"] == Developing Drools, OptaPlanner and jBPM *If you want to build or contribute to a droolsjbpm project, https://github.com/droolsjbpm/droolsjbpm-build-bootstra...
```asciidoc image:https://jenkins-kieci.rhcloud.com/buildStatus/icon?job=optaplanner["Build Status", link="https://jenkins-kieci.rhcloud.com/job/optaplanner"] == Quick development start To build and run from source: [source,sh] ---- $ mvn clean install $ cd optaplanner-examples $ mvn exec:java ---- To d...
72465e4c-7c43-4917-839a-107a1be8a3df
{ "language": "AsciiDoc" }
```asciidoc = Explorer for Hawkular http://hawkular.org/[Hawkular] is a set of components for Monitoring. This explorer connects to a Hawkular server and allows to browse trough inventory and view entities, graph metrics. ifndef::env-github[] image::docs/screenshot.png[] endif::[] ifdef::env-github[] image::https://...
```asciidoc = Explorer for Hawkular http://hawkular.org/[Hawkular] is a set of components for Monitoring. This explorer connects to a Hawkular server and allows to browse trough inventory and view entities, graph metrics. ifndef::env-github[] image::docs/screenshot.png[] endif::[] ifdef::env-github[] image::https://...
4bf15c83-9492-4fd0-b6f6-22154ded2bf5
{ "language": "AsciiDoc" }
```asciidoc [[mapping-id-field]] === `_id` field Each document indexed is associated with a <<mapping-type-field,`_type`>> (see <<mapping-type>>) and an <<mapping-id-field,`_id`>>. The `_id` field is not indexed as its value can be derived automatically from the <<mapping-uid-field,`_uid`>> field. The value of the `...
```asciidoc [[mapping-id-field]] === `_id` field Each document indexed is associated with a <<mapping-type-field,`_type`>> (see <<mapping-type>>) and an <<mapping-id-field,`_id`>>. The `_id` field is not indexed as its value can be derived automatically from the <<mapping-uid-field,`_uid`>> field. The value of the `...
70cfcbaf-37da-474a-a2b4-92715d4e81f1
{ "language": "AsciiDoc" }
```asciidoc [[plugins_list]] == List of plugins This is a non-exhaustive list of Erlang.mk plugins, sorted alphabetically. === elvis.mk An https://github.com/inaka/elvis.mk[Elvis plugin] for Erlang.mk. Elvis is an https://github.com/inaka/elvis[Erlang style reviewer]. === geas https://github.com/crownedgrouse/geas...
```asciidoc [[plugins_list]] == List of plugins This is a non-exhaustive list of Erlang.mk plugins, sorted alphabetically. === elixir.mk An https://github.com/botsunit/elixir.mk[Elixir plugin] for Erlang.mk. http://elixir-lang.org/[Elixir] is an alternative language for the BEAM. === elvis.mk An https://github.com...
375d3857-5ef7-4688-988f-6dbcf3df56cb
{ "language": "AsciiDoc" }
```asciidoc = Json-lib :version: 3.0.0.SNAPSHOT :linkattrs: :project-name: json-lib image:http://img.shields.io/travis/aalmiray/{project-name}/development.svg["Build Status", link="https://travis-ci.org/aalmiray/{project-name}"] image:http://img.shields.io/coveralls/aalmiray/{project-name}/development.svg["Coverage St...
```asciidoc = Json-lib :version: 3.0.0.SNAPSHOT :linkattrs: image:http://img.shields.io/travis/aalmiray/Json-lib/development.svg["Build Status", link="https://travis-ci.org/aalmiray/Json-lib"] image:http://img.shields.io/coveralls/aalmiray/Json-lib/development.svg["Coverage Status", link="https://coveralls.io/r/aalmir...
008d5979-1e29-4e66-9883-246e37e238bf
{ "language": "AsciiDoc" }
```asciidoc == ANDROID MAVEN PLUGIN A plugin for Android application development with http://maven.apache.org[Apache Maven 3.0.3+] and the http://tools.android.com[Android SDK]. === Links * http://code.google.com/p/maven-android-plugin[Project site] with wiki and more * http://code.google.com/p/maven-android-plugi...
```asciidoc == ANDROID MAVEN PLUGIN A plugin for Android application development with http://maven.apache.org[Apache Maven 3.0.3+] and the http://tools.android.com[Android SDK]. === Links * http://code.google.com/p/maven-android-plugin[Project site] with wiki and more * http://code.google.com/p/maven-android-plugi...
e6e696e0-1837-4bdd-a832-f16599f95399
{ "language": "AsciiDoc" }
```asciidoc = Install a Git Server == Start Services . All services can be started, in detached mode, by giving the command: + docker-compose up -d + And this shows the output as: + Creating git_serverdata... Creating gitserver_git_dbdata_1... Creating gitserver_git_db_1... Creating git... + . Configure the i...
```asciidoc = Install a Git Server == Start Services . All services can be started, in detached mode, by giving the command: + docker-compose up -d + And this shows the output as: + Creating git_serverdata... Creating gitserver_git_dbdata_1... Creating gitserver_git_db_1... Creating git... + . Configure the i...
f87b447e-c093-4315-9467-2ed86c97c528
{ "language": "AsciiDoc" }
```asciidoc = cowboy_router:compile(3) == Name cowboy_router:compile - Compile routes to the resources == Description [source,erlang] ---- compile(cowboy_router:routes()) -> cowboy_router:dispatch_rules() ---- Compile routes to the resources. Takes a human readable list of routes and transforms it into a form mor...
```asciidoc = cowboy_router:compile(3) == Name cowboy_router:compile - Compile routes to the resources == Description [source,erlang] ---- compile(cowboy_router:routes()) -> cowboy_router:dispatch_rules() ---- Compile routes to the resources. Takes a human readable list of routes and transforms it into a form mor...
ecb4d145-2b78-4bec-ae57-d496cdd4a0eb
{ "language": "AsciiDoc" }
```asciidoc [[search]] = Search == The SearchContent Resource When a Store extending `Searchable` is exported, a `searchContent` endpoint will be available at the `/{store}/searchContent` URI. ==== [source, sh] ---- curl -H 'Accept: application/hal+json' http://localhost:8080/searchContent?queryString=foo ---- ==...
```asciidoc [[search]] = Search == The SearchContent Resource When a Store extending `Searchable` is exported, a `searchContent` endpoint will be available at the `/{store}/searchContent` URI. ==== [source, sh] ---- curl -H 'Accept: application/hal+json' http://localhost:8080/searchContent?queryString=foo ---- ==...
3ba1d750-891b-44bb-8eb0-67c8eb8e8dc2
{ "language": "AsciiDoc" }
```asciidoc // Module included in the following assemblies: // // * web_console/customizing-the-web-console.adoc [id="creating-custom-notification-banners_{context}"] = Creating custom notification banners .Prerequisites * You must have administrator privileges. .Procedure . From *Administration* -> *Custom Resour...
```asciidoc // Module included in the following assemblies: // // * web_console/customizing-the-web-console.adoc [id="creating-custom-notification-banners_{context}"] = Creating custom notification banners .Prerequisites * You must have administrator privileges. .Procedure . From *Administration* -> *Custom Resour...
6f3e079d-0bda-46cb-a0f7-50231a509665
{ "language": "AsciiDoc" }
```asciidoc [id="persistent-storage-using-fibre"] = Persistent storage using Fibre Channel include::modules/common-attributes.adoc[] :context: persistent-storage-fibre toc::[] {product-title} supports Fibre Channel, allowing you to provision your {product-title} cluster with persistent storage using Fibre channel vol...
```asciidoc [id="persistent-storage-using-fibre"] = Persistent storage using Fibre Channel include::modules/common-attributes.adoc[] :context: persistent-storage-fibre toc::[] {product-title} supports Fibre Channel, allowing you to provision your {product-title} cluster with persistent storage using Fibre channel vol...