commit
stringlengths
40
40
old_file
stringlengths
4
237
new_file
stringlengths
4
237
old_contents
stringlengths
1
4.24k
new_contents
stringlengths
1
4.87k
subject
stringlengths
15
778
message
stringlengths
15
8.75k
lang
stringclasses
266 values
license
stringclasses
13 values
repos
stringlengths
5
127k
61545369417344ff5eeab8823dfdf318b03bed7d
Trigger/Trigger.ino
Trigger/Trigger.ino
// // Generate a signal to trigger camera and lightning // // Setup int button = 7; int trigger = 13; boolean running = false; int button_state; int last_button_state = LOW; int high_duration = 10; int low_duration = 190; // 5Hz //int low_duration = 101; // 9Hz // Arduino setup void setup() { // Input-Output signa...
// // Generate a 9Hz signal to trigger camera and lightning // // Setup int button = 7; int trigger = 13; boolean running = false; int button_state; int last_button_state = LOW; int high_duration = 10; int low_duration = 101; // Arduino setup void setup() { // Input-Output signals pinMode( button, INPUT ); pin...
Change the trigger frequency to 9Hz.
Change the trigger frequency to 9Hz.
Arduino
mit
microy/StereoVision,microy/StereoVision,microy/VisionToolkit,microy/VisionToolkit,microy/PyStereoVisionToolkit,microy/PyStereoVisionToolkit
652500f1dc00a5ef0b1c894648efa67566fa6074
firmware/examples/RFID_UART.ino
firmware/examples/RFID_UART.ino
// RFID_UART.ino #if defined (SPARK) #include "SeeedRFID/SeeedRFID.h" #else #include <SoftwareSerial.h> #include <SeeedRFID.h> #endif #define RFID_RX_PIN 10 #define RFID_TX_PIN 11 // #define DEBUG #define TEST SeeedRFID RFID(RFID_RX_PIN, RFID_TX_PIN); RFIDdata tag; void setup() { Serial1.begin(9600); //Done here ...
// RFID_UART.ino #if defined (SPARK) #include "SeeedRFID/SeeedRFID.h" #else #include <SoftwareSerial.h> #include <SeeedRFID.h> #endif #define RFID_RX_PIN 10 #define RFID_TX_PIN 11 // #define DEBUGRFID #define TEST SeeedRFID RFID(RFID_RX_PIN, RFID_TX_PIN); RFIDdata tag; void setup() { Serial1.begin(9600); //Done h...
Fix DEBUG compile flag issue
Fix DEBUG compile flag issue
Arduino
mit
pkourany/SeeedRFID_IDE
adffab565840392eec11a9816787f2d192280d41
examples/Voltage16Ch/Voltage16Ch.ino
examples/Voltage16Ch/Voltage16Ch.ino
/** * Display the voltage measured at four 16-bit channels. * * Copyright (c) 2014 Circuitar * All rights reserved. * * This software is released under a BSD license. See the attached LICENSE file for details. */ #include <Wire.h> #include <Nanoshield_ADC.h> Nanoshield_ADC adc[4] = { 0x48, 0x49, 0x4A, 0x4B }; ...
/** * Display the voltage measured at four 16-bit channels. * * Copyright (c) 2014 Circuitar * All rights reserved. * * This software is released under a BSD license. See the attached LICENSE file for details. */ #include <Wire.h> #include <Nanoshield_ADC.h> Nanoshield_ADC adc[4] = { 0x48, 0x49, 0x4A, 0x4B }; ...
Fix text shown on serial monitor.
Fix text shown on serial monitor.
Arduino
bsd-3-clause
circuitar/Nanoshield_ADC,circuitar/Nanoshield_ADC
70c41f7c1353430de155f93fb0a44ec023075261
examples/mqtt_subscriber/mqtt_subscriber.ino
examples/mqtt_subscriber/mqtt_subscriber.ino
/* MQTT subscriber example - connects to an MQTT server - subscribes to the topic "inTopic" */ #include <ESP8266WiFi.h> #include <PubSubClient.h> const char *ssid = "xxxxxxxx"; // cannot be longer than 32 characters! const char *pass = "yyyyyyyy"; // // Update these with values suitable for your network. IPA...
/* MQTT subscriber example - connects to an MQTT server - subscribes to the topic "inTopic" */ #include <ESP8266WiFi.h> #include <PubSubClient.h> const char *ssid = "xxxxxxxx"; // cannot be longer than 32 characters! const char *pass = "yyyyyyyy"; // // Update these with values suitable for your network. IPA...
Fix signature of callback function in subscriber example
Fix signature of callback function in subscriber example
Arduino
mit
hemantsangwan/Arduino-PubSubClient,Imroy/pubsubclient,doebi/pubsubclient,liquiddandruff/pubsubclient,Protoneer/pubsubclient,vshymanskyy/pubsubclient,vshymanskyy/pubsubclient,koltegirish/pubsubclient,Imroy/pubsubclient,hemantsangwan/Arduino-PubSubClient,Protoneer/pubsubclient,doebi/pubsubclient,Imroy/pubsubclient,liquid...
bd824e894793e2a8ce672574e324ce8267c6c26d
tinkering/hallsensor/hall_test.ino
tinkering/hallsensor/hall_test.ino
#define HALLPIN P1_5 int revs; int count; unsigned long oldtime; unsigned long average; int rpm[5]; int hallRead; int switched; void magnet_detect(); void setup() { Serial.begin(9600); //Pull down to start pinMode(HALLPIN,INPUT_PULLDOWN); //initialize variables switched = 0; revs = 0; ol...
#define HALLPIN P1_5 int revs; unsigned long oldtime; unsigned int average; int rpm[5]; int hallRead; int switched; void setup() { Serial.begin(9600); //Pull up to start pinMode(HALLPIN,INPUT_PULLUP); pinMode(P1_4,OUTPUT); digitalWrite(P1_4,HIGH); //initialize variables switched = 0; ...
Update hallsensor code to reflect changes in wiring on breadboard using pullup resistor
Update hallsensor code to reflect changes in wiring on breadboard using pullup resistor
Arduino
mit
fkmclane/derailleurs,fkmclane/derailleurs,fkmclane/derailleurs
4dd54885f2ddc2b4c1b0ea30fdc7f61514bcc93c
Segment16Sign.ino
Segment16Sign.ino
#include <FastLED.h> #include <Segment16.h> Segment16 display; void setup(){ Serial.begin(9600); while (!Serial) {} // wait for Leonardo Serial.println("Type any character to start"); while (Serial.read() <= 0) {} delay(200); // Catch Due reset problem // assume the user typed a valid character and no r...
#include <FastLED.h> #include <Segment16.h> Segment16 display; uint32_t incomingByte = 0, input = 0; // for incoming serial data void setup(){ Serial.begin(9600); while (!Serial) {} // wait for Leonard Serial.println("Type any character to start"); while (Serial.read() <= 0) {} delay(200); // Catch Due ...
Add ability to input alt characters
Add ability to input alt characters
Arduino
mit
bguest/Segment16Sign,bguest/Segment16Sign
369101801cd468eafcc157a96e324c1fd5d12578
examples/ReadRawValue/ReadRawValue.ino
examples/ReadRawValue/ReadRawValue.ino
/** * Read raw 20-bit integer value from a load cell using the ADS1230 IC in the LoadCell Nanoshield. * * Copyright (c) 2015 Circuitar * This software is released under the MIT license. See the attached LICENSE file for details. */ #include <SPI.h> #include <Nanoshield_LoadCell.h> // LoadCell Nanoshield with the ...
/** * Read raw 20-bit integer value from a load cell using the ADS1230 IC in the LoadCell Nanoshield. * * Copyright (c) 2015 Circuitar * This software is released under the MIT license. See the attached LICENSE file for details. */ #include <SPI.h> #include <Nanoshield_LoadCell.h> // LoadCell Nanoshield with the ...
Fix raw value output to serial terminal.
Fix raw value output to serial terminal.
Arduino
mit
circuitar/Nanoshield_LoadCell,circuitar/Nanoshield_LoadCell
1c2f808025bc91c2ff7790577e8b479a1816f503
sketch_feb14b/sketch_feb14b.ino
sketch_feb14b/sketch_feb14b.ino
void setup() { // put your setup code here, to run once: } void loop() { // put your main code here, to run repeatedly: }
/* Turns on an LED for one seconds, then off for one second, repeat. This example is adapted from Examples > 01.Basics > Blink */ // On the Arduino UNO the onboard LED is attached to digital pin 13 #define LED 13 void setup() { // put your setup code here, to run once: pinMode(LED, OUTPUT); } void loop()...
Add code for blinking LED on digital out 13
Add code for blinking LED on digital out 13 Signed-off-by: Gianpaolo Macario <f8885408b8c3d931b330bae3c3a28a3af912c463@gmail.com>
Arduino
mpl-2.0
gmacario/learning-arduino
706ac004f7e92a7367f46d2d0cae9b6f29289c08
arduino/sensor_manager/sensor_manager.ino
arduino/sensor_manager/sensor_manager.ino
#include <NewPing.h> #include <Sonar.h> #include <Tach.h> #define SENSOR_SONAR 14 #define SENSOR_TACH_0 2 #define SENSOR_TACH_1 3 #define MAX_DISTANCE 300 #define LED13 13 #define FREQ 20 void tach_0_dispatcher(); void tach_1_dispatcher(); Sonar sonar(SENSOR_SONAR, MAX_DISTANCE); Tach tach_0(SENSOR_TACH_0, tach_0_di...
#include <NewPing.h> #include <Sonar.h> #include <Tach.h> #define SENSOR_SONAR 14 #define SENSOR_TACH_0 2 #define SENSOR_TACH_1 3 #define MAX_DISTANCE 300 #define LED13 13 #define FREQ 20 void tach_0_dispatcher(); void tach_1_dispatcher(); Sonar sonar(SENSOR_SONAR, MAX_DISTANCE); Tach tach_0(SENSOR_TACH_0, tach_0_di...
Use the sensor id as the identifier.
Use the sensor id as the identifier.
Arduino
mit
dennisdunn/botlab,dennisdunn/botlab,dennisdunn/botlab,dennisdunn/botlab,dennisdunn/botlab
9d474b107a48a8a6ef8d5113a123b1910e5e428d
Arduino/libraries/UA_Sensors/examples/LowPowerSDTest/LowPowerSDTest.ino
Arduino/libraries/UA_Sensors/examples/LowPowerSDTest/LowPowerSDTest.ino
/* Test SD Card Shield sensor with Low Power library sleep This sketch specifically tests the DeadOn RTC - DS3234 Breakout board used on our sensor platform. This sketch will write a value of n + 1 to the file test.txt when the RocketScream wakes up. You should detach the RTC breakout board and GSM Shiel...
/* Test SD Card Shield sensor with Low Power library sleep This sketch specifically tests the DeadOn RTC - DS3234 Breakout board used on our sensor platform. This sketch will write a value of n + 1 to the file test.txt each time the RocketScream wakes up. You should detach the RTC breakout board and GSM ...
Remove blink code since unused here
Remove blink code since unused here
Arduino
unlicense
UAA-EQLNES/EQLNES-Sensors
4e9d6ee7fdf69cfbc9365e1f4c16d704188617e9
src/sketch.ino
src/sketch.ino
#include "serLCD.h" #define LCD_PIN 2 #define LED_PIN 13 #define BLINK_DELAY 75 /*serLCD lcd(LCD_PIN);*/ void setup() { delay(2000); Serial.begin(9600); Serial.println("hello world"); for (int i = 0; i < 4; i++) { blink(); } delay(1000); } String str = ""; char character; void loop() { ledOff(...
#include "serLCD.h" #define LCD_PIN 5 #define LED_PIN 13 #define BLINK_DELAY 75 serLCD lcd(LCD_PIN); void setup() { delay(2000); Serial.begin(9600); Serial.println("hello world"); for (int i = 0; i < 4; i++) { blink(); } delay(1000); } String str = ""; char character; void loop() { ledOff(); ...
Set up the LCD pin
Set up the LCD pin
Arduino
mit
tonyc/kx3_vfo_arduino,tonyc/kx3_vfo_arduino
3f3c4c207f1342ffd17e65e0025f4ab8a9e998dc
libraries/Servo/examples/Knob/Knob.ino
libraries/Servo/examples/Knob/Knob.ino
/* Controlling a servo position using a potentiometer (variable resistor) by Michal Rinott <http://people.interaction-ivrea.it/m.rinott> modified on 8 Nov 2013 by Scott Fitzgerald http://www.arduino.cc/en/Tutorial/Knob */ #include <Servo.h> Servo myservo; // create servo object to control a servo int potpi...
/* Controlling a servo position using a potentiometer (variable resistor) by Michal Rinott <http://people.interaction-ivrea.it/m.rinott> modified on 8 Nov 2013 by Scott Fitzgerald http://www.arduino.cc/en/Tutorial/Knob */ #include <Servo.h> Servo myservo; // create servo object to control a servo int potpin =...
Modify pin 19's pin description for EVT board
Modify pin 19's pin description for EVT board Signed-off-by: Kevin Moloney <8d8bc1a72c6f3e47b067d54d8af800cedf125850@emutex.com>
Arduino
lgpl-2.1
sandeepmistry/corelibs-arduino101,bigdinotech/corelibs-arduino101,facchinm/corelibs-arduino101,sgbihu/corelibs-arduino101,01org/corelibs-arduino101,01org/corelibs-arduino101,bigdinotech/corelibs-arduino101,sandeepmistry/corelibs-arduino101,facchinm/corelibs-arduino101,sgbihu/corelibs-arduino101,bigdinotech/corelibs-ard...
1a1802eca16b1637e4ed35369ce94bea4009012a
build/shared/examples/MultiTasking/MultiBlink/GreenLed.ino
build/shared/examples/MultiTasking/MultiBlink/GreenLed.ino
#define LED GREEN_LED void setupBlueLed() { // initialize the digital pin as an output. pinMode(LED, OUTPUT); } // the loop routine runs over and over again forever as a task. void loopBlueLed() { digitalWrite(LED, HIGH); // turn the LED on (HIGH is the voltage level) delay(500); ...
#define LED GREEN_LED void setupGreenLed() { // initialize the digital pin as an output. pinMode(LED, OUTPUT); } // the loop routine runs over and over again forever as a task. void loopGreenLed() { digitalWrite(LED, HIGH); // turn the LED on (HIGH is the voltage level) delay(500); ...
Correct typo in setup/loop tuple
Correct typo in setup/loop tuple
Arduino
lgpl-2.1
radiolok/Energia,vigneshmanix/Energia,dvdvideo1234/Energia,battosai30/Energia,vigneshmanix/Energia,bobintornado/Energia,bobintornado/Energia,DavidUser/Energia,DavidUser/Energia,DavidUser/Energia,battosai30/Energia,brianonn/Energia,croberts15/Energia,dvdvideo1234/Energia,bobintornado/Energia,dvdvideo1234/Energia,crobert...
ace7e3cd5a80de43a43293e754a58452df6b28fe
Valokepakko.ino
Valokepakko.ino
const int BUTTON_PIN = 12; const int LED_PIN = 13; // See https://www.arduino.cc/en/Tutorial/StateChangeDetection void setup() { // Initialize the button pin as a input. pinMode(BUTTON_PIN, INPUT); // initialize the LED as an output. pinMode(LED_PIN, OUTPUT); // Initialize serial communication for debugging...
const int BUTTON_PIN = 12; const int LED_PIN = 13; const int PIEZO_PIN = 8; // See https://www.arduino.cc/en/Tutorial/StateChangeDetection void setup() { // Initialize the button pin as a input. pinMode(BUTTON_PIN, INPUT); // initialize the LED as an output. pinMode(LED_PIN, OUTPUT); // Initialize serial co...
Add sound when button is held down
Add sound when button is held down
Arduino
mit
myrjola/Valokepakko,myrjola/Valokepakko,myrjola/Valokepakko
4c1facc68f4e3c82de0551e0dcfe173dd95eee45
Arduino/weather-tree.ino
Arduino/weather-tree.ino
#include "neopixel/neopixel.h" #include "RandomPixels.h" #define PIN 6 Adafruit_NeoPixel snowStrip1 = Adafruit_NeoPixel(24, PIN, WS2812); RandomPixels snowRing1 = RandomPixels(); void setup() { snowStrip1.begin(); snowStrip1.show(); randomSeed(analogRead(0)); } void loop() { snowRing1.Animate...
#include "neopixel/neopixel.h" #include "RandomPixels.h" Adafruit_NeoPixel neopixelRingLarge = Adafruit_NeoPixel(24, 6, WS2812); RandomPixels ringLarge = RandomPixels(); Adafruit_NeoPixel neopixelRingMedium = Adafruit_NeoPixel(16, 7, WS2812); RandomPixels ringMedium = RandomPixels(); Adafruit_NeoPixel neopixelRingS...
Work on snow animation for three rings of tree
Work on snow animation for three rings of tree
Arduino
mit
projectweekend/Spark-Core-Weather-Tree,projectweekend/Spark-Core-Weather-Tree
7498a9e8f205b1a006363d8413eeb3996382c25e
coffee-scale.ino
coffee-scale.ino
#include <RunningAverage.h> #include <HX711.h> #define DISP_TIMER_CLK 12 #define DISP_TIMER_DIO 11 #define DISP_SCALE_CLK 3 #define DISP_SCALE_DIO 2 #define SCALE_DT A1 #define SCALE_SCK A2 #include "TimerDisplay.h" #include "GramsDisplay.h" #define FILTER_SIZE 10 #define SCALE_FACTOR 1876 #define SCALE_...
#include <RunningAverage.h> #include <HX711.h> #include "TimerDisplay.h" #include "GramsDisplay.h" #define DISP_TIMER_CLK 2 #define DISP_TIMER_DIO 3 #define DISP_SCALE_CLK 8 #define DISP_SCALE_DIO 9 #define SCALE_DT A2 #define SCALE_SCK A1 #define FILTER_SIZE 10 #define SCALE_FACTOR 1874 #define SCALE_OF...
Update pin numbers and load cell params
Update pin numbers and load cell params
Arduino
mit
mortenfyhn/coffee-scales
7b4a43ccacf7a5a274ed483eb59f9044e9a05e4a
simple_photoresistor/simple_photoresistor.ino
simple_photoresistor/simple_photoresistor.ino
#define thresh 600 // If our analogRead is less than this we will blink void setup() { pinMode(13,OUTPUT); // On board LED in Arduino Micro is 13 } void loop() { int sensorValue = analogRead(A0); // read the voltage from the sensor on A0 Serial.println(sensorValue,DEC); // print the value digitalWrite(13,sen...
#define thresh 600 // If our analogRead is less than this we will blink void setup() { pinMode(LED_BUILTIN,OUTPUT); // On board LED in Arduino Micro is 13 } void loop() { int sensorValue = analogRead(A0); // read the voltage from the sensor on A0 Serial.println(sensorValue,DEC); // print the value digitalWri...
Tweak to code so it will use the builtin LED on any board
Tweak to code so it will use the builtin LED on any board
Arduino
mit
lloydroc/criticalmaking.arduino
824649491686d3be67aa115b56c253ccd0071a6b
arduino/thunder/thunder.ino
arduino/thunder/thunder.ino
#include <Adafruit_NeoPixel.h> #ifdef __AVR__ #include <avr/power.h> #endif #define NUM_LEDS 300 #define PIN 7 #define WHITE 255,255,255 Adafruit_NeoPixel strip = Adafruit_NeoPixel(NUM_LEDS, PIN, NEO_GRB + NEO_KHZ800); int lighting_style = 0; int intensity = 0; uint8_t index = 0; void setup() { Serial.begin(9...
#include <Adafruit_NeoPixel.h> #ifdef __AVR__ #include <avr/power.h> #endif #define NUM_LEDS 300 #define PIN 7 #define WHITE 255,255,255 Adafruit_NeoPixel strip = Adafruit_NeoPixel(NUM_LEDS, PIN, NEO_GRB + NEO_KHZ800); uint8_t intensity = 0; uint8_t index = 0; void setup() { Serial.begin(9600); strip.begi...
Update arduino code to light 3 pixels at a time.
Update arduino code to light 3 pixels at a time.
Arduino
apache-2.0
feanil/thunder-lights,feanil/thunder-lights,feanil/thunder-lights
10e9a7a689cb7c5847081c6a757d940e06901687
firmware/robot_firmware/robot_firmware.ino
firmware/robot_firmware/robot_firmware.ino
#include <pins.h> #include <radio.h> #include <motor.h> #include <encoder.h> #include <control.h> void setup(void) { Serial.begin(115200); Radio::Setup(); Motor::Setup(); Encoder::Setup(); Control::acc = 0; } void loop(){ Control::stand(); }
#define robot_number 1 //Define qual robô esta sendo configurado #include <pins.h> #include <radio.h> #include <motor.h> #include <encoder.h> #include <control.h> void setup(void) { Serial.begin(115200); Radio::Setup(); Motor::Setup(); Encoder::Setup(); Control::acc = 0; } void loop(){ Control::stand()...
Facilitate how to define which robot is being configured, on .ino now.
Facilitate how to define which robot is being configured, on .ino now.
Arduino
mit
unball/ieee-very-small,unball/ieee-very-small,unball/ieee-very-small,unball/ieee-very-small
fc737ab2f39988758a38b65f2aa94b3a27838454
soundSynth.ino
soundSynth.ino
void setup() { // put your setup code here, to run once: pinMode(2, INPUT); pinMode(3, INPUT); pinMode(4, INPUT); pinMode(5, INPUT); pinMode(6, INPUT); pinMode(13, OUTPUT); } void loop() { int len = 500; int t1 = 220; int t2 = 246.94; int t3 = 277.18; int t4 = 293.66; int t5 = 329.63...
void setup() { // put your setup code here, to run once: pinMode(2, INPUT); pinMode(3, INPUT); pinMode(4, INPUT); pinMode(5, INPUT); pinMode(6, INPUT); pinMode(13, OUTPUT); } void loop() { int len = 500; float t1 = 220; float t2 = 246.94; float t3 = 277.18; float t4 = 293.66; float t...
Change t* vars from ints to floats
Change t* vars from ints to floats
Arduino
apache-2.0
jack-the-coder/soundSynth
43339af184d6f9471ffaa36e11d30012b9f37db8
firmware/examples/RFID_UART.ino
firmware/examples/RFID_UART.ino
// RFID_UART.ino #if defined (SPARK) #include "SeeedRFID/SeeedRFID.h" #else #include <SoftwareSerial.h> #include <SeeedRFID.h> #endif #define RFID_RX_PIN 10 #define RFID_TX_PIN 11 // #define DEBUGRFID #define TEST SeeedRFID RFID(RFID_RX_PIN, RFID_TX_PIN); RFIDdata tag; void setup() { Serial1.begin(9600); //Done h...
// RFID_UART.ino #if defined (PLATFORM_ID) #include "SeeedRFID/SeeedRFID.h" #else #include <SoftwareSerial.h> #include <SeeedRFID.h> #endif #define RFID_RX_PIN 10 #define RFID_TX_PIN 11 // #define DEBUGRFID #define TEST SeeedRFID RFID(RFID_RX_PIN, RFID_TX_PIN); RFIDdata tag; void setup() { Serial1.begin(9600); //...
Change to include Redbear Duo
Change to include Redbear Duo
Arduino
mit
pkourany/SeeedRFID_IDE
a41c5967fd476785a863b53c286c6f26dff90164
examples/TemperatureSensor/TemperatureSensor.ino
examples/TemperatureSensor/TemperatureSensor.ino
#include <Homie.h> const int TEMPERATURE_INTERVAL = 300; unsigned long lastTemperatureSent = 0; HomieNode temperatureNode("temperature", "temperature"); void setupHandler() { Homie.setNodeProperty(temperatureNode, "unit", "c", true); } void loopHandler() { if (millis() - lastTemperatureSent >= TEMPERATURE_INTE...
#include <Homie.h> const int TEMPERATURE_INTERVAL = 300; unsigned long lastTemperatureSent = 0; HomieNode temperatureNode("temperature", "temperature"); void setupHandler() { Homie.setNodeProperty(temperatureNode, "unit", "c", true); } void loopHandler() { if (millis() - lastTemperatureSent >= TEMPERATURE_INTE...
Update temperature example with more semantic topic
Update temperature example with more semantic topic
Arduino
mit
euphi/homie-esp8266,euphi/homie-esp8266,euphi/homie-esp8266,marvinroger/homie-esp8266,marvinroger/homie-esp8266,marvinroger/homie-esp8266,marvinroger/homie-esp8266,euphi/homie-esp8266
46277415a9615588869e0f25defbbafb17992305
brotherKH930_arduino.ino
brotherKH930_arduino.ino
#include "brotherKH930.h" void setup() { // put your setup code here, to run once: } void loop() { // put your main code here, to run repeatedly: }
#include "brotherKH930.h" PinSetup pins = kniticV2Pins(); BrotherKH930 brother(pins); void setup() { Serial.begin(115200); Serial.println("Ready."); } void loop() { Direction dir = brother.direction(); int pos = brother.position(); Serial.print("@"); Serial.print(pos); Serial.print(" "); if (dir ==...
Add main to test the position logic.
Add main to test the position logic.
Arduino
apache-2.0
msiegenthaler/brotherKH930_arduino
11e1914666d6fdc666e167c4dfecc9914910bf73
src/tests/unit/cpp_wrapper/cpp_wrapper.ino
src/tests/unit/cpp_wrapper/cpp_wrapper.ino
#include <Arduino.h> #include "test_cpp_wrapper.h" void setup( ) { Serial.begin(BAUD_RATE); runalltests_cpp_wrapper(); } void loop( ) { }
#include <Arduino.h> #include <SPI.h> #include <SD.h> #include "test_cpp_wrapper.h" void setup( ) { SPI.begin(); SD.begin(SD_CS_PIN); Serial.begin(BAUD_RATE); runalltests_cpp_wrapper(); } void loop( ) { }
Fix missing SD begin in C++ Wrapper test
Fix missing SD begin in C++ Wrapper test
Arduino
bsd-3-clause
iondbproject/iondb,iondbproject/iondb
b9d1e45eddeae0dfb56b172480967c8c4b4d1f42
btnLed/src/sketch.ino
btnLed/src/sketch.ino
/* btnLed sketch Push a button to turn on a LED. Push the button again to turn the LED off. ******* Do not connect more than 5 volts directly to an Arduino pin!! ******* */ #define pushbuttonPIN 2 #define onoffPIN 3 volatile int flag = LOW; unsigned long timestamp = 0; void setup() { pinMode(onoffPIN,...
/* btnLed sketch Push a button to turn on a LED. Push the button again to turn the LED off. ******* Do not connect more than 5 volts directly to an Arduino pin!! ******* */ #define pushbuttonPIN 2 #define onoffLED 3 volatile int flag = LOW; unsigned long timestamp = 0; void setup() { pinMode(onoffLED,...
Use LED iso PIN to avoid confusion
Use LED iso PIN to avoid confusion
Arduino
mit
Mausy5043/arduino,Mausy5043/arduino,Mausy5043/arduino,Mausy5043/arduino
b687f248496c1c88565fe6578236e1c158c1a941
examples/EntropySeed/EntropySeed.ino
examples/EntropySeed/EntropySeed.ino
/* ArcFour Entropy Seeding Demo created 10 Jun 2014 by Pascal de Bruijn */ #include <Entropy.h> #include <ArcFour.h> ArcFour ArcFour; int ledPin = 13; void setup() { Serial.begin(9600); while (!Serial) { ; // wait for serial port to connect. Needed for Leonardo and Due } Entropy.Initia...
/* ArcFour Entropy Seeding Demo created 10 Jun 2014 by Pascal de Bruijn */ #include <Entropy.h> #include <ArcFour.h> ArcFour ArcFour; int ledPin = 13; void setup() { Serial.begin(9600); while (!Serial) { ; // wait for serial port to connect. Needed for Leonardo and Due } Entropy.initia...
Update for new Entropy API
Update for new Entropy API
Arduino
mit
pmjdebruijn/Arduino-ArcFour-Library
d886b5f6be5becb11448fbd39b7ce9c5a14ad47a
firmware/examples/blank/blank.ino
firmware/examples/blank/blank.ino
// This program allows the Spark to act as a relay // between a terminal program on a PC and the // Fingerprint sensor connected to RX/TX (Serial1) // on the Spark void setup() { // initialize both serial ports: Serial.begin(57600); Serial1.begin(57600); } void loop() { // read from Serial1 (Fingerprint reade...
// This program allows the Spark to act as a relay // between a terminal program on a PC and the // Fingerprint sensor connected to RX/TX (Serial1) // on the Spark void setup() { // Open serial communications and wait for port to open: Serial.begin(57600); Serial1.begin(57600); } void loop() // run over and ...
Update to tested and working code
Update to tested and working code
Arduino
bsd-3-clause
pkourany/Adafruit_Fingerprint_Library
506fae7cc380543e9c0d4c31010d97dd78cd8d9c
Arduino/Arduino101_Accelerometer/Arduino101_Accelerometer.ino
Arduino/Arduino101_Accelerometer/Arduino101_Accelerometer.ino
#include "CurieImu.h" int16_t ax, ay, az; void setup() { Serial.begin(9600); while (!Serial); CurieImu.initialize(); if (!CurieImu.testConnection()) { Serial.println("CurieImu connection failed"); } CurieImu.setFullScaleAccelRange(BMI160_ACCEL_RANGE_8G); } void loop() { CurieImu.getAcceleration(...
#include "CurieIMU.h" int ax, ay, az; void setup() { Serial.begin(9600); while (!Serial); CurieIMU.begin(); if (!CurieIMU.testConnection()) { Serial.println("CurieImu connection failed"); } CurieIMU.setAccelerometerRange(8); } void loop() { CurieIMU.readAccelerometer(ax, ay, az); Serial.print(...
Use Arduino101 CurieIMU new APIs.
Use Arduino101 CurieIMU new APIs.
Arduino
bsd-3-clause
damellis/ESP,damellis/ESP
ca04db2843e46e273a94ee37c7100580f009a1b4
firmware/src/sampler.ino
firmware/src/sampler.ino
#include <Arduino.h> #include "config.h" #include <DcMotor.h> DcMotor xMotor(X_AXIS_PWM, X_AXIS_FWD, X_AXIS_REV), yMotor(Y_AXIS_PWM, Y_AXIS_FWD, Y_AXIS_REV), zMotor(Z_AXIS_PWM, Z_AXIS_FWD, Z_AXIS_REV); void setup() { Serial.begin(BAUDRATE); xMotor.begin(); yMotor.begin(); zMotor.begin(); } void loop() ...
#include <Arduino.h> #include "config.h" #include <DcMotor.h> DcMotor xMotor(X_AXIS_PWM, X_AXIS_FWD, X_AXIS_REV); DcMotor yMotor(Y_AXIS_PWM, Y_AXIS_FWD, Y_AXIS_REV); DcMotor zMotor(Z_AXIS_PWM, Z_AXIS_FWD, Z_AXIS_REV); void setup() { Serial.begin(BAUDRATE); xMotor.begin(); yMotor.begin(); zMotor.begin(); } v...
Split motor definitions into multiple lines
Split motor definitions into multiple lines
Arduino
bsd-3-clause
ArchimedesPi/plate-sampler,ArchimedesPi/plate-sampler
fddf08c9d2b9946e194738fd3c3e53ef188106e9
firmware/examples/RFID_UART.ino
firmware/examples/RFID_UART.ino
// RFID_UART.ino #if defined (SPARK) #include "SeeedRFID/SeeedRFID.h" #else #include <SoftwareSerial.h> #include <SeeedRFID.h> #endif #define RFID_RX_PIN 10 #define RFID_TX_PIN 11 // #define DEBUG #define TEST SeeedRFID RFID(RFID_RX_PIN, RFID_TX_PIN); RFIDdata tag; void setup() { Serial.begin(57600); Serial.prin...
// RFID_UART.ino #if defined (SPARK) #include "SeeedRFID/SeeedRFID.h" #else #include <SoftwareSerial.h> #include <SeeedRFID.h> #endif #define RFID_RX_PIN 10 #define RFID_TX_PIN 11 // #define DEBUG #define TEST SeeedRFID RFID(RFID_RX_PIN, RFID_TX_PIN); RFIDdata tag; void setup() { Serial1.begin(9600); //Done here ...
Update for Particle Core and Photon
Update for Particle Core and Photon
Arduino
mit
pkourany/SeeedRFID_IDE
39956d95962f07cb6cb70765942392633cfa713f
examples/sensors/ultrasounds/HCSR04/HCSR04.ino
examples/sensors/ultrasounds/HCSR04/HCSR04.ino
#include <Smartcar.h> const int TRIGGER_PIN = 6; //D6 const int ECHO_PIN = 7; //D7 SR04 front(TRIGGER_PIN, ECHO_PIN, 10); void setup() { Serial.begin(9600); } void loop() { Serial.println(front.getDistance()); delay(100); }
#include <Smartcar.h> const int TRIGGER_PIN = 6; //D6 const int ECHO_PIN = 7; //D7 const unsigned int MAX_DISTANCE = 100; SR04 front(TRIGGER_PIN, ECHO_PIN, MAX_DISTANCE); void setup() { Serial.begin(9600); } void loop() { Serial.println(front.getDistance()); delay(100); }
Adjust max sensor distance to something more suitable
Adjust max sensor distance to something more suitable
Arduino
mit
platisd/smartcar_shield,platisd/smartcar_shield
3b4e45a8545bd26d6a1ac749415120f0d1a636c5
laundry-dude-led-sensor/laundry-dude-led-sensor.ino
laundry-dude-led-sensor/laundry-dude-led-sensor.ino
#include <SoftwareSerial.h> // Serial speed #define SERIAL_BAUDRATE 9600 #define LIGHTSENSOR_PIN 3 #define FETCH_INTERVAL 100 #define POST_INTERVAL 5000 const int numLedSamples = POST_INTERVAL / FETCH_INTERVAL; int ledSamples[numLedSamples]; int ledSampleCounter = 0; int light = 0; // Software serial for XBee modu...
#include <SoftwareSerial.h> // Serial speed #define SERIAL_BAUDRATE 9600 #define LIGHTSENSOR_PIN 3 #define FETCH_INTERVAL 100 #define POST_INTERVAL 5000 const int numLedSamples = POST_INTERVAL / FETCH_INTERVAL; int ledSamples[numLedSamples]; int ledSampleCounter = 0; int light = 0; // Software serial for XBee modu...
Implement LED data as ringbuffer.
[LedDude] Implement LED data as ringbuffer. Signed-off-by: Juri Berlanda <5bfdca9e82c53adb0603ce7083f4ba4f2da5cacf@hotmail.com>
Arduino
mit
j-be/laundry-dudes,j-be/laundry-dudes,j-be/laundry-dudes,j-be/laundry-dudes,j-be/laundry-dudes,j-be/laundry-dudes
915dba4fde478cfbca640cef0dfb5ea5c60a7ce0
README.adoc
README.adoc
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/images/download.s...
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/images/download.s...
Document how to use the Bintray repo
Document how to use the Bintray repo
AsciiDoc
bsd-2-clause
pivotal/cf-env
3f83df33d9efe5b4a7f2fe0ad7bcce0f586401d2
README.adoc
README.adoc
= 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 when writing sh...
= 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 when writing sh...
Undo include change in readme.
Undo include change in readme.
AsciiDoc
mit
jeffrimko/Auxly
f1b569bfc0f68e487de62febdf6a286d939fa5ae
modules/configuring-scale-bounds-knative.adoc
modules/configuring-scale-bounds-knative.adoc
// 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 maximum number of ...
// 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 maximum number of ...
Fix spec.template.metadata.annotations for min and max scale example
Fix spec.template.metadata.annotations for min and max scale example
AsciiDoc
apache-2.0
vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs
e0992105f2fbecca2909a19b0cdbbb74aa20a561
docs/index.asciidoc
docs/index.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.asciidoc[] includ...
= 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[] include::./f...
Use master version in docs
Use master version in docs
AsciiDoc
mit
yapdns/yapdnsbeat,yapdns/yapdnsbeat
0563338e61781db621d9bfbcf201a4c2c753dae4
README.adoc
README.adoc
= 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[homepage]. * Hav...
= 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/redhatacces...
Update docs link to point to docs repo
Update docs link to point to docs repo
AsciiDoc
mit
nhr/ascii_binder,redhataccess/doc_site_builder,redhataccess/ascii_binder,redhataccess/ascii_binder,redhataccess/doc_site_builder,nhr/ascii_binder
3ab42490a909b1b2ba73652ffa172172bea9ad85
README.adoc
README.adoc
: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="https://app.werc...
: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="https://app.werc...
Update documentation for NPM support
Update documentation for NPM support
AsciiDoc
mit
mmjmanders/ng-iban
768aa1fd4d785b7ab5ccbeca3949f7ed8e73d6d6
README.adoc
README.adoc
= 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 the in-sour...
= 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 the in-sour...
Revert "Revert "Revert "Revert "Test trigger on push""""
Revert "Revert "Revert "Revert "Test trigger on push"""" This reverts commit 2e835acb457e13f3fc5a49459604488388d80cae.
AsciiDoc
apache-2.0
vert-x3/vertx-infinispan
bea0a3216104837de75798f1cea3ad6202791160
documentation/src/main/asciidoc/ch14.asciidoc
documentation/src/main/asciidoc/ch14.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://github.com/beanva...
[[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://github.com/beanva...
Update the links to the forum
Update the links to the forum
AsciiDoc
apache-2.0
marko-bekhta/hibernate-validator,marko-bekhta/hibernate-validator,hibernate/hibernate-validator,marko-bekhta/hibernate-validator,hibernate/hibernate-validator,hibernate/hibernate-validator
77ccf579cb4a5d8795337d2b85b946c5ecf85475
adoc/regtest-intro.adoc
adoc/regtest-intro.adoc
== 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 blockchain reor...
== 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 blockchain reor...
Remove reference to deleted scripts.
Remove reference to deleted scripts.
AsciiDoc
apache-2.0
OmniLayer/OmniJ,OmniLayer/OmniJ,OmniLayer/OmniJ
d0d63e6172efc6e7eb7ca3e8fd29b3a670c18899
subprojects/docs/src/docs/userguide/licenses.adoc
subprojects/docs/src/docs/userguide/licenses.adoc
// 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 by applicable...
// 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 by applicable...
Add license information to docs clarifying build scan plugin license
Add license information to docs clarifying build scan plugin license
AsciiDoc
apache-2.0
blindpirate/gradle,blindpirate/gradle,robinverduijn/gradle,robinverduijn/gradle,robinverduijn/gradle,robinverduijn/gradle,robinverduijn/gradle,gradle/gradle,robinverduijn/gradle,lsmaira/gradle,gradle/gradle,lsmaira/gradle,blindpirate/gradle,lsmaira/gradle,blindpirate/gradle,robinverduijn/gradle,blindpirate/gradle,lsmai...
aba970033b1101b2c1e175a4ba49e513bd4519f7
monitoring/monitoring.adoc
monitoring/monitoring.adoc
[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 monitoring a...
[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 monitoring a...
Remove the deprecated etcd section
Remove the deprecated etcd section
AsciiDoc
apache-2.0
vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs
e71e5cab507a8949b72782b92c3b9f74b33ec729
modules/openshift-developer-cli-installing-odo-on-linux.adoc
modules/openshift-developer-cli-installing-odo-on-linux.adoc
// 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 -o /usr/loca...
// 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 -o /usr/local...
Fix url to odo linux binary
Fix url to odo linux binary
AsciiDoc
apache-2.0
vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs
4d61fa8fd9011eb6cf4e899c64a8b81fcb2c152c
Documentation/ArchitectureDocumentation.asciidoc
Documentation/ArchitectureDocumentation.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 Requirements ...
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 Requirements ...
Add arc 42 Architecture Constraints
Add arc 42 Architecture Constraints
AsciiDoc
mit
RainerWinkler/Moose-Diagram
f31704a0bf79e8a86e03ad938eb4cdd12295d4ff
community/forum.adoc
community/forum.adoc
= 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/optaplanner[StackOver...
= 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/optaplanner...
Split optaplanner's dev list away from drools's mailing list
Split optaplanner's dev list away from drools's mailing list
AsciiDoc
apache-2.0
oskopek/optaplanner-website,psiroky/optaplanner-website,psiroky/optaplanner-website,psiroky/optaplanner-website,bibryam/optaplanner-website,bibryam/optaplanner-website,droolsjbpm/optaplanner-website,oskopek/optaplanner-website,oskopek/optaplanner-website,bibryam/optaplanner-website,droolsjbpm/optaplanner-website,drools...
964b9a214abd95783bc74eeb7a91a091a9deb2cc
pages/apim/3.x/kubernetes/apim-kubernetes-overview.adoc
pages/apim/3.x/kubernetes/apim-kubernetes-overview.adoc
[[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 APIM Gateway al...
[[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 APIM Gateway al...
Fix APIM version to 3.13
Fix APIM version to 3.13
AsciiDoc
apache-2.0
gravitee-io/gravitee-docs,gravitee-io/gravitee-docs,gravitee-io/gravitee-docs
fbd8d2ed399230a8e3e1d469e9825eb0602fb981
dsl/camel-cli-connector/src/main/docs/cli-connector.adoc
dsl/camel-cli-connector/src/main/docs/cli-connector.adoc
= 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 integrations. ...
= 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-cli-connecto...
Add spring-boot link in doc
Add spring-boot link in doc
AsciiDoc
apache-2.0
apache/camel,apache/camel,tadayosi/camel,cunningt/camel,tadayosi/camel,cunningt/camel,christophd/camel,cunningt/camel,cunningt/camel,christophd/camel,apache/camel,tadayosi/camel,tadayosi/camel,apache/camel,cunningt/camel,christophd/camel,cunningt/camel,tadayosi/camel,christophd/camel,tadayosi/camel,apache/camel,christo...
5059698c58cac5335abdf4bb35de4830764ca308
documentation/src/docs/asciidoc/release-notes.adoc
documentation/src/docs/asciidoc/release-notes.adoc
[[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-notes-5.0.0...
[[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-notes-5.0.0-M5...
Order release notes from newest to oldest
Order release notes from newest to oldest Issue: #1066
AsciiDoc
epl-1.0
sbrannen/junit-lambda,junit-team/junit-lambda
6b09164a364abe0e0b7531aca2380a4f33f5c8e4
README.asciidoc
README.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 * Network (SNMP)...
== 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="https://co...
Add travis badge + fix coverage badge
Add travis badge + fix coverage badge
AsciiDoc
agpl-3.0
orthagh/fusioninventory-for-glpi,orthagh/fusioninventory-for-glpi,orthagh/fusioninventory-for-glpi,orthagh/fusioninventory-for-glpi,orthagh/fusioninventory-for-glpi
d9579412a0c893779ad2ab5399bb95a667667309
README.asciidoc
README.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 * Network (SNMP)...
== 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="https://co...
Add travis badge + fix coverage badge
Add travis badge + fix coverage badge
AsciiDoc
agpl-3.0
TECLIB/fusioninventory-for-glpi,mohierf/fusioninventory-for-glpi,TECLIB/fusioninventory-for-glpi,mohierf/fusioninventory-for-glpi,itinside/fusioninventory-for-glpi,fusioninventory/fusioninventory-for-glpi,fusioninventory/fusioninventory-for-glpi,fusioninventory/fusioninventory-for-glpi,orthagh/fusioninventory-for-glpi,...
89e7da34b9c4b072e3caab12dbe765b0a33be272
README.adoc
README.adoc
= 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.org/hawkula...
= 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.org/hawkula...
Update readme with Wiki reference.
Update readme with Wiki reference.
AsciiDoc
apache-2.0
sauravvishal8797/hawkular-android-client,shubhamvashisht/hawkular-android-client,anuj1708/hawkular-android-client,danielpassos/hawkular-android-client,anuj1708/hawkular-android-buff,pg301/hawkular-android-client,hawkular/hawkular-android-client
81ac2b91b6a6b7cf2422f6aabdd4164434b295dd
README.adoc
README.adoc
= 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] migrations for the...
= 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] migrations for the...
Adjust readme to Spring Boot 2.1
Adjust readme to Spring Boot 2.1
AsciiDoc
unlicense
drumonii/SpringBootTwoDataSources
ed1b52faf367fc3867a877f0fb63b3cf7034dcab
README.adoc
README.adoc
= 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 Discovery] == Mave...
= 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 Discovery] == Mave...
Add reference to classloader issue and workaround
Add reference to classloader issue and workaround
AsciiDoc
mit
ivargrimstad/snoopee,ivargrimstad/snoopee,ivargrimstad/snoopee,ivargrimstad/snoop,ivargrimstad/snoop,ivargrimstad/snoop
475366b5f1daeb419f2805ee1e9eefad4df70803
dsl/camel-cli-connector/src/main/docs/cli-connector.adoc
dsl/camel-cli-connector/src/main/docs/cli-connector.adoc
= 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-cli-connecto...
= 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 integrations. ...
Revert "Add spring-boot link in doc"
Revert "Add spring-boot link in doc" This reverts commit fbd8d2ed399230a8e3e1d469e9825eb0602fb981.
AsciiDoc
apache-2.0
cunningt/camel,christophd/camel,tadayosi/camel,cunningt/camel,tadayosi/camel,christophd/camel,apache/camel,apache/camel,tadayosi/camel,christophd/camel,cunningt/camel,tadayosi/camel,christophd/camel,cunningt/camel,cunningt/camel,christophd/camel,cunningt/camel,apache/camel,tadayosi/camel,apache/camel,apache/camel,chris...
c55eb2c72d299f4d15f5f711ab62d13a59b39f28
LICENSE.adoc
LICENSE.adoc
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 in writing,...
== 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 in wri...
Migrate to Apache v2.0 license
Migrate to Apache v2.0 license
AsciiDoc
apache-2.0
OpenHFT/Chronicle-Bytes
009eb4b932af11292fcd86c9427a867dfc4486dc
operators/olm-webhooks.adoc
operators/olm-webhooks.adoc
[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 Operator contro...
[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 object store and ...
Edit to OLM webhook workflow
Edit to OLM webhook workflow
AsciiDoc
apache-2.0
vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs
e84b61358f35d622c1da53330f5140b011053dbb
docs/reference/migration/index.asciidoc
docs/reference/migration/index.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-upgrade,full clus...
[[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-upgrade,full clus...
Fix version order for breaking changes docs
Fix version order for breaking changes docs
AsciiDoc
apache-2.0
ESamir/elasticsearch,uschindler/elasticsearch,s1monw/elasticsearch,henakamaMSFT/elasticsearch,StefanGor/elasticsearch,masaruh/elasticsearch,awislowski/elasticsearch,strapdata/elassandra,camilojd/elasticsearch,kalimatas/elasticsearch,brandonkearby/elasticsearch,IanvsPoplicola/elasticsearch,diendt/elasticsearch,gmarz/ela...
bb696411acc9f2bed981b1f3c9aa5a13cdfd91c8
doc/resources/doc/sources/index.adoc
doc/resources/doc/sources/index.adoc
= 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 installing ...
= 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 your editor ...
Remove Why Edge? link from preamble
Remove Why Edge? link from preamble It was not useful.
AsciiDoc
mit
juxt/edge,juxt/edge
920d5fe7ab3e56c7a2bc8ebaa186698948ab9b23
documentation/src/docs/asciidoc/overview.adoc
documentation/src/docs/asciidoc/overview.adoc
[[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 with lower ver...
[[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 with lower ver...
Apply Spotless to User Guide
Apply Spotless to User Guide ------------------------------------------------------------------------ On behalf of the community, the JUnit Lambda Team thanks Klarna AB (http://www.klarna.com) for supporting the JUnit crowdfunding campaign! ------------------------------------------------------------------------
AsciiDoc
epl-1.0
marcphilipp/junit5,marcphilipp/junit-lambda,sbrannen/junit-lambda,junit-team/junit-lambda
babf52d8f8101d018e357bdd47e5ccb9d8af14d5
src/jqassistant/structure.adoc
src/jqassistant/structure.adoc
[[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:packagesShould...
[[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:packagesShould...
Use 'Main'-Label instead of type-attribute.
Use 'Main'-Label instead of type-attribute.
AsciiDoc
apache-2.0
tullo/biking2,michael-simons/biking2,tullo/biking2,tullo/biking2,tullo/biking2,michael-simons/biking2,michael-simons/biking2,michael-simons/biking2
8299e439b97f466d83a34db371b265dd265a1267
documentation/src/docs/asciidoc/release-notes/release-notes-5.5.0-M2.adoc
documentation/src/docs/asciidoc/release-notes/release-notes-5.5.0-M2.adoc
[[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]] === JUnit...
[[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]] === JUnit...
Clean up 5.5 M2 release notes
Clean up 5.5 M2 release notes The following feature enhancement was already shipped with 5.5 M1: * `@ValueSource` now additionally supports literal values of type `boolean` for parameterized tests.
AsciiDoc
epl-1.0
sbrannen/junit-lambda,junit-team/junit-lambda
15d46988dc74d29a3c4567e83de60717b4683561
docs/reference/analysis/tokenfilters/keyword-marker-tokenfilter.asciidoc
docs/reference/analysis/tokenfilters/keyword-marker-tokenfilter.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 list of words...
[[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 list of words...
Fix typo in sample json
Fix typo in sample json Fixes #9253
AsciiDoc
apache-2.0
jimczi/elasticsearch,mute/elasticsearch,linglaiyao1314/elasticsearch,schonfeld/elasticsearch,huanzhong/elasticsearch,girirajsharma/elasticsearch,Widen/elasticsearch,jeteve/elasticsearch,ricardocerq/elasticsearch,gingerwizard/elasticsearch,nazarewk/elasticsearch,Clairebi/ElasticsearchClone,liweinan0423/elasticsearch,sau...
b8fb429c0b551c1a34b0fd294dac90a297d774be
AUTHORS.adoc
AUTHORS.adoc
= 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) - Guillaume Bury (g...
= 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) - Guillaume Bury (g...
Add myself to the authors file
Add myself to the authors file
AsciiDoc
bsd-2-clause
c-cube/ocaml-containers
f832929a9f279dc9d3bfa6c440179b3453f00a58
adoc/omnij-devguide.adoc
adoc/omnij-devguide.adoc
= 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 [plantuml,...
= 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. == JSON-RPC ...
Add images directory attribute to devguide
Add images directory attribute to devguide
AsciiDoc
apache-2.0
OmniLayer/OmniJ,OmniLayer/OmniJ,OmniLayer/OmniJ
1873528b34edfa2fc400ead1cfb4d95625e18b79
docs/groundwork.adoc
docs/groundwork.adoc
= 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 system, and ins...
= 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 system, and ins...
Put Best practices in a separate section.
Put Best practices in a separate section.
AsciiDoc
apache-2.0
CityOfNewYork/NYCOpenRecords,CityOfNewYork/NYCOpenRecords,CityOfNewYork/NYCOpenRecords,CityOfNewYork/NYCOpenRecords,CityOfNewYork/NYCOpenRecords
fbd313be9d59492957f3cac1437a6304fb06b21d
README.adoc
README.adoc
= 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. - Optional defaul...
= 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. - Optional defaul...
Update to the example section.
Update to the example section.
AsciiDoc
mit
jeffrimko/Qprompt
e938ebfa19e8742a255592dfa11ac879700dbade
adoc/include/common_options.adoc
adoc/include/common_options.adoc
*--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::help_option.ado...
*--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 to "text". *...
Remove nested includes from adoc
Remove nested includes from adoc
AsciiDoc
apache-2.0
globus/globus-cli,globus/globus-cli
52b6608eace07c90c3dbe9e3a87e5510675406f1
modules/dedicated-managing-dedicated-administrators.adoc
modules/dedicated-managing-dedicated-administrators.adoc
// 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 of this grou...
// 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 of this grou...
Update documentation to current interface on cloud.rh.c
Update documentation to current interface on cloud.rh.c
AsciiDoc
apache-2.0
vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs
c5002afeefa5636f66cc673a80f130175f931a60
CHANGELOG.asciidoc
CHANGELOG.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 welcome. 2022/03/...
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 welcome. 2022/03/...
Set date for breaking Relx 4 change
Set date for breaking Relx 4 change
AsciiDoc
isc
ninenines/erlang.mk,rabbitmq/erlang.mk
436b3063271078581d376774c2a6d534742dd777
doc/cookbook/zone.adoc
doc/cookbook/zone.adoc
== 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,clojure] ---- ...
== 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,clojure] ---- ...
Add offset examples to Zones
Add offset examples to Zones
AsciiDoc
mit
juxt/tick,juxt/tick
7ce834e70d12fb870f79af99daaf22e9f5c6aee8
src/main/docs/index.adoc
src/main/docs/index.adoc
= 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[]
= 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.adoc[] include...
Add title image to pdf
Add title image to pdf
AsciiDoc
mit
jericks/geo-shell,jericks/geo-shell,jericks/geo-shell
6b23a4a24353bad169fa4340a30d8a357a512fce
impl/src/docs/asciidoc/index.adoc
impl/src/docs/asciidoc/index.adoc
:generated: ../../../target/generated-docs/asciidoc include::{generated}/overview.adoc[] include::manual_rest_doc.adoc[] include::{generated}/paths.adoc[]
:generated: ../../../target/generated-docs/asciidoc include::{generated}/overview.adoc[] include::manual_rest_doc.adoc[] include::{generated}/paths.adoc[] include::{generated}/definitions.adoc[]
Add generated data type definitions to Swagger documentation
Add generated data type definitions to Swagger documentation
AsciiDoc
mit
jugda/dukecon_server,dukecon/dukecon_server,jugda/dukecon_server,dukecon/dukecon_server,dukecon/dukecon_server,jugda/dukecon_server
b582f7574430e1946ffaac7ac7365c48fc3ac1b4
README.adoc
README.adoc
= 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 properties for each...
= 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 properties for each...
Remove note about app starting up
Remove note about app starting up It's no longer applicable to the branch that is purely backend components without any frontend.
AsciiDoc
unlicense
drumonii/SpringBootTwoDataSources
b978bf8d377f09c132050297e45b3c8fbb652a4a
src/main/asciidoc/development.adoc
src/main/asciidoc/development.adoc
[[development]] == Development Github repository: {datasource-proxy} === Build Documentation ```sh > ./mvnw asciidoctor:process-asciidoc@output-html ```
[[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 ```
Add how to use asciidoctor plugin in dev
Add how to use asciidoctor plugin in dev
AsciiDoc
mit
ttddyy/datasource-proxy,ttddyy/datasource-proxy
2e835acb457e13f3fc5a49459604488388d80cae
README.adoc
README.adoc
= 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 the in-sour...
= 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 the in-sour...
Revert "Revert "Revert "Test trigger on push"""
Revert "Revert "Revert "Test trigger on push""" This reverts commit f235543226884c6293a70b2540441e5b1528ff6c.
AsciiDoc
apache-2.0
vert-x3/vertx-infinispan
242825445a9b0adf2b5ef2b3de4d8c612ade0c22
docs/src/docs/asciidoc/multiTenancy/tenantTransforms.adoc
docs/src/docs/asciidoc/multiTenancy/tenantTransforms.adoc
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 - `@WithoutTenant` - Execut...
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 - `@WithoutTenant` - E...
Replace "the next" with "the following"
Replace "the next" with "the following"
AsciiDoc
apache-2.0
grails/gorm-hibernate5
a78ed8d4a2590eb9759cf1283971056af637d94b
libbeat/docs/communitybeats.asciidoc
libbeat/docs/communitybeats.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/christiangalsterer/...
[[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/christiangalsterer/...
Add apachebeat to the list of beats from opensource
Add apachebeat to the list of beats from opensource
AsciiDoc
mit
yapdns/yapdnsbeat,yapdns/yapdnsbeat
47212b4db9302d1b8f194bc8c43247772c54afbd
doc/src/main/asciidoc/rest-spec.adoc
doc/src/main/asciidoc/rest-spec.adoc
= 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. == Webroot == Tag...
= 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. == Breadcrumbs `/b...
Add section on breadcrumbs endpoint
Add section on breadcrumbs endpoint
AsciiDoc
apache-2.0
gentics/mesh,gentics/mesh,gentics/mesh,gentics/mesh
ccb2545c35c7a88014f2c0dd06a1582b029ab298
conoha/dokku-apps/README.adoc
conoha/dokku-apps/README.adoc
= 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-started.d.10sr.f5....
= 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:python-gett...
Add note to add keys for dokku
Add note to add keys for dokku
AsciiDoc
unlicense
10sr/server-provisions,10sr/machine-setups,10sr/machine-setups,10sr/machine-setups,10sr/server-provisions,10sr/machine-setups
d61a7352efcf33d8bcb1bf1fd9052480e2ee15ba
code/continuousIntegration.adoc
code/continuousIntegration.adoc
= 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 mirror of a Red...
= 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 mirror of a R...
Update public Jenkins job URL
Update public Jenkins job URL
AsciiDoc
apache-2.0
bibryam/optaplanner-website,psiroky/optaplanner-website,oskopek/optaplanner-website,droolsjbpm/optaplanner-website,bibryam/optaplanner-website,oskopek/optaplanner-website,psiroky/optaplanner-website,bibryam/optaplanner-website,psiroky/optaplanner-website,oskopek/optaplanner-website,droolsjbpm/optaplanner-website,drools...
c9fd39c5785d21b75d32348f8643409668e985bd
modules/nw-dns-operator-logs.adoc
modules/nw-dns-operator-logs.adoc
// 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 deployment/dns-operat...
// 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-operator -c dns...
Fix command to get DNS logs
Fix command to get DNS logs - https://bugzilla.redhat.com/show_bug.cgi?id=1834702
AsciiDoc
apache-2.0
vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs
04d5d44e744c96aa641b534a22a546ae7262579e
src/docs/manual/03_task_exportEA.adoc
src/docs/manual/03_task_exportEA.adoc
: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://rdmueller.githu...
: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://rdmueller.githu...
Add documentation for the parameters offered by the exportEA configuration.
Add documentation for the parameters offered by the exportEA configuration.
AsciiDoc
mit
docToolchain/docToolchain,docToolchain/docToolchain,docToolchain/docToolchain,docToolchain/docToolchain
573e2c24a90c6422ec873124f93fc1418c1ea00e
python/template/docs/problem.adoc
python/template/docs/problem.adoc
: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-knowledge}, {adva...
: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-knowledge}, {adva...
Add Improving the Problem section.
Add Improving the Problem section.
AsciiDoc
mit
jerodg/hackerrank-python
5ba5e9426c278aba34de90e183f8e7e8a74556e5
examples/camel-example-spring-boot-supervising-route-controller/readme.adoc
examples/camel-example-spring-boot-supervising-route-controller/readme.adoc
# 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 interact with the...
# 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 interact with the...
Fix the example document error
Fix the example document error Fixed the document error of camel-example-spring-boot-supervising-route-controller
AsciiDoc
apache-2.0
gnodet/camel,pax95/camel,mcollovati/camel,alvinkwekel/camel,apache/camel,tdiesler/camel,Fabryprog/camel,Fabryprog/camel,adessaigne/camel,gnodet/camel,cunningt/camel,tadayosi/camel,tdiesler/camel,DariusX/camel,pax95/camel,pmoerenhout/camel,pmoerenhout/camel,mcollovati/camel,zregvart/camel,pax95/camel,nikhilvibhav/camel,...
324d6806d57251e53f54e9baf541aa06a1a372a5
README.adoc
README.adoc
= 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/default/files/sty...
= 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/ehcache3/wiki[wi...
Fix image tags in updated readme
Fix image tags in updated readme
AsciiDoc
apache-2.0
rkavanap/ehcache3,palmanojkumar/ehcache3,mingyaaaa/ehcache3,lorban/ehcache3,sreekanth-r/ehcache3,aurbroszniowski/ehcache3,lorban/ehcache3,kedar031/ehcache3,GaryWKeim/ehcache3,wantstudy/ehcache3,jhouserizer/ehcache3,AbfrmBlr/ehcache3,GaryWKeim/ehcache3,rishabhmonga/ehcache3,ehcache/ehcache3,ljacomet/ehcache3,albinsuresh...
b1b639d60403f3fc22318bbc013bfaca8acd470f
README.adoc
README.adoc
= 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' to your or...
= 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' to your or...
Format ToDo as a list
Format ToDo as a list
AsciiDoc
bsd-2-clause
IanDarwin/clublist,IanDarwin/clublist
463ffdf5dc24117a2d245ca293ddb3bf1ad19ee8
README.adoc
README.adoc
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, run curl: cur...
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 github.com/cia...
Add prebuilt binary installation instructions
Add prebuilt binary installation instructions
AsciiDoc
isc
ciarand/proxy
99db481af16fdd49197e96ce8e67ac31b38577e3
README.adoc
README.adoc
# 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 "ruby" as rub...
# 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 "ruby" as rub...
Fix typo in plantuml definition
Fix typo in plantuml definition
AsciiDoc
apache-2.0
michalharakal/android-images
8379c9433703f7a107d5618528ec7066dcfc4f34
README.adoc
README.adoc
= 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 is a play...
= 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 is a playgrou...
Add link to GitHup page
Add link to GitHup page
AsciiDoc
apache-2.0
haf-tech/blueprint
0a6537d3ad2914b49e7a104ddf6bb9fb236b96b7
community/users.asciidoc
community/users.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 details are...
= 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 details are...
Fix broken link to source of page
Fix broken link to source of page
AsciiDoc
apache-2.0
debezium/debezium.github.io,debezium/debezium.github.io,debezium/debezium.github.io
3ffbb20f3476795d59a9f9e97864531e5ed075aa
master.adoc
master.adoc
= 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[leveloffset=+...
= 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[leveloffset=...
Add extra line between include.
Add extra line between include.
AsciiDoc
mit
makzan/asciidoc-book-starter
eadf5c1973037cd3ff3a3fcb1fb48df7eb29be68
doc/release-process.adoc
doc/release-process.adoc
= 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 build, test ...
= 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 push --tags or...
Fix minor error in release process doc.
Fix minor error in release process doc.
AsciiDoc
apache-2.0
msgilligan/bitcoinj-addons,msgilligan/bitcoinj-addons,msgilligan/bitcoinj-addons,msgilligan/bitcoinj-addons
c07974784ac6d323a1fb8820b609d2a4c3b717e0
README.adoc
README.adoc
|=== |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"] |=== === Automated GitH...
[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/report/spohna...
Add travis badge to readme
Add travis badge to readme
AsciiDoc
mit
spohnan/ci-bot-01,spohnan/ci-bot-01
76e3eeb08f5964513bcd73f57a94e02f019c0301
components/camel-spring-cloud-netflix/src/main/docs/spring-cloud-netflix.adoc
components/camel-spring-cloud-netflix/src/main/docs/spring-cloud-netflix.adoc
[[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] ---------------------------------------------------------------------------------------------...
=== 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 source for Spring...
Fix copy and paste doc
Fix copy and paste doc
AsciiDoc
apache-2.0
akhettar/camel,gautric/camel,akhettar/camel,punkhorn/camel-upstream,scranton/camel,objectiser/camel,dmvolod/camel,onders86/camel,jonmcewen/camel,objectiser/camel,nboukhed/camel,nboukhed/camel,acartapanis/camel,gnodet/camel,jamesnetherton/camel,dmvolod/camel,jonmcewen/camel,dmvolod/camel,pmoerenhout/camel,tdiesler/camel...
aa949c664a89ab9d6c2c21fa9b36af585b721db9
docs/index.asciidoc
docs/index.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[] include::./suppo...
= 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::./support.asc...
Use master version in docs
Use master version in docs
AsciiDoc
mit
yapdns/yapdnsbeat,yapdns/yapdnsbeat
8f10c771e62016bc156a01310ae35089b605f93d
docs/reference/migration/migrate_7_0/scripting.asciidoc
docs/reference/migration/migrate_7_0/scripting.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` fields were c...
[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` fields were c...
Add migration info for missing values in script
Add migration info for missing values in script Relates to #30975
AsciiDoc
apache-2.0
scorpionvicky/elasticsearch,uschindler/elasticsearch,HonzaKral/elasticsearch,robin13/elasticsearch,robin13/elasticsearch,uschindler/elasticsearch,gfyoung/elasticsearch,gfyoung/elasticsearch,gingerwizard/elasticsearch,uschindler/elasticsearch,nknize/elasticsearch,coding0011/elasticsearch,nknize/elasticsearch,coding0011/...
d9e3a3fc36a4d9770f53cb105d60ae7d01965aed
src/main/asciidoc/inc/_goals.adoc
src/main/asciidoc/inc/_goals.adoc
= 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}:stop>>** |St...
= 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-integration-te...
Add default Maven lifecycle bindings to the manual
Add default Maven lifecycle bindings to the manual
AsciiDoc
apache-2.0
rhuss/docker-maven-plugin,vjuranek/docker-maven-plugin,thomasvandoren/docker-maven-plugin,scoplin/docker-maven-plugin,vjuranek/docker-maven-plugin,fabric8io/docker-maven-plugin,fabric8io/docker-maven-plugin,fabric8io/docker-maven-plugin,vjuranek/docker-maven-plugin,rhuss/docker-maven-plugin
886e5e7db96a6c1a021dcc9d08268303d8402227
docs/hacky-implicit-provisioning-version2.adoc
docs/hacky-implicit-provisioning-version2.adoc
# 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-sota/aktual...
# 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-sota/aktual...
Use latest version of aktualizr. Add known issue.
Use latest version of aktualizr. Add known issue.
AsciiDoc
mpl-2.0
advancedtelematic/aktualizr,advancedtelematic/aktualizr,advancedtelematic/aktualizr,advancedtelematic/sota_client_cpp,advancedtelematic/aktualizr,advancedtelematic/sota_client_cpp
fae66814a50c60e47772ad6feec9ee222920fd9c
doc/videos.adoc
doc/videos.adoc
= 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. If you have a...
= 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. If you have a...
Work around Github image float issue.
Work around Github image float issue.
AsciiDoc
epl-1.0
brunchboy/afterglow,brunchboy/afterglow,brunchboy/afterglow