组织ID: |
org.hdrhistogram |
项目ID: |
HdrHistogram |
版本: |
1.1.3 |
最后修改时间: |
2019-10-24 05:39:14 |
包类型: |
jar |
标题: |
HdrHistogram |
描述: |
HdrHistogram supports the recording and analyzing sampled data value
counts across a configurable integer value range with configurable value
precision within the range. Value precision is expressed as the number of
significant digits in the value recording, and provides control over value
quantization behavior across the value range and the subsequent value
resolution at any given level. |
相关URL: |
http://hdrhistogram.github.io/HdrHistogram/ |
大小: |
41.40KB |
|
Maven引入代码: |
<dependency>
<groupId>org.hdrhistogram</groupId>
<artifactId>HdrHistogram</artifactId>
<version>1.1.3</version>
</dependency>
|
Gradle引入代码: |
org.hdrhistogram:HdrHistogram:1.1.3
|
下载Jar包: |
|
POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>org.hdrhistogram</groupId>
<artifactId>HdrHistogram</artifactId>
<version>1.1.3</version>
<name>HdrHistogram</name>
<description>HdrHistogram supports the recording and analyzing sampled data value
counts across a configurable integer value range with configurable value
precision within the range. Value precision is expressed as the number of
significant digits in the value recording, and provides control over value
quantization behavior across the value range and the subsequent value
resolution at any given level.</description>
<url>http://hdrhistogram.github.io/HdrHistogram/</url>
<licenses>
<license>
<name>Public Domain, per Creative Commons CC0</name>
<url>http://creativecommons.org/publicdomain/zero/1.0/</url>
<comments>* This code was Written by Gil Tene of Azul Systems, and released to the
* public domain, as explained at http://creativecommons.org/publicdomain/zero/1.0/</comments>
</license>
</licenses>
<developers>
<developer>
<id>giltene</id>
<name>Gil Tene</name>
<url>https://github.com/giltene</url>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/HdrHistogram/HdrHistogram.git</connection>
<developerConnection>scm:git:git@github.com:HdrHistogram/HdrHistogram.git</developerConnection>
<url>scm:git:git://github.com/HdrHistogram/HdrHistogram.git</url>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/HdrHistogram/HdrHistogram/issues</url>
</issueManagement>
<distributionManagement>
<repository>
<id>sonatype-nexus-staging</id>
<name>Nexus Release Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<properties>
<gpg.passphrase>{/d9bIpQ/aBUH+LgtBDD2qScVvU9GquG4B9t37Gh1lZk=}</gpg.passphrase>
<sonatypeOssDistMgmtSnapshotsUrl>https://oss.sonatype.org/content/repositories/snapshots/</sonatypeOssDistMgmtSnapshotsUrl>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>Central Repository</name>
<url>http://repo.maven.apache.org/maven2</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<releases>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>Central Repository</name>
<url>http://repo.maven.apache.org/maven2</url>
</pluginRepository>
</pluginRepositories>
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<scriptSourceDirectory>/Users/gil/IdeaProjects/HdrHistogram/src/main/scripts</scriptSourceDirectory>
<testSourceDirectory>src/test/java</testSourceDirectory>
<outputDirectory>target/classes</outputDirectory>
<testOutputDirectory>target/test-classes</testOutputDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<testResources>
<testResource>
<directory>src/test/resources</directory>
</testResource>
</testResources>
<directory>target</directory>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<extensions>false</extensions>
<inherited>true</inherited>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<extensions>false</extensions>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<extensions>false</extensions>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<extensions>false</extensions>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12.4</version>
<extensions>false</extensions>
<configuration>
<enableAssertions>false</enableAssertions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.2.2</version>
<extensions>false</extensions>
<configuration>
<arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<outputDirectory>target/site</outputDirectory>
</reporting>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
org.HdrHistogram.AbstractHistogram.class
org.HdrHistogram.AbstractHistogramBase.class
org.HdrHistogram.AbstractHistogramIterator.class
org.HdrHistogram.AllValuesIterator.class
org.HdrHistogram.AtomicHistogram.class
org.HdrHistogram.Histogram.class
org.HdrHistogram.HistogramData$1.class
org.HdrHistogram.HistogramData$AllValues.class
org.HdrHistogram.HistogramData$LinearBucketValues.class
org.HdrHistogram.HistogramData$LogarithmicBucketValues.class
org.HdrHistogram.HistogramData$Percentiles.class
org.HdrHistogram.HistogramData$RecordedValues.class
org.HdrHistogram.HistogramData.class
org.HdrHistogram.HistogramIterationValue.class
org.HdrHistogram.HistogramLogReader.class
org.HdrHistogram.HistogramLogWriter.class
org.HdrHistogram.IntHistogram.class
org.HdrHistogram.LinearIterator.class
org.HdrHistogram.LogarithmicIterator.class
org.HdrHistogram.PercentileIterator.class
org.HdrHistogram.RecordedValuesIterator.class
org.HdrHistogram.ShortHistogram.class
org.HdrHistogram.SynchronizedHistogram.class
META-INF/maven/org.hdrhistogram/HdrHistogram/pom.xml
META-INF/maven/org.hdrhistogram/HdrHistogram/pom.properties
|
依赖Jar: |
junit-4.10.jar
/junit/junit/4.10
查看junit所有版本文件
hamcrest-core-1.1.jar
/org.hamcrest/hamcrest-core/1.1
查看hamcrest-core所有版本文件
|