All Downloads are FREE. Search and download functionalities are using the official Maven repository.

Download JAR files tagged by coverage with all dependencies

Search JAR files by class name

jmockit-coverage from group com.bah.jmockit.com.googlecode.jmockit (version 0.999.25)

JMockit Coverage is a code coverage tool with several metrics (line, path, data) capable of generating HTML reports. It is designed with ease of use in mind, avoiding the need for complex configuration. Instead, smart (but overridable) defaults are employed, such as the selection of which classes to consider for coverage, and where to find sources files for report generation.

Group: com.bah.jmockit.com.googlecode.jmockit Artifact: jmockit-coverage
Show documentation Show source 
 

0 downloads
Artifact jmockit-coverage
Group com.bah.jmockit.com.googlecode.jmockit
Version 0.999.25
Last update 17. January 2014
Organization not specified
URL http://code.google.com/p/jmockit
License MIT LICENSE
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

heatshrink-java from group io.github.markrileybot (version 1.0.1)

# heatshrink-java Java library used to encode/decode [heatshrink](https://github.com/atomicobject/heatshrink) compressed data. ## Building ```bash ./gradlew build ``` ## Gradle dependency See https://search.maven.org/artifact/io.github.markrileybot/heatshrink-java/ ## Usage ### Java library ```java int windowSize = 9; int lookaheadSize = 8; ByteArrayOutputStream baos = new ByteArrayOutputStream(); try(HsOutputStream out = new HsOutputStream(baos, windowSize, lookaheadSize)) { out.write("ABCABCABCABCABCABC".getBytes()); } try(HsInputStream hsi = new HsInputStream(new ByteArrayInutStream(baos.toByteArray()), windowSize, lookaheadSize)) { byte[] res = new byte[512]; int len = hsi.read(res); System.out.println(new String(res, 0, len)); } ``` ### CLI ```bash $ java -jar heatshrink-java-exe.jar [-h] [-e|-d] [-v] [-w SIZE] [-l BITS] [IN_FILE] [OUT_FILE] ``` ## Status [![Build Status](https://github.com/markrileybot/heatshrink-java/actions/workflows/gradle-publish.yml/badge.svg)](https://github.com/markrileybot/heatshrink-java/actions/workflows/gradle-publish.yml) [![Coverage Status](https://coveralls.io/repos/github/markrileybot/heatshrink-java/badge.svg?branch=master)](https://coveralls.io/github/markrileybot/heatshrink-java?branch=master) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.github.markrileybot/geokey/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.github.markrileybot/geokey)

Group: io.github.markrileybot Artifact: heatshrink-java
Show all versions Show documentation Show source 
 

0 downloads
Artifact heatshrink-java
Group io.github.markrileybot
Version 1.0.1
Last update 19. October 2022
Organization not specified
URL https://github.com/markrileybot/heatshrink-java
License Apache License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

aipark-api from group de.aipark.api (version 30.06)

AIPARK offers detailed parking information for more than 1.8 Mio parking areas in Germany with nationwide coverage. Additionally, accurate occupancy predictions are derived using data from a network of more than 5 million smartphones. Use the AIPARK API Explorer application to try out and test the interface. Please send a request via email if you are a developer and require an API key. We'll be in touch with you shortly. This application is provided via a demo backend environment. Please note that API load tests do not reflect the performance of the productive system. Mail: [email protected]

Group: de.aipark.api Artifact: aipark-api
Show all versions Show documentation Show source 
 

0 downloads
Artifact aipark-api
Group de.aipark.api
Version 30.06
Last update 14. March 2019
Organization not specified
URL https://developer.aipark.io/
License The Apache License, Version 2.0
Dependencies amount 8
Dependencies okhttp, converter-jackson, adapter-rxjava, retrofit, jts-core, jackson-databind, jackson-datatype-jts, springfox-swagger2,
There are maybe transitive dependencies!

aiparkandroidsdk from group de.aipark.android.sdk (version 3001)

AIPARK offers detailed parking information for more than 1.8 Mio parking areas in Germany with nationwide coverage. Additionally, accurate occupancy predictions are derived using data from a network of more than 5 million smartphones. Use the AIPARK API Explorer application to try out and test the interface. Please send a request via email if you are a developer and require an API key. We'll be in touch with you shortly. This application is provided via a demo backend environment. Please note that API load tests do not reflect the performance of the productive system. Mail: [email protected]

