Download JAR files tagged by string with all dependencies
NobleTools from group edu.pitt.dbmi.nlp (version 1.0)
Noble Tools Suite, is a set of Natural Language Processing (NLP) tools and Application Programming Interfaces (API) written in Java for interfacing with ontologies, auto coding text and extracting information from free test. The Noble Tools suite also includes a generic ontology API for interfacing with Web Ontology Language (OWL) files, OBO and BioPortal ontologies and a number of support utilities and methods useful for NLP (e.g. string normalization, ngram and stemming)
Artifact NobleTools
Group edu.pitt.dbmi.nlp
Version 1.0
Last update 14. November 2016
Organization Department of Biomedical Informatics, University of Pittsburgh
URL http://noble-tools.dbmi.pitt.edu
License BSD 3-Clause License
Dependencies amount 3
Dependencies owlapi-distribution, jdbm, javax.servlet-api,
There are maybe transitive dependencies!
Group edu.pitt.dbmi.nlp
Version 1.0
Last update 14. November 2016
Organization Department of Biomedical Informatics, University of Pittsburgh
URL http://noble-tools.dbmi.pitt.edu
License BSD 3-Clause License
Dependencies amount 3
Dependencies owlapi-distribution, jdbm, javax.servlet-api,
There are maybe transitive dependencies!
uadetector-resources from group net.sf.uadetector (version 2014.10)
This package contains a verified version of the data file from http://user-agent-string.info. During the verification process the data are checked for ability to run against the current implementation. The goal is to provide frequently updated resources for detection of user agents without having to release a new implementation.
Group: net.sf.uadetector Artifact: uadetector-resources
Show all versions Show documentation Show source
Show all versions Show documentation Show source
28 downloads
Artifact uadetector-resources
Group net.sf.uadetector
Version 2014.10
Last update 09. November 2014
Organization not specified
URL Not specified
License not specified
Dependencies amount 4
Dependencies uadetector-core, slf4j-api, logback-classic, fest-assert,
There are maybe transitive dependencies!
Group net.sf.uadetector
Version 2014.10
Last update 09. November 2014
Organization not specified
URL Not specified
License not specified
Dependencies amount 4
Dependencies uadetector-core, slf4j-api, logback-classic, fest-assert,
There are maybe transitive dependencies!
EnumToStringForCucumber from group se.comhem.cucumber.annotations (version 1.3)
Processes an enum class annotated with @GenerateCucumberString, producing a new java source file which is also
compiled.
The generated class has a static String field, which is the concatenation of the enum values, with delimiter,
suffix and prefix as specified in the annotation.
These parameters (delimiter, suffix...) can be overridden.
This field can be used in any annotation (but most useful in Cucumber annotations), as it's a compile time
constant value.
Group: se.comhem.cucumber.annotations Artifact: EnumToStringForCucumber
Show documentation Show source
Show documentation Show source
0 downloads
Artifact EnumToStringForCucumber
Group se.comhem.cucumber.annotations
Version 1.3
Last update 02. September 2014
Organization not specified
URL https://github.com/ComHem/EnumToStringForCucumber
License The Apache License, Version 2.0
Dependencies amount 1
Dependencies guava,
There are maybe transitive dependencies!
Group se.comhem.cucumber.annotations
Version 1.3
Last update 02. September 2014
Organization not specified
URL https://github.com/ComHem/EnumToStringForCucumber
License The Apache License, Version 2.0
Dependencies amount 1
Dependencies guava,
There are maybe transitive dependencies!
T4Spring from group org.bitbucket.omargameelsalem (version 1.0)
T4Spring is a code generation tool for Spring MVC apps that creates strongly typed views that eliminate the use of literal strings in many places.
e.g. instead of
@RequestMapping(value = "/", method = RequestMethod.GET)
public String index(ModelMap map)
{
map.addAttribute("msg", "literal strings are no good!!");
return "Home/index";
}
T4Spring lets you write
@RequestMapping(value = "/", method = RequestMethod.GET)
public String index(ModelMap map)
{
map.addAttribute("msg", "Hello T4Spring!!");
return Views.Home.index;
}
Artifact T4Spring
Group org.bitbucket.omargameelsalem
Version 1.0
Last update 01. September 2014
Organization not specified
URL https://bitbucket.org/omar_gameel_salem/t4spring/overview
License MIT License
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
Group org.bitbucket.omargameelsalem
Version 1.0
Last update 01. September 2014
Organization not specified
URL https://bitbucket.org/omar_gameel_salem/t4spring/overview
License MIT License
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
xml-event-limit-generator from group com.github.dweidenfeld (version 1.0.1)
The XmlEventLimitGenerator is a Java library to generate xml strings.
You push documents (or objects, like you want) to the xml generator and the generator proceeds the pushed
document.
While the push sequence it automatically generates an average size of all documents.
The benefit of this library is, that you can generate xml strings with a predefined max size.
This max size relates to the average document size, that is calculated on the fly, so there is no 100%
guarantee,
that no xml string will pass the max size, but there is a factor that can be specified as buffer.
0 downloads
Artifact xml-event-limit-generator
Group com.github.dweidenfeld
Version 1.0.1
Last update 20. May 2014
Organization not specified
URL https://github.com/dweidenfeld/xml-event-limit-generator
License MIT
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
Group com.github.dweidenfeld
Version 1.0.1
Last update 20. May 2014
Organization not specified
URL https://github.com/dweidenfeld/xml-event-limit-generator
License MIT
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
bnfparser from group ca.gobits.bnf (version 1.0)
BNFParser is a Backus-Naur Form Framework (https://en.wikipedia.org/wiki/Backus%E2%80%93Naur_Form) for Java
The BNFParser Framework offers 3 basic services of general interest to developers:
1. String Tokenization via the BNFTokenizerFactory and BNFToken classes
2. Property Key/Value mapper via PropertyParser
3. Text Parsing/Validation via Grammars
Artifact bnfparser
Group ca.gobits.bnf
Version 1.0
Last update 12. August 2013
Organization not specified
URL https://github.com/mfriesen/BNFParserJava
License The Apache Software License, Version 2.0
Dependencies amount 1
Dependencies commons-io,
There are maybe transitive dependencies!
Group ca.gobits.bnf
Version 1.0
Last update 12. August 2013
Organization not specified
URL https://github.com/mfriesen/BNFParserJava
License The Apache Software License, Version 2.0
Dependencies amount 1
Dependencies commons-io,
There are maybe transitive dependencies!
command-line-processing from group il.ac.technion.cs.ssdl (version 1.0.1)
Extracting command line options directly into data members: each field marked with an @External annotation automatically becomes a command line option. Extracting the options values from the command line arguments, i.e., the "String[] args" parameter to main, into the field(s), requires a single method invocation:
Introspector.extract(args, o1, o2, ...)
where o1,o2, ... are the objects in which the fields annotated with @External.
0 downloads
Artifact command-line-processing
Group il.ac.technion.cs.ssdl
Version 1.0.1
Last update 12. March 2012
Organization Department of Computer Science, The Technion
URL http://command-line-processing.googlecode.com
License The Apache Software License, Version 2.0
Dependencies amount 1
Dependencies junit,
There are maybe transitive dependencies!
Group il.ac.technion.cs.ssdl
Version 1.0.1
Last update 12. March 2012
Organization Department of Computer Science, The Technion
URL http://command-line-processing.googlecode.com
License The Apache Software License, Version 2.0
Dependencies amount 1
Dependencies junit,
There are maybe transitive dependencies!
MathParser.org-mXparser from group org.mariuszgromada.math (version 6.0.0)
mXparser is a super easy, rich, fast and highly flexible math expression parser library (parser and evaluator of mathematical expressions / formulas provided as plain text / string). Software delivers easy to use API for JAVA, Android and C# .NET/MONO (Common Language Specification compliant: F#, Visual Basic, C++/CLI). *** If you find the software useful donation or purchase is something you might consider: https://mathparser.org/donate/ *** Online store: https://payhip.com/INFIMA *** Scalar Scientific Calculator, Charts and Scripts, Scalar Lite: https://play.google.com/store/apps/details?id=org.mathparser.scalar.lite *** Scalar Pro: https://play.google.com/store/apps/details?id=org.mathparser.scalar.pro *** ScalarMath.org: https://scalarmath.org/ *** MathSpace.pl: https://mathspace.pl/ ***
Group: org.mariuszgromada.math Artifact: MathParser.org-mXparser
Show all versions Show documentation Show source
Show all versions Show documentation Show source
209 downloads
Artifact MathParser.org-mXparser
Group org.mariuszgromada.math
Version 6.0.0
Last update 19. May 2024
Organization MathParser.org
URL https://mathparser.org/
License DUAL LICENSE
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
Group org.mariuszgromada.math
Version 6.0.0
Last update 19. May 2024
Organization MathParser.org
URL https://mathparser.org/
License DUAL LICENSE
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
MgntUtils from group com.github.michaelgantman (version 1.7.0.1)
Set of various Utils: stacktrace noise filter, String to/from unicode sequence converter, simple Http client JSON parser/serializer,
Silent String parsing to Integer and other numeric types, Parsing String to time intervals with support for time unit suffixes,
JSON parser that provides serialization/deserialization of classes to JSON, Version comparator and Version ranges operations,
Self-throttling binary reader from Http request, File reader, A utility that automatically initiates a Factory with instances of all
classes that implement user provided interface. An infrastructure for writing Scheduled Task classes where time
interval for task execution is provided in humanly readable format (such as "9h" for 9 hours)
Group: com.github.michaelgantman Artifact: MgntUtils
Show all versions Show documentation Show source
Show all versions Show documentation Show source
16 downloads
Artifact MgntUtils
Group com.github.michaelgantman
Version 1.7.0.1
Last update 27. December 2023
Organization not specified
URL https://github.com/michaelgantman/Mgnt
License The MIT License (MIT)
Dependencies amount 7
Dependencies javax.servlet-api, slf4j-api, commons-lang3, jackson-core, jackson-databind, jackson-datatype-jsr310, javax.annotation-api,
There are maybe transitive dependencies!
Group com.github.michaelgantman
Version 1.7.0.1
Last update 27. December 2023
Organization not specified
URL https://github.com/michaelgantman/Mgnt
License The MIT License (MIT)
Dependencies amount 7
Dependencies javax.servlet-api, slf4j-api, commons-lang3, jackson-core, jackson-databind, jackson-datatype-jsr310, javax.annotation-api,
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
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!
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!
Page 114 from 3 (items total 1191)