hexsha
stringlengths
40
40
size
int64
5
1.05M
ext
stringclasses
588 values
lang
stringclasses
305 values
max_stars_repo_path
stringlengths
3
363
max_stars_repo_name
stringlengths
5
118
max_stars_repo_head_hexsha
stringlengths
40
40
max_stars_repo_licenses
listlengths
1
10
max_stars_count
float64
1
191k
max_stars_repo_stars_event_min_datetime
stringdate
2015-01-01 00:00:35
2022-03-31 23:43:49
max_stars_repo_stars_event_max_datetime
stringdate
2015-01-01 12:37:38
2022-03-31 23:59:52
max_issues_repo_path
stringlengths
3
363
max_issues_repo_name
stringlengths
5
118
max_issues_repo_head_hexsha
stringlengths
40
40
max_issues_repo_licenses
listlengths
1
10
max_issues_count
float64
1
134k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
3
363
max_forks_repo_name
stringlengths
5
135
max_forks_repo_head_hexsha
stringlengths
40
40
max_forks_repo_licenses
listlengths
1
10
max_forks_count
float64
1
105k
max_forks_repo_forks_event_min_datetime
stringdate
2015-01-01 00:01:02
2022-03-31 23:27:27
max_forks_repo_forks_event_max_datetime
stringdate
2015-01-03 08:55:07
2022-03-31 23:59:24
content
stringlengths
5
1.05M
avg_line_length
float64
1.13
1.04M
max_line_length
int64
1
1.05M
alphanum_fraction
float64
0
1
0242d18087560baa23fb11d7d45cc4e4060f8851
60
yaml
YAML
examples/plugins/example_sweeper_plugin/example/conf/config.yaml
sara-nl/hydra
8fd0d23d71cf528528ca5eda26e0c1f0c1e973d7
[ "MIT" ]
5,847
2019-10-03T04:20:44.000Z
2022-03-31T17:07:46.000Z
examples/plugins/example_sweeper_plugin/example/conf/config.yaml
sara-nl/hydra
8fd0d23d71cf528528ca5eda26e0c1f0c1e973d7
[ "MIT" ]
1,393
2019-10-04T01:03:38.000Z
2022-03-31T20:29:35.000Z
examples/plugins/example_sweeper_plugin/example/conf/config.yaml
sara-nl/hydra
8fd0d23d71cf528528ca5eda26e0c1f0c1e973d7
[ "MIT" ]
505
2019-10-03T19:41:42.000Z
2022-03-31T11:40:16.000Z
defaults: - db: mysql - override hydra/sweeper: example
15
35
0.7
408dfc75517ef1cb15cf6d1ac40d5e4729d77ddd
220
yml
YAML
input/data/projects/peta-poco.yml
kaeedo/discoverdotnet
f9e348682a4fe1fde569a4fe5833ae9c839742ce
[ "MIT" ]
3
2019-01-02T10:10:00.000Z
2020-04-10T21:30:31.000Z
input/data/projects/peta-poco.yml
kaeedo/discoverdotnet
f9e348682a4fe1fde569a4fe5833ae9c839742ce
[ "MIT" ]
null
null
null
input/data/projects/peta-poco.yml
kaeedo/discoverdotnet
f9e348682a4fe1fde569a4fe5833ae9c839742ce
[ "MIT" ]
1
2020-04-10T21:30:34.000Z
2020-04-10T21:30:34.000Z
Image: https://raw.githubusercontent.com/CollaboratingPlatypus/PetaPoco/master/Media/Logo2/PetaPocoLogo2_256.png Language: C# NuGet: PetaPoco Source: https://github.com/CollaboratingPlatypus/PetaPoco Tags: - ORM
31.428571
113
0.8
7f91bf31b582287b6eef26973208bf102674d518
1,571
yml
YAML
.github/actions/setup-llvm/action.yml
seanmiddleditch/grimm
9f47fc5d7aa0af19a3a7c82a38b7f7c59b83fbf5
[ "MIT" ]
38
2019-05-25T17:32:26.000Z
2022-02-27T22:25:05.000Z
.github/actions/setup-llvm/action.yml
seanmiddleditch/grimm
9f47fc5d7aa0af19a3a7c82a38b7f7c59b83fbf5
[ "MIT" ]
35
2019-05-26T17:52:39.000Z
2022-02-12T19:54:14.000Z
.github/actions/setup-llvm/action.yml
seanmiddleditch/grimm
9f47fc5d7aa0af19a3a7c82a38b7f7c59b83fbf5
[ "MIT" ]
2
2019-06-09T16:06:27.000Z
2019-08-16T14:17:20.000Z
name: setup-llvm description: Install LLVM inputs: version: description: 'Version of LLVM to install' required: false default: '12' components: description: 'List of components to install (space-separated)' required: false default: 'clang clang-format clang-tidy libc++' apt_repo_name: description: 'Name of the repo on apt.llvm.org' required: false runs: using: 'composite' steps: - name: Configure LLVM Apt Repository shell: bash env: LLVM_VERSION: ${{ inputs.version }} REPO_NAME: ${{ inputs.apt_repo_name }} run: | . /etc/lsb-release REPO_NAME="${REPO_NAME:-llvm-toolchain-${DISTRIB_CODENAME}-${LLVM_VERSION}}" APT_REPO="deb https://apt.llvm.org/${DISTRIB_CODENAME}/ ${REPO_NAME} main" echo "Configuring: ${APT_REPO}" wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - sudo apt clean sudo add-apt-repository "${APT_REPO}" sudo apt-get -yq update - name: Install Packages shell: bash env: LLVM_VERSION: ${{ inputs.version }} COMPONENTS: ${{ inputs.components }} run: | INSTALL='' for component in ${COMPONENTS} ; do if [ "n${component}" = 'nlibc++' ] ; then INSTALL="${INSTALL} libc++-${LLVM_VERSION}-dev libc++abi-${LLVM_VERSION}-dev" else INSTALL="${INSTALL} ${component}-${LLVM_VERSION}" fi done echo "Installing: ${INSTALL}" sudo apt-get -yq install ${INSTALL}
30.211538
89
0.598345
216b57524678ee44b60763c9267e056730540c4e
311
yaml
YAML
tests/examples/source/devfiles/nodejs/devfile-with-parent.yaml
kadel/ocdev
bf71fa397a071fbee63cc2821bbd2a8f4099a179
[ "Apache-2.0" ]
334
2018-04-18T09:48:01.000Z
2022-03-31T00:14:03.000Z
tests/examples/source/devfiles/nodejs/devfile-with-parent.yaml
kadel/ocdev
bf71fa397a071fbee63cc2821bbd2a8f4099a179
[ "Apache-2.0" ]
1,618
2018-04-12T15:59:35.000Z
2022-03-31T21:05:59.000Z
tests/examples/source/devfiles/nodejs/devfile-with-parent.yaml
kadel/ocdev
bf71fa397a071fbee63cc2821bbd2a8f4099a179
[ "Apache-2.0" ]
65
2018-04-13T07:01:23.000Z
2022-03-01T14:52:58.000Z
schemaVersion: 2.1.0 metadata: name: new-ol-version description: Child devfile to test OL image updating parent: uri: https://github.com/OpenLiberty/application-stack/releases/download/maven-0.7.0/devfile.yaml components: - name: dev container: image: maven:3.6-adoptopenjdk-11-openj9
28.272727
98
0.729904
d5574ec981ac21c3b015624eb5a313dc4b7dd89c
1,861
yml
YAML
data/pa/legislature/Joe-Webster-676410b6-c3aa-4c17-856f-7d896e6fbc83.yml
jason44406/people
acd01a7b5a78f7ab505850f73d92b26a90a3450a
[ "CC0-1.0" ]
58
2018-10-18T22:50:29.000Z
2022-03-01T21:03:44.000Z
data/pa/legislature/Joe-Webster-676410b6-c3aa-4c17-856f-7d896e6fbc83.yml
jason44406/people
acd01a7b5a78f7ab505850f73d92b26a90a3450a
[ "CC0-1.0" ]
350
2018-09-28T18:51:08.000Z
2022-03-21T19:03:57.000Z
data/pa/legislature/Joe-Webster-676410b6-c3aa-4c17-856f-7d896e6fbc83.yml
jason44406/people
acd01a7b5a78f7ab505850f73d92b26a90a3450a
[ "CC0-1.0" ]
74
2018-10-06T16:52:56.000Z
2022-02-11T15:45:20.000Z
id: ocd-person/676410b6-c3aa-4c17-856f-7d896e6fbc83 name: Joe Webster given_name: Joe family_name: Webster image: https://www.legis.state.pa.us/images/members/200/1848.jpg party: - name: Democratic roles: - type: lower jurisdiction: ocd-jurisdiction/country:us/state:pa/government district: '150' offices: - classification: capitol address: 125B East Wing P.O. Box 202150 Harrisburg, PA 17120-2150 voice: 717-787-0419 fax: 717-772-9892 - classification: district address: '35 Evansburg Road Collegeville, PA 19426 Office Hours: 9:30 AM to 4:30 PM Monday to Friday' voice: 484-200-8263 - classification: district address: 488 E. Main Street Unit 1 Collegeville, PA 19426 voice: 484-200-8258 fax: 484-200-8268 name: 'District Office #1' links: - url: http://www.legis.state.pa.us/cfdocs/legis/home/member_information/House_bio.cfm?id=1848 - url: http://www.legis.state.pa.us/cfdocs/legis/home/member_information/representatives_alpha.cfm - url: https://www.legis.state.pa.us/cfdocs/legis/home/member_information/House_bio.cfm?id=1848 note: homepage ids: twitter: RepJoeWebster youtube: playlist?list=PLjtqNtfs0bgVqc-0u5IRw2yt5F84yWNoy facebook: RepJoeWebster sources: - url: http://www.legis.state.pa.us/cfdocs/legis/home/member_information/representatives_alpha.cfm - url: http://www.legis.state.pa.us/cfdocs/legis/home/member_information/House_bio.cfm?id=1848 - url: https://www.legis.state.pa.us/cfdocs/legis/home/member_information/mbrList.cfm?body=H&sort=alpha - url: https://www.legis.state.pa.us/cfdocs/legis/home/member_information/House_bio.cfm?id=1848 extras: website: http://www.pahouse.com/webster Education: - La Salle College High School 1976 - U.S. Air Force Academy BS 1980 - Wright State University MA 1984 - U.S. Naval War College MA 2001 - George Washington University, PhD in Public Policy 2004
38.770833
103
0.768941
a4f363628b66d71a95b04b3e59868082b00e9ad7
1,320
yml
YAML
.github/workflows/ci.yml
72services/vaadin-jooq
2318e1c039454d5e4e824d31ae2f28b723e337e1
[ "Apache-2.0" ]
3
2020-08-20T13:33:16.000Z
2022-02-04T19:06:40.000Z
.github/workflows/ci.yml
72services/vaadin-jooq
2318e1c039454d5e4e824d31ae2f28b723e337e1
[ "Apache-2.0" ]
null
null
null
.github/workflows/ci.yml
72services/vaadin-jooq
2318e1c039454d5e4e824d31ae2f28b723e337e1
[ "Apache-2.0" ]
null
null
null
name: CI on: push: branches: [ develop, master ] pull_request: branches: [ develop ] workflow_dispatch: jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up JDK 17 uses: actions/setup-java@v2 with: java-version: '8' distribution: 'adopt' server-id: ossrh server-username: MAVEN_USERNAME server-password: MAVEN_PASSWORD gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} gpg-passphrase: MAVEN_GPG_PASSPHRASE - name: Cache local Maven repository uses: actions/cache@v2 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} restore-keys: | ${{ runner.os }}-maven- - name: Maven Deploy run: mvn deploy -Pdeploy env: MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }} MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
30.697674
78
0.465909
c5717ec86200a479d1c9d26f32c84d6e3b6cb42d
829
yml
YAML
codecov.yml
Project-MONAI/monai-deploy-workload-manager
fa4ee09b12489b999baae5144401291aafcba953
[ "Apache-2.0" ]
4
2022-02-17T23:48:19.000Z
2022-03-31T22:56:03.000Z
codecov.yml
Project-MONAI/monai-deploy-workload-manager
fa4ee09b12489b999baae5144401291aafcba953
[ "Apache-2.0" ]
56
2021-11-09T09:38:50.000Z
2022-03-31T08:27:58.000Z
codecov.yml
Project-MONAI/monai-deploy-workload-manager
fa4ee09b12489b999baae5144401291aafcba953
[ "Apache-2.0" ]
null
null
null
# SPDX-FileCopyrightText: � 2021-2022 MONAI Consortium # SPDX-License-Identifier: Apache License 2.0 codecov: require_ci_to_pass: true max_report_age: off notify: wait_for_ci: false coverage: precision: 5 round: down range: "70...100" status: project: default: target: auto threshold: 1% base: auto if_not_found: success informational: false only_pulls: false parsers: gcov: branch_detection: conditional: yes loop: yes method: no macro: no comment: layout: "reach,diff,flags,files,footer" behavior: default require_changes: false require_base: no require_head: yes fixes: - "/home/runner/work/monai-deploy-workflow-manager/monai-deploy-workflow-manager/src/::src/"
20.219512
95
0.635706
732d2ee58b0716a4554d16771bce63df578cb41b
113
yml
YAML
project/app/config/test/parameters.yml
kalinick/cocktails
c4294a7ab949a07e817f83ddaa57b6d7bfc132a2
[ "MIT" ]
null
null
null
project/app/config/test/parameters.yml
kalinick/cocktails
c4294a7ab949a07e817f83ddaa57b6d7bfc132a2
[ "MIT" ]
null
null
null
project/app/config/test/parameters.yml
kalinick/cocktails
c4294a7ab949a07e817f83ddaa57b6d7bfc132a2
[ "MIT" ]
null
null
null
parameters: http_tests_host: "project.pp.ciklum.com" tests.file.basepath: '%kernel.root_dir%/tests-data/'
37.666667
56
0.734513
bc68eae94e6cf71186f6dafe0f67665c5751cec2
89
yml
YAML
changelogs/unreleased/sh-clarify-eks-install-directions-docs.yml
nuttingd/gitlab-helm-chart
5c22ac1e03886f0f55db9b5ef13a11fa13c83e9c
[ "MIT" ]
null
null
null
changelogs/unreleased/sh-clarify-eks-install-directions-docs.yml
nuttingd/gitlab-helm-chart
5c22ac1e03886f0f55db9b5ef13a11fa13c83e9c
[ "MIT" ]
null
null
null
changelogs/unreleased/sh-clarify-eks-install-directions-docs.yml
nuttingd/gitlab-helm-chart
5c22ac1e03886f0f55db9b5ef13a11fa13c83e9c
[ "MIT" ]
1
2022-02-25T03:13:19.000Z
2022-02-25T03:13:19.000Z
--- title: Clarify EKS installation instructions merge_request: 1801 author: type: other
14.833333
44
0.797753
91b4c595b5307d1fc4150e6e973a4c0888e893de
877
yml
YAML
conda-forge.yml
tjakob/xorg-libxt-feedstock
329fbfc062c45833aeb9960a6e62a16cd5597dde
[ "BSD-3-Clause" ]
null
null
null
conda-forge.yml
tjakob/xorg-libxt-feedstock
329fbfc062c45833aeb9960a6e62a16cd5597dde
[ "BSD-3-Clause" ]
null
null
null
conda-forge.yml
tjakob/xorg-libxt-feedstock
329fbfc062c45833aeb9960a6e62a16cd5597dde
[ "BSD-3-Clause" ]
null
null
null
appveyor: secure: {BINSTAR_TOKEN: tumuXLL8PU75WMnRDemRy02ruEq2RpNxeK3dz0MjFssnosPm2v4EFjfNB4PTotA1} compiler_stack: comp7 max_py_ver: '37' max_r_ver: '35' travis: secure: {BINSTAR_TOKEN: h5AmFhbqnaYOIJbQGiTpFOKBqcW29Qgw8fp/+pjQbSe87x2Q9FBUKukqIAcFEF/gJm0dKyxerCMUy/5LaQwoV5hv6Ta10oRnvNanuv7UsTOW3rR/6cEdxO0WN4q2R1/AClGNTpK3NTDTVtd8muxEmnKyA0SxQi/1mP4v9tQIi2ZszkSszjuwYor3i8rTpdlpel3GWrM3CUR3ECZgVXRGUrrPKTvtNkrrxfKWMscvoOvYtqy01QKjdKHdRZdG93JNBjiAsqW0a+hDstNnFep/80ET7ebdSkwIzmYChlaQu86tpjRHX0e3X1jkG/Xe462CeNXXzRJL0YiT+OeEAfxeJabPi5KJVybw9liOFSncHlmqHBck+HKQWgNI91/A5npGy3tTjDENdvOQziG2rM9tzNhkfaae7t/l6k36j+vf+LTZ9G+uCyNvC7xlWwnwIaWecHuc1PP9dXaznsoUepFMJvfcq3Az2d2z0pywVZIfWjQctxOLIkqVA7zvEgEt3q5wLfLIsWaktbUFu8D/ABaVxc2b8ZSFVoIODOfcZXs20NK5nW9Uyt8+FO5DGeWRYkPGR5ZEQ8SfL+28bS4W/Z0MbsB3kV0iHGU8b8HrGPKL/7mTzjAhKD1dZFCWK2aHhocBlk8Ns2lsyManCXmSoGVKEGt7rAy3497Gx4tSIn5wSvY=}
109.625
711
0.933865
623838139542d68b267c39e59a8ce8c4fc823fc4
80
yml
YAML
lib/config/le_pain.yml
BEaStia/le_pain
648c85b7ebf94185fcb5c81c566626e9b7aeece9
[ "MIT" ]
1
2018-10-30T07:34:17.000Z
2018-10-30T07:34:17.000Z
lib/config/le_pain.yml
BEaStia/le_pain
648c85b7ebf94185fcb5c81c566626e9b7aeece9
[ "MIT" ]
null
null
null
lib/config/le_pain.yml
BEaStia/le_pain
648c85b7ebf94185fcb5c81c566626e9b7aeece9
[ "MIT" ]
null
null
null
environments: development: default: true staging: production: test:
11.428571
17
0.6875
a596496a9406380dc3bb397f657846ca5c280106
1,243
yml
YAML
src/Bundles/StoreBundle/Resources/config/doctrine/Dam.orm.yml
Alex2791/prj
4f12a06a8826310ada47b7a2e4fd4954f4970ae2
[ "MIT" ]
null
null
null
src/Bundles/StoreBundle/Resources/config/doctrine/Dam.orm.yml
Alex2791/prj
4f12a06a8826310ada47b7a2e4fd4954f4970ae2
[ "MIT" ]
null
null
null
src/Bundles/StoreBundle/Resources/config/doctrine/Dam.orm.yml
Alex2791/prj
4f12a06a8826310ada47b7a2e4fd4954f4970ae2
[ "MIT" ]
null
null
null
Bundles\StoreBundle\Entity\Dam: type: entity table: null repositoryClass: Bundles\StoreBundle\Entity\DamRepository id: id: type: integer id: true generator: strategy: AUTO fields: name: type: string length: 255 description: type: text status: type: boolean travelId: type: integer oneToMany: photo: targetEntity: Photo mappedBy: dam geotag: targetEntity: GeoTag mappedBy: dam tag: targetEntity: Tag mappedBy: dam manyToOne: travel: targetEntity: Travel inversedBy: dam joinColumn: name: travelId referencedColumnName: id manyToMany: user: targetEntity: User inversedBy: dam joinTable: name: user_to_dam joinColumns: damId: referencedColumnName: id inverseJoinColumns: userId: referencedColumnName: id lifecycleCallbacks: { }
23.903846
61
0.473854
981095259453fea3424d562fcea5c5c7477302f1
811
yaml
YAML
charts/tproxy/templates/mitmproxy-certs-shared-secret.yaml
horodchukanton/kubernetes-tproxy
e3561e0df4c88fdd5105d7afea2ad0ccaaa99e0c
[ "Apache-2.0" ]
null
null
null
charts/tproxy/templates/mitmproxy-certs-shared-secret.yaml
horodchukanton/kubernetes-tproxy
e3561e0df4c88fdd5105d7afea2ad0ccaaa99e0c
[ "Apache-2.0" ]
null
null
null
charts/tproxy/templates/mitmproxy-certs-shared-secret.yaml
horodchukanton/kubernetes-tproxy
e3561e0df4c88fdd5105d7afea2ad0ccaaa99e0c
[ "Apache-2.0" ]
null
null
null
apiVersion: v1 type: Opaque kind: Secret metadata: name: {{ template "tproxy.fullname" . }}-mitmproxy-certs namespace: {{ .Values.injector.controledNamespace }} labels: app: {{ template "tproxy.name" . }} chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} component: tproxy data: mitmproxy-ca-cert.cer: |- {{ .Files.Get "certs/mitmproxy-ca-cert.cer" | b64enc }} mitmproxy-ca-cert.p12: |- {{ .Files.Get "certs/mitmproxy-ca-cert.p12" | b64enc }} mitmproxy-ca-cert.pem: |- {{ .Files.Get "certs/mitmproxy-ca-cert.pem" | b64enc }} mitmproxy-ca.pem: |- {{ .Files.Get "certs/mitmproxy-ca.pem" | b64enc }} mitmproxy-dhparam.pem: |- {{ .Files.Get "certs/mitmproxy-dhparam.pem" | b64enc }}
33.791667
67
0.628853
ceb538c5edcaa326aa596a8c6f65065d678034a1
333
yaml
YAML
releasenotes/notes/drivers-removal-944ce5e75d55b449.yaml
noonedeadpunk/neutron-vpnaas
2ea7e7fcbf0f93d32968341f1beddd1cddc0e0bd
[ "Apache-2.0" ]
74
2015-01-02T09:35:58.000Z
2021-05-14T17:12:40.000Z
releasenotes/notes/drivers-removal-944ce5e75d55b449.yaml
noonedeadpunk/neutron-vpnaas
2ea7e7fcbf0f93d32968341f1beddd1cddc0e0bd
[ "Apache-2.0" ]
1
2017-04-25T10:19:41.000Z
2017-04-25T10:19:41.000Z
releasenotes/notes/drivers-removal-944ce5e75d55b449.yaml
noonedeadpunk/neutron-vpnaas
2ea7e7fcbf0f93d32968341f1beddd1cddc0e0bd
[ "Apache-2.0" ]
43
2015-01-23T01:32:47.000Z
2021-10-18T04:13:17.000Z
--- upgrade: - The following drivers are removed due to the lack of maintainers of the drivers ``CiscoCsrIPsecDriver``, ``FedoraStrongSwanDriver``, ``VyattaIPsecDriver``. Please refer the following `mailing list post <http://lists.openstack.org/pipermail/openstack-dev/2018-February/127793.html>`_ for more detail.
41.625
84
0.741742
b20ff34d879eec2d5ac2bce2ea41db5634b29d27
1,343
yaml
YAML
exampleModel.yaml
alexsandre/trak
a7d38b9fce9fab300e039ba32887873526180443
[ "Apache-2.0" ]
null
null
null
exampleModel.yaml
alexsandre/trak
a7d38b9fce9fab300e039ba32887873526180443
[ "Apache-2.0" ]
null
null
null
exampleModel.yaml
alexsandre/trak
a7d38b9fce9fab300e039ba32887873526180443
[ "Apache-2.0" ]
null
null
null
nodes: - name: 'myApiProjectName' labels: ["web", "backend", "api", "php"] customFields: customField1: "value field 1" customField2: "value field 2" customField3: 100 dependencies: name: 'HOST_IN' to: 'machinename' customFields: port:80 - name: 'csharpweb' labels: ["web", "backend", "api", "csharp", "web", "front"] customFields: customField1: "value field 1" customField2: "value field 2" customField3: 100 dependencies: - name: 'HOST_IN' to: 'machinename2' customFields: port:8080 - name: 'USE' to: 'sqlserver' - name: 'sqlserverInstance' labels: ["database", "db", "windows", "sqlserver", "prod"] customFields: customFields: "Value Field 1" dependencies: - name: 'HOST_IN' to: 'machinename3' customFields: port:9876 - name: 'sqlserverInstance2' labels: ["database", "db", "windows", "sqlserver", "dev"] customFields: customFields1: "Field 1" dependencies: - name: 'HOST_IN' to: 'machinename4' - name: 'machinename' labels: ["server", "ubuntu" ] customFields: customField1: "value field 1" dependencies: name: 'HOST_IN' to: 'machinename' customFields: port:80
24.87037
63
0.568876
947a042f1447b9f466e8b2f0a46dd5bfc7af40e0
1,563
yml
YAML
docker-compose.yml
BinaryStudioAcademy/bsa-2020-buildeR
50ee9b592ef3ba0e9c96a6be1884b8e08ae88a4c
[ "MIT" ]
6
2020-08-10T08:43:24.000Z
2021-02-22T15:25:16.000Z
docker-compose.yml
BinaryStudioAcademy/bsa-2020-buildeR
50ee9b592ef3ba0e9c96a6be1884b8e08ae88a4c
[ "MIT" ]
33
2020-08-05T11:16:25.000Z
2020-09-11T15:41:54.000Z
docker-compose.yml
BinaryStudioAcademy/bsa-2020-buildeR
50ee9b592ef3ba0e9c96a6be1884b8e08ae88a4c
[ "MIT" ]
6
2020-08-30T19:24:39.000Z
2021-03-27T16:41:28.000Z
version: '3.8' services: builder_api: build: context: ./backend dockerfile: Dockerfile args: - PROJECT_NAME=API - PROJECT_PORT=5050 container_name: 'builder_api' restart: on-failure ports: - "5050:5050" networks: - back environment: ASPNETCORE_ENVIRONMENT: 'Production' VAULT_ADDRESS: 'http://vault:8200' VAULT_TOKEN_ID: 'buildeR_DEV_TOKEN' builder_processor: build: context: ./backend dockerfile: Dockerfile.Processor container_name: 'builder_processor' restart: on-failure ports: - "5060:5060" networks: - back environment: ASPNETCORE_ENVIRONMENT: 'Production' VAULT_ADDRESS: 'http://vault:8200' VAULT_TOKEN_ID: 'buildeR_DEV_TOKEN' builder_signalr: build: context: ./backend dockerfile: Dockerfile args: - PROJECT_NAME=SignalR - PROJECT_PORT=5070 container_name: 'builder_signalr' restart: on-failure ports: - "5070:5070" networks: - back environment: ASPNETCORE_ENVIRONMENT: 'Production' builder_frontend: depends_on: - builder_api - builder_processor - builder_signalr build: ./frontend container_name: 'builder_frontend' restart: on-failure ports: - "80:80" networks: - back - front networks: back: driver: bridge front: driver: bridge
22.014085
46
0.579655
249c24d0b8d6637d9b6cdf3532bae8a1d47fdac1
2,161
yml
YAML
.github/workflows/ci.yml
FuelLabs/pest
26d5d79a894f130ff3e0e55ad2b50cfffd33495a
[ "Apache-2.0", "MIT" ]
1
2021-12-29T14:42:31.000Z
2021-12-29T14:42:31.000Z
.github/workflows/ci.yml
FuelLabs/pest
26d5d79a894f130ff3e0e55ad2b50cfffd33495a
[ "Apache-2.0", "MIT" ]
1
2021-12-24T18:58:54.000Z
2021-12-24T18:58:54.000Z
.github/workflows/ci.yml
FuelLabs/pest
26d5d79a894f130ff3e0e55ad2b50cfffd33495a
[ "Apache-2.0", "MIT" ]
null
null
null
name: pest Continuous Integration on: push: branches: - staging - trying - master pull_request: branches: - staging - trying - master release: types: [published] jobs: testing: name: Unit, Style, and Lint Testing runs-on: ubuntu-latest steps: - name: Checkout source code uses: actions/checkout@v2 - name: Install Rust Stable uses: actions-rs/toolchain@v1 with: toolchain: 1.57.0 # Pinned warnings components: rustfmt default: true - name: Install gcc run: sudo apt-get update && sudo apt-get install -y gcc - name: Cargo Build uses: actions-rs/cargo@v1 with: command: build args: --all --verbose - name: Cargo Test uses: actions-rs/cargo@v1 with: command: test args: --all --verbose - name: Cargo Doc uses: actions-rs/cargo@v1 with: command: doc args: --all --verbose - name: Cargo Fmt uses: actions-rs/cargo@v1 with: command: fmt args: --all -- --check publish: # Only do this job if publishing a release if: github.event_name == 'release' && github.event.action == 'published' runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v2 - name: Install toolchain uses: actions-rs/toolchain@v1 with: toolchain: stable override: true - name: Verify tag version run: | cargo install toml-cli ./.github/workflows/scripts/verify_tag.sh ${{ github.ref_name }} pest/Cargo.toml ./.github/workflows/scripts/verify_tag.sh ${{ github.ref_name }} derive/Cargo.toml ./.github/workflows/scripts/verify_tag.sh ${{ github.ref_name }} generator/Cargo.toml ./.github/workflows/scripts/verify_tag.sh ${{ github.ref_name }} meta/Cargo.toml - name: Publish crate uses: katyo/publish-crates@v1 with: registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
27.35443
95
0.57242
72a15ca81533c1554afdde43320bf05621c7ed14
112
yml
YAML
artifacts/libcf/pip_check.yml
regro/pip_checking
8ea659c847e0b7b5bfa36ddccbdd200013524a11
[ "BSD-3-Clause" ]
null
null
null
artifacts/libcf/pip_check.yml
regro/pip_checking
8ea659c847e0b7b5bfa36ddccbdd200013524a11
[ "BSD-3-Clause" ]
null
null
null
artifacts/libcf/pip_check.yml
regro/pip_checking
8ea659c847e0b7b5bfa36ddccbdd200013524a11
[ "BSD-3-Clause" ]
null
null
null
pkg: libcf build: libcf-1.0.3-py37hf25c252_4 install: libcf==1.0.3 pip_check: "No broken requirements found.\n"
22.4
44
0.758929
a78bd8e02c9c8458e6c13ca4860c4832072e9bde
421
yaml
YAML
meta.yaml
bechtoldt/saltstack-time-formula
61361bcd57c3c9b9a0f37ed5b054d68c9cf187e2
[ "Apache-2.0" ]
null
null
null
meta.yaml
bechtoldt/saltstack-time-formula
61361bcd57c3c9b9a0f37ed5b054d68c9cf187e2
[ "Apache-2.0" ]
null
null
null
meta.yaml
bechtoldt/saltstack-time-formula
61361bcd57c3c9b9a0f37ed5b054d68c9cf187e2
[ "Apache-2.0" ]
null
null
null
name: saltstack-time-formula source: https://github.com/bechtoldt/saltstack-time-formula summary: SaltStack Formula to set up and configure time relatated software and system settings todo: - add instructions how to use formhelper, add information about it in the formula-docs (dependency), show up alternative? - 'table/ matrix: os/salt compatibility (dedicated file)' - add list of available states - add tests
46.777778
123
0.781473
3691828dd3cddde28223579dfcf3eece9782d559
716
yml
YAML
docker-compose.prod.yml
dainst/bibliography-assistant
6495055bf852964d416a02d92729406a6a1a33e9
[ "Apache-2.0" ]
null
null
null
docker-compose.prod.yml
dainst/bibliography-assistant
6495055bf852964d416a02d92729406a6a1a33e9
[ "Apache-2.0" ]
null
null
null
docker-compose.prod.yml
dainst/bibliography-assistant
6495055bf852964d416a02d92729406a6a1a33e9
[ "Apache-2.0" ]
null
null
null
version: "3.7" services: assistant: image: "dainst/bibliography-assistant" volumes: - "assistant-config:/opt/src/assistant/config" networks: - web - default ports: - "4300:4000" deploy: labels: - "traefik.docker.network=web" - "traefik.enable=true" - "traefik.frontend.rule=Host:bibliography-assistant.idai.world" - "traefik.port=4000" anystyle: image: "dainst/anystyle-sinatra" networks: - default ports: - "4567:4567" grobid: image: "lfoppiano/grobid:0.7.0" networks: - default ports: - "8070:8070" volumes: assistant-config: networks: web: external: true
17.463415
72
0.581006
15d155a0d980a9f68232cbdce191b5537355187c
551
yml
YAML
.travis.yml
jnblanchard/JNBTopbar
56ffa05702daa84cdd6f165eb211ac8d35d197ed
[ "MIT" ]
null
null
null
.travis.yml
jnblanchard/JNBTopbar
56ffa05702daa84cdd6f165eb211ac8d35d197ed
[ "MIT" ]
null
null
null
.travis.yml
jnblanchard/JNBTopbar
56ffa05702daa84cdd6f165eb211ac8d35d197ed
[ "MIT" ]
null
null
null
# references: # * https://www.objc.io/issues/6-build-tools/travis-ci/ osx_image: xcode9.1 language: objective-c cache: cocoapods podfile: Example/Podfile before_install: - gem install cocoapods # Since Travis is not always on latest version - pod install --project-directory=Example script: - set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/JNBTopbar.xcworkspace -scheme JNBTopbar-Example -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 8,OS=11.1' ONLY_ACTIVE_ARCH=NO | xcpretty - pod lib lint
39.357143
239
0.785844
591ff7d124f2184ae4e49113262bb7ea38c24171
217
yaml
YAML
config/stackclorder.yaml
ldf921/video-representation
1d085ab5d082de61c33373532a021bc2e3b81552
[ "MIT" ]
1
2020-05-12T14:11:50.000Z
2020-05-12T14:11:50.000Z
config/stackclorder.yaml
ldf921/video-representation
1d085ab5d082de61c33373532a021bc2e3b81552
[ "MIT" ]
null
null
null
config/stackclorder.yaml
ldf921/video-representation
1d085ab5d082de61c33373532a021bc2e3b81552
[ "MIT" ]
null
null
null
framework: stackcl-order network: lstm_units: 512 optimizer: type: SGD momentum: 0.9 weight_decay: 0.0001 data: version: v2 augmentation: normal length: 11 loop: 1 feature: False
15.5
24
0.645161
8ed9f518cb2f1063c068cf3bec73456f4990b6d3
1,343
yaml
YAML
simulator/input_data_old/pod_space_less_than_110/input_3326.yaml
OREOmini/scheduler
878e21420c0d386f627ef1a2435795e5978cc456
[ "Apache-2.0" ]
1
2019-07-08T06:30:48.000Z
2019-07-08T06:30:48.000Z
simulator/input_data_old/pod_space_less_than_110/input_3326.yaml
OREOmini/scheduler
878e21420c0d386f627ef1a2435795e5978cc456
[ "Apache-2.0" ]
null
null
null
simulator/input_data_old/pod_space_less_than_110/input_3326.yaml
OREOmini/scheduler
878e21420c0d386f627ef1a2435795e5978cc456
[ "Apache-2.0" ]
null
null
null
Nodes: - cpu: 2565 mem: 2440 name: node0 pnum: 86 - cpu: 3031 mem: 2133 name: node1 pnum: 106 - cpu: 2872 mem: 2656 name: node2 pnum: 100 - cpu: 2199 mem: 3045 name: node3 pnum: 104 - cpu: 3761 mem: 3818 name: node4 pnum: 109 - cpu: 3582 mem: 2599 name: node5 pnum: 101 - cpu: 2861 mem: 2102 name: node6 pnum: 86 - cpu: 3129 mem: 3786 name: node7 pnum: 101 - cpu: 2714 mem: 3296 name: node8 pnum: 96 - cpu: 3205 mem: 2953 name: node9 pnum: 109 - cpu: 2907 mem: 3920 name: node10 pnum: 90 - cpu: 3652 mem: 3889 name: node11 pnum: 108 - cpu: 2142 mem: 2008 name: node12 pnum: 104 - cpu: 3826 mem: 2933 name: node13 pnum: 106 Pods: - cpu: 9 mem: 5 name: pod0 - cpu: 9 mem: 2 name: pod1 - cpu: 6 mem: 7 name: pod2 - cpu: 9 mem: 9 name: pod3 - cpu: 4 mem: 2 name: pod4 - cpu: 4 mem: 8 name: pod5 - cpu: 8 mem: 7 name: pod6 - cpu: 9 mem: 7 name: pod7 - cpu: 9 mem: 5 name: pod8 - cpu: 7 mem: 2 name: pod9 - cpu: 8 mem: 8 name: pod10 - cpu: 7 mem: 5 name: pod11 - cpu: 5 mem: 2 name: pod12 - cpu: 4 mem: 2 name: pod13 - cpu: 9 mem: 7 name: pod14 - cpu: 9 mem: 9 name: pod15 - cpu: 3 mem: 8 name: pod16 - cpu: 4 mem: 9 name: pod17 - cpu: 7 mem: 8 name: pod18 - cpu: 7 mem: 2 name: pod19
11.285714
14
0.565153
0e19077a1e07c946d3ad1b655f13f79b60a59742
2,729
yml
YAML
setup_aws.yml
Friz-zy/simple-ansible-aws-django
221f8107329cfe3631969feca2f72da236b79560
[ "MIT" ]
4
2016-03-15T18:16:45.000Z
2021-03-29T15:06:51.000Z
setup_aws.yml
Friz-zy/simple-ansible-aws-django
221f8107329cfe3631969feca2f72da236b79560
[ "MIT" ]
null
null
null
setup_aws.yml
Friz-zy/simple-ansible-aws-django
221f8107329cfe3631969feca2f72da236b79560
[ "MIT" ]
1
2021-03-29T15:06:53.000Z
2021-03-29T15:06:53.000Z
--- - hosts: localhost connection: local gather_facts: no tasks: - name: Creates an new ec2 key with mentioned name if not present ec2_key: region: "{{ vpc_region }}" name: "{{ key_name }}" key_material: "{{ lookup('file', ssh_key_location ) }}" - name: Create ec2 security group ec2_group: name: "allow-inbound-ssh-http-https" description: Allow Inbound Traffic vpc_id: "{{ vpc_id }}" region: "{{ vpc_region }}" rules: - proto: tcp from_port: 22 to_port: 22 cidr_ip: 0.0.0.0/0 - proto: tcp from_port: 80 to_port: 80 cidr_ip: 0.0.0.0/0 - proto: tcp from_port: 443 to_port: 443 cidr_ip: 0.0.0.0/0 - name: Create ec2 instance ec2: count: 1 wait: yes monitoring: no wait_timeout: 600 image: "{{ image }}" assign_public_ip: yes instance_type: t2.micro region: "{{ vpc_region }}" key_name: "{{ key_name }}" instance_tags: "{{ tags }}" vpc_subnet_id: "{{ vpc_subnet_id }}" group: "allow-inbound-ssh-http-https" register: ec2 - name: Create RDS security group ec2_group: name: "allow-mysql-from-vpc" description: Allow Mysql Traffic vpc_id: "{{ vpc_id }}" region: "{{ vpc_region }}" rules: - proto: tcp from_port: 3306 to_port: 3306 cidr_ip: "{{ '.'.join(ec2.instances[0].private_ip.split('.')[:2]) + '.0.0/16' }}" register: rds_sg - name: Create RDS rds: command: create publicly_accessible: no region: "{{ vpc_region }}" vpc_security_groups: "{{ rds_sg.group_id }}" instance_name: "{{ tags['Name'] }}" db_engine: "{{ rds_db_engine }}" size: "{{ rds_db_size }}" db_name: "{{ rds_db_name }}" instance_type: "{{ rds_instance_type }}" username: "{{ rds_db_username }}" password: "{{ rds_db_password }}" backup_retention: "{{ backup_retention_period }}" wait: yes wait_timeout: 1200 tags: "{{ tags }}" register: rds - name: Write the RDS facts/values to the file rds_info.yml inside the project directory shell: | echo "db_engine: {{ rds_db_engine|lover }}" > rds_info.yml echo "db_hostname: {{ rds.instance.endpoint }}" >> rds_info.yml echo "db_name: {{ rds_db_name }}" >> rds_info.yml echo "db_username: {{ rds_db_username }}" >> rds_info.yml echo "db_password: {{ rds_db_password }}" >> rds_info.yml
31.011364
93
0.536827
0e704ec6f51a183780c7ac00a78e341a4f337b77
2,632
yml
YAML
.github/workflows/test.yml
babbageclunk/k8s-infra
52c1c1f7ae05bc298b9f1cdc09935c05e6c4f766
[ "MIT" ]
null
null
null
.github/workflows/test.yml
babbageclunk/k8s-infra
52c1c1f7ae05bc298b9f1cdc09935c05e6c4f766
[ "MIT" ]
null
null
null
.github/workflows/test.yml
babbageclunk/k8s-infra
52c1c1f7ae05bc298b9f1cdc09935c05e6c4f766
[ "MIT" ]
null
null
null
name: ci on: push: branches: - master pull_request: branches: - master jobs: build-docker: strategy: matrix: go-version: [1.14.x] platform: [ubuntu-latest] runs-on: ${{ matrix.platform }} steps: - name: Install Go uses: actions/setup-go@v1 with: go-version: ${{ matrix.go-version }} - name: Checkout code uses: actions/checkout@v2 - name: Build docker image run: make docker-build test-generator: strategy: matrix: go-version: [1.14.x] platform: [ubuntu-latest] runs-on: ${{ matrix.platform }} steps: - name: Install Go uses: actions/setup-go@v1 with: go-version: ${{ matrix.go-version }} - name: Checkout code uses: actions/checkout@v2 - name: Make test generator run: make -C ./hack/generator ci - name: Coveralls uses: coverallsapp/github-action@master with: github-token: ${{ secrets.github_token }} path-to-lcov: ./hack/generator/coverage.lcov flag-name: generator parallel: true test-controller: strategy: matrix: go-version: [1.14.x] platform: [ubuntu-latest] runs-on: ${{ matrix.platform }} env: AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }} AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} steps: - name: Install Go uses: actions/setup-go@v1 with: go-version: ${{ matrix.go-version }} - name: Checkout code uses: actions/checkout@v2 - name: Make integration test run: make test-cover-int if: ${{ env.AZURE_TENANT_ID != '' }} - name: Make test run: make test-cover if: ${{ env.AZURE_TENANT_ID == '' }} - name: Convert coverage to lcov uses: jandelgado/gcov2lcov-action@v1.0.2 with: infile: cover.out outfile: coverage.lcov - name: Coveralls uses: coverallsapp/github-action@master with: github-token: ${{ secrets.github_token }} path-to-lcov: coverage.lcov flag-name: controller parallel: true coveralls-complete: needs: [test-controller, test-generator] runs-on: ubuntu-latest steps: - name: Coveralls uses: coverallsapp/github-action@v1.1.1 with: github-token: ${{ secrets.github_token }} parallel-finished: true
28.923077
65
0.574088
117706b8e0541da262a7fb471acbbd368b34d51e
1,118
yml
YAML
.vsts-linux-build.yml
DEBSUBHRO/Uno.SkiaSharp.Extended
078b8f8401d89e383c5bbc52cd9630f48878ff0e
[ "MIT" ]
14
2019-09-20T22:37:09.000Z
2021-12-01T02:28:26.000Z
.vsts-linux-build.yml
DEBSUBHRO/Uno.SkiaSharp.Extended
078b8f8401d89e383c5bbc52cd9630f48878ff0e
[ "MIT" ]
2
2019-08-29T15:01:12.000Z
2019-10-31T11:37:13.000Z
.vsts-linux-build.yml
DEBSUBHRO/Uno.SkiaSharp.Extended
078b8f8401d89e383c5bbc52cd9630f48878ff0e
[ "MIT" ]
2
2019-10-01T11:51:41.000Z
2019-10-12T10:44:25.000Z
parameters: pool: '' jobs: - job: Windows pool: vmImage: 'vs2017-win2016' variables: NUGET_PACKAGES: $(build.sourcesdirectory)/.nuget steps: - checkout: self clean: true - task: GitVersion@4 inputs: updateAssemblyInfo: false - task: NuGetToolInstaller@0 inputs: versionSpec: 4.9.1 checkLatest: false - task: MSBuild@1 inputs: solution: $(build.sourcesdirectory)/SkiaSharp.Extended*/*.sln msbuildLocationMethod: version msbuildVersion: latest msbuildArchitecture: x86 msbuildArguments: /r /p:Configuration=Release /detailedsummary "/p:PackageOutputPath=$(build.artifactstagingdirectory)\nuget" "/p:PackageVersion=$(GITVERSION.FullSemVer)" "/p:InformationalVersion=$(GITVERSION.InformationalVersion)" /detailedsummary clean: false maximumCpuCount: true restoreNugetPackages: false logProjectEvents: false createLogFile: false - task: PublishBuildArtifacts@1 inputs: PathtoPublish: $(build.artifactstagingdirectory) ArtifactName: skiasharp-drop ArtifactType: Container
26
255
0.703041
118b286428a27df299fe8742a72c6f328c418d96
54
yml
YAML
ansible/roles/cloud_web/tasks/main.yml
Ooyekunle/dummytestFeb172020
fbf0f966d38a90af4fede4c1deef341bf9f7d8c3
[ "RSA-MD" ]
null
null
null
ansible/roles/cloud_web/tasks/main.yml
Ooyekunle/dummytestFeb172020
fbf0f966d38a90af4fede4c1deef341bf9f7d8c3
[ "RSA-MD" ]
null
null
null
ansible/roles/cloud_web/tasks/main.yml
Ooyekunle/dummytestFeb172020
fbf0f966d38a90af4fede4c1deef341bf9f7d8c3
[ "RSA-MD" ]
null
null
null
--- # tasks file for cloud_web - import_tasks: 05.yml
13.5
26
0.703704
2289436b93d417664d5d5370a1f26372e15a3be9
49
yml
YAML
lib/include/gliml/fips.yml
Mokosha/GenTC
7e0ed0c1366ed06d1f401c9043c89786b4c32046
[ "Apache-2.0" ]
118
2016-10-16T04:15:10.000Z
2021-10-07T19:38:14.000Z
lib/include/gliml/fips.yml
Mokosha/GST
7e0ed0c1366ed06d1f401c9043c89786b4c32046
[ "Apache-2.0" ]
3
2017-05-22T17:04:35.000Z
2021-08-18T05:36:26.000Z
lib/include/gliml/fips.yml
Mokosha/GST
7e0ed0c1366ed06d1f401c9043c89786b4c32046
[ "Apache-2.0" ]
12
2016-10-16T04:13:36.000Z
2021-09-08T06:55:25.000Z
# # gliml # --- exports: header-dirs: [ . ]
6.125
22
0.44898
202e3585e522afa5681d588b513ab7f9d7264751
547
yaml
YAML
pubspec.yaml
mnordine/StageXL_RichTextField
07f0ff9149d8d6d925fdbe4d332b5ce92023b2be
[ "BSD-2-Clause" ]
null
null
null
pubspec.yaml
mnordine/StageXL_RichTextField
07f0ff9149d8d6d925fdbe4d332b5ce92023b2be
[ "BSD-2-Clause" ]
null
null
null
pubspec.yaml
mnordine/StageXL_RichTextField
07f0ff9149d8d6d925fdbe4d332b5ce92023b2be
[ "BSD-2-Clause" ]
null
null
null
name: stagexl_richtextfield version: 0.1.4 authors: - Alex Gann <k.alexgann@gmail.com> - Bernhard Pichler <support@stagexl.org> author: description: StageXL Extension for RichTextField support. homepage: https://github.com/bp74/StageXL_RichTextField documentation: https://github.com/bp74/StageXL_RichTextField dependencies: browser: '>=0.10.0 <0.11.0' stagexl: git: https://github.com/mnordine/StageXL transformers: - $dart2js: commandLineOptions: ["--trust-type-annotations", "--trust-primitives", "--dump-info"] minify: true
27.35
89
0.749543
aa786332623027ba9a60dd8ae2caaf847d8530e1
1,114
yml
YAML
section_4/cis_4.1/cis_4.1.13.yml
ihotz/RHEL7-CIS-Audit
9f1663d5f2fec1dae1ed7801f2fb8cb4335a8f84
[ "MIT" ]
null
null
null
section_4/cis_4.1/cis_4.1.13.yml
ihotz/RHEL7-CIS-Audit
9f1663d5f2fec1dae1ed7801f2fb8cb4335a8f84
[ "MIT" ]
null
null
null
section_4/cis_4.1/cis_4.1.13.yml
ihotz/RHEL7-CIS-Audit
9f1663d5f2fec1dae1ed7801f2fb8cb4335a8f84
[ "MIT" ]
null
null
null
{{ if .Vars.rhel7cis_rule_4_1_13 }} command: auditd_delete_cnf: title: 4.1.13 Ensure file deletion events by users are collected (Automated) exec: grep delete /etc/audit/rules.d/*.rules exit-status: 0 stdout: - '/-a always,exit -F arch=b64 -S unlink -S unlinkat -S rename -S renameat -F auid>=1000 -F auid!=4294967295 -k delete|-a always,exit -F arch=b64 -S rmdir,unlink,unlinkat,rename -S renameat -F auid>=1000 -F auid!=4294967295 -F key=delete/' - '/-a always,exit -F arch=b32 -S unlink -S unlinkat -S rename -S renameat -F auid>=1000 -F auid!=4294967295 -k delete|-a always,exit -F arch=b32 -S rmdir,unlink,unlinkat,rename -S renameat -F auid>=1000 -F auid!=4294967295 -F key=delete/' auditd_delete_live: title: 4.1.13 Ensure file deletion events by users are collected (Automated) exec: auditctl -l | grep delete exit-status: 0 stdout: - '-a always,exit -F arch=b64 -S rename,unlink,unlinkat,renameat -F auid>=1000 -F auid!=-1 -F key=delete' - '-a always,exit -F arch=b32 -S unlink,rename,unlinkat,renameat -F auid>=1000 -F auid!=-1 -F key=delete' {{ end }}
65.529412
243
0.690305
d870d931aa1be3453a6421093c53cb9d642d7feb
699
yml
YAML
.github/workflows/build-upload-action.yml
TerryMooreII/js-tools
a10c3a4891432b162575f05e0701ecfd02b61f44
[ "MIT" ]
null
null
null
.github/workflows/build-upload-action.yml
TerryMooreII/js-tools
a10c3a4891432b162575f05e0701ecfd02b61f44
[ "MIT" ]
null
null
null
.github/workflows/build-upload-action.yml
TerryMooreII/js-tools
a10c3a4891432b162575f05e0701ecfd02b61f44
[ "MIT" ]
null
null
null
name: CI -> Deploy to My website on: push: branches: [ main ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 # Here is the deployment action - name: Use Node.js 14 uses: actions/setup-node@v2 with: node-version: '14' - run: npm ci - run: npm run build - name: Upload from public_html via FTP uses: SamKirkland/FTP-Deploy-Action@4.0.0 with: server: ${{ secrets.FTP_SERVER }} username: ${{ secrets.FTP_USERNAME }} password: ${{ secrets.FTP_PASSWORD }} local-dir: "./www/tools/" server-dir: "./" dangerous-clean-slate: true
26.884615
49
0.555079
5f4624cf2170372e6eccd6afd9a5b487494625b6
862
yml
YAML
_config.yml
muyousome/muyousome.github.io
bad0de2d230b3482272ec7bf509b6b30fb628335
[ "MIT" ]
null
null
null
_config.yml
muyousome/muyousome.github.io
bad0de2d230b3482272ec7bf509b6b30fb628335
[ "MIT" ]
null
null
null
_config.yml
muyousome/muyousome.github.io
bad0de2d230b3482272ec7bf509b6b30fb628335
[ "MIT" ]
null
null
null
# Site settings title: Will Shen header-img: img/home-bg.jpg email: muyousome@gmail.com copyright_name: Your/Project/Corporate Name description: > # this means to ignore newlines until "baseurl:" Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description. baseurl: "" # the subpath of your site, e.g. /blog/ url: "http://yourdomain.com" # the base hostname & protocol for your site twitter_username: muyousome github_username: muyousome facebook_username: IronSummitMedia email_username: your-email@yourdomain.com # Build settings markdown: kramdown highlighter: rouge permalink: pretty paginate: 5 exclude: ["less","node_modules","Gruntfile.js","package.json","README.md"] gems: [jekyll-paginate, jekyll-feed]
35.916667
74
0.774942
f0f97d3c1f76149fd639005ac20e484400ada6d7
895
yml
YAML
.github/workflows/lint_optional.yml
lanl/scico
976c9e5833f8f67eed2eaa43460d89fb09bb9f78
[ "BSD-3-Clause" ]
18
2021-09-21T18:55:11.000Z
2022-03-21T20:13:05.000Z
.github/workflows/lint_optional.yml
lanl/scico
976c9e5833f8f67eed2eaa43460d89fb09bb9f78
[ "BSD-3-Clause" ]
218
2021-09-21T21:45:08.000Z
2022-03-30T18:45:27.000Z
.github/workflows/lint_optional.yml
lanl/scico
976c9e5833f8f67eed2eaa43460d89fb09bb9f78
[ "BSD-3-Clause" ]
2
2021-09-23T22:44:47.000Z
2021-12-18T16:01:43.000Z
# Runs optional, "nice to have" formatting checks name: optional lint # Controls when the action will run. on: push: branches: - main pull_request: # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: # This workflow contains a single job lint-optional: # The type of runner that the job will run on runs-on: ubuntu-latest # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 - uses: actions/setup-python@v2 with: python-version: "3.8" - name: Install pylint run: | pip install pylint - name: Pylint code analysis run: | pylint --disable=all --enable=missing-docstring scico
25.571429
88
0.64581
1cc73e32f45c622bc352926c515f96cf02a3381b
2,460
yml
YAML
.github/workflows/ci.yml
ci7lus/elaina
f722bb1a3377ef7a057cb3a45a6988bbd960bb70
[ "MIT" ]
24
2020-12-23T07:17:57.000Z
2021-12-07T15:19:18.000Z
.github/workflows/ci.yml
ci7lus/elaina
f722bb1a3377ef7a057cb3a45a6988bbd960bb70
[ "MIT" ]
14
2021-03-17T04:30:13.000Z
2022-03-28T22:51:18.000Z
.github/workflows/ci.yml
ci7lus/elaina
f722bb1a3377ef7a057cb3a45a6988bbd960bb70
[ "MIT" ]
1
2021-02-04T06:03:01.000Z
2021-02-04T06:03:01.000Z
name: CI on: push: branches: - "**" tags-ignore: - "**" pull_request: jobs: lint: runs-on: ubuntu-latest strategy: matrix: node-version: [12.x] steps: - uses: actions/checkout@v1 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - uses: actions/cache@v2 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-yarn- - name: Install run: | yarn - name: Lint run: | yarn lint:prettier yarn lint:eslint - name: Type inspection run: | yarn tsc build: runs-on: ubuntu-latest strategy: matrix: node-version: [12.x] needs: lint steps: - uses: actions/checkout@v1 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - uses: actions/cache@v2 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-yarn- - name: Install run: | yarn - name: Build run: | yarn build - name: Upload dist artifact uses: actions/upload-artifact@v2 with: name: dist path: dist - name: Prepare to deploy to surge run: | cp dist/index.html dist/200.html - name: Deploy to surge if: ${{ github.ref == 'refs/heads/master' && github.repository_owner == 'ci7lus' }} uses: dswistowski/surge-sh-action@v1 with: domain: "elaina.surge.sh" project: "./dist" login: ${{ secrets.SURGE_LOGIN }} token: ${{ secrets.SURGE_TOKEN }}
27.333333
107
0.518293
e78bd3c90fc7e9e575da8146ba4ba3f1e5aebdc9
212
yml
YAML
vendor/plugins/LogicalAuthz/spec/fixtures/permissions.yml
LRDesign/Convection
145a950ccb0fba9a434927acc33594215e4684f8
[ "MIT" ]
null
null
null
vendor/plugins/LogicalAuthz/spec/fixtures/permissions.yml
LRDesign/Convection
145a950ccb0fba9a434927acc33594215e4684f8
[ "MIT" ]
1
2018-01-30T15:34:36.000Z
2018-01-30T15:34:36.000Z
vendor/plugins/LogicalAuthz/spec/fixtures/permissions.yml
LRDesign/Convection
145a950ccb0fba9a434927acc33594215e4684f8
[ "MIT" ]
null
null
null
controller_access: group: theincrowd controller: foo action_access: group: theincrowd controller: bar action: baz record_access: group: theincrowd controller: wire action: vinyl subject_id: 1
14.133333
19
0.75
788e8dc24dfffa243c3e4f9bcd3127f7c9372fab
10,568
yaml
YAML
consul-helm/values.yaml
mpw07458/kubespray-scripts
ff3554ab2c789683e26b4ec780876fa9d84af38f
[ "Apache-2.0" ]
1
2019-02-16T20:19:00.000Z
2019-02-16T20:19:00.000Z
consul-helm/values.yaml
mpw07458/kubespray-ansible-scripts
ff3554ab2c789683e26b4ec780876fa9d84af38f
[ "Apache-2.0" ]
null
null
null
consul-helm/values.yaml
mpw07458/kubespray-ansible-scripts
ff3554ab2c789683e26b4ec780876fa9d84af38f
[ "Apache-2.0" ]
null
null
null
# Available parameters and their default values for the Consul chart. global: # enabled is the master enabled switch. Setting this to true or false # will enable or disable all the components within this chart by default. # Each component can be overridden using the component-specific "enabled" # value. enabled: true # Domain to register the Consul DNS server to listen for. domain: consul # Image is the name (and tag) of the Consul Docker image for clients and # servers below. This can be overridden per component. # # Examples: # image: "consul:1.4.2" # image: "consul:1.4.2-ent" # Enterprise Consul image image: "consul:1.4.2" # imageK8S is the name (and tag) of the consul-k8s Docker image that # is used for functionality such as the catalog sync. This can be overridden # per component below. imageK8S: "hashicorp/consul-k8s:0.5.0" # Datacenter is the name of the datacenter that the agents should register # as. This shouldn't be changed once the Consul cluster is up and running # since Consul doesn't support an automatic way to change this value # currently: https://github.com/hashicorp/consul/issues/1858 datacenter: dc1 # Server, when enabled, configures a server cluster to run. This should # be disabled if you plan on connecting to a Consul cluster external to # the Kube cluster. server: enabled: "-" image: null replicas: 3 bootstrapExpect: 3 # Should <= replicas count # enterpriseLicense refers to a Kubernetes secret that you have created that # contains your enterprise license. It is required if you are using an # enterprise binary. Defining it here applies it to your cluster once a leader # has been elected. If you are not using an enterprise image # or if you plan to introduce the license key via another route, then set # these fields to null. enterpriseLicense: secretName: null secretKey: null # storage and storageClass are the settings for configuring stateful # storage for the server pods. storage should be set to the disk size of # the attached volume. storageClass is the class of storage which defaults # to null (the Kube cluster will pick the default). storage: 10Gi storageClass: null # connect will enable Connect on all the servers, initializing a CA # for Connect-related connections. Other customizations can be done # via the extraConfig setting. connect: true # Resource requests, limits, etc. for the server cluster placement. This # should map directly to the value of the resources field for a PodSpec, # formatted as a multi-line string. By default no direct resource request # is made. resources: null # updatePartition is used to control a careful rolling update of Consul # servers. This should be done particularly when changing the version # of Consul. Please refer to the documentation for more information. updatePartition: 0 # disruptionBudget enables the creation of a PodDisruptionBudget to # prevent voluntary degrading of the Consul server cluster. disruptionBudget: enabled: true # maxUnavailable will default to (n/2)-1 where n is the number of # replicas. If you'd like a custom value, you can specify an override here. maxUnavailable: null # extraConfig is a raw string of extra configuration to set with the # server. This should be JSON. extraConfig: | {} # extraVolumes is a list of extra volumes to mount. These will be exposed # to Consul in the path `/consul/userconfig/<name>/`. The value below is # an array of objects, examples are shown below. extraVolumes: [] # - type: secret (or "configMap") # name: my-secret # load: false # if true, will add to `-config-dir` to load by Consul # Affinity Settings # Commenting out or setting as empty the affinity variable, will allow # deployment to single node services such as Minikube affinity: | podAntiAffinity: requiredDuringSchedulingIgnoredDuringExecution: - labelSelector: matchLabels: app: {{ template "consul.name" . }} release: "{{ .Release.Name }}" component: server topologyKey: kubernetes.io/hostname # Client, when enabled, configures Consul clients to run on every node # within the Kube cluster. The current deployment model follows a traditional # DC where a single agent is deployed per node. client: enabled: "-" image: null join: null # grpc should be set to true if the gRPC listener should be enabled. # This should be set to true if connectInject is enabled. grpc: false # Resource requests, limits, etc. for the client cluster placement. This # should map directly to the value of the resources field for a PodSpec, # formatted as a multi-line string. By default no direct resource request # is made. resources: null # extraConfig is a raw string of extra configuration to set with the # server. This should be JSON. extraConfig: | {} # extraVolumes is a list of extra volumes to mount. These will be exposed # to Consul in the path `/consul/userconfig/<name>/`. The value below is # an array of objects, examples are shown below. extraVolumes: [] # - type: secret (or "configMap") # name: my-secret # load: false # if true, will add to `-config-dir` to load by Consul # Configuration for DNS configuration within the Kubernetes cluster. # This creates a service that routes to all agents (client or server) # for serving DNS requests. This DOES NOT automatically configure kube-dns # today, so you must still manually configure a `stubDomain` with kube-dns # for this to have any effect: # https://kubernetes.io/docs/tasks/administer-cluster/dns-custom-nameservers/#configure-stub-domain-and-upstream-dns-servers dns: enabled: "-" ui: # True if you want to enable the Consul UI. The UI will run only # on the server nodes. This makes UI access via the service below (if # enabled) predictable rather than "any node" if you're running Consul # clients as well. enabled: "-" # True if you want to create a Service entry for the Consul UI. # # serviceType can be used to control the type of service created. For # example, setting this to "LoadBalancer" will create an external load # balancer (for supported K8S installations) to access the UI. service: enabled: true type: null # syncCatalog will run the catalog sync process to sync K8S with Consul # services. This can run bidirectional (default) or unidirectionally (Consul # to K8S or K8S to Consul only). # # This process assumes that a Consul agent is available on the host IP. # This is done automatically if clients are enabled. If clients are not # enabled then set the node selection so that it chooses a node with a # Consul agent. syncCatalog: # True if you want to enable the catalog sync. "-" for default. enabled: false image: null default: true # true will sync by default, otherwise requires annotation # toConsul and toK8S control whether syncing is enabled to Consul or K8S # as a destination. If both of these are disabled, the sync will do nothing. toConsul: true toK8S: true # k8sPrefix is the service prefix to prepend to services before registering # with Kubernetes. For example "consul-" will register all services # prepended with "consul-". (Consul -> Kubernetes sync) k8sPrefix: null # k8sTag is an optional tag that is applied to all of the Kubernetes services # that are synced into Consul. If nothing is set, defaults to "k8s". # (Kubernetes -> Consul sync) k8sTag: null # syncClusterIPServices syncs services of the ClusterIP type, which may # or may not be broadly accessible depending on your Kubernetes cluster. # Set this to false to skip syncing ClusterIP services. syncClusterIPServices: true # nodePortSyncType configures the type of syncing that happens for NodePort # services. The valid options are: ExternalOnly, InternalOnly, ExternalFirst. # - ExternalOnly will only use a node's ExternalIP address for the sync # - InternalOnly use's the node's InternalIP address # - ExternalFirst will preferentially use the node's ExternalIP address, but # if it doesn't exist, it will use the node's InternalIP address instead. nodePortSyncType: ExternalFirst # aclSyncToken refers to a Kubernetes secret that you have created that contains # an ACL token for your Consul cluster which allows the sync process the correct # permissions. This is only needed if ACLs are enabled on the Consul cluster. aclSyncToken: secretName: null secretKey: null # ConnectInject will enable the automatic Connect sidecar injector. connectInject: enabled: false image: null # image for consul-k8s that contains the injector default: false # true will inject by default, otherwise requires annotation # imageConsul and imageEnvoy can be set to Docker images for Consul and # Envoy, respectively. If the Consul image is not specified, the global # default will be used. If the Envoy image is not specified, an early # version of Envoy will be used. imageConsul: null imageEnvoy: null # namespaceSelector is the selector for restricting the webhook to only # specific namespaces. This should be set to a multiline string. namespaceSelector: null # The certs section configures how the webhook TLS certs are configured. # These are the TLS certs for the Kube apiserver communicating to the # webhook. By default, the injector will generate and manage its own certs, # but this requires the ability for the injector to update its own # MutatingWebhookConfiguration. In a production environment, custom certs # should probaly be used. Configure the values below to enable this. certs: # secretName is the name of the secret that has the TLS certificate and # private key to serve the injector webhook. If this is null, then the # injector will default to its automatic management mode that will assign # a service account to the injector to generate its own certificates. secretName: null # caBundle is a base64-encoded PEM-encoded certificate bundle for the # CA that signed the TLS certificate that the webhook serves. This must # be set if secretName is non-null. caBundle: "" # certName and keyName are the names of the files within the secret for # the TLS cert and private key, respectively. These have reasonable # defaults but can be customized if necessary. certName: tls.crt keyName: tls.key
41.606299
124
0.73855
f6018a66015f99f197b8f04c80123ad903fbcc07
834
yml
YAML
heartbeat.yml
soam9/Moi
d4ad9bd06035dc7e0e0f9cb9e4ba4d6a2bbd2503
[ "Apache-2.0" ]
null
null
null
heartbeat.yml
soam9/Moi
d4ad9bd06035dc7e0e0f9cb9e4ba4d6a2bbd2503
[ "Apache-2.0" ]
null
null
null
heartbeat.yml
soam9/Moi
d4ad9bd06035dc7e0e0f9cb9e4ba4d6a2bbd2503
[ "Apache-2.0" ]
null
null
null
heartbeat.monitors: - type: http schedule: '@every 5s' urls: - http://capes-elasticsearch-1:9200 - http://capes-elasticsearch-2:9200 - http://capes-elasticsearch-3:9200 - http://capes-kibana:5601 - http://capes-thehive-elasticsearch:9200 - http://capes-portainer:9000 - https://capes-landing-page:443 - http://capes-cyberchef:8080 - http://capes-gitea:3000 - http://capes-etherpad:9001 - http://capes-thehive:9000 # - http://capes-cortex:9000 - http://capes-rocketchat:3000 ssl.verification_mode: none - type: icmp schedule: '@every 5s' hosts: - capes-mumble - capes-heartbeat - capes-metricbeat - capes-etherpad-mysql - capes-gitea-mysql - capes-rocketchat-mongo output.elasticsearch: hosts: '${ELASTICSEARCH_HOSTS:capes-elasticsearch-1:9200}'
26.0625
60
0.667866
6b4dc48e6daadf9cd78053f1c6423db9f0ce21c5
980
yml
YAML
translations/administration.en.yml
famoser/vseth-musikzimmer-pay
727fdbd7db6c8b90dbf7701aa82cdf266ee99010
[ "MIT" ]
null
null
null
translations/administration.en.yml
famoser/vseth-musikzimmer-pay
727fdbd7db6c8b90dbf7701aa82cdf266ee99010
[ "MIT" ]
31
2020-02-24T09:22:15.000Z
2021-11-30T13:59:19.000Z
translations/administration.en.yml
famoser/vseth-musikzimmer-pay
727fdbd7db6c8b90dbf7701aa82cdf266ee99010
[ "MIT" ]
1
2021-08-12T13:30:33.000Z
2021-08-12T13:30:33.000Z
index: title: "Bill music rooms" description: "bill reservations within specific time period" no_users: "no users added" view_invoice: 'view invoice_id' view_transaction: 'view transaction_id' no_payment_remainder_yet: 'Preview the list of users & check if the numbers make sense. If all is OK, prepare the E-Mail to send to the users' payment_remainder_not_sent: 'Not all users have received their remainder email yet. Please be careful; sending a malformed email to user_count people is embarrassing! Therefore test the email first. If all went well, send the remainder to all. Maximum emails sent at one time are mailer_batch_size.' with_owed_amount: 'unpayed' without_owed_amount: 'payed' owed_amount_total: 'user_count users need to pay CHF total.00' payed_amount_total: 'user_count users payed CHF total.00' discount_total: 'user_count users received a discount of CHF total.00' start_next_period: 'start next dunning phase' previous: 'previous'
61.25
301
0.785714
6bf7c9745e5ce3e48bce4fbffe402ec2d76df52a
1,186
yml
YAML
data/problems/423.yml
zvlex/euler-manager
c61a2e2a2841b6430328cb72b99f481c39f908cd
[ "MIT" ]
null
null
null
data/problems/423.yml
zvlex/euler-manager
c61a2e2a2841b6430328cb72b99f481c39f908cd
[ "MIT" ]
null
null
null
data/problems/423.yml
zvlex/euler-manager
c61a2e2a2841b6430328cb72b99f481c39f908cd
[ "MIT" ]
null
null
null
--- :id: 423 :name: Consecutive die throws :url: https://projecteuler.net/problem=423 :content: "Let <var>n</var> be a positive integer. \nA 6-sided die is thrown <var>n</var> times. Let <var>c</var> be the number of pairs of consecutive throws that give the same value.\n\nFor example, if <var>n</var> = 7 and the values of the die throws are (1,1,5,6,6,6,3), then the following pairs of consecutive throws give the same value: \n(<u>1,1</u>,5,6,6,6,3) \n(1,1,5,<u>6,6</u>,6,3) \n(1,1,5,6,<u>6,6</u>,3) \ \nTherefore, <var>c</var> = 3 for (1,1,5,6,6,6,3).\n\nDefine C(<var>n</var>) as the number of outcomes of throwing a 6-sided die <var>n</var> times such that <var>c</var> does not exceed π(<var>n</var>).<sup>1</sup> \nFor example, C(3) = 216, C(4) = 1290, C(11) = 361912500 and C(24) = 4727547363281250000.\n\nDefine S(<var>L</var>) as ∑ C(<var>n</var>) for 1 ≤ <var>n</var> ≤ <var>L</var>. \nFor example, S(50) mod 1&nbsp;000&nbsp;000&nbsp;007 = 832833871.\n\nFind S(50&nbsp;000&nbsp;000) mod 1&nbsp;000&nbsp;000&nbsp;007.\n\n<sup>1</sup> π denotes the **prime-counting function** , i.e. π(<var>n</var>) is the number of primes ≤ <var>n</var>.\n\n"
65.888889
92
0.63828
53876117c39ac5c15b4c0aa4f5d697026a190ddf
533
yml
YAML
file-examples/TAR/directory.yml
thethales/File-Examples
42aa18892f1205efa64a03d41f675b98a5a8b55f
[ "MIT" ]
null
null
null
file-examples/TAR/directory.yml
thethales/File-Examples
42aa18892f1205efa64a03d41f675b98a5a8b55f
[ "MIT" ]
null
null
null
file-examples/TAR/directory.yml
thethales/File-Examples
42aa18892f1205efa64a03d41f675b98a5a8b55f
[ "MIT" ]
null
null
null
category: Archive File Format description: In computing, tar is a computer software utility for collecting many files into one archive file, often referred to as a tarball, for distribution or backup purposes A tar archive consists of a series of file objects, each file object includes any file data, and is preceded by a 512-byte header record. The file data is written unaltered except that its length is rounded up to a multiple of 512 bytes. See more at [tar](https://en.wikipedia.org/wiki/Tar_(computing)) title: TAR
59.222222
87
0.782364
996eb3db955a2937bdf95f3a0be7b63082002fc4
263
yml
YAML
.kitchen.yml
chavo1/packer-ami-ember
4f8a30bae3e0120c1ebe0f7f21c262955b63a58f
[ "MIT" ]
null
null
null
.kitchen.yml
chavo1/packer-ami-ember
4f8a30bae3e0120c1ebe0f7f21c262955b63a58f
[ "MIT" ]
null
null
null
.kitchen.yml
chavo1/packer-ami-ember
4f8a30bae3e0120c1ebe0f7f21c262955b63a58f
[ "MIT" ]
null
null
null
--- driver: name: ec2 instance_type: t2.micro transport: username: ubuntu provisioner: name: shell platforms: - name: ubuntu driver: image_id: ami-08345d77d866d9363 region: us-east-1 verifier: name: inspec suites: - name: default
11.954545
37
0.673004
2790e78fb40cdee8008c264c5e099d916136d981
794
yaml
YAML
rj_training_bringup/mineral_sample_sets/default.yaml
abhiramg2021/RoboJackets
48c75c95528a01f67a08e979758b7963b7570c75
[ "MIT" ]
177
2015-09-28T20:31:12.000Z
2022-02-03T23:20:56.000Z
rj_training_bringup/mineral_sample_sets/default.yaml
robinzx117/software-training
eda20e80a8a95bb46694325c5f3755909b883fd5
[ "MIT" ]
89
2016-09-24T21:52:06.000Z
2021-10-21T03:36:31.000Z
rj_training_bringup/mineral_sample_sets/default.yaml
robinzx117/software-training
eda20e80a8a95bb46694325c5f3755909b883fd5
[ "MIT" ]
252
2015-09-21T20:58:04.000Z
2022-03-21T09:31:35.000Z
- id: 10 pose: pose: position: x: 0.3 y: 0.3 z: 0.0 orientation: x: 0.0 y: 0.0 z: 0.0 w: 1.0 covariance: [50,0,0,0,0,0, 0,50,0,0,0,0, 0,0,0,0,0,0, 0,0,0,0,0,0, 0,0,0,0,0,0, 0,0,0,0,0,0] - id: 11 pose: pose: position: x: 0.4 y: -0.2 z: 0.0 orientation: x: 0.0 y: 0.0 z: 0.0 w: 1.0 covariance: [50,0,0,0,0,0, 0,50,0,0,0,0, 0,0,0,0,0,0, 0,0,0,0,0,0, 0,0,0,0,0,0, 0,0,0,0,0,0] - id: 12 pose: pose: position: x: -0.4 y: 0.3 z: 0.0 orientation: x: 0.0 y: 0.0 z: 0.0 w: 1.0 covariance: [50,0,0,0,0,0, 0,50,0,0,0,0, 0,0,0,0,0,0, 0,0,0,0,0,0, 0,0,0,0,0,0, 0,0,0,0,0,0]
19.85
96
0.377834
c8846d13b5e42b2c0c188ff29d9ab3d24707e6be
46
yaml
YAML
src/vision/config/dataset/imagenet.yaml
spencerbraun/editable_nlp
b22fb7a5c52f1002949ab60adf7d952e102c7e9d
[ "MIT" ]
2
2021-04-15T17:41:47.000Z
2021-06-13T20:14:19.000Z
src/vision/config/dataset/imagenet.yaml
spencerbraun/editable_nlp
b22fb7a5c52f1002949ab60adf7d952e102c7e9d
[ "MIT" ]
null
null
null
src/vision/config/dataset/imagenet.yaml
spencerbraun/editable_nlp
b22fb7a5c52f1002949ab60adf7d952e102c7e9d
[ "MIT" ]
null
null
null
# @package _global_ dataset: imagenet bs: 32
9.2
19
0.73913
676c3a5c992ead6ad3ac4e9e68f74d788f491eeb
101
yaml
YAML
config/config.yaml
kajchang/AsynCoin
fead895d6d1a4e4ebbe18cd1400466625211a265
[ "MIT" ]
2
2019-08-13T11:47:59.000Z
2021-05-16T12:42:27.000Z
config/config.yaml
kajchang/AsynCoin
fead895d6d1a4e4ebbe18cd1400466625211a265
[ "MIT" ]
null
null
null
config/config.yaml
kajchang/AsynCoin
fead895d6d1a4e4ebbe18cd1400466625211a265
[ "MIT" ]
null
null
null
INITIAL_REWARD: 50 INITIAL_DIFFICULTY: 1 REWARD_HALVING: 2500 DIFFICULTY_ADJUST: 250 TIME_TARGET: 10
16.833333
22
0.851485
af1c2e6cd6937650847a08e22fa1241f6587cab3
430
yml
YAML
data/pa/municipalities/Denise-Adams-c1824f18-4bca-4b98-97a5-8d4fd28e4274.yml
judgejudes/people
6b4284de4f1983eaee056565278d4487e72f825b
[ "CC0-1.0" ]
null
null
null
data/pa/municipalities/Denise-Adams-c1824f18-4bca-4b98-97a5-8d4fd28e4274.yml
judgejudes/people
6b4284de4f1983eaee056565278d4487e72f825b
[ "CC0-1.0" ]
null
null
null
data/pa/municipalities/Denise-Adams-c1824f18-4bca-4b98-97a5-8d4fd28e4274.yml
judgejudes/people
6b4284de4f1983eaee056565278d4487e72f825b
[ "CC0-1.0" ]
null
null
null
id: ocd-person/c1824f18-4bca-4b98-97a5-8d4fd28e4274 name: Denise Adams given_name: Denise family_name: Adams roles: - end_date: '2022-12-31' type: mayor jurisdiction: ocd-jurisdiction/country:us/state:pa/place:exeter/government contact_details: - note: Primary Office address: 1101 Wyoming Avenue;Exeter, PA 18643 voice: 570-654-3001 links: - url: http://www.exeterborough.com sources: - url: http://www.exeterborough.com
25.294118
76
0.772093
f166f05697381c903d095d09a06ee7e745ea6cf4
1,258
yaml
YAML
understand-k8s/configmap/read-configmap-using-pod.yaml
nishanthkumarpathi/k8s-calico-istio-training
73531166f8c749e37fabfa762983da58e6729d65
[ "Apache-2.0" ]
1
2021-03-24T18:08:39.000Z
2021-03-24T18:08:39.000Z
understand-k8s/configmap/read-configmap-using-pod.yaml
nishanthkumarpathi/k8s-calico-istio-training
73531166f8c749e37fabfa762983da58e6729d65
[ "Apache-2.0" ]
1
2022-03-14T13:31:19.000Z
2022-03-14T13:31:19.000Z
architecture/microservice/cloud native/k8s/configmap/configmap-pod.yaml
sruby/java-study
35834940b40036618d27fa6d54b21f27d8dd88c2
[ "Apache-2.0" ]
null
null
null
apiVersion: v1 kind: Pod metadata: name: configmap-demo-pod spec: containers: - name: demo image: alpine command: ["sleep", "3600"] env: # Define the environment variable - name: PLAYER_INITIAL_LIVES # Notice that the case is different here # from the key name in the ConfigMap. valueFrom: configMapKeyRef: name: game-demo # The ConfigMap this value comes from. key: player_initial_lives # The key to fetch. - name: UI_PROPERTIES_FILE_NAME valueFrom: configMapKeyRef: name: game-demo key: ui_properties_file_name volumeMounts: - name: config mountPath: "/config" readOnly: true volumes: # You set volumes at the Pod level, then mount them into containers inside that Pod - name: config configMap: # Provide the name of the ConfigMap you want to mount. name: game-demo # An array of keys from the ConfigMap to create as files items: - key: "game.properties" path: "game.properties" - key: "user-interface.properties" path: "user-interface.properties"
33.105263
87
0.583466
b812ee2fa2ec9a45d8e9eccd6e8722a3924ad854
1,146
yml
YAML
.circleci/config.yml
nanjj/go-mangos
055062f7f3e2515019cb60991130a23c723636a8
[ "Apache-2.0" ]
null
null
null
.circleci/config.yml
nanjj/go-mangos
055062f7f3e2515019cb60991130a23c723636a8
[ "Apache-2.0" ]
null
null
null
.circleci/config.yml
nanjj/go-mangos
055062f7f3e2515019cb60991130a23c723636a8
[ "Apache-2.0" ]
null
null
null
version: 2 jobs: build-1.10: docker: - image: circleci/golang:1.10 working_directory: ~/go/src/nanjj.github.io/nanomsg/go-mangos steps: - checkout - run: go get -v -t -d ./... - run: go test -v ./... build-1.9: docker: - image: circleci/golang:1.9 working_directory: ~/go/src/nanjj.github.io/nanomsg/go-mangos steps: - checkout - run: go get -v -t -d ./... - run: go test -v ./... build-1.8: docker: - image: circleci/golang:1.8 working_directory: ~/go/src/nanjj.github.io/nanomsg/go-mangos steps: - checkout - run: go get -v -t -d ./... - run: go test -v ./... build-coverage: docker: - image: circleci/golang:1.10 working_directory: ~/go/src/nanjj.github.io/nanomsg/go-mangos steps: - checkout - run: echo "$GOPATH" - run: go get -v -t -d ./... - run: bash .circleci/coverage.sh - run: bash <(curl -s https://codecov.io/bash) -t ${CODECOV_TOKEN} workflows: version: 2 build_and_test: jobs: - build-1.10 - build-1.9 - build-1.8 - build-coverage
23.387755
72
0.554101
b83f28305a9051d253a00bb7d009e3fc37b5e799
257
yml
YAML
.travis.yml
Hapag-Lloyd/https-auth-proxy
1039f5e7c2e10a1855a28ca3385365e6b0e7bfed
[ "MIT" ]
null
null
null
.travis.yml
Hapag-Lloyd/https-auth-proxy
1039f5e7c2e10a1855a28ca3385365e6b0e7bfed
[ "MIT" ]
1
2020-06-27T22:09:26.000Z
2020-06-27T22:09:26.000Z
.travis.yml
Hapag-Lloyd/https-auth-proxy
1039f5e7c2e10a1855a28ca3385365e6b0e7bfed
[ "MIT" ]
null
null
null
os: linux language: shell notifications: email: on_success: never on_failure: never services: - docker script: - docker build -t hlag/https-auth-proxy:latest . deploy: provider: script script: bash docker_push.sh on: branch: master
15.117647
50
0.70428
71ff50c262c783c6ed70a41746f7fa944c4ef9b8
326
yaml
YAML
integration_tests/http/raw-get-query.yaml
skhalsa-sigsci/nuclei
7b13c663c3d8a177f15c976fa27477557575171e
[ "MIT" ]
7,642
2020-04-04T19:37:37.000Z
2022-03-31T22:06:23.000Z
integration_tests/http/raw-get-query.yaml
skhalsa-sigsci/nuclei
7b13c663c3d8a177f15c976fa27477557575171e
[ "MIT" ]
1,113
2020-04-05T10:02:14.000Z
2022-03-31T21:45:08.000Z
integration_tests/http/raw-get-query.yaml
skhalsa-sigsci/nuclei
7b13c663c3d8a177f15c976fa27477557575171e
[ "MIT" ]
1,161
2020-04-04T20:46:09.000Z
2022-03-31T17:51:02.000Z
id: basic-raw-query-example info: name: Test RAW GET Query Template author: pdteam severity: info requests: - raw: - | GET ?test=nuclei HTTP/1.1 Host: {{Hostname}} Origin: {{BaseURL}} matchers: - type: word words: - "Test is test raw-get-query-matcher text"
18.111111
53
0.567485
13ba3b6ce6404dbc876c15d9c27d6226e52cee73
507
yaml
YAML
pubspec.yaml
svprdga/flutter_gif_app
238b341fd97c0f55b79457b6cad3e12c1dc10b12
[ "Apache-2.0" ]
null
null
null
pubspec.yaml
svprdga/flutter_gif_app
238b341fd97c0f55b79457b6cad3e12c1dc10b12
[ "Apache-2.0" ]
null
null
null
pubspec.yaml
svprdga/flutter_gif_app
238b341fd97c0f55b79457b6cad3e12c1dc10b12
[ "Apache-2.0" ]
null
null
null
name: flutter_gif_app description: A flutter app that shows GIFs. publish_to: 'none' version: 1.0.0+1 environment: sdk: ">=2.17.0 <3.0.0" dependencies: cupertino_icons: 1.0.4 flutter: sdk: flutter http: 0.13.4 infinite_scroll_pagination: 3.1.0 logger: 1.1.0 path: 1.8.1 path_provider: 2.0.10 provider: 6.0.2 share: 2.0.4 shimmer: 2.0.0 sqflite: 2.0.2+1 url_launcher: 6.1.2 dev_dependencies: lint: 1.8.2 flutter: uses-material-design: true assets: - assets/images/
16.9
43
0.674556
3541f08d4cab332a2c2e766d551b5b8acc99f8db
231
yml
YAML
history/66.yml
volfclub/travellings-upptime
19749057fd0f62bd2784205b73873e43fb7f508e
[ "MIT" ]
1
2022-01-29T12:52:08.000Z
2022-01-29T12:52:08.000Z
history/66.yml
volfclub/travellings-upptime
19749057fd0f62bd2784205b73873e43fb7f508e
[ "MIT" ]
362
2021-08-16T15:21:58.000Z
2021-09-13T16:46:18.000Z
history/66.yml
volfclub/travellings-upptime
19749057fd0f62bd2784205b73873e43fb7f508e
[ "MIT" ]
2
2021-09-22T09:49:32.000Z
2021-12-02T12:31:41.000Z
url: https://www.zqcnc.cn status: down code: 0 responseTime: 0 lastUpdated: 2021-09-12T23:17:14.060Z startTime: Tue Aug 17 2021 14:48:27 GMT+0000 (Coordinated Universal Time) generator: Upptime <https://github.com/upptime/upptime>
28.875
73
0.770563
56d1285b8bd57c1324640ccb386938d4023043ae
309
yml
YAML
_data/pictures.yml
Neubauer-Group/NeubauerGroup
70dcd587597756c340d5c572a43a06ad1e52adc4
[ "MIT" ]
null
null
null
_data/pictures.yml
Neubauer-Group/NeubauerGroup
70dcd587597756c340d5c572a43a06ad1e52adc4
[ "MIT" ]
6
2019-12-08T19:18:41.000Z
2021-02-17T03:59:28.000Z
_data/pictures.yml
Neubauer-Group/NeubauerGroup
70dcd587597756c340d5c572a43a06ad1e52adc4
[ "MIT" ]
null
null
null
- title: pic_description image: education.jpg - title: pic_description image: Group2010.pdf - title: pic_description image: HiggsDiscovery.png - title: pic_description image: NG-ATLAS.jpg - title: pic_description image: Illinois-atlas-cern.jpg - title: pic_description image: PHYS398MLA_2019.jpeg
23.769231
32
0.776699
1996c60db93fc85635934fa6cd689a31c5952c5b
92
yml
YAML
.travis.yml
noam-io/lemma-cpp
d79184348fea2a8a09142a78668c35d4854b2692
[ "BSD-3-Clause" ]
1
2017-04-14T10:15:27.000Z
2017-04-14T10:15:27.000Z
.travis.yml
noam-io/lemma-cpp
d79184348fea2a8a09142a78668c35d4854b2692
[ "BSD-3-Clause" ]
null
null
null
.travis.yml
noam-io/lemma-cpp
d79184348fea2a8a09142a78668c35d4854b2692
[ "BSD-3-Clause" ]
null
null
null
language: cpp compiler: - clang before_script: - (cd cpputest2 && ./configure && make)
13.142857
41
0.663043
8b05904c38df49481597627b05d1dc036f429f32
211
yml
YAML
.travis.yml
mrlegowatch/JSON-to-Swift-Converter
4fa9ea90359a7432c959adeca3320cb0d7fd9639
[ "MIT" ]
41
2017-03-01T23:58:36.000Z
2022-02-04T19:23:14.000Z
.travis.yml
nerdsupremacist/JSON-to-Swift-Converter
ab4a33e4ce32f5ec324d006ef79cbff9aa2a77f2
[ "MIT" ]
7
2017-04-08T18:13:12.000Z
2018-03-15T11:38:15.000Z
.travis.yml
nerdsupremacist/JSON-to-Swift-Converter
ab4a33e4ce32f5ec324d006ef79cbff9aa2a77f2
[ "MIT" ]
5
2017-04-28T19:22:24.000Z
2021-06-20T14:34:25.000Z
language: objective-c osx_image: xcode8.2 script: - set -o pipefail - travis_retry xcodebuild -workspace "JSON to Swift Converter.xcworkspace" -scheme "JSON to Swift Converter" build-for-testing test | xcpretty
35.166667
142
0.791469
c5ad4d154a5c013d19910eb1ca6f3faefca84b83
210
yml
YAML
.pipelines/templates/cluster-health-template.yml
aramase/kubernetes-kms
57b116e6ce14fb1677ac8b4901157e21a4932715
[ "MIT" ]
150
2018-03-14T17:11:42.000Z
2022-03-29T04:51:43.000Z
.pipelines/templates/cluster-health-template.yml
aramase/kubernetes-kms
57b116e6ce14fb1677ac8b4901157e21a4932715
[ "MIT" ]
75
2018-03-15T01:51:23.000Z
2022-03-31T00:29:23.000Z
.pipelines/templates/cluster-health-template.yml
aramase/kubernetes-kms
57b116e6ce14fb1677ac8b4901157e21a4932715
[ "MIT" ]
33
2018-03-15T07:33:17.000Z
2022-03-25T06:30:10.000Z
steps: - script: | kubectl wait --for=condition=ready node --all kubectl wait pod -n kube-system --for=condition=Ready --all kubectl get nodes -owide displayName: "Check cluster health"
30
65
0.666667
c5d611fe76683d866b0c624a609016911a96e3ff
306
yml
YAML
_data/navigation.yml
talentceffort/talentceffort.github.io
98c7edc4918d02b7e64cb96824cbe38aa82da749
[ "MIT" ]
null
null
null
_data/navigation.yml
talentceffort/talentceffort.github.io
98c7edc4918d02b7e64cb96824cbe38aa82da749
[ "MIT" ]
1
2022-03-25T20:57:56.000Z
2022-03-25T20:57:56.000Z
_data/navigation.yml
talentceffort/talentceffort.github.io
98c7edc4918d02b7e64cb96824cbe38aa82da749
[ "MIT" ]
null
null
null
# main links main: #- title: "Quick-Start Guide" # url: https://mmistakes.github.io/minimal-mistakes/docs/quick-start-guide/ - title: "About" url: /about/ - title: "Category" url: /categories/ - title: "Blog" url: /categories/Blog/ - title: "TIL" url: /categories/TIL/
23.538462
78
0.607843
bc84d06b4ac83698611f7be24ba1fdc1435a4abd
5,215
yml
YAML
dash_app/config/config.yml
zhampel/ClaimMapping
33084058ca61d0396daabd056b968884ede81209
[ "Apache-2.0" ]
2
2020-11-22T03:32:27.000Z
2020-12-14T22:47:43.000Z
dash_app/config/config.yml
zhampel/ClaimMapping
33084058ca61d0396daabd056b968884ede81209
[ "Apache-2.0" ]
1
2020-12-17T16:03:22.000Z
2020-12-17T18:34:05.000Z
dash_app/config/config.yml
zhampel/ClaimMapping
33084058ca61d0396daabd056b968884ede81209
[ "Apache-2.0" ]
2
2020-12-02T20:20:02.000Z
2020-12-17T00:20:24.000Z
#data data: data_file_path: 'data/only_narrative2.csv' data_type: 'read_csv' #plotly figures plotly_figures: #configurations for the scatter geo plot figures: #Filled Area Chart - Plotly Express Figure area: rangeslider: True scatter: title: 'Left/Right Bias Over Time by Narrative' colors: label: 'Center' color: 'rgb(255,127,0)' label2: 'not available' color2: 'rgb(153,153,153)' label3: 'Left' color3: 'rgb(55,126,184)' label4: 'Right' color4: 'rgb(228,26,28)' #Scatter Geo Plotly Express Figures scatterGeo: animation_frame: 'date' #legend color: 'narratives' hover_name: 'narratives' hover_data: long: False lat: False full_text: False created_at: True tweet_user: True source_tweeter: True source: False source_bias: True title: 'COVID-19 Narrative Mapping' #configurations for the dash app dash_app: external_stylesheets: 'https://codepen.io/chriddyp/pen/bWLwgP.css' dash_text: intro_P1: "IQT Labs created this narrative & claim-mapping visualization tool (currently in prototype) to enable \"information epidemiology,\" using a data set of tweets with misleading claims about COVID-19. We wanted to map tweets relating to specific claims or narratives in geographic and \"left/right\" space, as well as time. This enables us to visualize the lifecycle of a claim or narrative: when and where did a narrative originate, how did it propagate, and is it still active? We were also interested in seeing which narratives or claims become politicized over time. The current prototype displays 563 tweets from March-May 2020, containing 59 unique URL links about Cures, Prevention, or Origins, many of which are misleading. Where available, we include metadata on source bias for each URL, with news source domain bias derived from the NELA-GT-2019 Dataset. Future versions will integrate with our automated claim-matching API, which identifies close semantic matches from Tweets to previously fact-checked claims. Read our " intro_P2: " to see how we made the dataset as well as how you can use this open source visualization with your own data!" #Left Side of Dash App leftSide: headingLeft: "Mapping Tweets by Topic/Narrative, Location, & Date" tabLeft: 'All Topics' #column name in dataframe valueLeft: 'topics' tabRight: 'Narratives by Topic' valueRight: 'narratives' valueDefault: 'topics' tabRight_subtxt: "Select a topic to view specific narratives" #Right side of Dash app rightSide: headingRight: "Metadata Analysis" tab1: 'Topics Per Day' valueTab1: 'tab-1' tab2: 'Narratives Per Day' valueTab2: 'tab-2' tab3: 'Left/Right Bias' valueTab3: 'tab-3' #Figures text on right side of dash app figures: tab1: area_title: "Number of Tweets per day by Claim" area_legend: "topics" area_subtxt: 'Select a range to narrow the view. Click on a narrative category to hide it.' tab2: area_title: "Number of Tweets per day by Narrative" area_legend: "narratives" area_subtxt: 'Select a range to narrow the view. Click on a narrative category to hide it.' tab3: area_legend: 'narratives' area_subtxt: "Left/Right Biases were obtained from the " area_linkTxt: 'NELA-GT-2019 Dataset' area_link: 'https://dataverse.harvard.edu/dataset.xhtml?persistentId=doi:10.7910/DVN/O7FWPO' #Tweet Metadata text tweetMeta: title: 'Tweet Metadata' intro_P: 'If the text gets cut off, use the track pad to scroll right/left.' full_text_id: 4 source_url_id: 11 bias_id: 12 #Styles for the dash app styles: font-family: 'tahoma' overflowX: 'scroll' font-size: '14px' #Styles for the tabs on the dash app tab: height: '44px' font-family: 'tahoma' borderBottom: '1px solid #d6d6d6' padding: '6px' fontWeight: 'bold' borderTop: '1px solid #d6d6d6' backgroundColor: 'rgb(255,255,255)' color: 'white' #Need this to be true so that you won't get errors from having nested callbacks callback_exceptions: True #Title of dash app title: 'COVID-19 Narrative & Claim-Mapping' #the circle buttons below the Scatter Geo Plotly Express Figures radio_items: #Radio Item Buttons for the Twitter Metadata twitter: label1: 'Show Tweet Metadata' value1: 'showMeta' label2: 'Hide Tweet Metadata' value2: 'hideMeta' defaultValue: 'hideMeta' #show it horizontally display: 'inline-block' #Radio Item buttons for switching the geo scope of the map for scatter geo plotly express figure world: label1: 'United States' value1: 'usa' label2: 'Europe' value2: 'europe' label3: 'Asia' value3: 'asia' label4: 'Africa' value4: 'africa' label5: 'South America' value5: 'south america' label6: 'World' value6: 'world' defaultValue: 'usa'
36.725352
1,045
0.669032
62971a92d328beada0474edcf3e2c0e4af2efc84
576
yml
YAML
data/id/retired/John-W-Goedde-930c9292-2693-499a-89e5-9d010b5a3fed.yml
Rypo/people
34cf10bf10313f154f5065dde578bed9b4127ae8
[ "CC0-1.0" ]
1
2019-12-11T17:38:21.000Z
2019-12-11T17:38:21.000Z
data/id/retired/John-W-Goedde-930c9292-2693-499a-89e5-9d010b5a3fed.yml
Rypo/people
34cf10bf10313f154f5065dde578bed9b4127ae8
[ "CC0-1.0" ]
null
null
null
data/id/retired/John-W-Goedde-930c9292-2693-499a-89e5-9d010b5a3fed.yml
Rypo/people
34cf10bf10313f154f5065dde578bed9b4127ae8
[ "CC0-1.0" ]
null
null
null
id: ocd-person/930c9292-2693-499a-89e5-9d010b5a3fed name: John W. Goedde given_name: John family_name: Goedde middle_name: W. party: - name: Republican roles: - district: '4' jurisdiction: ocd-jurisdiction/country:us/state:id/government type: upper start_date: '2011-01-01' end_date: '2014-12-31' image: http://legislature.idaho.gov/images/Goedde85.jpg links: - url: http://legislature.idaho.gov/senate/membershipSingle.cfm?ID=85 sources: - url: http://legislature.idaho.gov/senate/membership.cfm other_identifiers: - identifier: IDL000012 scheme: legacy_openstates
26.181818
69
0.774306
5c1a19156bf77153cab7bff1f11be68e9d139f22
127
yaml
YAML
tests/minimal/phase1/ssz_static/ShardState/ssz_one/case_17/roots.yaml
vapory-testing/vap2.0-spec-tests
b4283b90ecb9178d011863f4fb14efefce53d82f
[ "MIT" ]
1
2021-11-20T20:19:46.000Z
2021-11-20T20:19:46.000Z
tests/minimal/phase1/ssz_static/ShardState/ssz_one/case_17/roots.yaml
vapory-testing/vap2.0-spec-tests
b4283b90ecb9178d011863f4fb14efefce53d82f
[ "MIT" ]
null
null
null
tests/minimal/phase1/ssz_static/ShardState/ssz_one/case_17/roots.yaml
vapory-testing/vap2.0-spec-tests
b4283b90ecb9178d011863f4fb14efefce53d82f
[ "MIT" ]
null
null
null
version https://git-lfs.github.com/spec/v1 oid sha256:3506343fc30509dd9ff597962dd9547fa027ecce6d3f2178d5b42bad9e60a6b8 size 77
31.75
75
0.88189
9692b22fb528dd47f7360b715f466dbeb192fc4a
210
yml
YAML
.travis.yml
IK3I/NodePack
900eb9dd01d6d1c3ae3d76bf22086a2db0c323e0
[ "MIT" ]
1
2018-01-21T04:49:53.000Z
2018-01-21T04:49:53.000Z
.travis.yml
IK3I/NodePack
900eb9dd01d6d1c3ae3d76bf22086a2db0c323e0
[ "MIT" ]
null
null
null
.travis.yml
IK3I/NodePack
900eb9dd01d6d1c3ae3d76bf22086a2db0c323e0
[ "MIT" ]
null
null
null
language: node_js node_js: - stable before_install: - chmod +x node_modules/istanbul/lib/cli.js - chmod +x node_modules/coveralls/bin/coveralls.js install: - npm install script: - npm run cover
14
52
0.719048
ba3f8540babbce8bce9304be938600af8175e221
1,298
yml
YAML
roles/springboot/tasks/main.yml
nicolasclaudon/ansible-deployment
d7c913cafce885eb336611d729bd50e2c530dfce
[ "Apache-2.0" ]
null
null
null
roles/springboot/tasks/main.yml
nicolasclaudon/ansible-deployment
d7c913cafce885eb336611d729bd50e2c530dfce
[ "Apache-2.0" ]
null
null
null
roles/springboot/tasks/main.yml
nicolasclaudon/ansible-deployment
d7c913cafce885eb336611d729bd50e2c530dfce
[ "Apache-2.0" ]
null
null
null
--- # tasks file for springboot - name: "Create group for springboot app" group: name: "{{ service_group }}" state: present - name: "Create user for springboot app" user: name: "{{ service_user }}" group: "{{ service_group }}" state: present - name: "Create deploy folder if not exists" file: path: "{{ sb_deploy_folder }}" state: directory owner: "{{ service_user }}" group: "{{ service_group }}" - name: "Create conf folder if not exists" file: path: "{{ app_conf_folder }}" state: directory owner: "{{ service_user }}" group: "{{ service_group }}" - name: "Copy jar application" copy: src: "{{ sb_src_file }}" #TODO change the name of the destination file by having a variable for the src filename and a src path dest: "{{ sb_deploy_folder }}/{{ sb_app_name }}.jar" owner: "{{ service_user }}" group: "{{ service_group }}" mode: "u+x" when: sb_src_file is defined and sb_src_file|length > 0 # notify: # - "Restart application" - name: "Download springboot application" get_url: url: "{{ sb_src_url }}" dest: "{{ sb_deploy_folder }}" owner: "{{ service_user }}" group: "{{ service_group }}" mode: "u+x" when: sb_src_url is defined # notify: # - "Restart application"
25.96
106
0.618644
a2fbddfa83c3573be7177e77793fb309c21db273
85
yml
YAML
.travis.yml
jsse-2017-ph23/rpi-button
1d238eba2e209f9a46ba427fcac7dfde0f68600e
[ "MIT" ]
1
2017-08-25T08:31:01.000Z
2017-08-25T08:31:01.000Z
.travis.yml
jsse-2017-ph23/rpi-button
1d238eba2e209f9a46ba427fcac7dfde0f68600e
[ "MIT" ]
null
null
null
.travis.yml
jsse-2017-ph23/rpi-button
1d238eba2e209f9a46ba427fcac7dfde0f68600e
[ "MIT" ]
null
null
null
language: python python: - "3.6" install: "pip install flake8" script: "flake8 ."
10.625
29
0.670588
80c52fea089654fda15ffe45dd4f635e768c6589
1,693
yml
YAML
.travis.yml
odedre/grommet-ui
9664ef26c177ec7611d445c0aa84741c2a148778
[ "Apache-2.0" ]
1
2019-02-12T18:10:22.000Z
2019-02-12T18:10:22.000Z
.travis.yml
odedre/grommet-ui
9664ef26c177ec7611d445c0aa84741c2a148778
[ "Apache-2.0" ]
null
null
null
.travis.yml
odedre/grommet-ui
9664ef26c177ec7611d445c0aa84741c2a148778
[ "Apache-2.0" ]
null
null
null
language: node_js node_js: - '6.9.1' sudo: false cache: directories: - node_modules install: - npm install - npm install -g codeclimate-test-reporter before_script: - npm rebuild node-sass - gulp generate-index-icons - gulp preprocess - gulp dist-css script: - | if [ "$TEST_TYPE" = build ]; then npm test else if [[ $TRAVIS_PULL_REQUEST == 'false' ]]; then gulp $TEST_TYPE; fi fi after_success: - | if [ "$TEST_TYPE" = build ]; then gulp coveralls codeclimate-test-reporter < coverage/lcov.info if [ "${TRAVIS_PULL_REQUEST}" = "false" ] && [ "$TRAVIS_BRANCH" = "master" ]; then git config credential.helper "store --file=.git/credentials" echo "https://${GH_TOKEN}:@github.com" > .git/credentials git config --global user.name "Grommet Community Bot" git config --global user.email "asouza@hp.com" gulp dist gulp release:stable fi fi env: matrix: - TEST_TYPE=build notifications: slack: secure: KO4NG+slaqtFbK5T2FpkR8vgUPfZA5nf+oGDhOCFQXwfcEje/auWKdbSEzCMJ8RMl039wYjtz5iyN6bumD5FYuZFXAddeRiCtaIVqr/r6A536ldneQFTiieyeOYKJkh42hahjstcAKCv0mWr1GZGFc2cyNaoSZvE8/LNcOZy3Rne3ZPAgNMVKF3xkYFUzQOQLJsMEq7sW8LX+Z9zO+OAGjV3uEbiEYlS+N/0VW+ziz+TL+/gNf0rvzAjRd5v/VRudNxuVqx/frpYJzxGS6EHy1vVWFo6NomqBXHQvaEY+W+oorND6Jg0VNhJLCXOk2xxx0JZul2GurkQGex9b3UoARLTWarwOC9Vm/IhZ9Tc57H0U8B7Qxyb0KFacXJPeMqb2tPgNC0/wSIX8uLqlyUJnPqiRgII3W2V1YG3bWJssHNqg5F8WbD+kIphr4ghrW//8EZvcgVK/QS/yIXGLqKYygOYajXoHeb+dR0eCvE2b1wGG/EoZlZcaH2q9lE+1hmyli7MAW3aCmpCEoDUFPq5a8fcdDnYiGV5s1TPbPGvOsd2kYmeFnh71po+GgO07c+1QPLAXiW0YO8hzENi6HMcAdqcKMFXFWYD0fMNPSES/HwIFlAW/c1UBdh7KYCpZ4zljLrHyj1CAM8jXWJ7MTbJYsYHFNHA4eWNZotNLYvQgvs= matrix: fast_finish: true
37.622222
696
0.781453
9401fdf69f3d5bc615df864adbe74e6144ed87cc
1,559
yaml
YAML
sensor/dark_sky.yaml
davcalS/home-assistant-config-fr
f684c88dca811ad9994c84d7537defa01e7422f8
[ "Apache-2.0" ]
null
null
null
sensor/dark_sky.yaml
davcalS/home-assistant-config-fr
f684c88dca811ad9994c84d7537defa01e7422f8
[ "Apache-2.0" ]
null
null
null
sensor/dark_sky.yaml
davcalS/home-assistant-config-fr
f684c88dca811ad9994c84d7537defa01e7422f8
[ "Apache-2.0" ]
null
null
null
############################################################ ## ## ## METEO ## ## ## ############################################################ - platform: darksky api_key: !secret dark_sky_key forecast: - 1 - 2 - 3 - 4 - 5 monitored_conditions: - icon - summary - humidity - temperature - temperature_high - temperature_low - apparent_temperature - apparent_temperature_high - apparent_temperature_low - wind_speed - wind_bearing - precip_type - precip_probability - precip_accumulation - precip_intensity - precip_intensity_max - uv_index - daily_summary - pressure - visibility update_interval: minutes: 15 ### UV ### - platform: template sensors: uv: friendly_name: Indice UV icon_template: mdi:sunglasses value_template: >- {{ states('sensor.dark_sky_uv_index') }} uv_friendly: friendly_name: Indice UV icon_template: mdi:sunglasses value_template: >- {% set uv = states('sensor.dark_sky_uv_index') | int(-1) %} {% if uv >= 11 %} Extreme {% elif uv >= 8 %} Very high {% elif uv >= 6 %} Elevé {% elif uv >= 3 %} Modéré {% elif uv >= 0 %} Faible {% else %} unknown {% endif %}
23.268657
67
0.440026
74bb7de760d93692cd9623af2ddcaec30c5b3f22
675
yaml
YAML
_data/poems/xli-poems/sonnets-vi.yaml
failpyre/cummings.ee
0e0ea70f11386adbeb365da2af69c4c25196c033
[ "Unlicense" ]
null
null
null
_data/poems/xli-poems/sonnets-vi.yaml
failpyre/cummings.ee
0e0ea70f11386adbeb365da2af69c4c25196c033
[ "Unlicense" ]
null
null
null
_data/poems/xli-poems/sonnets-vi.yaml
failpyre/cummings.ee
0e0ea70f11386adbeb365da2af69c4c25196c033
[ "Unlicense" ]
null
null
null
title: Sonnets VI first_line: when the proficient poison sure sleep text: |-1 when the proficient poison sure sleep bereaves us of our slow tranquillities and He without Whose favour nothing is (being of men called Love) upward doth leap from the mute hugeness of depriving deep, with thunder of those hungering wings of His, into the lucent and large signories —i shall not smile beloved;i shall not weep: when from the less-then-whiteness of thy face (whose eyes inherit vacancy) will time extract his inconsiderable doom, when these they lips beautifully embrace nothing and when thy bashful hands assume silence beyond the mystery of rhyme
25
49
0.774815
ac09ca7d62606791643f6d85e22225920e6849d4
114
yaml
YAML
curations/pypi/pypi/-/PyAudio.yaml
bsiegel/curated-data
4898be5f683a8a93f677df1e5f4890793f9bbeb5
[ "CC0-1.0", "MIT" ]
34
2017-12-13T09:17:46.000Z
2022-03-01T23:59:52.000Z
curations/pypi/pypi/-/PyAudio.yaml
bsiegel/curated-data
4898be5f683a8a93f677df1e5f4890793f9bbeb5
[ "CC0-1.0", "MIT" ]
17,730
2017-12-13T20:19:55.000Z
2022-03-31T23:21:15.000Z
curations/pypi/pypi/-/PyAudio.yaml
bsiegel/curated-data
4898be5f683a8a93f677df1e5f4890793f9bbeb5
[ "CC0-1.0", "MIT" ]
33
2017-12-13T00:00:01.000Z
2022-03-14T12:19:26.000Z
coordinates: name: PyAudio provider: pypi type: pypi revisions: 0.2.11: licensed: declared: MIT
12.666667
19
0.649123
636e33e5638746180c3461d1d86a0b7c43d88920
305
yml
YAML
gyh-page/src/main/resources/application.yml
javaxiu-com/store
16aac4fbd7437c7c4a37c9324ee84bb1038d5e63
[ "MIT" ]
6
2019-08-12T11:26:38.000Z
2020-04-13T13:02:29.000Z
gyh-page/src/main/resources/application.yml
javaxiu-com/store
16aac4fbd7437c7c4a37c9324ee84bb1038d5e63
[ "MIT" ]
6
2021-01-05T13:16:54.000Z
2022-02-18T07:54:27.000Z
gyh-page/src/main/resources/application.yml
javaxiu-com/store
16aac4fbd7437c7c4a37c9324ee84bb1038d5e63
[ "MIT" ]
null
null
null
server: port: 8084 spring: application: name: page-service #把thymeleaf 缓存关闭 thymeleaf: cache: false rabbitmq: host: 192.168.232.131 virtual-host: /gyhqq username: gyhqq password: gyhqq eureka: client: service-url: defaultZone: http://127.0.0.1:10086/eureka
16.944444
48
0.652459
12ec7f3641114e3e51d2bedd40bf8fd5d60c024f
1,788
yml
YAML
preview-packages/docs-ref-autogen/@azure/arm-datafactory/KnownIntegrationRuntimeState.yml
iwonapytel/azure-docs-sdk-node
b7682643f0bedeb5485f8ab7307741a75ce9ac98
[ "CC-BY-4.0", "MIT" ]
null
null
null
preview-packages/docs-ref-autogen/@azure/arm-datafactory/KnownIntegrationRuntimeState.yml
iwonapytel/azure-docs-sdk-node
b7682643f0bedeb5485f8ab7307741a75ce9ac98
[ "CC-BY-4.0", "MIT" ]
null
null
null
preview-packages/docs-ref-autogen/@azure/arm-datafactory/KnownIntegrationRuntimeState.yml
iwonapytel/azure-docs-sdk-node
b7682643f0bedeb5485f8ab7307741a75ce9ac98
[ "CC-BY-4.0", "MIT" ]
null
null
null
### YamlMime:TSEnum name: KnownIntegrationRuntimeState uid: '@azure/arm-datafactory.KnownIntegrationRuntimeState' package: '@azure/arm-datafactory' summary: 'Known values of <xref:IntegrationRuntimeState> that the service accepts.' fullName: KnownIntegrationRuntimeState remarks: '' isPreview: false isDeprecated: false fields: - name: AccessDenied uid: '@azure/arm-datafactory.KnownIntegrationRuntimeState.AccessDenied' package: '@azure/arm-datafactory' summary: '' - name: Initial uid: '@azure/arm-datafactory.KnownIntegrationRuntimeState.Initial' package: '@azure/arm-datafactory' summary: '' - name: Limited uid: '@azure/arm-datafactory.KnownIntegrationRuntimeState.Limited' package: '@azure/arm-datafactory' summary: '' - name: NeedRegistration uid: '@azure/arm-datafactory.KnownIntegrationRuntimeState.NeedRegistration' package: '@azure/arm-datafactory' summary: '' - name: Offline uid: '@azure/arm-datafactory.KnownIntegrationRuntimeState.Offline' package: '@azure/arm-datafactory' summary: '' - name: Online uid: '@azure/arm-datafactory.KnownIntegrationRuntimeState.Online' package: '@azure/arm-datafactory' summary: '' - name: Started uid: '@azure/arm-datafactory.KnownIntegrationRuntimeState.Started' package: '@azure/arm-datafactory' summary: '' - name: Starting uid: '@azure/arm-datafactory.KnownIntegrationRuntimeState.Starting' package: '@azure/arm-datafactory' summary: '' - name: Stopped uid: '@azure/arm-datafactory.KnownIntegrationRuntimeState.Stopped' package: '@azure/arm-datafactory' summary: '' - name: Stopping uid: '@azure/arm-datafactory.KnownIntegrationRuntimeState.Stopping' package: '@azure/arm-datafactory' summary: ''
35.058824
83
0.732662
08b1f738030b34d9e536eb6e9db6dbacc9fd1f32
1,358
yaml
YAML
charts/ndtech-buildbarn/templates/storage/storage-statefulset.yaml
22ndtech/ndtech-buildbarn
e0e4e215bc0afc932a80cb6391b7bcf8f0618ba0
[ "MIT" ]
null
null
null
charts/ndtech-buildbarn/templates/storage/storage-statefulset.yaml
22ndtech/ndtech-buildbarn
e0e4e215bc0afc932a80cb6391b7bcf8f0618ba0
[ "MIT" ]
null
null
null
charts/ndtech-buildbarn/templates/storage/storage-statefulset.yaml
22ndtech/ndtech-buildbarn
e0e4e215bc0afc932a80cb6391b7bcf8f0618ba0
[ "MIT" ]
1
2021-03-22T02:20:27.000Z
2021-03-22T02:20:27.000Z
--- apiVersion: apps/v1 kind: StatefulSet metadata: name: storage namespace: {{ .Values.deployment.namespace }} spec: replicas: 2 selector: matchLabels: app: storage serviceName: storage template: metadata: labels: app: storage spec: containers: - args: - /config/storage.jsonnet image: buildbarn/bb-storage:20210322T220628Z-125ead3 name: storage ports: - containerPort: 8981 protocol: TCP volumeMounts: - mountPath: /config/ name: configs readOnly: true - mountPath: /cas name: cas - mountPath: /ac name: ac volumes: - name: configs projected: sources: - configMap: name: storage items: - key: storage.jsonnet path: storage.jsonnet - configMap: name: common items: - key: common.libsonnet path: common.libsonnet volumeClaimTemplates: - metadata: name: cas spec: accessModes: - ReadWriteOnce resources: requests: storage: 12Gi - metadata: name: ac spec: accessModes: - ReadWriteOnce resources: requests: storage: 1Gi
21.21875
60
0.519146
4a0b940267075eff6d04cbd748f73f199d9fad1e
172
yml
YAML
_data/projects/search/releases/5.10/5.10.0.CR1.yml
froque/hibernate.org
b107e8f5fa33a21e03d687a83be0536420d9773d
[ "Apache-2.0" ]
26
2015-02-01T13:01:15.000Z
2021-12-20T10:54:13.000Z
_data/projects/search/releases/5.10/5.10.0.CR1.yml
froque/hibernate.org
b107e8f5fa33a21e03d687a83be0536420d9773d
[ "Apache-2.0" ]
57
2015-01-12T12:49:56.000Z
2022-03-08T15:34:45.000Z
_data/projects/search/releases/5.10/5.10.0.CR1.yml
froque/hibernate.org
b107e8f5fa33a21e03d687a83be0536420d9773d
[ "Apache-2.0" ]
37
2015-01-11T13:33:54.000Z
2021-12-30T15:44:16.000Z
date: 2018-05-04 stable: false announcement_url: http://in.relation.to/2018/05/09/hibernate-search-5-10-0-CR1/ summary: Upgrade to ORM 5.3.0.CR2, bugfixes and improvements
34.4
79
0.773256
fee523df57e5d2ede87e20558c501b4ed2f74adf
1,247
yml
YAML
.circleci/config.yml
muamichali/covid-public-api-build
8760fdc4f471e2974d31cee08b0c740f76d82c41
[ "Apache-2.0" ]
null
null
null
.circleci/config.yml
muamichali/covid-public-api-build
8760fdc4f471e2974d31cee08b0c740f76d82c41
[ "Apache-2.0" ]
null
null
null
.circleci/config.yml
muamichali/covid-public-api-build
8760fdc4f471e2974d31cee08b0c740f76d82c41
[ "Apache-2.0" ]
null
null
null
version: 2.1 orbs: coveralls: coveralls/coveralls@1.0.4 executors: main-executor: docker: - image: circleci/node:10.19.0 environment: TZ: 'America/New_York' jobs: test: executor: main-executor steps: - checkout - run: name: install command: 'npm install' - run: name: test command: 'npm run test:coverage' - coveralls/upload: path_to_lcov: './junit.xml' lint: executor: main-executor steps: - checkout - run: name: install command: 'npm install' - run: name: test command: 'npm run test:lint' build: executor: main-executor steps: - checkout - run: name: install command: 'npm install' - run: name: build command: 'npm run build' - run: name: compare command: 'npm run test:compare' - run: name: compress api files command: 'tar -czvf api-files.tar.gz ./_api' - store_artifacts: path: api-files.tar.gz destination: api-files workflows: version: 2 build_and_test: jobs: - lint - test - build
20.442623
54
0.523657
df947ceb90b41a1474fec05d9c167afefbb91d10
615
yml
YAML
docs-ref-autogen/azure-mgmt-datafactory/azure.mgmt.datafactory.models.azure_queue_sink.yml
jongio/azure-docs-sdk-python
873a603f099a83cbdbe531fb930b97078e134b62
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs-ref-autogen/azure-mgmt-datafactory/azure.mgmt.datafactory.models.azure_queue_sink.yml
jongio/azure-docs-sdk-python
873a603f099a83cbdbe531fb930b97078e134b62
[ "CC-BY-4.0", "MIT" ]
null
null
null
docs-ref-autogen/azure-mgmt-datafactory/azure.mgmt.datafactory.models.azure_queue_sink.yml
jongio/azure-docs-sdk-python
873a603f099a83cbdbe531fb930b97078e134b62
[ "CC-BY-4.0", "MIT" ]
null
null
null
### YamlMime:UniversalReference api_name: [] items: - children: - azure.mgmt.datafactory.models.azure_queue_sink.AzureQueueSink fullName: azure.mgmt.datafactory.models.azure_queue_sink langs: - python module: azure.mgmt.datafactory.models.azure_queue_sink name: azure_queue_sink type: module uid: azure.mgmt.datafactory.models.azure_queue_sink references: - fullName: azure.mgmt.datafactory.models.azure_queue_sink.AzureQueueSink isExternal: false name: AzureQueueSink parent: azure.mgmt.datafactory.models.azure_queue_sink uid: azure.mgmt.datafactory.models.azure_queue_sink.AzureQueueSink
32.368421
73
0.814634
61f8027e0a4fa5b094241ade03ef44991f1bd028
576
yaml
YAML
install.conf.yaml
RyBrNet/dotfiles
6526f96ead7e5018634bb55fb7625fc2edfacce1
[ "MIT" ]
1
2020-04-21T22:57:16.000Z
2020-04-21T22:57:16.000Z
install.conf.yaml
RyBrNet/dotfiles
6526f96ead7e5018634bb55fb7625fc2edfacce1
[ "MIT" ]
24
2020-08-24T13:32:58.000Z
2022-01-31T13:07:30.000Z
install.conf.yaml
RyBrNet/dotfiles
6526f96ead7e5018634bb55fb7625fc2edfacce1
[ "MIT" ]
null
null
null
- defaults: link: relink: true - clean: ['~'] - link: ~/.vimrc: vimrc ~/.gitconfig: gitconfig ~/.p10k.zsh: p10k.zsh ~/.tmux.conf: .tmux/.tmux.conf ~/.tmux.conf.local: tmux.conf.local ~/.zprezto: prezto ~/.zlogin: prezto/runcoms/zlogin ~/.zlogout: prezto/runcoms/zlogout ~/.zpreztorc: prezto/runcoms/zpreztorc ~/.zprofile: prezto/runcoms/zprofile ~/.zshenv: prezto/runcoms/zshenv ~/.zshrc: prezto/runcoms/zshrc - create: - ~/downloads #- shell: # - chsh -s $(which zsh) # fails due to needing password
22.153846
59
0.607639
d8ee90bd4e68cf240a44a0a81668e1390949760c
12
yaml
YAML
config/pb.yaml
gofunct/pb
51958b5486d5ae73fb387cf120771808c4bc2ef5
[ "Apache-2.0" ]
null
null
null
config/pb.yaml
gofunct/pb
51958b5486d5ae73fb387cf120771808c4bc2ef5
[ "Apache-2.0" ]
null
null
null
config/pb.yaml
gofunct/pb
51958b5486d5ae73fb387cf120771808c4bc2ef5
[ "Apache-2.0" ]
null
null
null
in: . out: .
6
6
0.416667
23029da6c30518836b705c74b83bf9c45672657c
2,497
yaml
YAML
infra/helm/symphony/templates/store.deployment.yaml
danielrh135568/symphony-1
54c92a0f8775d1a837ab7c7bd6a08ccd906d28a4
[ "BSD-3-Clause" ]
null
null
null
infra/helm/symphony/templates/store.deployment.yaml
danielrh135568/symphony-1
54c92a0f8775d1a837ab7c7bd6a08ccd906d28a4
[ "BSD-3-Clause" ]
12
2022-02-14T04:20:30.000Z
2022-03-28T04:20:17.000Z
infra/helm/symphony/templates/store.deployment.yaml
danielrh135568/symphony-1
54c92a0f8775d1a837ab7c7bd6a08ccd906d28a4
[ "BSD-3-Clause" ]
1
2022-02-24T21:47:51.000Z
2022-02-24T21:47:51.000Z
{{- /* Copyright (c) 2004-present Facebook All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. */ -}} apiVersion: apps/v1 kind: Deployment metadata: name: {{ template "symphony.store.fullname" . }} labels: {{- include "symphony.store.metaLabels" . | nindent 4}} {{- with .Values.store.deploymentAnnotations }} annotations: {{- toYaml . | nindent 4 }} {{- end }} spec: {{- with .Values.store.updateStrategy }} strategy: {{- toYaml . | nindent 4 }} {{- end }} replicas: {{ .Values.store.replicas }} selector: matchLabels: {{- include "symphony.store.selectorLabels" . | nindent 6 }} template: metadata: labels: {{- include "symphony.store.selectorLabels" . | nindent 8 }} {{- with .Values.store.podAnnotations }} annotations: {{- toYaml . | nindent 8 }} {{- end }} spec: serviceAccountName: {{ template "symphony.store.serviceAccountName" . }} {{- with .Values.store.securityContext }} securityContext: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.store.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.store.tolerations }} tolerations: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.store.affinity }} affinity: {{- toYaml . | nindent 8 }} {{- end }} {{- include "symphony.imagePullSecrets" . | indent 6 }} containers: - name: store image: {{ default (print .Values.global.image.registry "/store") .Values.store.image.repository }}:{{ default .Values.global.image.tag .Values.store.image.tag }} imagePullPolicy: {{ default .Values.global.image.pullPolicy .Values.store.image.pullPolicy }} args: {{- include "symphony.listenArgs" .Values.store | nindent 12 }} - --bucket-url={{ required ".Values.store.spec.bucket.url is required" .Values.store.spec.bucket.url }} env: {{- include "symphony.loggingEnv" .Values.store | nindent 12 }} {{- include "symphony.tracingEnv" . | nindent 12 }} {{- with .Values.store.spec.extraEnvVars }} {{- toYaml . | nindent 12 }} {{- end }} ports: {{- include "symphony.containerPorts" .Values.store | nindent 12 }} {{- include "symphony.probes" .Values.store | indent 10 }} resources: {{- toYaml .Values.store.resources | nindent 12 }}
43.051724
171
0.598318
89d6b036f41882c73a13af45a7353059ac47931a
17
yml
YAML
.github/ FUNDING.yml
Byron/rust-dangerous
9021f78213d5d6622a514a1f9085d515a654e260
[ "MIT" ]
48
2020-10-08T12:20:39.000Z
2021-11-02T01:30:27.000Z
.github/ FUNDING.yml
Byron/rust-dangerous
9021f78213d5d6622a514a1f9085d515a654e260
[ "MIT" ]
32
2020-10-07T05:13:35.000Z
2021-03-26T05:29:49.000Z
.github/ FUNDING.yml
Byron/rust-dangerous
9021f78213d5d6622a514a1f9085d515a654e260
[ "MIT" ]
3
2021-09-29T07:45:59.000Z
2021-11-15T09:45:41.000Z
github: [avitex]
8.5
16
0.705882
e8fd53d478469a00bb2c8850acd83acc8559f5d9
180
yml
YAML
src/data/circuits/silverstone.yml
F1DB/f1db
5a4fb148e6baf50443758086924922ce5d108916
[ "CC-BY-4.0" ]
9
2021-11-29T07:57:56.000Z
2022-03-16T21:08:58.000Z
src/data/circuits/silverstone.yml
F1DB/f1db
5a4fb148e6baf50443758086924922ce5d108916
[ "CC-BY-4.0" ]
1
2021-12-31T09:24:54.000Z
2021-12-31T10:36:13.000Z
src/data/circuits/silverstone.yml
F1DB/f1db
5a4fb148e6baf50443758086924922ce5d108916
[ "CC-BY-4.0" ]
1
2022-01-02T21:58:05.000Z
2022-01-02T21:58:05.000Z
id: silverstone name: Silverstone fullName: Silverstone Circuit previousNames: type: RACE placeName: Silverstone countryId: united-kingdom latitude: 52.078611 longitude: -1.016944
18
29
0.827778
ce824bebd07d6848c7be2156b01159c2cbb6de49
570
yml
YAML
_data/navigation.yml
dhancodes/dhancodes.github.io
c0ffef3bae7ce0d7583a21c1f0ceb3fd93d1f1f2
[ "MIT" ]
1
2021-08-08T10:03:04.000Z
2021-08-08T10:03:04.000Z
_data/navigation.yml
dhancodes/dhancodes.github.io
c0ffef3bae7ce0d7583a21c1f0ceb3fd93d1f1f2
[ "MIT" ]
null
null
null
_data/navigation.yml
dhancodes/dhancodes.github.io
c0ffef3bae7ce0d7583a21c1f0ceb3fd93d1f1f2
[ "MIT" ]
null
null
null
# main links main: # - title: "Publications" # url: /publications/ # # - title: "Talks" # url: /talks/ # # - title: "Teaching" # url: /teaching/ # # - title: "Blog Posts" # url: /year-archive/ # - title: "Contact Me" # url: /contactme/ - title: "Blog" url: /posts/ - title: "Photos" url: /photos/ - title: "Useful Links" url: /useful_links/ # - title: "Guide" #url: /markdown/
19
41
0.403509
ce88ea0188a81c77fc6a6bec4ffce341d44cee34
725
yaml
YAML
vulns/tremor/OSV-2020-113.yaml
asraa/oss-fuzz-vulns
2626548a02f8ec5f2830e8700720815869ea24c5
[ "CC-BY-4.0" ]
null
null
null
vulns/tremor/OSV-2020-113.yaml
asraa/oss-fuzz-vulns
2626548a02f8ec5f2830e8700720815869ea24c5
[ "CC-BY-4.0" ]
null
null
null
vulns/tremor/OSV-2020-113.yaml
asraa/oss-fuzz-vulns
2626548a02f8ec5f2830e8700720815869ea24c5
[ "CC-BY-4.0" ]
null
null
null
id: OSV-2020-113 package: name: tremor ecosystem: OSS-Fuzz summary: Heap-buffer-overflow in vorbis_book_decodev_add details: | OSS-Fuzz report: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=22207 Crash type: Heap-buffer-overflow READ 4 Crash state: vorbis_book_decodev_add _01inverse res1_inverse severity: MEDIUM affects: ranges: - type: GIT repo: https://gitlab.xiph.org/xiph/tremor.git introduced: 7c30a66346199f3f09017a09567c6c8a3a0eedc8:b56ffce0c0773ec5ca04c466bc00b1bbcaf65aef fixed: 562307a4a7082e24553f3d2c55dab397a17c4b4f references: - https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=22207 modified: '2021-03-09T04:49:05.105345Z' created: '2020-06-24T01:51:14.665804Z'
29
97
0.784828
0b0da272449879bfb451b8fd3b9254d4dd6c3497
1,002
yml
YAML
manifest.yml
alexandreroman/spring-cloud-gateway-routing-demo
ae6953058201d3c924a9a7be0e862f012a5d0ad0
[ "Apache-2.0" ]
5
2020-01-13T21:37:30.000Z
2020-10-27T01:45:26.000Z
manifest.yml
alexandreroman/spring-cloud-gateway-routing-demo
ae6953058201d3c924a9a7be0e862f012a5d0ad0
[ "Apache-2.0" ]
null
null
null
manifest.yml
alexandreroman/spring-cloud-gateway-routing-demo
ae6953058201d3c924a9a7be0e862f012a5d0ad0
[ "Apache-2.0" ]
4
2020-02-04T10:35:42.000Z
2022-02-06T03:21:02.000Z
--- applications: - name: scg-routing-gateway path: gateway/target/scg-routing-gateway.jar buildpacks: - java_buildpack health-check-type: http health-check-http-endpoint: /actuator/health random-route: true env: JBP_CONFIG_OPEN_JDK_JRE: '{ jre: { version: 11.+ } }' services: - service-registry - name: scg-routing-service-a path: service-a/target/scg-routing-service-a.jar buildpacks: - java_buildpack health-check-type: http health-check-http-endpoint: /actuator/health no-route: true env: JBP_CONFIG_OPEN_JDK_JRE: '{ jre: { version: 11.+ } }' services: - service-registry - name: scg-routing-service-b path: service-b/target/scg-routing-service-b.jar buildpacks: - java_buildpack health-check-type: http health-check-http-endpoint: /actuator/health no-route: true env: JBP_CONFIG_OPEN_JDK_JRE: '{ jre: { version: 11.+ } }' services: - service-registry
26.368421
59
0.650699
0bd75f7a51f981212cd6a60484f52cbf9af5f5fc
435
yml
YAML
srl/ner/code/constraints.yml
djin31/loss-landscape
93b6a685987960cb867463994f733c51b03ae839
[ "MIT" ]
17
2019-11-19T19:02:35.000Z
2021-11-16T16:19:07.000Z
srl/ner/code/constraints.yml
djin31/loss-landscape
93b6a685987960cb867463994f733c51b03ae839
[ "MIT" ]
1
2021-05-31T11:12:02.000Z
2021-06-01T05:34:27.000Z
srl/ner/code/constraints.yml
djin31/loss-landscape
93b6a685987960cb867463994f733c51b03ae839
[ "MIT" ]
10
2019-12-06T11:32:37.000Z
2022-01-06T15:39:09.000Z
- [['B-org'], ['NNP']] - [['B-tim'], ['NNP','CD','JJ']] - [['B-geo'], ['NNP']] - [['B-gpe'], ['JJ','NNS','NNP']] - [['B-per'], ['NNP']] - [['I-per'], ['NNP']] - [['I-org'], ['NNP']] - [['I-geo'], ['NNP','NNPS']] - [['I-tim'], ['CD','NNP','NN','IN']] - [['B-eve'], ['NNP']] - [['I-eve'], ['NNP']] - [['B-art'], ['NNP','NNPS','JJ','NNS']] - [['I-art'], ['NNP']] - [['I-gpe'], ['NNP']] - [['B-nat'], ['NNP']] - [['I-nat'], ['NNP']]
22.894737
40
0.321839
78f43b1e46a560a10a76d6cc4a0866bdcf6a7c59
1,686
yml
YAML
articles/mobile-apps/toc.yml
changeworld/azure-docs.pl-pl
f97283ce868106fdb5236557ef827e56b43d803e
[ "CC-BY-4.0", "MIT" ]
null
null
null
articles/mobile-apps/toc.yml
changeworld/azure-docs.pl-pl
f97283ce868106fdb5236557ef827e56b43d803e
[ "CC-BY-4.0", "MIT" ]
null
null
null
articles/mobile-apps/toc.yml
changeworld/azure-docs.pl-pl
f97283ce868106fdb5236557ef827e56b43d803e
[ "CC-BY-4.0", "MIT" ]
null
null
null
- name: Tworzenie rzeczywistych aplikacji mobilnych przy użyciu usług firmy Microsoft href: index.md - name: Etapy tworzenia aplikacji mobilnych items: - name: Omówienie href: stages-overview.md - name: Wybór platformy tworzenia aplikacji mobilnych href: front-end-development-platform.md - name: Planowanie i projektowanie aplikacji mobilnej z usługami zaplecza items: - name: Uwierzytelnianie href: authentication.md - name: Magazyn danych href: data-storage.md - name: Bezserwerowe usługi obliczeniowe href: serverless-compute.md - name: Azure Storage href: azure-storage.md - name: Aplikacje w czasie rzeczywistym href: real-time.md - name: Kontrola źródła href: code-hosting-services.md - name: DevOps items: - name: Co to jest metodyka DevOps? href: devops.md - name: Ciągła kompilacja i integracja href: continuous-integration.md - name: Testowanie na rzeczywistych urządzeniach href: test.md - name: Ciągłe dostarczanie href: continuous-delivery.md - name: Analizowanie użycia i zachowania użytkowników href: analytics.md - name: Raportowanie błędów w czasie rzeczywistym href: diagnostics.md - name: Powiadomienia push href: push-notifications.md - name: Usługi dodatkowe items: - name: Azure Cognitive Services href: cognitive-services.md - name: Azure Maps href: azure-maps.md - name: Azure Content Delivery Network href: azure-cdn.md - name: Azure Cognitive Search href: azure-search.md
35.125
85
0.660735
883feaef6e5ce0d5c730b6c3a93cbf0a0ca797f8
659
yaml
YAML
stacker/buildpspec.yaml
aditibiramane/aws_pipeline
cf5b046a8b2b43b2b768b1de22ffe9aa8b762a0b
[ "MIT-0" ]
11
2019-11-15T15:52:21.000Z
2021-11-03T14:55:10.000Z
stacker/buildpspec.yaml
aditibiramane/aws_pipeline
cf5b046a8b2b43b2b768b1de22ffe9aa8b762a0b
[ "MIT-0" ]
null
null
null
stacker/buildpspec.yaml
aditibiramane/aws_pipeline
cf5b046a8b2b43b2b768b1de22ffe9aa8b762a0b
[ "MIT-0" ]
13
2019-12-02T18:43:51.000Z
2021-12-28T11:33:50.000Z
version: 0.2 env: variables: stacker_master_profile_name: "stacker_master" stacker_profiles_file: "stacker-profiles" stacker_orchestration_file: "stacker-config.yaml" phases: pre_build: commands: - pip install --upgrade pip - pip install stacker==1.7.0 - env && ls -lha && python --version build: commands: - export AWS_CONFIG_FILE="${CODEBUILD_SRC_DIR}/${StackerConfigPath}/${stacker_profiles_file}" - echo "AWS_CONFIG_FILE=${AWS_CONFIG_FILE}" - stacker build "${CODEBUILD_SRC_DIR}/${StackerConfigPath}/${stacker_orchestration_file}" --profile $stacker_master_profile_name --recreate-failed
28.652174
152
0.710167
f71408f6b231e9f14c6323c7a199cfb95c14d1d4
305
yml
YAML
openid_fix/openid_fix_original_fixed/config/locales/uk.yml
harold-s/harold-s
a508bd9f6ab591b265ba711073beed1aace900af
[ "Apache-2.0" ]
3
2015-03-27T17:14:58.000Z
2015-09-14T13:17:36.000Z
openid_fix/openid_fix_original_fixed/config/locales/uk.yml
harold-s/harold-s
a508bd9f6ab591b265ba711073beed1aace900af
[ "Apache-2.0" ]
null
null
null
openid_fix/openid_fix_original_fixed/config/locales/uk.yml
harold-s/harold-s
a508bd9f6ab591b265ba711073beed1aace900af
[ "Apache-2.0" ]
null
null
null
uk: label_openid_authentication: Авторизація за допомогою OpenID label_openid_source_new: Нове джерело OpenID label_openid_source: Джерело OpenID label_openid_source_plural: Джерела OpenID setting_url_verification: Перевіряти OpenID URL notice_invalid_openid_source: Невідоме джерело OpenID
30.5
62
0.852459
7931619d07c683ecfcef7dd3fa290634f5545080
1,124
yaml
YAML
charts/loki-stack/templates/datasources.yaml
secustor/grafana-helm-charts
4bb0aa251026962aa213f591cdd33b9ede4024f3
[ "Apache-2.0" ]
null
null
null
charts/loki-stack/templates/datasources.yaml
secustor/grafana-helm-charts
4bb0aa251026962aa213f591cdd33b9ede4024f3
[ "Apache-2.0" ]
null
null
null
charts/loki-stack/templates/datasources.yaml
secustor/grafana-helm-charts
4bb0aa251026962aa213f591cdd33b9ede4024f3
[ "Apache-2.0" ]
null
null
null
{{- if .Values.grafana.sidecar.datasources.enabled }} apiVersion: v1 kind: ConfigMap metadata: name: {{ template "loki-stack.fullname" . }} namespace: {{ .Release.Namespace }} labels: app: {{ template "loki-stack.name" . }} chart: {{ template "loki-stack.chart" . }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} grafana_datasource: "1" data: loki-stack-datasource.yaml: |- apiVersion: 1 datasources: {{- if .Values.loki.enabled }} - name: Loki type: loki access: proxy url: http://{{(include "loki.serviceName" .)}}:{{ .Values.loki.service.port }} version: 1 isDefault: {{ .Values.loki.isDefault }} jsonData: maxLines: {{ .Values.grafana.sidecar.datasources.maxLines }} {{- end }} {{- if .Values.prometheus.enabled }} - name: Prometheus type: prometheus access: proxy url: http://{{ include "prometheus.fullname" .}}:{{ .Values.prometheus.server.service.servicePort }}{{ .Values.prometheus.server.prefixURL }} version: 1 isDefault: {{ .Values.prometheus.isDefault }} {{- end }} {{- end }}
31.222222
147
0.620107
43d0a451a7f6e27bcc1d63c497d6fd55eb78208f
52
yml
YAML
my-client.yml
zengguoyu/config-center
4674e62454af8e3d5856ef281ee1360499568485
[ "Apache-2.0" ]
null
null
null
my-client.yml
zengguoyu/config-center
4674e62454af8e3d5856ef281ee1360499568485
[ "Apache-2.0" ]
null
null
null
my-client.yml
zengguoyu/config-center
4674e62454af8e3d5856ef281ee1360499568485
[ "Apache-2.0" ]
null
null
null
my-config: appName: my-app11111111111111111111111
17.333333
40
0.826923
7c14be8fcac256d6b58bdc7d28c6c30054952c7a
74
yml
YAML
.travis.yml
pydawan/spring-boot-fx
a7c6bc6d72aa66d0f20faf207a28dcfd091cdd89
[ "MIT" ]
68
2018-05-04T12:54:46.000Z
2022-03-04T12:19:26.000Z
.travis.yml
astrapi69/spring-boot-fx
a7c6bc6d72aa66d0f20faf207a28dcfd091cdd89
[ "MIT" ]
2
2018-12-23T17:39:17.000Z
2019-05-24T17:02:36.000Z
.travis.yml
astrapi69/spring-boot-fx
a7c6bc6d72aa66d0f20faf207a28dcfd091cdd89
[ "MIT" ]
18
2018-07-26T02:49:13.000Z
2022-03-11T21:40:41.000Z
language: java jdk: oraclejdk9 install: true script: ./mvnw clean install
14.8
28
0.783784
d419c795d4ae7bda4d0aa49baa176de097d0444f
634
yml
YAML
build/k8s-manifests/k8s-admission-controller/webhook.yml
lsubash/utils
81b48ccc277d70332b035cadc2145ada02fa88b3
[ "BSD-3-Clause" ]
null
null
null
build/k8s-manifests/k8s-admission-controller/webhook.yml
lsubash/utils
81b48ccc277d70332b035cadc2145ada02fa88b3
[ "BSD-3-Clause" ]
null
null
null
build/k8s-manifests/k8s-admission-controller/webhook.yml
lsubash/utils
81b48ccc277d70332b035cadc2145ada02fa88b3
[ "BSD-3-Clause" ]
null
null
null
#/* # * Copyright (C) 2021 Intel Corporation # * SPDX-License-Identifier: BSD-3-Clause # */ apiVersion: admissionregistration.k8s.io/v1 kind: MutatingWebhookConfiguration metadata: name: node-tainting-webhook webhooks: - name: node-tainting-webhook.isecl.svc.cluster.local admissionReviewVersions: - "v1beta1" sideEffects: "None" timeoutSeconds: 30 clientConfig: service: name: node-tainting-webhook namespace: isecl path: "/mutate" caBundle: "" rules: - operations: [ "CREATE" ] apiGroups: [""] apiVersions: ["v1"] resources: ["nodes"]
23.481481
55
0.638801
e63ad8a1ea458d820b3bae5b1e77fae2477cde90
810
yaml
YAML
core/src/main/resources/formats/chat.blf.yaml
docusmart/BlackLab
4f61d720954e10f4bfdbb09da0eec644aab76413
[ "Apache-2.0" ]
67
2015-01-13T09:28:00.000Z
2022-03-13T10:05:51.000Z
core/src/main/resources/formats/chat.blf.yaml
docusmart/BlackLab
4f61d720954e10f4bfdbb09da0eec644aab76413
[ "Apache-2.0" ]
243
2015-01-27T23:18:52.000Z
2022-03-25T09:17:30.000Z
core/src/main/resources/formats/chat.blf.yaml
docusmart/BlackLab
4f61d720954e10f4bfdbb09da0eec644aab76413
[ "Apache-2.0" ]
44
2015-01-19T18:53:44.000Z
2022-02-25T07:06:05.000Z
displayName: CHAT (Codes for the Human Analysis of Transcripts) description: Format for transcribed conversations, created for the CHILDES project. helpUrl: https://talkbank.org/manuals/CHAT.html fileType: chat annotatedFields: contents: annotations: - name: word displayName: Word valuePath: . # You may change the names of metadata fields if you wish indexFieldAs: oldName: newName metadata: fields: # You can apply processing on a specific metadata field... # (NOT YET IMPLEMENTED) - name: thefield namePath: . process: - action: find find: bla replace: zwets # ...or on every metadata field, if you wish. # (NOT YET IMPLEMENTED) - forEachPath: . namePath: . process: - action: find find: bla replace: zwets
22.5
83
0.67284
821b66ec3f69f97297c1ac7b7ce7c70348f896e5
320
yaml
YAML
pubspec.yaml
jimmyff/sitemap
e797ab02262c8a78661a758a9b0984c06197a6bc
[ "MIT" ]
null
null
null
pubspec.yaml
jimmyff/sitemap
e797ab02262c8a78661a758a9b0984c06197a6bc
[ "MIT" ]
null
null
null
pubspec.yaml
jimmyff/sitemap
e797ab02262c8a78661a758a9b0984c06197a6bc
[ "MIT" ]
null
null
null
name: sitemap description: Sitemap generation made simpler. version: 0.7.0 authors: - Kai Sellgren <kaisellgren@gmail.com> - Jimmy Forrester-Fellowes <jimmyff@jimmyff.uk> homepage: https://github.com/woven/sitemap environment: sdk: '>=2.0.0-dev.61.0 <3.0.0' dependencies: intl: '^0.15.0' xml: ^3.0.0
22.857143
48
0.690625
82c7f63bef776c6cb247b1a3385d1dc8418a8128
110
yml
YAML
.travis.yml
itayw/node-controlport
05112492d9ed9092c790f66e22e2ce759a3005b9
[ "MIT" ]
1
2015-08-04T17:56:00.000Z
2015-08-04T17:56:00.000Z
.travis.yml
itayw/node-controlport
05112492d9ed9092c790f66e22e2ce759a3005b9
[ "MIT" ]
null
null
null
.travis.yml
itayw/node-controlport
05112492d9ed9092c790f66e22e2ce759a3005b9
[ "MIT" ]
null
null
null
language: node_js node_js: - "0.10" script: make test-coveralls notifications: email: - itay@joo.la
11
27
0.681818
02afd397e32d556eb0c64e989cdf117dba92bb9f
114
yaml
YAML
meta-python/common/kustomization.yaml
threexc/yocto-tekton
a4b8ab90654447d511e43335ef5a1b11b1c8f8f0
[ "MIT" ]
18
2020-08-13T18:08:03.000Z
2022-02-16T09:53:43.000Z
meta-python/common/kustomization.yaml
threexc/yocto-tekton
a4b8ab90654447d511e43335ef5a1b11b1c8f8f0
[ "MIT" ]
8
2020-10-23T20:49:35.000Z
2021-05-11T14:59:05.000Z
meta-python/common/kustomization.yaml
threexc/yocto-tekton
a4b8ab90654447d511e43335ef5a1b11b1c8f8f0
[ "MIT" ]
2
2020-08-13T18:08:06.000Z
2021-12-01T08:36:11.000Z
bases: - tasks - serviceaccount resources: - namespace.yaml - eventlistener.yaml namespace: meta-python
11.4
22
0.719298
f328079b8fbd399a3b034f7ef785bb9f3b42bb25
1,376
yaml
YAML
templates/winograd_wsc/wsc273/templates.yaml
TevenLeScao/promptsource
e7fb7db1ecb4e43062e27f64e8262656d47d9ea0
[ "Apache-2.0" ]
null
null
null
templates/winograd_wsc/wsc273/templates.yaml
TevenLeScao/promptsource
e7fb7db1ecb4e43062e27f64e8262656d47d9ea0
[ "Apache-2.0" ]
null
null
null
templates/winograd_wsc/wsc273/templates.yaml
TevenLeScao/promptsource
e7fb7db1ecb4e43062e27f64e8262656d47d9ea0
[ "Apache-2.0" ]
null
null
null
dataset: winograd_wsc subset: wsc273 templates: 4e7480eb-dc34-4c3f-bff3-bac11932fb07: !Template id: 4e7480eb-dc34-4c3f-bff3-bac11932fb07 jinja: "Identify the pronoun in \"{{text}}\" ||| \n{{pronoun}}" name: identify_pronoun reference: '' 528d1392-b70e-4cec-a72a-380fab9955c7: !Template id: 528d1392-b70e-4cec-a72a-380fab9955c7 jinja: "Identify the pronoun in \"{{text}}\" and the entity it is referring to\ \ ||| \n\"{{pronoun}}\" which refers to the \"{{options[label]}}\"" name: identify_pronoun_entity reference: '' c07d5f26-303f-44d9-a941-659debdd9ec2: !Template id: c07d5f26-303f-44d9-a941-659debdd9ec2 jinja: 'Who does the pronoun "{{pronoun}}" in "{{text}}" refer to? ||| {{options[label]}}' name: pronoun reference: '' df01735f-5f06-408f-930d-618f3cfc9261: !Template id: df01735f-5f06-408f-930d-618f3cfc9261 jinja: "Who does the pronoun \"{{pronoun}}\" in \"{{text}}\" refer to?\n\nThe\ \ options are {{options | join(\" and \")}} ||| \n{{options[label]}}" name: pronoun_options reference: '' e24ae7b1-9e55-49a2-b4aa-c8d9b13814de: !Template id: e24ae7b1-9e55-49a2-b4aa-c8d9b13814de jinja: "Identify the phrase in \"{{text}}\" in which the key action or context\ \ surrounding the pronoun is described ||| \n{{quote}}" name: key_action reference: ''
40.470588
83
0.659157
27fc03ff137f7ed9839c75f9d3de98bfb77f54f6
996
yml
YAML
towerObjects/roles/config-tower/tasks/main.yml
ivarmu/ocp4-auto-install-vmware
9243bdd42f107f2cb695560ead700ed7a1cf75df
[ "Apache-2.0" ]
null
null
null
towerObjects/roles/config-tower/tasks/main.yml
ivarmu/ocp4-auto-install-vmware
9243bdd42f107f2cb695560ead700ed7a1cf75df
[ "Apache-2.0" ]
null
null
null
towerObjects/roles/config-tower/tasks/main.yml
ivarmu/ocp4-auto-install-vmware
9243bdd42f107f2cb695560ead700ed7a1cf75df
[ "Apache-2.0" ]
null
null
null
--- # tasks file for config-tower - name: Include Tasks to config credential_types include_tasks: credential_types.yml args: apply: tags: credential_types tags: credential_types - name: Include Tasks to config credentials include_tasks: credentials.yml args: apply: tags: credentials tags: credentials - name: Include Tasks to config projects include_tasks: projects.yml args: apply: tags: projects tags: projects - name: Include Tasks to config inventories include_tasks: inventories.yml args: apply: tags: inventories tags: inventories - name: Include Tasks to config hosts include_tasks: hosts.yml args: apply: tags: hosts tags: hosts - name: Include Tasks to config groups include_tasks: groups.yml args: apply: tags: groups tags: groups - name: Include Tasks to config job_templates include_tasks: job_templates.yml args: apply: tags: job_templates tags: job_templates ...
19.153846
48
0.704819
cc6c33915b7a4c056b9ab767dde85ff5ecb798d8
1,028
yaml
YAML
recipes/python-frictionqpotspringblock/meta.yaml
philippjfr/staged-recipes
c3e3371707cf4618e07f3827463f1983596d9e72
[ "BSD-3-Clause" ]
null
null
null
recipes/python-frictionqpotspringblock/meta.yaml
philippjfr/staged-recipes
c3e3371707cf4618e07f3827463f1983596d9e72
[ "BSD-3-Clause" ]
null
null
null
recipes/python-frictionqpotspringblock/meta.yaml
philippjfr/staged-recipes
c3e3371707cf4618e07f3827463f1983596d9e72
[ "BSD-3-Clause" ]
null
null
null
{% set name = "FrictionQPotSpringBlock" %} {% set version = "0.3.1" %} package: name: python-{{ name|lower }} version: {{ version }} source: url: https://github.com/tdegeus/{{ name }}/archive/v{{ version }}.tar.gz sha256: 3fdea068e1d49ad9aab9acdb12ceb343ffaeda1ca0ae341e008dc8b73c5130eb build: number: 0 script_env: SETUPTOOLS_SCM_PRETEND_VERSION={{ version }} script: {{ PYTHON }} -m pip install . -vv requirements: build: - {{ compiler('cxx') }} host: - python - setuptools - setuptools_scm - pip - pyxtensor - qpot - goosefem run: - python test: imports: - {{ name }} commands: - pip check requires: - pip about: home: https://github.com/tdegeus/{{ name }} license: MIT license_family: MIT license_file: LICENSE summary: Spring-block friction model. description: Spring-block friction model. doc_url: https://tdegeus.github.io/{{ name }} dev_url: https://github.com/tdegeus/{{ name }} extra: recipe-maintainers: - tdegeus
19.769231
74
0.64786
ae44523d88acb80827f7c2e6cbb44aa137659db2
1,111
yaml
YAML
recipes/spades/3.9.1/meta.yaml
hepcat72/bioconda-recipes
8c6b6fa982e08a90c662f6ffe7ffb5fd0b5298a5
[ "MIT" ]
null
null
null
recipes/spades/3.9.1/meta.yaml
hepcat72/bioconda-recipes
8c6b6fa982e08a90c662f6ffe7ffb5fd0b5298a5
[ "MIT" ]
null
null
null
recipes/spades/3.9.1/meta.yaml
hepcat72/bioconda-recipes
8c6b6fa982e08a90c662f6ffe7ffb5fd0b5298a5
[ "MIT" ]
null
null
null
package: name: spades version: '3.9.1' source: - url: http://cab.spbu.ru/files/release3.9.1/SPAdes-3.9.1-Linux.tar.gz # [linux] sha256: 92b9d70666989e9ed5f27dbbc03ce90826d7297bd6894e3ab534cc6ca8976d9a # [linux] - url: http://cab.spbu.ru/files/release3.9.1/SPAdes-3.9.1-Darwin.tar.gz # [osx] sha256: 7471a9dc9c815a57f67df8d3890396b3b8c198c83fe6f2f6fd148386327a60a6 # [osx] build: number: 0 requirements: run: - python 3.5.* test: commands: - spades.py --test && rm -rf spades_test about: home: http://cab.spbu.ru/software/spades/ license: GPLv2 license_family: GPL license_file: share/spades/LICENSE summary: | SPAdes (St. Petersburg genome assembler) is intended for both standard isolates and single-cell MDA bacteria assemblies. dev_url: https://github.com/ablab/spades doc_url: http://cab.spbu.ru/files/release3.9.1/manual.html extra: recipe-maintainers: - nickp60 identifiers: - biotools:Spades - doi:10.1089/cmb.2012.0021 - doi:10.1101/gr.213959.116 skip-lints: - should_be_noarch_generic - should_not_be_noarch_source
27.775
124
0.717372
efc5fca7c533920512ba2d23450c235ab4fca1cc
1,434
yml
YAML
legacy/docs-ref-autogen/com.microsoft.azure.cognitiveservices.vision.faceapi.PersonGroupPersons.PersonGroupPersonsAddPersonFaceFromUrlDefinitionStages.yml
spelluru/azure-docs-sdk-java
c4bbdc14ca38ae41600e1adfb3926b45fd4986af
[ "CC-BY-4.0", "MIT" ]
null
null
null
legacy/docs-ref-autogen/com.microsoft.azure.cognitiveservices.vision.faceapi.PersonGroupPersons.PersonGroupPersonsAddPersonFaceFromUrlDefinitionStages.yml
spelluru/azure-docs-sdk-java
c4bbdc14ca38ae41600e1adfb3926b45fd4986af
[ "CC-BY-4.0", "MIT" ]
null
null
null
legacy/docs-ref-autogen/com.microsoft.azure.cognitiveservices.vision.faceapi.PersonGroupPersons.PersonGroupPersonsAddPersonFaceFromUrlDefinitionStages.yml
spelluru/azure-docs-sdk-java
c4bbdc14ca38ae41600e1adfb3926b45fd4986af
[ "CC-BY-4.0", "MIT" ]
1
2019-04-08T02:58:35.000Z
2019-04-08T02:58:35.000Z
### YamlMime:ManagedReference items: - uid: com.microsoft.azure.cognitiveservices.vision.faceapi.PersonGroupPersons.PersonGroupPersonsAddPersonFaceFromUrlDefinitionStages id: PersonGroupPersonsAddPersonFaceFromUrlDefinitionStages parent: com.microsoft.azure.cognitiveservices.vision.faceapi href: com.microsoft.azure.cognitiveservices.vision.faceapi.PersonGroupPersons.PersonGroupPersonsAddPersonFaceFromUrlDefinitionStages.yml langs: - java name: PersonGroupPersons.PersonGroupPersonsAddPersonFaceFromUrlDefinitionStages nameWithType: PersonGroupPersons.PersonGroupPersonsAddPersonFaceFromUrlDefinitionStages fullName: com.microsoft.azure.cognitiveservices.vision.faceapi.PersonGroupPersons.PersonGroupPersonsAddPersonFaceFromUrlDefinitionStages type: Interface source: remote: path: sdk/cognitiveservices/ms-azure-cs-faceapi/src/main/java/com/microsoft/azure/cognitiveservices/vision/faceapi/PersonGroupPersons.java branch: master repo: https://github.com/Azure/azure-sdk-for-java path: sdk/cognitiveservices/ms-azure-cs-faceapi/src/main/java/com/microsoft/azure/cognitiveservices/vision/faceapi/PersonGroupPersons.java startLine: 585 package: com.microsoft.azure.cognitiveservices.vision.faceapi summary: "<p>Grouping of addPersonFaceFromUrl definition stages. </p>" syntax: content: public interface PersonGroupPersonsAddPersonFaceFromUrlDefinitionStages references: []
57.36
144
0.843794
6d9050d133f92930c2e117e8c11cb6da91c0dfc0
1,383
yml
YAML
tasks/acme-challenge.yml
zx1zx2jr3n/ansible-role-acme
d97d712b5cef7239de23209259d93bdd7a2866dd
[ "MIT" ]
null
null
null
tasks/acme-challenge.yml
zx1zx2jr3n/ansible-role-acme
d97d712b5cef7239de23209259d93bdd7a2866dd
[ "MIT" ]
null
null
null
tasks/acme-challenge.yml
zx1zx2jr3n/ansible-role-acme
d97d712b5cef7239de23209259d93bdd7a2866dd
[ "MIT" ]
null
null
null
--- - name: Create directory to store certs file: path: "{{ acme_certs_path }}/{{ dns_data.zone }}" state: directory - name: Generate {{ dns_data.zone }} private key openssl_privatekey: path: "{{ acme_certs_path }}/{{ dns_data.zone }}/{{ dns_data.zone }}.key" size: 4096 - name: Generate {{ dns_data.zone }} csr openssl_csr: path: "{{ acme_certs_path }}/{{ dns_data.zone }}/{{ dns_data.zone }}.csr" privatekey_path: "{{ acme_certs_path }}/{{ dns_data.zone }}/{{ dns_data.zone }}.key" common_name: "{{ dns_data.zone }}" subject_alt_name: "{{ dns_data.subjectAltName | map('regex_replace', '^', 'DNS:') | list }}" key_usage: - digitalSignature - keyEncipherment - nonRepudiation - name: Create a challenge for {{ dns_data.zone }} using a account key file. acme_certificate: account_key_src: "{{ acme_account_key_path }}/account-key.key" src: "{{ acme_certs_path }}/{{ dns_data.zone }}/{{ dns_data.zone }}.csr" cert: "{{ acme_certs_path }}/{{ dns_data.zone }}/{{ dns_data.zone }}.crt" challenge: "{{ acme_challenge }}" acme_version: "{{ acme_version }}" terms_agreed: yes acme_directory: "{{ acme_uri }}" # Renew if the certificate is at least 30 days old remaining_days: "{{ acme_remaining_days }}" register: challenge - debug: msg: "{{ challenge }}" when: debug_log == True
35.461538
96
0.638467
7d291a1d578dadd6b72287f233d5745a141931de
89
yml
YAML
debops/ansible/roles/debops.sysfs/handlers/main.yml
AnotherKamila/bsdops
63809cb6316ad44b11deb1e4d948ce1c4447150e
[ "BSD-2-Clause" ]
7
2019-01-13T22:15:34.000Z
2020-09-25T16:38:16.000Z
repo-github/debops@debops/ansible/roles/debops.sysfs/handlers/main.yml
rayhanur-rahman/CSC503-Project
09db5b5353db0ae3b1ab4ec22e6560b5a406ef52
[ "MIT" ]
12
2019-01-13T18:46:47.000Z
2019-01-28T21:10:03.000Z
repo-github/debops@debops/ansible/roles/debops.sysfs/handlers/main.yml
rayhanur-rahman/CSC503-Project
09db5b5353db0ae3b1ab4ec22e6560b5a406ef52
[ "MIT" ]
2
2020-02-14T07:30:00.000Z
2020-11-04T05:26:15.000Z
--- - name: Restart sysfsutils service: name: 'sysfsutils' state: 'restarted'
12.714286
26
0.629213
6755bffd67d4796fc13d4b6080ba8ef29ff70702
1,487
yaml
YAML
data/spells/wrath-of-nature.yaml
jness/dungeon_brawl
2afa01f90a7b8972cac5c19b9a5e20f6e8317648
[ "Apache-2.0" ]
8
2018-10-30T21:39:10.000Z
2021-05-20T05:11:36.000Z
data/spells/wrath-of-nature.yaml
jness/dungeon_brawl
2afa01f90a7b8972cac5c19b9a5e20f6e8317648
[ "Apache-2.0" ]
7
2020-03-28T17:41:05.000Z
2022-03-11T23:33:04.000Z
data/spells/wrath-of-nature.yaml
jness/dungeon_brawl
2afa01f90a7b8972cac5c19b9a5e20f6e8317648
[ "Apache-2.0" ]
1
2020-04-18T20:29:06.000Z
2020-04-18T20:29:06.000Z
name: Wrath of Nature slug_name: wrath-of-nature classes: - druid - ranger sources: - Xanathar.171 level: 5th-level school: Evocation components: V, S casting_time: 1 action duration: Concentration, up to 1 minute range: 120 feet description: | You call out to the spirits of nature to rouse them against your enemies. Choose a point you can see within range. The spirits cause trees, rocks, and grasses in a 60-foot cube centered on that point to become animated until the spell ends. Grasses and Undergrowth: Any area of ground in the cube that is covered by grass or undergrowth is difficult terrain for your enemies. Trees. At the start of each of your turns, each of your enemies within 10 feet of any tree in the cube must succeed on a Dexterity saving throw or take 4d6 slashing damage from whipping branches. Roots and Vines: At the end of each of your turns, one creature of your choice that is on the ground in the cube must succeed on a Strength saving throw or become restrained until the spell ends. A restrained creature can use an action to make a Strength (Athletics) check against your spell save DC, ending the effect on itself on a success. Rocks. As a bonus action on your turn, you can cause a loose rock in the cube to launch at a creature you can see in the cube. Make a ranged spell attack against the target. On a hit, the target takes 3d8 nonmagical bludgeoning damage, and it must succeed on a Strength saving throw or fall prone.
51.275862
344
0.774042