doc_id stringlengths 36 36 | metadata dict | input stringlengths 28 4.3k | output stringlengths 11 5.45k |
|---|---|---|---|
7544d9b1-6bf4-4a9d-8305-9c69ecfaff36 | {
"language": "YAML"
} | ```yaml
version: 2.1
jobs:
build:
docker:
- image: circleci/rust:latest
steps:
- checkout
- restore_cache:
key: mkroman-tvtid-{{ arch }}
- run:
name: Build in debug mode
command: cargo build
- persist_to_workspace:
root: .
pat... | ```yaml
version: 2.1
jobs:
test:
docker:
- image: circleci/rust:latest
steps:
- checkout
- run:
name: Run tests
command: cargo test
workflows:
version: 2
run-tests:
jobs:
- test
``` |
46c6fe19-3a88-443e-a681-f3b0180b93a4 | {
"language": "YAML"
} | ```yaml
version: 2
jobs:
test:
docker:
- image: circleci/php:5-node-browsers
steps:
- checkout
- restore_cache:
keys:
- composer-cache-v1-{{ .Branch }}-{{ checksum "composer.lock" }}
- composer-cache-v1-{{ .Branch }}-
- composer-cache-v1-
... | ```yaml
version: 2
jobs:
test:
docker:
- image: circleci/php:5-apache-node-browsers
steps:
- checkout
- restore_cache:
keys:
- composer-cache-v1-{{ .Branch }}-{{ checksum "composer.lock" }}
- composer-cache-v1-{{ .Branch }}-
- composer-cache-v1-... |
c0c841c1-dc65-4863-ab3e-ca1b8d66d00d | {
"language": "YAML"
} | ```yaml
version: 2
executorType: docker
jobs:
build:
docker:
- image: circleci/clojure:lein-2.8.1
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ .Branch }}-{{ .Revision }}
- run:
name: add lein voom
... | ```yaml
version: 2
executorType: docker
jobs:
test:
docker:
- image: circleci/clojure:lein-2.8.1
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- "{{ .Environment.CIRCLE_PROJECT_REPONAME }}-{{ checksum \"project.clj\" }}"
- run:
nam... |
6495275b-cd2c-4756-a7e4-cfe503e9d9c8 | {
"language": "YAML"
} | ```yaml
version: 2
jobs:
build:
docker:
- image: circleci/node:7.10
working_directory: ~/project/functions
steps:
- checkout:
path: ~/project
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest c... | ```yaml
version: 2
jobs:
build:
docker:
- image: circleci/node:7.10
working_directory: ~/project/functions
steps:
- checkout:
path: ~/project
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest c... |
5503cfdb-4940-4cdb-b2f4-d28ffc08456c | {
"language": "YAML"
} | ```yaml
version: 2
jobs:
checkout_code:
docker:
- image: circleci/node:lts
steps:
- checkout
- persist_to_workspace:
root: .
paths: .
javascript:
docker:
- image: circleci/node:lts
working_directory: ~/material-ui-pickers
steps:
- run: yarn lint... | ```yaml
version: 2
jobs:
checkout_code:
docker:
- image: circleci/node:lts
working_directory: ~/material-ui-pickers
steps:
- checkout
- persist_to_workspace:
root: .
paths: .
javascript:
docker:
- image: circleci/node:lts
working_directory: ~/material... |
bdb451d9-e418-4316-a1ef-cb85872f728e | {
"language": "YAML"
} | ```yaml
version: 2
jobs:
build:
docker:
- image: rikorose/gcc-cmake
working_directory: ~/MeadowsECS
steps:
- checkout
- run:
command: |
mkdir ~/build
mkdir -p ~/release/lib
mkdi... | ```yaml
version: 2
jobs:
build:
docker:
- image: rikorose/gcc-cmake
working_directory: ~/MeadowsECS
steps:
- checkout
- run:
command: |
mkdir ~/build
mkdir -p ~/release/lib
mkdi... |
8a5ee2be-bb07-49ed-923c-9bf8c18fc75a | {
"language": "YAML"
} | ```yaml
####
# Default job.
# This job simply defines the iOS image, some environment variables
# and stuff that all jobs should have
##
default: &defaultJob
# Set the xcode version this virtual machine will use
macos:
xcode: "10.1"
# We need to set this for RVM.
shell: /bin/bash --login
# Default workflow ... | ```yaml
####
# Default job.
# This job simply defines the iOS image, some environment variables
# and stuff that all jobs should have
##
default: &defaultJob
# Set the xcode version this virtual machine will use
macos:
xcode: "10.1.0"
# We need to set this for RVM.
shell: /bin/bash --login
# Default workflo... |
5666e2e2-5cbe-408e-9d8b-bf0481a6f5a2 | {
"language": "YAML"
} | ```yaml
version: 2.1
orbs:
hokusai: artsy/hokusai@0.3.0
jobs:
build-and-test:
docker:
- image: artsy/hokusai
steps:
- add_ssh_keys
- checkout
- setup_remote_docker
- run:
name: Test
command: COMMIT_HASH_FULL=$(git rev-parse HEAD) CODECOV_TOKEN=$CODECOV_TOK... | ```yaml
version: 2.1
orbs:
hokusai: artsy/hokusai@0.4.0
jobs:
build-and-test:
docker:
- image: artsy/hokusai
steps:
- add_ssh_keys
- checkout
- setup_remote_docker
- run:
name: Test
command: COMMIT_HASH_FULL=$(git rev-parse HEAD) CODECOV_TOKEN=$CODECOV_TOK... |
367f58fa-c72b-4ca8-9903-c12819a60758 | {
"language": "YAML"
} | ```yaml
version: 2.1
jobs:
"test":
parameters:
version:
type: string
default: "latest"
docker:
- image: "circleci/golang:<< parameters.version >>"
working_directory: /go/src/github.com/tyler-sommer/stick
environment:
GO111MODULE: "on"
steps:
- checkout
... | ```yaml
version: 2.1
jobs:
"test":
parameters:
version:
type: string
default: "latest"
docker:
- image: "cimg/go:<< parameters.version >>"
working_directory: /go/src/github.com/tyler-sommer/stick
environment:
GO111MODULE: "on"
steps:
- checkout
- run:... |
0f4fab74-fe64-43fb-ac7f-05f486f1c798 | {
"language": "YAML"
} | ```yaml
---
- name: Add Ruby ppa
apt_repository: repo="ppa:brightbox/ruby-ng" update_cache=yes
- name: Install Rubies + Dependencies
apt: name="{{ item }}" state=present force=yes
with_items:
- ruby2.2
- ruby2.0-dev
- ruby-dev
# For compiling ruby gems
- libreadline6
- libxslt-dev
- l... | ```yaml
---
- name: Add Ruby ppa
apt_repository: repo="ppa:brightbox/ruby-ng" update_cache=yes
- name: Install Rubies + Dependencies
apt: name="{{ item }}" state=present force=yes
with_items:
- ruby2.2
- ruby2.2-dev
# For compiling ruby gems
- libreadline6
- libxslt-dev
- libxml2-dev
... |
b4d995f2-cff2-49b3-81ad-7e0a6dd8aca3 | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/philopon/apiary
changelog-type: ''
hash: 5f3a36193ce1b35e77fcce26e33df0bff21b7ffcfd18bdac33f498acd0e4af22
test-bench-deps: {}
maintainer: Winter Han<drkoster@qq.com>
synopsis: redis support for apiary web framework.
changelog: ''
basic-deps:
base: ! '>=4.7 && <5.0'
apiary: ! '>=... | ```yaml
homepage: https://github.com/philopon/apiary
changelog-type: ''
hash: c604fa5bcefe997961f4721b00f6ad26352187a8870b93cd7f5841de38a7a605
test-bench-deps: {}
maintainer: Winter Han<drkoster@qq.com>
synopsis: redis support for apiary web framework.
changelog: ''
basic-deps:
base: ! '>=4.7 && <5.0'
apiary: ! '>=... |
50fc7133-1e9f-41ab-b741-ddccab20638b | {
"language": "YAML"
} | ```yaml
{%set name = "mccabe" %}
{%set version = "0.5.3" %}
{%set hash_type = "sha256" %}
{%set hash_val = "16293af41e7242031afd73896fef6458f4cad38201d21e28f344fff50ae1c25e" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ ... | ```yaml
{%set name = "mccabe" %}
{%set version = "0.6.1" %}
{%set hash_type = "sha256" %}
{%set hash_val = "dd8d182285a0fe56bace7f45b5e7d1a6ebcbf524e8f3bd87eb0f125271b8831f" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ ... |
3d9f7464-f9ae-4830-ad76-b3809264d234 | {
"language": "YAML"
} | ```yaml
homepage: http://github.com/argiopetech/linguistic-ordinals
changelog-type: ''
hash: b04a76b57c6b6933748e11630799733432a3c61e4649d6557fd90baa7efc888c
test-bench-deps: {}
maintainer: elliot.robinson@argiopetech.com
synopsis: Express Integral types as linguistic ordinals (1st, 2nd, 3rd, etc)
changelog: ''
basic-d... | ```yaml
homepage: http://github.com/argiopetech/linguistic-ordinals
changelog-type: ''
hash: c47a9c6c60f5b9b6b771799170bb65e9caf02a2138867665ee7f888206e5e13b
test-bench-deps: {}
maintainer: elliot.robinson@argiopetech.com
synopsis: Express Integral types as linguistic ordinals (1st, 2nd, 3rd, etc)
changelog: ''
basic-d... |
b23c110d-5c72-4dd9-9900-3b5e49b044ad | {
"language": "YAML"
} | ```yaml
main:
stack_name: aem-stack-manager-main-stack
stack_manager:
s3_prefix: stack-manager
purge:
live_snapshots:
schedule: '10 20 1/3 * ? *'
max_age_in_hours: 24
offline_snapshots:
schedule: '15 19 ? * SUN *'
max_age_in_hours: 168
orchestration_snapshots:
schedule: ... | ```yaml
permission_type: b
main:
stack_name: aem-stack-manager-main-stack
stack_manager:
s3_prefix: stack-manager
purge:
live_snapshots:
schedule: '10 20 1/3 * ? *'
max_age_in_hours: 24
offline_snapshots:
schedule: '15 19 ? * SUN *'
max_age_in_hours: 168
orchestration_snapsho... |
1bd3e9d6-f1e9-4b9a-bf55-7f6f24fc46d5 | {
"language": "YAML"
} | ```yaml
homepage: http://felsin9.de/nnis/ghc-datasize
changelog-type: ''
hash: c39bddd766dd29d1c669304b27c14d5f3836c8c6a0cf3fe9606a67cccc008497
test-bench-deps: {}
maintainer: Dennis Felsing <dennis@felsin9.de>
synopsis: Determine the size of data structures in GHC's memory
changelog: ''
basic-deps:
ghc-lib-parser-ex... | ```yaml
homepage: http://felsin9.de/nnis/ghc-datasize
changelog-type: ''
hash: 84a644c9395f5890e01ec6619c04d330cb194c132677cc45cc8d5a7192c3663b
test-bench-deps: {}
maintainer: Dennis Felsing <dennis@felsin9.de>
synopsis: Determine the size of data structures in GHC's memory
changelog: ''
basic-deps:
base: '>=4.12 && ... |
37ded6f7-d512-4de3-8fcd-cbe2bffabe02 | {
"language": "YAML"
} | ```yaml
homepage: ''
changelog-type: ''
hash: 23c9b8aae868a22df081c12335d42e96b9857043adeef2792bbd01d913918e4a
test-bench-deps: {}
maintainer: dev@jamesparker.me
synopsis: LMonad for Yesod integrates LMonad's IFC with Yesod web applications.
changelog: ''
basic-deps:
shakespeare: -any
yesod-core: -any
base: <5
... | ```yaml
homepage: ''
changelog-type: ''
hash: f76a8d884aa5a08ea05d8175ec8898c4765868e7fd020953a68a19d694af14b4
test-bench-deps: {}
maintainer: dev@jamesparker.me
synopsis: LMonad for Yesod integrates LMonad's IFC with Yesod web applications.
changelog: ''
basic-deps:
shakespeare: -any
yesod-core: -any
base: <5
... |
194786a9-1495-4fad-85f3-1f5c87ef5f61 | {
"language": "YAML"
} | ```yaml
homepage: ''
changelog-type: ''
hash: 431d900c4a2ead350eb66da8e6d6fcdba5cf9b4501962880da5f63b196ca2d4d
test-bench-deps: {}
maintainer: strake888@gmail.com
synopsis: Class of random value generation
changelog: ''
basic-deps:
base: ! '>=4.9 && <5'
util: ! '>=0.1.2 && <0.2'
transformers: -any
primitive: -a... | ```yaml
homepage: ''
changelog-type: ''
hash: d8a1ca0dc1e229c754936a292bc2a15b21427204347d19b2af16b86129ed7c82
test-bench-deps: {}
maintainer: strake888@gmail.com
synopsis: Class of random value generation
changelog: ''
basic-deps:
base: ! '>=4.9 && <5'
util: ! '>=0.1.2 && <0.2'
transformers: -any
primitive: -a... |
022cf7bf-01b5-4bd8-ae08-872ed75d2560 | {
"language": "YAML"
} | ```yaml
host: localhost
port: 8182
threadPoolWorker: 1
gremlinPool: 8
scriptEvaluationTimeout: 30000
serializedResponseTimeout: 30000
graphs: {
g: conf/tinkergraph-empty.properties}
use:
- [org.apache.commons, commons-math3, "3.2"]
scriptEngines: {
gremlin-groovy: {
imports: [com.tinkerpop.gremlin.tinkergraph... | ```yaml
host: localhost
port: 8182
threadPoolWorker: 1
gremlinPool: 8
scriptEvaluationTimeout: 30000
serializedResponseTimeout: 30000
graphs: {
g: conf/tinkergraph-empty.properties}
scriptEngines: {
gremlin-groovy: {
imports: [com.tinkerpop.gremlin.tinkergraph.structure.*, com.tinkerpop.gremlin.tinkergraph.proc... |
f5a85b9e-e61c-4812-ad88-88080bcaa080 | {
"language": "YAML"
} | ```yaml
steps:
- name: ":node:"
command: npm test
plugins:
- docker-compose#v2.5.1:
run: app
```
Update buildkite plugin docker-compose to v2.6.0 | ```yaml
steps:
- name: ":node:"
command: npm test
plugins:
- docker-compose#v2.6.0:
run: app
``` |
7798aa61-cbba-478a-912c-62c162479091 | {
"language": "YAML"
} | ```yaml
---
foreman_proxy::dhcp_range: '172.28.0.200 172.28.0.250'
foreman_proxy::dhcp_gateway: '172.28.0.10'
foreman_proxy::dhcp_nameservers: '172.28.0.10, 129.177.6.54'
foreman_proxy::dhcp_interface: 'eth0'
```
Enable dhcp on oob in test01 | ```yaml
---
foreman_proxy::dhcp_additional_interfaces: [ "%{::interface_oob1}" ]
``` |
941cb658-929c-4296-a88f-be4b6ed02808 | {
"language": "YAML"
} | ```yaml
---
# Use the UptimeRobot integration to watch if Home Assistant still
# is accessible from outside the network.
binary_sensor:
- platform: uptimerobot
api_key: !secret uptimerobot_api_key
automation:
- alias: Home Assistant Down
id: f885222d-cf69-43dd-bd13-f07f49014e48
description: >-
N... | ```yaml
---
# Use the UptimeRobot integration to watch if Home Assistant still
# is accessible from outside the network.
binary_sensor:
- platform: uptimerobot
api_key: !secret uptimerobot_api_key
automation:
- alias: Home Assistant Down
id: f885222d-cf69-43dd-bd13-f07f49014e48
description: >-
N... |
f3b9707d-c7d8-40ff-81a6-d2f31f62ee71 | {
"language": "YAML"
} | ```yaml
homepage: https://bitbucket.org/dpwiz/raven-haskell
changelog-type: ''
hash: 40562abc0a4dd3420077e11e789f080eaf4d651d5af31c43b111d7ce73406677
test-bench-deps:
bytestring: -any
base: -any
unordered-containers: -any
hspec: -any
raven-haskell: -any
aeson: -any
maintainer: aenor.realm@gmail.com
synopsis... | ```yaml
homepage: https://bitbucket.org/dpwiz/raven-haskell
changelog-type: ''
hash: 47986c658b4352cdab3a42304e97fc8ff551952d9c4608b584796f9ba8c459eb
test-bench-deps:
bytestring: -any
base: -any
unordered-containers: -any
hspec: -any
raven-haskell: -any
aeson: -any
maintainer: aenor.realm@gmail.com
synopsis... |
6721efbf-4d0d-4e4b-a49e-bcfab30ae6af | {
"language": "YAML"
} | ```yaml
---
ruby_versions:
- "2.2.2"
- "2.3.0"
ruby_brew_packages:
- name: rbenv
- name: rbenv-bundler
- name: rbenv-default-gems
- name: ruby-build
ruby_global: "2.2.2"
ruby_global_file: "{{ home_dir + '/.rbenv/version' }}"
ruby_versions:
- "{{ ruby_global }}"
ruby_gems:
- bundler
- rubocop
```
Rem... | ```yaml
---
ruby_brew_packages:
- name: rbenv
- name: rbenv-bundler
- name: rbenv-default-gems
- name: ruby-build
ruby_global: "2.2.2"
ruby_global_file: "{{ home_dir + '/.rbenv/version' }}"
ruby_versions:
- "{{ ruby_global }}"
- "2.2.2"
- "2.3.0"
ruby_gems:
- bundler
- rubocop
``` |
f930ab1c-015b-439e-aaa3-8345c64cf47d | {
"language": "YAML"
} | ```yaml
image: ruby:1.9
environment:
- JENKINS_URL
- BUILD_NUMBER
- COVERAGE
- CODECLIMATE_REPO_TOKEN
- COVERALLS_REPO_TOKEN
- GIT_COMMIT
- GIT_BRANCH
- GIT_SSH_KEY
- GIT_AUTHOR_NAME
- GIT_AUTHOR_EMAIL
- RUBYGEMS_API_KEY
targets:
build:
- bundle install --path=vendor/bundle
- bundle ex... | ```yaml
image: ruby:1.9
environment:
- JENKINS_URL
- BUILD_NUMBER
- COVERAGE
- CODECLIMATE_REPO_TOKEN
- COVERALLS_REPO_TOKEN
- GIT_COMMIT
- GIT_BRANCH
- GIT_SSH_KEY
- GIT_AUTHOR_NAME
- GIT_AUTHOR_EMAIL
- RUBYGEMS_API_KEY
targets:
build:
- bundle install --path=vendor/bundle
- bundle ex... |
ef18a16a-fc52-4b67-b9ea-6c608bce06fb | {
"language": "YAML"
} | ```yaml
# Main site top navigation menu
-
# If a first level menu item isn't a dropdown menu, you can give it just an
# id to link it straight to a page or an id, title and path to link to a relative url
title: Installation
id: install
path: "https://www.github.com/spinnaker/spinnaker"
-
title: Guides
ch... | ```yaml
# Main site top navigation menu
-
# If a first level menu item isn't a dropdown menu, you can give it just an
# id to link it straight to a page or an id, title and path to link to a relative url
title: Overview
id: overview
-
title: Guides
children:
- getting_started
- developer_guide
-
... |
9bea1a6b-48d8-402f-a325-6e1381b2f09e | {
"language": "YAML"
} | ```yaml
---
openstack:
auth_url: http://127.0.0.1:5000/v2.0/tokens
username: foo
api_key: bar
tenant: bosh
region:
default_key_name: default
default_security_groups: ["default"]
registry:
endpoint: http://127.0.0.1:25695
user: admin
password: admin
```
Add endpoint_type to sample config file | ```yaml
---
openstack:
auth_url: http://127.0.0.1:5000/v2.0/tokens
username: foo
api_key: bar
tenant: bosh
region:
endpoint_type: publicURL
default_key_name: default
default_security_groups: ["default"]
registry:
endpoint: http://127.0.0.1:25695
user: admin
password: admin
``` |
ee79b0f7-c356-4248-9e22-7f1dd3ffeb3e | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/clintonmead/atomic-file-ops#readme
changelog-type: ''
hash: 7f9f0e2458379445adc4c35baa020814ada8fd3641197eadaf8ecae2192041e1
test-bench-deps: {}
maintainer: clintonmead@gmail.com
synopsis: Functions to atomically write to files
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
io-... | ```yaml
homepage: https://github.com/clintonmead/atomic-file-ops#readme
changelog-type: ''
hash: b042a7dafb15873c1ddb2ff78efc7576bcfe845e06cc3a3399ace2e39f9e68a8
test-bench-deps: {}
maintainer: clintonmead@gmail.com
synopsis: Functions to atomically write to files
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
io-... |
479a872a-28ae-4c51-8a65-07bef554f97f | {
"language": "YAML"
} | ```yaml
# This file is part of sbpipe.
#
# sbpipe is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# sbpipe is distributed in t... | ```yaml
# This file is part of sbpipe.
#
# sbpipe is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# sbpipe is distributed in t... |
fd9e1c1e-9cf2-4a28-9e99-d332b6ff73f0 | {
"language": "YAML"
} | ```yaml
- project:
templates:
- check-requirements
- openstack-lower-constraints-jobs
- openstack-python3-wallaby-jobs
- publish-openstack-docs-pti
check:
jobs:
- ec2api-tempest-plugin-functional
gate:
queue: ec2-api
jobs:
- ec2api-tempest-plugin-fun... | ```yaml
- project:
templates:
- check-requirements
- openstack-lower-constraints-jobs
- openstack-python3-xena-jobs
- publish-openstack-docs-pti
check:
jobs:
- ec2api-tempest-plugin-functional
gate:
queue: ec2-api
jobs:
- ec2api-tempest-plugin-functi... |
0d2042c4-0931-45ba-b3c3-ed793e541717 | {
"language": "YAML"
} | ```yaml
- project:
templates:
- check-requirements
- lib-forward-testing
- lib-forward-testing-python3
- openstack-cover-jobs
- openstack-lower-constraints-jobs
- openstack-python-jobs
- openstack-python35-jobs
- openstack-python36-jobs
- periodic-stable-jobs
... | ```yaml
- project:
templates:
- check-requirements
- lib-forward-testing
- lib-forward-testing-python3
- openstack-cover-jobs
- openstack-lower-constraints-jobs
- openstack-python-jobs
- openstack-python36-jobs
- openstack-python37-jobs
- periodic-stable-jobs
... |
ea51fd02-ecaa-409b-ba7d-8bbdba15c272 | {
"language": "YAML"
} | ```yaml
- job:
name: senlinclient-functional
parent: devstack-tox-functional
required-projects:
- openstack/python-senlinclient
- openstack/senlin
vars:
openrc_enable_export: true
devstack_plugins:
senlin: https://opendev.org/openstack/senlin
devstack_local_conf:
... | ```yaml
- job:
name: senlinclient-functional
parent: devstack-tox-functional
required-projects:
- openstack/python-senlinclient
- openstack/senlin
vars:
openrc_enable_export: true
devstack_plugins:
senlin: https://opendev.org/openstack/senlin
devstack_local_conf:
... |
508f5e3d-fc31-41e2-ad02-68d7eeb61dbe | {
"language": "YAML"
} | ```yaml
- project:
templates:
- check-requirements
- horizon-non-primary-django-jobs
- openstack-python3-yoga-jobs
- release-notes-jobs-python3
```
Add Python3 zed unit tests | ```yaml
- project:
templates:
- check-requirements
- horizon-non-primary-django-jobs
- openstack-python3-zed-jobs
- release-notes-jobs-python3
``` |
bc5cf3d4-4437-49c0-8ef5-7b13f13f2a77 | {
"language": "YAML"
} | ```yaml
default:
packages:
- vim
- git
- postgresql
package_install_cmd: "yum install -y"
files:
-
path: '/home/vagrant/README'
content: >
# This system is provisioned by Sokan
# ===================================
```
Remove install command from example configurati... | ```yaml
default:
packages:
- vim
- git
- postgresql
files:
-
path: '/home/vagrant/README'
content: >
# This system is provisioned by Sokan
# ===================================
``` |
b959544e-cc83-4def-8027-b3693a7b8c96 | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/haskell-foundation/foundation-edge
changelog-type: ''
hash: dd399fb6c233c4a239d207eb1d69f4c666a3ece2c00936883607bbada45c8507
test-bench-deps: {}
maintainer: vincent@snarc.org
synopsis: foundation's edge with the conventional set of packages
changelog: ''
basic-deps:
bytestring: -a... | ```yaml
homepage: https://github.com/haskell-foundation/foundation
changelog-type: ''
hash: ae2133074cb651379c101697a71fa0d3693d8780687c8ec8a13cb98c1fb48d7f
test-bench-deps: {}
maintainer: vincent@snarc.org
synopsis: foundation's edge with the conventional set of packages
changelog: ''
basic-deps:
bytestring: -any
... |
ee2475cd-d52d-48f2-b10f-f457a2159767 | {
"language": "YAML"
} | ```yaml
---
profile::development::network::dns::manage_hosts: true
profile::application::himlarcli::cacert: '/opt/himlar/provision/ca/intermediate/certs/ca-chain.cert.pem'
profile::application::himlarcli::smtp: ''
profile::application::himlarcli::from_addr: ''
profile::openstack::openrc::cacert: ... | ```yaml
---
profile::development::network::dns::manage_hosts: true
profile::application::himlarcli::cacert: '/opt/himlar/provision/ca/intermediate/certs/ca-chain.cert.pem'
profile::application::himlarcli::smtp: ''
profile::application::himlarcli::from_addr: ''
profile::openstack::openrc::cacert: ... |
c1c3dcaa-9b2f-4681-b611-65162b27cea5 | {
"language": "YAML"
} | ```yaml
- job-template:
name: '{name}-pypi-upload'
node: pypi
triggers:
- zuul-post
builders:
- shell: |
#!bin/bash -xe
TAG=`echo $ZUUL_REF | sed 's/^refs.tags.//'`
FILENAME="{name}-$TAG.tar.gz"
rm -rf *tar.gz
curl -o $FILENAME http://{tar... | ```yaml
- job-template:
name: '{name}-pypi-upload'
node: pypi
triggers:
- zuul-post
builders:
- shell: |
#!/bin/bash -xe
TAG=`echo $ZUUL_REF | sed 's/^refs.tags.//'`
FILENAME="{name}-$TAG.tar.gz"
rm -rf *tar.gz
curl -o $FILENAME http://{ta... |
5bf1f9b6-4346-4438-8cd3-8f54f8a98e28 | {
"language": "YAML"
} | ```yaml
homepage: ''
changelog-type: ''
hash: 8c2aa031395bd945ab93409baaab123eb720ecd1c79b73b2be795dd8c6a32ca5
test-bench-deps:
logging-facade: -any
base: ==4.*
hspec: ==2.*
logsink: -any
maintainer: Simon Hengel <sol@typeful.net>
synopsis: A logging framework for Haskell
changelog: ''
basic-deps:
logging-fac... | ```yaml
homepage: ''
changelog-type: ''
hash: 5ef60600a251bb1250a11f0130b5d0a166ce3b58b3b283aa206f5dffbc0bc6d8
test-bench-deps:
logging-facade: -any
base: ==4.*
hspec: ==2.*
logsink: -any
maintainer: Simon Hengel <sol@typeful.net>
synopsis: A logging framework for Haskell
changelog: ''
basic-deps:
logging-fac... |
b4d50d51-f9ac-487e-afe4-5583d484f33d | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/AshleyYakeley/witness
changelog-type: ''
hash: c807cfd70ea05a12f3599cfaf387e80a534e1c3f4c377f7e952f47963af29cb8
test-bench-deps: {}
maintainer: Ashley Yakeley <ashley@semantic.org>
synopsis: values that witness types
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
constraints: -... | ```yaml
homepage: https://github.com/AshleyYakeley/witness
changelog-type: ''
hash: 1fb17e6257589e8c3f3c5dc839d09ab312a576ca5d3d75d1ba69f8783257acac
test-bench-deps: {}
maintainer: Ashley Yakeley <ashley@semantic.org>
synopsis: values that witness types
changelog: ''
basic-deps:
semigroupoids: -any
base: ! '>=4.7 &... |
d1d4403d-f959-4588-9621-2363e5c7ae47 | {
"language": "YAML"
} | ```yaml
development:
sessions:
default:
database: govuk_assets_development
hosts:
- localhost:27017
options:
write:
w: 1
read: primary
test:
sessions:
default:
database: govuk_assets_test
hosts:
- localhost:27017
options:
... | ```yaml
development:
sessions:
default:
uri: mongodb://localhost/govuk_assets_development
options:
write:
w: 1
read: primary
test:
sessions:
default:
uri: mongodb://localhost/govuk_assets_test
options:
write:
w: 1
read: primary
... |
92d92b94-986a-4e99-bf3d-de03d91fd701 | {
"language": "YAML"
} | ```yaml
development:
clients:
default:
# MONGODB_URI includes draft_content_store_development or content_store_development
# depending on whether we're running content store in draft mode or not.
uri: <%= ENV['MONGODB_URI'] || 'mongodb://localhost/content_store_development' %>
options:
... | ```yaml
development:
clients:
default:
# MONGODB_URI includes draft_content_store_development or content_store_development
# depending on whether we're running content store in draft mode or not.
uri: <%= ENV['MONGODB_URI'] || 'mongodb://localhost/content_store_development' %>
options:
... |
b05aaf56-e81b-4f47-b424-62b31501000e | {
"language": "YAML"
} | ```yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: >
Creates a wildcafrd ACM certificate for the standard VPC created by the root
stack (eg *.vpc-af124354.prx.tech)
Parameters:
VPC:
Type: String
Resources:
VpcCertificate:
Type: "AWS::CertificateManager::Certificate"
Properties:
Domai... | ```yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: >
Creates a wildcafrd ACM certificate for the standard VPC created by the root
stack (eg *.vpc-af124354.prx.tech)
Parameters:
VPC:
Type: String
Resources:
VpcCertificate:
Type: "AWS::CertificateManager::Certificate"
Properties:
Domai... |
86c15be8-672a-47f3-8e38-275510bfdb9e | {
"language": "YAML"
} | ```yaml
- defaults:
link:
# Create parent directories when they do not exist
create: true
# Relink old symlinks when they are changed
relink: true
# Use '*' as a shell wildcard, link everything that matches
glob: true
# Directories to be checked for broken symlinks
- clean: ['~'... | ```yaml
- defaults:
link:
# Create parent directories when they do not exist
create: true
# Relink old symlinks when they are changed
relink: true
# Use '*' as a shell wildcard, link everything that matches
glob: true
# Directories to be checked for broken symlinks
- clean: ['~'... |
e57a4857-aa7b-4afe-ad8e-9a3f766f9522 | {
"language": "YAML"
} | ```yaml
name: Validations
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
LC_CTYPE: en_US.UTF-8
LANG: en_US.UTF-8
jobs:
validate-cocoapods:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- run: ./Scripts/ci-select-xcode.sh
- run: pod lib li... | ```yaml
name: Validations
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
LC_CTYPE: en_US.UTF-8
LANG: en_US.UTF-8
jobs:
validate-cocoapods:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- run: ./Scripts/ci-select-xcode.sh
- run: pod lib li... |
12fab743-db4a-46aa-9dbb-c6091511836c | {
"language": "YAML"
} | ```yaml
on:
push:
branches:
- 'spec-test-*'
paths-ignore:
- 'CHANGELOG.md'
- 'website/**'
jobs:
spec-tests:
if: github.repository == 'hashicorp/vagrant'
runs-on: self-hosted
strategy:
matrix:
host_os: ["hashicorp/bionic64"]
guest_os: ["hashicorp/bionic64"... | ```yaml
on:
push:
branches:
- 'spec-test-*'
paths-ignore:
- 'CHANGELOG.md'
- 'website/**'
jobs:
spec-tests:
if: github.repository == 'hashicorp/vagrant'
runs-on: self-hosted
strategy:
matrix:
host_os: ["hashicorp/bionic64"]
guest_os: ["hashicorp/bionic64"... |
3820f282-4a16-4641-905d-943d8e05453b | {
"language": "YAML"
} | ```yaml
- project:
templates:
- check-requirements
- lib-forward-testing-python3
- openstack-python3-yoga-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
```
Add Python3 zed unit tests | ```yaml
- project:
templates:
- check-requirements
- lib-forward-testing-python3
- openstack-python3-zed-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
``` |
2d61b8e7-6853-4585-b02f-7428d2d8abbe | {
"language": "YAML"
} | ```yaml
# This file is used as part of a matrix build in Jenkins where the
# values below are included as an axis of the matrix.
# This axis of the build matrix represents the versions of Java on
# which Elasticsearch will be tested. Valid Java versions are 'java'
# or 'openjdk' followed by the major release number.
... | ```yaml
# This file is used as part of a matrix build in Jenkins where the
# values below are included as an axis of the matrix.
# This axis of the build matrix represents the versions of Java on
# which Elasticsearch will be tested. Valid Java versions are 'java'
# or 'openjdk' followed by the major release number.
... |
772ff666-fa41-4e47-aa81-cb72a536ef39 | {
"language": "YAML"
} | ```yaml
name: Node CI
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 10.x
- name: Next.js Build
run: |
yarn install
yarn run build
lin... | ```yaml
name: Node CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 10.x
- name: Install
run: yarn install
- name: Next.js Build
run: yarn build
- name: ESLint
... |
06d5f265-1e66-49d5-88d6-3818f03322c9 | {
"language": "YAML"
} | ```yaml
name: Verify
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
test:
runs-on: ubuntu-16.04
timeout-minutes: 40
strategy:
fail-fast: true
matrix:
ruby:
- 2.5
- 2.6
- 2.7
- 3.0
env:
RAILS_EN... | ```yaml
name: Verify
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
test:
runs-on: ubuntu-18.04
timeout-minutes: 40
strategy:
fail-fast: true
matrix:
ruby:
- 2.5
- 2.6
- 2.7
- 3.0
env:
RAILS_EN... |
1044db94-0705-409e-82aa-3854985bb783 | {
"language": "YAML"
} | ```yaml
- name: provision test keypair
hosts: local
connection: local
vars_files:
- ../../vars/main.yml
tasks:
- name: create the keypair
register: test_keypair
local_action: nova_keypair name={{ test_keypair_name }} state=present
- name: persist the keypair
shell: echo "{{ test_keyp... | ```yaml
- name: provision test keypair
hosts: local
connection: local
vars_files:
- ../../vars/main.yml
tasks:
- name: create the keypair
register: test_keypair
local_action: nova_keypair name={{ test_keypair_name }} state=present
- name: persist the keypair
shell: OLD_UMASK=`umask`;... |
458509d6-ece1-4d1c-ae1d-ec7b0dfe8519 | {
"language": "YAML"
} | ```yaml
---
platforms:
ubuntu1404:
run_targets:
- "@yarn//:yarn"
build_targets:
- "..."
test_flags:
- "--test_tag_filters=-browser:Chrome"
test_targets:
- "..."
ubuntu1604:
run_targets:
- "@yarn//:yarn"
build_targets:
- "..."
test_flags:
- "--test_tag_filters=... | ```yaml
---
platforms:
ubuntu1404:
run_targets:
- "@yarn//:yarn"
build_targets:
- "..."
test_flags:
- "--test_tag_filters=-browser:Chrome"
test_targets:
- "..."
ubuntu1604:
run_targets:
- "@yarn//:yarn"
build_targets:
- "..."
test_flags:
- "--test_tag_filters=... |
a512ef44-830d-419f-9556-441b76702847 | {
"language": "YAML"
} | ```yaml
- name: Test the use-cached-repos role
hosts: all
roles:
- role: use-cached-repos
post_tasks:
# openstack-infra/project-config is in 'required-projects'.
# openstack-infra/opentack-zuul-jobs is also implicitly in 'projects'.
# We're checking them explicitly rather than with_items on zuul.p... | ```yaml
- name: Test the use-cached-repos role
hosts: all
roles:
- role: use-cached-repos
post_tasks:
# openstack-infra/project-config is in 'required-projects'.
# Also check that the project being tested is being prepared.
# We're checking them explicitly rather than with_items on zuul.projects
... |
be4773e9-db25-42cb-bd4d-3e7b6613e71f | {
"language": "YAML"
} | ```yaml
```
Add the most important settings to set when using ES by default to the configuration | ```yaml
# Cluster Settings
#cluster:
# name: elasticsearch
# Gateway Settings
#gateway:
# recover_after_nodes: 1
# recover_after_time: 5m
# expected_nodes: 2
``` |
74318bdf-7855-4096-9d8f-32391b5b9f96 | {
"language": "YAML"
} | ```yaml
---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: document
path: _data/nav.yml
label: 文档
- type: heading
label: 博客
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
upload_dir: uploads
public_path: "/uploads"
front_... | ```yaml
---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: document
path: _data/nav.yml
label: 文档
- type: heading
label: 博客
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
upload_dir: uploads
public_path: "/uploads"
front_... |
7671e194-4743-43db-8e18-5303eb6f68d1 | {
"language": "YAML"
} | ```yaml
# GitLab Serverless template
image: alpine:latest
stages:
- build
- test
- deploy
.serverless:build:image:
stage: build
image: registry.gitlab.com/gitlab-org/gitlabktl:latest
script: /usr/bin/gitlabktl app build
.serverless:deploy:image:
stage: deploy
image: gcr.io/triggermesh/tm@sha256:3cfd... | ```yaml
# GitLab Serverless template
image: alpine:latest
stages:
- build
- test
- deploy
.serverless:build:image:
image: registry.gitlab.com/gitlab-org/gitlabktl:latest
stage: build
script: /usr/bin/gitlabktl app build
.serverless:deploy:image:
image: registry.gitlab.com/gitlab-org/gitlabktl:latest
... |
941cadb2-42b9-4db3-b8ae-40c87f5a575f | {
"language": "YAML"
} | ```yaml
on:
pull_request_target:
types: [labeled, unlabeled, opened, synchronize, reopened, ready_for_review]
paths:
- "*/ql/src/**/*.ql"
- "*/ql/src/**/*.qll"
- "!**/experimental/**"
jobs:
check-change-note:
runs-on: ubuntu-latest
steps:
- name: Check if change note file is... | ```yaml
on:
pull_request_target:
types: [labeled, unlabeled, opened, synchronize, reopened, ready_for_review]
paths:
- "*/ql/src/**/*.ql"
- "*/ql/src/**/*.qll"
- "!**/experimental/**"
jobs:
check-change-note:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- ... |
4a056801-99d3-4ad4-8fd3-027384eb324c | {
"language": "YAML"
} | ```yaml
class_of_individuals: omni4d.core.persons
# Identification and Naming Pattern
class_of_individuals: omni4d.core.character_strings
class_of_individuals: omni4d.core.identifiers
class_of_individuals: omni4d.core.names
class_member_tuple: c8696a7c-db68-431a-bd51-100fd1804ec2
objects: [omni4d.core.character_stri... | ```yaml
omni4d.core.persons:
type: class_of_individuals
omni4d.core.character_strings:
type: class_of_individuals
omni4d.core.identifiers:
type: class_of_individuals
c8696a7c-db68-431a-bd51-100fd1804ec2:
type: whole_part_tuple'
objects: [omni4d.core.character_strings, omni4d.core.identifiers]
omni4d.core.n... |
069e4f96-4ae5-4377-8e94-26e0740c74c8 | {
"language": "YAML"
} | ```yaml
steps:
#
# Extract the cache
#
# The gradle build cache is stored as a tarball in Google Cloud Storage to
# make builds faster.
#
# After extracting the cache to the /build_cache directory, we need to supply
# that to gradle, and include the volume in steps that require the cache.
#
- name: gcr.io/cloud-builde... | ```yaml
steps:
#
# Extract the cache
#
# The gradle build cache is stored as a tarball in Google Cloud Storage to
# make builds faster.
#
# After extracting the cache to the /build_cache directory, we need to supply
# that to gradle, and include the volume in steps that require the cache.
#
- name: gcr.io/cloud-builde... |
51395cd7-20ab-41fa-8fde-9cc12d4d1ad6 | {
"language": "YAML"
} | ```yaml
## Authorizations
# Uncomment out the merging for each environment that you'd like to include.
# You can also just copy and paste the tree (do not include the "authorizations") to each
# environment if you need something different per enviornment.
authorizations: &AUTHORIZATIONS
allow_unauthenticated_bind: fa... | ```yaml
## Authorizations
# Uncomment out the merging for each environment that you'd like to include.
# You can also just copy and paste the tree (do not include the "authorizations") to each
# environment if you need something different per enviornment.
authorizations: &AUTHORIZATIONS
allow_unauthenticated_bind: fa... |
bc97d786-7e46-4dcb-a357-ea0fdde7f3c7 | {
"language": "YAML"
} | ```yaml
# Comment to be posted to on first time issues
newIssueWelcomeComment: >
Hello and welcome to the Oni repository! Thanks for opening your first issue here. To help us out, please make sure to include as much detail as possible - including screenshots and logs, if possible.
backers:
- 78856
- 1359421
- 4650931... | ```yaml
# Comment to be posted to on first time issues
newIssueWelcomeComment: >
Hello and welcome to the Oni repository! Thanks for opening your first issue here. To help us out, please make sure to include as much detail as possible - including screenshots and logs, if possible.
backers:
- 78856
- 1359421
- 4650931... |
591e9990-2d1d-402c-ba78-1f6a87c0af39 | {
"language": "YAML"
} | ```yaml
name: "build-n-test"
resources:
containers:
- container: build-golang-1.12-alpine
image: golang:1.12-alpine
trigger:
branches:
include:
- "feature/rewrite"
jobs:
- job: "PR"
strategy:
parallel: 1
pool:
vmImage: "ubuntu-16.04"
container: "build-golang-1.12-alpine... | ```yaml
name: "build-n-test"
resources:
containers:
- container: build-golang-1.12-alpine
image: golang:1.12-alpine
trigger:
branches:
include:
- "feature/rewrite"
jobs:
- job: "PR"
strategy:
parallel: 1
pool:
vmImage: "ubuntu-16.04"
container: "build-golang-1.12-alpine... |
1dca0fc7-f9f1-4786-a04b-cbc35e0b91db | {
"language": "YAML"
} | ```yaml
{% set name = "beautifulsoup4" %}
{% set version = "4.5.3" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
md5: 937e0df0d699a1237646f38fd567f0c6
build:
num... | ```yaml
{% set name = "beautifulsoup4" %}
{% set version = "4.6.0" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
md5: c17714d0f91a23b708a592cb3c697728
build:
num... |
5c6fb68a-c1ad-4e2c-8b1d-230159b85191 | {
"language": "YAML"
} | ```yaml
{% set name = "FLAML" %}
{% set version = "0.6.6" %}
package:
name: {{ name|lower }}
version: {{ version }}
build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install --no-deps https://files.pythonhosted.org/packages/b0/b5/d0001c3d3e335aba4b72590546e3a6bc5f13e182aa31cc2693558153b491/{{ nam... | ```yaml
{% set name = "FLAML" %}
{% set version = "0.6.6" %}
package:
name: {{ name|lower }}
version: {{ version }}
build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install --no-deps https://files.pythonhosted.org/packages/b0/b5/d0001c3d3e335aba4b72590546e3a6bc5f13e182aa31cc2693558153b491/{{ nam... |
ab2b78dd-7549-4442-9b38-c2f90c0452b1 | {
"language": "YAML"
} | ```yaml
- name: Create dedicated steam user
user:
name: steam
create_home: True
- name: Install dependencies
yum:
name: "{{ item }}"
loop:
- glibc.i686
- libstdc++.i686
- unzip
- dos2unix
- patch
- git
- tar
- name: Create main Steam directory
file:
path: '{{ steam_home }}/Steam'... | ```yaml
- name: Create dedicated steam user
user:
name: steam
create_home: True
- name: Install dependencies
yum:
name: "{{ item }}"
loop:
- glibc.i686
- libstdc++.i686
- unzip
- dos2unix
- patch
- git
- tar
- name: Create main Steam directory
file:
path: '{{ steam_home }}/Steam'... |
84ce0a95-ee45-4b80-9c05-b1a2f7375a2d | {
"language": "YAML"
} | ```yaml
Categories:
- Internet
License: ISC
AuthorName: Chris Howey
AuthorEmail: chris@howey.me
AuthorWebSite: https://chris.howey.me/
SourceCode: https://github.com/howeyc/crocgui
IssueTracker: https://github.com/howeyc/crocgui/issues
AutoName: Croc
RepoType: git
Repo: https://github.com/howeyc/crocgui.git
Builds... | ```yaml
Categories:
- Internet
License: ISC
AuthorName: Chris Howey
AuthorEmail: chris@howey.me
AuthorWebSite: https://chris.howey.me/
SourceCode: https://github.com/howeyc/crocgui
IssueTracker: https://github.com/howeyc/crocgui/issues
AutoName: Croc
RepoType: git
Repo: https://github.com/howeyc/crocgui.git
Builds... |
f9472240-99f6-4a52-aa74-3374fc7afa90 | {
"language": "YAML"
} | ```yaml
framework:
secret: test
csrf_protection:
enabled: true
router: { resource: "%kernel.root_dir%/%kernel.test_case%/routing.yml" }
validation: { enabled: true, enable_annotations: true }
form: ~
test: ~
default_locale: en
session:
storage_id: ses... | ```yaml
framework:
secret: test
csrf_protection:
enabled: true
router: { resource: "%kernel.root_dir%/%kernel.test_case%/routing.yml" }
validation: { enabled: true, enable_annotations: true }
assets: ~
form: ~
test: ~
default_locale: en
session:
stora... |
e83c182f-ac38-4533-b623-093e7c0af145 | {
"language": "YAML"
} | ```yaml
language: clojure
lein: lein
script: "lein do compile, spec"
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
- oraclejdk9
```
Update JVMs based on what's available | ```yaml
language: clojure
lein: lein
script: "lein do compile, spec"
addons:
apt:
packages:
- openjdk-6-jdk
jdk:
- openjdk6
- openjdk7
- openjdk8
- oraclejdk8
- oraclejdk9
- oraclejdk11
``` |
da1f29e3-a2ec-40ba-969e-f44cff101bdf | {
"language": "YAML"
} | ```yaml
jdk: oraclejdk8
language: scala
matrix:
include:
- scala: 2.12.8
- scala: 2.13.0-M5
script:
# TODO scalatags for Scala 2.13.0-M4
- sbt "++ ${TRAVIS_SCALA_VERSION}!" test
```
Use SDKMAN to install openjdk that is more robust on Travis update | ```yaml
language: scala
before_install:
# adding $HOME/.sdkman to cache would create an empty directory, which interferes with the initial installation
- "[[ -d $HOME/.sdkman/bin ]] || rm -rf $HOME/.sdkman/"
- curl -sL https://get.sdkman.io | bash
- echo sdkman_auto_answer=true > "$HOME/.sdkman/etc/config"
-... |
f7ec4652-b94b-4046-83c3-1103e9b98762 | {
"language": "YAML"
} | ```yaml
language: node_js
sudo: false
after_success:
- if [[ "$TRAVIS_BRANCH" == "master" ]]; then bash .travis/deploy.sh; fi
```
Use Node 10 to build and lints | ```yaml
language: node_js
node_js: 10
sudo: false
after_success:
- if [[ "$TRAVIS_BRANCH" == "master" ]]; then bash .travis/deploy.sh; fi
``` |
6f69a668-9e11-4da1-ac35-a393519f2bf7 | {
"language": "YAML"
} | ```yaml
language: objective-c
osx_image: xcode8
script:
- set -o pipefail
- git submodule update --init --recursive
- xcodebuild -project JWT.xcodeproj -scheme JWT-OSX test -sdk macosx | xcpretty -c
- pod lib lint --quick
```
Build and test on all supported platforms | ```yaml
os:
- linux
- osx
language: generic
sudo: required
dist: trusty
osx_image: xcode8.3
env:
- SWIFT_VERSION=3.1.1
install:
- eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c0475ff02b7c7671d2a/raw/9f442512a46d7a2af7b850d65a7e9bd31edfb09b/swiftenv-install.sh)"
- git submodule update --init --recursive
sc... |
5bad050e-e67c-4a6a-9b44-431ed98ca336 | {
"language": "YAML"
} | ```yaml
language: python
python: '2.7'
sudo: false
branches:
only:
- master
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
addons:
firefox: '28.0'
install:
- pip install -r test_requirements.txt
- pip install -r requirements.txt
- pip install -r doc_requirements.txt
- ./scripts/install_brow... | ```yaml
language: python
python: '2.7'
sudo: false
branches:
only:
- master
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
addons:
firefox: '42.0'
install:
- pip install -r test_requirements.txt
- pip install -r requirements.txt
- pip install -r doc_requirements.txt
- ./scripts/install_brow... |
78061530-6a18-461c-94b6-f20db3fcd391 | {
"language": "YAML"
} | ```yaml
branches:
except:
- servo
env:
global:
- secure: ONY+Bnbox9d5fHcSbYd4/G2cx6IprfyH6GP6BWd6zazFTdmYc4X754FUUM1Po0Rj+2JX97Mvj5oBKahT7r+SyxiixqAjHHHqNWni3RKVodA7lhtXudHW03K05lkyHwtW7ayJbWxPG28xPYkAwNrUHHuJng483iNiG78YTeKrpN0=
language: rust
script:
- mkdir build
- cd build
- ../configure
- ... | ```yaml
branches:
except:
- servo
env:
global:
- secure: uytPp0Fs+LT3QDEhDM3LJWiLvT2AHbdWnXrPEs+bYshQwt9wST+KQnYLyRfBuGg2ux3pkZwsRUFexvN8pQ3ab4aU2P21Xo98TzdXRwXurNYePgk/3tykEH+JrL52DfjCWB1VsjzzFrP02XU0XtB30qWC/n+fxeMWT7JT2GVh/OE=
language: rust
script:
- mkdir build
- cd build
- ../configure
- ... |
4c6ded1f-6259-4546-828a-3141f5b97d1a | {
"language": "YAML"
} | ```yaml
sudo: false
language: python
python:
- "3.5"
env:
- TOXENV=py27-django18-normal,py33-django18-normal
- TOXENV=py27-django18-custom,py33-django18-custom
- TOXENV=py27-django19-normal,py34-django19-normal
- TOXENV=py27-django19-custom,py34-django19-custom
- TOXENV=py27-django110-normal,py34-django1... | ```yaml
sudo: false
language: python
python:
- "3.5"
env:
- TOXENV=py27-django18-normal,py33-django18-normal
- TOXENV=py27-django18-custom,py33-django18-custom
- TOXENV=py27-django19-normal,py34-django19-normal
- TOXENV=py27-django19-custom,py34-django19-custom
- TOXENV=py27-django110-normal,py34-django1... |
704a1908-0476-4c91-912c-68c4b519daba | {
"language": "YAML"
} | ```yaml
---
brew_taps: []
npm_packages:
- dockerlint
- eslint
- yaml-js
- csslint
brew_packages:
- node
cask_packages:
- atom
- font-inconsolata
- font-source-code-pro
- font-sauce-code-powerline
atom_packages:
- atom-terminal
- atomatigit
- trailing-spaces
- auto-detect-indentation
- highli... | ```yaml
---
brew_taps: []
npm_packages:
- dockerlint
- eslint
- yaml-js
- csslint
brew_packages:
- node
cask_packages:
- atom
- font-inconsolata
- font-source-code-pro
- font-sauce-code-powerline
atom_packages:
- atom-terminal
- project-manager
- atomatigit
- trailing-spaces
- auto-detect-in... |
920aa04d-ff8f-4b7a-b4cb-2a7fe6949ab5 | {
"language": "YAML"
} | ```yaml
- hosts: '{{ group | default("qa") }}'
connection: '{{ conn | default("local") }}'
remote_user: deploy
# Set environment to use scl rh-python35
environment:
PATH: '/opt/rh/rh-python35/root/usr/bin/:{{ lookup("env","PATH") }}'
LD_LIBRARY_PATH: '/opt/rh/rh-python35/root/usr/lib64'
roles:
#... | ```yaml
- hosts: '{{ group | default("qa") }}'
connection: '{{ conn | default("local") }}'
remote_user: deploy
# Set environment to use scl rh-python35
environment:
PATH: '/opt/rh/rh-python35/root/usr/bin/:/opt/rh/rh-nodejs6/root/usr/bin:{{ ansible_env.PATH }}'
LD_LIBRARY_PATH: '/opt/rh/rh-python35/root... |
0641f125-67ee-4f91-84b7-4bc1fd0f6cc9 | {
"language": "YAML"
} | ```yaml
name: JPX Build
on:
push:
branches:
- master
- releases/*
- issues/*
pull_request:
branches:
- master
- releases/*
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ... | ```yaml
name: JPX Build
on:
push:
branches:
- master
- releases/*
- issues/*
pull_request:
branches:
- master
- releases/*
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ... |
45d2c225-f8ef-4c32-a836-56ecbfb4711f | {
"language": "YAML"
} | ```yaml
name: Jekyll site CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.0.2
- name: Build the site in the jekyll/builder container
run: |
docker run \
-v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_s... | ```yaml
name: Jekyll site CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.1.0
- name: Build the site in the jekyll/builder container
run: |
docker run \
-v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_s... |
03422d87-031d-4e86-9033-184edd347bed | {
"language": "YAML"
} | ```yaml
---
name: docker_prep_dev
runner_type: orquesta
description: Prep dev images for st2 release
enabled: true
entry_point: workflows/docker_prep_dev.yaml
parameters:
version:
type: string
description: Version used for the release. Should include the patch e.g. 0.1.0
required: true
fork:
type: s... | ```yaml
---
name: docker_prep_dev
runner_type: orquesta
description: Prep dev images for st2 release
enabled: true
entry_point: workflows/docker_prep_dev.yaml
parameters:
version:
type: string
description: Version used for the release. Should include the patch e.g. 0.1.0
required: true
org:
type: st... |
eafdb256-714d-4dde-baad-a02735c18c5d | {
"language": "YAML"
} | ```yaml
---
unbound::confdir: '/var/unbound/etc'
unbound::logdir: '/var/log/unbound'
unbound::owner: '_unbound'
unbound::group: '_unbound'
unbound::fetch_client: 'ftp -o'
unbound::validate_cmd: '/usr/sbin/unbound-checkconf %'
unbound::package_name: ''
```
Set unbound pidfile for 6.3 | ```yaml
---
unbound::confdir: '/var/unbound/etc'
unbound::pidfile: '/var/run/unbound.pid'
unbound::logdir: '/var/log/unbound'
unbound::owner: '_unbound'
unbound::group: '_unbound'
unbound::fetch_client: 'ftp -o'
unbound::validate_cmd: '/usr/sbin/unbound-checkconf %'
unbound::package_name: ''
``` |
64089aa5-7541-47d4-96aa-97caf4954689 | {
"language": "YAML"
} | ```yaml
on:
push:
branches:
- master
pull_request:
name: Run Tests
jobs:
test:
name: Tests
strategy:
matrix:
node: [10, 12]
os: [windows-2016, ubuntu-16.04, ubuntu-18.04, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@master
... | ```yaml
on:
push:
branches:
- master
- release/*
pull_request:
name: Run Tests
jobs:
test:
name: Tests
strategy:
matrix:
node: [10, 12]
os: [windows-2016, ubuntu-16.04, ubuntu-18.04, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions... |
0fc15549-6e7f-44ec-8d91-5c1b51ef6e0b | {
"language": "YAML"
} | ```yaml
version: '2'
services:
influxdb:
image: influxdb
ports:
- "8086:8086"
volumes:
- ./STORAGE/influxdb:/var/lib/influxdb
db:
image: postgres
ports:
- "5432:5432"
volumes:
- ./STORAGE/db:/var/lib/postgresql/data
... | ```yaml
version: '2'
services:
influxdb:
image: influxdb
ports:
- "8086:8086"
volumes:
- ./STORAGE/influxdb:/var/lib/influxdb
environment:
INFLUXDB_HTTP_MAX_ROW_LIMIT: 0
db:
image: postgres
ports:
- "5432:5432"
... |
9c87a770-e31c-4b00-a694-8da1331d71a0 | {
"language": "YAML"
} | ```yaml
version: "3"
services:
mysql:
image: mariadb:10.2
restart: always
ports:
- "33061:3306"
volumes:
- mysql:/var/lib/mysql
- ./install/sql/mysql.sql:/docker-entrypoint-initdb.d/mysql.sql
env_file:
- .env
toloka:
image: hurtom/php:nginx
restart: always
... | ```yaml
version: "3"
services:
mysql:
image: mariadb:10.2
restart: always
ports:
- "33061:3306"
volumes:
- mysql:/var/lib/mysql
- ./install/sql/mysql.sql:/docker-entrypoint-initdb.d/mysql.sql
env_file:
- .env
toloka:
image: hurtom/php:nginx
restart: always
... |
e7968572-cf41-4819-947c-2948326916b7 | {
"language": "YAML"
} | ```yaml
homepage: ''
changelog-type: ''
hash: 883289aebf6342007ff4995d433098fe8532cf8f6bd068db6b7771e769eb5fe0
test-bench-deps: {}
maintainer: strake888@gmail.com
synopsis: Finite totally-ordered sets
changelog: ''
basic-deps:
peano: -any
base: ! '>=4.7 && <5'
natural-induction: ! '>=0.2 && <0.3'
all-versions:
- ... | ```yaml
homepage: ''
changelog-type: ''
hash: 1413f5a6666cfc1801ddd57f301671820f47af9e64e5136ceb76f7aaa1500ada
test-bench-deps: {}
maintainer: strake888@gmail.com
synopsis: Finite totally-ordered sets
changelog: ''
basic-deps:
alg: ! '>=0.2.5 && <0.3'
foldable1: ! '>=0.1 && <0.2'
peano: -any
base: ! '>=4.7 && <... |
da0fbfd6-3ca9-42da-a3b5-4f5f5a9dc458 | {
"language": "YAML"
} | ```yaml
---
# general setup
- name: Verify Ansible meets Clojars version requirements.
assert:
that: "ansible_version.full is version_compare('2.9.4', '>=')"
msg: >
"You must update Ansible to at least 2.9.4 to deploy Clojars."
- name: Install EPEL for additional packages
# sudo yum install -y http... | ```yaml
---
# general setup
- name: Verify Ansible meets Clojars version requirements.
assert:
that: "ansible_version.full is version_compare('2.9.4', '>=')"
msg: >
"You must update Ansible to at least 2.9.4 to deploy Clojars."
- name: Install EPEL for additional packages
# sudo yum install -y http... |
1f347b10-c2b4-4020-bd30-0ad0197869f1 | {
"language": "YAML"
} | ```yaml
{{- range $index, $cluster := .Values.clusters }}
{{- if $.Values.vice_president }}
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: swift-{{$cluster.name}}
annotations:
# the ingress controller won't pick this up
kubernetes.io/ingress.class: "noop.vice-president"
# enable vice-pres... | ```yaml
{{- range $index, $cluster := .Values.clusters }}
{{- if $.Values.vice_president }}
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: swift-{{$cluster.name}}
annotations:
# the ingress controller won't pick this up
kubernetes.io/ingress.class: "noop.vice-president"
# enable vice-pres... |
59c929f1-c7ca-4406-98c9-e3404888b5fd | {
"language": "YAML"
} | ```yaml
robot_name: "deedee" # Name of the robot, used for namespace
sim_plant: true # Actual or simulated robot
autonomous: false # Manual (false) or autonomous (true) control
sim_display: "gzclient" # Visualisation client: gzclient|gzweb|both|none
gzweb_path: "/home/cyrill/gzweb" # Path to the installation folder for... | ```yaml
robot_name: "deedee" # Name of the robot, used for namespace
sim_plant: true # Actual or simulated robot
autonomous: true # Manual (false) or autonomous (true) control
sim_display: "gzclient" # Visualisation client: gzclient|gzweb|both|none
gzweb_path: "/home/cyrill/gzweb" # Path to the installation folder for ... |
3605dc60-5e2e-4f9a-813b-caeffd85e121 | {
"language": "YAML"
} | ```yaml
name: Registrar
category: Offices
schedule:
- title: Hours
hours:
# - {days: [Mo, Tu, We, Th, Fr], from: '8:00am', to: '4:30pm'}
breakSchedule:
fall: []
thanksgiving: []
winter: []
interim: []
spring: []
easter: []
summer:
- title: Hours
hours:
- {days: [Mo, Tu, We,... | ```yaml
name: Registrar
category: Offices
schedule:
- title: Hours
hours:
# - {days: [Mo, Tu, We, Th, Fr], from: '8:00am', to: '4:30pm'}
- {days: [Mo, Tu, We, Th], from: '7:30am', to: '4:30pm'}
- {days: [Fr], from: '7:30am', to: '12:00pm'}
breakSchedule:
fall: []
thanksgiving: []
winter:... |
abfefd1f-75cf-4088-8142-ce4fbb101040 | {
"language": "YAML"
} | ```yaml
default_language_version:
python: python3.10
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
hooks:
- id: check-added-large-files
args: [ '--maxkb=500' ]
- id: check-byte-order-marker
exclude: .*\.csv|.*\.xsd|.*\.xlsx|.*\.xml
- id: check-ca... | ```yaml
default_language_version:
python: python3.10
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
hooks:
- id: check-added-large-files
args: [ '--maxkb=500' ]
- id: check-byte-order-marker
exclude: .*\.csv|.*\.xsd|.*\.xlsx|.*\.xml
- id: check-ca... |
4ea507c6-f30c-482a-91ed-b52ffa94b341 | {
"language": "YAML"
} | ```yaml
# pre-commit hook which runs all the various lint checks + black auto formatting on the added
# files.
# This hook relies on development virtual environment being present in virtualenv/.
default_language_version:
python: python3.6
exclude: '(build|dist)'
repos:
- repo: local
hooks:
- id: black
... | ```yaml
# pre-commit hook which runs all the various lint checks + black auto formatting on the added
# files.
# This hook relies on development virtual environment being present in virtualenv/.
default_language_version:
python: python3.6
exclude: '(build|dist)'
repos:
- repo: local
hooks:
- id: black
... |
58e6d1de-c959-47e1-8ad2-476ab6834da8 | {
"language": "YAML"
} | ```yaml
Categories:
- Games
License: GPL-3.0-only
WebSite: https://github.com/dozingcat/MousePounce
SourceCode: https://github.com/dozingcat/MousePounce
IssueTracker: https://github.com/dozingcat/MousePounce/issues
AutoName: Egyptian Mouse Pounce
RepoType: git
Repo: https://github.com/dozingcat/MousePounce.git
Bui... | ```yaml
Categories:
- Games
License: GPL-3.0-only
WebSite: https://github.com/dozingcat/MousePounce
SourceCode: https://github.com/dozingcat/MousePounce
IssueTracker: https://github.com/dozingcat/MousePounce/issues
AutoName: Egyptian Mouse Pounce
RepoType: git
Repo: https://github.com/dozingcat/MousePounce.git
Bui... |
a34b562e-f3a9-43ee-88ca-f3d2e7f217db | {
"language": "YAML"
} | ```yaml
---
repos:
- repo: https://github.com/PyCQA/doc8
rev: 0.8.1
hooks:
- id: doc8
name: doc8
description: This hook runs doc8 for linting docs.
entry: python -m doc8
language: python
files: \.rst$
require_serial: true
- repo: https://github.com/psf/b... | ```yaml
---
repos:
# - repo: https://github.com/PyCQA/doc8
# rev: 0.8.1
# hooks:
# - id: doc8
# name: doc8
# description: This hook runs doc8 for linting docs.
# entry: python -m doc8
# language: python
# files: \.rst$
# require_serial: true
- repo: http... |
b31cfded-fa56-475e-8f2e-5afe78f08f48 | {
"language": "YAML"
} | ```yaml
Categories:
- Multimedia
License: GPL-3.0-only
AuthorName: Andreas Kromke
SourceCode: https://gitlab.com/AndreasK/opus1-music-player
IssueTracker: https://gitlab.com/AndreasK/opus1-music-player/issues
Changelog: https://gitlab.com/AndreasK/opus1-music-player/blob/HEAD/app/src/main/assets/version-history.txt
... | ```yaml
Categories:
- Multimedia
License: GPL-3.0-only
AuthorName: Andreas Kromke
SourceCode: https://gitlab.com/AndreasK/opus1-music-player
IssueTracker: https://gitlab.com/AndreasK/opus1-music-player/issues
Changelog: https://gitlab.com/AndreasK/opus1-music-player/blob/HEAD/app/src/main/assets/version-history.txt
... |
9be9a50e-61b0-4eba-b72d-8005bd970d72 | {
"language": "YAML"
} | ```yaml
---
driver_plugin: vagrant
driver_config:
require_chef_omnibus: true
platforms:
- name: ubuntu-14.04
- name: ubuntu-12.04
- name: ubuntu-10.04
- name: centos-7.0
- name: centos-6.6
- name: centos-5.9
- name: fedora-21
- name: amazon-2014.09.1
driver:
name: ec2
aws_access_key_id: <%= ENV['AWS_ACCESS... | ```yaml
---
driver_plugin: vagrant
driver_config:
require_chef_omnibus: true
platforms:
- name: ubuntu-14.04
- name: ubuntu-12.04
- name: ubuntu-10.04
- name: debian-7.8
- name: centos-7.0
- name: centos-6.6
- name: centos-5.9
- name: fedora-21
- name: amazon-2014.09.1
driver:
name: ec2
aws_access_key_id: ... |
dc1c37ea-40ca-45d5-bca3-e3e5793d9f0b | {
"language": "YAML"
} | ```yaml
---
driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
#- name: debian-7.2.0
#driver_config:
#box: debian-7.2.0
- name: ubuntu-14.04
driver_config:
box: ubuntu-14.04
suites:
- name: default
run_list:
- recipe[statsdaemon]
attributes:
go:
... | ```yaml
---
driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
#- name: debian-7.2.0
- name: ubuntu-14.04
suites:
- name: default
run_list:
- recipe[statsdaemon]
attributes:
go:
owner: 'vagrant'
group: 'vagrant'
statsdaemon:
graph... |
6ae5b3e8-b5d5-47f0-852e-cc6158f62010 | {
"language": "YAML"
} | ```yaml
---
driver:
name: vagrant
require_chef_omnibus: true
customize:
memory: 512
provisioner:
name: chef_zero
platforms:
- name: ubuntu-12.04
run_list:
- recipe[apt]
- name: centos-6.5
run_list:
- recipe[yum-epel]
suites:
- name: default
run_list:
- recipe[collectd]
- recipe[collectd::at... | ```yaml
---
driver:
name: vagrant
require_chef_omnibus: true
customize:
memory: 512
provisioner:
name: chef_zero
platforms:
- name: ubuntu-14.04
run_list:
- recipe[apt]
- name: ubuntu-12.04
run_list:
- recipe[apt]
- name: centos-6.5
run_list:
- recipe[yum-epel]
suites:
- name: default
run_l... |
7807c24b-ed43-44c7-9006-25a024dc7a9e | {
"language": "YAML"
} | ```yaml
driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: centos-6.8
- name: centos-7.3
- name: debian-7.11
run_list: apt::default
- name: debian-8.6
run_list: apt::default
- name: fedora-25
- name: opensuse-leap-42.2
- name: ubuntu-14.04
run_list: apt::default
- na... | ```yaml
driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: centos-6.8
- name: centos-7.3
- name: debian-7.11
run_list: apt::default
- name: debian-8.7
run_list: apt::default
- name: fedora-25
- name: opensuse-leap-42.2
- name: ubuntu-14.04
run_list: apt::default
- na... |
0103dc1a-6326-4b88-a4ee-7b3b66fcffbe | {
"language": "YAML"
} | ```yaml
---
driver:
name: vagrant
provisioner:
name: chef_solo
platforms:
- name: ubuntu-12.04
- name: ubuntu-10.04
suites:
- name: default
run_list:
- recipe[serf::default]
attributes:
```
Remove support for Lucid - it's time. | ```yaml
---
driver:
name: vagrant
provisioner:
name: chef_solo
platforms:
- name: ubuntu-12.04
suites:
- name: default
run_list:
- recipe[serf::default]
attributes:
``` |
09a5e3a4-50e6-497e-bb2f-5aab7adfde60 | {
"language": "YAML"
} | ```yaml
# This is the Hanami generator default
Style/ClassAndModuleChildren:
EnforcedStyle: compact
Exclude:
- 'apps/web/application.rb'
# Almost all classes in this app are self-explanatory
Style/Documentation:
Enabled: false
```
Add exception for lingering Rubocop issue | ```yaml
# This is the Hanami generator default
Style/ClassAndModuleChildren:
EnforcedStyle: compact
Exclude:
- 'apps/web/application.rb'
- 'apps/web/views/application_layout.rb'
# Almost all classes in this app are self-explanatory
Style/Documentation:
Enabled: false
``` |
f8111a97-b51f-4c71-9106-37a3cdcae127 | {
"language": "YAML"
} | ```yaml
---
site: dfid_blogs
whitehall_slug: department-for-international-development
title: Department for International Development
redirection_date: 17th March 2014
homepage: https://dfid.blog.gov.uk
tna_timestamp: 20130704203515
host: blogs.dfid.gov.uk
furl: www.gov.uk/dfid
aliases:
- dfidimport.blog.gov.uk
```
Ch... | ```yaml
---
site: dfid_blogs
whitehall_slug: department-for-international-development
title: Department for International Development
redirection_date: 19th March 2014
homepage: https://dfid.blog.gov.uk
tna_timestamp: 20130704203515
host: blogs.dfid.gov.uk
furl: www.gov.uk/dfid
aliases:
- dfidimport.blog.gov.uk
``` |
2879abf1-30cc-4ea7-bf6f-ab9d8abf8e38 | {
"language": "YAML"
} | ```yaml
common: &default_client
options:
write:
w: <%= ENV['MONGOID_WRITE_MODE'] || 1 %>
read:
mode: :<%= ENV['MONGOID_READ_MODE'] || 'primary' %>
max_retries: <%= ENV['MONGOID_MAX_RETRIES'] || 1 %>
retry_interval: <%= ENV['MONGOID_RETRY_INTERVAL'] || 0 %>
timeout: <%= ENV['MONGOID_TIM... | ```yaml
common: &default_client
options:
write:
w: <%= ENV['MONGOID_WRITE_MODE'] || 1 %>
read:
mode: :<%= ENV['MONGOID_READ_MODE'] || 'primary' %>
max_retries: <%= ENV['MONGOID_MAX_RETRIES'] || 1 %>
retry_interval: <%= ENV['MONGOID_RETRY_INTERVAL'] || 0 %>
timeout: <%= ENV['MONGOID_TIM... |
85670f7b-617c-447d-8eef-db06ad1def7c | {
"language": "YAML"
} | ```yaml
---
peid_sig_url: http://handlers.sans.org/jclausing/userdb.txt
sig_dir: /opt/irma/peid_sig
```
Fix get peid signatures from viper | ```yaml
---
peid_sig_url: https://raw.githubusercontent.com/viper-framework/viper/master/data/peid/UserDB.TXT
sig_dir: /opt/irma/peid_sig
``` |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.