microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
8f19eb31f52d636d8f4facec07131a1bbfd7c7a1

Branches

Tags

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

Clone

HTTPS

Download ZIP

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

21lines · 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
16com.microsoft.gctoolkit.vertx;
17
18provides com.microsoft.gctoolkit.aggregator.Aggregation with
e76efc85David Grieve4 years ago19com.microsoft.gctoolkit.sample.aggregation.HeapOccupancyAfterCollectionSummary,
20com.microsoft.gctoolkit.sample.aggregation.PauseTimeSummary;
5188e3fdKirk Pepperdine4 years ago21}