Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added LaTex formatter for bold code #95

Merged
merged 1 commit into from
Nov 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 24 additions & 14 deletions ExecutionBroker.tex
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,15 @@

\hyphenation{Exe-cut-able-Thing}

% Enable [*bold*] inside listings
% https://stackoverflow.com/a/24838471
% https://www.mrunix.de/forums/archive/index.php/t-42976.html
% https://en.wikibooks.org/wiki/LaTeX/Source_Code_Listings
% https://mirror.ox.ac.uk/sites/ctan.org/macros/latex/contrib/listings/listings.pdf#subsection.3.3
\renewcommand{\ttdefault}{pcr}
\lstset{moredelim=[is][\bfseries]{[*}{*]}}


\title{IVOA Execution Broker}

% see ivoatexDoc for what group names to use here; use \ivoagroup[IG] for
Expand Down Expand Up @@ -727,6 +736,7 @@ \subsection{Session lifecycle}

\end{itemize}

%ZRQ - urgh
When a \execbrokerclass{} creates a \workerjob{} in an \execworkerclass{} service the
\workerjob{} starts with the \codeword{phase} set to \codeword{PENDING}.

Expand Down Expand Up @@ -877,7 +887,7 @@ \subsubsection{The packager}
\begin{lstlisting}[]
executable:
name: Newton-Raphson example
type: uri:docker-container-1.0
[*type: uri:docker-container-1.0*]
repository: ghcr.io
image: ivoa/analytics/Newton-Raphson-albert
tag: 2024.08.30
Expand All @@ -896,19 +906,19 @@ \subsubsection{The packager}
type: uri:docker-container-1.0
....
parameters:
- name: input-data
type: uri:data-file
format:
- type: uri:ivoa-votable
filename: input-data.vot
....

resources:
compute:
- type: uri:generic-compute
volumes:
- type: uri:file-mount
parameter: input-data
- [*name: input-data*] <----\
type: uri:data-file |
format: |
- type: uri:ivoa-votable |
filename: input-data.vot |
.... |
|
resources: |
compute: |
- type: uri:generic-compute |
volumes: |
- type: uri:file-mount |
[*parameter: input-data*] ---/
filepath: /data
mode: readonly
....
Expand Down
Loading