microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
f379f858be154f970863a066cd8765de6f6f2006

Branches

Tags

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

Clone

HTTPS

Download ZIP

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

20lines · 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;
5188e3fdKirk Pepperdine4 years ago9requires java.logging;
10
8d88dfc6Bruno Borges4 years ago11exports com.microsoft.gctoolkit.sample;
6df51a36David Grieve4 years ago12
d96119e6kabutz4 years ago13exports com.microsoft.gctoolkit.sample.aggregation to
e74e68d3Kirk Pepperdine3 years ago14com.microsoft.gctoolkit.api;
d96119e6kabutz4 years ago15
16provides com.microsoft.gctoolkit.aggregator.Aggregation with
49a86dfbKirk Pepperdine4 years ago17com.microsoft.gctoolkit.sample.aggregation.HeapOccupancyAfterCollectionSummary,
18com.microsoft.gctoolkit.sample.aggregation.PauseTimeSummary,
19com.microsoft.gctoolkit.sample.aggregation.CollectionCycleCountsSummary;
5188e3fdKirk Pepperdine4 years ago20}