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
[mvn:mvn] [main] INFO org.apache.maven.cli.event.ExecutionEventLogger - ------------------------------------------------------------------------ | |
[mvn:mvn] [main] INFO org.apache.maven.cli.event.ExecutionEventLogger - Reactor Summary: | |
[mvn:mvn] [main] INFO org.apache.maven.cli.event.ExecutionEventLogger - | |
[mvn:mvn] [main] INFO org.apache.maven.cli.event.ExecutionEventLogger - Ceylon IDE ......................................... SUCCESS [ 0.207 s] | |
[mvn:mvn] [main] INFO org.apache.maven.cli.event.ExecutionEventLogger - ceylon.plugins ..................................... SUCCESS [ 0.005 s] | |
[mvn:mvn] [main] INFO org.apache.maven.cli.event.ExecutionEventLogger - com.redhat.ceylon.eclipse.ui.jdt.debug.fragment .... SUCCESS [ 1.206 s] | |
[mvn:mvn] [main] INFO org.apache.maven.cli.event.ExecutionEventLogger - com.redhat.ceylon.eclipse.ui ....................... SUCCESS [ 53.344 s] | |
[mvn:mvn] [main] INFO org.apache.maven.cli.event.ExecutionEventLogger - Ceylon Test Plugin .............................. |
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
com.redhat.ceylon.compiler.typechecker.exceptions.LanguageModuleNotFoundException: cannot find module source artifact ceylon.language-1.1.1(.car|.jar|.src) | |
- dependency tree: left/1.0.0 -> bottom/1.0.0 -> ceylon.language/1.1.1 | |
get ceylon.language and run 'ant publish' (more information at http://ceylon-lang.org/code/source/#ceylonlanguage_module) | |
at com.redhat.ceylon.compiler.typechecker.analyzer.ModuleHelper.buildErrorOnMissingArtifact(ModuleHelper.java:50) | |
at com.redhat.ceylon.compiler.typechecker.analyzer.ModuleValidator.verifyModuleDependencyTree(ModuleValidator.java:240) | |
at com.redhat.ceylon.compiler.typechecker.analyzer.ModuleValidator.verifyModuleDependencyTree(ModuleValidator.java:267) | |
at com.redhat.ceylon.compiler.typechecker.analyzer.ModuleValidator.access$400(ModuleValidator.java:39) | |
at com.redhat.ceylon.compiler.typechecker.analyzer.ModuleValidator$2.run(ModuleValidator.java:112) | |
at com.redhat.ceylon.model.typechecker.context.TypeCache.doWithExplicitCaching(TypeCache.java:48) | |
at com.redha |
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
//$webrun_wrapped | |
shared void run() { | |
{Anything*} flatten({Anything*} stream) | |
=> stream.flatMap((element) | |
=> switch (element) | |
case (is {Anything*}) flatten(element) | |
else [element]); | |
{Character|String*} input = { 'a', "abc" }; |
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 ceylon.interop.browser { ... } | |
void run() { | |
print(window.document); | |
} |
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
native("jvm") | |
module selftypecheck "1.0.0" { | |
import ceylon.interop.java "1.3.1-SNAPSHOT"; | |
import com.redhat.ceylon.typechecker "1.3.1-SNAPSHOT"; | |
import com.redhat.ceylon.compiler.java "1.3.1-SNAPSHOT"; | |
} |
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
//$webrun_wrapped | |
shared void run() { | |
Anything(String)? onEvent = null; | |
if (exists onEvent) { | |
onEvent("foo"); | |
} | |
} |
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
swagger: '2.0' | |
info: | |
version: '2.0.0' | |
title: Launcher Backend API | |
description: This document defines the REST endpoints exposed by the launcher-backend component | |
host: forge.api.prod-preview.openshift.io | |
basePath: /api | |
schemes: | |
- https |
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
[ | |
{ | |
"metadata": { | |
"runsOn": [ | |
"!starter", | |
"!osio" | |
] | |
}, | |
"mission": "circuit-breaker", | |
"name": "Red Hat Fuse - Circuit Breaker Example", |
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
{ | |
"boosters": [ | |
{ | |
"metadata": { | |
"app": { | |
"osio": { | |
"enabled": false | |
}, | |
"launcher": { | |
"runsOn": [ |
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
{ | |
"boosters": [ | |
{ | |
"metadata": { | |
"app": { | |
"osio": { | |
"enabled": true | |
} | |
} | |
}, |