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
{ | |
"conflicts" : [ { | |
"key" : "name", | |
"baseValue" : "Concorde_english_name", | |
"latestValue" : "1234", | |
"requestValue" : "updatedField" | |
} ], | |
"message" : "The Node cannot be updated because a conflict with an existing draft version has been detected." | |
} |
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
#include <ESP8266WiFi.h> | |
#include <ESP8266HTTPClient.h> | |
const char* ssid = "1234"; | |
const char* password = ""; | |
#define GREEN 12 | |
#define RED 13 | |
#define BLUE 15 |
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
<profiles> | |
<profile> | |
<!-- if ../exclusions.txt is present, use that as the exclusion list. Useful when skipping tests. --> | |
<id>exclusions</id> | |
<activation> | |
<file> | |
<exists>../exclusions.txt</exists> | |
</file> | |
</activation> |
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
stage 'Test' | |
// Split the previously executed tests into 10 jobs | |
def splits = splitTests parallelism: [$class: 'CountDrivenParallelism', size: 10], generateInclusions: true | |
def branches = [:] | |
// Prepare each job | |
for (int i = 0; i < splits.size(); i++) { | |
def split = splits[i] | |
branches["split${i}"] = { | |
// The job should allocate a new jenkins slave | |
node('dockerSlave') { |
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
// Let jenkins know that you want to execute the commands on a dedicated jenkins slave | |
node('dockerSlave') { | |
def mvnHome = tool 'M3' | |
// Cleanup local checkout - TODO there should also be a dedicated jenkins command to invoke this action | |
sh "rm -rf *" | |
sh "rm -rf .git" | |
// Clone from git | |
checkout scm | |
// Checkout specific local branch | |
checkout([$class: 'GitSCM', branches: [[name: '*/master']], |
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
package com.gentics.mesh.changelog; | |
import com.tinkerpop.blueprints.TransactionalGraph; | |
/** | |
* Interface for a mesh graph database change. A change may alter graph structure, content and indices. | |
*/ | |
public interface Change { | |
/** |
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
<?xml version="1.0"?> | |
<MyConfigDedicated xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<SessionSettings> | |
<GameMode>Survival</GameMode> | |
<InventorySizeMultiplier>1</InventorySizeMultiplier> | |
<AssemblerSpeedMultiplier>1</AssemblerSpeedMultiplier> | |
<AssemblerEfficiencyMultiplier>1</AssemblerEfficiencyMultiplier> | |
<RefinerySpeedMultiplier>1</RefinerySpeedMultiplier> | |
<OnlineMode>PUBLIC</OnlineMode> | |
<MaxPlayers>4</MaxPlayers> |
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
ship = SR71 | |
version = 1.0.4 | |
description = | |
type = SPH | |
size = 18.69293,5.400394,22.95547 | |
PART | |
{ | |
part = mk2Cockpit.Standard_4294500736 | |
partName = Part | |
pos = 0.5657761,10.07599,2.195185 |
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
import static io.vertx.core.Vertx.vertx; | |
import io.vertx.core.AsyncResult; | |
import io.vertx.core.Future; | |
import io.vertx.core.Handler; | |
import java.util.ArrayList; | |
import java.util.List; | |
import java.util.concurrent.CountDownLatch; | |
import org.junit.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
import static io.vertx.core.Vertx.vertx; | |
import io.vertx.core.AsyncResult; | |
import io.vertx.core.Handler; | |
import java.util.ArrayList; | |
import java.util.List; | |
import org.junit.Test; | |
public class AsyncTest { |