text
stringlengths
0
834k
log = job_core_queue_sched.log
error = job_core_queue_sched.err
output = ./job_core_queue_sched.out
Notification = NEVER
arguments = hello
queue 40
",20.3,35,0.8078817734
219535,d2f6eb6905a0e7f39a85cfa0996fe9c7cccd91b9,125,bat,Batchfile,create_empty_dump.bat,ItalyStrap/finder,4bdd8930ef8a5642fa99642f83eaff421c8eb511,['MIT'],,,,create_empty_dump.bat,ItalyStrap/finder,4bdd8930ef8a5642fa99642f83eaff421c8eb511,['MIT'],,,,create_empty_dump.bat,ItalyStrap/finder,4bdd8930ef8a5642fa99642f83eaff421c8eb511,['MIT'],,,,"@ECHO OFF
wp plugin deactivate --all && wp site empty --yes && wp plugin activate finder && wp db export tests/_data/dump.sql",62.5,115,0.728
219536,d2f72c2eb19be3cbdfe0bc59f0d83238a5dc05a2,7000,bat,Batchfile,packages/apex-pdp-package-full/src/main/package/scripts/apexApps.bat,onap/policy-apex-pdp,7562be554fefcbb1a5c8d517c5fb4f3083777c68,['Apache-2.0'],5.0,2019-04-04T13:47:55.000Z,2020-07-08T15:18:08.000Z,packages/apex-pdp-package-full/src/main/package/scripts/apexApps.bat,onap/policy-apex-pdp,7562be554fefcbb1a5c8d517c5fb4f3083777c68,['Apache-2.0'],,,,packages/apex-pdp-package-full/src/main/package/scripts/apexApps.bat,onap/policy-apex-pdp,7562be554fefcbb1a5c8d517c5fb4f3083777c68,['Apache-2.0'],1.0,2020-04-24T07:28:27.000Z,2020-04-24T07:28:27.000Z,":: ============LICENSE_START=======================================================
:: Copyright (C) 2016-2018 Ericsson. All rights reserved.
:: Modifications Copyright (C) 2019-2020 Nordix Foundation.
:: ================================================================================
:: Licensed under the Apache License, Version 2.0 (the ""License"");
:: you may not use this file except in compliance with the License.
:: You may obtain a copy of the License at
::
:: http://www.apache.org/licenses/LICENSE-2.0
::
:: Unless required by applicable law or agreed to in writing, software
:: distributed under the License is distributed on an ""AS IS"" BASIS,
:: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
:: See the License for the specific language governing permissions and
:: limitations under the License.
::
:: SPDX-License-Identifier: Apache-2.0
:: ============LICENSE_END=========================================================
::
:: Script to run APEX Applications, call with '-h' for help
:: - adding a new app means to add a command to APEX_APP_MAP and a description to APEX_APP_DESCR_MAP using same/unique key
::
:: @package org.onap.policy.apex
:: @author Sven van der Meer <sven.van.der.meer@ericsson.com>
:: @version v2.0.0
::
:: DO NOT CHANGE CODE BELOW, unless you know what you are doing
::
@echo off
setlocal enableDelayedExpansion
if not defined KEYSTORE_PASSWORD (
set KEYSTORE_PASSWORD=Pol1cy_0nap
)
if not defined TRUSTSTORE_PASSWORD (
set TRUSTSTORE_PASSWORD=Pol1cy_0nap
)
if defined APEX_HOME (
if exist ""%APEX_HOME%\"" (
set _dummy=dir
) else (
echo[
echo Apex directory 'APEX_HOME' not a directory
echo Please set environment for 'APEX_HOME'
echo[
exit /b
)
) else (
echo[
echo Apex directory 'APEX_HOME' not set
echo Please set environment for 'APEX_HOME'
echo[
exit /b
)
:: Environment variables for HTTPS
set KEYSTORE=%APEX_HOME%/etc/ssl/policy-keystore""
set TRUSTSTORE=%APEX_HOME%/etc/ssl/policy-truststore""
:: HTTPS parameters
set HTTPS_PARAMETERS=-Djavax.net.ssl.keyStore=%KEYSTORE% -Djavax.net.ssl.keyStorePassword=%KEYSTORE_PASSWORD% -Djavax.net.ssl.trustStore=%TRUSTSTORE% -Djavax.net.ssl.trustStorePassword=%TRUSTSTORE_PASSWORD%
:: script name for output
set MOD_SCRIPT_NAME=apexApps
:: config for CP apps
SET _CONFIG=%HTTPS_PARAMETERS% -Dlogback.configurationFile=%APEX_HOME%\etc\logback.xml -Dhazelcast.config=%APEX_HOME%\etc\hazelcast.xml -Dhazelcast.mancenter.enabled=false
:: Maven/APEX version
set /p _VERSION=<%APEX_HOME%\etc\app-version.txt
:: CP separator
set cpsep=;
:: CP for CP apps
set CLASSPATH=%APEX_HOME%\etc%cpsep%%APEX_HOME%\etc\hazelcast%cpsep%%APEX_HOME%\etc\infinispan%cpsep%%APEX_HOME%\lib\*
:: array of applications with name=command
:: declare -A APEX_APP_MAP
set APEX_APP_MAP[ws-console]=java -jar %APEX_HOME%\lib\applications\simple-wsclient-%_VERSION%-jar-with-dependencies.jar -c
set APEX_APP_MAP[ws-echo]=java -jar %APEX_HOME%\lib\applications\simple-wsclient-%_VERSION%-jar-with-dependencies.jar
set APEX_APP_MAP[tpl-event-json]=java -Dlogback.configurationFile=%APEX_HOME%\etc\logback.xml -cp %CLASSPATH% %_CONFIG% org.onap.policy.apex.tools.model.generator.model2event.Model2EventMain