This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Manually: | |
OSGi: | |
- Bundles: None | |
- Packages (142 total / 61 unique / 41 after cleaning the intra-bundle dependencies) | |
com.orientechnologies.common.concur.lock | |
com.orientechnologies.common.concur.resource | |
com.orientechnologies.common.console | |
com.orientechnologies.common.console.annotation | |
com.orientechnologies.common.exception | |
com.orientechnologies.common.io |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# | |
# Copyright (C) 2015-2019 Bitergia | |
# | |
# This program is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation; either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Camel": { | |
"git": [ | |
"https://github.com/apache/camel" | |
], | |
"github": [ | |
"https://github.com/apache/camel" | |
], | |
"meta" : { "title" : "Apache" } | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://localhost:8182/projects: 12 ms | |
http://localhost:8182/projects: 8 ms | |
http://localhost:8182/metrics/p/RocketChat: 30 ms | |
http://localhost:8182/projects/p/RocketChat/m/bugs.cumulativeNewUsers: 17 ms | |
http://localhost:8182/projects/p/RocketChat/m/coreCommittersChurnBar: 23 ms | |
http://localhost:8182/projects/p/RocketChat/m/CeJavaQuartilesHistoric: 16 ms | |
http://localhost:8182/projects/p/RocketChat/m/AHFJavaHistoric: 13 ms | |
http://localhost:8182/projects/p/RocketChat/m/bugs.severity.duplicateBugs.percentages: 34 ms | |
http://localhost:8182/projects/p/RocketChat/m/bugs.severity.sentimentAtThreadBeggining: 15 ms | |
http://localhost:8182/projects/p/RocketChat/m/documentation.sentiment.entries: 4 ms |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
""" | |
Terraform Inventory Script | |
========================== | |
This inventory script generates dynamic inventory by reading Terraform state | |
contents. Servers and groups a defined inside the Terraform state using special | |
resources defined by the Terraform Provider for Ansible. | |
Configuration |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"conditions": [ | |
{ | |
"field": "origin", | |
"value": "/tmp/perceval_mc84igfc/gittest" | |
} | |
], | |
"set_extra_fields": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import subprocess | |
current_directory = os.getcwd() | |
REPO_URL = "https://github.com/chaoss/grimoirelab-perceval" | |
REPOSITORY_NAME = os.path.join(current_directory, REPO_URL.split("/")[-1]) | |
# checkout to commit | |
sha = "076953e95735401b4d9266562f9ae406a30751a0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"conditions": [ | |
{ | |
"field": "author_name", | |
"value": "Valerio Cosentino" | |
} | |
], | |
"date_range": { | |
"field": "grimoire_creation_date", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"query_fields": [ | |
{ | |
"field": "Author_name", | |
"value": "Miguel Ángel Fernández" | |
} | |
], | |
"set_extra_fields": [ | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
BACKUP_FOLDER=backup | |
ELASTICSEARCH=https://admin:admin@localhost:9200 | |
echo "scava-conf-smells" | |
NODE_TLS_REJECT_UNAUTHORIZED=0 elasticdump \ | |
--input=$BACKUP_FOLDER/scava-conf-smells.mapping.json \ | |
--output=$ELASTICSEARCH \ | |
--output-index=scava-conf-smells \ |