Skip to content

Commit

Permalink
Merge pull request #95 from Zarquan/20241128-zrq-bold-code
Browse files Browse the repository at this point in the history
Added LaTex formatter for bold code
  • Loading branch information
Zarquan authored Nov 28, 2024
2 parents 73d3489 + f954a44 commit 75de8f9
Showing 1 changed file with 24 additions and 14 deletions.
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

0 comments on commit 75de8f9

Please sign in to comment.