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

Download JAR files tagged by instance with all dependencies

Search JAR files by class name

generator from group org.jaxsb (version 3.0.0)

The JAX-SB Generator is a comprehensive framework to facilitate the use of XML in software languages such as Java. This framework intends to provide tools that will allow a developer to easily integrate XML interoperability, bind XML Schemas, and analyze XML Schemas for use with any software. Currently there is only one language and one application that is supported: XML Binding in Java. Next on the agenda is the development of analysis tools for XML Schema Documents. For instance, imagine a tool that will allow you to determine whether an XSD complies to best-practices. This tool will: 1) produce warnings for structures that do not comply to best-practices, 2) tell the developer whether the logical structure can be transformed linearly to a form that complies to best-practices, and 3) to automatically produce an XSD that maintains the logical structure of the original document but now fully complies to best-practices. This is just one of many tools that will be available shortly. In the meantime, check out the binding application.

Group: org.jaxsb Artifact: generator
Show all versions Show documentation Show source 
 

0 downloads
Artifact generator
Group org.jaxsb
Version 3.0.0
Last update 27. February 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 5
Dependencies google-java-format, guava, io, jci, runtime,
There are maybe transitive dependencies!

api-ldap-codec-standalone from group org.apache.directory.api (version 2.1.6)

This module was created to fix issue DIRSHARED-91 where the embedded Felix instance inside the default LdapCodecService implementation was making it very problematic to deploy the ldap-codec inside an RCP (OSGi) environment and hence Apache Directory Studio could not use it. This module is most likely temporary and will disappear once we are fully OSGi enabled. This module is a plain old jar, not a bundle to avoid accidental reuse as an OSGi module because it contains the version of the LdapCodecService that embeds Felix to make controls and extended ops pluggable in the codec.

Group: org.apache.directory.api Artifact: api-ldap-codec-standalone
Show all versions Show documentation Show source 
 

1 downloads
Artifact api-ldap-codec-standalone
Group org.apache.directory.api
Version 2.1.6
Last update 01. February 2024
Organization not specified
URL Not specified
License not specified
Dependencies amount 4
Dependencies api-ldap-net-mina, api-ldap-codec-core, api-ldap-extras-codec, mina-core,
There are maybe transitive dependencies!

threadfix-cli-lib from group com.github.secdec.astam-correlator (version 1.3.8)

This module contains library classes for accessing the ThreadFix REST API. The ThreadFix IDE plugins use this library to retrieve application and vulnerability marker information, and in the ThreadFix scanner plugins to get endpoint information and upload scans to ThreadFix applications. The easiest way to start using the library is with the PluginClient or ThreadFixRestClient classes. Both have constructors that take a PropertiesManager instance, which holds the ThreadFix API key and url information. The default PropertiesManager implementation stores these properties in threadfix.properties, but the ThreadFix plugins extend the default PropertiesManager class to override this behavior for the target platform.

Group: com.github.secdec.astam-correlator Artifact: threadfix-cli-lib
Show all versions Show documentation Show source 
 

0 downloads
Artifact threadfix-cli-lib
Group com.github.secdec.astam-correlator
Version 1.3.8
Last update 15. March 2022
Organization not specified
URL Not specified
License not specified
Dependencies amount 7
Dependencies threadfix-entities, commons-httpclient, commons-cli, commons-io, commons-validator, gson, jackson-annotations,
There are maybe transitive dependencies!

unum from group io.github.kgsnipes (version 1.03)

With distributed systems being developed as a part of the cloud age. With focus on performance associated with an application dependent on one DB instance, there is a need to bring down the dependency to a database to generate unique numbers for creating a private key when lots of data needs to be stored in the database tables. This library is intended to provide a way of generating unique numbers on the fly in a JAVA based distributed system. This is not a new concept but this library helps in keeping you focused on the business logic that you need to develop for your applications rather than spending time on how this is done. Typically applications powered by RDBMS can leverage the benefit as instant scalability might not be available for these setups when the load to the system spikes.

