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

Download JAR files tagged by import with all dependencies

Search JAR files by class name

graal-bench from group fr.lirmm.graphik (version 1.0.1)

Group: fr.lirmm.graphik Artifact: graal-bench
Show all versions 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact graal-bench
Group fr.lirmm.graphik
Version 1.0.1
Last update 19. October 2015
Organization not specified
URL Not specified
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

graal-tools from group fr.lirmm.graphik (version 1.0.1)

Group: fr.lirmm.graphik Artifact: graal-tools
Show all versions Show documentation Show source 
 

0 downloads
Artifact graal-tools
Group fr.lirmm.graphik
Version 1.0.1
Last update 19. October 2015
Organization INRIA
URL Not specified
License not specified
Dependencies amount 4
Dependencies graal-core, graal-io-dlgp, jcommander, logback-classic,
There are maybe transitive dependencies!

graal-store-test from group fr.lirmm.graphik (version 1.0.1)

Group: fr.lirmm.graphik Artifact: graal-store-test
Show all versions 
 

0 downloads
Artifact graal-store-test
Group fr.lirmm.graphik
Version 1.0.1
Last update 19. October 2015
Organization not specified
URL Not specified
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

kiabora from group fr.lirmm.graphik (version 0.9.0)

Group: fr.lirmm.graphik Artifact: kiabora
Show all versions Show documentation Show source 
 

0 downloads
Artifact kiabora
Group fr.lirmm.graphik
Version 0.9.0
Last update 21. September 2015
Organization GraphIK (INRIA - LIRMM)
URL Not specified
License not specified
Dependencies amount 7
Dependencies graal-util, graal-core, graal-io-dlgp, graal-rules-analyser, commons-lang3, jcommander, logback-classic,
There are maybe transitive dependencies!

graal-store-api from group fr.lirmm.graphik (version 0.9.0)

Group: fr.lirmm.graphik Artifact: graal-store-api
Show all versions Show documentation Show source 
 

0 downloads
Artifact graal-store-api
Group fr.lirmm.graphik
Version 0.9.0
Last update 21. September 2015
Organization INRIA
URL Not specified
License not specified
Dependencies amount 1
Dependencies graal-core,
There are maybe transitive dependencies!

graal-io-api from group fr.lirmm.graphik (version 0.9.0)

Group: fr.lirmm.graphik Artifact: graal-io-api
Show all versions Show documentation Show source 
 

0 downloads
Artifact graal-io-api
Group fr.lirmm.graphik
Version 0.9.0
Last update 21. September 2015
Organization INRIA
URL Not specified
License not specified
Dependencies amount 2
Dependencies graal-core, graal-util,
There are maybe transitive dependencies!

graal-io-dlgp1 from group fr.lirmm.graphik (version 0.8.7)

Group: fr.lirmm.graphik Artifact: graal-io-dlgp1
Show documentation Show source 
 

0 downloads
Artifact graal-io-dlgp1
Group fr.lirmm.graphik
Version 0.8.7
Last update 03. September 2015
Organization INRIA
URL Not specified
License not specified
Dependencies amount 4
Dependencies graal-core, graal-io-api, dlgp-parser, logback-classic,
There are maybe transitive dependencies!

ujmp from group org.ujmp (version 0.3.0)

The Universal Java Matrix Package (UJMP) is an open source library for dense and sparse matrix computations and linear algebra in Java. In addition to the basic operations like matrix multiplication, matrix inverse or decomposition methods, it also supports visualization, JDBC import/export and many other useful functions such as mean, correlation, standard deviation, mutual information, or the replacement of missing values. It's a swiss army knife for data processing in Java, tailored to machine learning applications.

Group: org.ujmp Artifact: ujmp
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact ujmp
Group org.ujmp
Version 0.3.0
Last update 30. July 2015
Organization Universal Java Matrix Package
URL https://ujmp.org/
License GNU LESSER GENERAL PUBLIC LICENSE
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

degen from group com.peterlavalle (version 1.3.0)

A Maven Mojo to download and "degenerate" non-maven projects into sources and binaries This MOJO is supposed to scrape and "de-generate" a zip file containing jars into a project's generated-sources folder, skipping items provided in the `src/` folder. It is intended to "mavenize-with-changes" an existing project and allow the user (of the Mojo) to replace classes which they do not have the ability/desire to recompile without setting up a full build. It can also be used to import non-maven projects by not changing anything. The itch I wanted to scratch was mostly to port libGDX to Maven, while replacing the native methods on Matrix4, without rebuilding the whole project. In essence - it's an alternative to patching someone else's project.

Group: com.peterlavalle Artifact: degen
Show all versions Show documentation Show source 
 

0 downloads
Artifact degen
Group com.peterlavalle
Version 1.3.0
Last update 28. January 2013
Organization not specified
URL https://github.com/g-pechorin/degen
License GNU AFFERO GENERAL PUBLIC LICENSE
Dependencies amount 3
Dependencies maven-plugin-api, maven-project, guava,
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 56 from 60 (items total 592)


© 2015 - 2024 Weber Informatics LLC | Privacy Policy