This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Singleton | |
public class ClassicFreestyleCreationPage { | |
@Inject | |
WebDriver driver; | |
@Inject @BaseUrl | |
String base; | |
@Inject | |
ClassicJobApi jobApi; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
session_name: dev | |
start_directory: ~/w/b/ | |
windows: | |
- window_name: top-level | |
start_directory: blue | |
panes: | |
- pane | |
- window_name: plugin | |
start_directory: blue/blueocean | |
panes: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
session_name: dev | |
start_directory: ~/w/b/ | |
windows: | |
- window_name: top-level | |
start_directory: blue | |
panes: | |
- pane | |
- window_name: plugin | |
start_directory: blue/blueocean-plugin | |
panes: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"_class": "io.jenkins.blueocean.service.embedded.rest.PipelineImpl", | |
"_links": { | |
"activities": { | |
"_class": "io.jenkins.blueocean.rest.hal.Link", | |
"href": "/blue/rest/organizations/jenkins/pipelines/stages-test/activities/" | |
}, | |
"self": { | |
"_class": "io.jenkins.blueocean.rest.hal.Link", | |
"href": "/blue/rest/organizations/jenkins/pipelines/stages-test/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"_class": "io.jenkins.blueocean.rest.impl.pipeline.PipelineRunImpl", | |
"_links": { | |
"nodes": { | |
"_class": "io.jenkins.blueocean.rest.hal.Link", | |
"href": "/blue/rest/organizations/jenkins/pipelines/stages-test/runs/3/nodes/" | |
}, | |
"log": { | |
"_class": "io.jenkins.blueocean.rest.hal.Link", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# defaults for jenkins continuous integration server | |
JENKINS_ARGS="-jnlpUrl http://test.lnc.jp:8080/computer/wock/slave-agent.jnlp" | |
# jenkins home location | |
JENKINS_HOME=/opt/jenkins-slave | |
# location of the jenkins war file | |
JENKINS_WAR=$JENKINS_HOME/slave.jar | |
# pulled in from the init script; makes things easier. | |
NAME=jenkins |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# send output to /var/log/upstart/ | |
console log | |
description "Jenkins slave" | |
exec java -jar /path/to/jenkins-cli.jar -i /path/to/key -s https://<jenkins url> on-premise-executors -name ... | |
respawn | |
# user you want to | |
setuid {username} | |
start on runlevel [2345] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# glassfish4 GlassFish Server Open Source Edition 4.0 | |
# | |
# chkconfig: 345 70 30 | |
# description: GlassFish Server is a Java EE Application Server Platform | |
# processname: glassfish4 | |
# Source function library. | |
. /etc/init.d/functions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
src/Main.hs:39:20: | |
No instance for (MonadReader | |
MyEnv (ActionT TL.Text (ReaderT MyEnv IO))) | |
arising from the 'deriving' clause of a data type declaration | |
Possible fix: | |
add an instance declaration for | |
(MonadReader MyEnv (ActionT TL.Text (ReaderT MyEnv IO))) | |
or use a standalone 'deriving instance' declaration, | |
so you can specify the instance context yourself | |
When deriving the instance for (MonadReader MyEnv MyMonad) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE OverloadedStrings #-} | |
module DataSource where | |
import Data.Either | |
import Data.Maybe | |
import Data.Aeson | |
import Data.Aeson.Types | |
import qualified Data.Text.Internal as T |