Group: io.github.kgsnipes Artifact: unum
Show all versions Show documentation Show source 
 

0 downloads
Artifact unum
Group io.github.kgsnipes
Version 1.03
Last update 02. November 2021
Organization not specified
URL https://github.com/kgsnipes/unum
License MIT License
Dependencies amount 1
Dependencies guava,
There are maybe transitive dependencies!

tostring-implementation from group io.github.trigunam.java.util (version 2.2)

This project is a library for any POJO class to implement a toString method. Given a class name and instance, the project will use reflection from Java API to get the getter methods for the given instance and execute it to print the methodName = methodValue in an appended string with comma separated values. This is very generic implementation so anybody can use this code to write their toString implementation. The idea is to avoid implementing toString by writing your own implementation every time. Please put your thoughts on the implementation so we can evolve as a project which will help every Java Developer.

Group: io.github.trigunam.java.util Artifact: tostring-implementation
Show all versions Show documentation Show source 
 

0 downloads
Artifact tostring-implementation
Group io.github.trigunam.java.util
Version 2.2
Last update 04. September 2021
Organization Yet to identify
URL https://github.com/trigunam/tostring-implementation
License GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007
Dependencies amount 2
Dependencies slf4j-api, logback-classic,
There are maybe transitive dependencies!

suji from group com.github.jikyo (version 0.0.5)

Suji is a converter library from Japanese number notation to numerical value, and from numerical notation to Japanese Kansuji notation. Converter.values(src) to convert from Japanese number notation to numerical value: Japanese number notation can include Kansuji. The String "1つの価格が二兆30万五千十7円になります。" will be converted to two BigDecimal, 1 and 2000000005017. And also, 打率は三割二部五厘です。 will be a 0.325. The return value is a list of Suji Numeral objects. If the input string has no number notation, Suji returns a empty list. The Numeral object has three methods: value(), begin(), and end(): value(): a BigDecimal instance of a numerical value for the number notation. begin(): the begin index (int) of the found number notation at the input string. end(): the end index (int) of the found number notation. Converter.kansujis(src) to convert from numeric notation to Japanese Kansuji notation: The String 20兆30万五千十7円になります。 will be converted to the Kansuji string, 二十兆三十万五千十七. The boolean flag one is interpreted as whether to display the first character 一 or not. The output of Converter.kansujis('1000万', true) will be converted to 一千万, and the output of Converter.kansujis('1000万', false) will be converted to 千万. Note that kansujis does not support numerical notation after the decimal point. If the input string is 32.01, the output will 三十二, not 三十二割一厘. The return value is a list of Kansuji objects. If the input string has no number notation, Suji returns a empty list. The Kansuji object has three methods: value(), begin(), and end(): value(): a String instance of a Kansuji notation. begin(): the begin index (int) of the found number notation at the input string. end(): the end index (int) of the found number notation. Suji is a one-pass parser. That is, Suji parse a source text from the head to the end only once.

Group: com.github.jikyo Artifact: suji
Show all versions Show documentation Show source 
 

0 downloads
Artifact suji
Group com.github.jikyo
Version 0.0.5
Last update 04. September 2020
Organization not specified
URL https://github.com/jikyo/suji4j
License The Apache Software License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

otag-service-development-kit from group com.opentext.otag.sdk (version 16.6.2)

This module provides access to the set of utility classes required to interact with an instance of an AppWorks Gateway from an AppWorks Service. It covers AppWorks dedicated service deployment API, which is a limited subset of the full AppWorks admin API. We currently provide the facility for services to listen to service life-cycle events such as 'service installed', 'service upgraded' and 'service uninstalled'. We also provide the facility for centralised configuration setting management. As AppWorks services are edited from the AppWork Gateway administration console, we provide the ability to respond to updates made here, and also expose creation and update end points for these settings.

Group: com.opentext.otag.sdk Artifact: otag-service-development-kit
Show all versions Show documentation Show source 
 

