microsoft/gctoolkit

Public

mirrored from https://github.com/microsoft/gctoolkitAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
gctoolkit-2.0.5

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

sample/src/main/java/module-info.java

24lines · modeblame

5188e3fdKirk Pepperdine4 years ago1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4/**
5* Contains an Aggregator and an Aggregation
6*/
aa986897Christian Stein4 years ago7module com.microsoft.gctoolkit.sample {
8b6201adChristian Stein4 years ago8requires com.microsoft.gctoolkit.api;
8d88dfc6Bruno Borges4 years ago9requires com.microsoft.gctoolkit.parser;
8b6201adChristian Stein4 years ago10requires com.microsoft.gctoolkit.vertx;
5188e3fdKirk Pepperdine4 years ago11requires java.logging;
12
8d88dfc6Bruno Borges4 years ago13exports com.microsoft.gctoolkit.sample;
6df51a36David Grieve4 years ago14
d96119e6kabutz4 years ago15exports com.microsoft.gctoolkit.sample.aggregation to
49a86dfbKirk Pepperdine4 years ago16com.microsoft.gctoolkit.vertx,
17com.microsoft.gctoolkit.integration;
18exports com.microsoft.gctoolkit.sample.collections;
d96119e6kabutz4 years ago19
20provides com.microsoft.gctoolkit.aggregator.Aggregation with
49a86dfbKirk Pepperdine4 years ago21com.microsoft.gctoolkit.sample.aggregation.HeapOccupancyAfterCollectionSummary,
22com.microsoft.gctoolkit.sample.aggregation.PauseTimeSummary,
23com.microsoft.gctoolkit.sample.aggregation.CollectionCycleCountsSummary;
5188e3fdKirk Pepperdine4 years ago24}