组织ID: |
com.googlecode.concurrentlinkedhashmap |
项目ID: |
concurrentlinkedhashmap-lru |
版本: |
1.1_jdk5 |
最后修改时间: |
2019-10-22 23:46:11 |
包类型: |
jar |
标题: |
ConcurrentLinkedHashMap |
描述: |
A high performance version of java.util.LinkedHashMap for use as a software cache.
|
相关URL: |
http://code.google.com/p/concurrentlinkedhashmap |
大小: |
42.41KB |
|
Maven引入代码: |
<dependency>
<groupId>com.googlecode.concurrentlinkedhashmap</groupId>
<artifactId>concurrentlinkedhashmap-lru</artifactId>
<version>1.1_jdk5</version>
</dependency>
|
Gradle引入代码: |
com.googlecode.concurrentlinkedhashmap:concurrentlinkedhashmap-lru:1.1_jdk5
|
下载Jar包: |
|
POM文件内容: |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.googlecode.concurrentlinkedhashmap</groupId>
<artifactId>concurrentlinkedhashmap-lru</artifactId>
<packaging>jar</packaging>
<name>ConcurrentLinkedHashMap</name>
<version>1.1_jdk5</version>
<description>
A high performance version of java.util.LinkedHashMap for use as a software cache.
</description>
<url>http://code.google.com/p/concurrentlinkedhashmap</url>
<licenses>
<license>
<name>Apache</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<url>http://concurrentlinkedhashmap.googlecode.com/svn/tags/concurrentlinkedhashmap-lru-1.1_jdk5</url>
<connection>scm:svn:http://concurrentlinkedhashmap.googlecode.com/svn/tags/concurrentlinkedhashmap-lru-1.1_jdk5</connection>
<developerConnection>scm:svn:https://concurrentlinkedhashmap.googlecode.com/svn/tags/concurrentlinkedhashmap-lru-1.1_jdk5</developerConnection>
</scm>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>3</version>
</parent>
<dependencies>
<dependency>
<groupId>colt</groupId>
<artifactId>colt</artifactId>
<version>1.2.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.2.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>r07</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache-core</artifactId>
<version>2.0.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math</artifactId>
<version>2.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.5.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>5.12.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<directory>build</directory>
<outputDirectory>build/api</outputDirectory>
<finalName>${artifactId}-${version}</finalName>
<testOutputDirectory>build/test</testOutputDirectory>
<sourceDirectory>src/java</sourceDirectory>
<testSourceDirectory>unittest/src/java/com</testSourceDirectory>
<extensions>
<extension>
<groupId>org.jvnet.wagon-svn</groupId>
<artifactId>wagon-svn</artifactId>
<version>RELEASE</version>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.5</version>
<configuration>
<includes>
<include>**/*Test.java</include>
</includes>
<groups>${testng.groups}</groups>
<systemPropertyVariables>
<!-- All tests -->
<test.debugMode>${test.debugMode}</test.debugMode>
<test.exhaustive>${test.exhaustive}</test.exhaustive>
<!-- Efficiency tests -->
<efficiency.maximumCapacity>${efficiency.maximumCapacity}</efficiency.maximumCapacity>
<efficiency.workingSetSize>${efficiency.workingSetSize}</efficiency.workingSetSize>
<efficiency.distribution>${efficiency.distribution}</efficiency.distribution>
<efficiency.distribution.uniform.lower>${efficiency.distribution.uniform.lower}</efficiency.distribution.uniform.lower>
<efficiency.distribution.uniform.upper>${efficiency.distribution.uniform.upper}</efficiency.distribution.uniform.upper>
<efficiency.distribution.exponential.mean>${efficiency.distribution.exponential.mean}</efficiency.distribution.exponential.mean>
<efficiency.distribution.gaussian.mean>${efficiency.distribution.gaussian.mean}</efficiency.distribution.gaussian.mean>
<efficiency.distribution.gaussian.sigma>${efficiency.distribution.gaussian.sigma}</efficiency.distribution.gaussian.sigma>
<efficiency.distribution.gaussian.sigma>${efficiency.distribution.gaussian.sigma}</efficiency.distribution.gaussian.sigma>
<efficiency.distribution.gaussian.sigma>${efficiency.distribution.gaussian.sigma}</efficiency.distribution.gaussian.sigma>
<efficiency.distribution.poisson.mean>${efficiency.distribution.poisson.mean}</efficiency.distribution.poisson.mean>
<efficiency.distribution.zipfian.skew>${efficiency.distribution.zipfian.skew}</efficiency.distribution.zipfian.skew>
<!-- Multi-threaded tests -->
<multiThreaded.maximumCapacity>${multiThreaded.maximumCapacity}</multiThreaded.maximumCapacity>
<multiThreaded.nThreads>${multiThreaded.nThreads}</multiThreaded.nThreads>
<multiThreaded.iterations>${multiThreaded.iterations}</multiThreaded.iterations>
<multiThreaded.timeout>${multiThreaded.timeout}</multiThreaded.timeout>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>1.0-alpha-1</version>
<executions>
<execution>
<phase>initialize</phase>
<goals>
<goal>read-project-properties</goal>
</goals>
<configuration>
<files>
<file>build.properties</file>
</files>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>sourceforge</id>
<url>http://oss.sonatype.org/content/groups/sourceforge/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>maven2-repository.dev.java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.java.net/maven/2/</url>
</repository>
<repository>
<id>Forumarchivebuilder</id>
<url>http://forumarchivebuilder.googlecode.com/svn/repository</url>
</repository>
</repositories>
<!--
<distributionManagement>
<repository>
<uniqueVersion>false</uniqueVersion>
<id>googlecode</id>
<url>svn:https://concurrentlinkedhashmap.googlecode.com/svn/repo</url>
</repository>
</distributionManagement>
-->
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.googlecode.concurrentlinkedhashmap.CapacityLimiter.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$EntryIterator.class
com.googlecode.concurrentlinkedhashmap.EvictionListener.class
com.googlecode.concurrentlinkedhashmap.Weighers$CollectionWeigher.class
com.googlecode.concurrentlinkedhashmap.Weighers$MapWeigher.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$Builder.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$RemovalTask.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$SerializationProxy.class
com.googlecode.concurrentlinkedhashmap.Weighers$SetWeigher.class
com.googlecode.concurrentlinkedhashmap.Weighers$SingletonWeigher.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$SimpleEntry.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$AddTask.class
com.googlecode.concurrentlinkedhashmap.Weighers$ByteArrayWeigher.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$Node.class
com.googlecode.concurrentlinkedhashmap.Weighers$ListWeigher.class
com.googlecode.concurrentlinkedhashmap.ThreadSafe.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$DiscardingListener.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$WeightedCapacityLimiter.class
com.googlecode.concurrentlinkedhashmap.GuardedBy.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$1.class
com.googlecode.concurrentlinkedhashmap.Weighers$IterableWeigher.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$WriteThroughEntry.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$ValueIterator.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$DiscardingQueue.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$UpdateTask.class
com.googlecode.concurrentlinkedhashmap.Weighers.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$KeyIterator.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$Values.class
com.googlecode.concurrentlinkedhashmap.Weigher.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$EntrySet.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$KeySet.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$WeightedValue.class
com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap$RecencyReference.class
META-INF/maven/com.googlecode.concurrentlinkedhashmap/concurrentlinkedhashmap-lru/pom.xml
META-INF/maven/com.googlecode.concurrentlinkedhashmap/concurrentlinkedhashmap-lru/pom.properties
|
依赖Jar: |
colt-1.2.0.jar
/colt/colt/1.2.0
查看colt所有版本文件
commons-collections-3.2.1.jar
/commons-collections/commons-collections/3.2.1
查看commons-collections所有版本文件
commons-lang-2.5.jar
/commons-lang/commons-lang/2.5
查看commons-lang所有版本文件
commons-logging-1.1.1.jar
/commons-logging/commons-logging/1.1.1
查看commons-logging所有版本文件
guava-r07.jar
/com.google.guava/guava/r07
查看guava所有版本文件
ehcache-core-2.0.1.jar
/net.sf.ehcache/ehcache-core/2.0.1
查看ehcache-core所有版本文件
commons-math-2.1.jar
/org.apache.commons/commons-math/2.1
查看commons-math所有版本文件
hamcrest-all-1.2.jar
/org.hamcrest/hamcrest-all/1.2
查看hamcrest-all所有版本文件
slf4j-simple-1.5.11.jar
/org.slf4j/slf4j-simple/1.5.11
查看slf4j-simple所有版本文件
testng-5.12.1.jar
/org.testng/testng/5.12.1
查看testng所有版本文件
|