├── .github ├── release-notes.yml └── workflows │ ├── continuous-integration.yaml │ ├── create-hotfix-branch.yaml │ ├── create-release-branch.yaml │ ├── link-issue.yml │ ├── release-standalone.yaml │ ├── release.yaml │ └── update-gaffer-version.yaml ├── .gitignore ├── LICENSE ├── NOTICES ├── README.md ├── cd ├── check_modules.sh ├── codesigning.asc.enc ├── mvnsettings.xml ├── road-traffic-example │ ├── addOperationsToChain.json │ ├── federatedGraphConfig.json │ ├── federatedStore.properties │ ├── graphConfig.json │ ├── roadTrafficSampleData.csv │ ├── schema │ │ ├── elements.json │ │ └── types.json │ └── store.properties └── updateCopyrightHeaders.sh ├── code-style ├── checkstyle-suppressions.xml ├── checkstyle.xml ├── intellij-style.xml ├── licence-header-java.txt ├── licence-header-pom.txt └── pmd-ruleset.xml ├── findbugs-exclude.xml ├── mini-accumulo-cluster ├── README.md ├── pom.xml └── src │ ├── main │ ├── java │ │ └── uk │ │ │ └── gov │ │ │ └── gchq │ │ │ └── gaffer │ │ │ └── miniaccumulocluster │ │ │ ├── MiniAccumuloClusterController.java │ │ │ ├── MiniAccumuloClusterWithShellController.java │ │ │ └── MiniAccumuloShellController.java │ └── resources │ │ ├── log4j.xml │ │ └── store.properties.template │ └── test │ ├── java │ └── uk │ │ └── gov │ │ └── gchq │ │ └── gaffer │ │ └── miniaccumulocluster │ │ └── MiniAccumuloClusterControllerTest.java │ └── resources │ └── log4j.xml ├── performance-testing ├── README.md ├── performance-testing-accumulo-store │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── uk │ │ │ └── gov │ │ │ └── gchq │ │ │ └── gaffer │ │ │ └── accumulostore │ │ │ └── performancetesting │ │ │ └── ingest │ │ │ ├── AccumuloElementIngestTest.java │ │ │ ├── AccumuloElementIngestTestProperties.java │ │ │ ├── BytesWritableElementGenerator.java │ │ │ ├── BytesWritableMapperGenerator.java │ │ │ └── SequenceFileJobInitialiser.java │ │ └── test │ │ ├── java │ │ └── uk │ │ │ └── gov │ │ │ └── gchq │ │ │ └── gaffer │ │ │ └── accumulostore │ │ │ └── performancetesting │ │ │ └── ingest │ │ │ └── TestAccumuloStoreRandomElementIngestTest.java │ │ └── resources │ │ └── log4j.xml ├── performance-testing-aws │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── uk │ │ │ │ └── gov │ │ │ │ └── gchq │ │ │ │ └── gaffer │ │ │ │ └── performancetesting │ │ │ │ └── aws │ │ │ │ ├── AwsEmrUtils.java │ │ │ │ ├── CloudWatchMetricsListener.java │ │ │ │ └── PublishAccumuloMetricsToCloudWatch.java │ │ └── resources │ │ │ └── log4j.xml │ │ └── test │ │ └── resources │ │ └── log4j.xml ├── performance-testing-core │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── uk │ │ │ └── gov │ │ │ └── gchq │ │ │ └── gaffer │ │ │ └── performancetesting │ │ │ ├── FileWriterMetricsListener.java │ │ │ ├── Metrics.java │ │ │ ├── MetricsListener.java │ │ │ ├── TestProperties.java │ │ │ ├── ingest │ │ │ ├── ElementIngestTest.java │ │ │ ├── ElementIngestTestProperties.java │ │ │ └── IngestMetrics.java │ │ │ └── query │ │ │ ├── QueryMetrics.java │ │ │ ├── QueryTest.java │ │ │ └── QueryTestProperties.java │ │ └── test │ │ ├── java │ │ └── uk │ │ │ └── gov │ │ │ └── gchq │ │ │ └── gaffer │ │ │ └── performancetesting │ │ │ └── ingest │ │ │ ├── TestElementIngestTest.java │ │ │ └── TestQueryTest.java │ │ └── resources │ │ └── log4j.xml └── pom.xml ├── pom.xml ├── python-shell ├── LICENSE ├── README.md ├── __init__.py ├── docs │ ├── Makefile │ ├── make.bat │ └── source │ │ ├── conf.py │ │ ├── gafferpy.client.rst │ │ ├── gafferpy.generated_api.rst │ │ ├── gafferpy.rst │ │ ├── index.rst │ │ └── modules.rst ├── requirements.txt ├── setup.cfg ├── setup.py └── src │ ├── __init__.py │ ├── fishbowl │ ├── README.md │ ├── __init__.py │ ├── fishbowl.py │ └── templates │ │ ├── base.py.j2 │ │ ├── config.py.j2 │ │ ├── functions.py.j2 │ │ └── operations.py.j2 │ ├── gafferpy │ ├── __init__.py │ ├── client │ │ ├── __init__.py │ │ ├── base_client.py │ │ ├── pki_client.py │ │ ├── requests_client.py │ │ └── urllib_client.py │ ├── fromJson.py │ ├── gaffer.py │ ├── gaffer_binaryoperators.py │ ├── gaffer_config.py │ ├── gaffer_connector.py │ ├── gaffer_connector_pki.py │ ├── gaffer_core.py │ ├── gaffer_functions.py │ ├── gaffer_operations.py │ ├── gaffer_predicates.py │ ├── gaffer_types.py │ └── generated_api │ │ ├── __init__.py │ │ ├── binary_operators.py │ │ ├── config.py │ │ ├── functions.py │ │ ├── operations.py │ │ └── predicates.py │ ├── gafferpy_examples │ ├── Gaffer-Python-Demo.ipynb │ ├── __init__.py │ ├── example.py │ ├── example_map.py │ ├── example_map_pki.py │ └── example_pki.py │ ├── generate.py │ └── test │ ├── __init__.py │ ├── test_connector.py │ ├── test_example.py │ ├── test_example_map.py │ ├── test_gaffer_functions.py │ ├── test_gaffer_functions_it.py │ ├── test_gaffer_operations.py │ ├── test_gaffer_operations_it.py │ ├── test_gaffer_predicates.py │ ├── test_gaffer_predicates_it.py │ └── test_json_converter.py └── random-element-generation ├── README.md ├── pom.xml └── src ├── main ├── java │ └── uk │ │ └── gov │ │ └── gchq │ │ └── gaffer │ │ └── randomelementgeneration │ │ ├── Constants.java │ │ ├── cache │ │ ├── Cache.java │ │ ├── PreferentialAttachmentCache.java │ │ └── ProbabilityGenerator.java │ │ ├── generator │ │ └── ElementGeneratorFromSupplier.java │ │ └── supplier │ │ ├── EdgeSeedSupplier.java │ │ ├── ElementSeedSupplier.java │ │ ├── ElementsSupplier.java │ │ ├── ElementsSupplierWithRepeats.java │ │ ├── EntitySeedSupplier.java │ │ └── RmatElementSupplier.java └── resources │ ├── accumuloStore.properties │ ├── log4j.xml │ ├── randomIngestTest.properties │ └── schema │ ├── elements.json │ └── types.json └── test ├── java └── uk │ └── gov │ └── gchq │ └── gaffer │ └── randomelementgeneration │ └── cache │ ├── TestPreferentialAttachmentCache.java │ └── TestProbabilityGenerator.java └── resources └── log4j.xml /.github/release-notes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/.github/release-notes.yml -------------------------------------------------------------------------------- /.github/workflows/continuous-integration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/.github/workflows/continuous-integration.yaml -------------------------------------------------------------------------------- /.github/workflows/create-hotfix-branch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/.github/workflows/create-hotfix-branch.yaml -------------------------------------------------------------------------------- /.github/workflows/create-release-branch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/.github/workflows/create-release-branch.yaml -------------------------------------------------------------------------------- /.github/workflows/link-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/.github/workflows/link-issue.yml -------------------------------------------------------------------------------- /.github/workflows/release-standalone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/.github/workflows/release-standalone.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/update-gaffer-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/.github/workflows/update-gaffer-version.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/NOTICES -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/README.md -------------------------------------------------------------------------------- /cd/check_modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/cd/check_modules.sh -------------------------------------------------------------------------------- /cd/codesigning.asc.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/cd/codesigning.asc.enc -------------------------------------------------------------------------------- /cd/mvnsettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/cd/mvnsettings.xml -------------------------------------------------------------------------------- /cd/road-traffic-example/addOperationsToChain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/cd/road-traffic-example/addOperationsToChain.json -------------------------------------------------------------------------------- /cd/road-traffic-example/federatedGraphConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/cd/road-traffic-example/federatedGraphConfig.json -------------------------------------------------------------------------------- /cd/road-traffic-example/federatedStore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/cd/road-traffic-example/federatedStore.properties -------------------------------------------------------------------------------- /cd/road-traffic-example/graphConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/cd/road-traffic-example/graphConfig.json -------------------------------------------------------------------------------- /cd/road-traffic-example/roadTrafficSampleData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/cd/road-traffic-example/roadTrafficSampleData.csv -------------------------------------------------------------------------------- /cd/road-traffic-example/schema/elements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/cd/road-traffic-example/schema/elements.json -------------------------------------------------------------------------------- /cd/road-traffic-example/schema/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/cd/road-traffic-example/schema/types.json -------------------------------------------------------------------------------- /cd/road-traffic-example/store.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/cd/road-traffic-example/store.properties -------------------------------------------------------------------------------- /cd/updateCopyrightHeaders.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/cd/updateCopyrightHeaders.sh -------------------------------------------------------------------------------- /code-style/checkstyle-suppressions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/code-style/checkstyle-suppressions.xml -------------------------------------------------------------------------------- /code-style/checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/code-style/checkstyle.xml -------------------------------------------------------------------------------- /code-style/intellij-style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/code-style/intellij-style.xml -------------------------------------------------------------------------------- /code-style/licence-header-java.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/code-style/licence-header-java.txt -------------------------------------------------------------------------------- /code-style/licence-header-pom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/code-style/licence-header-pom.txt -------------------------------------------------------------------------------- /code-style/pmd-ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/code-style/pmd-ruleset.xml -------------------------------------------------------------------------------- /findbugs-exclude.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/findbugs-exclude.xml -------------------------------------------------------------------------------- /mini-accumulo-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/mini-accumulo-cluster/README.md -------------------------------------------------------------------------------- /mini-accumulo-cluster/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/mini-accumulo-cluster/pom.xml -------------------------------------------------------------------------------- /mini-accumulo-cluster/src/main/java/uk/gov/gchq/gaffer/miniaccumulocluster/MiniAccumuloClusterController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/mini-accumulo-cluster/src/main/java/uk/gov/gchq/gaffer/miniaccumulocluster/MiniAccumuloClusterController.java -------------------------------------------------------------------------------- /mini-accumulo-cluster/src/main/java/uk/gov/gchq/gaffer/miniaccumulocluster/MiniAccumuloClusterWithShellController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/mini-accumulo-cluster/src/main/java/uk/gov/gchq/gaffer/miniaccumulocluster/MiniAccumuloClusterWithShellController.java -------------------------------------------------------------------------------- /mini-accumulo-cluster/src/main/java/uk/gov/gchq/gaffer/miniaccumulocluster/MiniAccumuloShellController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/mini-accumulo-cluster/src/main/java/uk/gov/gchq/gaffer/miniaccumulocluster/MiniAccumuloShellController.java -------------------------------------------------------------------------------- /mini-accumulo-cluster/src/main/resources/log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/mini-accumulo-cluster/src/main/resources/log4j.xml -------------------------------------------------------------------------------- /mini-accumulo-cluster/src/main/resources/store.properties.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/mini-accumulo-cluster/src/main/resources/store.properties.template -------------------------------------------------------------------------------- /mini-accumulo-cluster/src/test/java/uk/gov/gchq/gaffer/miniaccumulocluster/MiniAccumuloClusterControllerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/mini-accumulo-cluster/src/test/java/uk/gov/gchq/gaffer/miniaccumulocluster/MiniAccumuloClusterControllerTest.java -------------------------------------------------------------------------------- /mini-accumulo-cluster/src/test/resources/log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/mini-accumulo-cluster/src/test/resources/log4j.xml -------------------------------------------------------------------------------- /performance-testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/README.md -------------------------------------------------------------------------------- /performance-testing/performance-testing-accumulo-store/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/performance-testing-accumulo-store/pom.xml -------------------------------------------------------------------------------- /performance-testing/performance-testing-accumulo-store/src/main/java/uk/gov/gchq/gaffer/accumulostore/performancetesting/ingest/AccumuloElementIngestTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/performance-testing-accumulo-store/src/main/java/uk/gov/gchq/gaffer/accumulostore/performancetesting/ingest/AccumuloElementIngestTest.java -------------------------------------------------------------------------------- /performance-testing/performance-testing-accumulo-store/src/main/java/uk/gov/gchq/gaffer/accumulostore/performancetesting/ingest/AccumuloElementIngestTestProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/performance-testing-accumulo-store/src/main/java/uk/gov/gchq/gaffer/accumulostore/performancetesting/ingest/AccumuloElementIngestTestProperties.java -------------------------------------------------------------------------------- /performance-testing/performance-testing-accumulo-store/src/main/java/uk/gov/gchq/gaffer/accumulostore/performancetesting/ingest/BytesWritableElementGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/performance-testing-accumulo-store/src/main/java/uk/gov/gchq/gaffer/accumulostore/performancetesting/ingest/BytesWritableElementGenerator.java -------------------------------------------------------------------------------- /performance-testing/performance-testing-accumulo-store/src/main/java/uk/gov/gchq/gaffer/accumulostore/performancetesting/ingest/BytesWritableMapperGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/performance-testing-accumulo-store/src/main/java/uk/gov/gchq/gaffer/accumulostore/performancetesting/ingest/BytesWritableMapperGenerator.java -------------------------------------------------------------------------------- /performance-testing/performance-testing-accumulo-store/src/main/java/uk/gov/gchq/gaffer/accumulostore/performancetesting/ingest/SequenceFileJobInitialiser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/performance-testing-accumulo-store/src/main/java/uk/gov/gchq/gaffer/accumulostore/performancetesting/ingest/SequenceFileJobInitialiser.java -------------------------------------------------------------------------------- /performance-testing/performance-testing-accumulo-store/src/test/java/uk/gov/gchq/gaffer/accumulostore/performancetesting/ingest/TestAccumuloStoreRandomElementIngestTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/performance-testing-accumulo-store/src/test/java/uk/gov/gchq/gaffer/accumulostore/performancetesting/ingest/TestAccumuloStoreRandomElementIngestTest.java -------------------------------------------------------------------------------- /performance-testing/performance-testing-accumulo-store/src/test/resources/log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/performance-testing-accumulo-store/src/test/resources/log4j.xml -------------------------------------------------------------------------------- /performance-testing/performance-testing-aws/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/performance-testing-aws/pom.xml -------------------------------------------------------------------------------- /performance-testing/performance-testing-aws/src/main/java/uk/gov/gchq/gaffer/performancetesting/aws/AwsEmrUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/performance-testing-aws/src/main/java/uk/gov/gchq/gaffer/performancetesting/aws/AwsEmrUtils.java -------------------------------------------------------------------------------- /performance-testing/performance-testing-aws/src/main/java/uk/gov/gchq/gaffer/performancetesting/aws/CloudWatchMetricsListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/performance-testing-aws/src/main/java/uk/gov/gchq/gaffer/performancetesting/aws/CloudWatchMetricsListener.java -------------------------------------------------------------------------------- /performance-testing/performance-testing-aws/src/main/java/uk/gov/gchq/gaffer/performancetesting/aws/PublishAccumuloMetricsToCloudWatch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/performance-testing-aws/src/main/java/uk/gov/gchq/gaffer/performancetesting/aws/PublishAccumuloMetricsToCloudWatch.java -------------------------------------------------------------------------------- /performance-testing/performance-testing-aws/src/main/resources/log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/performance-testing-aws/src/main/resources/log4j.xml -------------------------------------------------------------------------------- /performance-testing/performance-testing-aws/src/test/resources/log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/performance-testing-aws/src/test/resources/log4j.xml -------------------------------------------------------------------------------- /performance-testing/performance-testing-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/performance-testing-core/pom.xml -------------------------------------------------------------------------------- /performance-testing/performance-testing-core/src/main/java/uk/gov/gchq/gaffer/performancetesting/FileWriterMetricsListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/performance-testing-core/src/main/java/uk/gov/gchq/gaffer/performancetesting/FileWriterMetricsListener.java -------------------------------------------------------------------------------- /performance-testing/performance-testing-core/src/main/java/uk/gov/gchq/gaffer/performancetesting/Metrics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/performance-testing-core/src/main/java/uk/gov/gchq/gaffer/performancetesting/Metrics.java -------------------------------------------------------------------------------- /performance-testing/performance-testing-core/src/main/java/uk/gov/gchq/gaffer/performancetesting/MetricsListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/performance-testing-core/src/main/java/uk/gov/gchq/gaffer/performancetesting/MetricsListener.java -------------------------------------------------------------------------------- /performance-testing/performance-testing-core/src/main/java/uk/gov/gchq/gaffer/performancetesting/TestProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/performance-testing-core/src/main/java/uk/gov/gchq/gaffer/performancetesting/TestProperties.java -------------------------------------------------------------------------------- /performance-testing/performance-testing-core/src/main/java/uk/gov/gchq/gaffer/performancetesting/ingest/ElementIngestTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/performance-testing-core/src/main/java/uk/gov/gchq/gaffer/performancetesting/ingest/ElementIngestTest.java -------------------------------------------------------------------------------- /performance-testing/performance-testing-core/src/main/java/uk/gov/gchq/gaffer/performancetesting/ingest/ElementIngestTestProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/performance-testing-core/src/main/java/uk/gov/gchq/gaffer/performancetesting/ingest/ElementIngestTestProperties.java -------------------------------------------------------------------------------- /performance-testing/performance-testing-core/src/main/java/uk/gov/gchq/gaffer/performancetesting/ingest/IngestMetrics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/performance-testing-core/src/main/java/uk/gov/gchq/gaffer/performancetesting/ingest/IngestMetrics.java -------------------------------------------------------------------------------- /performance-testing/performance-testing-core/src/main/java/uk/gov/gchq/gaffer/performancetesting/query/QueryMetrics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/performance-testing-core/src/main/java/uk/gov/gchq/gaffer/performancetesting/query/QueryMetrics.java -------------------------------------------------------------------------------- /performance-testing/performance-testing-core/src/main/java/uk/gov/gchq/gaffer/performancetesting/query/QueryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/performance-testing-core/src/main/java/uk/gov/gchq/gaffer/performancetesting/query/QueryTest.java -------------------------------------------------------------------------------- /performance-testing/performance-testing-core/src/main/java/uk/gov/gchq/gaffer/performancetesting/query/QueryTestProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/performance-testing-core/src/main/java/uk/gov/gchq/gaffer/performancetesting/query/QueryTestProperties.java -------------------------------------------------------------------------------- /performance-testing/performance-testing-core/src/test/java/uk/gov/gchq/gaffer/performancetesting/ingest/TestElementIngestTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/performance-testing-core/src/test/java/uk/gov/gchq/gaffer/performancetesting/ingest/TestElementIngestTest.java -------------------------------------------------------------------------------- /performance-testing/performance-testing-core/src/test/java/uk/gov/gchq/gaffer/performancetesting/ingest/TestQueryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/performance-testing-core/src/test/java/uk/gov/gchq/gaffer/performancetesting/ingest/TestQueryTest.java -------------------------------------------------------------------------------- /performance-testing/performance-testing-core/src/test/resources/log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/performance-testing-core/src/test/resources/log4j.xml -------------------------------------------------------------------------------- /performance-testing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/performance-testing/pom.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/pom.xml -------------------------------------------------------------------------------- /python-shell/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/LICENSE -------------------------------------------------------------------------------- /python-shell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/README.md -------------------------------------------------------------------------------- /python-shell/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/__init__.py -------------------------------------------------------------------------------- /python-shell/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/docs/Makefile -------------------------------------------------------------------------------- /python-shell/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/docs/make.bat -------------------------------------------------------------------------------- /python-shell/docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/docs/source/conf.py -------------------------------------------------------------------------------- /python-shell/docs/source/gafferpy.client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/docs/source/gafferpy.client.rst -------------------------------------------------------------------------------- /python-shell/docs/source/gafferpy.generated_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/docs/source/gafferpy.generated_api.rst -------------------------------------------------------------------------------- /python-shell/docs/source/gafferpy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/docs/source/gafferpy.rst -------------------------------------------------------------------------------- /python-shell/docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/docs/source/index.rst -------------------------------------------------------------------------------- /python-shell/docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/docs/source/modules.rst -------------------------------------------------------------------------------- /python-shell/requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.31.0 -------------------------------------------------------------------------------- /python-shell/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/setup.cfg -------------------------------------------------------------------------------- /python-shell/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/setup.py -------------------------------------------------------------------------------- /python-shell/src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/__init__.py -------------------------------------------------------------------------------- /python-shell/src/fishbowl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/fishbowl/README.md -------------------------------------------------------------------------------- /python-shell/src/fishbowl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/fishbowl/__init__.py -------------------------------------------------------------------------------- /python-shell/src/fishbowl/fishbowl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/fishbowl/fishbowl.py -------------------------------------------------------------------------------- /python-shell/src/fishbowl/templates/base.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/fishbowl/templates/base.py.j2 -------------------------------------------------------------------------------- /python-shell/src/fishbowl/templates/config.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/fishbowl/templates/config.py.j2 -------------------------------------------------------------------------------- /python-shell/src/fishbowl/templates/functions.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/fishbowl/templates/functions.py.j2 -------------------------------------------------------------------------------- /python-shell/src/fishbowl/templates/operations.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/fishbowl/templates/operations.py.j2 -------------------------------------------------------------------------------- /python-shell/src/gafferpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy/__init__.py -------------------------------------------------------------------------------- /python-shell/src/gafferpy/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy/client/__init__.py -------------------------------------------------------------------------------- /python-shell/src/gafferpy/client/base_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy/client/base_client.py -------------------------------------------------------------------------------- /python-shell/src/gafferpy/client/pki_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy/client/pki_client.py -------------------------------------------------------------------------------- /python-shell/src/gafferpy/client/requests_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy/client/requests_client.py -------------------------------------------------------------------------------- /python-shell/src/gafferpy/client/urllib_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy/client/urllib_client.py -------------------------------------------------------------------------------- /python-shell/src/gafferpy/fromJson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy/fromJson.py -------------------------------------------------------------------------------- /python-shell/src/gafferpy/gaffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy/gaffer.py -------------------------------------------------------------------------------- /python-shell/src/gafferpy/gaffer_binaryoperators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy/gaffer_binaryoperators.py -------------------------------------------------------------------------------- /python-shell/src/gafferpy/gaffer_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy/gaffer_config.py -------------------------------------------------------------------------------- /python-shell/src/gafferpy/gaffer_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy/gaffer_connector.py -------------------------------------------------------------------------------- /python-shell/src/gafferpy/gaffer_connector_pki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy/gaffer_connector_pki.py -------------------------------------------------------------------------------- /python-shell/src/gafferpy/gaffer_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy/gaffer_core.py -------------------------------------------------------------------------------- /python-shell/src/gafferpy/gaffer_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy/gaffer_functions.py -------------------------------------------------------------------------------- /python-shell/src/gafferpy/gaffer_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy/gaffer_operations.py -------------------------------------------------------------------------------- /python-shell/src/gafferpy/gaffer_predicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy/gaffer_predicates.py -------------------------------------------------------------------------------- /python-shell/src/gafferpy/gaffer_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy/gaffer_types.py -------------------------------------------------------------------------------- /python-shell/src/gafferpy/generated_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy/generated_api/__init__.py -------------------------------------------------------------------------------- /python-shell/src/gafferpy/generated_api/binary_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy/generated_api/binary_operators.py -------------------------------------------------------------------------------- /python-shell/src/gafferpy/generated_api/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy/generated_api/config.py -------------------------------------------------------------------------------- /python-shell/src/gafferpy/generated_api/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy/generated_api/functions.py -------------------------------------------------------------------------------- /python-shell/src/gafferpy/generated_api/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy/generated_api/operations.py -------------------------------------------------------------------------------- /python-shell/src/gafferpy/generated_api/predicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy/generated_api/predicates.py -------------------------------------------------------------------------------- /python-shell/src/gafferpy_examples/Gaffer-Python-Demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy_examples/Gaffer-Python-Demo.ipynb -------------------------------------------------------------------------------- /python-shell/src/gafferpy_examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy_examples/__init__.py -------------------------------------------------------------------------------- /python-shell/src/gafferpy_examples/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy_examples/example.py -------------------------------------------------------------------------------- /python-shell/src/gafferpy_examples/example_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy_examples/example_map.py -------------------------------------------------------------------------------- /python-shell/src/gafferpy_examples/example_map_pki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy_examples/example_map_pki.py -------------------------------------------------------------------------------- /python-shell/src/gafferpy_examples/example_pki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/gafferpy_examples/example_pki.py -------------------------------------------------------------------------------- /python-shell/src/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/generate.py -------------------------------------------------------------------------------- /python-shell/src/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/test/__init__.py -------------------------------------------------------------------------------- /python-shell/src/test/test_connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/test/test_connector.py -------------------------------------------------------------------------------- /python-shell/src/test/test_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/test/test_example.py -------------------------------------------------------------------------------- /python-shell/src/test/test_example_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/test/test_example_map.py -------------------------------------------------------------------------------- /python-shell/src/test/test_gaffer_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/test/test_gaffer_functions.py -------------------------------------------------------------------------------- /python-shell/src/test/test_gaffer_functions_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/test/test_gaffer_functions_it.py -------------------------------------------------------------------------------- /python-shell/src/test/test_gaffer_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/test/test_gaffer_operations.py -------------------------------------------------------------------------------- /python-shell/src/test/test_gaffer_operations_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/test/test_gaffer_operations_it.py -------------------------------------------------------------------------------- /python-shell/src/test/test_gaffer_predicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/test/test_gaffer_predicates.py -------------------------------------------------------------------------------- /python-shell/src/test/test_gaffer_predicates_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/test/test_gaffer_predicates_it.py -------------------------------------------------------------------------------- /python-shell/src/test/test_json_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/python-shell/src/test/test_json_converter.py -------------------------------------------------------------------------------- /random-element-generation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/random-element-generation/README.md -------------------------------------------------------------------------------- /random-element-generation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/random-element-generation/pom.xml -------------------------------------------------------------------------------- /random-element-generation/src/main/java/uk/gov/gchq/gaffer/randomelementgeneration/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/random-element-generation/src/main/java/uk/gov/gchq/gaffer/randomelementgeneration/Constants.java -------------------------------------------------------------------------------- /random-element-generation/src/main/java/uk/gov/gchq/gaffer/randomelementgeneration/cache/Cache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/random-element-generation/src/main/java/uk/gov/gchq/gaffer/randomelementgeneration/cache/Cache.java -------------------------------------------------------------------------------- /random-element-generation/src/main/java/uk/gov/gchq/gaffer/randomelementgeneration/cache/PreferentialAttachmentCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/random-element-generation/src/main/java/uk/gov/gchq/gaffer/randomelementgeneration/cache/PreferentialAttachmentCache.java -------------------------------------------------------------------------------- /random-element-generation/src/main/java/uk/gov/gchq/gaffer/randomelementgeneration/cache/ProbabilityGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/random-element-generation/src/main/java/uk/gov/gchq/gaffer/randomelementgeneration/cache/ProbabilityGenerator.java -------------------------------------------------------------------------------- /random-element-generation/src/main/java/uk/gov/gchq/gaffer/randomelementgeneration/generator/ElementGeneratorFromSupplier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/random-element-generation/src/main/java/uk/gov/gchq/gaffer/randomelementgeneration/generator/ElementGeneratorFromSupplier.java -------------------------------------------------------------------------------- /random-element-generation/src/main/java/uk/gov/gchq/gaffer/randomelementgeneration/supplier/EdgeSeedSupplier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/random-element-generation/src/main/java/uk/gov/gchq/gaffer/randomelementgeneration/supplier/EdgeSeedSupplier.java -------------------------------------------------------------------------------- /random-element-generation/src/main/java/uk/gov/gchq/gaffer/randomelementgeneration/supplier/ElementSeedSupplier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/random-element-generation/src/main/java/uk/gov/gchq/gaffer/randomelementgeneration/supplier/ElementSeedSupplier.java -------------------------------------------------------------------------------- /random-element-generation/src/main/java/uk/gov/gchq/gaffer/randomelementgeneration/supplier/ElementsSupplier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/random-element-generation/src/main/java/uk/gov/gchq/gaffer/randomelementgeneration/supplier/ElementsSupplier.java -------------------------------------------------------------------------------- /random-element-generation/src/main/java/uk/gov/gchq/gaffer/randomelementgeneration/supplier/ElementsSupplierWithRepeats.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/random-element-generation/src/main/java/uk/gov/gchq/gaffer/randomelementgeneration/supplier/ElementsSupplierWithRepeats.java -------------------------------------------------------------------------------- /random-element-generation/src/main/java/uk/gov/gchq/gaffer/randomelementgeneration/supplier/EntitySeedSupplier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/random-element-generation/src/main/java/uk/gov/gchq/gaffer/randomelementgeneration/supplier/EntitySeedSupplier.java -------------------------------------------------------------------------------- /random-element-generation/src/main/java/uk/gov/gchq/gaffer/randomelementgeneration/supplier/RmatElementSupplier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/random-element-generation/src/main/java/uk/gov/gchq/gaffer/randomelementgeneration/supplier/RmatElementSupplier.java -------------------------------------------------------------------------------- /random-element-generation/src/main/resources/accumuloStore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/random-element-generation/src/main/resources/accumuloStore.properties -------------------------------------------------------------------------------- /random-element-generation/src/main/resources/log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/random-element-generation/src/main/resources/log4j.xml -------------------------------------------------------------------------------- /random-element-generation/src/main/resources/randomIngestTest.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/random-element-generation/src/main/resources/randomIngestTest.properties -------------------------------------------------------------------------------- /random-element-generation/src/main/resources/schema/elements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/random-element-generation/src/main/resources/schema/elements.json -------------------------------------------------------------------------------- /random-element-generation/src/main/resources/schema/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/random-element-generation/src/main/resources/schema/types.json -------------------------------------------------------------------------------- /random-element-generation/src/test/java/uk/gov/gchq/gaffer/randomelementgeneration/cache/TestPreferentialAttachmentCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/random-element-generation/src/test/java/uk/gov/gchq/gaffer/randomelementgeneration/cache/TestPreferentialAttachmentCache.java -------------------------------------------------------------------------------- /random-element-generation/src/test/java/uk/gov/gchq/gaffer/randomelementgeneration/cache/TestProbabilityGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/random-element-generation/src/test/java/uk/gov/gchq/gaffer/randomelementgeneration/cache/TestProbabilityGenerator.java -------------------------------------------------------------------------------- /random-element-generation/src/test/resources/log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gchq/gaffer-tools/HEAD/random-element-generation/src/test/resources/log4j.xml --------------------------------------------------------------------------------