View pipeline
pipeline { | |
agent any | |
stages { | |
stage('Export repository from Dev') { | |
steps { | |
node('ambra.redaelli.org') { | |
sh '/bin/hostname' | |
sh './export_repository.sh' | |
} |
View spark-hadoop-opensource
<html> | |
<head> | |
<style type="text/css"> | |
.knitr.inline { | |
background-color: #f7f7f7; | |
border:solid 1px #B0B0B0; | |
} | |
.error { | |
font-weight: bold; | |
color: #FF0000; |
View server.R
library(shiny) | |
# Define server logic for random distribution application | |
shinyServer(function(input, output) { | |
# Reactive function to generate the requested distribution. This is | |
# called whenever the inputs change. The output functions defined | |
# below then all use the value computed from this function | |
data <- reactive(function() { | |
dist <- switch(input$dist, |