doc_id stringlengths 36 36 | metadata dict | input stringlengths 28 4.3k | output stringlengths 11 5.45k |
|---|---|---|---|
475f3cfa-180a-45a4-ac66-036b14d042a8 | {
"language": "YAML"
} | ```yaml
---
applications:
- name: sagan
buildpacks:
- java_buildpack
instances: 2
health-check-type: http
health-check-http-endpoint: /health
memory: 2048M
disk_quota: 1024M
routes:
- route: spring.io
- route: www.spring.io
- route: sagan-production.cfapps.io
services:
- papertrail
- sagan-d... | ```yaml
---
applications:
- name: sagan
buildpacks:
- java_buildpack
instances: 2
health-check-type: http
health-check-http-endpoint: /health
timeout: 120
memory: 2048M
disk_quota: 1024M
routes:
- route: spring.io
- route: www.spring.io
- route: sagan-production.cfapps.io
services:
- papertr... |
61fde39f-4884-45e9-92e6-a00bf30c7b22 | {
"language": "YAML"
} | ```yaml
homepage: ''
changelog-type: ''
hash: 670e8da7adf7db1e9fafe16836370a4520c2c6a94311c3f08d0cc5a39d386d6a
test-bench-deps: {}
maintainer: Ian-Woo Kim <ianwookim@gmail.com>
synopsis: automatic C++ binding generation
changelog: ''
basic-deps:
either: -any
bytestring: -any
split: -any
Cabal: -any
base: ==4.... | ```yaml
homepage: ''
changelog-type: ''
hash: 8aadf5449302ecaca2772f5dfa1e8aedf72fe7a4760fec89a6ed6c17d440f666
test-bench-deps: {}
maintainer: Ian-Woo Kim <ianwookim@gmail.com>
synopsis: automatic C++ binding generation
changelog: ''
basic-deps:
either: -any
bytestring: -any
split: -any
Cabal: -any
base: ==4.... |
ff5588fd-a553-4d81-b8e6-c8ca3cdd4484 | {
"language": "YAML"
} | ```yaml
name: Windows-win64
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: cmake build
run: cmake -S . -B build --config Release
- name: cmake make
run: cmake --build build --parallel 3
- name: test
run: build\Relea... | ```yaml
name: Windows-win64
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: cmake build
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
- name: cmake make
run: cmake --build build --parallel 3
- name: test
run: b... |
fc3a922b-e5cc-4c01-a4e5-e11670f758eb | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/metrix-ai/optima
changelog-type: ''
hash: 2d5cce1c37f40b179f745ca44b0b22d33f836b22768a9283a3f011809cdd7704
test-bench-deps:
rerebase: ==1.*
optima: -any
attoparsec-data: ==1.*
maintainer: Metrix.AI Tech Team <tech@metrix.ai>
synopsis: Simple command line interface arguments pa... | ```yaml
homepage: https://github.com/metrix-ai/optima
changelog-type: ''
hash: 7648f4689193b3a830a8f5ed3aa07f955310ddee99db5378c5b505efbf69ef3a
test-bench-deps:
rerebase: ==1.*
optima: -any
attoparsec-data: ==1.*
maintainer: Metrix.AI Tech Team <tech@metrix.ai>
synopsis: Simple command line interface arguments pa... |
c8bed7cb-437f-4185-8d94-1a3bb72cb56c | {
"language": "YAML"
} | ```yaml
version: 2
jobs:
build:
docker:
- image: circleci/openjdk:8-jdk-stretch-node-browsers
environment:
MAVEN_OPTS: -Xmx1024m
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "pom.xml" }}
... | ```yaml
version: 2
jobs:
build:
docker:
- image: circleci/openjdk:8-jdk-stretch-node-browsers
environment:
MAVEN_OPTS: -Xmx1024m
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "pom.xml" }}
... |
9fdd44f3-b43b-4d69-9bb2-38fa84fcc9e8 | {
"language": "YAML"
} | ```yaml
name: windows
on: [push, pull_request]
jobs:
build:
name: >-
build (windows, ${{ matrix.ruby }})
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
ruby: [ '2.4.x', '2.5.x', '2.6.x' ]
steps:
- name: git config
run: git config --global core.autocr... | ```yaml
name: Windows
on: [push, pull_request]
jobs:
build:
name: build (windows, ${{ matrix.ruby }})
strategy:
matrix:
ruby: [ '2.4.x', '2.5.x', '2.6.x' ]
runs-on: windows-latest
steps:
- name: git config autocrlf
run: git config --global core.autocrlf false
- uses: ... |
809ebd0c-a5ab-47ac-a9ca-4ab722244049 | {
"language": "YAML"
} | ```yaml
# Ansible managed file, do not edit directly
all:
upload_limit: {{ atom_app_upload_limit }}
cache_engine: {{ atom_app_cache_engine }}
{% if atom_app_cache_engine_options is defined %}
cache_engine_param:
{% for key, value in atom_app_cache_engine_options.items() %}
{{ key }}: {{ value }}
{% endfor ... | ```yaml
# Ansible managed file, do not edit directly
all:
upload_limit: {{ atom_app_upload_limit }}
cache_engine: {{ atom_app_cache_engine }}
{% if atom_app_cache_engine_options is defined %}
cache_engine_param:
{% for key, value in atom_app_cache_engine_options.items() %}
{{ key }}: {{ value }}
{% endfor ... |
75284372-8189-4257-a40a-d6046adfa5ce | {
"language": "YAML"
} | ```yaml
description: Best Practices for CockroachDB from their contributor docs.
version: 0.0.0
tenets:
- avoid-bool-params
tags:
- golang
- go
- cockroach
- cockroachdb
```
Add tenet to bundle file | ```yaml
description: Best Practices for CockroachDB from their contributor docs.
version: 0.0.0
tenets:
- avoid-bool-params
- wrapping-func-signatures
tags:
- golang
- go
- cockroach
- cockroachdb
``` |
10cc3e6b-0dd8-42aa-91ba-84d42105605b | {
"language": "YAML"
} | ```yaml
apiVersion: rbac.authorization.k8s.io/v1beta1
kind: ClusterRole
metadata:
name: estafette-letsencrypt-certificate
labels:
app: estafette-letsencrypt-certificate
rules:
- apiGroups: [""] # "" indicates the core API group
resources:
- secrets
verbs: ["get", "list", "watch", "create", "update", "patc... | ```yaml
apiVersion: rbac.authorization.k8s.io/v1beta1
kind: ClusterRole
metadata:
name: estafette-letsencrypt-certificate
labels:
app: estafette-letsencrypt-certificate
rules:
- apiGroups: [""] # "" indicates the core API group
resources:
- secrets
verbs:
- list
- update
- watch
---
apiVersion: rbac... |
de5bd255-1d75-4d3b-b36e-ba7fccaee660 | {
"language": "YAML"
} | ```yaml
engines:
radon:
enabled: true
config:
python_version: 2
duplication:
enabled: true
config:
languages:
- python
pep8:
enabled: true
checks:
E501:
enabled: false
ratings:
paths:
- "**.py"
```
Set radon analysis threshold lower than default | ```yaml
engines:
radon:
enabled: true
config:
python_version: 2
threshold: "C"
duplication:
enabled: true
config:
languages:
- python
pep8:
enabled: true
checks:
E501:
enabled: false
ratings:
paths:
- "**.py"
``` |
8ae70196-a63d-4999-bb9f-6bdbe48b727e | {
"language": "YAML"
} | ```yaml
# Copyright (c) 2018-2021 Simply Code Ltd. All rights reserved.
# Licensed under the MIT License.
# See LICENSE file in the project root for full license information.
version: "2"
checks:
method-lines:
enabled: true
config:
threshold: 100
plugins:
csslint:
enabled: true
checks:
... | ```yaml
# Copyright (c) 2018-2021 Simply Code Ltd. All rights reserved.
# Licensed under the MIT License.
# See LICENSE file in the project root for full license information.
version: "2"
checks:
method-lines:
enabled: true
config:
threshold: 100
plugins:
csslint:
enabled: true
checks:
... |
f9fc1034-8ad6-438e-ad09-7a4e037c9047 | {
"language": "YAML"
} | ```yaml
version: 2.1
orbs:
silta: silta/silta@0.1
workflows:
version: 2
commit:
jobs:
- silta/drupal-validate:
name: validate
drupal-root: drupal
post-validation:
- run: echo "You can add additional validation here!"
- silta/drupal-build-deploy: &build-... | ```yaml
version: 2.1
orbs:
silta: silta/silta@0.1
workflows:
version: 2
commit:
jobs:
- silta/drupal-validate:
name: validate
drupal-root: drupal
post-validation:
- run: echo "You can add additional validation here!"
- silta/drupal-build-deploy: &build-... |
8a43eb7f-17d8-4c5b-8139-ca1a5c7fb3a4 | {
"language": "YAML"
} | ```yaml
version: 2.1
###########################################
# Constants
###########################################
workspace_root: &workspace_root
~/repo
###########################################
# Executors Definitions
###########################################
executors:
build_executor:
wo... | ```yaml
version: 2.1
###########################################
# Constants
###########################################
workspace_root: &workspace_root
~/repo
###########################################
# Executors Definitions
###########################################
executors:
nodejs_10_executor:
... |
72ba435b-bb35-44cd-b4e6-2591ffc8cabc | {
"language": "YAML"
} | ```yaml
version: 2
jobs:
build:
docker:
- image: circleci/node:8@sha256:0f7e40987efd757877a64d34f49ed5b9d611e9d2f969d12bdabdf87daf45f29a
- image: circleci/mongo:3@sha256:04a81e1cd52345ebf5886874621d47f32662810213ef327532bf2aa63ae86dc6
steps:
- checkout
- run: yarn install --frozen-loc... | ```yaml
version: 2
jobs:
build:
docker:
- image: circleci/node:8@sha256:ea6a1dfa308a6af75b880f1db86da4cf78955e68d1a56dd2e64280fc546665a0
- image: circleci/mongo:3@sha256:04a81e1cd52345ebf5886874621d47f32662810213ef327532bf2aa63ae86dc6
steps:
- checkout
- run: yarn install --frozen-loc... |
fecfb2f9-60c2-40fe-8d72-fc281d044bf7 | {
"language": "YAML"
} | ```yaml
approve_by_comment: true
approve_regex: ':lgtm:|^(LGTM|lgtm)'
reject_regex: '^Rejected'
reset_on_push: false
reviewers:
name: vitess-eng
required: 1
members:
- alainjobart
- alainjobart-bot
- AndyDiamondstein
- dumbunny
- enisoc
- enisoc-bot
- erzel
- erzel-bot
- mberlin-bot
- michael-... | ```yaml
version: 2
approve_by_comment: true
approve_regex: ':lgtm:|^(LGTM|lgtm)'
reject_regex: '^Rejected'
reset_on_push: false
groups:
vitess-eng:
required: 1
users:
- alainjobart
- alainjobart-bot
- AndyDiamondstein
- dumbunny
- enisoc
- enisoc-bot
- erzel
- e... |
80f17ee6-718c-4fcb-9f77-ef6594b9a9a2 | {
"language": "YAML"
} | ```yaml
homepage: https://hackage.haskell.org/package/periodic-polynomials
changelog-type: markdown
hash: d3dd086a0f04a11d6a72bbaaaaccb5310eab78bbb473693cc5de5b96e8983f9e
test-bench-deps: {}
maintainer: olexandr543@yahoo.com
synopsis: A library for working with periodic polynomials (very basic functionality)
changelog:... | ```yaml
homepage: https://hackage.haskell.org/package/periodic-polynomials
changelog-type: markdown
hash: d3dd086a0f04a11d6a72bbaaaaccb5310eab78bbb473693cc5de5b96e8983f9e
test-bench-deps: {}
maintainer: olexandr543@yahoo.com
synopsis: A library for working with periodic polynomials (very basic functionality)
changelog:... |
b85beddd-3e99-49db-b308-bc36cb0d47f5 | {
"language": "YAML"
} | ```yaml
name: Evolene CI
on:
push:
pull_request:
branches:
- main
paths-ignore:
- '*.md'
- '*.png'
workflow_dispatch:
jobs:
Evolene:
name: Continuous Integration
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2.3.4
- name: Run Evolene CI pipeline steps... | ```yaml
name: Evolene CI
on:
push:
branches:
- main
- v-7
pull_request:
branches:
- main
- v-7
paths-ignore:
- '*.md'
- '*.png'
workflow_dispatch:
jobs:
Evolene:
name: Continuous Integration
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout... |
b73a92e5-8133-4b61-8ac3-8e976fdc0eb0 | {
"language": "YAML"
} | ```yaml
ecto_well_designed:
date: '2017-10-30'
title: "How Elixir's Ecto Promotes Well-Designed Applications"
url: 'https://www.mojotech.com/blog/how-elixir-ecto-promotes-well-designed-applications'
chrome_extensions:
date: '2016-05-16'
title: 'Making Chrome Extensions is Easy with Yeoman'
url: 'https://ww... | ```yaml
practices_and_tools:
date: '2019-07-09'
title: "Practices and Tools that Make for a Good Project"
url: 'https://www.mojotech.com/blog/good-software-project'
ecto_well_designed:
date: '2017-10-30'
title: "How Elixir's Ecto Promotes Well-Designed Applications"
url: 'https://www.mojotech.com/blog/how-... |
c09f4a6f-8383-4598-ad9e-9309d026f35e | {
"language": "YAML"
} | ```yaml
---
meta:
kit: shield
release: S.H.I.E.L.D. Genesis Kit
target: buf
url: https://10.200.131.2.netip.cc
initial_version: 0.3.0
bosh:
uri: (( vault "secret/pipelines/genesis-ci/bosh:uri" ))
username: (( vault "secret/pipelines/genesis-ci/admin:username" ))
password: (( vaul... | ```yaml
---
meta:
kit: shield
release: S.H.I.E.L.D. Genesis Kit
target: buf
url: https://10.200.131.2.netip.cc
initial_version: 0.3.0
bosh:
uri: (( vault "secret/pipelines/genesis-ci/bosh:uri" ))
username: (( vault "secret/pipelines/genesis-ci/admin:username" ))
password: (( vaul... |
bf65f173-ba85-4c06-89cb-ab7964433532 | {
"language": "YAML"
} | ```yaml
---
name: test
on: [push, pull_request]
jobs:
test:
if: github.ref != 'refs/heads/master'
runs-on: ubuntu-18.04
strategy:
matrix:
ruby_version:
- 2.6
ar_version:
- 5.2
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/set... | ```yaml
---
name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-18.04
strategy:
matrix:
ruby_version:
- 2.5
- 2.6
- 2.7
ar_version:
- 4.2
- 5.2
- 6.0
steps:
- uses: actions/checkout@v2
- name: Set up Ruby... |
67354d79-c6e8-4cad-a49d-8e4a6087acf1 | {
"language": "YAML"
} | ```yaml
# Lab playbook - sets up the host specific shit
---
epel_rpm: "http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm"
ol6_repo_file: public-yum-ol6.repo
repo_dir: /etc/yum.repos.d/
# default_user: ansible
install_os_packages: true
configure_epel_repo: true
configure_public... | ```yaml
# Lab playbook - sets up the host specific shit
---
epel_rpm: "http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm"
ol6_repo_file: public-yum-ol6.repo
repo_dir: /etc/yum.repos.d/
# default_user: ansible
install_os_packages: true
configure_epel_repo: true
configure_public... |
0edb96fe-e97d-4ff1-aeeb-c757e3e69c38 | {
"language": "YAML"
} | ```yaml
---
ntp::servers:
- 172.16.32.100
- 172.16.32.101
- 172.16.32.102
# NOTE: reflectors will be on cumulus gws for prod
calico::reflector: true
profile::base::network::manage_httpproxy: 'true'
profile::base::network::http_proxy: "%{hiera('service__address__proxy')}:8888"
puppet::cron_cmd: "/usr/bin/... | ```yaml
---
ntp::servers:
- 172.16.32.100
- 172.16.32.101
- 172.16.32.102
# NOTE: reflectors will be on cumulus gws for prod
calico::reflector: true
profile::base::network::manage_httpproxy: 'true'
profile::base::network::http_proxy: "%{hiera('service__address__proxy')}:8888"
puppet::cron_cmd: "/usr/bin/... |
f596cb80-bd78-4e21-9683-396f6b84d2bd | {
"language": "YAML"
} | ```yaml
Test chamber/firm:
- 1B555X
- 2B444Z
Galbraith Branley:
- 0X925V
Sonn Macmillan Walker:
- 0A719G
Mark Jones & Partners:
- 0Z310A
- 1G245N
Tuckers Solicitors:
- 1K905R
- 2F741Q
- 2M410C
- 2N915N
- 2M411D
- 2L705L
- 0M058V
- 2N827T
- 2N829V
- 2M412E
- 0V774G
- 2N826R
- 2N828U... | ```yaml
Test chamber/firm:
- 1B555X
- 2B444Z
Galbraith Branley:
- 0X925V
Sonn Macmillan Walker:
- 0A719G
Mark Jones & Partners:
- 0Z310A
- 1G245N
Tuckers Solicitors:
- 1K905R
- 2F741Q
- 2M410C
- 2N915N
- 2M411D
- 2L705L
- 0M058V
- 2N827T
- 2N829V
- 2M412E
- 0V774G
- 2N826R
- 2N828U... |
f954c678-17dc-4119-92ba-28090aa8e137 | {
"language": "YAML"
} | ```yaml
version: 2
build:
os: "ubuntu-22.04"
tools:
python: "3.9"
python:
install:
- method: pip
path: .
extra_requirements:
- doc
- cesium
sphinx:
# fail_on_warning: true # Too hard, maybe one day?
fail_on_warning: false
```
Add offline-friendly formats to Read the Do... | ```yaml
version: 2
build:
os: "ubuntu-22.04"
tools:
python: "3.9"
formats:
- epub
- htmlzip
python:
install:
- method: pip
path: .
extra_requirements:
- doc
- cesium
sphinx:
# fail_on_warning: true # Too hard, maybe one day?
fail_on_warning: false
``` |
69a2ece0-55e0-4bed-b0b0-38dd1010e126 | {
"language": "YAML"
} | ```yaml
---
- hosts: local
roles:
- common
- mongodb
- openslide
- girder
- mq
- worker
#- itk
vars:
root_dir: /opt/histomicstk
girder_admin_user: admin
girder_admin_email: histomicstk.admin@kitware.com
girder_admin_password: password
girder_socket_host: localhost
... | ```yaml
---
- hosts: local
roles:
- common
- mongodb
- openslide
- girder
- mq
- worker
#- itk
vars:
root_dir: /opt/histomicstk
girder_admin_user: admin
girder_admin_email: histomicstk.admin@kitware.com
girder_admin_password: password
girder_socket_host: localhost
... |
3ca675e8-02f5-473c-9354-65a421cc8a7f | {
"language": "YAML"
} | ```yaml
---
- hosts: all
vars:
cf_cli_version: "6.25.0"
maven_version: "3.3.9"
maven_checksum: "516923b3955b6035ba6b0a5b031fbd8b"
sbt_version: "0.13.13"
intellij_version: "2017.1"
sts_version: "3.8.3"
eclipse_version: "4.6.2"
docker_compose_version: "1.11.2"
atom_version: "1.15.0"
... | ```yaml
---
- hosts: all
vars:
cf_cli_version: "6.25.0"
maven_version: "3.3.9"
maven_checksum: "516923b3955b6035ba6b0a5b031fbd8b"
sbt_version: "0.13.13"
intellij_version: "2017.1"
sts_version: "3.8.3"
eclipse_version: "4.6.2"
docker_compose_version: "1.12.0"
atom_version: "1.15.0"
... |
f614f5c3-be70-428a-8ea5-5cb8f3ccaea0 | {
"language": "YAML"
} | ```yaml
version: '3'
services:
app:
build: .
environment:
DEBUG:
INTERNAL_IPS:
ALLOWED_HOSTS:
DATABASE_URL:
SECRET_KEY:
EMAIL_URL:
DJANGO_ADMINS:
ORDER_FORM_SEND_EMAIL:
ORDER_FORM_REPLY_TO_EMAIL:
GANALYTICS_TRACKING_CODE:
restart: always
exp... | ```yaml
version: '3'
services:
app:
build: .
environment:
DEBUG:
INTERNAL_IPS:
ALLOWED_HOSTS:
DATABASE_URL:
SECRET_KEY:
EMAIL_URL:
DJANGO_ADMINS:
ORDER_FORM_SEND_EMAIL:
ORDER_FORM_REPLY_TO_EMAIL:
GANALYTICS_TRACKING_CODE:
restart: always
exp... |
def0e3da-44ab-43ed-b55d-48a0f2e6bae0 | {
"language": "YAML"
} | ```yaml
Categories:
- Writing
License: GPL-3.0-or-later
AuthorName: Alex Pozas-Kerstjens
AuthorWebSite: https://www.alexpozas.com/
SourceCode: https://github.com/apozas/contactdiary
IssueTracker: https://github.com/apozas/contactdiary/issues
Donate: https://paypal.me/apozasker
AutoName: Contact Diary
RepoType: git
... | ```yaml
Categories:
- Writing
License: GPL-3.0-or-later
AuthorName: Alex Pozas-Kerstjens
AuthorWebSite: https://www.alexpozas.com/
SourceCode: https://github.com/apozas/contactdiary
IssueTracker: https://github.com/apozas/contactdiary/issues
Donate: https://paypal.me/apozasker
AutoName: Contact Diary
RepoType: git
... |
cd0fe0c6-6a2c-4aca-a5c7-ba258559e891 | {
"language": "YAML"
} | ```yaml
# See https://github.com/ridedott/merge-me-action/
# This workflow automates merges from patches sent by Dependabot, and
# only by dependabot, once the other CI workflows pass
name: Auto-merge Dependabot PRs
on:
workflow_run:
types:
- completed
workflows:
- "Continuous Integration"
jobs:... | ```yaml
# See https://github.com/ridedott/merge-me-action/
# This workflow automates merges from patches sent by Dependabot, and
# only by dependabot, once the other CI workflows pass
name: Auto-merge Dependabot PRs
on:
workflow_run:
types:
- completed
workflows:
- "Continuous Integration"
jobs:... |
1dfac201-cc43-4d69-9ca5-15ac6edf30e3 | {
"language": "YAML"
} | ```yaml
---
label: test
hide_body: true
fields:
- name: layout
type: text
config:
required: true
label: layout
default: post
- name: title
type: text
config:
required: true
min: 8
label: title
- name: tag
type: text
config:
required: true
label: tag
default: ml
```
Update from For... | ```yaml
---
label: test
hide_body: true
fields:
- name: layout
type: text
config:
required: true
label: layout
default: post
- name: title
type: text
config:
required: true
min: 8
label: title
- name: tag
type: text
config:
required: true
label: tag
default: ml
- name: content
ty... |
5bcec65f-f0e4-4948-8010-075f0eb21473 | {
"language": "YAML"
} | ```yaml
---
name: Close sub-split PRs
on:
push:
branches:
- 2.x
- 3.x
pull_request:
branches:
- 2.x
- 3.x
schedule:
- cron: '30 7 * * *'
jobs:
close_subsplit_prs:
runs-on: ubuntu-latest
name: Close sub-split PRs
steps:
- uses: frankdejonge/action-close-sub... | ```yaml
---
name: Close sub-split PRs
on:
push:
branches:
- 2.x
- 3.x
pull_request:
branches:
- 2.x
- 3.x
schedule:
- cron: '30 7 * * *'
jobs:
close_subsplit_prs:
runs-on: ubuntu-latest
name: Close sub-split PRs
steps:
- uses: frankdejonge/action-close-sub... |
f70c07f1-7ed2-446c-904b-1c764be4d1a2 | {
"language": "YAML"
} | ```yaml
---
dependency:
name: galaxy
options:
role-file: ../../requirements.yml
ignore-errors: true
driver:
name: vagrant
provider:
name: libvirt
platforms:
- name: instance
box: ${MOLECULE_DISTRO:-generic/ubuntu1804}
memory: 4096
cpus: 1
interfaces:
- auto_config: true
... | ```yaml
---
dependency:
name: galaxy
options:
role-file: requirements.yml
ignore-errors: true
driver:
name: vagrant
provider:
name: libvirt
platforms:
- name: instance
box: ${MOLECULE_DISTRO:-generic/ubuntu1804}
memory: 4096
cpus: 1
interfaces:
- auto_config: true
net... |
5ee70fa0-148e-4671-9ff8-de310cafc1b2 | {
"language": "YAML"
} | ```yaml
name: FAKE Build on PR
on:
pull_request:
workflow_dispatch:
jobs:
win-build:
name: Windows Build (No Tests)
runs-on: windows-latest
defaults:
run:
shell: cmd
steps:
- name: System Info
run: systeminfo
- uses: actions/checkout@v2
- name: Setup .NE... | ```yaml
name: BuildDocs
on:
push:
pull_request:
workflow_dispatch:
jobs:
win-build:
name: Windows Build Docs
runs-on: windows-latest
defaults:
run:
shell: cmd
steps:
- name: System Info
run: systeminfo
- uses: actions/checkout@v2
- name: Setup .NET Cor... |
23a344e1-d94c-4b5e-b897-5345efb4c3f1 | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/tomlokhorst/language-cil
changelog-type: ''
hash: 8fecbdbf8213de7415da4e3d54d4cd373ed415950588f2d06da840b0aacd2e56
test-bench-deps: {}
maintainer: Tom Lokhorst <tom@lokhorst.eu>
synopsis: Manipulating Common Intermediate Language AST
changelog: ''
basic-deps:
base: ! '>3 && <5'
... | ```yaml
homepage: https://github.com/tomlokhorst/language-cil
changelog-type: ''
hash: d163acc92aa56953089fa49ed2a18e04408748a0e41f33fcda29da61dc1434a0
test-bench-deps: {}
maintainer: Tom Lokhorst <tom@lokhorst.eu>
synopsis: Manipulating Common Intermediate Language AST
changelog: ''
basic-deps:
base: ! '>3 && <5'
... |
60a86326-129b-4c65-a6ef-6db57dd57ff7 | {
"language": "YAML"
} | ```yaml
teams:
node-feature-discovery-operator-admins:
description: Admin access to node-feature-discovery-operator repo
members:
- ArangoGutierrez
- marquiz
- zvonkok
privacy: closed
node-feature-discovery-operator-maintainers:
description: Write access to node-feature-discovery-operato... | ```yaml
teams:
kernel-module-management-admins:
description: Admin access to kernel-module-management repo
members:
- qbarrand
privacy: closed
kernel-module-management-maintainers:
description: Write access to kernel-module-management repo
members:
- qbarrand
privacy: closed
node-f... |
ffab8ec6-e209-466a-8d93-1e96e14fa695 | {
"language": "YAML"
} | ```yaml
homepage: codekinder.com
changelog-type: ''
hash: bd6b5276c1845fa170df1c349a1d6b80ccd3317e51cea42be746446d20c67f6b
test-bench-deps: {}
maintainer: hawk.alan@gmail.com
synopsis: ''
changelog: ''
basic-deps:
bimap: -any
bytestring: -any
base: <10000
containers: -any
boolean-list: -any
all-versions:
- '0... | ```yaml
homepage: http://xy30.com
changelog-type: ''
hash: be6c33d04b30134d4e1e77459ac61607d00ccf4d69013f885b649bb6e27ce9c4
test-bench-deps: {}
maintainer: hawk.alan@gmail.com
synopsis: compress files
changelog: ''
basic-deps:
bimap: <10000
bytestring: <10000
base: <10000
booleanlist: <10000
containers: <1000... |
fb571ff4-2adc-4d79-b28b-e3c98a71a466 | {
"language": "YAML"
} | ```yaml
global:
css:
theme:
dist/css/main.css: {}
dist/css/print.css: { media: print }
js:
dist/js/bundle.js: {}
dependencies:
- core/jquery
- core/drupal
- core/drupalSettings
```
Set minified flag on bundle.js | ```yaml
global:
css:
theme:
dist/css/main.css: {}
dist/css/print.css: { media: print }
js:
dist/js/bundle.js: { minified: true }
dependencies:
- core/jquery
- core/drupal
- core/drupalSettings
``` |
3004f153-c049-4cab-9a07-64abbd094d91 | {
"language": "YAML"
} | ```yaml
version: '2'
services:
gp-finder-frontend:
image: "nhsuk/gp-finder:$DOCKER_IMAGE_TAG"
environment:
NODE_ENV: production
HOTJAR_ANALYTICS_TRACKING_ID: $HOTJAR_ANALYTICS_TRACKING_ID
GOOGLE_ANALYTICS_TRACKING_ID: $GOOGLE_ANALYTICS_TRACKING_ID
WEBTRENDS_ANALYTICS_TRACKING_ID: $WE... | ```yaml
version: '2'
services:
gp-finder-frontend:
image: "nhsuk/gp-finder:$DOCKER_IMAGE_TAG"
environment:
NODE_ENV: production
HOTJAR_ANALYTICS_TRACKING_ID: $HOTJAR_ANALYTICS_TRACKING_ID
GOOGLE_ANALYTICS_TRACKING_ID: $GOOGLE_ANALYTICS_TRACKING_ID
WEBTRENDS_ANALYTICS_TRACKING_ID: $WE... |
83ec2ad7-179d-4d1c-b90e-c88132b60075 | {
"language": "YAML"
} | ```yaml
---
setup:
- skip:
version: "0 - 100"
reason: Java returns floating point, but JSON returns integer
- do:
indices.create:
index: test123
body:
mappings:
test:
properties:
age:
type: long
- do... | ```yaml
---
setup:
- do:
indices.create:
index: test123
body:
mappings:
test:
properties:
age:
type: long
- do:
index:
index: test123
type: test
id: 1
body: { age: 23 }
- do:... |
594f12d1-bf60-4c09-ad58-3847a27c4365 | {
"language": "YAML"
} | ```yaml
---
name: Bedford
nomis_id: BFI
address: |-
St. Loyes Street
postcode: MK40 1HG
email_address: socialvisits.bedford@hmps.gsi.gov.uk
phone_no: 01234 373196
enabled: true
private: false
closed: false
booking_window: 14
recurring:
mon:
- 1345-1515
sat:
- 1345-1445
- 1515-1615
sun:
- 1345-1445
- 1... | ```yaml
---
name: Bedford
nomis_id: BFI
address: |-
St. Loyes Street
postcode: MK40 1HG
email_address: socialvisits.bedford@hmps.gsi.gov.uk
phone_no: 01234 373196
enabled: false
private: false
closed: false
booking_window: 14
recurring:
mon:
- 1345-1515
sat:
- 1345-1445
- 1515-1615
sun:
- 1345-1445
- ... |
dfe9fa21-fd0f-438a-86d0-5d587f6f8c36 | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/tvh/servant-JuicyPixels
changelog-type: ''
hash: ede33c102189882735c5843fce316082f2c7e56de84330e4bb59167f253ee9d6
test-bench-deps: {}
maintainer: tvh@tvholtz.de
synopsis: Servant support for JuicyPixels
changelog: ''
basic-deps:
warp: -any
JuicyPixels: ! '>=3.2.5.3'
bytestring... | ```yaml
homepage: https://github.com/tvh/servant-JuicyPixels
changelog-type: ''
hash: 0c2e27ad5e472b1062da07d9d2e6eceb77e96bef43a305f35e5644edc4ced676
test-bench-deps: {}
maintainer: tvh@tvholtz.de
synopsis: Servant support for JuicyPixels
changelog: ''
basic-deps:
warp: -any
JuicyPixels: '>=3.2.5.3'
bytestring: ... |
ac96f4fd-67bf-42a2-b939-0e8303cff3f7 | {
"language": "YAML"
} | ```yaml
---
- name: Install required packages
package: name={{ item }} state=installed
with_items:
- "{{ pkg_clamd }}"
- clamav-milter
- "{{ pkg_dovecot }}"
- dovecot-antispam
- "{{ pkg_dovecot_managesieved }}"
- "{{ pkg_dovecot_sieve }}"
- opendkim
- "{{ pkg_razor }}"
- postfix
... | ```yaml
---
- name: Install required packages
package:
name: "{{ item }}"
state: present
with_items:
- "{{ pkg_clamd }}"
- clamav-milter
- "{{ pkg_dovecot }}"
- dovecot-antispam
- "{{ pkg_dovecot_managesieved }}"
- "{{ pkg_dovecot_sieve }}"
- opendkim
- "{{ pkg_razor }}"
... |
d90385ab-70ef-4a88-a17c-10e4dc39d613 | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/tmhedberg/here
changelog-type: ''
hash: 06713fee7925d6b5fd24800c5ba339f638e9e074739f8490de5aee2be7cda96e
test-bench-deps: {}
maintainer: t@tmh.cc
synopsis: Here docs & interpolated strings via quasiquotation
changelog: ''
basic-deps:
base: ! '>=4.5 && <4.10'
parsec: ==3.1.*
mt... | ```yaml
homepage: https://github.com/tmhedberg/here
changelog-type: ''
hash: e2c67680ab030dfdc9aaedf46e518f86ad17e96f699ec1d598c25e04288b8b87
test-bench-deps: {}
maintainer: t@tmh.cc
synopsis: Here docs & interpolated strings via quasiquotation
changelog: ''
basic-deps:
base: ! '>=4.5 && <4.10'
parsec: ==3.1.*
mt... |
687ccedf-dbb1-45ff-94e0-b342cf0d603d | {
"language": "YAML"
} | ```yaml
Categories:
- Development
- Internet
License: LGPL-3.0-only
AuthorName: csicar
SourceCode: https://github.com/csicar/Ning
IssueTracker: https://github.com/csicar/Ning/issues
AutoName: Ning
RepoType: git
Repo: https://github.com/csicar/Ning
Builds:
- versionName: '1.2'
versionCode: 12
commit: v1... | ```yaml
Categories:
- Development
- Internet
License: LGPL-3.0-only
AuthorName: csicar
SourceCode: https://github.com/csicar/Ning
IssueTracker: https://github.com/csicar/Ning/issues
AutoName: Ning
RepoType: git
Repo: https://github.com/csicar/Ning
Builds:
- versionName: '1.2'
versionCode: 12
commit: v1... |
66b82092-e87c-4b39-a9d4-a06aa367fe91 | {
"language": "YAML"
} | ```yaml
homepage: http://www.imperialviolet.org/bitsyntax
changelog-type: ''
hash: 1969f1c76c6931e5f8c7db809546d3b6b3f8acad86d4a87e68ef1672daf4a9fd
test-bench-deps: {}
maintainer: ''
synopsis: A module to aid in the (de)serialisation of binary data
changelog: ''
basic-deps:
bytestring: -any
base: -any
haskell98: ... | ```yaml
homepage: https://github.com/joecrayne/hs-bitsyntax
changelog-type: ''
hash: 3abe1f4f0e6a858fc001eb1d61980ca8e1ba304453ab1664ffeae587387de97d
test-bench-deps: {}
maintainer: Joe Crayne
synopsis: A module to aid in the (de)serialisation of binary data
changelog: ''
basic-deps:
bytestring: -any
base: <5
Qui... |
bf0aa820-dd71-4906-8187-aae6f0e90a1e | {
"language": "YAML"
} | ```yaml
---
- hosts: tag_aws_cloudformation_stack-name_feanilpractice:&tag_group_edxapp
sudo: True
vars_files:
- "{{ secure_dir }}/vars/edxapp_continuous_integration_vars.yml"
- "{{ secure_dir }}/vars/users.yml"
roles:
- common
- nginx
- edxapp
- hosts: tag_aws_cloudformation_stack-name_feani... | ```yaml
---
- hosts: tag_aws_cloudformation_stack-name_feanilpractice:&tag_group_edxapp
sudo: True
vars_files:
- "{{ secure_dir }}/vars/edxapp_continuous_integration_vars.yml"
- "{{ secure_dir }}/vars/users.yml"
roles:
- common
- nginx
- edxapp
- hosts: tag_aws_cloudformation_stack-name_feani... |
8e496239-d1aa-4e68-a99d-65ef505ef51e | {
"language": "YAML"
} | ```yaml
homepage: http://github.com/joom/fuzzy
changelog-type: ''
hash: 123b9581c587ae5422b67bbad7e81186b1ecbf86941a8049f921ddf136f2234e
test-bench-deps:
base: -any
HUnit: ! '>=1.2.5.0'
fuzzy: -any
maintainer: joomy@cattheory.com
synopsis: Filters a list based on a fuzzy string search.
changelog: ''
basic-deps:
... | ```yaml
homepage: http://github.com/joom/fuzzy
changelog-type: ''
hash: 7e1ba6e868034e7872bc42aaab64f39e0d942e33c68d007bbb7895eb2d28a4b6
test-bench-deps:
base: -any
HUnit: '>=1.2.5.0'
fuzzy: -any
maintainer: joomy@cattheory.com
synopsis: Filters a list based on a fuzzy string search.
changelog: ''
basic-deps:
m... |
89a17626-ad05-4bc7-97c1-d02e2cf4ac78 | {
"language": "YAML"
} | ```yaml
homepage: https://en.wikipedia.org/wiki/Stack_(abstract_data_type)
changelog-type: ''
hash: 3d5edf731a665f3d971500598e60de509ae8410d65c5d3526868361b6d05598a
test-bench-deps: {}
maintainer: rwlock404@yahoo.com
synopsis: Stack data structure
changelog: ''
basic-deps:
stm: ! '>=2.4.4.1 && <2.5'
base: ! '>=4.7 ... | ```yaml
homepage: https://en.wikipedia.org/wiki/Stack_(abstract_data_type)
changelog-type: ''
hash: a802798b57f3566b18471ec01a25ae435f6a03b137918610604eb08aa9cffed9
test-bench-deps: {}
maintainer: rwlock404@yahoo.com
synopsis: Stack data structure
changelog: ''
basic-deps:
stm: ! '>=2.4.4.1 && <2.6'
base: ! '>=4.7 ... |
0b7641a1-b866-429f-b20d-5cf54c8256e4 | {
"language": "YAML"
} | ```yaml
---
- hosts: web
become: yes
name: Setup telegraf on all web servers
vars:
telegraf_version: 0.2.4
telegraf_flush_retries: 2
influxdb_db_name: telegraf
influxdb_url: http://localhost:8086
packages:
- vim
- epel-release
tasks:
- name: Add InfluxDB repository file [RHEL... | ```yaml
---
- hosts: web
become: yes
name: Setup telegraf on all web servers
vars:
telegraf_version: 0.2.4
telegraf_flush_retries: 2
influxdb_db_name: telegraf
influxdb_url: http://localhost:8086
packages:
- vim
- epel-release
tasks:
- name: Add InfluxDB repository file [RHEL... |
ec0c8502-0c66-4c3c-a2b4-bacfba3be026 | {
"language": "YAML"
} | ```yaml
header:
- title: "Upcoming events"
type: info
icon: calendar
scroll:
- text: 2/29 – Theater Boosters @ 6:45 pm in the X-Theater
- text: 3/1 – Coffee Connections with Dr. Marshhausen @ 7:30 am, Starbucks in Mill Run
- text: 3/1 – Harlem Wizards vs. HCSD Staff @ 7 pm in the Darby ... | ```yaml
header:
- title: "Upcoming events"
type: info
icon: calendar
scroll:
- text: 3/4 – Coffee Connections with Dr. Marshhausen @ 9 am, Panera Bread on Hilliard Rome Rd.
- text: 3/7 – Gridiron Club Meeting @ 7 pm in room 160
- text: 3/7 – Diamond Club Meeting @ 7 pm in room 200
... |
72abbfc7-6a32-42b4-9d83-1e27b5a2e820 | {
"language": "YAML"
} | ```yaml
# Definition build list
---
defs:
AU: ['au.yaml']
CA: ['ca.yaml', 'north_america_informal.yaml']
CZ: ['cz.yaml']
DK: ['dk.yaml']
DE: ['de.yaml']
ES: ['es.yaml']
FR: ['fr.yaml']
GB: ['gb.yaml']
IE: ['ie.yaml']
IS: ['is.yaml']
IT: ['it.yaml']
MX: ['mx.yaml', 'north_america_informal.yaml']... | ```yaml
# Definition build list
---
defs:
AU: ['au.yaml']
CA: ['ca.yaml', 'north_america_informal.yaml']
CZ: ['cz.yaml']
DK: ['dk.yaml']
DE: ['de.yaml']
ES: ['es.yaml']
FR: ['fr.yaml']
GB: ['gb.yaml']
IE: ['ie.yaml']
IS: ['is.yaml']
IT: ['it.yaml']
MX: ['mx.yaml', 'north_america_informal.yaml']... |
d0b5fc7d-1c35-4f86-af65-64ea460d4a43 | {
"language": "YAML"
} | ```yaml
---
name: "st2workroom_run_installer"
runner_type: "remote-shell-script"
description: "Script which runs installer with the provided data"
enabled: true
entry_point: "scripts/run_installer.py"
parameters:
installer_url:
type: "string"
description: "Installer URL without the trailing ... | ```yaml
---
name: "st2workroom_run_st2installer"
runner_type: "remote-shell-script"
description: "Script which runs installer with the provided data"
enabled: true
entry_point: "scripts/run_installer.py"
parameters:
installer_url:
type: "string"
description: "Installer URL without the traili... |
bc47c3e2-6159-4edf-bf1c-2a915d960dd7 | {
"language": "YAML"
} | ```yaml
homepage: http://tidal.lurk.org/
changelog-type: ''
hash: 29b0d9090b6de731f2e7147d0ab1589e9eea5a1ec19257701c097281a318969f
test-bench-deps: {}
maintainer: Alex McLean <alex@slab.org>, Mike Hodnick <mike.hodnick@gmail.com>
synopsis: MIDI support for tidal
changelog: ''
basic-deps:
base: <5
time: -any
conta... | ```yaml
homepage: http://tidal.lurk.org/
changelog-type: ''
hash: f89469bcda07714d17375974b7384f7c22ce3866e3fbcc38d6822e32e89896b6
test-bench-deps: {}
maintainer: Alex McLean <alex@slab.org>, Mike Hodnick <mike.hodnick@gmail.com>
synopsis: MIDI support for tidal
changelog: ''
basic-deps:
base: <5
time: -any
conta... |
7222c387-a0e7-4d18-937b-943d5e97e608 | {
"language": "YAML"
} | ```yaml
homepage: http://tidal.lurk.org/
changelog-type: ''
hash: fe86dee6e6fa0be36385d2c2f0b9ebfc812324a351a0d0d076290fc32bd568e4
test-bench-deps: {}
maintainer: Alex McLean <alex@slab.org>, Mike Hodnick <mike.hodnick@gmail.com>
synopsis: MIDI support for tidal
changelog: ''
basic-deps:
base: <5
time: -any
conta... | ```yaml
homepage: http://tidal.lurk.org/
changelog-type: ''
hash: 642320dd6172c50c528a91e302d2e747fafd780f8a49474ee18d65f9e6daee90
test-bench-deps: {}
maintainer: Alex McLean <alex@slab.org>, Mike Hodnick <mike.hodnick@gmail.com>
synopsis: MIDI support for tidal
changelog: ''
basic-deps:
base: <5
time: -any
conta... |
dfc078c2-537a-413c-b1a5-3bc6e85055a2 | {
"language": "YAML"
} | ```yaml
homepage: http://github.com/tobs169/HulkImport#readme
changelog-type: ''
hash: d9c870280cda1bd6cc1bc1b98daf014371523c4b11bdbae9f5ff07f538a2afec
test-bench-deps:
base: -any
tasty-golden: -any
HulkImport: -any
tasty: -any
maintainer: tobs169@gmail.com
synopsis: Initial project template from stack
changelo... | ```yaml
homepage: http://github.com/tobs169/HulkImport#readme
changelog-type: ''
hash: a2a4572cc55b9c3a88b6692bfdb37e076c2ef53df8eec7a85a9ed022d8470f6a
test-bench-deps:
base: -any
tasty-golden: -any
HulkImport: -any
tasty: -any
maintainer: tobs169@gmail.com
synopsis: Easily bulk import CSV data to SQL Server
ch... |
d6842b4e-b206-41ab-91d8-14499ec17767 | {
"language": "YAML"
} | ```yaml
homepage: ''
changelog-type: markdown
hash: 0dc0b41bd77b0f8467ed642efaf4327236c1d0bbf3b633eb699b8d1091159924
test-bench-deps: {}
maintainer: nbedell@tulane.edu
synopsis: Tree data structure for nondeterministic computations.
changelog: |
# Revision history for monad-tree
## 0.1.0 -- 2021-08-20
* First... | ```yaml
homepage: ''
changelog-type: markdown
hash: fe4e388ab4f7d586f5415c2ef0a77742cf12255f1401adbf55ce92d3dad37d55
test-bench-deps: {}
maintainer: nbedell@tulane.edu
synopsis: Tree data structure for nondeterministic computations.
changelog: |
# Revision history for monad-tree
## 0.1.0 -- 2021-08-20
* First... |
45dfbc5c-678b-48a0-8b97-7f55ae60025f | {
"language": "YAML"
} | ```yaml
---
- name: Create ~/.bin
file: dest=~/.bin state=directory
- name: Link dotfiles
file: src={{ item }} dest=~/.{{ item | basename }} state=link
with_fileglob:
- ./conf/*
- name: Link executables
file: src={{ item }} dest=~/.bin/{{ item | basename }} state=link
with_fileglob:
- ./bin/*
```
A... | ```yaml
---
- name: Create ~/.bin
file: dest=~/.bin state=directory
- name: Link dotfiles
file: src={{ item }} dest=~/.{{ item | basename }} state=link
with_fileglob:
- ./conf/*
- name: Link executables
file: src={{ item }} dest=~/.bin/{{ item | basename }} state=link
with_fileglob:
- ./bin/*
- nam... |
a5f207cb-5fff-4d5c-94fb-17abfb5f9dcf | {
"language": "YAML"
} | ```yaml
---
- include: sshd.yml
sudo: true
- include: firewalld.yml
sudo: true
- include: fail2ban.yml
# ipv6? Check it if you have it.
- include: ipv6.yml
sudo: true
when: "ansible_default_ipv6 != {}"
```
Add task to copy in authorized key files | ```yaml
---
- include: sshd.yml
sudo: true
- include: firewalld.yml
sudo: true
- include: fail2ban.yml
sudo: true
# ipv6? Check it if you have it.
- include: ipv6.yml
sudo: true
when: "ansible_default_ipv6 != {}"
- file: path=~/.ssh state=directory mode=0700
- name: add authorized keys
copy: content={{ au... |
2aac1d98-d117-462e-8cea-d36501008483 | {
"language": "YAML"
} | ```yaml
---
- yum: name=libreswan state=latest
tags:
- packages
- copy: dest=/etc/ipsec.d/redhat.secrets content="{{ vpn_secret }}"
owner=root group=root
notify: restart ipsec
- template: dest=/etc/ipsec.conf src=ipsec.conf
owner=root group=root
notify: restart ipsec
- service: name=ipsec... | ```yaml
---
- yum: name=libreswan state=latest
tags:
- packages
- copy: dest=/etc/ipsec.d/redhat.secrets content="{{ vpn_secret }}"
owner=root group=root
notify: restart ipsec
- template: dest=/etc/ipsec.conf src=ipsec.conf
owner=root group=root
notify: restart ipsec
- service: name=ipsec... |
420e3f44-fb4c-4506-8a52-8cfa7cf90cef | {
"language": "YAML"
} | ```yaml
test: &test
adapter: postgresql
database: activerecord_views_test
min_messages: warning
development:
<<: *test
production:
<<: *test
```
Disable migration advisory locks on Rails 6.0 | ```yaml
test: &test
adapter: postgresql
database: activerecord_views_test
min_messages: warning
advisory_locks: <%= !Rails.version.start_with?('6.0.') %>
development:
<<: *test
production:
<<: *test
``` |
e4b5f1eb-64b1-4c81-b068-e3dc81b9d6f9 | {
"language": "YAML"
} | ```yaml
imports:
- { resource: config_dev.yml }
- { resource: "@SimplyTestableApiBundle/Resources/config/parameters_test.yml" }
- { resource: "@SimplyTestableApiBundle/Resources/config/services_test.yml" }
framework:
test: ~
session:
storage_id: session.storage.mock_file
web_profil... | ```yaml
imports:
- { resource: config_dev.yml }
- { resource: "@SimplyTestableApiBundle/Resources/config/parameters_test.yml" }
- { resource: "@SimplyTestableApiBundle/Resources/config/services_test.yml" }
framework:
test: ~
session:
storage_id: session.storage.mock_file
web_profil... |
1c16e133-0c91-4535-9dd3-fb3b691682d2 | {
"language": "YAML"
} | ```yaml
# YAML file to give repositories and text to close PRs with
---
# organization/owner
# repository
# close - boolean - close any open PR
# lock - boolean - lock further discussion (must be done manually, but
# URL provided)
# message - str - text for closing comment
- organization: mozilla
... | ```yaml
# YAML file to give repositories and text to close PRs with
---
# organization/owner
# repository
# close - boolean - close any open PR
# lock - boolean - lock further discussion (must be done manually, but
# URL provided)
# message - str - text for closing comment
- organization: mozilla
... |
8214e2b0-86b5-4b36-a23a-7da3391fc9a6 | {
"language": "YAML"
} | ```yaml
links:
- title: Vision
url: /vision/
- title: Bisq DAO
url: /dao/
- title: Network Stats
url: /stats/
- title: FAQ
url: /faq/
- title: Markets
url: /markets/
mobile_links:
- title: Community
url: /community/
- title: Blog
url: /blog/
- title: Documentation
url: https://docs.bisq.network... | ```yaml
links:
- title: Vision
url: /vision/
- title: Bisq DAO
url: /dao/
- title: Statistics
url: /stats/
- title: FAQ
url: /faq/
- title: Markets
url: /markets/
mobile_links:
- title: Community
url: /community/
- title: Blog
url: /blog/
- title: Documentation
url: https://docs.bisq.network/
... |
f836f27c-c028-4d69-a928-cf3fbf257b9f | {
"language": "YAML"
} | ```yaml
filter:
excluded_paths:
- 'tests/*'
checks:
php: true
coding_style:
php:
spaces:
around_operators:
concatenation: true
build:
tests:
override:
-
command: 'tools/phpunit --coverage-clover=coverage-file'
... | ```yaml
filter:
excluded_paths:
- 'tests/*'
checks:
php: true
coding_style:
php:
spaces:
around_operators:
concatenation: true
build:
tests:
override:
-
command: 'phpunit --coverage-clover=coverage-file'
cov... |
8f60051d-2f64-4393-9436-7c07efb6df87 | {
"language": "YAML"
} | ```yaml
build:
tests:
before:
- mysql --version
- mysql -u root -e "create database if not exists test_audit character set = 'utf8' collate='utf8_general_ci';"
- mysql -u root -e "create database if not exists test_data character set = 'utf8' collate='utf8_general_ci';"
... | ```yaml
build:
tests:
before:
- mysql --version
- mysql -u root -e "create database if not exists test_audit character set = 'utf8' collate='utf8_general_ci';"
- mysql -u root -e "create database if not exists test_data character set = 'utf8' collate='utf8_general_ci';"
... |
e5a5ab39-6472-4f2d-92b7-11acdef4eb96 | {
"language": "YAML"
} | ```yaml
---
- include: ../openshift-cluster/initialize_groups.yml
- name: Ensure there are new_masters
hosts: localhost
connection: local
become: no
gather_facts: no
tasks:
- fail:
msg: >
Detected no new_masters or no new_nodes in inventory. Please
add hosts to the new_masters and new... | ```yaml
---
- include: ../openshift-cluster/initialize_groups.yml
- name: Ensure there are new_masters or new_nodes
hosts: localhost
connection: local
become: no
gather_facts: no
tasks:
- fail:
msg: >
Detected no new_masters or no new_nodes in inventory. Please
add hosts to the new_ma... |
c7fa1ba7-f357-45dd-9360-e34fcbe96bb3 | {
"language": "YAML"
} | ```yaml
- service: name=mysql state=started
- name: Fetch Galera sync status from MySQL
sudo: yes
command: mysql -N -e "SHOW STATUS LIKE 'wsrep_local_state'"
register: wsrep_local_state
- set_fact: galera_status="Synced"
when: wsrep_local_state.stdout == "wsrep_local_state\t4"
- set_fact: galera_status="Out of ... | ```yaml
- service: name=mysql state=started
- name: Fetch Galera sync status from MySQL
sudo: yes
command: mysql --defaults-file=/mnt/state/root/metadata.my.cnf -N -e "SHOW STATUS LIKE 'wsrep_local_state'"
register: wsrep_local_state
- set_fact: galera_status="Synced"
when: wsrep_local_state.stdout == "wsrep_lo... |
f7cfdb51-83ff-4d5f-80bc-51c3aef23228 | {
"language": "YAML"
} | ```yaml
# vim: set ft=ansible:
---
- hosts: localhost
connection: local
sudo: no
gather_facts: no
vars_files:
- ../vars.yml
vars:
cluster_hosts: "{{ groups['tag_env_' ~ cluster_id] }}"
tasks:
- fail:
msg: required values not set
when: rhsm_user is not defined or rhsm_pass is not defined or... | ```yaml
# vim: set ft=ansible:
---
- hosts: localhost
connection: local
sudo: no
gather_facts: no
vars_files:
- ../vars.yml
vars:
cluster_hosts: "{{ groups['tag_env_' ~ cluster_id] }}"
tasks:
- fail:
msg: required values not set
when: rhsm_user is not defined or rhsm_pass is not defined or... |
6b885ec3-3e88-4279-b0e3-24a2e85ebddf | {
"language": "YAML"
} | ```yaml
app:
extends:
file: common.yml
service: app
image: mycompany/myapp-test:latest
links:
- db
volumes_from:
- cache
volumes:
- ../src:/application
db:
extends:
file: common.yml
service: db
cache:
image: mycompany/myapp-test:latest
container_name: mycompany_myapp_cache
... | ```yaml
app:
extends:
file: common.yml
service: app
image: mycompany/myapp-test:latest
links:
- db
volumes_from:
- cache
volumes:
- ../src:/application
db:
extends:
file: common.yml
service: db
cache:
image: mycompany/myapp-test:latest
container_name: mycompany_myapp_cache
... |
69318cb5-710c-4f24-beaf-379720fd245c | {
"language": "YAML"
} | ```yaml
name: syncplay
summary: Syncplay
version: build
version-script: cat syncplay/__init__.py | awk '/version/ {gsub("\047", "", $3); print $NF}'
summary: Client/server to synchronize media playback on many computers
description: |
Syncplay synchronises the position and play state of multiple media players
so th... | ```yaml
name: syncplay
summary: Syncplay
version: build
version-script: cat syncplay/__init__.py | awk '/version/ {gsub("\047", "", $3); print $NF}'
summary: Client/server to synchronize media playback on many computers
description: |
Syncplay synchronises the position and play state of multiple media players
so th... |
f1754b2d-f753-46de-b583-bcd6ef5a5a1c | {
"language": "YAML"
} | ```yaml
Categories:
- Multimedia
- Reading
- Science & Education
License: AGPL-3.0-or-later
WebSite: https://www.taz.de
SourceCode: https://github.com/die-tageszeitung/taz-neo
IssueTracker: https://github.com/die-tageszeitung/taz-neo/issues
AutoName: die tageszeitung
RepoType: git
Repo: https://github.com/die-t... | ```yaml
Categories:
- Multimedia
- Reading
- Science & Education
License: AGPL-3.0-or-later
WebSite: https://www.taz.de
SourceCode: https://github.com/die-tageszeitung/taz-neo
IssueTracker: https://github.com/die-tageszeitung/taz-neo/issues
AutoName: die tageszeitung
RepoType: git
Repo: https://github.com/die-t... |
39d15af1-0a81-4aaf-9178-08e9f8848a4f | {
"language": "YAML"
} | ```yaml
Categories:
- Development
License: Apache-2.0
SourceCode: https://github.com/segin/BFInterpreter
IssueTracker: https://github.com/segin/BFInterpreter/issues
AutoName: BF Interpreter
Description: Implementation of the "Brainfuck" programming language.
RepoType: git
Repo: https://github.com/segin/BFInterprete... | ```yaml
Categories:
- Development
License: Apache-2.0
SourceCode: https://github.com/segin/BFInterpreter
IssueTracker: https://github.com/segin/BFInterpreter/issues
AutoName: BF Interpreter
Description: Implementation of the "Brainfuck" programming language.
RepoType: git
Repo: https://github.com/segin/BFInterprete... |
191bf5eb-5953-4cc1-9b33-aa2a4d210b0b | {
"language": "YAML"
} | ```yaml
jobs: (( merge ))
resource_pools:
- name: riak-pool
network: riak-cs-network
size: (( auto ))
stemcell:
name: bosh-aws-xen-ubuntu-lucid-go_agent
version: (( merge || 2578 ))
cloud_properties:
ram: 4096
disk: 10240
cpu: 2
- name: broker-pool
network: riak-cs-network
size: (( auto ... | ```yaml
jobs: (( merge ))
resource_pools:
- name: riak-pool
network: riak-cs-network
size: (( auto ))
stemcell:
name: bosh-vsphere-esxi-ubuntu-lucid-go_agent
version: (( merge || 2578 ))
cloud_properties:
ram: 4096
disk: 10240
cpu: 2
- name: broker-pool
network: riak-cs-network
size: (( ... |
99c811ce-d0c4-4517-b220-ee2544664fe1 | {
"language": "YAML"
} | ```yaml
endpoints:
- localhost:9042
op_timeout: 5000000000 # 5 seconds (creating a new keyspace is very slow on travis)
dial_timeout: 3000000000 # 3 seconds
redial_interval: 60000000000 # 60 seconds
protocol_version: 4
```
Extend optimout for cassandra in travis | ```yaml
endpoints:
- localhost:9042
op_timeout: 10000000000 # 10 seconds (creating a new keyspace is very slow on travis)
dial_timeout: 3000000000 # 3 seconds
redial_interval: 60000000000 # 60 seconds
protocol_version: 4
``` |
51c3e92f-d20b-4d9d-8f44-5b7480d547a6 | {
"language": "YAML"
} | ```yaml
changelog:
repository: spring-projects/spring-security
sections:
- title: ":rewind: Breaking Changes"
labels: ["type: breaks-passivity"]
sort: "title"
- title: ":star: New Features"
labels: ["type: enhancement"]
sort: "title"
- title: ":beetle: Bug Fixes"
labels: ["... | ```yaml
changelog:
repository: spring-projects/spring-security
sections:
- title: ":rewind: Breaking Changes"
labels: ["type: breaks-passivity"]
sort: "title"
- title: ":star: New Features"
labels: ["type: enhancement"]
sort: "title"
- title: ":beetle: Bug Fixes"
labels: ["... |
2e223906-d3bb-4127-8e75-24e306ce5f38 | {
"language": "YAML"
} | ```yaml
numberOfReviewers: 2
# This group should NEVER be changed based on availability; it's to help
# determine if a PR author is an external contributor.
team:
- brettcannon
- int19h
- karthiknadig
- karrtikr
- kimadeline
- luabud
- paulacamargo25
# Comment yourself out when you will be unavailable f... | ```yaml
numberOfReviewers: 2
# This group should NEVER be changed based on availability; it's to help
# determine if a PR author is an external contributor.
team:
- brettcannon
- int19h
- karthiknadig
- karrtikr
- kimadeline
- luabud
- paulacamargo25
# Comment yourself out when you will be unavailable f... |
2ba84e7f-5b96-40f4-886c-16bc4b6babd6 | {
"language": "YAML"
} | ```yaml
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: testgrid-tabulator
namespace: testgrid-canary
labels:
app: testgrid
channel: stable
component: tabulator
spec:
replicas: 1
selector:
matchLabels:
app: testgrid
channel: stable
component: tabulator
template:
... | ```yaml
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: testgrid-tabulator
namespace: testgrid-canary
labels:
app: testgrid
channel: stable
component: tabulator
spec:
replicas: 1
selector:
matchLabels:
app: testgrid
channel: stable
component: tabulator
template:
... |
5a89264e-696a-4da7-9559-812644567b6e | {
"language": "YAML"
} | ```yaml
---
# This playbook purges Ceph
# It removes: packages, configuration files and ALL THE DATA
- hosts:
- mons
- osds
vars:
devices: [ '/dev/sdb', '/dev/sdc', '/dev/sdd', '/dev/sde', '/dev/sdf' ]
partitions: [ '1', '2', '3' ]
tasks:
- name: disk zap
command: /usr/sbin/sgdisk --zap-all --... | ```yaml
---
# This playbook purges Ceph
# It removes: packages, configuration files and ALL THE DATA
- hosts:
- mons
- osds
vars:
devices: [ '/dev/sdb', '/dev/sdc', '/dev/sdd', '/dev/sde', '/dev/sdf' ]
partitions: [ '1', '2', '3' ]
tasks:
- name: disk zap
command: /usr/sbin/sgdisk --zap-all --... |
98e6ea2e-054b-4cad-af4a-85f1988d5337 | {
"language": "YAML"
} | ```yaml
---
uaa_instances: 3
nats_instances: 3
diego_api_instances: 3
cell_instances: 105
router_instances: 15
api_instances: 12
doppler_instances: 54
log_api_instances: 27
scheduler_instances: 6
cc_worker_instances: 6
cc_hourly_rate_limit: 60000
cc_staging_timeout_in_seconds: 2700
cc_maximum_health_check_timeout_in_se... | ```yaml
---
uaa_instances: 3
nats_instances: 3
diego_api_instances: 3
cell_instances: 111
router_instances: 15
api_instances: 12
doppler_instances: 54
log_api_instances: 27
scheduler_instances: 6
cc_worker_instances: 6
cc_hourly_rate_limit: 60000
cc_staging_timeout_in_seconds: 2700
cc_maximum_health_check_timeout_in_se... |
5cc348ba-9e86-4a4b-aa97-826b290f1f80 | {
"language": "YAML"
} | ```yaml
db:
container_name: <%= projectName %>_<%= environment %>_db
extends:
file: docker-compose.yml
service: db
volumes:
- /data/<%= projectName %>_<%= environment %>/mysql:/var/lib/mysql
<% if (cache.external) { %>
cache:
container_name: <%= projectName %>_<%= environment %>_cache
extends:
... | ```yaml
db:
container_name: <%= projectName %>_<%= environment %>_db
extends:
file: docker-compose.yml
service: db
volumes:
- /data/<%= projectName %>_<%= environment %>/mysql:/var/lib/mysql
<% if (cache.external) { %>
cache:
container_name: <%= projectName %>_<%= environment %>_cache
extends:
... |
96aa6faa-e0b7-4be2-a9d9-03477e96044a | {
"language": "YAML"
} | ```yaml
---
# Provisioning a dev box
- name: Configuring Base System
hosts: local
sudo: yes
sudo_user: vagrant
tasks:
- name: Checkout dotfiles
git: repo=git://github.com/scorpionresponse/dotfiles.git dest=/home/vagrant/dotfiles accept_hostkey=True
- name: Make install script executable
sh... | ```yaml
---
# Provisioning a dev box
- name: Configuring Base System
hosts: local
sudo: yes
sudo_user: vagrant
tasks:
- name: Checkout dotfiles
git: repo=git://github.com/scorpionresponse/dotfiles.git dest=/home/vagrant/dotfiles accept_hostkey=True
- name: Make install script executable
sh... |
d9089fed-345f-4513-8f7c-4c01dd712bb5 | {
"language": "YAML"
} | ```yaml
---
name: "winrm_cmd"
runner_type: "run-python"
description: "Run a command via WinRM"
enabled: true
entry_point: "winrm_cmd.py"
parameters:
host:
type: "string"
description: "IP address of a Windows server to run the query on"
required: true
password:
typ... | ```yaml
---
name: "winrm_cmd"
runner_type: "run-python"
description: "Run a command via WinRM"
enabled: true
entry_point: "winrm_cmd.py"
parameters:
host:
type: "string"
description: "IP address of a Windows server to run the query on"
required: true
password:
typ... |
0477bab2-8867-4e47-9bf3-da739e439aca | {
"language": "YAML"
} | ```yaml
name: "CS"
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
coding-standards:
name: "CS Fixer & PHPStan"
runs-on: "ubuntu-16.04"
strategy:
matrix:
php:
- "7.3"
steps:
- name: "Checkout"
uses: "actions/checkout... | ```yaml
name: "CS"
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
coding-standards:
name: "CS Fixer & PHPStan"
runs-on: "ubuntu-16.04"
strategy:
matrix:
php:
- "7.3"
steps:
- name: "Checkout"
uses: "actions/checkout... |
de8b9cd8-1cf0-4beb-84d8-5da76c06fb1c | {
"language": "YAML"
} | ```yaml
name: Clang-Format
on:
workflow_dispatch:
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
Clang-Format:
uses: steinwurf/clang-format-action/.github/workflows/action.yml@1.0.0
```
Update Clang-Format to new version 2.0.0 | ```yaml
name: Clang-Format
on:
workflow_dispatch:
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
Clang-Format:
uses: steinwurf/clang-format-action/.github/workflows/action.yml@2.0.0
``` |
d0f1464f-908e-42e2-a143-892cad078ef8 | {
"language": "YAML"
} | ```yaml
---
elasticsearch_app_dir: "{{ COMMON_APP_DIR }}/elasticsearch"
elasticsearch_data_dir: "{{ COMMON_DATA_DIR }}/elasticsearch"
elasticsearch_log_dir: "{{ COMMON_LOG_DIR }}/elasticsearch"
elasticsearch_cfg_dir: "{{ COMMON_CFG_DIR }}/elasticsearch"
elasticsearch_apt_key_url: "https://artifacts.elastic.co/GPG-KEY-e... | ```yaml
---
elasticsearch_app_dir: "{{ COMMON_APP_DIR }}/elasticsearch"
elasticsearch_data_dir: "{{ COMMON_DATA_DIR }}/elasticsearch"
elasticsearch_log_dir: "{{ COMMON_LOG_DIR }}/elasticsearch"
elasticsearch_cfg_dir: "{{ COMMON_CFG_DIR }}/elasticsearch"
elasticsearch_apt_key_url: "https://artifacts.elastic.co/GPG-KEY-e... |
8d3f68a4-2af1-42df-934e-0de3ee07811c | {
"language": "YAML"
} | ```yaml
---
# Classes is an array of Puppet modules to run
classes:
- site
site::domain: 'climate-cms.nci.org.au'
site::puppet::master: puppet-2
site::proxy_ip: '10.0.1.10'
# Default class arguments
apache::default_vhost: false
apache::default_mods: false
```
Enable icinga client for all servers | ```yaml
---
# Classes is an array of Puppet modules to run. This file defines classes to
# install on all servers.
classes:
- site
- client::icinga
site::domain: 'climate-cms.nci.org.au'
site::puppet::master: puppet-2
site::proxy_ip: '10.0.1.10'
# Default class arguments
apache::default_vhost: false
apache:... |
69390159-7d6f-4bde-a5e6-342768535eb4 | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/dmwit/universe
changelog-type: ''
hash: 9f75eb7f8cda98e8ecb5e9f6ec079890a66265bdfd6707f4fa4cb8857327dfa4
test-bench-deps: {}
maintainer: me@dmwit.com
synopsis: Universe instances for types from the transformers and mtl packages
changelog: ''
basic-deps:
base: ! '>=4 && <5'
unive... | ```yaml
homepage: https://github.com/dmwit/universe
changelog-type: ''
hash: c96cbeb4bf0240bbe09476ca360e9d35cb07cb0af4324bfbfa5cce55df7a9c35
test-bench-deps: {}
maintainer: me@dmwit.com
synopsis: Universe instances for types from the transformers and mtl packages
changelog: ''
basic-deps:
base: ! '>=4 && <5'
unive... |
ae65528c-2dcc-4b89-b66f-3ef9955bca54 | {
"language": "YAML"
} | ```yaml
name: Build Docker Container
on:
push:
branches: [ main ]
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Instal... | ```yaml
name: Build Docker Container
on:
push:
branches: [ main ]
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login t... |
9ba59664-ac1b-4912-afd0-e43743108859 | {
"language": "YAML"
} | ```yaml
name: "CodeQL"
on:
workflow_dispatch:
schedule:
- cron: '23 5 * * 0'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repo
uses: actions/checkout@v3
# The cod... | ```yaml
name: "CodeQL"
on:
workflow_dispatch:
schedule:
- cron: '23 5 * * 0'
pull_request:
branches:
- master
paths:
- '**.go'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
... |
bdf4be97-00b7-48e7-87d6-1a56f4193932 | {
"language": "YAML"
} | ```yaml
name: Test and deploy
on:
- push
- workflow_dispatch
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@21351ecc0a7c196081abca5dc55b08f085efe09a
with:
ruby-version: 2.6.3
- name: Install dependencies
r... | ```yaml
name: Test and deploy
on:
- push
- workflow_dispatch
jobs:
test_and_deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@21351ecc0a7c196081abca5dc55b08f085efe09a
with:
ruby-version: 2.6.3
- name: Install dependenc... |
5bf10697-a98e-4363-92b9-e8c8b19b8fed | {
"language": "YAML"
} | ```yaml
---
site: defra
whitehall_slug: department-for-environment-food-rural-affairs
host: www.defra.gov.uk
redirection_date: 10th April 2013
tna_timestamp: 20130128102031
title: Department for Environment, Food & Rural Affairs
furl: www.gov.uk/defra
homepage: https://www.gov.uk/government/organisations/department... | ```yaml
---
site: defra
whitehall_slug: department-for-environment-food-rural-affairs
host: www.defra.gov.uk
redirection_date: 10th April 2013
tna_timestamp: 20130822084033
title: Department for Environment, Food & Rural Affairs
furl: www.gov.uk/defra
homepage: https://www.gov.uk/government/organisations/department... |
05b9774d-1159-47f2-ad2d-4b11ea64b291 | {
"language": "YAML"
} | ```yaml
---
# Ansible playbook for State Library Western Australia, Australia (obviously)
- hosts: localhost
roles:
- logs
# We need to upgrade this.
- ideascube
#- role: kalite
# version: "0.15.0"
# lang: ["en"]
#- kiwix
#- role: zim_install
# zim_name: "wikipedia.en wik... | ```yaml
---
# Ansible playbook for State Library Western Australia, Australia (obviously)
- hosts: localhost
roles:
- logs
#- role: kalite
# version: "0.15.0"
# lang: ["en"]
#- kiwix
#- role: zim_install
# zim_name: "wikipedia.en wiktionary.en wikiversity.en wikibooks.en wikisourc... |
b292fd78-7b97-476e-bc6f-6911e5a23c26 | {
"language": "YAML"
} | ```yaml
## USB port
port: /dev/serial/by-id/usb-SparkFun_SFE_9DOF-D21-if00
##### Calibration ####
### accelerometer
accel_x_min: -250.0
accel_x_max: 250.0
accel_y_min: -250.0
accel_y_max: 250.0
accel_z_min: -250.0
accel_z_max: 250.0
### magnetometer
# standard calibration
magn_x_min: -600.0
magn_x_max: 600.0
magn_y_m... | ```yaml
## USB port
port: /dev/serial/by-id/usb-SparkFun_SFE_9DOF-D21-if00
## Sensor Flame
## !!!!!!!!!!!!!!!!!!!! CHECK REQUIRED !!!!!!!!!!!!!!!!!!!!
flame_id: imu_link
##### Calibration ####
### accelerometer
accel_x_min: -250.0
accel_x_max: 250.0
accel_y_min: -250.0
accel_y_max: 250.0
accel_z_min: -250.0
accel_z_m... |
946c2c79-3a76-4716-998c-6cf39a4f4db7 | {
"language": "YAML"
} | ```yaml
---
galaxy_info:
description: Install st2chatops
author: humblearner
company: StackStorm
license: Apache 2.0
min_ansible_version: 2.5
platforms:
- name: Ubuntu
versions:
- bionic
- xenial
- name: EL
versions:
- 7
- 8
galaxy_tags:
- system
... | ```yaml
---
galaxy_info:
description: Install st2chatops
author: humblearner
company: StackStorm
license: Apache 2.0
min_ansible_version: 2.5
platforms:
- name: Ubuntu
versions:
- bionic
- xenial
- focal
- name: EL
versions:
- 7
- 8
galaxy_tags:
... |
8e84dff6-e0b5-4544-bf88-0c12b9b8bba3 | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/nikita-volkov/attoparsec-time
changelog-type: ''
hash: 50d4c4fb080037721dc37e02f93d49a0e44c26408e46ac3e8e04683f0adbcc09
test-bench-deps:
base-prelude: <2
base: <5
filepath: ! '>=1.4 && <2'
doctest: ==0.13.*
directory: ! '>=1.2 && <2'
maintainer: Nikita Volkov <nikita.y.vol... | ```yaml
homepage: https://github.com/nikita-volkov/attoparsec-time
changelog-type: ''
hash: 170e366908be6d028cf1fc8f46117f51ebffacbda0d4855ce1f63bda6f3167af
test-bench-deps: {}
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
synopsis: Attoparsec parsers of time
changelog: ''
basic-deps:
bytestring: ==0.10.*
bas... |
4a4f4472-3311-44ed-8c92-be67dde94cda | {
"language": "YAML"
} | ```yaml
Configuration:
name: Default
Appenders:
Console:
name: Console_Appender
target: SYSTEM_OUT
PatternLayout:
pattern: "[%-5level] %d{yyyy-MM-dd HH:mm:ss.SSS} [%t] %c{1} - %msg%n"
Loggers:
Root:
level: info
AppenderRef:
- ref: Console_Appender
```
Use dir... | ```yaml
Configuration:
name: Default
Appenders:
Console:
name: Console_Appender
target: SYSTEM_OUT
direct: true
PatternLayout:
pattern: "[%-5level] %d{yyyy-MM-dd HH:mm:ss.SSS} [%t] %c{6} - %msg%n"
Loggers:
Root:
level: info
AppenderRef:
- ref: Console_Ap... |
cecaa480-14f8-4681-b3ca-55caf88c10fb | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/andrewthad/colonnade#readme
changelog-type: ''
hash: 71af7674390e6395e1d755736a42be233682cae50189bc671c62c7c7f4918d8b
test-bench-deps:
base: ! '>=4.7 && <=5'
doctest: -any
colonnade: -any
maintainer: andrew.thaddeus@gmail.com
synopsis: Helper functions for using blaze-html wit... | ```yaml
homepage: https://github.com/andrewthad/colonnade#readme
changelog-type: ''
hash: c653cef15919aef41e2531dc78ea311617096c040b5a23027ba54eee38447646
test-bench-deps:
base: ! '>=4.7 && <=5'
doctest: -any
colonnade: -any
maintainer: andrew.thaddeus@gmail.com
synopsis: Helper functions for using blaze-html wit... |
47b27fbb-5aad-48ad-ba7c-3e75bb191ba3 | {
"language": "YAML"
} | ```yaml
name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
ruby: [2.4, 2.5, 2.6, 2.7]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-ruby@v1
with... | ```yaml
name: ci
on: [push, pull_request]
env:
RUBYOPT: -Eutf-8
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
ruby: [2.4, 2.5, 2.6, 2.7]
steps:
- uses: actions/checkout@v2
- uses: actions... |
3d56de9d-dd92-4bcd-bdbb-71675c6ef94f | {
"language": "YAML"
} | ```yaml
name: CI
on: [push]
jobs:
build:
name: Python ${{ matrix.python }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-18.04
- macOS-10.14
python:
- '2.7'
- '3.7'
- 'pypy3'
steps:
- uses: ac... | ```yaml
name: CI
on: [push]
jobs:
build:
name: Python ${{ matrix.python }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-18.04
- macOS-10.14
python:
- '2.7'
- '3.7'
steps:
- uses: actions/checkout@maste... |
13d7ee91-9aad-4544-9a68-261657908466 | {
"language": "YAML"
} | ```yaml
name: CI
on:
push:
pull_request:
schedule: [cron: "40 1 * * *"]
jobs:
test:
name: Rust ${{matrix.rust}}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rust: [beta, stable, 1.36.0]
include:
- rust: nightly
rustflags: --cfg thiserr... | ```yaml
name: CI
on:
push:
pull_request:
schedule: [cron: "40 1 * * *"]
jobs:
test:
name: Rust ${{matrix.rust}}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rust: [beta, stable, 1.36.0]
include:
- rust: nightly
rustflags: --cfg thiserr... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.