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
<template> | |
<Loading :loading="loading" :text="$t('common.loading')" /> | |
<v-card v-if="module" class="mt-6 pt-4 px-6"> | |
<v-card-actions> | |
<span class="text-h4 font-weight-bold">{{ module.toUpperCase() }} API Description</span> | |
<v-spacer /> | |
<v-btn variant="flat" color="primary" @click="loadSwagger">{{ $t('common.reload') }}</v-btn> | |
</v-card-actions> | |
<v-divider class="mt-4"/> | |
<v-card-text> |
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 roman; | |
import lombok.Getter; | |
import org.apache.commons.lang3.StringUtils; | |
import java.util.Arrays; | |
import java.util.List; | |
public class RomanNumerals { |
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
public static String indent(String expression) { | |
List<String> strings = Stream.of(expression) | |
.map(e -> e.replace("{", "{#")) | |
.map(e -> e.replace("}", "#}#")) | |
.flatMap(e -> Arrays.stream(e.split("[#\\n]"))) | |
.map(String::trim) | |
.filter(e -> !e.isEmpty()) | |
.collect(Collectors.toList()); | |
var indent = 0; |
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
diff --git a/modules/jprobe-manager/src/main/java/org/ow2/jasmine/probe/manager/internal/JProbeManager.java b/modules/jprobe-manager/src/main/java/org/ow2/jasmine/probe/manager/internal/JProbeManager.java | |
index 7395ca4..5f34430 100644 | |
--- a/modules/jprobe-manager/src/main/java/org/ow2/jasmine/probe/manager/internal/JProbeManager.java | |
+++ b/modules/jprobe-manager/src/main/java/org/ow2/jasmine/probe/manager/internal/JProbeManager.java | |
@@ -23,9 +23,13 @@ | |
package org.ow2.jasmine.probe.manager.internal; | |
import java.io.*; | |
+import java.lang.management.ManagementFactory; | |
import java.math.BigInteger; |
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" encoding="UTF-8"?> | |
<!-- Generated Fri Feb 10 16:05:53 CET 2012 by JOnAS. --> | |
<deployment-plan xmlns="http://jonas.ow2.org/ns/deployment-plan/1.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:m2="http://jonas.ow2.org/ns/deployment-plan/maven2/1.0" | |
xmlns:url="http://jonas.ow2.org/ns/deployment-plan/url/1.0" | |
xsi:schemaLocation="http://jonas.ow2.org/ns/deployment-plan/1.0 http://jonas.ow2.org/ns/deployment-plan/1.0/deployment-plan-1.0.xsd | |
http://jonas.ow2.org/ns/deployment-plan/maven2/1.0 http://jonas.ow2.org/ns/deployment-plan/maven2-deployment-plan-1.0.xsd" | |
atomic="false" id="ow2-jasmine-probe"> |