7 downloads
Artifact otag-service-development-kit
Group com.opentext.otag.sdk
Version 16.6.2
Last update 19. October 2019
Organization not specified
URL https://github.com/opentext/otag-service-development-kit
License Open Text End User License Agreement
Dependencies amount 8
Dependencies otag-service-context, httpclient, jackson-core, jackson-databind, jackson-jaxrs-json-provider, jackson-annotations, jersey-client, slf4j-api,
There are maybe transitive dependencies!

multiInstanceFilters from group nz.ac.waikato.cms.weka (version 1.0.10)

A collection of filters for manipulating multi-instance data. Includes PropositionalToMultiInstance, MultiInstanceToPropositional, MILESFilter and RELAGGS. For more information see: M.-A. Krogel, S. Wrobel: Facets of Aggregation Approaches to Propositionalization. In: Work-in-Progress Track at the Thirteenth International Conference on Inductive Logic Programming (ILP), 2003. Y. Chen, J. Bi, J.Z. Wang (2006). MILES: Multiple-instance learning via embedded instance selection. IEEE PAMI. 28(12):1931-1947. James Foulds, Eibe Frank: Revisiting multiple-instance learning via embedded instance selection. In: 21st Australasian Joint Conference on Artificial Intelligence, 300-310, 2008.

Group: nz.ac.waikato.cms.weka Artifact: multiInstanceFilters
Show all versions Show documentation Show source 
 

1 downloads
Artifact multiInstanceFilters
Group nz.ac.waikato.cms.weka
Version 1.0.10
Last update 23. November 2018
Organization University of Waikato, Hamilton, NZ
URL http://weka.sourceforge.net/doc.packages/multiInstanceFilters
License GNU General Public License 3
Dependencies amount 1
Dependencies weka-dev,
There are maybe transitive dependencies!

classificationViaClustering from group nz.ac.waikato.cms.weka (version 1.0.7)

A simple meta-classifier that uses a clusterer for classification. For cluster algorithms that use a fixed number of clusterers, like SimpleKMeans, the user has to make sure that the number of clusters to generate are the same as the number of class labels in the dataset in order to obtain a useful model. Note: at prediction time, a missing value is returned if no cluster is found for the instance. The code is based on the 'clusters to classes' functionality of the weka.clusterers.ClusterEvaluation class by Mark Hall.

Group: nz.ac.waikato.cms.weka Artifact: classificationViaClustering
Show all versions Show documentation Show source 
 

2 downloads
Artifact classificationViaClustering
Group nz.ac.waikato.cms.weka
Version 1.0.7
Last update 26. November 2017
Organization University of Waikato, Hamilton, NZ
URL http://weka.sourceforge.net/doc.packages/classificationViaClustering
License GNU General Public License 3
Dependencies amount 1
Dependencies weka-dev,
There are maybe transitive dependencies!

threadfix-cli from group com.denimgroup.threadfix (version 2.5)

This module contains library classes for accessing the ThreadFix REST API. The ThreadFix IDE plugins use this library to retrieve application and vulnerability marker information, and in the ThreadFix scanner plugins to get endpoint information and upload scans to ThreadFix applications. The easiest way to start using the library is with the PluginClient or ThreadFixRestClient classes. Both have constructors that take a PropertiesManager instance, which holds the ThreadFix API key and url information. The default PropertiesManager implementation stores these properties in threadfix.properties, but the ThreadFix plugins extend the default PropertiesManager class to override this behavior for the target platform.

Group: com.denimgroup.threadfix Artifact: threadfix-cli
Show all versions Show documentation Show source 
 

0 downloads
Artifact threadfix-cli
Group com.denimgroup.threadfix
Version 2.5
Last update 28. August 2017
Organization Denim Group, Ltd.
URL https://github.com/denimgroup/threadfix
License Mozilla Public License, Version 2.0
Dependencies amount 7
Dependencies threadfix-entities, commons-httpclient, commons-cli, commons-io, commons-validator, gson, jackson-annotations,
There are maybe transitive dependencies!



Page 52 from 57 (items total 566)


© 2015 - 2024 Weber Informatics LLC | Privacy Policy