Group: de.aipark.android.sdk Artifact: aiparkandroidsdk
Show all versions 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact aiparkandroidsdk
Group de.aipark.android.sdk
Version 3001
Last update 02. March 2019
Organization not specified
URL https://github.com/AIPARK-Open-Source/AiparkAndroidSDK
License The Apache Software License, Version 2.0
Dependencies amount 6
Dependencies appcompat-v7, play-services-maps, play-services-location, google-maps-services, aipark-api, rxandroid,
There are maybe transitive dependencies!

quality-test from group net.sf.qualitycheck (version 1.3)

The goal of quality-test is to provide a small Java library for basic code quality checks within unit tests. It is discouraged to use quality-test in production code. The checks provided in this library are designed to be used in unit-tests. The checks and utilities provided in this package check static properties of classes, for example whether classes are marked final or constructors are private. Additionally, there are utils to give additional code coverage for private constructors. Quality-Test often can be used together with Google Reflections (http://code.google.com/p/reflections/) to perform checks such as, assure that every class in package *.dto.* is final or make sure that no class in the package *.controller.* contains any non-final static variables.

Group: net.sf.qualitycheck Artifact: quality-test
Show all versions Show documentation Show source 
 

1 downloads
Artifact quality-test
Group net.sf.qualitycheck
Version 1.3
Last update 01. August 2013
Organization not specified
URL http://qualitycheck.sourceforge.net/modules/quality-test/
License The Apache Software License, Version 2.0
Dependencies amount 11
Dependencies quality-check, jsr305, guava, commons-logging, junit, slf4j-api, slf4j-simple, powermock-module-junit4, powermock-api-easymock, easymock, cglib,
There are maybe transitive dependencies!

geokey from group io.github.markrileybot (version 0.1.0)

# geokey K Dimensional Z-Order curve utils. [![Build Status](https://travis-ci.org/markrileybot/geokey.svg?branch=master)](https://travis-ci.org/markrileybot/geokey) [![Coverage Status](https://coveralls.io/repos/github/markrileybot/geokey/badge.svg?branch=master)](https://coveralls.io/github/markrileybot/geokey?branch=master) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.github.markrileybot/geokey/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.github.markrileybot/geokey) ## Building ./gradlew build ## Gradle dependency See https://search.maven.org/artifact/io.github.markrileybot/geokey/ ## Using ### Use built in keys to make geohashes ```java import org.geokey.GeoKey; // Make a geo hash key String key = new GeoKey().setLatitude(48.669).setLongitude(-4.329).toString(); // "gbsuv7ztqzpts82uzfwq5e1bp" // parse a geo hash key GeoKey gk = new GeoKey("gbsuv7ztqzpts82uzfwq5e1bp"); ``` ### Make a special purpose K-Dimensional key ```java public class GeoTimeKey extends KDKey { private static final KDKeySpec spec = new KDKeySpec.Builder() .addDim(-180, 180, 1) .addDim(-90, 90, 1) .addDim(0, 1L << 62, 1) .setAlphabet(Alphabet.GEO_TIME_HASH) .build(); public GeoTimeKey() { super(spec); } public GeoTimeKey(String s) { super(spec, s); } public GeoTimeKey(byte[] s) { super(spec, s); } public GeoTimeKey setLatitude(double latitude) { set(1, latitude); return this; } public double getLatitude() { return super.get(1); } public GeoTimeKey setLongitude(double longitude) { set(0, longitude); return this; } public double getLongitude() { return super.get(0); } public GeoTimeKey setTime(long time) { set(2, time); return this; } public long getTime() { return (long) get(2); } } ```

Group: io.github.markrileybot Artifact: geokey
Show all versions Show documentation Show source 
 

0 downloads
Artifact geokey
Group io.github.markrileybot
Version 0.1.0
Last update 20. June 2022
Organization not specified
URL https://github.com/markrileybot/geokey
License Apache License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!



Page 44 from 44 (items total 436)


© 2015 - 2024 Weber Informatics LLC | Privacy Policy