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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1ca5dca851a3507c6ee7311c9b17196987e39abe | 420 | yml | YAML | roles/common/tasks/removed-software.yml | lamosty/wp-dev-vagrant | 24f20680ef33dc8466945f29f41213fdf731d7bb | [
"MIT"
] | 9 | 2015-02-23T17:59:09.000Z | 2022-03-06T15:12:11.000Z | roles/common/tasks/removed-software.yml | lamosty/wp-dev-vagrant | 24f20680ef33dc8466945f29f41213fdf731d7bb | [
"MIT"
] | 1 | 2017-12-23T17:01:28.000Z | 2017-12-23T17:01:28.000Z | roles/common/tasks/removed-software.yml | lamosty/wp-dev-vagrant | 24f20680ef33dc8466945f29f41213fdf731d7bb | [
"MIT"
] | 1 | 2020-04-18T19:05:32.000Z | 2020-04-18T19:05:32.000Z | ---
- name: Remove Chef
apt: name="chef" state=absent
- name: Remove Puppet
apt: name="puppet" state=absent
- name: Check if anything needs autoremoving
shell: apt-get -y --dry-run autoremove | grep -q "0 to remove"
register: check_autoremove
ignore_errors: True
changed_when: False
always_run: True
- name: Autoremove unused packages
command: apt-get -y autoremove
when: "check_autoremove.rc != 0" | 23.333333 | 64 | 0.716667 |
886f1fced7df13aae1efd3496b59d696f685fa6f | 2,017 | yaml | YAML | examples/resource-attributes/deployment.yaml | jpiper/kube-rbac-proxy | 72e8a63a7f0da0753ba2caca09df3cc0248aa433 | [
"Apache-2.0"
] | null | null | null | examples/resource-attributes/deployment.yaml | jpiper/kube-rbac-proxy | 72e8a63a7f0da0753ba2caca09df3cc0248aa433 | [
"Apache-2.0"
] | null | null | null | examples/resource-attributes/deployment.yaml | jpiper/kube-rbac-proxy | 72e8a63a7f0da0753ba2caca09df3cc0248aa433 | [
"Apache-2.0"
] | null | null | null | apiVersion: v1
kind: ServiceAccount
metadata:
name: kube-rbac-proxy
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: kube-rbac-proxy
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: kube-rbac-proxy
subjects:
- kind: ServiceAccount
name: kube-rbac-proxy
namespace: default
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: kube-rbac-proxy
rules:
- apiGroups: ["authentication.k8s.io"]
resources:
- tokenreviews
verbs: ["create"]
- apiGroups: ["authorization.k8s.io"]
resources:
- subjectaccessreviews
verbs: ["create"]
---
apiVersion: v1
kind: Service
metadata:
labels:
app: kube-rbac-proxy
name: kube-rbac-proxy
spec:
ports:
- name: https
port: 8443
targetPort: https
selector:
app: kube-rbac-proxy
---
apiVersion: v1
kind: ConfigMap
metadata:
name: kube-rbac-proxy
data:
resource-attributes.yaml: |+
namespace: default
apiVersion: v1
resource: services
subresource: proxy
name: kube-rbac-proxy
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: kube-rbac-proxy
spec:
replicas: 1
template:
metadata:
labels:
app: kube-rbac-proxy
spec:
serviceAccountName: kube-rbac-proxy
containers:
- name: kube-rbac-proxy
image: quay.io/brancz/kube-rbac-proxy:v0.2.0
args:
- "--secure-listen-address=0.0.0.0:8443"
- "--upstream=http://127.0.0.1:8081/"
- "--resource-attributes-file=/etc/kube-rbac-proxy/resource-attributes.yaml"
- "--logtostderr=true"
- "--v=10"
ports:
- containerPort: 8443
name: https
volumeMounts:
- name: config
mountPath: /etc/kube-rbac-proxy
- name: prometheus-example-app
image: quay.io/brancz/prometheus-example-app:v0.1.0
args:
- "--bind=127.0.0.1:8081"
volumes:
- name: config
configMap:
name: kube-rbac-proxy
| 21.457447 | 84 | 0.647496 |
f7abd335eacc15072d7eb946079eb3ced7d6eaa0 | 185 | yaml | YAML | records/projects/siliconlabs/efm32ggxxxf1024.yaml | 1Deming/FlashAlgo | 2c232b407534a808e43d5cc043b676687244d0e8 | [
"Apache-2.0"
] | 58 | 2015-10-01T18:20:19.000Z | 2020-09-23T15:38:16.000Z | records/projects/siliconlabs/efm32ggxxxf1024.yaml | 1Deming/FlashAlgo | 2c232b407534a808e43d5cc043b676687244d0e8 | [
"Apache-2.0"
] | 31 | 2015-07-31T07:46:55.000Z | 2019-01-23T18:34:03.000Z | records/projects/siliconlabs/efm32ggxxxf1024.yaml | 1Deming/FlashAlgo | 2c232b407534a808e43d5cc043b676687244d0e8 | [
"Apache-2.0"
] | 97 | 2015-06-27T01:23:47.000Z | 2020-09-24T07:36:14.000Z | common:
target:
- cortex-m3
group_name:
- flash_driver
includes:
- source
sources:
- source
- source/siliconlabs/devices/EFM32GG
| 16.818182 | 44 | 0.540541 |
4ef79e88c19ea498fa2d2468052cbb615e16a17a | 1,295 | yml | YAML | .github/workflows/deploy.yml | VJftw/vote-for-policies | a01ae2939332c8f486adb1cd93fa3ee57dbeff16 | [
"MIT"
] | null | null | null | .github/workflows/deploy.yml | VJftw/vote-for-policies | a01ae2939332c8f486adb1cd93fa3ee57dbeff16 | [
"MIT"
] | null | null | null | .github/workflows/deploy.yml | VJftw/vote-for-policies | a01ae2939332c8f486adb1cd93fa3ee57dbeff16 | [
"MIT"
] | null | null | null | ---
name: Deploy
on: ['deployment']
jobs:
deployment:
runs-on: ubuntu-latest
steps:
- name: "Deployment pending"
uses: "deliverybot/deployment-status@master"
with:
state: "pending"
token: "${{ github.token }}"
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: 14.x
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1
- name: Check out code
uses: actions/checkout@v2
- name: Install NPM dependencies
run: npm install
- name: "Deploy ${{ github.event.deployment.environment }}"
run: scripts/deploy.sh ${{ github.event.deployment.environment }}
- name: "Deployment success"
if: success()
uses: "deliverybot/deployment-status@master"
with:
state: "success"
token: "${{ github.token }}"
- name: "Deployment failure"
if: failure()
uses: "deliverybot/deployment-status@master"
with:
state: "failure"
token: "${{ github.token }}"
| 26.428571 | 73 | 0.569884 |
10439ff4d916756b52d549edfc781f8c82c6c353 | 244 | yaml | YAML | shell_words/pubspec.yaml | kowalczykp/monorepo | 82bc756ac8c1265d8938825a988424db342e69cc | [
"Apache-2.0"
] | 11 | 2020-06-17T12:23:22.000Z | 2021-04-15T15:09:16.000Z | shell_words/pubspec.yaml | kowalczykp/monorepo | 82bc756ac8c1265d8938825a988424db342e69cc | [
"Apache-2.0"
] | 654 | 2020-06-17T11:03:34.000Z | 2021-05-27T10:00:43.000Z | shell_words/pubspec.yaml | kowalczykp/monorepo | 82bc756ac8c1265d8938825a988424db342e69cc | [
"Apache-2.0"
] | 41 | 2020-07-09T12:08:09.000Z | 2021-05-19T14:09:00.000Z | name: shell_words
description: A sample command-line application.
# version: 1.0.0
# homepage: https://www.example.com
environment:
sdk: '>=2.7.0 <3.0.0'
dependencies:
unicode: ^0.2.2
dev_dependencies:
pedantic: ^1.9.0
test: ^1.12.0
| 16.266667 | 47 | 0.688525 |
16ee9a6c52c20acf09c6fab4e5e41b3849115835 | 243 | yaml | YAML | repo/cpd/3.5/assembly/watson-discovery/x86_64/2.2.1/patch/patchlist.yaml | horfee/cloud-pak | 5a5800dd05439d32582213c76d0901c526378d79 | [
"Apache-2.0"
] | null | null | null | repo/cpd/3.5/assembly/watson-discovery/x86_64/2.2.1/patch/patchlist.yaml | horfee/cloud-pak | 5a5800dd05439d32582213c76d0901c526378d79 | [
"Apache-2.0"
] | null | null | null | repo/cpd/3.5/assembly/watson-discovery/x86_64/2.2.1/patch/patchlist.yaml | horfee/cloud-pak | 5a5800dd05439d32582213c76d0901c526378d79 | [
"Apache-2.0"
] | null | null | null | patches:
- cpd-watson-discovery-2.2.1-patch-1
- cpd-watson-discovery-2.2.1-patch-2
- cpd-watson-discovery-2.2.1-patch-3
- cpd-watson-discovery-2.2.1-patch-4
- cpd-watson-discovery-2.2.1-patch-5
- cpd-watson-discovery-2.2.1-patch-6
| 30.375 | 38 | 0.695473 |
5027b9726202c8fdbd9c3ba86fea362a557f104a | 707 | yml | YAML | data/mn/retired/Kate-Knuth-34b7c39d-ffc5-4339-aa99-8e990c870305.yml | Rypo/people | 34cf10bf10313f154f5065dde578bed9b4127ae8 | [
"CC0-1.0"
] | 1 | 2019-12-11T17:38:21.000Z | 2019-12-11T17:38:21.000Z | data/mn/retired/Kate-Knuth-34b7c39d-ffc5-4339-aa99-8e990c870305.yml | Rypo/people | 34cf10bf10313f154f5065dde578bed9b4127ae8 | [
"CC0-1.0"
] | null | null | null | data/mn/retired/Kate-Knuth-34b7c39d-ffc5-4339-aa99-8e990c870305.yml | Rypo/people | 34cf10bf10313f154f5065dde578bed9b4127ae8 | [
"CC0-1.0"
] | null | null | null | id: ocd-person/34b7c39d-ffc5-4339-aa99-8e990c870305
name: Kate Knuth
given_name: Kate
family_name: Knuth
party:
- name: Democratic-Farmer-Labor
roles:
- district: 50B
jurisdiction: ocd-jurisdiction/country:us/state:mn/government
type: lower
start_date: '2009-01-01'
end_date: '2014-12-31'
image: http://www.house.leg.state.mn.us/hinfo/memberimgls87/50B.GIF
links:
- url: http://www.house.leg.state.mn.us/members/members.asp?id=15273
sources:
- url: http://www.house.leg.state.mn.us/members/housemembers.asp
- url: http://www.house.leg.state.mn.us/members/members.asp?id=15273
other_identifiers:
- identifier: MNL000167
scheme: legacy_openstates
- identifier: MNL000291
scheme: legacy_openstates
| 29.458333 | 68 | 0.770863 |
8a7b0c72e17908d70bd6873fd45160206efa3d45 | 377 | yml | YAML | nsls2_catalogs/bmm/bmm.yml | NSLS-II/nsls2-catalogs | 8dab7db65335ccd20eacf7f2e999d64ec7325620 | [
"BSD-3-Clause"
] | null | null | null | nsls2_catalogs/bmm/bmm.yml | NSLS-II/nsls2-catalogs | 8dab7db65335ccd20eacf7f2e999d64ec7325620 | [
"BSD-3-Clause"
] | null | null | null | nsls2_catalogs/bmm/bmm.yml | NSLS-II/nsls2-catalogs | 8dab7db65335ccd20eacf7f2e999d64ec7325620 | [
"BSD-3-Clause"
] | null | null | null | metadatastore:
module: databroker.headersource.mongo
class: MDS
config:
host: 'xf06bm-ca1'
port: 27017
database: 'metadatastore-production-v1'
timezone: 'US/Eastern'
assets:
module: databroker.assets.mongo
class: Registry
config:
host: 'xf06bm-ca1'
port: 27017
database: 'filestore-production-v1'
| 23.5625 | 47 | 0.623342 |
8235c11dc8069d034c32105c719eaba09ca37fe4 | 1,147 | yml | YAML | docs-ref-autogen/azure-servicefabric/azure.servicefabric.models.partition_quorum_loss_progress_py3.yml | rloutlaw/azure-docs-sdk-python | d755ebe626be0da867cb3c0406ee596dd678ed62 | [
"CC-BY-4.0",
"MIT"
] | 1 | 2022-03-22T15:02:41.000Z | 2022-03-22T15:02:41.000Z | docs-ref-autogen/azure-servicefabric/azure.servicefabric.models.partition_quorum_loss_progress_py3.yml | rloutlaw/azure-docs-sdk-python | d755ebe626be0da867cb3c0406ee596dd678ed62 | [
"CC-BY-4.0",
"MIT"
] | null | null | null | docs-ref-autogen/azure-servicefabric/azure.servicefabric.models.partition_quorum_loss_progress_py3.yml | rloutlaw/azure-docs-sdk-python | d755ebe626be0da867cb3c0406ee596dd678ed62 | [
"CC-BY-4.0",
"MIT"
] | null | null | null | ### YamlMime:UniversalReference
api_name: []
items:
- children:
- azure.servicefabric.models.partition_quorum_loss_progress_py3.PartitionQuorumLossProgress
fullName: azure.servicefabric.models.partition_quorum_loss_progress_py3
langs:
- python
module: azure.servicefabric.models.partition_quorum_loss_progress_py3
name: partition_quorum_loss_progress_py3
source:
id: partition_quorum_loss_progress_py3
path: azure-servicefabric\azure\servicefabric\models\partition_quorum_loss_progress_py3.py
remote:
branch: master
path: azure-servicefabric\azure\servicefabric\models\partition_quorum_loss_progress_py3.py
repo: https://github.com/Azure/azure-sdk-for-python.git
startLine: 0
type: module
uid: azure.servicefabric.models.partition_quorum_loss_progress_py3
references:
- fullName: azure.servicefabric.models.partition_quorum_loss_progress_py3.PartitionQuorumLossProgress
isExternal: false
name: PartitionQuorumLossProgress
parent: azure.servicefabric.models.partition_quorum_loss_progress_py3
uid: azure.servicefabric.models.partition_quorum_loss_progress_py3.PartitionQuorumLossProgress
| 42.481481 | 101 | 0.836966 |
4b3d7402532341d1eb7d35bcb93a0b3434074723 | 415 | yml | YAML | web/modules/custom/nun_migration/post_migration/pathauto.pattern.basic_page.yml | stlawu/d8-nature-up-north-v2 | baeddb8823c570303446f599197d29d127a1273f | [
"MIT"
] | null | null | null | web/modules/custom/nun_migration/post_migration/pathauto.pattern.basic_page.yml | stlawu/d8-nature-up-north-v2 | baeddb8823c570303446f599197d29d127a1273f | [
"MIT"
] | 10 | 2019-11-19T17:44:58.000Z | 2022-02-14T00:20:43.000Z | web/modules/custom/nun_migration/post_migration/pathauto.pattern.basic_page.yml | cainaru/d8-nature-up-north-v2 | 23851959cb50434f9d56ea752cec11823c9ef53a | [
"MIT"
] | 1 | 2019-11-07T17:24:37.000Z | 2019-11-07T17:24:37.000Z | langcode: en
status: true
dependencies:
module:
- node
id: basic_page
label: 'Basic page'
type: 'canonical_entities:node'
pattern: '[node:title]'
selection_criteria:
7a79850a-b6be-4502-b400-884336b647b6:
id: node_type
bundles:
page: page
negate: false
context_mapping:
node: node
uuid: 7a79850a-b6be-4502-b400-884336b647b6
selection_logic: and
weight: -5
relationships: { }
| 18.863636 | 46 | 0.708434 |
ae449cba734c6a15f14c02709976c75e50264fe4 | 164 | yaml | YAML | flatland_plugins/test/update_timer_test/world.yaml | eborghi10/flatland | 5bcd91630b2e8c682084519162828b5b7855e710 | [
"BSD-3-Clause"
] | 59 | 2017-09-22T22:19:39.000Z | 2022-03-03T03:48:22.000Z | flatland_plugins/test/update_timer_test/world.yaml | eborghi10/flatland | 5bcd91630b2e8c682084519162828b5b7855e710 | [
"BSD-3-Clause"
] | 34 | 2017-08-19T03:06:07.000Z | 2021-09-29T16:15:41.000Z | flatland_plugins/test/update_timer_test/world.yaml | eborghi10/flatland | 5bcd91630b2e8c682084519162828b5b7855e710 | [
"BSD-3-Clause"
] | 38 | 2017-09-25T11:46:42.000Z | 2022-03-01T17:20:20.000Z | properties: {}
layers:
- name: "layer_1"
map: "map_1.yaml"
color: [0, 1, 0, 1]
models:
- name: robot1
pose: [0, 0, 0]
model: robot.model.yaml
| 16.4 | 27 | 0.54878 |
5b1e35f0cfac0aef51f71b0d9c60edd9a7093617 | 157 | yml | YAML | dci-aws/roles/docker-ee/tasks/logs/Windows.yml | prayagsingh/dogvscat | e57f897617056a4be618a5aa408caea9446e6975 | [
"MIT"
] | 446 | 2018-05-11T08:50:58.000Z | 2022-03-28T13:07:44.000Z | dci-aws/roles/docker-ee/tasks/logs/Windows.yml | prayagsingh/dogvscat | e57f897617056a4be618a5aa408caea9446e6975 | [
"MIT"
] | 26 | 2018-08-16T18:14:53.000Z | 2021-07-02T23:05:53.000Z | dci-aws/roles/docker-ee/tasks/logs/Windows.yml | prayagsingh/dogvscat | e57f897617056a4be618a5aa408caea9446e6975 | [
"MIT"
] | 141 | 2018-06-13T22:15:10.000Z | 2022-01-24T06:03:34.000Z | ---
- name: "Get logs."
win_shell: Get-EventLog -LogName Application -Source Docker -After (Get-Date).AddHours(-1) # | Sort-Object Time
register: _logs
| 31.4 | 114 | 0.694268 |
45febed25709c7ad1a87f08b61843ad65c67dc35 | 1,969 | yml | YAML | legacy/docs-ref-autogen/com.microsoft.azure.sdk.iot.deps.serializer.TwinTags.update.yml | azure-sdk/azure-docs-sdk-java | 66cc376be8bb1e1246731b879cc1f8fba76ea946 | [
"CC-BY-4.0",
"MIT"
] | 5 | 2021-08-20T15:24:19.000Z | 2022-02-20T17:06:14.000Z | legacy/docs-ref-autogen/com.microsoft.azure.sdk.iot.deps.serializer.TwinTags.update.yml | azure-sdk/azure-docs-sdk-java | 66cc376be8bb1e1246731b879cc1f8fba76ea946 | [
"CC-BY-4.0",
"MIT"
] | null | null | null | legacy/docs-ref-autogen/com.microsoft.azure.sdk.iot.deps.serializer.TwinTags.update.yml | azure-sdk/azure-docs-sdk-java | 66cc376be8bb1e1246731b879cc1f8fba76ea946 | [
"CC-BY-4.0",
"MIT"
] | 1 | 2021-08-20T15:24:21.000Z | 2021-08-20T15:24:21.000Z | ### YamlMime:JavaMember
nameWithType: TwinTags.update
type: method
members:
- fullName: com.microsoft.azure.sdk.iot.deps.serializer.TwinTags.update(Map<String, Object> tagsMap)
name: update(Map<String, Object> tagsMap)
nameWithType: TwinTags.update(Map<String, Object> tagsMap)
parameters:
- name: tagsMap
type: <xref href="Map%3CString%2C+Object%3E?alt=Map%3CString%2C+Object%3E&text=Map%3CString%2C+Object%3E" data-throw-if-not-resolved="False"/>
returns:
type: <xref href="synchronized+JsonElement?alt=synchronized+JsonElement&text=synchronized+JsonElement" data-throw-if-not-resolved="False"/>
syntax: protected synchronized JsonElement update(Map<String, Object> tagsMap)
uid: com.microsoft.azure.sdk.iot.deps.serializer.TwinTags.update(Map<String, Object>)
- fullName: com.microsoft.azure.sdk.iot.deps.serializer.TwinTags.update(Map<String, Object> tagsMap, TwinChangedCallback onTagsCallback)
name: update(Map<String, Object> tagsMap, TwinChangedCallback onTagsCallback)
nameWithType: TwinTags.update(Map<String, Object> tagsMap, TwinChangedCallback onTagsCallback)
parameters:
- name: tagsMap
type: <xref href="Map%3CString%2C+Object%3E?alt=Map%3CString%2C+Object%3E&text=Map%3CString%2C+Object%3E" data-throw-if-not-resolved="False"/>
- name: onTagsCallback
type: <xref href="com.microsoft.azure.sdk.iot.deps.serializer.TwinChangedCallback?alt=com.microsoft.azure.sdk.iot.deps.serializer.TwinChangedCallback&text=TwinChangedCallback" data-throw-if-not-resolved="False"/>
syntax: protected void update(Map<String, Object> tagsMap, TwinChangedCallback onTagsCallback)
uid: com.microsoft.azure.sdk.iot.deps.serializer.TwinTags.update(Map<String, Object>,TwinChangedCallback)
uid: com.microsoft.azure.sdk.iot.deps.serializer.TwinTags.update*
fullName: com.microsoft.azure.sdk.iot.deps.serializer.TwinTags.update
name: update(Map<String, Object> tagsMap)
package: com.microsoft.azure.sdk.iot.deps.serializer
metadata: {}
| 65.633333 | 216 | 0.791772 |
343115c839c26fcf325d2c4e9013b211ad170ead | 746 | yml | YAML | data/co/people/Stephen-Humphrey-48bbfb96-0ba9-40d8-a589-6086f51e7792.yml | benrkaplan/people | ed6c93161b22103736042db599187d9782285e37 | [
"CC0-1.0"
] | null | null | null | data/co/people/Stephen-Humphrey-48bbfb96-0ba9-40d8-a589-6086f51e7792.yml | benrkaplan/people | ed6c93161b22103736042db599187d9782285e37 | [
"CC0-1.0"
] | null | null | null | data/co/people/Stephen-Humphrey-48bbfb96-0ba9-40d8-a589-6086f51e7792.yml | benrkaplan/people | ed6c93161b22103736042db599187d9782285e37 | [
"CC0-1.0"
] | null | null | null | contact_details:
- address: 200 E. Colfax;RM 307;Denver, CO 80203
email: rephumphrey48@yahoo.com
note: Capitol Office
voice: 303-866-2943
family_name: Humphrey
given_name: Stephen
id: ocd-person/48bbfb96-0ba9-40d8-a589-6086f51e7792
image: http://leg.colorado.gov/sites/default/files/styles/width_300/public/2020a_humphrey%2C%20stephen.jpg
links:
- url: http://leg.colorado.gov/legislators/stephen-humphrey
name: Stephen Humphrey
other_identifiers:
- identifier: COL000146
scheme: legacy_openstates
party:
- name: Republican
roles:
- district: '48'
jurisdiction: ocd-jurisdiction/country:us/state:co/government
type: lower
sources:
- url: http://leg.colorado.gov/legislators/stephen-humphrey
- url: http://leg.colorado.gov/legislators
| 29.84 | 106 | 0.788204 |
14cd0dfbdda43cd361e8f8bf373a0d28b91e120e | 188 | yml | YAML | roles/base/handlers/main.yml | JamieMagee/archsible | 00b35c015c1a65e916b63497c33591b1ccf2b291 | [
"MIT"
] | 9 | 2018-08-05T14:06:31.000Z | 2022-02-01T07:49:20.000Z | roles/base/handlers/main.yml | JamieMagee/arch-ansible | 00b35c015c1a65e916b63497c33591b1ccf2b291 | [
"MIT"
] | 8 | 2018-03-29T14:33:44.000Z | 2022-03-26T12:26:59.000Z | roles/base/handlers/main.yml | JamieMagee/archsible | 00b35c015c1a65e916b63497c33591b1ccf2b291 | [
"MIT"
] | 3 | 2018-07-28T12:30:59.000Z | 2019-10-09T08:36:11.000Z | ---
- name: restart paccache
systemd:
name: paccache.timer
state: restarted
- name: stop systemd per-user instance
systemd:
name: "user@{{ user.uid }}"
state: stopped
| 17.090909 | 38 | 0.643617 |
07c11bb017c40d887f9803e19c23a28792395b9a | 2,677 | yml | YAML | crowbar.yml | aspiers/barclamp-network | cb176ccf8bf508cfb423d1b7e247b9cf11b74ef4 | [
"Apache-2.0"
] | null | null | null | crowbar.yml | aspiers/barclamp-network | cb176ccf8bf508cfb423d1b7e247b9cf11b74ef4 | [
"Apache-2.0"
] | null | null | null | crowbar.yml | aspiers/barclamp-network | cb176ccf8bf508cfb423d1b7e247b9cf11b74ef4 | [
"Apache-2.0"
] | null | null | null | # Copyright 2011, Dell
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Author: RobHirschfeld
#
barclamp:
name: network
display: Network
version: 0
online_help: 'https://github.com/dellcloudedge/crowbar/wiki/Network--barclamp'
member:
- crowbar
crowbar:
layout: 1
order: 20
run_order: 20
chef_order: 20
nav:
network:
switch: switch_path
vlan: vlan_path
locale_additions:
en:
barclamp:
network:
edit_attributes:
attributes: Attributes
edit_deployment:
deployment: Deployment
nav:
switch: Switches
vlan: VLANs
network:
vlan_names:
admin: Admin
bmc: Mgmt (BMC)
bmc_vlan: Mgmt Connect
nova_fixed: Nova Fixed
nova_floating: Nova Floating
public: Public
private: Private
storage: Storage
controller:
virtual: Virtual
switch:
title: Network Switches
switch_details: Switch Expanded Details
switch: Switch
port: Port
node: Node
nc: N/C
no_connection: No Connection
all: Show All
dense:
no_connection: No Connection
vlan:
title: Available VLANs
name: Name
id: VLAN ID
conduit: Conduit
inuse: Active
not_inuse: X
nodes: Nodes
nodes:
title: Interface and Conduit Maps
interface_map: Interface Map for Network Attributes
node: Node
model: Model
has_map: Mapped
rpms:
redhat-5.6:
pkgs:
- portmap
redhat-5.7:
pkgs:
- portmap
centos-5.7:
pkgs:
- portmap
redhat-6.2:
pkgs:
- rpcbind
centos-6.2:
pkgs:
- rpcbind
pkgs:
- bridge-utils
- vconfig
- dhcp
- tftp-server
- nfs-utils
- iptables
- iptables-ipv6
debs:
ubuntu-10.10:
pkgs:
- portmap
ubuntu-11.04:
pkgs:
- portmap
ubuntu-11.10:
pkgs:
- rpcbind
ubuntu-12.04:
pkgs:
- rpcbind
pkgs:
- bridge-utils
- vlan
- ifenslave-2.6
- dhcp3-server
- tftpd-hpa
- nfs-common
- nfs-kernel-server
| 20.280303 | 80 | 0.605902 |
053b0d96c54e4cc96017f5892243c3646bda6247 | 844 | yml | YAML | legacy/docs-ref-autogen/com.microsoft.azure.management.kusto.v2019_11_09.Compression.NONE.yml | azure-sdk/azure-docs-sdk-java | 66cc376be8bb1e1246731b879cc1f8fba76ea946 | [
"CC-BY-4.0",
"MIT"
] | 5 | 2021-08-20T15:24:19.000Z | 2022-02-20T17:06:14.000Z | legacy/docs-ref-autogen/com.microsoft.azure.management.kusto.v2019_11_09.Compression.NONE.yml | azure-sdk/azure-docs-sdk-java | 66cc376be8bb1e1246731b879cc1f8fba76ea946 | [
"CC-BY-4.0",
"MIT"
] | null | null | null | legacy/docs-ref-autogen/com.microsoft.azure.management.kusto.v2019_11_09.Compression.NONE.yml | azure-sdk/azure-docs-sdk-java | 66cc376be8bb1e1246731b879cc1f8fba76ea946 | [
"CC-BY-4.0",
"MIT"
] | 1 | 2021-08-20T15:24:21.000Z | 2021-08-20T15:24:21.000Z | ### YamlMime:JavaMember
nameWithType: Compression.NONE
type: field
members:
- fullName: com.microsoft.azure.management.kusto.v2019_11_09.Compression.NONE
name: NONE
nameWithType: Compression.NONE
returns:
type: final <xref href="com.microsoft.azure.management.kusto.v2019_11_09.Compression?alt=com.microsoft.azure.management.kusto.v2019_11_09.Compression&text=Compression" data-throw-if-not-resolved="False"/>
summary: <p>Static value None for Compression. </p>
syntax: public static final Compression NONE= fromString("None")
uid: com.microsoft.azure.management.kusto.v2019_11_09.Compression.NONE
uid: com.microsoft.azure.management.kusto.v2019_11_09.Compression.NONE*
fullName: com.microsoft.azure.management.kusto.v2019_11_09.Compression.NONE
name: NONE
package: com.microsoft.azure.management.kusto.v2019_11_09
metadata: {}
| 46.888889 | 208 | 0.809242 |
cac99fad3a83010db7f3e34fee9807bcf33d19ce | 150 | yml | YAML | docker-compose.yml | blocksights/blocksights-open-explorer | 17a10d5b035c871a7b9e4324173fb2ff8dd84438 | [
"MIT"
] | 2 | 2021-12-11T11:32:59.000Z | 2022-01-18T22:05:02.000Z | docker-compose.yml | blocksights/blocksights-open-explorer | 17a10d5b035c871a7b9e4324173fb2ff8dd84438 | [
"MIT"
] | 6 | 2021-12-11T11:45:55.000Z | 2022-01-23T22:00:24.000Z | docker-compose.yml | blocksights/blocksights-open-explorer | 17a10d5b035c871a7b9e4324173fb2ff8dd84438 | [
"MIT"
] | null | null | null | version: '3.7'
services:
web:
build: .
command: 'nginx -g "daemon off;"'
volumes:
- ./:/open-explorer/
ports:
- 9000:80 | 15 | 37 | 0.513333 |
9240cad41d4b6d5be3d31e35902b463e2724286e | 394 | yml | YAML | tests/cwltest/tools/Combined_gene_caller/post-processing/post-processing_fgs.yml | hariszaf/pipeline-v5 | ec5e7da668fb1226c721724fbfba1fd4d1cfcf3f | [
"Apache-2.0"
] | 1 | 2021-11-23T18:49:37.000Z | 2021-11-23T18:49:37.000Z | tests/cwltest/tools/Combined_gene_caller/post-processing/post-processing_fgs.yml | hariszaf/pipeline-v5 | ec5e7da668fb1226c721724fbfba1fd4d1cfcf3f | [
"Apache-2.0"
] | null | null | null | tests/cwltest/tools/Combined_gene_caller/post-processing/post-processing_fgs.yml | hariszaf/pipeline-v5 | ec5e7da668fb1226c721724fbfba1fd4d1cfcf3f | [
"Apache-2.0"
] | 1 | 2021-10-15T14:21:58.000Z | 2021-10-15T14:21:58.000Z | masking_file:
class: File
path: ../test-input/cmsearch.all.tblout.deoverlapped
predicted_proteins_fgs_out:
class: File
path: ../expected-output/100000_130095.fasta.fgs.out
predicted_proteins_fgs_ffn:
class: File
path: ../expected-output/100000_130095.fasta.fgs.ffn
predicted_proteins_fgs_faa:
class: File
path: ../expected-output/100000_130095.fasta.fgs.faa
basename: output_fgs | 30.307692 | 54 | 0.791878 |
1316729100c9655fe198fab4144f4e99f0ae5be4 | 768 | yml | YAML | .github/workflows/coverage.yml | joejulian/konvoy-image-builder | 97779ebe14ad862af7b4135280540dc4fcfbc4f4 | [
"Apache-2.0"
] | null | null | null | .github/workflows/coverage.yml | joejulian/konvoy-image-builder | 97779ebe14ad862af7b4135280540dc4fcfbc4f4 | [
"Apache-2.0"
] | 3 | 2021-12-23T22:19:05.000Z | 2022-01-26T21:05:25.000Z | .github/workflows/coverage.yml | joejulian/konvoy-image-builder | 97779ebe14ad862af7b4135280540dc4fcfbc4f4 | [
"Apache-2.0"
] | null | null | null | ---
name: Coverage report
# yamllint disable-line rule:truthy
on:
workflow_run:
workflows:
- Test
types:
- completed
jobs:
coverage:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.event == 'pull_request' }}
steps:
- uses: actions/checkout@v3
- name: Download Coverage Artifacts
uses: dawidd6/action-download-artifact@v2
with:
workflow: ${{ github.event.workflow_run.workflow_id }}
commit: ${{ github.event.workflow_run.head_commit.id }}
name: coverage
- name: Produce Coverage report
uses: 5monkeys/cobertura-action@v12
with:
path: coverage.xml
repo_token: ${{ secrets.GITHUB_TOKEN }}
minimum_coverage: 75
| 22.588235 | 65 | 0.613281 |
71956bd31effcbc9d4a8c089040f5e94105e87ea | 458 | yaml | YAML | netaug/configs/netaug.yaml | Lyken17/tinyml | 0c00e1cd7e2c05c6308c037b63d3d89e5d2a1182 | [
"MIT"
] | null | null | null | netaug/configs/netaug.yaml | Lyken17/tinyml | 0c00e1cd7e2c05c6308c037b63d3d89e5d2a1182 | [
"MIT"
] | null | null | null | netaug/configs/netaug.yaml | Lyken17/tinyml | 0c00e1cd7e2c05c6308c037b63d3d89e5d2a1182 | [
"MIT"
] | null | null | null | data_provider:
dataset: imagenet
image_size: 160
base_batch_size: 128
n_worker: 8
data_path: null
model:
name: mbv2-0.35
dropout_rate: 0
run_config:
n_epochs: 150
weight_decay: 4.0e-5
base_lr: 0.025
warmup_epochs: 5
label_smoothing: 0.1
init_type: kaiming_uniform
netaug:
aug_expand_list: [1.0]
aug_width_mult_list: [1.0]
stop_aug_w_epoch: 75
stop_aug_e_epoch: 0
stop_netaug_epoch: 0
sort_channel: true
sync: false
| 16.357143 | 28 | 0.731441 |
dc3e7306f7fc9cdd7c4bf228db564dc60992fd5c | 57 | yaml | YAML | .helm-stack/charts/cluster-addon/node-feature-discovery.yaml | arhat-dev/infrastructure | ff6fe11be8b85292cbf6487be3d76767478d0fea | [
"Apache-2.0"
] | null | null | null | .helm-stack/charts/cluster-addon/node-feature-discovery.yaml | arhat-dev/infrastructure | ff6fe11be8b85292cbf6487be3d76767478d0fea | [
"Apache-2.0"
] | 3 | 2020-10-11T01:22:43.000Z | 2020-10-14T09:05:26.000Z | .helm-stack/charts/cluster-addon/node-feature-discovery.yaml | arhat-dev/template-kubernetes-cluster | a74c0fdfc04aac88ccc2373edb907c7337fcb4ac | [
"Apache-2.0"
] | null | null | null | charts:
- name: k8s-at-home/node-feature-discovery@2.1.0
| 19 | 48 | 0.736842 |
19b7d971f8658469471a390edfee7948c86f776d | 3,159 | yml | YAML | _config.yml | Joseph7e/Joseph7e | ce33a1bd32384515b2cd7ea802aa069a30766449 | [
"MIT"
] | null | null | null | _config.yml | Joseph7e/Joseph7e | ce33a1bd32384515b2cd7ea802aa069a30766449 | [
"MIT"
] | null | null | null | _config.yml | Joseph7e/Joseph7e | ce33a1bd32384515b2cd7ea802aa069a30766449 | [
"MIT"
] | null | null | null | # Welcome to Jekyll!
# Website settings
title: Joseph L. Sevigny
description: Joseph L. Sevigny Personal and Professional Website
keywords: Joseph, Sevigny, Bioinformatics, Github,
baseurl: /Joseph7e # if you have suburl as homepage like '/homepage', please change it to '/homepage' and your repo's name should be 'homepage'
url: https://joseph7e.github.io/Joseph7e # url should be 'http://<github_username>.github.io/homepage' as before
# url: http://127.0.0.1:4000
img_path: /Joseph7e/static/assets/img/blog # url should be '/homepage/static/assets/img/blog' as before
# author -- index page "about me" section
author: # change following line to your infomation.
name: Joseph Sevigny # Be used at blog posts' author.
first_name: Joseph # Be used at index page about me section.
last_name: Sevigny # Be used at index page about me section.
avatar: /static/assets/img/landing/joe_portrait2.png # upload your avatar at directory and edit it.
github_username: joseph7e # Leave blank if you don't have now
linkedin_id: joseph-sevigny-abba5117b # Leave blank if you don't have now
facebook_username: # Leave blank if you don't have now
twitter_username: joseph_7e # Leave blank if you don't have now
email: jlsevigny1@wildcats.unh.edu # Leave blank if you don't have now
cv: http://cv.jarrekk.com # An online CV can be printed as PDF, leave blank if you don't have now
# skill icons are on avatar's left and right side. Reference urls are http://fontawesome.io/ and http://fizzed.com/oss/font-mfizz
skill_icon1:
- name: icon-apache
- name: fa-linux
skill_icon2:
- name: fa-linux
- name: icon-apache
desc: I am a PhD graduate student at the University of New Hampshire and Research Assistant at the Hubbard Center for Genome Studies. I spend most of my days doing bioinformatics - writing code to analyze next-generation sequencing data. My current work has been focused on improving metagenomic analyses of benthic metazoa by vastly expanding the set of meiofaunal genome references. As of today, I am writing scripts to analyze mitochondrial metagenomic data. Outside of work I enjoy traveling, I'll be heading to a camping trip to Yellowstone in July. Check out my blog. # Describe yourself.
# comment
disqus: # if you wanna comment feature, go to https://disqus.com/ to get your configuration; if not, comment following two lines.
name: jalpc
# analytics
## google analytics
ga: # if you wanna this feature, go to https://www.google.com/analytics/ to get your configuration; if not, comment following line.
id: UA-93473370-3
## google optimize
go:
# id:
## growingIO
gio: # if you wanna this feature, go to https://www.growingio.com/ to get your configuration; if not, comment following line.
# id:
## donation
donation: off # type 'on'/'off' to choice display donation button at post page or not
## carousels
index_carousel: on # index page carousel switch
blog_carousel: on # blog page carousel switch
# scss
sass:
style: compressed
# Build settings
encoding: utf-8
# other settings
highlighter: rouge
markdown: kramdown
kramdown:
input: GFM
syntax_highlighter: rouge
| 44.492958 | 596 | 0.749921 |
70dd0fec04c2100f602c0bca980c39aeed658196 | 383 | yaml | YAML | pubspec.yaml | myConsciousness/text-divider | acb66cf55dffa4823e413766f32326ee7642a28a | [
"BSD-3-Clause"
] | 2 | 2022-02-08T05:08:46.000Z | 2022-02-08T07:49:25.000Z | pubspec.yaml | myConsciousness/divider-with-text | acb66cf55dffa4823e413766f32326ee7642a28a | [
"BSD-3-Clause"
] | null | null | null | pubspec.yaml | myConsciousness/divider-with-text | acb66cf55dffa4823e413766f32326ee7642a28a | [
"BSD-3-Clause"
] | null | null | null | name: text_divider
description: This library provides a customizable Flutter widget that makes it easy to display text in the middle of a Divider.
version: 1.0.0
homepage: https://github.com/myConsciousness/divider-with-text
environment:
sdk: ">=2.12.0 <3.0.0"
dependencies:
flutter:
sdk: flutter
dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ^1.0.0
| 22.529412 | 127 | 0.749347 |
408bbf3adf461b8d16f78d2442b6837f89864c99 | 204 | yml | YAML | _config.yml | nangtrongvuon/nangtrongvuon.github.io | 962bffa43d835eaf431f31518179c309c4e5cc1f | [
"MIT"
] | null | null | null | _config.yml | nangtrongvuon/nangtrongvuon.github.io | 962bffa43d835eaf431f31518179c309c4e5cc1f | [
"MIT"
] | null | null | null | _config.yml | nangtrongvuon/nangtrongvuon.github.io | 962bffa43d835eaf431f31518179c309c4e5cc1f | [
"MIT"
] | null | null | null | title: Nắng Trong Vườn
baseurl: ""
date_format: "%d-%m-%Y"
google_analytics:
disqus_shortname:
# Build settings
markdown: kramdown
extensions: ['smart', 'tables', 'with_toc_data']
permalink: pretty
| 15.692308 | 48 | 0.730392 |
c3ffccad1b9a723cdf32757dee37a5be89288b9e | 452 | yaml | YAML | hipster.yaml | j3parker/playlists | 06710cf3ac5ed03f3280f4925284794184db021c | [
"CC0-1.0"
] | null | null | null | hipster.yaml | j3parker/playlists | 06710cf3ac5ed03f3280f4925284794184db021c | [
"CC0-1.0"
] | null | null | null | hipster.yaml | j3parker/playlists | 06710cf3ac5ed03f3280f4925284794184db021c | [
"CC0-1.0"
] | null | null | null | id: PLixaghb66UkQ1PE7BcJ16WFX37n4ajXx-
title: Hipster songs from the CSC
description: Instrumental hipster music from the Computer Science Club, 2007-2012
tracks:
# Ratatat - Loud Pipes
- https://www.youtube.com/watch?v=BcoPKWzLjrE
# Giraffes? Giraffes! - I Am S/H(im)e[r] As You Am S/H(im)e[r] As You Are Me And We Am I And I Are All Our Together: Our Collective Consciousness' Psychogenic Fugue
- https://www.youtube.com/watch?v=DeXlwuJgXm4
| 45.2 | 166 | 0.756637 |
1a81bee58b613d2bb8f307eaa9ebf4308ac1bafb | 27 | yml | YAML | ansible/inventory/group_vars/type_vyos/main.yml | AlexRogalskiy/infrastructure-1 | 98fcf62a904ae762328c38d0cd6c7d59ef8dcc4e | [
"MIT"
] | 14 | 2017-07-23T04:07:44.000Z | 2022-02-14T20:20:52.000Z | ansible/inventory/group_vars/type_vyos/main.yml | DMarby/infrastructure | 232680c447fe5df8576586a0288dfc98f729c402 | [
"MIT"
] | 1 | 2022-02-14T20:21:00.000Z | 2022-02-14T20:21:19.000Z | ansible/inventory/group_vars/type_vyos/main.yml | AlexRogalskiy/infrastructure-1 | 98fcf62a904ae762328c38d0cd6c7d59ef8dcc4e | [
"MIT"
] | 5 | 2017-06-30T03:53:07.000Z | 2022-02-14T20:20:53.000Z | ansible_network_os: "vyos"
| 13.5 | 26 | 0.814815 |
1af06ab409faad2788ecfeae3bc69325dc84b6d6 | 1,297 | yml | YAML | .github/workflows/ci.yml | leandromoreira/lua-circuit-breaker | 0b4ce9d4018c70698704f85270742d9eb8ea6942 | [
"MIT"
] | 24 | 2021-06-08T08:12:03.000Z | 2022-02-23T03:52:15.000Z | .github/workflows/ci.yml | leandromoreira/lua-circuit-breaker | 0b4ce9d4018c70698704f85270742d9eb8ea6942 | [
"MIT"
] | 9 | 2021-06-02T10:36:37.000Z | 2022-02-24T10:01:48.000Z | .github/workflows/ci.yml | leandromoreira/lua-circuit-breaker | 0b4ce9d4018c70698704f85270742d9eb8ea6942 | [
"MIT"
] | 3 | 2021-06-22T08:51:03.000Z | 2022-01-18T12:07:33.000Z | # This is a basic workflow to help you get started with Actions
name: Continuous Integration
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the '*' branch
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
tags: [ '*' ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# 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 called "test"
test:
name: Run test cases
# 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
- name: Checkout github branch
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install lua, luarocks and busted
run: .ci/scripts/install-deps.sh
- name: Test
run: |
sudo luarocks make
busted -c test/test.lua
luacov
- name: Run codecov script
run: |
wget https://codecov.io/bash
bash bash -f "luacov.report.out" -U "-s" -A "-s"
| 28.195652 | 88 | 0.638396 |
2a9f70a341791dd8ebec779733456c7d93534342 | 1,993 | yml | YAML | threads/3334493/posts/67976810.yml | voz-living/documents | a5fb94005e8c2d681bbda8c85a40509ba5b11cd9 | [
"MIT"
] | null | null | null | threads/3334493/posts/67976810.yml | voz-living/documents | a5fb94005e8c2d681bbda8c85a40509ba5b11cd9 | [
"MIT"
] | null | null | null | threads/3334493/posts/67976810.yml | voz-living/documents | a5fb94005e8c2d681bbda8c85a40509ba5b11cd9 | [
"MIT"
] | null | null | null | url: showpost.php?p=67976810&postcount=12055
id: 67976810
tid: 3334493
num: 12055
datetime: 2014-06-07T03:33:00.000Z
user:
img: null
name: karin9x
title: Senior Member
joinDate: 2012-05-31T16:00:00.000Z
posts: 264
id: '1043261'
title: >-
Re: post 1 tấm ảnh về Cô gái mà bạn cho là xinh nhất mà bạn từng gặp trong
đời?!
content:
html: "\r\n\t\t\t\r\n\t\t\t<!-- BEGIN TEMPLATE: bbcode_quote -->\n<div style=\"margin:20px; margin-top:5px; \">\r\n\t<div class=\"smallfont\" style=\"margin-bottom:2px\">Quote:</div>\r\n\t<table cellpadding=\"6\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"voz-bbcode-quote\">\r\n\t<tr>\r\n\t\t<td class=\"alt2\" style=\"border:1px inset\">\r\n\t\t\t\r\n\t\t\t\t<div>\r\n\t\t\t\t\tOriginally Posted by <strong>HoangYen198</strong>\r\n\t\t\t\t\t<a href=\"showthread.php?p=67976503#post67976503\" rel=\"nofollow\"><img class=\"inlineimg\" src=\"images/buttons/viewpost.gif\" border=\"0\" alt=\"View Post\"></a>\r\n\t\t\t\t</div>\r\n\t\t\t\t<div style=\"font-style:italic\">Nhìn thế thôi ngoài đời ko như thế đâu <img src=\"/images/smilies/Off/smile.gif\" border=\"0\" alt=\"\" title=\"Smile\" class=\"inlineimg\"><br>\r\n<br>\r\n<i>Sent from my iPhone using <a href=\"/redirect/index.php?link=https%3A%2F%2Fitunes.apple.com%2Fus%2Fapp%2Fvozforums%2Fid531290212%3Fls%3D1%26amp%3Bmt%3D8\" target=\"_blank\">vozForums</a></i></div>\r\n\t\t\t\r\n\t\t</td>\r\n\t</tr>\r\n\t</table>\r\n</div>\n<!-- END TEMPLATE: bbcode_quote -->ng trong ảnh là e à , sao biết <img src=\"/images/smilies/Off/shame.gif\" border=\"0\" alt=\"\" title=\"Shame\" class=\"inlineimg\">\r\n\t\t"
text: "Quote:\r\n\t\r\n\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\tOriginally Posted by HoangYen198\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\tNhìn thế thôi ngoài đời ko như thế đâu \r\n\r\nSent from my iPhone using vozForums\r\n\t\t\t\r\n\t\t\r\n\t\r\n\t\r\n\nng trong ảnh là e à , sao biết"
| 104.894737 | 1,357 | 0.657802 |
8b845beed2570c45d09ddd5e1bd2a33f0b3ca8b7 | 301 | yaml | YAML | example/gardener-local/etcd/kustomization.yaml | unmarshall/gardener | 8803cf2d518098501129ab91a05b8d0960036733 | [
"Apache-2.0"
] | 2,208 | 2018-01-10T14:00:56.000Z | 2022-03-29T17:36:02.000Z | example/gardener-local/etcd/kustomization.yaml | unmarshall/gardener | 8803cf2d518098501129ab91a05b8d0960036733 | [
"Apache-2.0"
] | 3,810 | 2018-01-12T16:09:31.000Z | 2022-03-31T15:39:23.000Z | example/gardener-local/etcd/kustomization.yaml | unmarshall/gardener | 8803cf2d518098501129ab91a05b8d0960036733 | [
"Apache-2.0"
] | 433 | 2018-01-10T13:43:42.000Z | 2022-03-30T13:13:07.000Z | apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
generatorOptions:
disableNameSuffixHash: true
namespace: garden
commonLabels:
app: etcd
secretGenerator:
- name: etcd-tls
files:
- tls/ca.crt
- tls/server.crt
- tls/server.key
resources:
- service.yaml
- statefulset.yaml
| 14.333333 | 43 | 0.754153 |
d5c4fd4ad1dbe40e123c4615b200a86467cee00e | 67 | yaml | YAML | Common Programming Concepts/Data Types/lesson-remote-info.yaml | Cabalist/rustlings-course | 737b887daf09221762dcab91f1a1627262bcad3d | [
"MIT"
] | 74 | 2019-12-20T19:21:17.000Z | 2022-03-17T07:29:54.000Z | Common Programming Concepts/Data Types/lesson-remote-info.yaml | Cabalist/rustlings-course | 737b887daf09221762dcab91f1a1627262bcad3d | [
"MIT"
] | 46 | 2019-12-29T07:15:57.000Z | 2022-02-14T13:04:41.000Z | Common Programming Concepts/Data Types/lesson-remote-info.yaml | Cabalist/rustlings-course | 737b887daf09221762dcab91f1a1627262bcad3d | [
"MIT"
] | 20 | 2019-12-09T12:19:31.000Z | 2021-11-18T22:14:05.000Z | id: 271621
update_date: Thu, 31 Oct 2019 15:19:34 UTC
unit: 252665
| 16.75 | 42 | 0.746269 |
a457d95d170c74a375bb44047c47a67c34a54502 | 513 | yml | YAML | customer-self-service/web-files/service-en.html.webfile.yml | Cloudstrucc/PowerApps-WET-Canada | 3a93dfa2ae4674d4a4cc308e35d965cb03545a81 | [
"MIT"
] | 4 | 2021-12-26T04:22:05.000Z | 2021-12-30T20:18:35.000Z | customer-self-service/web-files/service-en.html.webfile.yml | Cloudstrucc/PowerApps-WET-Canada | 3a93dfa2ae4674d4a4cc308e35d965cb03545a81 | [
"MIT"
] | null | null | null | customer-self-service/web-files/service-en.html.webfile.yml | Cloudstrucc/PowerApps-WET-Canada | 3a93dfa2ae4674d4a4cc308e35d965cb03545a81 | [
"MIT"
] | null | null | null | adx_enabletracking: false
adx_excludefromsearch: false
adx_hiddenfromsitemap: false
adx_name: service-en.html
adx_parentpageid: b0a2d889-10c4-eb11-bacc-000d3af385d3
adx_partialurl: service-en.html
adx_publishingstateid: ed67356b-a2db-49a9-b26d-4c8a59e3d9a7
adx_webfileid: 41aebbfb-1bc4-eb11-bacc-0022483bf7f2
annotationid: cd19bb01-1cc4-eb11-bacc-0022483bf7f2
filename: service-en.html
isdocument: true
mimetype: application/octet-stream
objectid: 41aebbfb-1bc4-eb11-bacc-0022483bf7f2
objecttypecode: adx_webfile
| 34.2 | 59 | 0.863548 |
06450fb2839f24b475569dbef15deb6c542b2c81 | 3,445 | yaml | YAML | apim-traffic-tool/config/attack-tool.yaml | Sarangan0219/product-apim-tooling | 8e2ad3d772eeaf2e04d3e739cb092b7abb20c09b | [
"Apache-2.0"
] | null | null | null | apim-traffic-tool/config/attack-tool.yaml | Sarangan0219/product-apim-tooling | 8e2ad3d772eeaf2e04d3e739cb092b7abb20c09b | [
"Apache-2.0"
] | null | null | null | apim-traffic-tool/config/attack-tool.yaml | Sarangan0219/product-apim-tooling | 8e2ad3d772eeaf2e04d3e739cb092b7abb20c09b | [
"Apache-2.0"
] | null | null | null | # General Configurations of the attack tool
general_config:
# details for all hosted APIs. Attack tool will invoke according to these configurations
api_host:
protocol: https
ip: 127.0.0.1
port: 8243
# Attack tool will randomly append one of the following user agents to the request header
user_agents:
- Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.3) Gecko/20090913 Firefox/3.5.3
- Mozilla/5.0 (Windows; U; Windows NT 6.1; en; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)
- Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3 (.NET CLR 3.5.30729)
- Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090718 Firefox/3.5.1
- Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.1 (KHTML, like Gecko) Chrome/4.0.219.6 Safari/532.1
- Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; InfoPath.2)
- Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729)
- Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; Win64; x64; Trident/4.0)
- Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; SV1; .NET CLR 2.0.50727; InfoPath.2)
- Mozilla/5.0 (Windows; U; MSIE 7.0; Windows NT 6.0; en-US)
- Mozilla/4.0 (compatible; MSIE 6.1; Windows XP)
- Opera/9.80 (Windows NT 5.2; U; ru) Presto/2.5.22 Version/10.51
# Attack duration in seconds. In DOS/DDOS attacks this duration will be per API
attack_duration: 900
# Number of processes or threads used to achieve concurrency
number_of_processes: 100
# Scenario name
scenario: scenario_example
# Payloads for the request body. Attack tool will randomly select one of the following payloads when sending POST and PUT requests
payloads:
- '{"customerName": "Tom","delivered": true,"address": "customer_address","pizzaType": "customer_pizza","creditCardNumber": "customer_credit_card","quantity": 0,"orderId": "1"}'
- '{"customerName": "John","delivered": true,"address": "customer_address","pizzaType": "customer_pizza","creditCardNumber": "customer_credit_card","quantity": 0,"orderId": "1"}'
- '{"customerName": "Tim","delivered": true,"address": "customer_address","pizzaType": "customer_pizza","creditCardNumber": "customer_credit_card","quantity": 0,"orderId": "1"}'
# sleep patterns for simulating the attackers(time duration between the requests will be according to these patterns)
time_patterns:
pattern1: 0,0,0,2,0,0,2,2,1,0,0,0,0,0,2,3,0,0,0,1,0,0,1,0,0,1,1,0,0
pattern2: 0,5,1,0,6,0,2,100,10,0,0,0,3600,0,0,1,0,0,1,20,0,0,6,8,0,1,0,0,0,0,5,0,10
pattern3: 1,0,0,0,3,0,2,1,0,0,60,0,20,0,10,12,0,0,0,0,0,0,5,1,20,1,1,1,0,5,8,12,10,0
pattern4: 4,3,5,8,2,0,7,0,1500,1,1,30,20,8,2,2,2,10,15,2,2,0,16,0,90,0,11,0,2,2,2,3,2,2,5,10,0,30,20,100,150,5,0,3,30,10,10,11,5,0,30,500,0,0,0,2,60,0,10,5,3,1,2
pattern5: 900,3600,200
# Attack specific configurations
attacks:
abnormal_token_usage:
# Attack tool will use a random value between the min and max scalars to multiply the request count in normal traffic.
min_request_scalar: 3
max_request_scalar: 6
# Number of compromised users being simulated
compromised_user_count: 10
stolen_token:
# Number of compromised users being simulated
compromised_user_count: 10
| 58.389831 | 182 | 0.690276 |
06f7538ab47c3d457bcc8a6b2bdffc247f2168dd | 315 | yml | YAML | .travis.yml | agniswarm/nodejs-currency-converter | d1d2570fe1c3adec9d99136f880ba51db13425e8 | [
"MIT"
] | null | null | null | .travis.yml | agniswarm/nodejs-currency-converter | d1d2570fe1c3adec9d99136f880ba51db13425e8 | [
"MIT"
] | null | null | null | .travis.yml | agniswarm/nodejs-currency-converter | d1d2570fe1c3adec9d99136f880ba51db13425e8 | [
"MIT"
] | null | null | null | sudo: required
dist: bionic
language: node_js
node_js:
- node
install:
# - curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
# - nvm install
- npm update
- npm install
script:
- npm test
after_success:
- npm run report-coverage
- codecov
notifications:
email: false | 18.529412 | 85 | 0.695238 |
623e675750c1a87a5cc17e3990ae1226cea4c370 | 211 | yml | YAML | testnet/ansible/roles/icos_test_boundary_node/handlers/main.yml | ggreif/ic | ac56ec91f077c00d59eea3f73f51e14a1b3ea882 | [
"Apache-2.0"
] | 941 | 2021-05-10T08:14:14.000Z | 2022-03-31T11:40:24.000Z | testnet/ansible/roles/icos_test_boundary_node/handlers/main.yml | ggreif/ic | ac56ec91f077c00d59eea3f73f51e14a1b3ea882 | [
"Apache-2.0"
] | 3 | 2022-02-16T12:24:20.000Z | 2022-03-23T12:05:41.000Z | testnet/ansible/roles/icos_test_boundary_node/handlers/main.yml | ggreif/ic | ac56ec91f077c00d59eea3f73f51e14a1b3ea882 | [
"Apache-2.0"
] | 122 | 2021-05-10T08:21:23.000Z | 2022-03-25T20:34:12.000Z | - name: restart journalbeat
systemd:
daemon_reload: true
name: journalbeat
state: restarted
- name: restart metricbeat
systemd:
daemon_reload: true
name: metricbeat
state: restarted
| 17.583333 | 27 | 0.701422 |
a5d6a84e02a04ecd748362982fc8146b6eb3a3e9 | 623 | yaml | YAML | ci-operator/step-registry/openshift/e2e/openstack/byon/openshift-e2e-openstack-byon-workflow.yaml | sonam1412/release | a56e42a32cadb675e0e1de63e23dc5b02f85b873 | [
"Apache-2.0"
] | null | null | null | ci-operator/step-registry/openshift/e2e/openstack/byon/openshift-e2e-openstack-byon-workflow.yaml | sonam1412/release | a56e42a32cadb675e0e1de63e23dc5b02f85b873 | [
"Apache-2.0"
] | null | null | null | ci-operator/step-registry/openshift/e2e/openstack/byon/openshift-e2e-openstack-byon-workflow.yaml | sonam1412/release | a56e42a32cadb675e0e1de63e23dc5b02f85b873 | [
"Apache-2.0"
] | null | null | null | workflow:
as: openshift-e2e-openstack-byon
steps:
pre:
- chain: ipi-openstack-pre
test:
# The current test suites don't work fine when going through a proxy, so for now
# we just want to deploy a cluster and consider it tested. This will be improved
# in the future.
- ref: openstack-noop
post:
- chain: ipi-openstack-post
env:
CONFIG_TYPE: "byon"
BASE_DOMAIN: shiftstack.devcluster.openshift.com
documentation: |-
The openshift-e2e-openstack-byon workflow executes the common
end-to-end test suite on OpenShift BYON installation on OpenStack.
| 32.789474 | 87 | 0.683788 |
96974954d946ab90a46a47f516d591ac5daabf50 | 1,819 | yaml | YAML | recipe/meta.yaml | regro-cf-autotick-bot/r-fbasics-feedstock | 247ab99470fc4af72bc18252cc8b013f900b4a57 | [
"BSD-3-Clause"
] | null | null | null | recipe/meta.yaml | regro-cf-autotick-bot/r-fbasics-feedstock | 247ab99470fc4af72bc18252cc8b013f900b4a57 | [
"BSD-3-Clause"
] | null | null | null | recipe/meta.yaml | regro-cf-autotick-bot/r-fbasics-feedstock | 247ab99470fc4af72bc18252cc8b013f900b4a57 | [
"BSD-3-Clause"
] | null | null | null | {% set version = '3042.89' %}
{% set posix = 'm2-' if win else '' %}
{% set native = 'm2w64-' if win else '' %}
package:
name: r-fbasics
version: {{ version|replace("-", "_") }}
source:
fn: fBasics_{{ version }}.tar.gz
url:
- https://cran.r-project.org/src/contrib/fBasics_{{ version }}.tar.gz
- https://cran.r-project.org/src/contrib/Archive/fBasics/fBasics_{{ version }}.tar.gz
sha256: b8b8d2362cbcfae3282b35fb59258cc956e2e60a5d19e3c7cee06b51b434da74
build:
number: 0
skip: true # [win32]
rpaths:
- lib/R/lib/
- lib/
requirements:
build:
- r-base
- r-mass
- r-gss
- r-spatial
- r-stabledist
- r-timedate
- r-timeseries
- posix # [win]
- {{native}}toolchain # [win]
- gcc # [not win]
run:
- r-base
- r-mass
- r-gss
- r-spatial
- r-stabledist
- r-timedate
- r-timeseries
- libgcc # [not win]
test:
commands:
- $R -e "library('fBasics')" # [not win]
- "\"%R%\" -e \"library('fBasics')\"" # [win]
about:
home: https://www.rmetrics.org
license: GPL (>= 2)
summary: Provides a collection of functions to explore and to investigate basic properties
of financial returns and related quantities. The covered fields include techniques
of explorative data analysis and the investigation of distributional properties,
including parameter estimation and hypothesis testing. Even more there are several
utility functions for data handling and management.
license_family: GPL3
license_file: '{{ environ["PREFIX"] }}/lib/R/share/licenses/GPL-3' # [unix]
license_file: '{{ environ["PREFIX"] }}\R\share\licenses\GPL-3' # [win]
extra:
recipe-maintainers:
- johanneskoester
- bgruening
- daler
- jdblischak
- cbrueffer
| 25.619718 | 93 | 0.625069 |
ba0016f800cd1a83b589be6105fbbd71a9810a40 | 2,518 | yaml | YAML | package.yaml | magnus108/translato | 4e348df09464d15535e9efd44bd1b85a1d8fa270 | [
"BSD-3-Clause"
] | null | null | null | package.yaml | magnus108/translato | 4e348df09464d15535e9efd44bd1b85a1d8fa270 | [
"BSD-3-Clause"
] | null | null | null | package.yaml | magnus108/translato | 4e348df09464d15535e9efd44bd1b85a1d8fa270 | [
"BSD-3-Clause"
] | null | null | null | name: translato
version: 0.1.0.0
github: "githubuser/translato"
license: BSD3
author: "Author name here"
maintainer: "example@example.com"
copyright: "2021 Author name here"
extra-source-files:
- README.md
- ChangeLog.md
# Metadata used when publishing your package
# synopsis: Short description of your package
# category: Web
# To avoid duplicated efforts in documentation and dealing with the
# complications of embedding Haddock markup inside cabal files, it is
# common to point users to the README.md file.
description: Please see the README on GitHub at <https://github.com/githubuser/translato#readme>
default-extensions:
- DerivingStrategies
- DeriveGeneric
- DeriveAnyClass
- OverloadedStrings
- TypeSynonymInstances
- FlexibleInstances
- MultiParamTypeClasses
- InstanceSigs
- FlexibleContexts
- OverloadedLabels
- DuplicateRecordFields
- LambdaCase
- RecordWildCards
- TypeApplications
- ScopedTypeVariables
- KindSignatures
- ConstraintKinds
- GeneralizedNewtypeDeriving
- DataKinds
- TypeOperators
dependencies:
- name: base
mixin: hiding (Prelude)
- name: relude
mixin: (Relude as Prelude, Relude.Extra, Relude.Unsafe)
- name: aeson
- name: optparse-generic
- name: generic-lens
- name: lens
- name: comonad
- name: containers
- name: safe
- name: threepenny-gui
- name: cond
- name: data-fix
- name: unagi-chan
- name: mtl
- name: filepath
- name: bytestring
- name: exceptions
- name: async
- name: servant
- name: servant-server
- name: servant-client
- name: servant-docs
- name: servant-auth
- name: servant-auth-server
- name: servant-auth-client
- name: servant-auth-docs
- name: servant-conduit
- name: http-client
- name: warp
- name: uuid
- name: typed-uuid
- name: time
- name: text
- name: base16-bytestring
- name: random
- name: jose
- name: wai-cors
- name: blaze-html
- name: blaze-markup
- name: blaze-builder
- name: servant-blaze
- name: markdown
- name: cookie
- name: conduit
- name: fsnotify-conduit
- name: fsnotify
- name: resourcet
library:
source-dirs: src
executables:
translato-exe:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- translato
tests:
translato-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- translato
| 20.809917 | 104 | 0.683876 |
ba7c0c06dfe2cd498a8eebb149bccbef648b325c | 3,017 | yaml | YAML | .packit.yaml | ryanlerch/securitas | 2eba843ed5e0f6c95a342b8b152bae943216e48c | [
"MIT"
] | 1 | 2020-01-16T12:38:53.000Z | 2020-01-16T12:38:53.000Z | .packit.yaml | ryanlerch/securitas | 2eba843ed5e0f6c95a342b8b152bae943216e48c | [
"MIT"
] | 113 | 2020-01-08T10:46:14.000Z | 2020-02-26T09:51:09.000Z | .packit.yaml | ryanlerch/securitas | 2eba843ed5e0f6c95a342b8b152bae943216e48c | [
"MIT"
] | 8 | 2020-01-08T11:46:02.000Z | 2020-02-21T19:22:41.000Z | # See the documentation for more information:
# https://packit.dev/docs/configuration/
specfile_path: noggin.spec
# add or remove files that should be synced
files_to_sync:
- noggin.spec
- .packit.yaml
- noggin.service
- noggin.sysconfig
- sources
# name in upstream package repository or registry (e.g. in PyPI)
upstream_package_name: noggin-aaa
# downstream (Fedora) RPM package name
downstream_package_name: noggin
upstream_tag_template: v{version}
srpm_build_deps:
- wget
actions:
create-archive:
- "poetry build -f sdist"
- "sh -c 'echo dist/noggin-aaa-$(poetry version -s).tar.gz'"
get-current-version:
- "poetry version -s"
post-upstream-clone:
# fetch specfile, patches, documentation etc. from the downstream
- "wget https://src.fedoraproject.org/rpms/noggin/raw/rawhide/f/noggin.spec -O noggin.spec"
- "wget https://src.fedoraproject.org/rpms/noggin/raw/main/f/noggin.service -O noggin.service"
- "wget https://src.fedoraproject.org/rpms/noggin/raw/main/f/noggin.sysconfig -O noggin.sysconfig"
- "wget https://src.fedoraproject.org/rpms/noggin/raw/main/f/sources -O sources"
- "sh -c 'wget https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py && python3 install-poetry.py --version 1.1.7 && rm install-poetry.py'"
jobs:
# upon upstream PRs, perform COPR builds
- job: copr_build
trigger: pull_request
metadata:
targets:
- fedora-latest-stable
- fedora-development
# upon upstream PRs, test builds
- job: tests
trigger: pull_request
metadata:
targets:
- fedora-latest-stable
- fedora-development
# upon upstream releases, perform COPR builds
- job: copr_build
trigger: release
metadata:
targets:
- fedora-latest-stable
- fedora-development
# upon upstream releases, test builds
- job: tests
trigger: release
metadata:
targets:
- fedora-latest-stable
- fedora-development
# upon downstream changes, create a PR upstream with sync'd files from above
- job: sync_from_downstream
trigger: commit
# land upstream release in fedora dist-git - no builds
- job: propose_downstream
trigger: release
metadata:
dist_git_branches:
- fedora-latest-stable
- fedora-development
# create an srpm from upstream and submit a scratch build to koji
- job: production_build
trigger: release
metadata:
targets:
- fedora-latest-stable
- fedora-development
# downstream automation
# trigger a build in koji for a new dist-git commit
- job: koji_build
trigger: commit
metadata:
dist_git_branches:
- fedora-latest-stable
- fedora-development
# create a new update in bodhi for a successful koji build. directly related to `koji_build`
- job: bodhi_update
trigger: commit
metadata:
dist_git_branches:
- fedora-latest-stable
- fedora-development
| 28.196262 | 169 | 0.686443 |
9e91734290b4be407d2bbad83cce565d82e91511 | 1,133 | yaml | YAML | recipe/meta.yaml | pavoljuhas/pyobjcryst-feedstock | ab69e49302c4981225d73b6e2ad5bffd24e51a6f | [
"BSD-3-Clause"
] | null | null | null | recipe/meta.yaml | pavoljuhas/pyobjcryst-feedstock | ab69e49302c4981225d73b6e2ad5bffd24e51a6f | [
"BSD-3-Clause"
] | null | null | null | recipe/meta.yaml | pavoljuhas/pyobjcryst-feedstock | ab69e49302c4981225d73b6e2ad5bffd24e51a6f | [
"BSD-3-Clause"
] | null | null | null | {% set name = "pyobjcryst" %}
{% set version = "2.0.2" %}
{% set sha256 = "b48b1a66973dc42d8d15c5ddcf4989cb4160cab220c3a3c60664af46926092d4" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: {{ sha256 }}
patches:
- scattering.patch
build:
number: 1
skip: True # [win or py2k]
script: python setup.py install
requirements:
build:
- python
- setuptools
- numpy 1.11.*
- libobjcryst 2017.1.*
- boost 1.66.0
- toolchain
run:
- python
- setuptools
- numpy >=1.11.2
- libobjcryst 2017.1.*
- boost 1.66.0
test:
imports:
- pyobjcryst
- pyobjcryst.tests
about:
home: https://github.com/diffpy/pyobjcryst
license: BNL
license_family: BSD
license_file: LICENSE.txt
summary: 'Python bindings to the ObjCryst++ crystallographic library.'
doc_url: http://diffpy.github.io/pyobjcryst
dev_url: https://github.com/diffpy/pyobjcryst
extra:
recipe-maintainers:
- CJ-Wright
- pavoljuhas
| 20.981481 | 95 | 0.639011 |
80724eff284ed048dda2d0ca7262ee0acad1cccc | 370 | yml | YAML | docker-compose.yml | Prakshal2607/website | fc06130a2307a4d7b7e718098ad4dfc08b6b4bc4 | [
"MIT"
] | 5 | 2015-06-07T16:24:12.000Z | 2015-11-04T12:38:32.000Z | docker-compose.yml | hackclub-archive/website | 3b682569f6b5cef717f8538dcb7144b5e228ecbc | [
"MIT"
] | 89 | 2015-04-27T07:12:03.000Z | 2015-11-07T04:34:43.000Z | docker-compose.yml | hackclub-archive/website | 3b682569f6b5cef717f8538dcb7144b5e228ecbc | [
"MIT"
] | 4 | 2020-10-01T17:58:21.000Z | 2020-10-11T16:45:55.000Z | version: '2'
services:
db:
image: postgres
web:
build: .
command: bundle exec rails s -p 3000 -b '0.0.0.0'
volumes:
- .:/usr/src/app
volumes_from:
- bundle
ports:
- "3000:3000"
depends_on:
- db
bundle:
image: alpine
command: echo "I'm a little data volume, short and stout!"
volumes:
- /bundle
| 17.619048 | 62 | 0.551351 |
241180e2c23beb39ae7044938a25f7cb23197748 | 3,028 | yml | YAML | roles/etcd/tasks/system_container.yml | ferjosem362/openshift | 41ee91326a9f533396bc876d399d4e7c50c9ea38 | [
"Apache-2.0"
] | null | null | null | roles/etcd/tasks/system_container.yml | ferjosem362/openshift | 41ee91326a9f533396bc876d399d4e7c50c9ea38 | [
"Apache-2.0"
] | null | null | null | roles/etcd/tasks/system_container.yml | ferjosem362/openshift | 41ee91326a9f533396bc876d399d4e7c50c9ea38 | [
"Apache-2.0"
] | null | null | null | ---
- name: Pull etcd system container
command: atomic pull --storage=ostree {{ openshift.etcd.etcd_image }}
register: pull_result
changed_when: "'Pulling layer' in pull_result.stdout"
- name: Check etcd system container package
command: >
atomic containers list --no-trunc -a -f container=etcd
register: result
- name: Set initial Etcd cluster
set_fact:
etcd_initial_cluster: >
{% for host in etcd_peers | default([]) -%}
{% if loop.last -%}
{{ hostvars[host].etcd_hostname }}={{ etcd_peer_url_scheme }}://{{ hostvars[host].etcd_ip }}:{{ etcd_peer_port }}
{%- else -%}
{{ hostvars[host].etcd_hostname }}={{ etcd_peer_url_scheme }}://{{ hostvars[host].etcd_ip }}:{{ etcd_peer_port }},
{%- endif -%}
{% endfor -%}
- name: Update Etcd system container package
command: >
atomic containers update
--set ETCD_LISTEN_PEER_URLS={{ etcd_listen_peer_urls }}
--set ETCD_NAME={{ etcd_hostname }}
--set ETCD_INITIAL_CLUSTER={{ etcd_initial_cluster | replace('\n', '') }}
--set ETCD_LISTEN_CLIENT_URLS={{ etcd_listen_client_urls }}
--set ETCD_INITIAL_ADVERTISE_PEER_URLS={{ etcd_initial_advertise_peer_urls }}
--set ETCD_INITIAL_CLUSTER_STATE={{ etcd_initial_cluster_state }}
--set ETCD_INITIAL_CLUSTER_TOKEN={{ etcd_initial_cluster_token }}
--set ETCD_ADVERTISE_CLIENT_URLS={{ etcd_advertise_client_urls }}
--set ETCD_CA_FILE={{ etcd_system_container_conf_dir }}/ca.crt
--set ETCD_CERT_FILE={{ etcd_system_container_conf_dir }}/server.crt
--set ETCD_KEY_FILE={{ etcd_system_container_conf_dir }}/server.key
--set ETCD_PEER_CA_FILE={{ etcd_system_container_conf_dir }}/ca.crt
--set ETCD_PEER_CERT_FILE={{ etcd_system_container_conf_dir }}/peer.crt
--set ETCD_PEER_KEY_FILE={{ etcd_system_container_conf_dir }}/peer.key
etcd
when:
- ("etcd" in result.stdout)
- name: Install Etcd system container package
command: >
atomic install --system --name=etcd
--set ETCD_LISTEN_PEER_URLS={{ etcd_listen_peer_urls }}
--set ETCD_NAME={{ etcd_hostname }}
--set ETCD_INITIAL_CLUSTER={{ etcd_initial_cluster | replace('\n', '') }}
--set ETCD_LISTEN_CLIENT_URLS={{ etcd_listen_client_urls }}
--set ETCD_INITIAL_ADVERTISE_PEER_URLS={{ etcd_initial_advertise_peer_urls }}
--set ETCD_INITIAL_CLUSTER_STATE={{ etcd_initial_cluster_state }}
--set ETCD_INITIAL_CLUSTER_TOKEN={{ etcd_initial_cluster_token }}
--set ETCD_ADVERTISE_CLIENT_URLS={{ etcd_advertise_client_urls }}
--set ETCD_CA_FILE={{ etcd_system_container_conf_dir }}/ca.crt
--set ETCD_CERT_FILE={{ etcd_system_container_conf_dir }}/server.crt
--set ETCD_KEY_FILE={{ etcd_system_container_conf_dir }}/server.key
--set ETCD_PEER_CA_FILE={{ etcd_system_container_conf_dir }}/ca.crt
--set ETCD_PEER_CERT_FILE={{ etcd_system_container_conf_dir }}/peer.crt
--set ETCD_PEER_KEY_FILE={{ etcd_system_container_conf_dir }}/peer.key
{{ openshift.etcd.etcd_image }}
when:
- ("etcd" not in result.stdout)
| 47.3125 | 120 | 0.719947 |
f431623ef18aae6cdfb5210f18c3ea740380245c | 540 | yml | YAML | src/YE/MyPlatformBundle/Resources/config/routing.yml | rachidtn/Medical | 37ebc887e185ce2e70e2ad2f31536daea48b2801 | [
"MIT"
] | null | null | null | src/YE/MyPlatformBundle/Resources/config/routing.yml | rachidtn/Medical | 37ebc887e185ce2e70e2ad2f31536daea48b2801 | [
"MIT"
] | null | null | null | src/YE/MyPlatformBundle/Resources/config/routing.yml | rachidtn/Medical | 37ebc887e185ce2e70e2ad2f31536daea48b2801 | [
"MIT"
] | null | null | null | ye_my_platform_medecin:
resource: "@YEMyPlatformBundle/Resources/config/routing/medecin.yml"
prefix: /medecin
Appointment:
resource: "@YEMyPlatformBundle/Resources/config/routing/appointment.yml"
prefix: /Appointment
ye_my_platform_homepage:
path: /index
defaults: { _controller: YEMyPlatformBundle:Default:index }
add_app:
path: /new
defaults: { _controller: YEMyPlatformBundle:Appointment:add }
show_app:
path: /show
defaults: { _controller: YEMyPlatformBundle:Appointment:show } | 30 | 76 | 0.735185 |
63b240a3bf2a6521f1fa49b1c05ef795638756b9 | 1,601 | yml | YAML | META.yml | surcouf/pkg-libwww-json-perl | faee880a2b8c0e02e3a6e64bbe343e77153b4301 | [
"Artistic-1.0"
] | null | null | null | META.yml | surcouf/pkg-libwww-json-perl | faee880a2b8c0e02e3a6e64bbe343e77153b4301 | [
"Artistic-1.0"
] | null | null | null | META.yml | surcouf/pkg-libwww-json-perl | faee880a2b8c0e02e3a6e64bbe343e77153b4301 | [
"Artistic-1.0"
] | null | null | null | ---
abstract: "Make working with JSON Web API's as painless as possible"
author:
- 'Joe Papperello <antipasta@cpan.org>'
build_requires:
Test::Mock::LWP::Dispatch: '0.06'
Test::More: '0.98'
configure_requires:
Module::Build: '0.38'
dynamic_config: 0
generated_by: 'Minilla/v2.3.0, CPAN::Meta::Converter version 2.143240'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: '1.4'
name: WWW-JSON
no_index:
directory:
- t
- xt
- inc
- share
- eg
- examples
- author
- builder
provides:
WWW::JSON:
file: lib/WWW/JSON.pm
version: '1.01'
WWW::JSON::Response:
file: lib/WWW/JSON/Response.pm
WWW::JSON::Role::Authentication:
file: lib/WWW/JSON/Role/Authentication.pm
WWW::JSON::Role::Authentication::Basic:
file: lib/WWW/JSON/Role/Authentication/Basic.pm
WWW::JSON::Role::Authentication::Header:
file: lib/WWW/JSON/Role/Authentication/Header.pm
WWW::JSON::Role::Authentication::OAuth1:
file: lib/WWW/JSON/Role/Authentication/OAuth1.pm
WWW::JSON::Role::Authentication::OAuth2:
file: lib/WWW/JSON/Role/Authentication/OAuth2.pm
requires:
JSON::XS: '2.33'
LWP::UserAgent: '0'
Moo: '1.001'
Net::OAuth: '0.28'
Safe::Isa: '1.000003'
Try::Tiny: '0.12'
URI: '0'
perl: '5.008005'
resources:
bugtracker: https://github.com/antipasta/WWW-JSON/issues
homepage: https://github.com/antipasta/WWW-JSON
repository: git://github.com/antipasta/WWW-JSON.git
version: '1.01'
x_contributors:
- 'Joe Papperello <joeyis@gmail.com>'
- 'Joe Papperello <joe@socialflow.com>'
| 26.683333 | 70 | 0.684572 |
6ce89e47f6ea1a1ce749da5b0dbe47e527b72b4f | 256 | yml | YAML | vars/main.yml | msgqe/ansible-maestro-results-db | cc8b77b7f66a8a0a324d12bfe7ad53d289c24132 | [
"Apache-2.0"
] | null | null | null | vars/main.yml | msgqe/ansible-maestro-results-db | cc8b77b7f66a8a0a324d12bfe7ad53d289c24132 | [
"Apache-2.0"
] | null | null | null | vars/main.yml | msgqe/ansible-maestro-results-db | cc8b77b7f66a8a0a324d12bfe7ad53d289c24132 | [
"Apache-2.0"
] | null | null | null | ---
maestro_rdb_dependencies: java-1.8.0-openjdk-devel
# vars file for ansible-maestro-client
sdkman_dir: /opt/sdk
sdkman_auto_answer: true
sdkman_update: true
sdkman_validate_ssl: false
sdkman_install_packages:
- { candidate: groovy, version: 2.4.12 }
| 23.272727 | 50 | 0.789063 |
49eb7f8b8da5a90c025cb04d087b6ffd3fd19076 | 40 | yml | YAML | recipes/libzen/config.yml | rockandsalt/conan-center-index | d739adcec3e4dd4c250eff559ceb738e420673dd | [
"MIT"
] | 562 | 2019-09-04T12:23:43.000Z | 2022-03-29T16:41:43.000Z | recipes/libzen/config.yml | rockandsalt/conan-center-index | d739adcec3e4dd4c250eff559ceb738e420673dd | [
"MIT"
] | 9,799 | 2019-09-04T12:02:11.000Z | 2022-03-31T23:55:45.000Z | recipes/libzen/config.yml | rockandsalt/conan-center-index | d739adcec3e4dd4c250eff559ceb738e420673dd | [
"MIT"
] | 1,126 | 2019-09-04T11:57:46.000Z | 2022-03-31T16:43:38.000Z | versions:
"0.4.38":
folder: "all"
| 10 | 17 | 0.525 |
531c802b7ffe2d22d269da07599e8d547420d1ee | 616 | yml | YAML | config/database.example.yml | easyhappy/andy_site | 201bb1b68d904930b5e2def2d363465610a3509e | [
"MIT"
] | null | null | null | config/database.example.yml | easyhappy/andy_site | 201bb1b68d904930b5e2def2d363465610a3509e | [
"MIT"
] | null | null | null | config/database.example.yml | easyhappy/andy_site | 201bb1b68d904930b5e2def2d363465610a3509e | [
"MIT"
] | null | null | null | # MySQL. Versions 4.1 and 5.0 are recommended.
#
# Install the MYSQL driver
# gem install mysql2
#
# Ensure the MySQL gem is defined in your Gemfile
# gem 'mysql2'
#
# And be sure to use new-style password hashing:
# http://dev.mysql.com/doc/refman/5.0/en/old-client.html
development: &default
adapter: mysql2
encoding: utf8
reconnect: false
database: andy_site
pool: 5
username: tianji
password: tianji
host: localhost
socket: /var/run/mysqld/mysqld.sock
test:
<<: *default
database: andy_site_test
production:
<<: *default
reconnect: true
pool: 16
| 20.533333 | 58 | 0.672078 |
202859295db379859760a9580d68d52d2bbe9c00 | 177 | yml | YAML | tests/test.yml | benjamincaldwell/ansible-role-letsencrypt | 7935b36c68a1147dcbaa1c17e5d822f4abeb804d | [
"MIT"
] | 1 | 2016-06-22T17:34:27.000Z | 2016-06-22T17:34:27.000Z | tests/test.yml | benjamincaldwell/ansible-role-letsencrypt | 7935b36c68a1147dcbaa1c17e5d822f4abeb804d | [
"MIT"
] | null | null | null | tests/test.yml | benjamincaldwell/ansible-role-letsencrypt | 7935b36c68a1147dcbaa1c17e5d822f4abeb804d | [
"MIT"
] | null | null | null | ---
- vars:
email: user@example.com
domains: hello.example.com
CF_email: user@example.com
CF_key: CLOUDFLARE KEY
hosts: localhost
roles:
- letsencrypt
| 14.75 | 30 | 0.655367 |
89b28d3c725eda42c67b5fd45f0c8782ec8646ae | 4,929 | yml | YAML | docs-ref-autogen/com.microsoft.azure.cognitiveservices.language.spellcheck.yml | spelluru/azure-docs-sdk-java | c4bbdc14ca38ae41600e1adfb3926b45fd4986af | [
"CC-BY-4.0",
"MIT"
] | null | null | null | docs-ref-autogen/com.microsoft.azure.cognitiveservices.language.spellcheck.yml | spelluru/azure-docs-sdk-java | c4bbdc14ca38ae41600e1adfb3926b45fd4986af | [
"CC-BY-4.0",
"MIT"
] | null | null | null | docs-ref-autogen/com.microsoft.azure.cognitiveservices.language.spellcheck.yml | spelluru/azure-docs-sdk-java | c4bbdc14ca38ae41600e1adfb3926b45fd4986af | [
"CC-BY-4.0",
"MIT"
] | 1 | 2021-06-04T23:42:38.000Z | 2021-06-04T23:42:38.000Z | ### YamlMime:ManagedReference
items:
- uid: com.microsoft.azure.cognitiveservices.language.spellcheck
id: spellcheck
artifact: com.microsoft.azure.cognitiveservices:azure-cognitiveservices-spellcheck:1.0.2
children:
- com.microsoft.azure.cognitiveservices.language.spellcheck.BingSpellCheckAPI
- com.microsoft.azure.cognitiveservices.language.spellcheck.BingSpellCheckManager
- com.microsoft.azure.cognitiveservices.language.spellcheck.BingSpellCheckOperations
- com.microsoft.azure.cognitiveservices.language.spellcheck.BingSpellCheckOperations.BingSpellCheckOperationsSpellCheckerDefinition
- com.microsoft.azure.cognitiveservices.language.spellcheck.BingSpellCheckOperations.BingSpellCheckOperationsSpellCheckerDefinitionStages
- com.microsoft.azure.cognitiveservices.language.spellcheck.BingSpellCheckOperations.BingSpellCheckOperationsSpellCheckerDefinitionStages.WithAllOptions
- com.microsoft.azure.cognitiveservices.language.spellcheck.BingSpellCheckOperations.BingSpellCheckOperationsSpellCheckerDefinitionStages.WithExecute
- com.microsoft.azure.cognitiveservices.language.spellcheck.BingSpellCheckOperations.BingSpellCheckOperationsSpellCheckerDefinitionStages.WithText
langs:
- java
name: com.microsoft.azure.cognitiveservices.language.spellcheck
nameWithType: com.microsoft.azure.cognitiveservices.language.spellcheck
fullName: com.microsoft.azure.cognitiveservices.language.spellcheck
type: Namespace
summary: >-
This package contains the classes for BingSpellCheckAPI.
The Spell Check API - V7 lets you check a text string for spelling and grammar errors.
syntax:
content: package com.microsoft.azure.cognitiveservices.language.spellcheck
references:
- uid: com.microsoft.azure.cognitiveservices.language.spellcheck.BingSpellCheckAPI
name: BingSpellCheckAPI
nameWithType: BingSpellCheckAPI
fullName: com.microsoft.azure.cognitiveservices.language.spellcheck.BingSpellCheckAPI
- uid: com.microsoft.azure.cognitiveservices.language.spellcheck.BingSpellCheckManager
name: BingSpellCheckManager
nameWithType: BingSpellCheckManager
fullName: com.microsoft.azure.cognitiveservices.language.spellcheck.BingSpellCheckManager
- uid: com.microsoft.azure.cognitiveservices.language.spellcheck.BingSpellCheckOperations
name: BingSpellCheckOperations
nameWithType: BingSpellCheckOperations
fullName: com.microsoft.azure.cognitiveservices.language.spellcheck.BingSpellCheckOperations
- uid: com.microsoft.azure.cognitiveservices.language.spellcheck.BingSpellCheckOperations.BingSpellCheckOperationsSpellCheckerDefinition
name: BingSpellCheckOperations.BingSpellCheckOperationsSpellCheckerDefinition
nameWithType: BingSpellCheckOperations.BingSpellCheckOperationsSpellCheckerDefinition
fullName: com.microsoft.azure.cognitiveservices.language.spellcheck.BingSpellCheckOperations.BingSpellCheckOperationsSpellCheckerDefinition
- uid: com.microsoft.azure.cognitiveservices.language.spellcheck.BingSpellCheckOperations.BingSpellCheckOperationsSpellCheckerDefinitionStages
name: BingSpellCheckOperations.BingSpellCheckOperationsSpellCheckerDefinitionStages
nameWithType: BingSpellCheckOperations.BingSpellCheckOperationsSpellCheckerDefinitionStages
fullName: com.microsoft.azure.cognitiveservices.language.spellcheck.BingSpellCheckOperations.BingSpellCheckOperationsSpellCheckerDefinitionStages
- uid: com.microsoft.azure.cognitiveservices.language.spellcheck.BingSpellCheckOperations.BingSpellCheckOperationsSpellCheckerDefinitionStages.WithAllOptions
name: BingSpellCheckOperations.BingSpellCheckOperationsSpellCheckerDefinitionStages.WithAllOptions
nameWithType: BingSpellCheckOperations.BingSpellCheckOperationsSpellCheckerDefinitionStages.WithAllOptions
fullName: com.microsoft.azure.cognitiveservices.language.spellcheck.BingSpellCheckOperations.BingSpellCheckOperationsSpellCheckerDefinitionStages.WithAllOptions
- uid: com.microsoft.azure.cognitiveservices.language.spellcheck.BingSpellCheckOperations.BingSpellCheckOperationsSpellCheckerDefinitionStages.WithExecute
name: BingSpellCheckOperations.BingSpellCheckOperationsSpellCheckerDefinitionStages.WithExecute
nameWithType: BingSpellCheckOperations.BingSpellCheckOperationsSpellCheckerDefinitionStages.WithExecute
fullName: com.microsoft.azure.cognitiveservices.language.spellcheck.BingSpellCheckOperations.BingSpellCheckOperationsSpellCheckerDefinitionStages.WithExecute
- uid: com.microsoft.azure.cognitiveservices.language.spellcheck.BingSpellCheckOperations.BingSpellCheckOperationsSpellCheckerDefinitionStages.WithText
name: BingSpellCheckOperations.BingSpellCheckOperationsSpellCheckerDefinitionStages.WithText
nameWithType: BingSpellCheckOperations.BingSpellCheckOperationsSpellCheckerDefinitionStages.WithText
fullName: com.microsoft.azure.cognitiveservices.language.spellcheck.BingSpellCheckOperations.BingSpellCheckOperationsSpellCheckerDefinitionStages.WithText
| 83.542373 | 162 | 0.89227 |
2cc3b9f739ea2e7c09f96fb012485bddef187858 | 622 | yml | YAML | vendor/plugins/dashboard/config/locales/nb.yml | magpieuk/Azure | f9f1a84dd2c6b8d35627378727f6bdabc519290b | [
"MIT"
] | 1 | 2015-12-18T18:20:13.000Z | 2015-12-18T18:20:13.000Z | vendor/plugins/dashboard/config/locales/nb.yml | magpieuk/Azure | f9f1a84dd2c6b8d35627378727f6bdabc519290b | [
"MIT"
] | null | null | null | vendor/plugins/dashboard/config/locales/nb.yml | magpieuk/Azure | f9f1a84dd2c6b8d35627378727f6bdabc519290b | [
"MIT"
] | null | null | null | nb:
plugins:
refinery_dashboard:
title: Dashboard
admin:
dashboard:
index:
quick_tasks: Vanlige oppgaver
add_a_new_page: Legg til en ny side
update_a_page: Oppdater en side
upload_a_image: Last opp bilde
change_language: Endre Språk
see_home_page: Se hjemmesiden
recent_activity:
latest_activity: Siste aktivitet
see: Se '{{what}}'
recent_inquiries:
latest_inquiries: Latest inquiries
updated:
'with_article "the"': oppdatert
created:
'with_article "the"': opprettet
ago: "{{time}} siden"
see: Se
| 24.88 | 43 | 0.639871 |
2f33629c4e32f76d2e6f56bdc30ae426a9a9e375 | 697 | yml | YAML | definitions/en/ultbx/names_tribal.yml | rmoliva/orion | 0a2cf56aea1f11757d59074ae821c2363decedb1 | [
"MIT"
] | null | null | null | definitions/en/ultbx/names_tribal.yml | rmoliva/orion | 0a2cf56aea1f11757d59074ae821c2363decedb1 | [
"MIT"
] | 6 | 2020-09-04T14:53:22.000Z | 2021-05-07T22:38:31.000Z | definitions/en/ultbx/names_tribal.yml | roldevs/palantir | c92cc40027a32cc127fbe37a3926ab5702e4d446 | [
"MIT"
] | 1 | 2018-11-02T09:32:26.000Z | 2018-11-02T09:32:26.000Z | meta:
system: Ultimate Toolbox
data:
text: Tribal Names
options:
- text: Ak�ten the Blood Drinker
- text: Black Horn
- text: Boory the Fire Bringer
- text: Fellkirk the Basher
- text: Gooresh the Rock Thrower
- text: Gruff the Loud
- text: Hk�toon the Spear
- text: Jak�talak Little Dragon
- text: Krasjak the One Ear
- text: Kreetona the Ugly
- text: Kri the Fast
- text: Magdela Strong Fist
- text: Mishkar the Sly
- text: Miskar Razor Tooth
- text: Parig the Bowsworn
- text: Red Fist of the Hammer
- text: Reton the Green Eye
- text: Rexor the Maul
- text: Rontik�thar Blood Red
- text: Thogdar Axe Smasher
| 26.807692 | 36 | 0.64132 |
e03ed48ec68b7a54c829cfd41a219cac26c0143f | 321 | yml | YAML | bamboo-specs/bamboo.yml | kul-samples/sample-java-app | da36fd74727d935defaec7283e640bbfa234530d | [
"MIT"
] | 1 | 2021-06-13T07:35:17.000Z | 2021-06-13T07:35:17.000Z | bamboo-specs/bamboo.yml | kul-samples/sample-java-app | da36fd74727d935defaec7283e640bbfa234530d | [
"MIT"
] | 9 | 2021-06-05T06:27:11.000Z | 2021-06-13T08:00:40.000Z | bamboo-specs/bamboo.yml | kul-samples/sample-java-app | da36fd74727d935defaec7283e640bbfa234530d | [
"MIT"
] | 6 | 2021-06-05T06:31:25.000Z | 2021-10-02T10:41:22.000Z | ---
version: 2
plan:
project-key: KUL
name: bamboo-specs
key: BS
stages:
- Build:
- Build and Package
Build and Package:
tasks:
- maven:
executable: maven_3.6.3
jdk: JDK
goal: clean package
artifacts:
- name: IndianState
location: target/
pattern: "*.war"
required: true
| 15.285714 | 29 | 0.613707 |
795458748a3e780d2ccb47e717370c335062e0af | 627 | yaml | YAML | data/projects/2014-07-06-project-2.yaml | tobyglenn/richvalleyharvest | 347e18cf084f72bfaa7b1fe82f816b2519ae1455 | [
"MIT"
] | null | null | null | data/projects/2014-07-06-project-2.yaml | tobyglenn/richvalleyharvest | 347e18cf084f72bfaa7b1fe82f816b2519ae1455 | [
"MIT"
] | null | null | null | data/projects/2014-07-06-project-2.yaml | tobyglenn/richvalleyharvest | 347e18cf084f72bfaa7b1fe82f816b2519ae1455 | [
"MIT"
] | null | null | null | modalID: 2
title: Chicken Tractors
subtitle: Stephanie built a set of temporary structures (chicken tractors) to move chickens
date: 2014-07-06
img: chicken-tractor.jpg
preview: chicken-tractor-preview.jpg
client: Plans
clientLink: "http://www.fresheggsdaily.com/2013/08/how-to-build-chicken-tractor.html?m=1"
category: Construction
description: She followed the specifications from the website below and built a set of 4 chicken tractors. 3 are being used for our laying hens and 1 is in use for our meat birds. We are using them to allow us to plant in the field while keeping the chinkens out of our garden areas.
| 57 | 284 | 0.786284 |
4ee8f0b0557caf8fbcbdbf19388340bfcfd3dc5e | 707 | yaml | YAML | examples/gunicorn_gc_count.yaml | josecv/ebpf-usdt-exporter | 7135b8f87980adae5d6045241d632bf537931b9a | [
"MIT"
] | 3 | 2021-03-26T01:32:39.000Z | 2021-12-23T08:26:12.000Z | examples/gunicorn_gc_count.yaml | josecv/ebpf-userspace-exporter | 7135b8f87980adae5d6045241d632bf537931b9a | [
"MIT"
] | null | null | null | examples/gunicorn_gc_count.yaml | josecv/ebpf-userspace-exporter | 7135b8f87980adae5d6045241d632bf537931b9a | [
"MIT"
] | null | null | null | programs:
- name: gc_total
metrics:
counters:
- name: gc_total
help: Total number of gc events
table: gc_counts
labels:
- name: gen
size: 8
decoders:
- name: uint
usdt:
gc__start: trace_gc__start
attachment:
binary_name: "gunicorn"
code: |
struct gc_event_t {
u64 gen;
};
BPF_HASH(gc_counts, struct gc_event_t);
int trace_gc__start(struct pt_regs *ctx) {
struct gc_event_t e = {};
int gen = 0;
bpf_usdt_readarg(1, ctx, &gen);
e.gen = gen;
gc_counts.increment(e);
return 0;
}
| 22.09375 | 48 | 0.49505 |
f6c66334d27651b989f77637120cf810a83ab88a | 702 | yml | YAML | azure-pipelines.yml | rivoric/python-docker | 33dfa806b735e09dd34d8cd80fff78846aebd8a6 | [
"MIT"
] | null | null | null | azure-pipelines.yml | rivoric/python-docker | 33dfa806b735e09dd34d8cd80fff78846aebd8a6 | [
"MIT"
] | null | null | null | azure-pipelines.yml | rivoric/python-docker | 33dfa806b735e09dd34d8cd80fff78846aebd8a6 | [
"MIT"
] | null | null | null | # Build and push a Docker image
trigger:
- master
resources:
- repo: self
variables:
imageName: docker-python
tag: 0.$(Build.BuildId)
acr: dicci-acr
stages:
- stage: Build
displayName: Build image
jobs:
- job: Build
displayName: Build
pool:
vmImage: 'ubuntu-latest'
steps:
- task: Docker@2
displayName: Build an image
inputs:
command: build
repository: $(imageName)
dockerfile: 'Dockerfile'
tags: |
$(tag)
- task: Docker@2
displayName: Push docker image to ACR
inputs:
command: push
containerRegistry: $(acr)
repository: $(imageName)
tags: |
$(tag)
| 18 | 43 | 0.579772 |
1036eb6301c7e4228f206ef232659bc704f40130 | 224 | yaml | YAML | gan/transGAN/configs/transgan_cifar10.yaml | no-name-xiaosheng/PaddleViT | 50226a3be5095b3727d3c62d2eab23ef1e9612ec | [
"Apache-2.0"
] | 993 | 2021-08-30T01:58:57.000Z | 2022-03-31T14:03:07.000Z | gan/transGAN/configs/transgan_cifar10.yaml | Dongsheng-Bi/PaddleViT | c90a6c8dc3787e69cef3a37b9a260bd59eeff1f7 | [
"Apache-2.0"
] | 120 | 2021-09-03T13:05:32.000Z | 2022-03-29T02:08:22.000Z | gan/transGAN/configs/transgan_cifar10.yaml | Dongsheng-Bi/PaddleViT | c90a6c8dc3787e69cef3a37b9a260bd59eeff1f7 | [
"Apache-2.0"
] | 253 | 2021-08-30T08:50:27.000Z | 2022-03-26T09:21:08.000Z | DATA:
IMAGE_SIZE: 32
DATASET: 'cifar10'
MAX_GEN_NUM: 50000
MAX_REAL_NUM: None
MODEL:
TYPE: TransGAN
NAME: TransGAN
NUM_CLASSES: 10
GEN_MODEL: "ViT_custom"
DIS_MODEL: "ViT_custom_scale2"
| 16 | 34 | 0.665179 |
d4781f7436bb1bf43dbcd7f4f41a4b15df8b06d7 | 127 | yaml | YAML | Godeps/_workspace/src/github.com/cloudfoundry-incubator/candiedyaml/fixtures/specification/example2_22.yaml | cloudfoundry-attic/windows-circus | d497ca43b160e20de4a342fffa5cd06105c2a0ec | [
"Apache-2.0"
] | 7 | 2016-04-20T03:31:03.000Z | 2022-02-09T17:53:09.000Z | src/test/resources/specification/example2_22.yaml | spariev/snakeyaml | cb2bdcf6ba8d9d1d8b67ea1d9eb7656a3f5903cc | [
"Apache-2.0"
] | null | null | null | src/test/resources/specification/example2_22.yaml | spariev/snakeyaml | cb2bdcf6ba8d9d1d8b67ea1d9eb7656a3f5903cc | [
"Apache-2.0"
] | 5 | 2015-02-21T20:05:52.000Z | 2022-01-05T09:11:26.000Z | canonical: 2001-12-15T02:59:43.1Z
iso8601: 2001-12-14t21:59:43.10-05:00
spaced: 2001-12-14 21:59:43.10 -5
date: 2002-12-14
| 25.4 | 38 | 0.700787 |
e4464e26b36fe01445f822963e03e6ac50ee4aa6 | 111 | yml | YAML | jobs/redis-blacksmith-plans/templates/plans/standalone/credentials.yml | krutten/redis-forge-boshrelease | 8803e40a23dfdff602e7881b8e559cb954356cfc | [
"MIT"
] | null | null | null | jobs/redis-blacksmith-plans/templates/plans/standalone/credentials.yml | krutten/redis-forge-boshrelease | 8803e40a23dfdff602e7881b8e559cb954356cfc | [
"MIT"
] | null | null | null | jobs/redis-blacksmith-plans/templates/plans/standalone/credentials.yml | krutten/redis-forge-boshrelease | 8803e40a23dfdff602e7881b8e559cb954356cfc | [
"MIT"
] | null | null | null | ---
credentials:
host: (( grab jobs.standalone/0.ips[0] ))
port: 6379
password: (( grab meta.password ))
| 18.5 | 43 | 0.630631 |
fb010dece68c203398af565556bbf74cf8d2cad6 | 1,341 | yml | YAML | docker-compose.yml | ryeakle/ethereum-ingestion | 79e6c875e8a06d26d442b87d76969ad5e69eca03 | [
"MIT"
] | null | null | null | docker-compose.yml | ryeakle/ethereum-ingestion | 79e6c875e8a06d26d442b87d76969ad5e69eca03 | [
"MIT"
] | null | null | null | docker-compose.yml | ryeakle/ethereum-ingestion | 79e6c875e8a06d26d442b87d76969ad5e69eca03 | [
"MIT"
] | null | null | null | # docker-compose.yml
# reference for kafka config and general guides for this:
# https://hub.docker.com/r/bitnami/kafka/#full-configuration
version: '2'
networks:
etheringestion:
driver: bridge
services:
zookeeper:
image: 'bitnami/zookeeper:latest'
ports:
- '2181:2181'
environment:
- ALLOW_ANONYMOUS_LOGIN=yes
networks:
- etheringestion
kafka:
image: 'bitnami/kafka:latest'
networks:
- etheringestion
environment:
- KAFKA_BROKER_ID=1
- KAFKA_CFG_LISTENERS=PLAINTEXT://:9092
- KAFKA_CFG_ADVERTISED_LISTENERS=PLAINTEXT://127.0.0.1:9092
- KAFKA_CFG_ZOOKEEPER_CONNECT=zookeeper:2181
- ALLOW_PLAINTEXT_LISTENER=yes
- KAFKA_CFG_LISTENER_SECURITY_PROTOCOL_MAP=CLIENT:PLAINTEXT,EXTERNAL:PLAINTEXT
- KAFKA_CFG_LISTENERS=CLIENT://:9092,EXTERNAL://:9093
- KAFKA_CFG_ADVERTISED_LISTENERS=CLIENT://kafka:9092,EXTERNAL://localhost:9093
- KAFKA_INTER_BROKER_LISTENER_NAME=CLIENT
depends_on:
- zookeeper
ports:
- '9092:9092'
- '9093:9093'
infura_client:
build:
context: ./infura_client/
dockerfile: Dockerfile
volumes:
- ./infura_client/:/app/
entrypoint: /bin/sh -c "python3 ./app/infura_websocket_to_kafka.py"
networks:
- etheringestion
depends_on:
- kafka
| 27.367347 | 84 | 0.684564 |
535a34514a4b578f67c26094f6a16cecb39fda42 | 50 | yaml | YAML | unsorted/recon.yaml | tandemflex/oniontree | 756a48398dd0146d357c76a384edd50e2329bb16 | [
"CC0-1.0"
] | 42 | 2019-11-10T19:58:18.000Z | 2022-01-06T11:43:17.000Z | unsorted/recon.yaml | tandemflex/oniontree | 756a48398dd0146d357c76a384edd50e2329bb16 | [
"CC0-1.0"
] | 14 | 2020-03-02T06:25:31.000Z | 2021-05-11T05:58:06.000Z | unsorted/recon.yaml | tandemflex/oniontree | 756a48398dd0146d357c76a384edd50e2329bb16 | [
"CC0-1.0"
] | 32 | 2019-12-12T16:00:51.000Z | 2022-01-02T21:28:58.000Z | name: Recon
urls:
- http://reconponydonugup.onion
| 12.5 | 31 | 0.76 |
d9c4f3f091356183a3e41ec0cc83ede4c41cadf3 | 156 | yml | YAML | Mafia.NET/Resources/Roles/Mafia/consigliere.yml | war-man/Mafia.NET | 47096e0c12eab66184fbd6c6249e35a90fff7b24 | [
"MIT"
] | 3 | 2020-04-30T20:40:09.000Z | 2020-07-14T09:28:07.000Z | Mafia.NET/Resources/Roles/Mafia/consigliere.yml | war-man/Mafia.NET | 47096e0c12eab66184fbd6c6249e35a90fff7b24 | [
"MIT"
] | 1 | 2020-07-13T00:09:54.000Z | 2020-07-13T00:09:54.000Z | Mafia.NET/Resources/Roles/Mafia/consigliere.yml | war-man/Mafia.NET | 47096e0c12eab66184fbd6c6249e35a90fff7b24 | [
"MIT"
] | 1 | 2021-03-24T08:12:51.000Z | 2021-03-24T08:12:51.000Z | id: Consigliere
team: Mafia
categories:
- Mafia Support
color: "#FF5533"
abilities:
- Consigliere
- Mafia Super Minion
- Mafia Minion
- Team Chat | 15.6 | 22 | 0.705128 |
7e4718e658c9b7ef386dc80a740bf914af954639 | 842 | yaml | YAML | manifests/t/Todesk/Todesk/3.3.2.0/Todesk.Todesk.locale.zh-CN.yaml | erikbra/winget-pkgs | 4605aff7c7583bef4b9032ea640d8894268f8dde | [
"MIT"
] | 1 | 2022-03-06T15:03:31.000Z | 2022-03-06T15:03:31.000Z | manifests/t/Todesk/Todesk/3.3.2.0/Todesk.Todesk.locale.zh-CN.yaml | erikbra/winget-pkgs | 4605aff7c7583bef4b9032ea640d8894268f8dde | [
"MIT"
] | null | null | null | manifests/t/Todesk/Todesk/3.3.2.0/Todesk.Todesk.locale.zh-CN.yaml | erikbra/winget-pkgs | 4605aff7c7583bef4b9032ea640d8894268f8dde | [
"MIT"
] | null | null | null | # Automatically updated by the winget bot at 2021/Oct/15
# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.0.0.schema.json
PackageIdentifier: Todesk.Todesk
PackageVersion: 3.3.2.0
PackageLocale: zh-CN
Publisher: Hainan YouQu Technology Co., Ltd
PublisherUrl: https://www.todesk.com
PrivacyUrl: https://www.todesk.com/privacy.html
Author: 海南有趣科技有限公司
PackageName: ToDesk
PackageUrl: https://www.todesk.com
License: 免费软件
LicenseUrl: https://www.todesk.com/licence.html
Copyright: Copyright© Hainan YouQu Technology Co., Ltd
ShortDescription: 千万用户信赖的远程控制软件
Description: ToDesk 是一款稳定流畅的远程控制、远程办公、远程协助软件。采用端对端加密,让每一次远程访问都安全可靠。无论您是居家办公,还是在度假中,使用 ToDesk 随时远程访问和控制计算机,让您轻松应对工作,为客户提供支持。
Tags:
- 远程控制
- 远程办公
- 远程协助
- 远程连接
- 远程访问
- 远程开机
- 内网穿透
- 桌面连接
- td远程
ManifestType: locale
ManifestVersion: 1.0.0
| 28.066667 | 124 | 0.764846 |
c8883b1deb0df734856f563220ff2a2d5c922f92 | 1,407 | yml | YAML | .travis.yml | Yzm1234/KBaseReport | 780ceb952e607cf3b0be429fd1b7d069ce9eadb1 | [
"MIT"
] | null | null | null | .travis.yml | Yzm1234/KBaseReport | 780ceb952e607cf3b0be429fd1b7d069ce9eadb1 | [
"MIT"
] | null | null | null | .travis.yml | Yzm1234/KBaseReport | 780ceb952e607cf3b0be429fd1b7d069ce9eadb1 | [
"MIT"
] | null | null | null | language: python
python:
- '2.7'
sudo: required
services:
- docker
install:
- docker pull kbase/kb-sdk
- docker run kbase/kb-sdk genscript > $HOME/bin/kb-sdk
- chmod 755 $HOME/bin/kb-sdk
- export PATH=$PATH:$HOME/bin/kb-sdk
- kb-sdk sdkbase
- kb-sdk test || true
- make build-test-script
- sed -i "s/test_token=/test_token=$TEST_TOKEN/" test_local/test.cfg
- sed -i 's/$(id -u)/0:0/' test_local/run_tests.sh
script:
- kb-sdk test
after_success:
- cp test_local/workdir/.coverage .
- sudo mkdir -p /kb/module/lib/
- sudo cp -R test_local/workdir/kb/module/lib/kb_deseq /kb/module/lib
- coverage report -m
- coveralls
env:
global:
# Encrypted TEST_TOKEN env variable
# Set to an appdev developer token
- secure: Rz7Ks0c/w6f65QpihCIxulerFITkOIkQ2faxOq+arOEu8DSzXhJ9BFCYPcCqacacJ14jF2VIO1n2j0rVLjwlBSrnrZVp2b8R/4QQS7N91GVTz19+jVt82neoge0ag8SiCQqehu9RnTpgYD5Ym17q/20/wtEfVjcg0ePqbY4RxsrK+NsUDrOdswgN7RyxwXEGDNUddk7yjU03vef9Sr+YWvwY8mcYh8k4QPT1Wd8zneef5g0cvg3sK6ZIUSFUZvRQJH3IVHioZ2IDfy8tFBNsDjhALMatQ2B37wMTzt3bDb03kWtwlJSRH9i7yJ0HbNckjSLBAsS3Q5CHYiNgtQn0y2sx4tnewhaAgrQGDtsl6fqiA/LaFeZUQ+rPDpv4iukW3lhEHgnnYdI1BuGehZKpeRDC/0L9o50/O49CIvHi3cqtfNb7CBJOdU2wDl3RaXRD3QX6lhh3nRpg8eKfjovcTqGqgFq4Re7CdBm3j8fVp9NN4mZLyMkrDqIRNOKQA6FYrKpUIAgQnskEA6KXMmf/nK2rbDrKMPHBL2GLfH6vQHp1sIKd5iG0CRdRxd8z8R2XvdiKDhgMKV70Jp/87qi61GGQ97yhAbOzmrWM+MuFau2ndfe7paYAGyNzuSb6C65sklIGCStKqsUeh0/LUlI4RZnAeFkECxE9/qUG3ps6JaA=
| 46.9 | 696 | 0.838664 |
6fd4de97e2ee5480bab2c1c38ee7e77320422723 | 181 | yml | YAML | gravitee-apim-repository/gravitee-apim-repository-jdbc/src/main/resources/liquibase/changelogs/v1_18_0/schema.yml | tiagoros/gravitee-api-management | 5ab5a6bc4b5ff04cb2e3118956ee5dbcebdf4711 | [
"Apache-2.0"
] | 100 | 2021-07-09T06:46:26.000Z | 2022-03-31T07:43:51.000Z | gravitee-apim-repository/gravitee-apim-repository-jdbc/src/main/resources/liquibase/changelogs/v1_18_0/schema.yml | tiagoros/gravitee-api-management | 5ab5a6bc4b5ff04cb2e3118956ee5dbcebdf4711 | [
"Apache-2.0"
] | 261 | 2021-07-28T15:32:23.000Z | 2022-03-29T07:51:12.000Z | gravitee-apim-repository/gravitee-apim-repository-jdbc/src/main/resources/liquibase/changelogs/v1_18_0/schema.yml | tiagoros/gravitee-api-management | 5ab5a6bc4b5ff04cb2e3118956ee5dbcebdf4711 | [
"Apache-2.0"
] | 30 | 2021-09-08T09:06:15.000Z | 2022-03-31T02:44:29.000Z | databaseChangeLog:
- changeSet:
id: 1.18.0
author: GraviteeSource Team
changes:
- dropTable:
tableName: ${gravitee_prefix}user_roles
| 22.625 | 51 | 0.585635 |
454e8ee905c936d17932972967736a8022bfe4dd | 582 | yml | YAML | _config.yml | Dakkers/Dakkers.github.io | 091ec5f1582922809f300f26e59f09dc1b039ad3 | [
"CC0-1.0"
] | null | null | null | _config.yml | Dakkers/Dakkers.github.io | 091ec5f1582922809f300f26e59f09dc1b039ad3 | [
"CC0-1.0"
] | 2 | 2018-07-18T23:35:54.000Z | 2020-10-02T16:34:17.000Z | _config.yml | Dakkers/Dakkers.github.io | 091ec5f1582922809f300f26e59f09dc1b039ad3 | [
"CC0-1.0"
] | null | null | null | title: Dakota St. Laurent
description: Software developer and musical dood
show_downloads: false
baseurl: ""
url: "https://dakkers.github.io"
google_analytics:
# cayman-blog date format
# refer to http://shopify.github.io/liquid/filters/date/ if you want to customize this
cayman-blog:
date_format: "%b %-d, %Y"
theme: # leave it empty
# social
author: dakkers
disqus:
shortname: d.h.stlaurent@gmail.com
twitter:
username:
plugins:
- jekyll-target-blank
target-blank:
rel: nofollow
# header_page_refs: ['now', 'about', 'contact']
| 18.1875 | 87 | 0.687285 |
45a95894901d016dabfa6b553b480ac61470fbe7 | 231 | yml | YAML | .travis.yml | dzik1331/LcDatePicker | a9e0dd1e71e605953aaf9db57e26e3387383ac5b | [
"MIT"
] | 12 | 2017-07-26T19:52:15.000Z | 2021-11-09T11:56:48.000Z | .travis.yml | dzik1331/LcDatePicker | a9e0dd1e71e605953aaf9db57e26e3387383ac5b | [
"MIT"
] | 14 | 2017-07-26T20:11:28.000Z | 2020-06-15T06:05:58.000Z | .travis.yml | dzik1331/LcDatePicker | a9e0dd1e71e605953aaf9db57e26e3387383ac5b | [
"MIT"
] | 3 | 2018-02-08T05:50:19.000Z | 2018-06-27T07:31:34.000Z | language: node_js
node_js:
- '10'
dist: trusty
sudo: required
branches:
only:
- master
before_script:
- npm install -g @angular/cli@8.1.1
install:
- npm install
script:
- ng test lc-datepicker-library --watch=false
| 13.588235 | 47 | 0.688312 |
d01d9377cfc7f204968a1f6eb9839a73551654c4 | 3,921 | yaml | YAML | data/migrations/dba_operator/8e6a363784bb-databasemigration.yaml | cuisongliu/quay | 49862a9edae967b64f40cfbde7ef849f4619b26b | [
"Apache-2.0"
] | 1 | 2020-10-16T19:30:41.000Z | 2020-10-16T19:30:41.000Z | data/migrations/dba_operator/8e6a363784bb-databasemigration.yaml | cuisongliu/quay | 49862a9edae967b64f40cfbde7ef849f4619b26b | [
"Apache-2.0"
] | 15 | 2020-06-18T15:32:06.000Z | 2022-03-03T23:06:24.000Z | data/migrations/dba_operator/8e6a363784bb-databasemigration.yaml | room9ho/sac1 | 79ca6f28cf37fce11b21801df947e5dc3d0acbd7 | [
"Apache-2.0"
] | null | null | null |
---
apiVersion: dbaoperator.app-sre.redhat.com/v1alpha1
kind: DatabaseMigration
metadata:
name: 8e6a363784bb
spec:
migrationContainerSpec:
command:
- /quay-registry/quay-entrypoint.sh
- migrate
- 8e6a363784bb
image: quay.io/quay/quay
name: 8e6a363784bb
previous: !!python/tuple
- 4fd6b8463eb2
schemaHints:
- columns:
- name: id
nullable: false
- name: manifest_id
nullable: false
- name: repository_id
nullable: false
- name: index_status
nullable: false
- name: error_json
nullable: false
- name: last_indexed
nullable: false
- name: indexer_hash
nullable: false
- name: indexer_version
nullable: false
- name: metadata_json
nullable: false
operation: createTable
table: manifestsecuritystatus
- columns:
- name: index_status
nullable: false
indexName: manifestsecuritystatus_index_status
indexType: index
operation: createIndex
table: manifestsecuritystatus
- columns:
- name: indexer_hash
nullable: false
indexName: manifestsecuritystatus_indexer_hash
indexType: index
operation: createIndex
table: manifestsecuritystatus
- columns:
- name: indexer_version
nullable: false
indexName: manifestsecuritystatus_indexer_version
indexType: index
operation: createIndex
table: manifestsecuritystatus
- columns:
- name: last_indexed
nullable: false
indexName: manifestsecuritystatus_last_indexed
indexType: index
operation: createIndex
table: manifestsecuritystatus
- columns:
- name: manifest_id
nullable: false
indexName: manifestsecuritystatus_manifest_id
indexType: unique
operation: createIndex
table: manifestsecuritystatus
- columns:
- name: repository_id
nullable: false
indexName: manifestsecuritystatus_repository_id
indexType: index
operation: createIndex
table: manifestsecuritystatus
- indexName: apprmanifestlistmanifest_manifest_list_id_operating_system_arch
operation: dropIndex
table: apprmanifestlistmanifest
- columns:
- name: source_image_id
nullable: false
- name: transformation_id
nullable: false
- name: uniqueness_hash
nullable: true
indexName: derivedstorageforimage_source_image_id_transformation_id_uniqueness_hash
indexType: unique
operation: createIndex
table: derivedstorageforimage
- indexName: uniqueness_index
operation: dropIndex
table: derivedstorageforimage
- columns:
- name: processing_expires
nullable: true
- name: available_after
nullable: false
- name: queue_name
nullable: false
- name: retries_remaining
nullable: false
- name: available
nullable: false
indexName: queueitem_processing_expires_available_after_queue_name_retries_remaining_available
indexType: index
operation: createIndex
table: queueitem
- columns:
- name: processing_expires
nullable: true
- name: available_after
nullable: false
- name: retries_remaining
nullable: false
- name: available
nullable: false
indexName: queueitem_processing_expires_available_after_retries_remaining_available
indexType: index
operation: createIndex
table: queueitem
- indexName: queueitem_pe_aafter_qname_rremaining_available
operation: dropIndex
table: queueitem
- indexName: queueitem_pexpires_aafter_rremaining_available
operation: dropIndex
table: queueitem
- indexName: repomirrorconfig_sync_transaction_id
operation: dropIndex
table: repomirrorconfig
- indexName: repomirrorrule_uuid
operation: dropIndex
table: repomirrorrule
- columns:
- name: uuid
nullable: false
indexName: repomirrorrule_uuid
indexType: index
operation: createIndex
table: repomirrorrule
| 27.041379 | 98 | 0.723285 |
d02934ed1fef77fc89a6a847c798dd5193d2677b | 4,625 | yml | YAML | backend/serverless.yml | hupe1980/one-time-secret | 94468169026d0f8aeaac30edf03be510aa049036 | [
"MIT"
] | null | null | null | backend/serverless.yml | hupe1980/one-time-secret | 94468169026d0f8aeaac30edf03be510aa049036 | [
"MIT"
] | null | null | null | backend/serverless.yml | hupe1980/one-time-secret | 94468169026d0f8aeaac30edf03be510aa049036 | [
"MIT"
] | null | null | null | service: one-time-secret
provider:
name: aws
runtime: nodejs10.x
profile: ${opt:profile}
stage: ${opt:stage, 'dev'}
region: eu-central-1
stackName: ${self:service}-backend
logRetentionInDays: 1
stackTags:
ENVIRONMENT: ${self:service}
environment:
SECRETS_TABLE: ${self:custom.prefix}-secrets
LINK_ID_INDEX: LinkIdIndex
USER_ID_INDEX: UserIdIndex
LOG_LEVEL: debug
iamRoleStatements:
- Effect: Allow
Action:
- dynamodb:DescribeTable
- dynamodb:Query
- dynamodb:Scan
- dynamodb:GetItem
- dynamodb:UpdateItem
- dynamodb:DeleteItem
Resource:
- "Fn::GetAtt": [SecretsTable, Arn]
- Effect: Allow
Action:
- dynamodb:Query
Resource:
- arn:aws:dynamodb:${self:provider.region}:*:table/${self:provider.environment.SECRETS_TABLE}/index/${self:provider.environment.LINK_ID_INDEX}
- arn:aws:dynamodb:${self:provider.region}:*:table/${self:provider.environment.SECRETS_TABLE}/index/${self:provider.environment.USER_ID_INDEX}
plugins:
- serverless-webpack
- serverless-reqvalidator-plugin
- serverless-aws-documentation
- serverless-iam-roles-per-function
- aws-amplify-serverless-plugin
- serverless-dynamodb-local
- serverless-offline
# package:
# individually: true
custom:
prefix: ${self:service}-${self:provider.stage}
serverless-iam-roles-per-function:
defaultInherit: true
documentation:
api:
info:
version: v1.0.0
title: one-time-secret
description: Serverless one-time-secret application
models:
- name: ShareSecret
contentType: application/json
schema: ${file(models/share-secret-request.json)}
webpack:
includeModules: true # enable auto-packing of external modules
amplify:
- filename: ../frontend/src/aws-exports.tsx
type: typescript
appClient: WebCognitoUserPoolClient
s3bucket: disabled
serverless-offline:
host: 0.0.0.0
port: 4000
noAuth: true
dynamodb:
stages:
- dev
start:
port: 4569
host: localstack
migrate: true
noStart: true
functions:
share-secret:
handler: src/lambda/http/share-secret.handler
events:
- http:
path: secrets/share
method: post
cors: true
authorizer: aws_iam
reqValidatorName: RequestBodyValidator
documentation:
summary: Share a secret
description: Share a secret
requestModels:
"application/json": ShareSecret
iamRoleStatements:
- Effect: Allow
Action:
- dynamodb:PutItem
Resource:
- "Fn::GetAtt": [SecretsTable, Arn]
get-secret-meta:
handler: src/lambda/http/get-secret-meta.handler
events:
- http:
path: secrets/{secretId}
method: get
cors: true
authorizer: aws_iam
delete-secret:
handler: src/lambda/http/delete-secret.handler
events:
- http:
path: secrets/{secretId}
method: delete
cors: true
authorizer: aws_iam
iamRoleStatements:
- Effect: Allow
Action:
- dynamodb:DeleteItem
Resource:
- "Fn::GetAtt": [SecretsTable, Arn]
retrieve-secret:
handler: src/lambda/http/retrieve-secret.handler
events:
- http:
path: retrieve/{linkId}
method: post
cors: true
authorizer: aws_iam
get-history:
handler: src/lambda/http/get-history.handler
events:
- http:
path: secrets
method: get
cors: true
authorizer: aws_iam
resources:
- ${file(resources/request-body-validator.yml)}
- ${file(resources/api-gateway-errors.yml)}
- ${file(resources/dynamodb-table.yml)}
- ${file(resources/cognito-user-pool.yml)}
- ${file(resources/cognito-identity-pool.yml)}
| 29.272152 | 156 | 0.536865 |
ecb51451669b9aed01ddaa16f54db8694afff185 | 1,053 | yml | YAML | playbooks/backup_mysql.yml | aepifanov/mos_mu | f8e78c3c8dcdec3d9daecff0f1ec941577386adc | [
"Apache-2.0"
] | 16 | 2016-07-08T13:22:49.000Z | 2020-05-13T04:22:10.000Z | playbooks/backup_mysql.yml | aepifanov/mos_mu | f8e78c3c8dcdec3d9daecff0f1ec941577386adc | [
"Apache-2.0"
] | 20 | 2016-07-21T08:48:42.000Z | 2016-11-16T23:22:57.000Z | playbooks/backup_mysql.yml | aepifanov/mos_mu | f8e78c3c8dcdec3d9daecff0f1ec941577386adc | [
"Apache-2.0"
] | 16 | 2016-07-28T01:11:08.000Z | 2018-08-23T14:41:54.000Z | ---
- hosts: env_{{ env_id }}:&controller
any_errors_fatal: true
vars_files:
- "vars/common.yml"
- "vars/mos_releases/{{ mos_release }}.yml"
- "vars/steps.yml"
tasks:
- name: Stop Management VIP
shell: pcs resource disable vip__management --wait=600
run_once: true
- name: Make MySQL backup
script: files/backup_mysql.sh
environment:
BACKUP_DIR: "{{ backup_dir }}"
run_once: true
register: backup_result
- name: Make sure that directory for backups exists on Fuel
run_once: true
delegate_to: localhost
file:
path: "{{ fuel_env_backup_dir }}"
state: directory
- name: Upload backup to Fuel
fetch:
src: "{{ backup_dir }}/{{ item }}"
dest: "{{ fuel_env_backup_dir }}/{{ item }}"
flat: true
with_items: "{{ backup_result.stdout_lines }}"
when:
- backup_result is defined
- name: Start Management VIP
shell: pcs resource enable vip__management --wait=600
run_once: true
| 25.071429 | 63 | 0.606838 |
56906c066a17a52e9f1177b67a5de40020e14501 | 45 | yaml | YAML | meta/configs/neovim.yaml | nicktehrany/dotfiles | 5db6aafda5adc6836d8742a08be1224708e5e5fd | [
"MIT"
] | 1 | 2020-11-02T14:11:04.000Z | 2020-11-02T14:11:04.000Z | meta/configs/neovim.yaml | nicktehrany/dotfiles | 5db6aafda5adc6836d8742a08be1224708e5e5fd | [
"MIT"
] | 6 | 2021-05-20T11:39:19.000Z | 2021-10-30T09:39:18.000Z | meta/configs/neovim.yaml | nicktehrany/dotfiles | 5db6aafda5adc6836d8742a08be1224708e5e5fd | [
"MIT"
] | null | null | null | - link:
~/.config/nvim:
path: nvim
| 11.25 | 19 | 0.488889 |
56fb7a5c9ecb557e1947b2561bce9724b7b3b849 | 812 | yml | YAML | docs-ref-autogen/com.microsoft.azure.management.batchai.AzureFileShareReference.AzureFileShareReference.yml | azure-sdk/azure-docs-sdk-java | 66cc376be8bb1e1246731b879cc1f8fba76ea946 | [
"CC-BY-4.0",
"MIT"
] | 5 | 2021-08-20T15:24:19.000Z | 2022-02-20T17:06:14.000Z | docs-ref-autogen/com.microsoft.azure.management.batchai.AzureFileShareReference.AzureFileShareReference.yml | azure-sdk/azure-docs-sdk-java | 66cc376be8bb1e1246731b879cc1f8fba76ea946 | [
"CC-BY-4.0",
"MIT"
] | null | null | null | docs-ref-autogen/com.microsoft.azure.management.batchai.AzureFileShareReference.AzureFileShareReference.yml | azure-sdk/azure-docs-sdk-java | 66cc376be8bb1e1246731b879cc1f8fba76ea946 | [
"CC-BY-4.0",
"MIT"
] | 1 | 2021-08-20T15:24:21.000Z | 2021-08-20T15:24:21.000Z | ### YamlMime:JavaMember
uid: "com.microsoft.azure.management.batchai.AzureFileShareReference.AzureFileShareReference*"
fullName: "com.microsoft.azure.management.batchai.AzureFileShareReference.AzureFileShareReference"
name: "AzureFileShareReference"
nameWithType: "AzureFileShareReference.AzureFileShareReference"
members:
- uid: "com.microsoft.azure.management.batchai.AzureFileShareReference.AzureFileShareReference()"
fullName: "com.microsoft.azure.management.batchai.AzureFileShareReference.AzureFileShareReference()"
name: "AzureFileShareReference()"
nameWithType: "AzureFileShareReference.AzureFileShareReference()"
syntax: "public AzureFileShareReference()"
type: "constructor"
metadata: {}
package: "com.microsoft.azure.management.batchai"
artifact: com.microsoft.azure:azure-mgmt-batchai:1.40.0
| 50.75 | 102 | 0.83867 |
47d57313058d2164c82747bc837456537cac034f | 91 | yml | YAML | __tests__/fixtures/invalid/malformed-escaping.yml | Giorgiosaud/multi-labeler | 1d6d95ddcc7ef8b928d514329663ba4e0ff0eaf5 | [
"MIT"
] | 18 | 2021-01-15T08:23:30.000Z | 2022-03-21T03:38:20.000Z | __tests__/fixtures/invalid/malformed-escaping.yml | Giorgiosaud/multi-labeler | 1d6d95ddcc7ef8b928d514329663ba4e0ff0eaf5 | [
"MIT"
] | 112 | 2021-01-14T12:23:35.000Z | 2022-03-29T01:50:36.000Z | __tests__/fixtures/invalid/malformed-escaping.yml | Giorgiosaud/multi-labeler | 1d6d95ddcc7ef8b928d514329663ba4e0ff0eaf5 | [
"MIT"
] | 7 | 2021-05-03T16:10:44.000Z | 2022-02-18T15:18:36.000Z | version: v1
labels:
- label: "not escaped properly"
matcher:
title: "\[0-9\]"
| 13 | 33 | 0.571429 |
fd307bdd00af5352ec497eb5a69610ca309b6af9 | 669 | yaml | YAML | packages/cp/cpu.yaml | commercialhaskell/all-cabal-metadata | 902ff2131e450cb4653ba7a420d465c9a6735057 | [
"MIT"
] | 10 | 2016-01-04T00:09:51.000Z | 2021-02-01T02:20:05.000Z | packages/cp/cpu.yaml | commercialhaskell/all-cabal-metadata | 902ff2131e450cb4653ba7a420d465c9a6735057 | [
"MIT"
] | 1 | 2018-08-27T20:11:55.000Z | 2018-08-27T20:11:55.000Z | packages/cp/cpu.yaml | commercialhaskell/all-cabal-metadata | 902ff2131e450cb4653ba7a420d465c9a6735057 | [
"MIT"
] | 12 | 2016-04-21T04:17:05.000Z | 2022-03-27T09:36:12.000Z | homepage: http://github.com/vincenthz/hs-cpu
changelog-type: ''
hash: 1fb02eb37a397d3b709d09ed84b5c53ac00f4884be0039b7ccbc4a030c0bf53c
test-bench-deps: {}
maintainer: Vincent Hanquez <vincent@snarc.org>
synopsis: Cpu information and properties helpers.
changelog: ''
basic-deps:
base: ! '>=3 && <5'
all-versions:
- 0.1.0
- 0.1.1
- 0.1.2
author: Vincent Hanquez <vincent@snarc.org>
latest: 0.1.2
description-type: markdown
description: ! 'Cpu haskell library
===================
The library provides access to property and information helpers related to the cpu:
* Endianness
* Architecture
* Cpuid (for x86 and x86\_64)
'
license-name: BSD-3-Clause
| 20.272727 | 85 | 0.720478 |
fdca57350bf290c130314ffe31f9d0404a1871af | 4,803 | yml | YAML | aws-couchbase-initialize.yml | terrydhariwal/couchbase-ansible | d423f8a59373d979d77826727333c74f375ffbe3 | [
"Apache-2.0"
] | null | null | null | aws-couchbase-initialize.yml | terrydhariwal/couchbase-ansible | d423f8a59373d979d77826727333c74f375ffbe3 | [
"Apache-2.0"
] | null | null | null | aws-couchbase-initialize.yml | terrydhariwal/couchbase-ansible | d423f8a59373d979d77826727333c74f375ffbe3 | [
"Apache-2.0"
] | null | null | null | # ansible-playbook --inventory-file=aws_ansible_hosts.ini -u ec2-user ./aws-couchbase-initialize.yml
# ansible-playbook --inventory-file=aws_ansible_hosts.ini -u ec2-user ./aws-couchbase-initialize.yml -vvvv
---
- name: Download Couchbase Binary
hosts: couchbase_server
# user: ec2-user
gather_facts: false
sudo: true
tasks:
- name: download Couchbase package
get_url:
url=http://packages.couchbase.com/releases/3.0.3/couchbase-server-enterprise-3.0.3-centos6.x86_64.rpm
dest=/home/ec2-user/couchbase-server-enterprise.rpm
force=no
- name: Couchbase Installation
hosts: couchbase_server
# user: ec2-user
gather_facts: false
sudo: true
tasks:
- name: disable iptables firewall
# These do not work
# - name: disable iptables to autostart on boot
# command: chkconfig iptables off
# service: name=iptables state=stopped
# service: name=ip6tables state=stopped
action: service name=iptables state=stopped enabled=no # this works
- name: disable ip6tables firewall
action: service name=ip6tables state=stopped enabled=no # this works
- name: Install dependencies #causing an issue
yum: name=openssl098e state=present
# - name: Install Couchbase .deb file on all machines //Shell is not idempotent
# shell: rpm --install /vagrant/couchbase-server-enterprise-3.0.3-centos6.x86_64.rpm
- name: Install Couchbase .rpm file on all machines
yum: name=/home/ec2-user/couchbase-server-enterprise.rpm state=present
- name: Set swappiness to 0
# Set vm.swappiness to 0 in /etc/sysctl.conf
sysctl: name=vm.swappiness value=0 state=present
- name: disable THP inproc and permenantly 1
# Add a line to a file if it does not exist, without passing regexp
lineinfile: dest=/etc/rc.local line="for i in /sys/kernel/mm/*transparent_hugepage/enabled; do echo never > $i; done"
- name: disable THP inproc and permenantly 2
lineinfile: dest=/etc/rc.local line="for i in /sys/kernel/mm/*transparent_hugepage/defrag; do echo never > $i; done"
- name: disable THP inproc and permenantly 3
shell: for i in /sys/kernel/mm/*transparent_hugepage/enabled; do echo never > $i; done
- name: disable THP inproc and permenantly 4
shell: for i in /sys/kernel/mm/*transparent_hugepage/defrag; do echo never > $i; done
- name: Initialize the cluster and add the nodes to the cluster
hosts: master
# user: ec2-user
gather_facts: false
sudo: true
tasks:
- name: check couchbase has started
service: name=couchbase-server state=started
- pause: seconds=10
- name: Configure main node's hostname
shell: /opt/couchbase/bin/couchbase-cli node-init -c 127.0.0.1:8091 --node-init-hostname={% for host in groups['master'] %}{{ hostvars[host]['ansible_ssh_host'] }}{% endfor %} -u {{admin_user}} -p {{admin_password}}
ignore_errors: yes
- name: Configure cluster using the main node
shell: /opt/couchbase/bin/couchbase-cli cluster-init -c 127.0.0.1:8091 --cluster-init-username={{admin_user}} --cluster-init-password={{admin_password}} --cluster-init-port=8091 --cluster-init-ramsize={{cluster_ram_quota}} -u {{admin_user}} -p {{admin_password}}
ignore_errors: yes
register: configure_main_node
- debug: var=configure_main_node.stdout_lines
- name: Create shell script for configuring main node
action: template src=couchbase-add-nodes.j2 dest=/tmp/addnodes.sh mode=750
- name: Launch config script
action: shell /tmp/addnodes.sh
- name: Rebalance the cluster
shell: /opt/couchbase/bin/couchbase-cli rebalance -c 127.0.0.1:8091 -u {{admin_user}} -p {{admin_password}}
- name: create bucket {{bucket_name}} with {{num_replicas}} replicas
shell: /opt/couchbase/bin/couchbase-cli bucket-create -c 127.0.0.1:8091 --bucket={{bucket_name}} --bucket-type=couchbase --bucket-port=11211 --bucket-ramsize={{bucket_ram_quota}} --bucket-replica={{num_replicas}} -u {{admin_user}} -p {{admin_password}}
- name: COUCHBASE INSTALL COMPLETE
debug: msg="Couchbase is installed and ready http://{% for host in groups['master'] %}{{ hostvars[host]['ansible_ssh_host'] }}{% endfor %}:8091"
- name: Install libcouchbase
hosts: app_servers
gather_facts: false
sudo: true
tasks:
# - name: download libcouchbase
# get_url:
# url=http://packages.couchbase.com/clients/c/couchbase-csdk-setup
# dest=/home/ec2-user/couchbase-csdk-setup
# force=no
- name: Copy modified shell scriptinstalling libcouchbase
action: template src=couchbase-csdk-setup.pl dest=/home/ec2-user/couchbase-csdk-setup mode=750
- name: Install perl dependency
yum: name=perl state=present
- name: install libcouchbase
shell: sudo yes | perl /home/ec2-user/couchbase-csdk-setup
- name: start load generator
| 42.131579 | 267 | 0.719342 |
0a992b20766523a300d8aee5486ede4216da79e3 | 132 | yml | YAML | .rubocop.yml | khash/konfig | a25abe076cc4a813bf0c3e059fb59f707d15da64 | [
"Apache-2.0"
] | 85 | 2019-07-25T08:24:06.000Z | 2022-03-25T16:32:00.000Z | .rubocop.yml | khash/konfig | a25abe076cc4a813bf0c3e059fb59f707d15da64 | [
"Apache-2.0"
] | 4 | 2019-08-19T07:28:30.000Z | 2020-07-11T11:04:02.000Z | .rubocop.yml | khash/konfig | a25abe076cc4a813bf0c3e059fb59f707d15da64 | [
"Apache-2.0"
] | 4 | 2019-08-14T15:59:24.000Z | 2020-07-10T08:48:16.000Z | require: rubocop-performance
Metrics/LineLength:
Max: 150
Metrics/BlockLength:
Max: 150
Metrics/CyclomaticComplexity:
Max: 12
| 16.5 | 29 | 0.787879 |
3d0d4b84ee8278e8684e7648dabdc3e41ab72dd7 | 934 | yaml | YAML | content/trees/collections/pages.yaml | spiciul/eanclinic-cms | 7c7b1f6f74490469038c6fbc04177f951b36ca4d | [
"MIT"
] | null | null | null | content/trees/collections/pages.yaml | spiciul/eanclinic-cms | 7c7b1f6f74490469038c6fbc04177f951b36ca4d | [
"MIT"
] | null | null | null | content/trees/collections/pages.yaml | spiciul/eanclinic-cms | 7c7b1f6f74490469038c6fbc04177f951b36ca4d | [
"MIT"
] | null | null | null | tree:
-
entry: home
-
entry: a29a4144-ae62-4e66-b51b-20ed3d5e106a
-
entry: 180e2c9c-ca58-41ad-8c4a-621b17f026fd
-
entry: 70732c34-6613-4613-807f-2dc4708aea2b
-
entry: d9f761dc-e792-4f74-a83d-c86959774c93
children:
-
entry: be03da58-c3bc-4c4d-b927-e1f0138ca678
-
entry: 780f886a-4d01-4e83-b420-67ecf429aa97
-
entry: 2648bc62-5fd1-4d4b-bbaf-5e5f7770a2b9
-
entry: f8406590-64c9-4465-a082-c29924812695
-
entry: 6b995156-142b-43d6-be4e-6c260ea90d37
children:
-
entry: 5c526dbf-9dd7-4c52-98d8-54e00ebddfb6
-
entry: 20f6a148-63b8-47a8-9b0e-d57095d78c21
-
entry: 5ea849c9-e2c6-44cd-9a50-d2bfc9af77e4
-
entry: a1db32c2-de3f-4092-b9cb-3907d33892b5
-
entry: 58352b42-e450-47c1-8bde-c2de8c2e8d28
-
entry: bb8a0284-0af3-4b8e-b702-e689388e2fce
-
entry: 852c3055-2585-420d-9ca2-8b153efba4e9
| 24.578947 | 51 | 0.664882 |
1ae96b2d2d5df3490a0a2111686dbfeccfa17d58 | 4,196 | yml | YAML | extra/azure-pipelines/build-windows.yml | vonagam/haxe | cdbea08560c6c8946460d4b5f7e36667ce9d7216 | [
"MIT"
] | null | null | null | extra/azure-pipelines/build-windows.yml | vonagam/haxe | cdbea08560c6c8946460d4b5f7e36667ce9d7216 | [
"MIT"
] | null | null | null | extra/azure-pipelines/build-windows.yml | vonagam/haxe | cdbea08560c6c8946460d4b5f7e36667ce9d7216 | [
"MIT"
] | 1 | 2021-09-28T15:13:28.000Z | 2021-09-28T15:13:28.000Z | parameters:
name: 'BuildWindows'
vmImage: 'windows-2019'
arch: '64' # or '32'
jobs:
- job: ${{ parameters.name }}
pool:
vmImage: ${{ parameters.vmImage }}
variables:
OPAMYES: 1
${{ if not(startsWith(variables['Build.SourceBranch'], 'refs/tags/')) }}:
ADD_REVISION: 1
CYG_MIRROR: http://mirrors.kernel.org/sourceware/cygwin/
${{ if eq(parameters.arch, '64') }}:
ARCH: 64
MINGW_ARCH: x86_64
CYGWIN_SETUP: https://cygwin.com/setup-x86_64.exe
CYG_ROOT: C:/cygwin64
${{ if eq(parameters.arch, '32') }}:
ARCH: 32
MINGW_ARCH: i686
CYGWIN_SETUP: https://cygwin.com/setup-x86.exe
CYG_ROOT: C:/cygwin
steps:
- checkout: self
submodules: recursive
- powershell: choco install --no-progress nsis.portable --version 3.02 -y
displayName: choco install nsis
- powershell: choco install --no-progress curl wget 7zip.portable -y
displayName: choco install things
- powershell: Write-Host "##vso[task.prependpath]C:\ProgramData\chocolatey\bin"
displayName: Prepend Chocolatey path
- template: install-neko-snapshot.yaml
parameters:
${{ if eq(parameters.arch, '64') }}:
platform: windows64
${{ if eq(parameters.arch, '32') }}:
platform: windows
- powershell: |
Set-PSDebug -Trace 1
curl.exe -fsSL -o cygwin-setup.exe --retry 3 $(CYGWIN_SETUP)
Start-Process -FilePath "cygwin-setup.exe" -ArgumentList "-B -q -R $(CYG_ROOT) -l C:/tmp -s $(CYG_MIRROR) -P default -P make -P git -P zlib-devel -P rsync -P patch -P diffutils -P curl -P unzip -P tar -P m4 -P perl -P libpcre-devel -P mbedtls-devel -P mingw64-$(MINGW_ARCH)-zlib -P mingw64-$(MINGW_ARCH)-gcc-core -P mingw64-$(MINGW_ARCH)-pcre" -Wait
curl.exe -fsSL -o "opam.tar.xz" --retry 3 https://github.com/fdopen/opam-repository-mingw/releases/download/0.0.0.2/opam$(ARCH).tar.xz
curl.exe -fsSL -o "libmbedtls.tar.xz" --retry 3 https://github.com/Simn/mingw64-mbedtls/releases/download/2.16.3/mingw64-$(MINGW_ARCH)-mbedtls-2.16.3-1.tar.xz
& "$(CYG_ROOT)/bin/bash.exe" @('-lc', 'echo "$OLDPWD"')
& "$(CYG_ROOT)/bin/bash.exe" @('-lc', 'cd "$OLDPWD" && tar -C / -xvf libmbedtls.tar.xz')
& "$(CYG_ROOT)/bin/bash.exe" @('-lc', 'cd "$OLDPWD" && tar -xf opam.tar.xz')
& "$(CYG_ROOT)/bin/bash.exe" @('-lc', 'cd "$OLDPWD" && bash opam$(ARCH)/install.sh')
& "$(CYG_ROOT)/bin/bash.exe" @('-lc', 'opam init mingw "https://github.com/fdopen/opam-repository-mingw.git#opam2" --comp 4.07.0+mingw$(ARCH)c --switch 4.07.0+mingw$(ARCH)c --auto-setup --yes 2>&1')
& "$(CYG_ROOT)/bin/bash.exe" @('-lc', 'opam update --yes 2>&1')
& "$(CYG_ROOT)/bin/bash.exe" @('-lc', 'cd "$OLDPWD" && opam pin add haxe . --kind=path --no-action --yes 2>&1')
& "$(CYG_ROOT)/bin/bash.exe" @('-lc', 'opam install haxe --deps-only --yes 2>&1')
& "$(CYG_ROOT)/bin/bash.exe" @('-lc', 'opam list')
& "$(CYG_ROOT)/bin/bash.exe" @('-lc', 'ocamlopt -v')
displayName: Install OCaml and OCaml libraries
- powershell: Write-Host "##vso[task.prependpath]${env:CYG_ROOT}/usr/$(MINGW_ARCH)-w64-mingw32/sys-root/mingw/bin"
displayName: Expose mingw dll files
- powershell: |
Set-PSDebug -Trace 1
& "$(CYG_ROOT)/bin/bash.exe" @('-lc', 'cd "$OLDPWD" && opam config exec -- make -s -f Makefile.win -j`nproc` haxe 2>&1')
& "$(CYG_ROOT)/bin/bash.exe" @('-lc', 'cd "$OLDPWD" && opam config exec -- make -s -f Makefile.win haxelib 2>&1')
& "$(CYG_ROOT)/bin/bash.exe" @('-lc', 'cd "$OLDPWD" && opam config exec -- make -f Makefile.win echo_package_files package_bin package_installer_win package_choco 2>&1')
dir out
& "$(CYG_ROOT)/bin/bash.exe" @('-lc', 'cd "$OLDPWD" && cygcheck ./haxe.exe')
& "$(CYG_ROOT)/bin/bash.exe" @('-lc', 'cd "$OLDPWD" && cygcheck ./haxelib.exe')
displayName: Build Haxe
- task: PublishPipelineArtifact@0
inputs:
artifactName: 'win$(ARCH)Binaries'
targetPath: out | 59.098592 | 359 | 0.595091 |
98cee194a66fcd4b140f0959f736f4af8bfe2dc8 | 2,990 | yaml | YAML | k8s/istio-ingressgateway-proxy.yaml | windwithlife/xcoder | 278be4cbde90c307ff1fc8071e60f40bce79a19d | [
"MIT"
] | null | null | null | k8s/istio-ingressgateway-proxy.yaml | windwithlife/xcoder | 278be4cbde90c307ff1fc8071e60f40bce79a19d | [
"MIT"
] | 4 | 2020-05-07T08:38:19.000Z | 2020-12-03T10:43:14.000Z | k8s/istio-ingressgateway-proxy.yaml | windwithlife/xcoder | 278be4cbde90c307ff1fc8071e60f40bce79a19d | [
"MIT"
] | null | null | null | static_resources:
listeners:
- address:
socket_address:
address: 0.0.0.0
port_value: 80
filter_chains:
- filters:
- name: envoy.tcp_proxy
config:
stat_prefix: ingress_tcp
cluster: ingressgateway
access_log:
- name: envoy.file_access_log
config:
path: /dev/stdout
- address:
socket_address:
address: 0.0.0.0
port_value: 1883
filter_chains:
- filters:
- name: envoy.tcp_proxy
config:
stat_prefix: ingress_tcp
cluster: mqtt-gateway
access_log:
- name: envoy.file_access_log
config:
path: /dev/stdout
- address:
socket_address:
address: 0.0.0.0
port_value: 15675
filter_chains:
- filters:
- name: envoy.tcp_proxy
config:
stat_prefix: ingress_tcp
cluster: mqtt-web-gateway
access_log:
- name: envoy.file_access_log
config:
path: /dev/stdout
- address:
socket_address:
address: 0.0.0.0
port_value: 15672
filter_chains:
- filters:
- name: envoy.tcp_proxy
config:
stat_prefix: ingress_tcp
cluster: mqtt-manager-gateway
access_log:
- name: envoy.file_access_log
config:
path: /dev/stdout
- address:
socket_address:
address: 0.0.0.0
port_value: 443
filter_chains:
- filters:
- name: envoy.tcp_proxy
config:
stat_prefix: ingress_tcp
cluster: ingressgateway_tls
access_log:
- name: envoy.file_access_log
config:
path: /dev/stdout
clusters:
- name: ingressgateway
connect_timeout: 0.25s
type: strict_dns
lb_policy: round_robin
hosts:
- socket_address:
address: istio-ingressgateway.istio-system
port_value: 80
- name: mqtt-gateway
connect_timeout: 0.25s
type: strict_dns
lb_policy: round_robin
hosts:
- socket_address:
address: istio-ingressgateway.istio-system
port_value: 1883
- name: mqtt-web-gateway
connect_timeout: 0.25s
type: strict_dns
lb_policy: round_robin
hosts:
- socket_address:
address: istio-ingressgateway.istio-system
port_value: 15675
- name: mqtt-manager-gateway
connect_timeout: 0.25s
type: strict_dns
lb_policy: round_robin
hosts:
- socket_address:
address: istio-ingressgateway.istio-system
port_value: 15672
- name: ingressgateway_tls
connect_timeout: 0.25s
type: strict_dns
lb_policy: round_robin
hosts:
- socket_address:
address: istio-ingressgateway.istio-system
port_value: 443
admin:
access_log_path: "/dev/null"
address:
socket_address:
address: 0.0.0.0
port_value: 8001 | 25.12605 | 50 | 0.58495 |
c716b24a761ec5920a2c47bd1bcd3a3f6de2c307 | 134 | yaml | YAML | incubator/opa/Chart.yaml | lumi017/charts-1 | 15141e17f861e9c6b4bc4fc67ac8d7510325176a | [
"Apache-2.0"
] | null | null | null | incubator/opa/Chart.yaml | lumi017/charts-1 | 15141e17f861e9c6b4bc4fc67ac8d7510325176a | [
"Apache-2.0"
] | null | null | null | incubator/opa/Chart.yaml | lumi017/charts-1 | 15141e17f861e9c6b4bc4fc67ac8d7510325176a | [
"Apache-2.0"
] | null | null | null | apiVersion: v1
appVersion: "0.0.1"
description: A Helm chart to manage opa
name: opa
version: 0.1.0
maintainers:
- name: sudermanjr
| 16.75 | 39 | 0.738806 |
2a3ea79c920eb3e2ae778671480d52448a1757ff | 855 | yml | YAML | playbooks/podman-run.yml | jwflory/rit-nssa-320-infrastructure | a35cf5014cf7af3c741e7e0d7d568aae5d7b8c55 | [
"BSD-2-Clause"
] | 1 | 2019-10-01T15:07:45.000Z | 2019-10-01T15:07:45.000Z | playbooks/podman-run.yml | jwflory/rit-nssa-320-infrastructure | a35cf5014cf7af3c741e7e0d7d568aae5d7b8c55 | [
"BSD-2-Clause"
] | 11 | 2019-09-09T18:17:30.000Z | 2019-11-12T18:14:37.000Z | playbooks/podman-run.yml | jwflory/rit-nssa-320-infrastructure | a35cf5014cf7af3c741e7e0d7d568aae5d7b8c55 | [
"BSD-2-Clause"
] | 1 | 2019-10-17T14:17:32.000Z | 2019-10-17T14:17:32.000Z | # run playbook as:
# ansible-playbook playbook/podman --extra-vars "\
# container=<container name (should be 'progrium/stress')>\
# name=<custom name for reference>\
# volume=<volume name (name it 'stress_vol')>\
# cpu_workers=<spawn N workers spinning on sqrt()>\
# io_workers=<spawn N workers spinning on sync()>\
# vm_workers=<spawn N workers spinning on malloc()/free()>\
# vm_size=<malloc B bytes per vm worker (default is 256MB)>
# hdd_workers=<spawn N workers spinning on write()/unlink()>\
# hdd_size=<write B bytes per hdd worker>"
---
- name: configure container host
hosts: containerhost
strategy: free
become: yes
tasks:
- include_role:
name: podman-install
tags:
- podman
- podman-install
- include_role:
name: podman-create
tags:
- podman
- podman-run-container
| 27.580645 | 61 | 0.665497 |
e69c9e7df8f0b70ccaea4577b8a0e03f5154aaa7 | 244 | yml | YAML | conan_server/docker-compose.yml | SSE4/conan-docker-tools | 30f896dfc5232ea3b5daf5ef13d3d9106df6ae30 | [
"MIT"
] | 1 | 2019-03-21T10:38:04.000Z | 2019-03-21T10:38:04.000Z | conan_server/docker-compose.yml | SSE4/conan-docker-tools | 30f896dfc5232ea3b5daf5ef13d3d9106df6ae30 | [
"MIT"
] | null | null | null | conan_server/docker-compose.yml | SSE4/conan-docker-tools | 30f896dfc5232ea3b5daf5ef13d3d9106df6ae30 | [
"MIT"
] | 1 | 2019-03-21T10:38:54.000Z | 2019-03-21T10:38:54.000Z | version: '3'
services:
server:
image: conan_server:latest
container_name: conan_server
volumes:
- ./config:/root/.conan_server:rw
ports:
- '9300:9300'
restart: unless-stopped
| 20.333333 | 45 | 0.553279 |
8ba4c7a94b6dae46abdd2aaf2b087fba092a06e5 | 451 | yml | YAML | .github/workflows/ci-phsa-adapter.yml | GeorgeWalker/rsbc-dmf | 57f64ecfd68761adb821057a09fc9dae1b94586b | [
"Apache-2.0"
] | 3 | 2020-02-18T18:02:27.000Z | 2022-01-12T16:26:34.000Z | .github/workflows/ci-phsa-adapter.yml | GeorgeWalker/rsbc-dmf | 57f64ecfd68761adb821057a09fc9dae1b94586b | [
"Apache-2.0"
] | 20 | 2020-12-14T22:23:45.000Z | 2022-03-25T21:58:18.000Z | .github/workflows/ci-phsa-adapter.yml | GeorgeWalker/rsbc-dmf | 57f64ecfd68761adb821057a09fc9dae1b94586b | [
"Apache-2.0"
] | 9 | 2020-01-27T22:08:58.000Z | 2022-02-18T23:34:26.000Z | name: ci-phsa-adapter
on:
pull_request:
types: [opened, reopened, edited, synchronize]
paths:
- "phsa-adapter/src/**"
- "interfaces/icbc-adapter/**"
- ".github/workflows/ci-phsa-adapter.yml"
env:
IMAGE_NAME: phsa-adapter
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build image
run: docker build . --file ./phsa-adapter/src/Dockerfile --tag $IMAGE_NAME
| 20.5 | 82 | 0.629712 |
e33476fc20d1c64f6b1ecc8ac266406ea3686e94 | 564 | yml | YAML | data/id/retired/Jake-Ellis-e63c3ae2-2d95-4152-8533-c8c597c8c294.yml | putorti/people | 9416db7c50a3d4e09ffaa1bc9bdecf620a4093fc | [
"CC0-1.0"
] | 58 | 2018-10-18T22:50:29.000Z | 2022-03-01T21:03:44.000Z | data/id/retired/Jake-Ellis-e63c3ae2-2d95-4152-8533-c8c597c8c294.yml | putorti/people | 9416db7c50a3d4e09ffaa1bc9bdecf620a4093fc | [
"CC0-1.0"
] | 350 | 2018-09-28T18:51:08.000Z | 2022-03-21T19:03:57.000Z | data/id/retired/Jake-Ellis-e63c3ae2-2d95-4152-8533-c8c597c8c294.yml | putorti/people | 9416db7c50a3d4e09ffaa1bc9bdecf620a4093fc | [
"CC0-1.0"
] | 74 | 2018-10-06T16:52:56.000Z | 2022-02-11T15:45:20.000Z | id: ocd-person/e63c3ae2-2d95-4152-8533-c8c597c8c294
name: Jake Ellis
given_name: Jake
family_name: Ellis
email: jellis@house.idaho.gov
image: https://legislature.idaho.gov/wp-content/uploads/sessioninfo/2019/directory/Ellis5371.jpg
party:
- name: Democratic
roles:
- start_date: '2018-12-01'
end_date: '2020-12-01'
type: lower
jurisdiction: ocd-jurisdiction/country:us/state:id/government
district: '15'
links:
- url: https://legislature.idaho.gov/legislators/membership/?yr=2019&district=15
sources:
- url: https://legislature.idaho.gov/house/membership/
| 29.684211 | 96 | 0.778369 |
c5c701179442231ca01c865040616913f73f6903 | 255 | yml | YAML | config.yml | IvanKyrylov/user-game-api | 68d9bc980d7dc91c0f1b6f8ccfe46e9d534ad54f | [
"MIT"
] | null | null | null | config.yml | IvanKyrylov/user-game-api | 68d9bc980d7dc91c0f1b6f8ccfe46e9d534ad54f | [
"MIT"
] | 1 | 2021-07-01T09:36:39.000Z | 2021-07-01T09:36:39.000Z | config.yml | IvanKyrylov/user-game-api | 68d9bc980d7dc91c0f1b6f8ccfe46e9d534ad54f | [
"MIT"
] | null | null | null | is_debug: true
listen:
type: port
bind_ip: localhost
port: 8081
mongodb:
host: localhost
port: 27017
username: testadm
password: testadm
auth_db: admin
database: user_game_api
collection_users: users
collection_user_games: user_games | 18.214286 | 35 | 0.760784 |
4158558a6a760fcd784d388178edf8b948c1560b | 6,518 | yaml | YAML | templates/authenticated-s3.template.yaml | avattathil/test-project | b6989b7578d15142162639481fd6de7cb3996adb | [
"Apache-2.0"
] | null | null | null | templates/authenticated-s3.template.yaml | avattathil/test-project | b6989b7578d15142162639481fd6de7cb3996adb | [
"Apache-2.0"
] | null | null | null | templates/authenticated-s3.template.yaml | avattathil/test-project | b6989b7578d15142162639481fd6de7cb3996adb | [
"Apache-2.0"
] | null | null | null | AWSTemplateFormatVersion: 2010-09-09
Description: "Workload Template using Sigv2 S3 URLS"
Metadata:
LICENSE: 'Apache License, Version 2.0'
AUTHOR: 'Tony Vattathil'
EMAIL: 'tonynv@amazon.com'
Parameters:
AccessCIDR:
AllowedPattern: '(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})/(\d{1,2})'
ConstraintDescription: must be a valid IP CIDR range of the form x.x.x.x/x.
Description: The IP address range that can be used to access to the EC2 instance
MaxLength: '18'
MinLength: '9'
Type: String
KeyPairName:
Description: Name of an existing EC2 KeyPair to enable SSH access to the instances
Type: AWS::EC2::KeyPair::KeyName
Default: id_rsa_aws
ConstraintDescription: Must be the name of an existing EC2 KeyPair.
SubnetId:
Description: The Public subnet where the ec2 instance will be launched
Type: AWS::EC2::Subnet::Id
VPCID:
Description: The VPC to launch the GitHub Enterprise server
Type: AWS::EC2::VPC::Id
BucketName:
AllowedPattern: '^[0-9a-zA-Z]+([0-9a-zA-Z-]*[0-9a-zA-Z])*$'
ConstraintDescription: >-
Quick Start bucket name can include numbers, lowercase letters, uppercase
letters, and hyphens (-). It cannot start or end with a hyphen (-).
Default: 'replace-with-your-staging-bucket'
Description: >-
S3 bucket name for the Quick Start assets. Quick Start bucket name can
include numbers, lowercase letters, uppercase letters, and hyphens (-). It
cannot start or end with a hyphen (-).
Type: String
KeyPrefix:
AllowedPattern: '^[0-9a-zA-Z-/]*$'
ConstraintDescription: >-
Can include numbers, lowercase letters, uppercase letters, hyphens (-), and forward slash (/).
Default: 'cfn-authenticated-s3-example/'
Description: >-
S3 key prefix where assets are located should end withforward slash (/).
Type: String
Mappings:
AWSAMIRegionMap:
ap-northeast-1:
US1604HVM: ami-0f9af249e7fa6f61b
ap-northeast-2:
US1604HVM: ami-082bdb3b2d54d5a19
ap-south-1:
US1604HVM: ami-0927ed83617754711
ap-southeast-1:
US1604HVM: ami-0ee0b284267ea6cde
ap-southeast-2:
US1604HVM: ami-0328aad0f6218c429
ca-central-1:
US1604HVM: ami-06a6f79d24f2b6a21
eu-central-1:
US1604HVM: ami-050a22b7e0cf85dd0
eu-north-1:
US1604HVM: ami-7dd85203
eu-west-1:
US1604HVM: ami-03ef731cc103c9f09
eu-west-2:
US1604HVM: ami-0fab23d0250b9a47e
eu-west-3:
US1604HVM: ami-0bb607148d8cf36fb
sa-east-1:
US1604HVM: ami-02b235ae9b5819d3b
us-east-1:
US1604HVM: ami-04763b3055de4860b
us-east-2:
US1604HVM: ami-0d03add87774b12c5
us-west-1:
US1604HVM: ami-0dbf5ea29a7fc7e05
ap-northeast-3:
US1604HVM: ami-0154a1d609dece568
us-west-2:
US1604HVM: ami-0994c095691a46fb5
Conditions:
GovCloudCondition: !Equals
- !Ref AWS::Region
- us-gov-west-1
Resources:
RootRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Statement:
- Action: 'sts:AssumeRole'
Principal:
Service: ec2.amazonaws.com
Effect: Allow
Sid: ''
Policies:
- PolicyDocument:
Version: 2012-10-17
Statement:
- Action:
- 's3:GetObject'
Resource: !Sub 'arn:aws:s3:::${BucketName}/${KeyPrefix}*'
Effect: Allow
PolicyName: AuthenticatedS3GetObjects
RootInstanceProfile:
Type: AWS::IAM::InstanceProfile
Properties:
Path: /
Roles:
- !Ref RootRole
InstanceSecurityGroup:
Properties:
GroupDescription: 'ssh access to instance'
SecurityGroupIngress:
- CidrIp: !Ref AccessCIDR
FromPort: 22
IpProtocol: tcp
ToPort: 22
VpcId: !Ref VPCID
Type: 'AWS::EC2::SecurityGroup'
ExampleInstance:
Type: 'AWS::EC2::Instance'
Properties:
IamInstanceProfile: !Ref RootInstanceProfile
ImageId: !FindInMap
- AWSAMIRegionMap
- !Ref 'AWS::Region'
- US1604HVM
InstanceType: t2.large
KeyName: !Ref KeyPairName
SecurityGroupIds:
- !Ref InstanceSecurityGroup
SubnetId: !Ref SubnetId
UserData: !Base64
Fn::Sub:
- |
#!/bin/bash -x
#cfn signaling functions
echo "[INFO] Start UserData in ${S3Region}";
function cfn_fail
{
cfn-signal -e 1 --stack ${AWS::StackName} --region ${AWS::Region} --resource ExampleInstance
exit 1
}
function cfn_success
{
cfn-signal -e 0 --stack ${AWS::StackName} --region ${AWS::Region} --resource ExampleInstance
exit 0
}
until git clone https://github.com/aws-quickstart/quickstart-linux-utilities.git ; do echo "Retrying"; done
cd /quickstart-linux-utilities;
source quickstart-cfn-tools.source;
qs_update-os || qs_err;
qs_bootstrap_pip || qs_err " pip bootstrap failed ";
qs_aws-cfn-bootstrap || qs_err " cfn bootstrap failed ";
echo "[INFO] Executing config-sets";
cfn-init -v --stack ${AWS::StackName} --resource ExampleInstance --configsets ec2_bootstrap --region ${AWS::Region} || cfn_fail;
[ $(qs_status) == 0 ] && cfn_success || cfn_fail
-
S3Region: !If [ GovCloudCondition, s3-us-gov-west-1, s3 ]
Metadata:
AWS::CloudFormation::Authentication:
S3AccessCreds:
type: S3
buckets:
- !Sub ${BucketName}
roleName:
Ref: RootRole
AWS::CloudFormation::Init:
configSets:
ec2_bootstrap:
- helloworld_cfg
helloworld_cfg:
files:
/tmp/bootstrap.sh:
source: !Sub
- >-
https://${BucketName}.${S3Region}.amazonaws.com/${KeyPrefix}scripts/print_stdout.sh
- BucketName: !Ref BucketName
S3Region: !If [ GovCloudCondition, s3-us-gov-west-1, !Sub 's3.${AWS::Region}' ]
KeyPrefix: !Ref KeyPrefix
mode: '000755'
owner: root
group: root
command: /tmp/bootstrap.sh 'hello world'
authentication: S3AccessCreds
CreationPolicy:
ResourceSignal:
Count: 1
Timeout: PT15M
| 33.597938 | 140 | 0.604787 |
730eb41cd16a76b780f122ecc5d3b6f4586d442f | 1,760 | yml | YAML | threads/2065093/posts/73363100.yml | voz-living/documents | a5fb94005e8c2d681bbda8c85a40509ba5b11cd9 | [
"MIT"
] | null | null | null | threads/2065093/posts/73363100.yml | voz-living/documents | a5fb94005e8c2d681bbda8c85a40509ba5b11cd9 | [
"MIT"
] | null | null | null | threads/2065093/posts/73363100.yml | voz-living/documents | a5fb94005e8c2d681bbda8c85a40509ba5b11cd9 | [
"MIT"
] | null | null | null | url: showpost.php?p=73363100&postcount=34893
id: 73363100
tid: 2065093
num: 34893
datetime: 2015-01-07T14:19:00.000Z
user:
img: customavatars/avatar1312761_1.gif
name: TXF - Indigo
title: Đã tốn tiền
joinDate: 2013-08-31T16:00:00.000Z
posts: .nan
id: '1312761'
title: 'Re: [From F17 With Love] - Thread Girl Việt Xinh - UPDATED 23.03.2014'
content:
html: "\r\n\t\t\t\r\n\t\t\t<!-- BEGIN TEMPLATE: bbcode_quote -->\n<div style=\"margin:20px; margin-top:5px; \">\r\n\t<div class=\"smallfont\" style=\"margin-bottom:2px\">Quote:</div>\r\n\t<table cellpadding=\"6\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"voz-bbcode-quote\">\r\n\t<tr>\r\n\t\t<td class=\"alt2\" style=\"border:1px inset\">\r\n\t\t\t\r\n\t\t\t\t<div>\r\n\t\t\t\t\tOriginally Posted by <strong>coca0212</strong>\r\n\t\t\t\t\t<a href=\"showthread.php?p=73349384#post73349384\" rel=\"nofollow\"><img class=\"inlineimg\" src=\"images/buttons/viewpost.gif\" border=\"0\" alt=\"View Post\"></a>\r\n\t\t\t\t</div>\r\n\t\t\t\t<div style=\"font-style:italic\">^<br>\r\nảnh xxx trá hình</div>\r\n\t\t\t\r\n\t\t</td>\r\n\t</tr>\r\n\t</table>\r\n</div>\n<!-- END TEMPLATE: bbcode_quote -->Không phân biệt được ảnh nghệ thuật với xxx à <img src=\"/images/smilies/Off/shame.gif\" border=\"0\" alt=\"\" title=\"Shame\" class=\"inlineimg\"><br>\r\n<img src=\"https://farm8.staticflickr.com/7547/15347816293_809e69770b_b.jpg\" border=\"0\" alt=\"\">\r\n\t\t"
text: "Quote:\r\n\t\r\n\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\tOriginally Posted by coca0212\r\n\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t^\r\nảnh xxx trá hình\r\n\t\t\t\r\n\t\t\r\n\t\r\n\t\r\n\nKhông phân biệt được ảnh nghệ thuật với xxx à"
| 103.529412 | 1,156 | 0.653977 |
bc1d3b54da1cadf3ffc68972b402c37594781b36 | 2,910 | yaml | YAML | build/azure_pipelines.yaml | gravity-api/gravity-uia-server | 7566b4f5c36d22d986f930543e39c607cdf8e4dc | [
"Apache-2.0"
] | null | null | null | build/azure_pipelines.yaml | gravity-api/gravity-uia-server | 7566b4f5c36d22d986f930543e39c607cdf8e4dc | [
"Apache-2.0"
] | null | null | null | build/azure_pipelines.yaml | gravity-api/gravity-uia-server | 7566b4f5c36d22d986f930543e39c607cdf8e4dc | [
"Apache-2.0"
] | null | null | null | # https://docs.microsoft.com/en-us/azure/devops/pipelines/build/variables?view=azure-devops&tabs=yaml
name: Gravity.UiaDriverServer.$(Year:yyyy).$(Month).$(DayOfMonth)$(Rev:.r)
trigger:
branches:
include:
- main
pool:
name: Default
variables:
group: github.com
buildConfiguration: 'Release'
steps:
- task: DotNetCoreCLI@2
displayName: Restore Dependencies
inputs:
command: 'restore'
projects: '**/*.csproj'
feedsToUse: 'select'
vstsFeed: '6ed1caf9-de4f-48e8-8276-201533d86a19'
verbosityRestore: 'Diagnostic'
- task: DotNetCoreCLI@2
displayName: Build Projects
inputs:
command: 'build'
projects: '**/*.csproj'
arguments: '--configuration $(buildConfiguration)'
- task: DotNetCoreCLI@2
displayName: Execute Automation Tests
inputs:
command: 'test'
projects: '**/*[Tt]ests/*.csproj'
arguments: '--configuration $(buildConfiguration)'
testRunTitle: 'Automation Testing --- $(Build.BuildNumber)'
- task: DotNetCoreCLI@2
displayName: Publish Files to $(build.artifactstagingdirectory)/$(Build.BuildNumber)
inputs:
command: 'publish'
publishWebProjects: false
projects: '**/Rhino.Agent.csproj'
arguments: '--configuration $(BuildConfiguration) --output $(build.artifactstagingdirectory)/$(Build.BuildNumber)'
modifyOutputPath: false
- task: PowerShell@2
displayName: 'Parse Build Version'
inputs:
targetType: 'inline'
script: |
# setup
[regex]$pattern = '(\d+.?)+'
$version = $pattern.Matches('$(Build.BuildNumber)') | foreach-object {$_.Value}
# set value
Write-Host "##vso[task.setvariable variable=buildVersion]$version"
- task: PowerShell@2
displayName: 'Set Version File'
inputs:
targetType: 'inline'
script: |
Set-Content -Path '$(build.artifactstagingdirectory)/$(Build.BuildNumber)/version.txt' -Value '$(buildVersion)'
# setup
[regex]$pattern = '(\d+.?)+'
$version = $pattern.Matches('$(Build.BuildNumber)') | foreach-object {$_.Value}
# set value
Write-Host "##vso[task.setvariable variable=buildVersion]$version"
- task: PublishBuildArtifacts@1
displayName: Publish Artifact to Container
inputs:
PathtoPublish: '$(Build.ArtifactStagingDirectory)'
ArtifactName: 'drop'
publishLocation: 'Container'
- task: GitHubRelease@1
displayName: 'Create GitHub Tag'
inputs:
gitHubConnection: 'github.com'
repositoryName: 'savanna-projects/rhino-agent'
action: 'create'
target: '$(Build.SourceVersion)'
tagSource: 'userSpecifiedTag'
tag: 'v$(buildVersion)'
title: 'Production v$(buildVersion)'
releaseNotesSource: 'inline'
assets: '$(build.artifactstagingdirectory)\$(Build.BuildNumber)\$(Build.BuildNumber).zip'
changeLogCompareToRelease: 'lastFullRelease'
changeLogType: 'commitBased'
isDraft: true
isPreRelease: true | 30.3125 | 118 | 0.686942 |
624fd318ff2469223c8a2b9194f37e0d485f0102 | 70 | yml | YAML | .travis.yml | minostro/the-proven-little-erlanger | 390a38e2c5017e1d565a42e90a7e349001b4f9b7 | [
"BSD-3-Clause"
] | null | null | null | .travis.yml | minostro/the-proven-little-erlanger | 390a38e2c5017e1d565a42e90a7e349001b4f9b7 | [
"BSD-3-Clause"
] | null | null | null | .travis.yml | minostro/the-proven-little-erlanger | 390a38e2c5017e1d565a42e90a7e349001b4f9b7 | [
"BSD-3-Clause"
] | null | null | null | language: erlang
otp_release:
- 18.0
sudo: false
script: "make test" | 14 | 19 | 0.728571 |
5cb642928b7a11e91335f3a9e89e05bb18a17ab1 | 12,301 | yml | YAML | config/locales/uk.yml | vborshchov/ports_manager_api | 13aa38cdb942c3be47abc9d75f9ffcfefdd9a70c | [
"MIT"
] | null | null | null | config/locales/uk.yml | vborshchov/ports_manager_api | 13aa38cdb942c3be47abc9d75f9ffcfefdd9a70c | [
"MIT"
] | null | null | null | config/locales/uk.yml | vborshchov/ports_manager_api | 13aa38cdb942c3be47abc9d75f9ffcfefdd9a70c | [
"MIT"
] | null | null | null | uk:
activerecord:
models:
comment:
zero: "Коментарів"
one: "Коментар"
few: "Коментарів"
many: "Коментарів"
other: "Коментарі"
port:
zero: "Портів"
one: "Порт"
few: "Портів"
many: "Портів"
other: "Порти"
node:
zero: "Пристроїв"
one: "Пристрій"
few: "Пристроїв"
many: "Пристроїв"
other: "Пристрої"
cisco:
zero: "cisco"
one: "cisco"
few: "cisco"
many: "cisco"
other: "cisco"
dlink:
zero: "dlink"
one: "dlink"
few: "dlink"
many: "dlink"
other: "dlink"
zte:
zero: "zte"
one: "zte"
few: "zte"
many: "zte"
other: "zte"
iskratel:
zero: "iskratel"
one: "iskratel"
few: "iskratel"
many: "iskratel"
other: "iskratel"
huawei:
zero: "huawei"
one: "huawei"
few: "huawei"
many: "huawei"
other: "huawei"
customer:
zero: "Абонентів"
one: "Абонент"
few: "Абонентів"
many: "Абонентів"
other: "Абоненти"
location:
zero: "Локацій"
one: "Локація"
few: "Локацій"
many: "Локацій"
other: "Локації"
user:
zero: "Користувачів"
one: "Користувач"
few: "Користувачів"
many: "Користувачів"
other: "Користувачі"
attributes:
comment:
body: "тіло"
user: "користувач"
port: "порт"
created_at: "дата/час створення"
updated_at: "дата/час оновлення"
port:
name: "ім’я"
state: "статус"
description: "опис"
node: "пристрій"
customer: "абонент"
reserved: "зарезервовано"
comments: "коментар"
created_at: "дата/час створення"
updated_at: "дата/час оновлення"
node:
name: "назва"
ip: "IP адреса"
location: "локація"
type: "вендор"
model: "модель"
node_type: "тип пристрою"
ports: "Порти"
created_at: "дата/час створення"
updated_at: "дата/час оновлення"
customer:
account: "особовий рахунок"
name: "назва"
created_at: "дата/час створення"
updated_at: "дата/час оновлення"
location:
name: "назва"
address: "адреса"
created_at: "дата/час створення"
updated_at: "дата/час оновлення"
user:
last_sign_in_at: "дата/час останнього входу"
last_sign_in_ip: "остання IP адреса входу"
created_at: "дата/час створення"
updated_at: "дата/час оновлення"
current_password: "Поточний пароль"
email: Email
password: "Пароль"
password_confirmation: "Підтвердження пароля"
remember_me: "Запам'ятати мене"
errors:
models:
user:
attributes:
email:
invalid: "невірний формат email"
blank: "не може бути пустим"
auth_token:
taken: "вже використано"
messages:
record_invalid: 'Виникли помилки: %{errors}'
devise:
confirmations:
new:
resend_confirmation_instructions: "Повторно надіслати інструкцію з підтвердженням"
mailer:
confirmation_instructions:
action: "Підтвердити мій аккаунт"
greeting: "Ласкаво просимо %{recipient}!"
instruction: "Ви можете підтвердити свою електронну пошту через посилання нижче:"
reset_password_instructions:
action: "Зміна паролю"
greeting: "Доброго дня %{recipient}!"
instruction: "Хтось подав запит на зміну вашого паролю, ви можете підтвердити зміну через посилання нижче."
instruction_2: "Якщо вам цього не потрібно, не звертайте увагу на це повідомлення."
instruction_3: "Ваш пароль не мінятиметься доки ви не перейдете за посиланням вище і створите новий."
unlock_instructions:
action: "Розблокувати мій обліковий запис"
greeting: "Доброго дня %{recipient}!"
instruction: "Натисніть на посилання нижче, щоб розблокувати обліковий запис:"
message: "Ваш обліковий запис був заблокований через велику кількості невдалих спроб входу."
passwords:
edit:
change_my_password: "Змінити мій пароль"
change_your_password: "Змінити ваш пароль"
confirm_new_password: "Підтвердіть новий пароль"
new_password: "Новий пароль"
new:
forgot_your_password: "Забули пароль?"
send_me_reset_password_instructions: "Відправити мені інструкції скидання паролів"
registrations:
edit:
are_you_sure: "Ви впевнені?"
cancel_my_account: "Скасувати мій обліковий запис"
currently_waiting_confirmation_for_email: "В даний час очікуємо підтвердження від: %{email}"
leave_blank_if_you_don_t_want_to_change_it: "залиште порожнім, якщо ви не хочете змінити його"
title: "Редагувати %{resource}"
unhappy: "Нещасний"
update: "Оновити"
we_need_your_current_password_to_confirm_your_changes: "введіть свій поточний пароль для підтвердження змін"
new:
sign_up: "Зареєструватись"
sessions:
new:
sign_in: "Увійти"
shared:
links:
back: "Назад"
didn_t_receive_confirmation_instructions: "Не отримали лист з підтвердженням?"
didn_t_receive_unlock_instructions: "Не отримали інструкції розблокування?"
forgot_your_password: "Забули пароль?"
sign_in: "Увійти"
sign_in_with_provider: "Увійти за допомогою %{provider}"
sign_up: "Зареєструватись"
header:
ports_manager: "Менеджер портів"
unlocks:
new:
resend_unlock_instructions: "Повторно надіслати інструкції з розблокування"
failure:
user:
not_found_in_database: "Невірна комбінація email/пароль"
date:
abbr_day_names:
- нд.
- пн.
- вт.
- ср.
- чт.
- пт.
- сб.
abbr_month_names:
-
- січ.
- лют.
- бер.
- квіт.
- трав.
- черв.
- лип.
- серп.
- вер.
- жовт.
- лист.
- груд.
day_names:
- неділя
- понеділок
- вівторок
- середа
- четвер
- п'ятниця
- субота
formats:
default: "%d.%m.%Y"
long: "%d %B %Y"
short: "%d %b"
month_names:
-
- Січня
- Лютого
- Березня
- Квітня
- Травня
- Червня
- Липня
- Серпня
- Вересня
- Жовтня
- Листопада
- Грудня
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
few: близько %{count} год.
many: близько %{count} год.
one: близько %{count} год.
other: близько %{count} год.
about_x_months:
few: близько %{count} міс.
many: близько %{count} міс.
one: близько %{count} міс.
other: близько %{count} міс.
about_x_years:
few: близько %{count} р.
many: близько %{count} р.
one: близько %{count} р.
other: близько %{count} р.
almost_x_years:
few: майже %{count} р.
many: майже %{count} р.
one: майже %{count} р.
other: майже %{count} р.
half_a_minute: півхвилини
less_than_x_minutes:
few: менше %{count} хв.
many: менше %{count} хв.
one: менше %{count} хв.
other: менше %{count} хв.
less_than_x_seconds:
few: менше %{count} сек.
many: менше %{count} сек.
one: менше %{count} сек.
other: менше %{count} сек.
over_x_years:
few: більше %{count} р.
many: більше %{count} р.
one: більше %{count} р.
other: більше %{count} р.
x_days:
few: "%{count} дн."
many: "%{count} дн."
one: "%{count} дн."
other: "%{count} дн."
x_minutes:
few: "%{count} хв."
many: "%{count} хв."
one: "%{count} хв."
other: "%{count} хв."
x_months:
few: "%{count} міс."
many: "%{count} міс."
one: "%{count} міс."
other: "%{count} міс."
x_seconds:
few: "%{count} сек."
many: "%{count} сек."
one: "%{count} сек."
other: "%{count} сек."
prompts:
day: День
hour: Година
minute: Хвилина
month: Місяць
second: Секунда
year: Рік
errors:
format: "%{attribute} %{message}"
messages:
accepted: має бути прийнятий
blank: не може бути пустим
confirmation: не збігається з підтвердженням
empty: не може бути порожнім
equal_to: має дорівнювати %{count}
even: має бути парним
exclusion: зарезервовано
greater_than: має бути більше ніж %{count}
greater_than_or_equal_to: має бути більше ніж або дорівнювати %{count}
inclusion: не включено до переліку
invalid: недійсний
less_than: має бути менше ніж %{count}
less_than_or_equal_to: має бути менше ніж або дорівнювати %{count}
not_a_number: не число
not_an_integer: не э цілим числом
odd: має бути непарним
taken: вже зайнятий
too_long:
few: занадто довгий (максимум %{count} знаки)
many: занадто довгий (максимум %{count} знаків)
one: занадто довгий (максимум %{count} знак)
other: занадто довгий (максимум %{count} знаку)
too_short:
few: занадто короткий (мінімум %{count} знаки)
many: занадто короткий (мінімум %{count} знаків)
one: занадто короткий (мінімум %{count} знак)
other: занадто короткий (мінімум %{count} знаку)
wrong_length:
few: неправильна довжина (має бути %{count} знаки)
many: неправильна довжина (має бути %{count} знаків)
one: неправильна довжина (має бути %{count} знак)
other: неправильна довжина (має бути %{count} знаку)
template:
body: 'Помилки виявлено в таких полях:'
header:
few: "%{model} не збережено через %{count} помилки"
many: "%{model} не збережено через %{count} помилок"
one: "%{model} не збережено через %{count} помилку"
other: "%{model} не збережено через %{count} помилки"
helpers:
select:
prompt: 'Оберіть: '
submit:
create: Створити %{model}
submit: Зберегти %{model}
update: Зберегти %{model}
number:
currency:
format:
delimiter: " "
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: грн.
format:
delimiter: " "
precision: 3
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion:
few: Мільярдів
many: Мільярдів
one: Мільярд
other: Мільярдів
million:
few: Мільйонів
many: Мільйонів
one: Мільйон
other: Мільйонів
quadrillion:
few: Квадрильйонів
many: Квадрильйонів
one: Кквадрильйон
other: Квадрильйонів
thousand:
few: Тисяч
many: Тисяч
one: Тисяча
other: Тисяч
trillion:
few: Трильйонів
many: Трильйонів
one: Трильйон
other: Трильйонів
unit: ''
format:
delimiter: ''
precision: 1
significant: false
strip_insignificant_zeros: false
storage_units:
format: "%n %u"
units:
byte:
few: байти
many: байтів
one: байт
other: байту
gb: ГБ
kb: кБ
mb: МБ
tb: ТБ
percentage:
format:
delimiter: ''
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " та "
two_words_connector: " і "
words_connector: ", "
time:
am: до полудня
formats:
default: "%a, %d %b %Y, %H:%M:%S %z"
long: "%d %B %Y, %H:%M"
short: "%d %b, %H:%M"
pm: по полудні
| 27.704955 | 116 | 0.557109 |
cf5b2dc6a380492a6be1cd8169dd249ba378520b | 3,349 | yaml | YAML | files/automated-powershell-script/flows/Trigger proactive callback workflow.yaml | isabella232/automated-callback-blueprint | a12e52996c2f756d1f647b9eaea0095c571b60c5 | [
"MIT"
] | 2 | 2021-06-07T20:07:49.000Z | 2022-03-25T23:52:48.000Z | files/automated-powershell-script/flows/Trigger proactive callback workflow.yaml | MyPureCloud/automated-callback-blueprint | 9f4714c3d9285c9b7437ed5d5d349445d1b3e9fa | [
"MIT"
] | 3 | 2021-07-22T20:37:29.000Z | 2021-08-09T20:56:33.000Z | files/automated-powershell-script/flows/Trigger proactive callback workflow.yaml | isabella232/automated-callback-blueprint | a12e52996c2f756d1f647b9eaea0095c571b60c5 | [
"MIT"
] | 11 | 2021-08-09T20:45:45.000Z | 2022-03-09T12:01:51.000Z | inboundCall:
name: Trigger proactive callback workflow
description: Begins automation of proactive callback workflow
division: Home
startUpRef: "/inboundCall/tasks/task[Put callback in proactive callback work bin_12]"
defaultLanguage: en-us
initialGreeting:
exp: AudioPlaybackOptions(ToAudioBlank(100), true)
settingsActionDefaults:
playAudioOnSilence:
timeout:
lit:
seconds: 40
detectSilence:
timeout:
lit:
seconds: 40
callData:
processingPrompt:
lit:
name: PromptSystem.processing
callBridge:
processingPrompt:
lit:
name: PromptSystem.processing
collectInput:
noEntryTimeout:
lit:
seconds: 5
dialByExtension:
interDigitTimeout:
lit:
seconds: 6
transferToUser:
connectTimeout:
noValue: true
transferToNumber:
connectTimeout:
noValue: true
transferToGroup:
connectTimeout:
noValue: true
transferToFlowSecure:
connectTimeout:
lit:
seconds: 15
settingsErrorHandling:
errorHandling:
disconnect:
none: true
preHandlingAudio:
tts: Sorry, an error occurred. Please try your call again.
settingsMenu:
extensionDialingMaxDelay:
lit:
seconds: 1
listenForExtensionDialing:
lit: true
menuSelectionTimeout:
lit:
seconds: 10
repeatCount:
lit: 3
settingsPrompts:
ensureAudioInPrompts: false
settingsSpeechRec:
completeMatchTimeout:
lit:
ms: 100
incompleteMatchTimeout:
lit:
ms: 1500
maxSpeechLengthTimeout:
lit:
seconds: 20
minConfidenceLevel:
lit: 50
asrCompanyDir: none
asrEnabledOnFlow: true
tasks:
- task:
name: Put callback in proactive callback work bin
refId: Put callback in proactive callback work bin_12
variables:
- stringVariable:
name: Task.delay
initialValue:
noValue: true
actions:
- getParticipantData:
name: Get delay
attributes:
- attribute:
name:
lit: delay
variable: Task.delay
- callData:
name: Send to proactive callback flow
processingPrompt:
noValue: true
timeout:
lit:
minutes: 1
category:
<integrationName>:
dataAction:
Execute workflow:
inputs:
flowId:
lit: <workflowId>
attributes:
exp: "\"\\\"Flow.delay\\\": \\\"\" + Task.delay + \"\\\", \\\"Flow.phone\\\": \\\"\" + Replace(Call.Ani, \"tel:\", \"\") + \"\\\", \\\"Flow.name\\\": \\\"\" + Call.RemoteName + \"\\\"\""
outputs:
success:
actions:
- playAudio:
name: Play Audio
audio:
tts: We will call you just before an agent is available to serve you
- disconnect:
name: Disconnect
| 27.45082 | 212 | 0.523738 |
96e92388288e41443fcde19c93081bf2744ad297 | 999 | yml | YAML | .travis.yml | tfoxy/angular.mailcheck | 4e5328a54c4e8ab5d9c15b32994c600e83267c78 | [
"MIT"
] | 1 | 2016-10-25T06:19:57.000Z | 2016-10-25T06:19:57.000Z | .travis.yml | tfoxy/angular.mailcheck | 4e5328a54c4e8ab5d9c15b32994c600e83267c78 | [
"MIT"
] | null | null | null | .travis.yml | tfoxy/angular.mailcheck | 4e5328a54c4e8ab5d9c15b32994c600e83267c78 | [
"MIT"
] | null | null | null | language: node_js
node_js:
- stable
before_script:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm install -g bower
- bower install
deploy:
provider: npm
email: tomas.c.fox@gmail.com
api_key:
secure: hUdpuvQUM/OEZ69Pdz/Hvml/wfbxMa6CsbPKh12PUzxk/OBfLtkpUFkGw7tIMI9XDn1Ws5NZWfqyzQsb+L/jLoWwLopPRSjIiXFWgEHJp6GH52rtGhHllr/gg22DOTxAPlJTHXK1ENoZ5qkoxfGaStae0gYRLv8dU9KNlJP82LV7JB3eIgMEsIQnYfJ5fl+8t2P27pOGNA5UeW5/8QcyGA7mNp3cmttEVTa49ZuY/Vkfjfp9CEVfbhKD9vj65hvmsMUrRy0DDUb9fdcjvhYUOEgqctLGWdIok7x2wdv09to/sw4RkkbAQajYg3l3JHRh8GZYsETrb0eNNqER2sFV/G1AnqZ0V1M141o3txntxHHkwJO5Jy1mhuFdHvhcoZoDsZZNrLRjGTM8nOqfVCBegc2pi7EaE99oaYnjhsl8PbF/6I9fSQR4CmceNaSWw0jL1GpsmWcOTKF7maUzqHAFkm0uc2JWjMdKZATUMNYZOPkjN/qc3TGlaEnSszLVot8LwPjBjcTcAif2gEFcjgvmWk9GvwbwxAmZir2dDyo3kNT7o+gD8rQg+OIrl8f6HT6dpQWQbZgCAGC0otExIwDsfyz/xeQDYyH1jD94STii+7xQnnW3N5b0h60KqWfaesXXm66OKli6+bQjD3kgpBHfR2NtL+x2Nhox6nLpK7a1xvs=
on:
tags: true
repo: tfoxy/angular.mailcheck
| 55.5 | 696 | 0.886887 |
4c80b5ef568725147d902e10f07e6281da6d65e9 | 127 | yaml | YAML | tests/minimal/altair/ssz_static/SignedBeaconBlock/ssz_one/case_0/roots.yaml | LaudateCorpus1/consensus-spec-tests | f31005b94c3bdc846ae36532093030ef0076cd4f | [
"MIT"
] | null | null | null | tests/minimal/altair/ssz_static/SignedBeaconBlock/ssz_one/case_0/roots.yaml | LaudateCorpus1/consensus-spec-tests | f31005b94c3bdc846ae36532093030ef0076cd4f | [
"MIT"
] | 1 | 2021-09-12T07:30:23.000Z | 2021-09-12T07:30:23.000Z | tests/minimal/altair/ssz_static/SignedBeaconBlock/ssz_one/case_0/roots.yaml | LaudateCorpus1/consensus-spec-tests | f31005b94c3bdc846ae36532093030ef0076cd4f | [
"MIT"
] | null | null | null | version https://git-lfs.github.com/spec/v1
oid sha256:3794eab2e8ec518268d8f16d693ab79465a8c27f4e3be360adaec786dfe36090
size 77
| 31.75 | 75 | 0.88189 |
6a8c585ebc5db6b28db2708ee92a003ab3b6bb65 | 1,062 | yml | YAML | threads/3334493/posts/68426783.yml | voz-living/documents | a5fb94005e8c2d681bbda8c85a40509ba5b11cd9 | [
"MIT"
] | null | null | null | threads/3334493/posts/68426783.yml | voz-living/documents | a5fb94005e8c2d681bbda8c85a40509ba5b11cd9 | [
"MIT"
] | null | null | null | threads/3334493/posts/68426783.yml | voz-living/documents | a5fb94005e8c2d681bbda8c85a40509ba5b11cd9 | [
"MIT"
] | null | null | null | url: showpost.php?p=68426783&postcount=13830
id: 68426783
tid: 3334493
num: 13830
datetime: 2014-06-25T10:38:00.000Z
user:
img: null
name: Tao Do Hot Girl
title: Member
joinDate: 2013-10-31T16:00:00.000Z
posts: 32
id: '1347387'
title: >-
Re: post 1 tấm ảnh về Cô gái mà bạn cho là xinh nhất mà bạn từng gặp trong
đời?!
content:
html: "\r\n\t\t\t\r\n\t\t\tcô giáo trường tiểu học ba đình <img src=\"/images/smilies/Off/embarrassed.gif\" border=\"0\" alt=\"\" title=\"Embarrassed\" class=\"inlineimg\"><br>\r\n<img src=\"https://scontent-a-sjc.xx.fbcdn.net/hphotos-frc3/t1.0-9/10001579_556001444500697_6308841335801224278_n.jpg\" border=\"0\" alt=\"\"><br>\r\n<img src=\"https://scontent-b-sjc.xx.fbcdn.net/hphotos-frc1/t1.0-9/10246710_548549195245922_8250032458681261251_n.jpg\" border=\"0\" alt=\"\"><br>\r\n<img src=\"https://fbcdn-sphotos-h-a.akamaihd.net/hphotos-ak-frc3/t1.0-9/1495503_514871341947041_1416523419_n.jpg\" border=\"0\" alt=\"\">\r\n\t\t"
text: cô giáo trường tiểu học ba đình
| 55.894737 | 677 | 0.699623 |
80e2d969378d444abefa6fb6840c11f3922d745e | 833 | yml | YAML | docker-compose.yml | maxxwv/mj-freeway | c046761caba0c2d32774234b0e7d7b7e1d7b33fc | [
"MIT"
] | null | null | null | docker-compose.yml | maxxwv/mj-freeway | c046761caba0c2d32774234b0e7d7b7e1d7b33fc | [
"MIT"
] | 3 | 2021-05-10T11:50:35.000Z | 2022-02-26T17:16:22.000Z | docker-compose.yml | maxxwv/mj-freeway | c046761caba0c2d32774234b0e7d7b7e1d7b33fc | [
"MIT"
] | null | null | null | version: '3.5'
services:
mjfreeway:
build:
context: '.'
volumes:
- .:/var/www/html
ports:
- 8000:80
networks:
- laravel
database:
image: mysql:latest
ports:
- 3306:3306
environment:
- MYSQL_ROOT_PASSWORD=laravel
- MYSQL_DATABASE=mjfreeway_test
- MYSQL_USER=laravel
- MYSQL_PASSWORD=laravel
command: '--default-authentication-plugin=mysql_native_password'
networks:
- laravel
volumes:
- db
redis:
image: redis
ports:
- 6379:6379
volumes:
- redis
pma:
image: phpmyadmin/phpmyadmin
ports:
- 8181:80
environment:
- MYSQL_USERNAME=laravel
- MYSQL_PASSWORD=laravel
- PMA_HOST=database
networks:
- laravel
volumes:
db:
redis:
networks:
laravel: | 16.019231 | 68 | 0.590636 |
4423a0153778eba6d2f9de4c697aeb4c5593ab50 | 138 | yml | YAML | pkg/host-timesync-daemon/build.yml | Osirium/linuxkit | b710224cdf9a8425a7129cdcb84fc1af00f926d7 | [
"Apache-2.0"
] | 7,798 | 2017-04-18T15:19:24.000Z | 2022-03-30T19:34:42.000Z | pkg/host-timesync-daemon/build.yml | Osirium/linuxkit | b710224cdf9a8425a7129cdcb84fc1af00f926d7 | [
"Apache-2.0"
] | 1,673 | 2017-04-18T16:15:20.000Z | 2022-03-31T06:14:17.000Z | pkg/host-timesync-daemon/build.yml | Osirium/linuxkit | b710224cdf9a8425a7129cdcb84fc1af00f926d7 | [
"Apache-2.0"
] | 1,099 | 2017-04-18T15:19:33.000Z | 2022-03-31T20:23:20.000Z | image: host-timesync-daemon
network: true
arches:
- amd64
config:
binds:
- /dev/rtc0:/dev/rtc0
capabilities:
- CAP_SYS_TIME
| 13.8 | 27 | 0.681159 |
3672a4a45332df60d49e648c4cd0366cbbf8dc09 | 23,809 | yaml | YAML | reports/wilson.ci.chef.co/job/.deleted/opscode-reporting-trigger-nightly-master/75.yaml | chef-boneyard/jenkins_pipeline_report | c74f6df8b5658c3a341f11ac244efee8ab63ec21 | [
"Apache-2.0"
] | null | null | null | reports/wilson.ci.chef.co/job/.deleted/opscode-reporting-trigger-nightly-master/75.yaml | chef-boneyard/jenkins_pipeline_report | c74f6df8b5658c3a341f11ac244efee8ab63ec21 | [
"Apache-2.0"
] | null | null | null | reports/wilson.ci.chef.co/job/.deleted/opscode-reporting-trigger-nightly-master/75.yaml | chef-boneyard/jenkins_pipeline_report | c74f6df8b5658c3a341f11ac244efee8ab63ec21 | [
"Apache-2.0"
] | 2 | 2021-06-27T16:09:19.000Z | 2021-08-29T14:08:44.000Z | ---
result: FAILURE
url: http://wilson.ci.chef.co/job/opscode-reporting-trigger-nightly-master/75/
failure_category: unknown
failure_cause: 'unknown: ubuntu-12.04: opscode-reporting-build'
timestamp: 2016-02-22 08:37:00 UTC
duration: 55m23s
active_duration: 1h38m31s
parameters: {}
change:
git_remote: git@github.com:opscode/omnibus-reporting.git
git_commit: cede130cbda498b872e339b4598b95c0d25bacd2
project: opscode-reporting
stages:
opscode-reporting-build/architecture=x86_64,platform=ubuntu-10.04,project=opscode-reporting,role=builder:
result: SUCCESS
url: http://wilson.ci.chef.co/job/opscode-reporting-build/architecture=x86_64,platform=ubuntu-10.04,project=opscode-reporting,role=builder/97/
duration: 43m15s
opscode-reporting-build:
result: FAILURE
failure_category: unknown
failure_cause: 'unknown: ubuntu-12.04'
url: http://wilson.ci.chef.co/job/opscode-reporting-build/97/
duration: 55m11s
runs:
ubuntu-12.04:
result: FAILURE
failure_category: unknown
failure_cause: unknown
url: http://wilson.ci.chef.co/job/opscode-reporting-build/architecture=x86_64,platform=ubuntu-12.04,project=opscode-reporting,role=builder/97/
duration: 22m3s
logs:
consoleText:
233: |2
[Software] I | Loading software `net-ssh-gem' from `/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/config/software/net-ssh-gem.rb'.
[Software] I | Loading software `berkshelf2' from `/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-software-16adc9308749/config/software/berkshelf2.rb'.
[berkshelf2] W | DEPRECATED: Please upgrade to Berkshelf 3. Continued use of Berkshelf 2 will not be supported in the future.
[Software] I | Loading software `nokogiri' from `/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-software-16adc9308749/config/software/nokogiri.rb'.
[Software] I | Loading software `libxml2' from `/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-software-16adc9308749/config/software/libxml2.rb'.
2048: |2
D | cd /opt/opscode-reporting/embedded/lib && (ln -s -f libtinfo.so.5.9 libtinfo.so.5; ln -s -f libtinfo.so.5 libtinfo.so; )
D | test -z "" && /sbin/ldconfig
D | /sbin/ldconfig.real: Can't create temporary cache file /etc/ld.so.cache~: Permission denied
D | make[1]: [/opt/opscode-reporting/embedded/lib/libtinfo.so.5.9] Error 1 (ignored)
D | installing ../lib/libtinfo.a as /opt/opscode-reporting/embedded/lib/libtinfo.a
2064: |2
D | /usr/bin/ld: data size 29157496
D | test -z "" && /sbin/ldconfig
D | /sbin/ldconfig.real: Can't create temporary cache file /etc/ld.so.cache~: Permission denied
D | make[1]: [/opt/opscode-reporting/embedded/lib/libncurses.so.5.9] Error 1 (ignored)
D | installing ../lib/libncurses.a as /opt/opscode-reporting/embedded/lib/libncurses.a
2101: |2
D | /usr/bin/ld: total time in link: 0.036002
D | /usr/bin/ld: data size 15956088
D | /sbin/ldconfig.real: Can't create temporary cache file /etc/ld.so.cache~: Permission denied
D | make[1]: [/opt/opscode-reporting/embedded/lib/libpanel.so.5.9] Error 1 (ignored)
D | installing ../lib/libpanel.a as /opt/opscode-reporting/embedded/lib/libpanel.a
2121: |2
D | cd /opt/opscode-reporting/embedded/lib && (ln -s -f libmenu.so.5.9 libmenu.so.5; ln -s -f libmenu.so.5 libmenu.so; )
D | test -z "" && /sbin/ldconfig
D | /sbin/ldconfig.real: Can't create temporary cache file /etc/ld.so.cache~: Permission denied
D | make[1]: [/opt/opscode-reporting/embedded/lib/libmenu.so.5.9] Error 1 (ignored)
D | installing ../lib/libmenu.a as /opt/opscode-reporting/embedded/lib/libmenu.a
2142: |2
D | cd ../lib && (ln -s -f libform.so.5.9 libform.so.5; ln -s -f libform.so.5 libform.so; )
D | test -z "" && /sbin/ldconfig
D | /sbin/ldconfig.real: Can't create temporary cache file /etc/ld.so.cache~: Permission denied
D | make[1]: [/opt/opscode-reporting/embedded/lib/libform.so.5.9] Error 1 (ignored)
D | installing ../lib/libform.a as /opt/opscode-reporting/embedded/lib/libform.a
3717: |2
D | test -z "" && /sbin/ldconfig
D | installing ../lib/libtinfow.a as /opt/opscode-reporting/embedded/lib/libtinfow.a
D | /sbin/ldconfig.real: Can't create temporary cache file /etc/ld.so.cache~: Permission denied
D | make[1]: [/opt/opscode-reporting/embedded/lib/libtinfow.so.5.9] Error 1 (ignored)
D | /usr/bin/install -c -m 644 ../lib/libtinfow.a /opt/opscode-reporting/embedded/lib/libtinfow.a
3727: |2
D | cd /opt/opscode-reporting/embedded/lib && (ln -s -f libncursesw.so.5.9 libncursesw.so.5; ln -s -f libncursesw.so.5 libncursesw.so; )
D | test -z "" && /sbin/ldconfig
D | /sbin/ldconfig.real: Can't create temporary cache file /etc/ld.so.cache~: Permission denied
D | make[1]: [/opt/opscode-reporting/embedded/lib/libncursesw.so.5.9] Error 1 (ignored)
D | installing ../lib/libncursesw.a as /opt/opscode-reporting/embedded/lib/libncursesw.a
3762: |2
D | cd /opt/opscode-reporting/embedded/lib && (ln -s -f libpanelw.so.5.9 libpanelw.so.5; ln -s -f libpanelw.so.5 libpanelw.so; )
D | test -z "" && /sbin/ldconfig
D | /sbin/ldconfig.real: Can't create temporary cache file /etc/ld.so.cache~: Permission denied
D | make[1]: [/opt/opscode-reporting/embedded/lib/libpanelw.so.5.9] Error 1 (ignored)
D | installing ../lib/libpanelw.a as /opt/opscode-reporting/embedded/lib/libpanelw.a
3783: |2
D | /usr/bin/ld: total time in link: 0.044002
D | /usr/bin/ld: data size 34371704
D | /sbin/ldconfig.real: Can't create temporary cache file /etc/ld.so.cache~: Permission denied
D | make[1]: [/opt/opscode-reporting/embedded/lib/libmenuw.so.5.9] Error 1 (ignored)
D | /usr/bin/install -c -m 644 ../lib/libmenuw.a /opt/opscode-reporting/embedded/lib/libmenuw.a
3806: |2
D | ranlib /opt/opscode-reporting/embedded/lib/libformw.a
D | usr/bin/ld: data size 26773624
D | /sbin/ldconfig.real: Can't create temporary cache file /etc/ld.so.cache~: Permission denied
D | make[1]: [/opt/opscode-reporting/embedded/lib/libformw.so.5.9] Error 1 (ignored)
D | installing ./form.h in /opt/opscode-reporting/embedded/include
11776: |2
D | configuring -test-/debug
D | configuring -test-/exception
D | configuring -test-/fatal
D | configuring -test-/file
D | configuring -test-/funcall
11939: |2
D | linking shared-object -test-/exception.so
D | make[2]: Leaving directory `/var/cache/omnibus/src/ruby-2.1.4/ext/-test-/debug'
D | make[2]: Entering directory `/var/cache/omnibus/src/ruby-2.1.4/ext/-test-/fatal'
D | compiling rb_fatal.c
D | installing default rb_fatal libraries
D | linking shared-object -test-/fatal/rb_fatal.so
D | make[2]: Leaving directory `/var/cache/omnibus/src/ruby-2.1.4/ext/-test-/exception'
D | make[2]: Entering directory `/var/cache/omnibus/src/ruby-2.1.4/ext/-test-/file'
11949: |2
D | installing default file libraries
D | linking shared-object -test-/file.so
D | make[2]: Leaving directory `/var/cache/omnibus/src/ruby-2.1.4/ext/-test-/fatal'
D | make[2]: Entering directory `/var/cache/omnibus/src/ruby-2.1.4/ext/-test-/funcall'
D | compiling passing_block.c
12471: |2
D | installing default debug libraries
D | make[2]: Leaving directory `/var/cache/omnibus/src/ruby-2.1.4/ext/-test-/debug'
D | make[2]: Entering directory `/var/cache/omnibus/src/ruby-2.1.4/ext/-test-/fatal'
D | installing default rb_fatal libraries
D | make[2]: Leaving directory `/var/cache/omnibus/src/ruby-2.1.4/ext/-test-/fatal'
D | make[2]: Entering directory `/var/cache/omnibus/src/ruby-2.1.4/ext/-test-/file'
D | installing default file libraries
22724: |2
[Builder: runit] I | Execute: `make check': 8.6791s
[Builder: runit] I | Build runit: 10.3823s
The following shell command exited with status 2:
$ CFLAGS=-I/opt/opscode-reporting/embedded/include CPPFLAGS=-I/opt/opscode-reporting/embedded/include CXXFLAGS=-I/opt/opscode-reporting/embedded/include LC_ALL=C LDFLAGS=-Wl,-rpath,/opt/opscode-reporting/embedded/lib -L/opt/opscode-reporting/embedded/lib LD_RUN_PATH=/opt/opscode-reporting/embedded/lib PATH=/opt/opscode-reporting/bin:/opt/opscode-reporting/embedded/bin:/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bin:/opt/languages/ruby/2.1.5/bin:/usr/local/bin::/usr/local/sbin:/usr/sbin:/usr/bin:/sbin:/bin PKG_CONFIG_PATH=/opt/opscode-reporting/embedded/lib/pkgconfig make check
Output:
./check-local chpst runit runit-init runsv runsvchdir runsvdir sv svlogd utmpset
Checking chpst...
Checking runit...
Checking runit-init...
Checking runsv...
Checking runsvchdir...
Checking runsvdir...
Checking sv...
usage: sv [-v] [-w sec] command service ...
100
$Id: d126cee39d1887d523c122ffb033d1ea098c9f24 $
usage: sv [-v] [-w sec] command service ...
100
starting
0
run, got TERM, want down
0
0
sv failed.
Error:
make: *** [check] Error 1
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/util.rb:101:in `rescue in shellout!'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/util.rb:97:in `shellout!'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/builder.rb:683:in `shellout!'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/builder.rb:84:in `block in command'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/builder.rb:870:in `instance_eval'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/builder.rb:870:in `run'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/builder.rb:701:in `block (3 levels) in execute'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/builder.rb:723:in `call'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/builder.rb:723:in `with_retries'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/builder.rb:700:in `block (2 levels) in execute'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/instrumentation.rb:23:in `call'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/instrumentation.rb:23:in `measure'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/builder.rb:699:in `block in execute'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/builder.rb:773:in `call'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/builder.rb:773:in `with_clean_env'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/builder.rb:698:in `execute'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/builder.rb:594:in `block (2 levels) in build'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/builder.rb:593:in `each'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/builder.rb:593:in `block in build'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/instrumentation.rb:23:in `call'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/instrumentation.rb:23:in `measure'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/builder.rb:592:in `build'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/software.rb:893:in `execute_build'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/software.rb:768:in `build_me'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/project.rb:1006:in `block in build'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/project.rb:1005:in `each'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/project.rb:1005:in `build'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/cli.rb:83:in `build'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/gems/thor-0.19.1/lib/thor/command.rb:27:in `run'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/gems/thor-0.19.1/lib/thor/invocation.rb:126:in `invoke_command'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/gems/thor-0.19.1/lib/thor.rb:359:in `dispatch'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/cli/base.rb:33:in `dispatch'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/gems/thor-0.19.1/lib/thor/base.rb:440:in `start'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/lib/omnibus/cli.rb:41:in `execute!'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bundler/gems/omnibus-ce9639e12b50/bin/omnibus:11:in `<top (required)>'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bin/omnibus:23:in `load'
/home/jenkins/workspace/opscode-reporting-build/architecture/x86_64/platform/ubuntu-12.04/project/opscode-reporting/role/builder/vendor/bundle/ruby/2.1.0/bin/omnibus:23:in `<main>'
Build step 'Invoke XShell command' marked build as failure
Archiving artifacts
Recording fingerprints
el-5:
result: SUCCESS
url: http://wilson.ci.chef.co/job/opscode-reporting-build/architecture=x86_64,platform=el-5,project=opscode-reporting,role=builder/97/
duration: 54m44s
el-6:
result: SUCCESS
url: http://wilson.ci.chef.co/job/opscode-reporting-build/architecture=x86_64,platform=el-6,project=opscode-reporting,role=builder/97/
duration: 55m7s
el-7:
result: SUCCESS
url: http://wilson.ci.chef.co/job/opscode-reporting-build/architecture=x86_64,platform=el-7,project=opscode-reporting,role=builder/97/
duration: 34m1s
ubuntu-10.04:
result: SUCCESS
url: http://wilson.ci.chef.co/job/opscode-reporting-build/architecture=x86_64,platform=ubuntu-10.04,project=opscode-reporting,role=builder/97/
duration: 43m15s
opscode-reporting-trigger-nightly-master:
result: SUCCESS
url: http://wilson.ci.chef.co/job/opscode-reporting-trigger-nightly-master/75/
duration: 3s
| 106.290179 | 711 | 0.611995 |
2d58fe175772e3d5eac42a253d2b4eff993018a5 | 10,124 | yml | YAML | docs-ref-autogen/com.microsoft.azure.management.resources.implementation._deployment_operation_inner.yml | rloutlaw/azure-docs-sdk-java | b20f6ff9e535d7750a8660eac4bf321387699111 | [
"CC-BY-4.0",
"MIT"
] | 1 | 2019-01-10T20:59:13.000Z | 2019-01-10T20:59:13.000Z | docs-ref-autogen/com.microsoft.azure.management.resources.implementation._deployment_operation_inner.yml | rloutlaw/azure-docs-sdk-java | b20f6ff9e535d7750a8660eac4bf321387699111 | [
"CC-BY-4.0",
"MIT"
] | null | null | null | docs-ref-autogen/com.microsoft.azure.management.resources.implementation._deployment_operation_inner.yml | rloutlaw/azure-docs-sdk-java | b20f6ff9e535d7750a8660eac4bf321387699111 | [
"CC-BY-4.0",
"MIT"
] | null | null | null | items:
- uid: com.microsoft.azure.management.resources.implementation._deployment_operation_inner
id: _deployment_operation_inner
parent: com.microsoft.azure.management.resources.implementation
children:
- com.microsoft.azure.management.resources.implementation._deployment_operation_inner.id()
- com.microsoft.azure.management.resources.implementation._deployment_operation_inner.operationId()
- com.microsoft.azure.management.resources.implementation._deployment_operation_inner.properties()
- com.microsoft.azure.management.resources.implementation._deployment_operation_inner.withProperties(DeploymentOperationProperties)
href: com.microsoft.azure.management.resources.implementation._deployment_operation_inner.yml
langs:
- java
name: DeploymentOperationInner
nameWithType: DeploymentOperationInner
fullName: com.microsoft.azure.management.resources.implementation.DeploymentOperationInner
type: Class
source:
remote: &o0
path: azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/DeploymentOperationInner.java
branch: master
repo: https://github.com/Azure/azure-sdk-for-java
path: azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/DeploymentOperationInner.java
startLine: 16
package: com.microsoft.azure.management.resources.implementation
summary: >-
<p>
<xref href="com.microsoft.azure.management.resources._deployment" data-throw-if-not-resolved="false"></xref> operation information. </p>
syntax: &o1
content: public class DeploymentOperationInner
inheritance:
- java.lang.Object
- uid: com.microsoft.azure.management.resources.implementation._deployment_operation_inner.id()
id: id()
parent: com.microsoft.azure.management.resources.implementation._deployment_operation_inner
href: com.microsoft.azure.management.resources.implementation._deployment_operation_inner.yml
langs:
- java
name: id()
nameWithType: DeploymentOperationInner.id()
fullName: String com.microsoft.azure.management.resources.implementation.DeploymentOperationInner.id()
overload: com.microsoft.azure.management.resources.implementation._deployment_operation_inner.id*
type: Method
source:
remote: *o0
path: azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/DeploymentOperationInner.java
startLine: 40
package: com.microsoft.azure.management.resources.implementation
summary: >-
<p>Get the id value.</p>
<p></p>
syntax:
content: public String id()
return:
type: "26831127"
description: <p>the id value </p>
- uid: com.microsoft.azure.management.resources.implementation._deployment_operation_inner.operationId()
id: operationId()
parent: com.microsoft.azure.management.resources.implementation._deployment_operation_inner
href: com.microsoft.azure.management.resources.implementation._deployment_operation_inner.yml
langs:
- java
name: operationId()
nameWithType: DeploymentOperationInner.operationId()
fullName: String com.microsoft.azure.management.resources.implementation.DeploymentOperationInner.operationId()
overload: com.microsoft.azure.management.resources.implementation._deployment_operation_inner.operationId*
type: Method
source:
remote: *o0
path: azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/DeploymentOperationInner.java
startLine: 49
package: com.microsoft.azure.management.resources.implementation
summary: >-
<p>Get the operationId value.</p>
<p></p>
syntax:
content: public String operationId()
return:
type: "26831127"
description: <p>the operationId value </p>
- uid: com.microsoft.azure.management.resources.implementation._deployment_operation_inner.properties()
id: properties()
parent: com.microsoft.azure.management.resources.implementation._deployment_operation_inner
href: com.microsoft.azure.management.resources.implementation._deployment_operation_inner.yml
langs:
- java
name: properties()
nameWithType: DeploymentOperationInner.properties()
fullName: DeploymentOperationProperties com.microsoft.azure.management.resources.implementation.DeploymentOperationInner.properties()
overload: com.microsoft.azure.management.resources.implementation._deployment_operation_inner.properties*
type: Method
source:
remote: *o0
path: azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/DeploymentOperationInner.java
startLine: 58
package: com.microsoft.azure.management.resources.implementation
summary: >-
<p>Get the properties value.</p>
<p></p>
syntax:
content: public DeploymentOperationProperties properties()
return:
type: com.microsoft.azure.management.resources._deployment_operation_properties
description: <p>the properties value </p>
- uid: com.microsoft.azure.management.resources.implementation._deployment_operation_inner.withProperties(DeploymentOperationProperties)
id: withProperties(DeploymentOperationProperties)
parent: com.microsoft.azure.management.resources.implementation._deployment_operation_inner
href: com.microsoft.azure.management.resources.implementation._deployment_operation_inner.yml
langs:
- java
name: withProperties(DeploymentOperationProperties properties)
nameWithType: DeploymentOperationInner.withProperties(DeploymentOperationProperties properties)
fullName: DeploymentOperationInner com.microsoft.azure.management.resources.implementation.DeploymentOperationInner.withProperties(DeploymentOperationProperties properties)
overload: com.microsoft.azure.management.resources.implementation._deployment_operation_inner.withProperties*
type: Method
source:
remote: *o0
path: azure-mgmt-resources/src/main/java/com/microsoft/azure/management/resources/implementation/DeploymentOperationInner.java
startLine: 68
package: com.microsoft.azure.management.resources.implementation
summary: >-
<p>Set the properties value.</p>
<p></p>
syntax:
content: public DeploymentOperationInner withProperties(DeploymentOperationProperties properties)
parameters:
- id: properties
type: com.microsoft.azure.management.resources._deployment_operation_properties
description: <p>the properties value to set </p>
return:
type: com.microsoft.azure.management.resources.implementation._deployment_operation_inner
description: <p>the <xref href="com.microsoft.azure.management.resources.implementation._deployment_operation_inner" data-throw-if-not-resolved="false"></xref> object itself. </p>
references:
- uid: "26831127"
spec.java:
- name: String
fullName: String
- uid: com.microsoft.azure.management.resources.implementation._deployment_operation_inner.id*
name: id
nameWithType: DeploymentOperationInner.id
fullName: String com.microsoft.azure.management.resources.implementation.DeploymentOperationInner.id
package: com.microsoft.azure.management.resources.implementation
- uid: com.microsoft.azure.management.resources.implementation._deployment_operation_inner.operationId*
name: operationId
nameWithType: DeploymentOperationInner.operationId
fullName: String com.microsoft.azure.management.resources.implementation.DeploymentOperationInner.operationId
package: com.microsoft.azure.management.resources.implementation
- uid: com.microsoft.azure.management.resources.implementation._deployment_operation_inner.properties*
name: properties
nameWithType: DeploymentOperationInner.properties
fullName: DeploymentOperationProperties com.microsoft.azure.management.resources.implementation.DeploymentOperationInner.properties
package: com.microsoft.azure.management.resources.implementation
- uid: com.microsoft.azure.management.resources.implementation._deployment_operation_inner.withProperties*
name: withProperties
nameWithType: DeploymentOperationInner.withProperties
fullName: DeploymentOperationInner com.microsoft.azure.management.resources.implementation.DeploymentOperationInner.withProperties
package: com.microsoft.azure.management.resources.implementation
- uid: com.microsoft.azure.management.resources._deployment
parent: com.microsoft.azure.management.resources
href: com.microsoft.azure.management.resources._deployment.yml
name: Deployment
nameWithType: Deployment
fullName: com.microsoft.azure.management.resources.Deployment
type: Interface
summary: <p>An immutable client-side representation of an <xref href="com.microsoft.azure.management._azure" data-throw-if-not-resolved="false"></xref> deployment. </p>
syntax:
content: public interface Deployment extends Indexable,Refreshable<Deployment>,Updatable<Deployment.Update>,HasInner<DeploymentExtendedInner>,HasManager<ResourceManager>,HasName
- uid: com.microsoft.azure.management.resources._deployment_operation_properties
parent: com.microsoft.azure.management.resources
href: com.microsoft.azure.management.resources._deployment_operation_properties.yml
name: DeploymentOperationProperties
nameWithType: DeploymentOperationProperties
fullName: com.microsoft.azure.management.resources.DeploymentOperationProperties
type: Class
summary: >-
<p>
<xref href="com.microsoft.azure.management.resources._deployment" data-throw-if-not-resolved="false"></xref> operation properties. </p>
syntax:
content: public class DeploymentOperationProperties
- uid: com.microsoft.azure.management.resources.implementation._deployment_operation_inner
parent: com.microsoft.azure.management.resources.implementation
href: com.microsoft.azure.management.resources.implementation._deployment_operation_inner.yml
name: DeploymentOperationInner
nameWithType: DeploymentOperationInner
fullName: com.microsoft.azure.management.resources.implementation.DeploymentOperationInner
type: Class
summary: >-
<p>
<xref href="com.microsoft.azure.management.resources._deployment" data-throw-if-not-resolved="false"></xref> operation information. </p>
syntax: *o1
| 51.390863 | 185 | 0.81292 |
15a732fa08bebfbfa79d49d7d46eadb1a26886ed | 58 | yaml | YAML | configs/index-list/kurt1277.yaml | itsnebulalol/manifests | b59786b6107ca7555be7713f706d9c2e4a13a327 | [
"MIT"
] | 12 | 2021-11-18T04:48:16.000Z | 2022-02-26T22:58:59.000Z | configs/index-list/kurt1277.yaml | itsnebulalol/manifests | b59786b6107ca7555be7713f706d9c2e4a13a327 | [
"MIT"
] | 5 | 2021-12-20T09:56:55.000Z | 2022-02-22T20:12:13.000Z | configs/index-list/kurt1277.yaml | itsnebulalol/manifests | b59786b6107ca7555be7713f706d9c2e4a13a327 | [
"MIT"
] | 10 | 2021-11-18T21:40:03.000Z | 2022-03-06T01:25:29.000Z | ranking: 3
slug: kurt1277
uri: https://kurt1277.github.io
| 14.5 | 31 | 0.758621 |
84e5177d5e5e4c0b689038b80f9baaad5baa7f88 | 48 | yml | YAML | js-self-profiling/META.yml | meyerweb/wpt | f04261533819893c71289614c03434c06856c13e | [
"BSD-3-Clause"
] | 14,668 | 2015-01-01T01:57:10.000Z | 2022-03-31T23:33:32.000Z | js-self-profiling/META.yml | meyerweb/wpt | f04261533819893c71289614c03434c06856c13e | [
"BSD-3-Clause"
] | 7,642 | 2018-05-28T09:38:03.000Z | 2022-03-31T20:55:48.000Z | js-self-profiling/META.yml | meyerweb/wpt | f04261533819893c71289614c03434c06856c13e | [
"BSD-3-Clause"
] | 5,941 | 2015-01-02T11:32:21.000Z | 2022-03-31T16:35:46.000Z | spec: https://wicg.github.io/js-self-profiling/
| 24 | 47 | 0.75 |
ffcfeb4e9b304b1f21768b16e47981a4e8e8822d | 566 | yml | YAML | _data/comments/soccer/comment-1579238486076.yml | hashtafak/hashtafak.github.io | 73536a9c9a4e4afdf9bce931cd3d9c9417583dc8 | [
"MIT"
] | null | null | null | _data/comments/soccer/comment-1579238486076.yml | hashtafak/hashtafak.github.io | 73536a9c9a4e4afdf9bce931cd3d9c9417583dc8 | [
"MIT"
] | null | null | null | _data/comments/soccer/comment-1579238486076.yml | hashtafak/hashtafak.github.io | 73536a9c9a4e4afdf9bce931cd3d9c9417583dc8 | [
"MIT"
] | null | null | null | _id: 351b79f0-38e9-11ea-a841-7be6bc3108fb
message: "Having read this I believed it was extremely informative.\r\nI appreciate you finding the time and effort to put this informative article together.\r\nI once again find myself spending way too much time both \r\nreading and posting comments. But so what, it was \r\nstill worthwhile!"
name: Karri
email: 0343a1bfac1d043e709a273781c6c26f
url: >-
http://wp01.veiany.md/wp/2020/01/15/%ec%9b%90%ec%a3%bc%ec%b6%9c%ec%9e%a5%ec%97%85%ec%86%8ciamsurewewillbeokaynomatterwhat/
hidden: ''
date: '2020-01-17T05:21:26.076Z'
| 62.888889 | 294 | 0.779152 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.